# HG changeset patch # User Ryan C. Gordon # Date 1233301487 18000 # Node ID 7e08477b0fc19b405ec7cdf9f47ed8401dd8f473 # Parent f2985e08589c6e41be1a2d7b3d93348abc5626b3 MP3 decoder upgrade work. Ripped out SMPEG and mpglib support, replaced it with "mpg123.c" and libmpg123. libmpg123 is a much better version of mpglib, so it should solve all the problems about MP3's not seeking, or most modern MP3's not playing at all, etc. Since you no longer have to make a tradeoff with SMPEG for features, and SMPEG is basically rotting, I removed it from the project. There is still work to be done with libmpg123...there are MMX, 3DNow, SSE, Altivec, etc decoders which we don't have enabled at the moment, and the build system could use some work to make this compile more cleanly, etc. Still: huge win. diff -r f2985e08589c -r 7e08477b0fc1 CREDITS.txt --- a/CREDITS.txt Fri Jan 30 01:54:03 2009 -0500 +++ b/CREDITS.txt Fri Jan 30 02:44:47 2009 -0500 @@ -5,8 +5,7 @@ Initial API interface and implementation, RAW driver, VOC driver, -SMPEG driver, -MPGLIB driver, +MPG123 driver, WAV driver, OGG driver, SHN driver, @@ -18,8 +17,7 @@ FreeBSD testing: Tsuyoshi Iguchi -Code cleanups, -SMPEG fixes, +Code cleanups and fixes, AIFF driver, MikMod driver, MIDI driver, @@ -56,7 +54,7 @@ FLAC 1.1.3 updates: Josh Coalson -SMPEG fixes: +Fixes: Chris Nelson Other stuff: diff -r f2985e08589c -r 7e08477b0fc1 LICENSE.txt --- a/LICENSE.txt Fri Jan 30 01:54:03 2009 -0500 +++ b/LICENSE.txt Fri Jan 30 02:44:47 2009 -0500 @@ -3,7 +3,11 @@ separately under the GNU GPL, or the Perl Artistic License. Those licensing terms are not reprinted here, but can be found on the web easily. -Other external libraries (such as Ogg Vorbis, SMPEG, etc) have their own +The included source for libmpg123, the MP3 decoder, is also licensed under the + following terms (GNU LGPL). We make no promises about patents you might + violate or royalty payments you might have to pay with this or any decoder. + +Other external libraries (such as Ogg Vorbis, mikmod, etc) have their own licenses which you should be aware of before including the related code in your configuration. Most (if not all) are also under the LGPL, but are external projects and we've got no control over them. diff -r f2985e08589c -r 7e08477b0fc1 Makefile.am --- a/Makefile.am Fri Jan 30 01:54:03 2009 -0500 +++ b/Makefile.am Fri Jan 30 02:44:47 2009 -0500 @@ -19,10 +19,10 @@ TIMIDITY_LIB = endif -if USE_MPGLIB -MPGLIB_LIB = decoders/mpglib/libmpglib.la +if USE_LIBMPG123 +MPG123_LIB = decoders/libmpg123/libmpg123.la else -MPGLIB_LIB = +MPG123_LIB = endif libSDL_sound_la_LDFLAGS = \ @@ -30,7 +30,7 @@ -version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) libSDL_sound_la_LIBADD = \ decoders/libdecoders.la \ - $(TIMIDITY_LIB) $(MPGLIB_LIB) + $(TIMIDITY_LIB) $(MPG123_LIB) EXTRA_DIST = \ CREDITS \ diff -r f2985e08589c -r 7e08477b0fc1 SDL_sound.c --- a/SDL_sound.c Fri Jan 30 01:54:03 2009 -0500 +++ b/SDL_sound.c Fri Jan 30 02:44:47 2009 -0500 @@ -48,8 +48,7 @@ /* The various decoder drivers... */ /* All these externs may be missing; we check SOUND_SUPPORTS_xxx before use. */ -extern const Sound_DecoderFunctions __Sound_DecoderFunctions_SMPEG; -extern const Sound_DecoderFunctions __Sound_DecoderFunctions_MPGLIB; +extern const Sound_DecoderFunctions __Sound_DecoderFunctions_MPG123; extern const Sound_DecoderFunctions __Sound_DecoderFunctions_MIKMOD; extern const Sound_DecoderFunctions __Sound_DecoderFunctions_MODPLUG; extern const Sound_DecoderFunctions __Sound_DecoderFunctions_WAV; @@ -72,12 +71,8 @@ static decoder_element decoders[] = { -#if (defined SOUND_SUPPORTS_SMPEG) - { 0, &__Sound_DecoderFunctions_SMPEG }, -#endif - -#if (defined SOUND_SUPPORTS_MPGLIB) - { 0, &__Sound_DecoderFunctions_MPGLIB }, +#if (defined SOUND_SUPPORTS_MPG123) + { 0, &__Sound_DecoderFunctions_MPG123 }, #endif #if (defined SOUND_SUPPORTS_MODPLUG) diff -r f2985e08589c -r 7e08477b0fc1 SDL_sound.h --- a/SDL_sound.h Fri Jan 30 01:54:03 2009 -0500 +++ b/SDL_sound.h Fri Jan 30 02:44:47 2009 -0500 @@ -42,7 +42,7 @@ * Support is in place or planned for the following sound formats: * - .WAV (Microsoft WAVfile RIFF data, internal.) * - .VOC (Creative Labs' Voice format, internal.) - * - .MP3 (MPEG-1 Layer 3 support, via the SMPEG and mpglib libraries.) + * - .MP3 (MPEG-1 Layer 3 support, via libmpg123.) * - .MID (MIDI music converted to Waveform data, internal.) * - .MOD (MOD files, via MikMod and ModPlug.) * - .OGG (Ogg files, via Ogg Vorbis libraries.) diff -r f2985e08589c -r 7e08477b0fc1 TODO.txt --- a/TODO.txt Fri Jan 30 01:54:03 2009 -0500 +++ b/TODO.txt Fri Jan 30 02:44:47 2009 -0500 @@ -10,7 +10,6 @@ (If decoder can't seek, clean up the stub and report an error.) - mikmod.c - shn.c -- mpglib.c - quicktime.c General stuff TODO: diff -r f2985e08589c -r 7e08477b0fc1 configure.in --- a/configure.in Fri Jan 30 01:54:03 2009 -0500 +++ b/configure.in Fri Jan 30 02:44:47 2009 -0500 @@ -54,6 +54,7 @@ AC_PROG_CC AC_PROG_INSTALL AC_PROG_LN_S +AM_PROG_AS AM_PROG_LIBTOOL @@ -172,28 +173,14 @@ AC_DEFINE(SOUND_SUPPORTS_MIDI, 1, [Define if MIDI support is desired.]) fi -dnl Check for SMPEG -AC_ARG_ENABLE(smpeg, -[ --enable-smpeg enable MP3 decoding via smpeg [default=yes]], - , enable_smpeg=yes) -if test x$enable_smpeg = xyes; then - AC_CHECK_HEADER(smpeg.h, have_smpeg_hdr=yes) - AC_CHECK_LIB(smpeg, SMPEG_new, have_smpeg_lib=yes) - if test x$have_smpeg_hdr = xyes -a x$have_smpeg_lib = xyes; then - LIBS="$LIBS -lsmpeg" - AC_DEFINE(SOUND_SUPPORTS_SMPEG, 1, [Define if SMPEG support is desired.]) - fi +dnl Check for the MP3 decoder... +AC_ARG_ENABLE(mpg123, +[ --enable-mpg123 enable MP3 decoding [default=yes]], + , enable_mpg123=yes) +if test x$enable_mpg123 = xyes; then + AC_DEFINE(SOUND_SUPPORTS_MPG123, 1, [Define if MPG123 support is desired.]) fi -dnl Check for the MIDI decoder... -AC_ARG_ENABLE(mpglib, -[ --enable-mpglib enable MP3 decoding internally [default=yes]], - , enable_mpglib=yes) -if test x$enable_mpglib = xyes; then - AC_DEFINE(SOUND_SUPPORTS_MPGLIB, 1, [Define if MPGLIB support is desired.]) -fi - - dnl Check for libmikmod AC_ARG_ENABLE(mikmod, [ --enable-mikmod enable MOD decoding via mikmod [default=yes]], @@ -341,13 +328,13 @@ dnl Add Makefile conditionals AM_CONDITIONAL(USE_TIMIDITY, test x$enable_midi = xyes) -AM_CONDITIONAL(USE_MPGLIB, test x$enable_mpglib = xyes) +AM_CONDITIONAL(USE_LIBMPG123, test x$enable_mpg123 = xyes) AM_CONDITIONAL(USE_PHYSICSFS, test x$enable_physfs = xyes) AC_OUTPUT([ Makefile decoders/Makefile decoders/timidity/Makefile -decoders/mpglib/Makefile +decoders/libmpg123/Makefile playsound/Makefile ]) diff -r f2985e08589c -r 7e08477b0fc1 decoders/Makefile.am --- a/decoders/Makefile.am Fri Jan 30 01:54:03 2009 -0500 +++ b/decoders/Makefile.am Fri Jan 30 02:44:47 2009 -0500 @@ -1,6 +1,6 @@ noinst_LTLIBRARIES = libdecoders.la -SUBDIRS = timidity mpglib +SUBDIRS = timidity libmpg123 INCLUDES = -I$(top_srcdir) -I$(top_srcdir)/decoders/timidity @@ -9,8 +9,7 @@ au.c \ mikmod.c \ modplug.c \ - mpglib.c \ - smpeg.c \ + mpg123.c \ ogg.c \ raw.c \ shn.c \ diff -r f2985e08589c -r 7e08477b0fc1 decoders/libmpg123/Makefile.am --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/decoders/libmpg123/Makefile.am Fri Jan 30 02:44:47 2009 -0500 @@ -0,0 +1,80 @@ +if USE_LIBMPG123 +noinst_LTLIBRARIES = libmpg123.la +endif + +# !!! FIXME: get MMX/SSE/Altivec/etc stuff in here. + +INCLUDES = -I$(top_srcdir)/decodes/libmpg123 +libmpg123_la_CFLAGS = -DOPT_GENERIC -DREAL_IS_FLOAT -DMPG123_NO_CONFIGURE + +libmpg123_la_SOURCES = \ + compat.c \ + compat.h \ + parse.c \ + parse.h \ + frame.c \ + format.c \ + frame.h \ + reader.h \ + debug.h \ + decode.h \ + decode_2to1.c \ + decode_4to1.c \ + decode_ntom.c \ + equalizer.c \ + huffman.h \ + icy.c \ + icy.h \ + icy2utf8.c \ + icy2utf8.h \ + id3.c \ + id3.h \ + true.h \ + l2tables.h \ + layer1.c \ + layer2.c \ + layer3.c \ + getbits.h \ + optimize.h \ + optimize.c \ + readers.c \ + tabinit.c \ + stringbuf.c \ + libmpg123.c \ + mpg123lib_intern.h \ + mangle.h \ + getcpuflags.h \ + index.h \ + index.c \ + mpg123.h \ + config.h \ + dct64.c \ + decode.c \ + libmpg123.sym + +EXTRA_libmpg123_la_SOURCES = \ + dct36_3dnowext.S \ + dct36_3dnow.S \ + dct64_3dnowext.S \ + dct64_3dnow.S \ + dct64_altivec.c \ + dct64_i386.c \ + dct64_i486.c \ + dct64_mmx.S \ + dct64_sse.S \ + decode_3dnowext.S \ + decode_3dnow.S \ + decode_altivec.c \ + decode_i386.c \ + decode_i486.c \ + decode_i586_dither.S \ + decode_i586.S \ + decode_mmx.S \ + decode_sse3d.h \ + decode_sse.S \ + equalizer_3dnow.S \ + tabinit_mmx.S \ + getcpuflags.S + +EXTRA_DIST = mpg123.h.in dnoise.sh dnoise.dat testcpu.c README-sdlsound.txt + diff -r f2985e08589c -r 7e08477b0fc1 decoders/libmpg123/Makefile.am-original --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/decoders/libmpg123/Makefile.am-original Fri Jan 30 02:44:47 2009 -0500 @@ -0,0 +1,109 @@ +## Makefile.am: produce Makefile.in from this + +## copyright by the mpg123 project - free software under the terms of the LGPL 2.1 +## see COPYING and AUTHORS files in distribution or http://mpg123.org +## initially written by Nicholas J. Humfrey + +#AM_CFLAGS = @AUDIO_CFLAGS@ +#AM_LDFLAGS = +INCLUDES = -I$(top_srcdir)/src -I$(top_srcdir)/src/libmpg123 + +EXTRA_DIST = mpg123.h.in dnoise.sh dnoise.dat + +EXTRA_PROGRAMS = testcpu +testcpu_dependencies = getcpuflags.$(OBJEXT) +testcpu_sources = testcpu.c +testcpu_LDADD = getcpuflags.$(OBJEXT) + + +CLEANFILES = *.a + + +#lib_LIBRARIES = libmpg123.a +lib_LTLIBRARIES = libmpg123.la +nodist_include_HEADERS = mpg123.h + +#libmpg123_a_LIBADD = @DECODER_OBJ@ +#libmpg123_a_DEPENDENCIES = @DECODER_OBJ@ + +libmpg123_la_LDFLAGS = -no-undefined -version-info @LIBMPG123_VERSION@ -export-symbols $(top_srcdir)/src/libmpg123/libmpg123.sym +libmpg123_la_LIBADD = @DECODER_LOBJ@ +libmpg123_la_DEPENDENCIES = @DECODER_LOBJ@ $(top_srcdir)/src/libmpg123/libmpg123.sym + +libmpg123_la_SOURCES = \ + compat.c \ + compat.h \ + parse.c \ + parse.h \ + frame.c \ + format.c \ + frame.h \ + reader.h \ + debug.h \ + decode.h \ + decode_2to1.c \ + decode_4to1.c \ + decode_ntom.c \ + equalizer.c \ + huffman.h \ + icy.c \ + icy.h \ + icy2utf8.c \ + icy2utf8.h \ + id3.c \ + id3.h \ + true.h \ + l2tables.h \ + layer1.c \ + layer2.c \ + layer3.c \ + getbits.h \ + optimize.h \ + optimize.c \ + readers.c \ + tabinit.c \ + stringbuf.c \ + libmpg123.c \ + mpg123lib_intern.h \ + mangle.h \ + getcpuflags.h \ + index.h \ + index.c \ + libmpg123.sym + +EXTRA_libmpg123_la_SOURCES = \ + dct36_3dnowext.S \ + dct36_3dnow.S \ + dct64_3dnowext.S \ + dct64_3dnow.S \ + dct64_altivec.c \ + dct64.c \ + dct64_i386.c \ + dct64_i486.c \ + dct64_mmx.S \ + dct64_sse.S \ + decode_3dnowext.S \ + decode_3dnow.S \ + decode_altivec.c \ + decode.c \ + decode_i386.c \ + decode_i486.c \ + decode_i586_dither.S \ + decode_i586.S \ + decode_mmx.S \ + decode_sse3d.h \ + decode_sse.S \ + equalizer_3dnow.S \ + tabinit_mmx.S \ + getcpuflags.S + +# explicit preprocessing since mingw32 does not honor the big .S +.S.o: + $(CPP) $(AM_CPPFLAGS) $(DEFAULT_INCLUDES) $(CPPFLAGS) $< > $<.s + $(CCAS) $(CCASFLAGS) -c -o $@ $<.s && rm $<.s + +.S.lo: + $(LTCCASCOMPILE) $(DEFAULT_INCLUDES) -c -o $@ $< + +dnoise.c: dnoise.dat dnoise.sh + sh dnoise.sh "$<" > "$@" diff -r f2985e08589c -r 7e08477b0fc1 decoders/libmpg123/Makefile.in --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/decoders/libmpg123/Makefile.in Fri Jan 30 02:44:47 2009 -0500 @@ -0,0 +1,771 @@ +# Makefile.in generated by automake 1.9.6 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005 Free Software Foundation, Inc. +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + +srcdir = @srcdir@ +top_srcdir = @top_srcdir@ +VPATH = @srcdir@ +pkgdatadir = $(datadir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +top_builddir = ../.. +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +INSTALL = @INSTALL@ +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +target_triplet = @target@ +subdir = decoders/libmpg123 +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.in +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +LTLIBRARIES = $(noinst_LTLIBRARIES) +libmpg123_la_LIBADD = +am_libmpg123_la_OBJECTS = libmpg123_la-compat.lo libmpg123_la-parse.lo \ + libmpg123_la-frame.lo libmpg123_la-format.lo \ + libmpg123_la-decode_2to1.lo libmpg123_la-decode_4to1.lo \ + libmpg123_la-decode_ntom.lo libmpg123_la-equalizer.lo \ + libmpg123_la-icy.lo libmpg123_la-icy2utf8.lo \ + libmpg123_la-id3.lo libmpg123_la-layer1.lo \ + libmpg123_la-layer2.lo libmpg123_la-layer3.lo \ + libmpg123_la-optimize.lo libmpg123_la-readers.lo \ + libmpg123_la-tabinit.lo libmpg123_la-stringbuf.lo \ + libmpg123_la-libmpg123.lo libmpg123_la-index.lo \ + libmpg123_la-dct64.lo libmpg123_la-decode.lo +libmpg123_la_OBJECTS = $(am_libmpg123_la_OBJECTS) +@USE_LIBMPG123_TRUE@am_libmpg123_la_rpath = +DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) +depcomp = $(SHELL) $(top_srcdir)/depcomp +am__depfiles_maybe = depfiles +CCASCOMPILE = $(CCAS) $(AM_CCASFLAGS) $(CCASFLAGS) +LTCCASCOMPILE = $(LIBTOOL) --mode=compile $(CCAS) $(AM_CCASFLAGS) \ + $(CCASFLAGS) +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) +CCLD = $(CC) +LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ +SOURCES = $(libmpg123_la_SOURCES) $(EXTRA_libmpg123_la_SOURCES) +DIST_SOURCES = $(libmpg123_la_SOURCES) $(EXTRA_libmpg123_la_SOURCES) +ETAGS = etags +CTAGS = ctags +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +AMDEP_FALSE = @AMDEP_FALSE@ +AMDEP_TRUE = @AMDEP_TRUE@ +AMTAR = @AMTAR@ +AR = @AR@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +BINARY_AGE = @BINARY_AGE@ +CC = @CC@ +CCAS = @CCAS@ +CCASFLAGS = @CCASFLAGS@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CPP = @CPP@ +CPPFLAGS = @CPPFLAGS@ +CXX = @CXX@ +CXXCPP = @CXXCPP@ +CXXDEPMODE = @CXXDEPMODE@ +CXXFLAGS = @CXXFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DSYMUTIL = @DSYMUTIL@ +ECHO = @ECHO@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +EXEEXT = @EXEEXT@ +F77 = @F77@ +FFLAGS = @FFLAGS@ +GREP = @GREP@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INTERFACE_AGE = @INTERFACE_AGE@ +LDFLAGS = @LDFLAGS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIBTOOL = @LIBTOOL@ +LN_S = @LN_S@ +LTLIBOBJS = @LTLIBOBJS@ +LT_AGE = @LT_AGE@ +LT_CURRENT = @LT_CURRENT@ +LT_RELEASE = @LT_RELEASE@ +LT_REVISION = @LT_REVISION@ +MAJOR_VERSION = @MAJOR_VERSION@ +MAKEINFO = @MAKEINFO@ +MICRO_VERSION = @MICRO_VERSION@ +MINOR_VERSION = @MINOR_VERSION@ +NMEDIT = @NMEDIT@ +OBJEXT = @OBJEXT@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +RANLIB = @RANLIB@ +SDL_CFLAGS = @SDL_CFLAGS@ +SDL_CONFIG = @SDL_CONFIG@ +SDL_LIBS = @SDL_LIBS@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +USE_LIBMPG123_FALSE = @USE_LIBMPG123_FALSE@ +USE_LIBMPG123_TRUE = @USE_LIBMPG123_TRUE@ +USE_PHYSICSFS_FALSE = @USE_PHYSICSFS_FALSE@ +USE_PHYSICSFS_TRUE = @USE_PHYSICSFS_TRUE@ +USE_TIMIDITY_FALSE = @USE_TIMIDITY_FALSE@ +USE_TIMIDITY_TRUE = @USE_TIMIDITY_TRUE@ +VERSION = @VERSION@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_CXX = @ac_ct_CXX@ +ac_ct_F77 = @ac_ct_F77@ +am__fastdepCC_FALSE = @am__fastdepCC_FALSE@ +am__fastdepCC_TRUE = @am__fastdepCC_TRUE@ +am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@ +am__fastdepCXX_TRUE = @am__fastdepCXX_TRUE@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +sysconfdir = @sysconfdir@ +target = @target@ +target_alias = @target_alias@ +target_cpu = @target_cpu@ +target_os = @target_os@ +target_vendor = @target_vendor@ +@USE_LIBMPG123_TRUE@noinst_LTLIBRARIES = libmpg123.la + +# !!! FIXME: get MMX/SSE/Altivec/etc stuff in here. +INCLUDES = -I$(top_srcdir)/decodes/libmpg123 +libmpg123_la_CFLAGS = -DOPT_GENERIC -DREAL_IS_FLOAT -DMPG123_NO_CONFIGURE +libmpg123_la_SOURCES = \ + compat.c \ + compat.h \ + parse.c \ + parse.h \ + frame.c \ + format.c \ + frame.h \ + reader.h \ + debug.h \ + decode.h \ + decode_2to1.c \ + decode_4to1.c \ + decode_ntom.c \ + equalizer.c \ + huffman.h \ + icy.c \ + icy.h \ + icy2utf8.c \ + icy2utf8.h \ + id3.c \ + id3.h \ + true.h \ + l2tables.h \ + layer1.c \ + layer2.c \ + layer3.c \ + getbits.h \ + optimize.h \ + optimize.c \ + readers.c \ + tabinit.c \ + stringbuf.c \ + libmpg123.c \ + mpg123lib_intern.h \ + mangle.h \ + getcpuflags.h \ + index.h \ + index.c \ + mpg123.h \ + config.h \ + dct64.c \ + decode.c \ + libmpg123.sym + +EXTRA_libmpg123_la_SOURCES = \ + dct36_3dnowext.S \ + dct36_3dnow.S \ + dct64_3dnowext.S \ + dct64_3dnow.S \ + dct64_altivec.c \ + dct64_i386.c \ + dct64_i486.c \ + dct64_mmx.S \ + dct64_sse.S \ + decode_3dnowext.S \ + decode_3dnow.S \ + decode_altivec.c \ + decode_i386.c \ + decode_i486.c \ + decode_i586_dither.S \ + decode_i586.S \ + decode_mmx.S \ + decode_sse3d.h \ + decode_sse.S \ + equalizer_3dnow.S \ + tabinit_mmx.S \ + getcpuflags.S + +EXTRA_DIST = mpg123.h.in dnoise.sh dnoise.dat testcpu.c README-sdlsound.txt +all: all-am + +.SUFFIXES: +.SUFFIXES: .S .c .lo .o .obj +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign decoders/libmpg123/Makefile'; \ + cd $(top_srcdir) && \ + $(AUTOMAKE) --foreign decoders/libmpg123/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +clean-noinstLTLIBRARIES: + -test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES) + @list='$(noinst_LTLIBRARIES)'; for p in $$list; do \ + dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \ + test "$$dir" != "$$p" || dir=.; \ + echo "rm -f \"$${dir}/so_locations\""; \ + rm -f "$${dir}/so_locations"; \ + done +libmpg123.la: $(libmpg123_la_OBJECTS) $(libmpg123_la_DEPENDENCIES) + $(LINK) $(am_libmpg123_la_rpath) $(libmpg123_la_LDFLAGS) $(libmpg123_la_OBJECTS) $(libmpg123_la_LIBADD) $(LIBS) + +mostlyclean-compile: + -rm -f *.$(OBJEXT) + +distclean-compile: + -rm -f *.tab.c + +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libmpg123_la-compat.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libmpg123_la-dct64.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libmpg123_la-dct64_altivec.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libmpg123_la-dct64_i386.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libmpg123_la-dct64_i486.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libmpg123_la-decode.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libmpg123_la-decode_2to1.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libmpg123_la-decode_4to1.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libmpg123_la-decode_altivec.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libmpg123_la-decode_i386.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libmpg123_la-decode_i486.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libmpg123_la-decode_ntom.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libmpg123_la-equalizer.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libmpg123_la-format.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libmpg123_la-frame.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libmpg123_la-icy.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libmpg123_la-icy2utf8.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libmpg123_la-id3.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libmpg123_la-index.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libmpg123_la-layer1.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libmpg123_la-layer2.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libmpg123_la-layer3.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libmpg123_la-libmpg123.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libmpg123_la-optimize.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libmpg123_la-parse.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libmpg123_la-readers.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libmpg123_la-stringbuf.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libmpg123_la-tabinit.Plo@am__quote@ + +.S.o: + $(CCASCOMPILE) -c $< + +.S.obj: + $(CCASCOMPILE) -c `$(CYGPATH_W) '$<'` + +.S.lo: + $(LTCCASCOMPILE) -c -o $@ $< + +.c.o: +@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(COMPILE) -c $< + +.c.obj: +@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` + +.c.lo: +@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< + +libmpg123_la-compat.lo: compat.c +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libmpg123_la_CFLAGS) $(CFLAGS) -MT libmpg123_la-compat.lo -MD -MP -MF "$(DEPDIR)/libmpg123_la-compat.Tpo" -c -o libmpg123_la-compat.lo `test -f 'compat.c' || echo '$(srcdir)/'`compat.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libmpg123_la-compat.Tpo" "$(DEPDIR)/libmpg123_la-compat.Plo"; else rm -f "$(DEPDIR)/libmpg123_la-compat.Tpo"; exit 1; fi +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='compat.c' object='libmpg123_la-compat.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libmpg123_la_CFLAGS) $(CFLAGS) -c -o libmpg123_la-compat.lo `test -f 'compat.c' || echo '$(srcdir)/'`compat.c + +libmpg123_la-parse.lo: parse.c +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libmpg123_la_CFLAGS) $(CFLAGS) -MT libmpg123_la-parse.lo -MD -MP -MF "$(DEPDIR)/libmpg123_la-parse.Tpo" -c -o libmpg123_la-parse.lo `test -f 'parse.c' || echo '$(srcdir)/'`parse.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libmpg123_la-parse.Tpo" "$(DEPDIR)/libmpg123_la-parse.Plo"; else rm -f "$(DEPDIR)/libmpg123_la-parse.Tpo"; exit 1; fi +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='parse.c' object='libmpg123_la-parse.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libmpg123_la_CFLAGS) $(CFLAGS) -c -o libmpg123_la-parse.lo `test -f 'parse.c' || echo '$(srcdir)/'`parse.c + +libmpg123_la-frame.lo: frame.c +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libmpg123_la_CFLAGS) $(CFLAGS) -MT libmpg123_la-frame.lo -MD -MP -MF "$(DEPDIR)/libmpg123_la-frame.Tpo" -c -o libmpg123_la-frame.lo `test -f 'frame.c' || echo '$(srcdir)/'`frame.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libmpg123_la-frame.Tpo" "$(DEPDIR)/libmpg123_la-frame.Plo"; else rm -f "$(DEPDIR)/libmpg123_la-frame.Tpo"; exit 1; fi +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='frame.c' object='libmpg123_la-frame.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libmpg123_la_CFLAGS) $(CFLAGS) -c -o libmpg123_la-frame.lo `test -f 'frame.c' || echo '$(srcdir)/'`frame.c + +libmpg123_la-format.lo: format.c +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libmpg123_la_CFLAGS) $(CFLAGS) -MT libmpg123_la-format.lo -MD -MP -MF "$(DEPDIR)/libmpg123_la-format.Tpo" -c -o libmpg123_la-format.lo `test -f 'format.c' || echo '$(srcdir)/'`format.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libmpg123_la-format.Tpo" "$(DEPDIR)/libmpg123_la-format.Plo"; else rm -f "$(DEPDIR)/libmpg123_la-format.Tpo"; exit 1; fi +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='format.c' object='libmpg123_la-format.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libmpg123_la_CFLAGS) $(CFLAGS) -c -o libmpg123_la-format.lo `test -f 'format.c' || echo '$(srcdir)/'`format.c + +libmpg123_la-decode_2to1.lo: decode_2to1.c +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libmpg123_la_CFLAGS) $(CFLAGS) -MT libmpg123_la-decode_2to1.lo -MD -MP -MF "$(DEPDIR)/libmpg123_la-decode_2to1.Tpo" -c -o libmpg123_la-decode_2to1.lo `test -f 'decode_2to1.c' || echo '$(srcdir)/'`decode_2to1.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libmpg123_la-decode_2to1.Tpo" "$(DEPDIR)/libmpg123_la-decode_2to1.Plo"; else rm -f "$(DEPDIR)/libmpg123_la-decode_2to1.Tpo"; exit 1; fi +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='decode_2to1.c' object='libmpg123_la-decode_2to1.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libmpg123_la_CFLAGS) $(CFLAGS) -c -o libmpg123_la-decode_2to1.lo `test -f 'decode_2to1.c' || echo '$(srcdir)/'`decode_2to1.c + +libmpg123_la-decode_4to1.lo: decode_4to1.c +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libmpg123_la_CFLAGS) $(CFLAGS) -MT libmpg123_la-decode_4to1.lo -MD -MP -MF "$(DEPDIR)/libmpg123_la-decode_4to1.Tpo" -c -o libmpg123_la-decode_4to1.lo `test -f 'decode_4to1.c' || echo '$(srcdir)/'`decode_4to1.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libmpg123_la-decode_4to1.Tpo" "$(DEPDIR)/libmpg123_la-decode_4to1.Plo"; else rm -f "$(DEPDIR)/libmpg123_la-decode_4to1.Tpo"; exit 1; fi +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='decode_4to1.c' object='libmpg123_la-decode_4to1.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libmpg123_la_CFLAGS) $(CFLAGS) -c -o libmpg123_la-decode_4to1.lo `test -f 'decode_4to1.c' || echo '$(srcdir)/'`decode_4to1.c + +libmpg123_la-decode_ntom.lo: decode_ntom.c +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libmpg123_la_CFLAGS) $(CFLAGS) -MT libmpg123_la-decode_ntom.lo -MD -MP -MF "$(DEPDIR)/libmpg123_la-decode_ntom.Tpo" -c -o libmpg123_la-decode_ntom.lo `test -f 'decode_ntom.c' || echo '$(srcdir)/'`decode_ntom.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libmpg123_la-decode_ntom.Tpo" "$(DEPDIR)/libmpg123_la-decode_ntom.Plo"; else rm -f "$(DEPDIR)/libmpg123_la-decode_ntom.Tpo"; exit 1; fi +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='decode_ntom.c' object='libmpg123_la-decode_ntom.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libmpg123_la_CFLAGS) $(CFLAGS) -c -o libmpg123_la-decode_ntom.lo `test -f 'decode_ntom.c' || echo '$(srcdir)/'`decode_ntom.c + +libmpg123_la-equalizer.lo: equalizer.c +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libmpg123_la_CFLAGS) $(CFLAGS) -MT libmpg123_la-equalizer.lo -MD -MP -MF "$(DEPDIR)/libmpg123_la-equalizer.Tpo" -c -o libmpg123_la-equalizer.lo `test -f 'equalizer.c' || echo '$(srcdir)/'`equalizer.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libmpg123_la-equalizer.Tpo" "$(DEPDIR)/libmpg123_la-equalizer.Plo"; else rm -f "$(DEPDIR)/libmpg123_la-equalizer.Tpo"; exit 1; fi +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='equalizer.c' object='libmpg123_la-equalizer.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libmpg123_la_CFLAGS) $(CFLAGS) -c -o libmpg123_la-equalizer.lo `test -f 'equalizer.c' || echo '$(srcdir)/'`equalizer.c + +libmpg123_la-icy.lo: icy.c +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libmpg123_la_CFLAGS) $(CFLAGS) -MT libmpg123_la-icy.lo -MD -MP -MF "$(DEPDIR)/libmpg123_la-icy.Tpo" -c -o libmpg123_la-icy.lo `test -f 'icy.c' || echo '$(srcdir)/'`icy.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libmpg123_la-icy.Tpo" "$(DEPDIR)/libmpg123_la-icy.Plo"; else rm -f "$(DEPDIR)/libmpg123_la-icy.Tpo"; exit 1; fi +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='icy.c' object='libmpg123_la-icy.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libmpg123_la_CFLAGS) $(CFLAGS) -c -o libmpg123_la-icy.lo `test -f 'icy.c' || echo '$(srcdir)/'`icy.c + +libmpg123_la-icy2utf8.lo: icy2utf8.c +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libmpg123_la_CFLAGS) $(CFLAGS) -MT libmpg123_la-icy2utf8.lo -MD -MP -MF "$(DEPDIR)/libmpg123_la-icy2utf8.Tpo" -c -o libmpg123_la-icy2utf8.lo `test -f 'icy2utf8.c' || echo '$(srcdir)/'`icy2utf8.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libmpg123_la-icy2utf8.Tpo" "$(DEPDIR)/libmpg123_la-icy2utf8.Plo"; else rm -f "$(DEPDIR)/libmpg123_la-icy2utf8.Tpo"; exit 1; fi +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='icy2utf8.c' object='libmpg123_la-icy2utf8.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libmpg123_la_CFLAGS) $(CFLAGS) -c -o libmpg123_la-icy2utf8.lo `test -f 'icy2utf8.c' || echo '$(srcdir)/'`icy2utf8.c + +libmpg123_la-id3.lo: id3.c +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libmpg123_la_CFLAGS) $(CFLAGS) -MT libmpg123_la-id3.lo -MD -MP -MF "$(DEPDIR)/libmpg123_la-id3.Tpo" -c -o libmpg123_la-id3.lo `test -f 'id3.c' || echo '$(srcdir)/'`id3.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libmpg123_la-id3.Tpo" "$(DEPDIR)/libmpg123_la-id3.Plo"; else rm -f "$(DEPDIR)/libmpg123_la-id3.Tpo"; exit 1; fi +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='id3.c' object='libmpg123_la-id3.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libmpg123_la_CFLAGS) $(CFLAGS) -c -o libmpg123_la-id3.lo `test -f 'id3.c' || echo '$(srcdir)/'`id3.c + +libmpg123_la-layer1.lo: layer1.c +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libmpg123_la_CFLAGS) $(CFLAGS) -MT libmpg123_la-layer1.lo -MD -MP -MF "$(DEPDIR)/libmpg123_la-layer1.Tpo" -c -o libmpg123_la-layer1.lo `test -f 'layer1.c' || echo '$(srcdir)/'`layer1.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libmpg123_la-layer1.Tpo" "$(DEPDIR)/libmpg123_la-layer1.Plo"; else rm -f "$(DEPDIR)/libmpg123_la-layer1.Tpo"; exit 1; fi +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='layer1.c' object='libmpg123_la-layer1.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libmpg123_la_CFLAGS) $(CFLAGS) -c -o libmpg123_la-layer1.lo `test -f 'layer1.c' || echo '$(srcdir)/'`layer1.c + +libmpg123_la-layer2.lo: layer2.c +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libmpg123_la_CFLAGS) $(CFLAGS) -MT libmpg123_la-layer2.lo -MD -MP -MF "$(DEPDIR)/libmpg123_la-layer2.Tpo" -c -o libmpg123_la-layer2.lo `test -f 'layer2.c' || echo '$(srcdir)/'`layer2.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libmpg123_la-layer2.Tpo" "$(DEPDIR)/libmpg123_la-layer2.Plo"; else rm -f "$(DEPDIR)/libmpg123_la-layer2.Tpo"; exit 1; fi +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='layer2.c' object='libmpg123_la-layer2.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libmpg123_la_CFLAGS) $(CFLAGS) -c -o libmpg123_la-layer2.lo `test -f 'layer2.c' || echo '$(srcdir)/'`layer2.c + +libmpg123_la-layer3.lo: layer3.c +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libmpg123_la_CFLAGS) $(CFLAGS) -MT libmpg123_la-layer3.lo -MD -MP -MF "$(DEPDIR)/libmpg123_la-layer3.Tpo" -c -o libmpg123_la-layer3.lo `test -f 'layer3.c' || echo '$(srcdir)/'`layer3.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libmpg123_la-layer3.Tpo" "$(DEPDIR)/libmpg123_la-layer3.Plo"; else rm -f "$(DEPDIR)/libmpg123_la-layer3.Tpo"; exit 1; fi +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='layer3.c' object='libmpg123_la-layer3.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libmpg123_la_CFLAGS) $(CFLAGS) -c -o libmpg123_la-layer3.lo `test -f 'layer3.c' || echo '$(srcdir)/'`layer3.c + +libmpg123_la-optimize.lo: optimize.c +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libmpg123_la_CFLAGS) $(CFLAGS) -MT libmpg123_la-optimize.lo -MD -MP -MF "$(DEPDIR)/libmpg123_la-optimize.Tpo" -c -o libmpg123_la-optimize.lo `test -f 'optimize.c' || echo '$(srcdir)/'`optimize.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libmpg123_la-optimize.Tpo" "$(DEPDIR)/libmpg123_la-optimize.Plo"; else rm -f "$(DEPDIR)/libmpg123_la-optimize.Tpo"; exit 1; fi +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='optimize.c' object='libmpg123_la-optimize.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libmpg123_la_CFLAGS) $(CFLAGS) -c -o libmpg123_la-optimize.lo `test -f 'optimize.c' || echo '$(srcdir)/'`optimize.c + +libmpg123_la-readers.lo: readers.c +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libmpg123_la_CFLAGS) $(CFLAGS) -MT libmpg123_la-readers.lo -MD -MP -MF "$(DEPDIR)/libmpg123_la-readers.Tpo" -c -o libmpg123_la-readers.lo `test -f 'readers.c' || echo '$(srcdir)/'`readers.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libmpg123_la-readers.Tpo" "$(DEPDIR)/libmpg123_la-readers.Plo"; else rm -f "$(DEPDIR)/libmpg123_la-readers.Tpo"; exit 1; fi +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='readers.c' object='libmpg123_la-readers.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libmpg123_la_CFLAGS) $(CFLAGS) -c -o libmpg123_la-readers.lo `test -f 'readers.c' || echo '$(srcdir)/'`readers.c + +libmpg123_la-tabinit.lo: tabinit.c +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libmpg123_la_CFLAGS) $(CFLAGS) -MT libmpg123_la-tabinit.lo -MD -MP -MF "$(DEPDIR)/libmpg123_la-tabinit.Tpo" -c -o libmpg123_la-tabinit.lo `test -f 'tabinit.c' || echo '$(srcdir)/'`tabinit.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libmpg123_la-tabinit.Tpo" "$(DEPDIR)/libmpg123_la-tabinit.Plo"; else rm -f "$(DEPDIR)/libmpg123_la-tabinit.Tpo"; exit 1; fi +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='tabinit.c' object='libmpg123_la-tabinit.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libmpg123_la_CFLAGS) $(CFLAGS) -c -o libmpg123_la-tabinit.lo `test -f 'tabinit.c' || echo '$(srcdir)/'`tabinit.c + +libmpg123_la-stringbuf.lo: stringbuf.c +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libmpg123_la_CFLAGS) $(CFLAGS) -MT libmpg123_la-stringbuf.lo -MD -MP -MF "$(DEPDIR)/libmpg123_la-stringbuf.Tpo" -c -o libmpg123_la-stringbuf.lo `test -f 'stringbuf.c' || echo '$(srcdir)/'`stringbuf.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libmpg123_la-stringbuf.Tpo" "$(DEPDIR)/libmpg123_la-stringbuf.Plo"; else rm -f "$(DEPDIR)/libmpg123_la-stringbuf.Tpo"; exit 1; fi +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='stringbuf.c' object='libmpg123_la-stringbuf.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libmpg123_la_CFLAGS) $(CFLAGS) -c -o libmpg123_la-stringbuf.lo `test -f 'stringbuf.c' || echo '$(srcdir)/'`stringbuf.c + +libmpg123_la-libmpg123.lo: libmpg123.c +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libmpg123_la_CFLAGS) $(CFLAGS) -MT libmpg123_la-libmpg123.lo -MD -MP -MF "$(DEPDIR)/libmpg123_la-libmpg123.Tpo" -c -o libmpg123_la-libmpg123.lo `test -f 'libmpg123.c' || echo '$(srcdir)/'`libmpg123.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libmpg123_la-libmpg123.Tpo" "$(DEPDIR)/libmpg123_la-libmpg123.Plo"; else rm -f "$(DEPDIR)/libmpg123_la-libmpg123.Tpo"; exit 1; fi +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='libmpg123.c' object='libmpg123_la-libmpg123.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libmpg123_la_CFLAGS) $(CFLAGS) -c -o libmpg123_la-libmpg123.lo `test -f 'libmpg123.c' || echo '$(srcdir)/'`libmpg123.c + +libmpg123_la-index.lo: index.c +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libmpg123_la_CFLAGS) $(CFLAGS) -MT libmpg123_la-index.lo -MD -MP -MF "$(DEPDIR)/libmpg123_la-index.Tpo" -c -o libmpg123_la-index.lo `test -f 'index.c' || echo '$(srcdir)/'`index.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libmpg123_la-index.Tpo" "$(DEPDIR)/libmpg123_la-index.Plo"; else rm -f "$(DEPDIR)/libmpg123_la-index.Tpo"; exit 1; fi +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='index.c' object='libmpg123_la-index.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libmpg123_la_CFLAGS) $(CFLAGS) -c -o libmpg123_la-index.lo `test -f 'index.c' || echo '$(srcdir)/'`index.c + +libmpg123_la-dct64.lo: dct64.c +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libmpg123_la_CFLAGS) $(CFLAGS) -MT libmpg123_la-dct64.lo -MD -MP -MF "$(DEPDIR)/libmpg123_la-dct64.Tpo" -c -o libmpg123_la-dct64.lo `test -f 'dct64.c' || echo '$(srcdir)/'`dct64.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libmpg123_la-dct64.Tpo" "$(DEPDIR)/libmpg123_la-dct64.Plo"; else rm -f "$(DEPDIR)/libmpg123_la-dct64.Tpo"; exit 1; fi +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='dct64.c' object='libmpg123_la-dct64.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libmpg123_la_CFLAGS) $(CFLAGS) -c -o libmpg123_la-dct64.lo `test -f 'dct64.c' || echo '$(srcdir)/'`dct64.c + +libmpg123_la-decode.lo: decode.c +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libmpg123_la_CFLAGS) $(CFLAGS) -MT libmpg123_la-decode.lo -MD -MP -MF "$(DEPDIR)/libmpg123_la-decode.Tpo" -c -o libmpg123_la-decode.lo `test -f 'decode.c' || echo '$(srcdir)/'`decode.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libmpg123_la-decode.Tpo" "$(DEPDIR)/libmpg123_la-decode.Plo"; else rm -f "$(DEPDIR)/libmpg123_la-decode.Tpo"; exit 1; fi +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='decode.c' object='libmpg123_la-decode.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libmpg123_la_CFLAGS) $(CFLAGS) -c -o libmpg123_la-decode.lo `test -f 'decode.c' || echo '$(srcdir)/'`decode.c + +libmpg123_la-dct64_altivec.lo: dct64_altivec.c +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libmpg123_la_CFLAGS) $(CFLAGS) -MT libmpg123_la-dct64_altivec.lo -MD -MP -MF "$(DEPDIR)/libmpg123_la-dct64_altivec.Tpo" -c -o libmpg123_la-dct64_altivec.lo `test -f 'dct64_altivec.c' || echo '$(srcdir)/'`dct64_altivec.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libmpg123_la-dct64_altivec.Tpo" "$(DEPDIR)/libmpg123_la-dct64_altivec.Plo"; else rm -f "$(DEPDIR)/libmpg123_la-dct64_altivec.Tpo"; exit 1; fi +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='dct64_altivec.c' object='libmpg123_la-dct64_altivec.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libmpg123_la_CFLAGS) $(CFLAGS) -c -o libmpg123_la-dct64_altivec.lo `test -f 'dct64_altivec.c' || echo '$(srcdir)/'`dct64_altivec.c + +libmpg123_la-dct64_i386.lo: dct64_i386.c +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libmpg123_la_CFLAGS) $(CFLAGS) -MT libmpg123_la-dct64_i386.lo -MD -MP -MF "$(DEPDIR)/libmpg123_la-dct64_i386.Tpo" -c -o libmpg123_la-dct64_i386.lo `test -f 'dct64_i386.c' || echo '$(srcdir)/'`dct64_i386.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libmpg123_la-dct64_i386.Tpo" "$(DEPDIR)/libmpg123_la-dct64_i386.Plo"; else rm -f "$(DEPDIR)/libmpg123_la-dct64_i386.Tpo"; exit 1; fi +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='dct64_i386.c' object='libmpg123_la-dct64_i386.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libmpg123_la_CFLAGS) $(CFLAGS) -c -o libmpg123_la-dct64_i386.lo `test -f 'dct64_i386.c' || echo '$(srcdir)/'`dct64_i386.c + +libmpg123_la-dct64_i486.lo: dct64_i486.c +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libmpg123_la_CFLAGS) $(CFLAGS) -MT libmpg123_la-dct64_i486.lo -MD -MP -MF "$(DEPDIR)/libmpg123_la-dct64_i486.Tpo" -c -o libmpg123_la-dct64_i486.lo `test -f 'dct64_i486.c' || echo '$(srcdir)/'`dct64_i486.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libmpg123_la-dct64_i486.Tpo" "$(DEPDIR)/libmpg123_la-dct64_i486.Plo"; else rm -f "$(DEPDIR)/libmpg123_la-dct64_i486.Tpo"; exit 1; fi +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='dct64_i486.c' object='libmpg123_la-dct64_i486.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libmpg123_la_CFLAGS) $(CFLAGS) -c -o libmpg123_la-dct64_i486.lo `test -f 'dct64_i486.c' || echo '$(srcdir)/'`dct64_i486.c + +libmpg123_la-decode_altivec.lo: decode_altivec.c +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libmpg123_la_CFLAGS) $(CFLAGS) -MT libmpg123_la-decode_altivec.lo -MD -MP -MF "$(DEPDIR)/libmpg123_la-decode_altivec.Tpo" -c -o libmpg123_la-decode_altivec.lo `test -f 'decode_altivec.c' || echo '$(srcdir)/'`decode_altivec.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libmpg123_la-decode_altivec.Tpo" "$(DEPDIR)/libmpg123_la-decode_altivec.Plo"; else rm -f "$(DEPDIR)/libmpg123_la-decode_altivec.Tpo"; exit 1; fi +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='decode_altivec.c' object='libmpg123_la-decode_altivec.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libmpg123_la_CFLAGS) $(CFLAGS) -c -o libmpg123_la-decode_altivec.lo `test -f 'decode_altivec.c' || echo '$(srcdir)/'`decode_altivec.c + +libmpg123_la-decode_i386.lo: decode_i386.c +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libmpg123_la_CFLAGS) $(CFLAGS) -MT libmpg123_la-decode_i386.lo -MD -MP -MF "$(DEPDIR)/libmpg123_la-decode_i386.Tpo" -c -o libmpg123_la-decode_i386.lo `test -f 'decode_i386.c' || echo '$(srcdir)/'`decode_i386.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libmpg123_la-decode_i386.Tpo" "$(DEPDIR)/libmpg123_la-decode_i386.Plo"; else rm -f "$(DEPDIR)/libmpg123_la-decode_i386.Tpo"; exit 1; fi +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='decode_i386.c' object='libmpg123_la-decode_i386.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libmpg123_la_CFLAGS) $(CFLAGS) -c -o libmpg123_la-decode_i386.lo `test -f 'decode_i386.c' || echo '$(srcdir)/'`decode_i386.c + +libmpg123_la-decode_i486.lo: decode_i486.c +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libmpg123_la_CFLAGS) $(CFLAGS) -MT libmpg123_la-decode_i486.lo -MD -MP -MF "$(DEPDIR)/libmpg123_la-decode_i486.Tpo" -c -o libmpg123_la-decode_i486.lo `test -f 'decode_i486.c' || echo '$(srcdir)/'`decode_i486.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libmpg123_la-decode_i486.Tpo" "$(DEPDIR)/libmpg123_la-decode_i486.Plo"; else rm -f "$(DEPDIR)/libmpg123_la-decode_i486.Tpo"; exit 1; fi +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='decode_i486.c' object='libmpg123_la-decode_i486.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libmpg123_la_CFLAGS) $(CFLAGS) -c -o libmpg123_la-decode_i486.lo `test -f 'decode_i486.c' || echo '$(srcdir)/'`decode_i486.c + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs + +distclean-libtool: + -rm -f libtool +uninstall-info-am: + +ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) ' { files[$$0] = 1; } \ + END { for (i in files) print i; }'`; \ + mkid -fID $$unique +tags: TAGS + +TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) + tags=; \ + here=`pwd`; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) ' { files[$$0] = 1; } \ + END { for (i in files) print i; }'`; \ + if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$tags $$unique; \ + fi +ctags: CTAGS +CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) + tags=; \ + here=`pwd`; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) ' { files[$$0] = 1; } \ + END { for (i in files) print i; }'`; \ + test -z "$(CTAGS_ARGS)$$tags$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$tags $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && cd $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) $$here + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ + list='$(DISTFILES)'; for file in $$list; do \ + case $$file in \ + $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ + $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ + esac; \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test "$$dir" != "$$file" && test "$$dir" != "."; then \ + dir="/$$dir"; \ + $(mkdir_p) "$(distdir)$$dir"; \ + else \ + dir=''; \ + fi; \ + if test -d $$d/$$file; then \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ + fi; \ + cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ + else \ + test -f $(distdir)/$$file \ + || cp -p $$d/$$file $(distdir)/$$file \ + || exit 1; \ + fi; \ + done +check-am: all-am +check: check-am +all-am: Makefile $(LTLIBRARIES) +installdirs: +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + `test -z '$(STRIP)' || \ + echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-generic clean-libtool clean-noinstLTLIBRARIES \ + mostlyclean-am + +distclean: distclean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +distclean-am: clean-am distclean-compile distclean-generic \ + distclean-libtool distclean-tags + +dvi: dvi-am + +dvi-am: + +html: html-am + +info: info-am + +info-am: + +install-data-am: + +install-exec-am: + +install-info: install-info-am + +install-man: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-info-am + +.PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ + clean-libtool clean-noinstLTLIBRARIES ctags distclean \ + distclean-compile distclean-generic distclean-libtool \ + distclean-tags distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am install-exec \ + install-exec-am install-info install-info-am install-man \ + install-strip installcheck installcheck-am installdirs \ + maintainer-clean maintainer-clean-generic mostlyclean \ + mostlyclean-compile mostlyclean-generic mostlyclean-libtool \ + pdf pdf-am ps ps-am tags uninstall uninstall-am \ + uninstall-info-am + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff -r f2985e08589c -r 7e08477b0fc1 decoders/libmpg123/Makefile.in-original --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/decoders/libmpg123/Makefile.in-original Fri Jan 30 02:44:47 2009 -0500 @@ -0,0 +1,740 @@ +# Makefile.in generated by automake 1.9.6 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005 Free Software Foundation, Inc. +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + + +srcdir = @srcdir@ +top_srcdir = @top_srcdir@ +VPATH = @srcdir@ +pkgdatadir = $(datadir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +top_builddir = ../.. +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +INSTALL = @INSTALL@ +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +target_triplet = @target@ +EXTRA_PROGRAMS = testcpu$(EXEEXT) +subdir = src/libmpg123 +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ + $(srcdir)/libmpg123.sym.in $(srcdir)/mpg123.h.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/src/config.h +CONFIG_CLEAN_FILES = mpg123.h libmpg123.sym +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = `echo $$p | sed -e 's|^.*/||'`; +am__installdirs = "$(DESTDIR)$(libdir)" "$(DESTDIR)$(includedir)" +libLTLIBRARIES_INSTALL = $(INSTALL) +LTLIBRARIES = $(lib_LTLIBRARIES) +am_libmpg123_la_OBJECTS = compat.lo parse.lo frame.lo format.lo \ + decode_2to1.lo decode_4to1.lo decode_ntom.lo equalizer.lo \ + icy.lo icy2utf8.lo id3.lo layer1.lo layer2.lo layer3.lo \ + optimize.lo readers.lo tabinit.lo stringbuf.lo libmpg123.lo \ + index.lo +libmpg123_la_OBJECTS = $(am_libmpg123_la_OBJECTS) +testcpu_SOURCES = testcpu.c +testcpu_OBJECTS = testcpu.$(OBJEXT) +testcpu_DEPENDENCIES = getcpuflags.$(OBJEXT) +DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir)/src +depcomp = $(SHELL) $(top_srcdir)/build/depcomp +am__depfiles_maybe = depfiles +CCASCOMPILE = $(CCAS) $(AM_CCASFLAGS) $(CCASFLAGS) +LTCCASCOMPILE = $(LIBTOOL) --mode=compile $(CCAS) $(AM_CCASFLAGS) \ + $(CCASFLAGS) +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) +CCLD = $(CC) +LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ +SOURCES = $(libmpg123_la_SOURCES) $(EXTRA_libmpg123_la_SOURCES) \ + testcpu.c +DIST_SOURCES = $(libmpg123_la_SOURCES) $(EXTRA_libmpg123_la_SOURCES) \ + testcpu.c +nodist_includeHEADERS_INSTALL = $(INSTALL_HEADER) +HEADERS = $(nodist_include_HEADERS) +ETAGS = etags +CTAGS = ctags +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +AIX_CFLAGS = @AIX_CFLAGS@ +AIX_LDFLAGS = @AIX_LDFLAGS@ +AIX_LIBS = @AIX_LIBS@ +ALIB_CFLAGS = @ALIB_CFLAGS@ +ALIB_LDFLAGS = @ALIB_LDFLAGS@ +ALIB_LIBS = @ALIB_LIBS@ +ALSA_CFLAGS = @ALSA_CFLAGS@ +ALSA_LDFLAGS = @ALSA_LDFLAGS@ +ALSA_LIBS = @ALSA_LIBS@ +AMDEP_FALSE = @AMDEP_FALSE@ +AMDEP_TRUE = @AMDEP_TRUE@ +AMTAR = @AMTAR@ +AR = @AR@ +ARTS_CFLAGS = @ARTS_CFLAGS@ +ARTS_LDFLAGS = @ARTS_LDFLAGS@ +ARTS_LIBS = @ARTS_LIBS@ +AS = @AS@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CC = @CC@ +CCAS = @CCAS@ +CCASFLAGS = @CCASFLAGS@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +COREAUDIO_CFLAGS = @COREAUDIO_CFLAGS@ +COREAUDIO_LDFLAGS = @COREAUDIO_LDFLAGS@ +COREAUDIO_LIBS = @COREAUDIO_LIBS@ +CPP = @CPP@ +CPPFLAGS = @CPPFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DECODER_LOBJ = @DECODER_LOBJ@ +DECODER_OBJ = @DECODER_OBJ@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DLLTOOL = @DLLTOOL@ +DUMMY_CFLAGS = @DUMMY_CFLAGS@ +DUMMY_LDFLAGS = @DUMMY_LDFLAGS@ +DUMMY_LIBS = @DUMMY_LIBS@ +ECHO = @ECHO@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +ESD_CFLAGS = @ESD_CFLAGS@ +ESD_LDFLAGS = @ESD_LDFLAGS@ +ESD_LIBS = @ESD_LIBS@ +EXEEXT = @EXEEXT@ +GREP = @GREP@ +HAVE_AIX_FALSE = @HAVE_AIX_FALSE@ +HAVE_AIX_TRUE = @HAVE_AIX_TRUE@ +HAVE_ALIB_FALSE = @HAVE_ALIB_FALSE@ +HAVE_ALIB_TRUE = @HAVE_ALIB_TRUE@ +HAVE_ALSA_FALSE = @HAVE_ALSA_FALSE@ +HAVE_ALSA_TRUE = @HAVE_ALSA_TRUE@ +HAVE_ARTS_FALSE = @HAVE_ARTS_FALSE@ +HAVE_ARTS_TRUE = @HAVE_ARTS_TRUE@ +HAVE_COREAUDIO_FALSE = @HAVE_COREAUDIO_FALSE@ +HAVE_COREAUDIO_TRUE = @HAVE_COREAUDIO_TRUE@ +HAVE_DUMMY_FALSE = @HAVE_DUMMY_FALSE@ +HAVE_DUMMY_TRUE = @HAVE_DUMMY_TRUE@ +HAVE_ESD_FALSE = @HAVE_ESD_FALSE@ +HAVE_ESD_TRUE = @HAVE_ESD_TRUE@ +HAVE_HP_FALSE = @HAVE_HP_FALSE@ +HAVE_HP_TRUE = @HAVE_HP_TRUE@ +HAVE_JACK_FALSE = @HAVE_JACK_FALSE@ +HAVE_JACK_TRUE = @HAVE_JACK_TRUE@ +HAVE_MINT_FALSE = @HAVE_MINT_FALSE@ +HAVE_MINT_TRUE = @HAVE_MINT_TRUE@ +HAVE_MODULES_FALSE = @HAVE_MODULES_FALSE@ +HAVE_MODULES_TRUE = @HAVE_MODULES_TRUE@ +HAVE_NAS_FALSE = @HAVE_NAS_FALSE@ +HAVE_NAS_TRUE = @HAVE_NAS_TRUE@ +HAVE_OS2_FALSE = @HAVE_OS2_FALSE@ +HAVE_OS2_TRUE = @HAVE_OS2_TRUE@ +HAVE_OSS_FALSE = @HAVE_OSS_FALSE@ +HAVE_OSS_TRUE = @HAVE_OSS_TRUE@ +HAVE_PORTAUDIO_FALSE = @HAVE_PORTAUDIO_FALSE@ +HAVE_PORTAUDIO_TRUE = @HAVE_PORTAUDIO_TRUE@ +HAVE_PULSE_FALSE = @HAVE_PULSE_FALSE@ +HAVE_PULSE_TRUE = @HAVE_PULSE_TRUE@ +HAVE_SDL_FALSE = @HAVE_SDL_FALSE@ +HAVE_SDL_TRUE = @HAVE_SDL_TRUE@ +HAVE_SGI_FALSE = @HAVE_SGI_FALSE@ +HAVE_SGI_TRUE = @HAVE_SGI_TRUE@ +HAVE_SUN_FALSE = @HAVE_SUN_FALSE@ +HAVE_SUN_TRUE = @HAVE_SUN_TRUE@ +HAVE_WIN32_FALSE = @HAVE_WIN32_FALSE@ +HAVE_WIN32_TRUE = @HAVE_WIN32_TRUE@ +HP_CFLAGS = @HP_CFLAGS@ +HP_LDFLAGS = @HP_LDFLAGS@ +HP_LIBS = @HP_LIBS@ +INCLUDE_STDIO_H = @INCLUDE_STDIO_H@ +INCLUDE_STDLIB_H = @INCLUDE_STDLIB_H@ +INCLUDE_SYS_TYPE_H = @INCLUDE_SYS_TYPE_H@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +JACK_CFLAGS = @JACK_CFLAGS@ +JACK_LDFLAGS = @JACK_LDFLAGS@ +JACK_LIBS = @JACK_LIBS@ +LARGEFILE_BITS = @LARGEFILE_BITS@ +LARGEFILE_SUFFIX = @LARGEFILE_SUFFIX@ +LARGEFILE_SWITCH = @LARGEFILE_SWITCH@ +LDFLAGS = @LDFLAGS@ +LIBLTDL = @LIBLTDL@ +LIBMPG123_VERSION = @LIBMPG123_VERSION@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIBTOOL = @LIBTOOL@ +LN_S = @LN_S@ +LTDLDIR = @LTDLDIR@ +LTDLINCL = @LTDLINCL@ +LTLIBOBJS = @LTLIBOBJS@ +LT_LDFLAGS = @LT_LDFLAGS@ +MAKEINFO = @MAKEINFO@ +MINT_CFLAGS = @MINT_CFLAGS@ +MINT_LDFLAGS = @MINT_LDFLAGS@ +MINT_LIBS = @MINT_LIBS@ +MODULE_OBJ = @MODULE_OBJ@ +NAS_CFLAGS = @NAS_CFLAGS@ +NAS_LDFLAGS = @NAS_LDFLAGS@ +NAS_LIBS = @NAS_LIBS@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OS2_CFLAGS = @OS2_CFLAGS@ +OS2_LDFLAGS = @OS2_LDFLAGS@ +OS2_LIBS = @OS2_LIBS@ +OSS_CFLAGS = @OSS_CFLAGS@ +OSS_LDFLAGS = @OSS_LDFLAGS@ +OSS_LIBS = @OSS_LIBS@ +OUTPUT_CFLAGS = @OUTPUT_CFLAGS@ +OUTPUT_LDFLAGS = @OUTPUT_LDFLAGS@ +OUTPUT_LIBS = @OUTPUT_LIBS@ +OUTPUT_MOD = @OUTPUT_MOD@ +OUTPUT_OBJ = @OUTPUT_OBJ@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PKG_CONFIG = @PKG_CONFIG@ +PORTAUDIO_CFLAGS = @PORTAUDIO_CFLAGS@ +PORTAUDIO_LDFLAGS = @PORTAUDIO_LDFLAGS@ +PORTAUDIO_LIBS = @PORTAUDIO_LIBS@ +PULSE_CFLAGS = @PULSE_CFLAGS@ +PULSE_LDFLAGS = @PULSE_LDFLAGS@ +PULSE_LIBS = @PULSE_LIBS@ +RANLIB = @RANLIB@ +SDL_CFLAGS = @SDL_CFLAGS@ +SDL_LDFLAGS = @SDL_LDFLAGS@ +SDL_LIBS = @SDL_LIBS@ +SET_MAKE = @SET_MAKE@ +SGI_CFLAGS = @SGI_CFLAGS@ +SGI_LDFLAGS = @SGI_LDFLAGS@ +SGI_LIBS = @SGI_LIBS@ +SHELL = @SHELL@ +STRIP = @STRIP@ +SUN_CFLAGS = @SUN_CFLAGS@ +SUN_LDFLAGS = @SUN_LDFLAGS@ +SUN_LIBS = @SUN_LIBS@ +VERSION = @VERSION@ +WIN32_CFLAGS = @WIN32_CFLAGS@ +WIN32_LDFLAGS = @WIN32_LDFLAGS@ +WIN32_LIBS = @WIN32_LIBS@ +ac_ct_CC = @ac_ct_CC@ +am__fastdepCC_FALSE = @am__fastdepCC_FALSE@ +am__fastdepCC_TRUE = @am__fastdepCC_TRUE@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +subdirs = @subdirs@ +sysconfdir = @sysconfdir@ +target = @target@ +target_alias = @target_alias@ +target_cpu = @target_cpu@ +target_os = @target_os@ +target_vendor = @target_vendor@ + +#AM_CFLAGS = @AUDIO_CFLAGS@ +#AM_LDFLAGS = +INCLUDES = -I$(top_srcdir)/src -I$(top_srcdir)/src/libmpg123 +EXTRA_DIST = mpg123.h.in dnoise.sh dnoise.dat +testcpu_dependencies = getcpuflags.$(OBJEXT) +testcpu_sources = testcpu.c +testcpu_LDADD = getcpuflags.$(OBJEXT) +CLEANFILES = *.a + +#lib_LIBRARIES = libmpg123.a +lib_LTLIBRARIES = libmpg123.la +nodist_include_HEADERS = mpg123.h + +#libmpg123_a_LIBADD = @DECODER_OBJ@ +#libmpg123_a_DEPENDENCIES = @DECODER_OBJ@ +libmpg123_la_LDFLAGS = -no-undefined -version-info @LIBMPG123_VERSION@ -export-symbols $(top_srcdir)/src/libmpg123/libmpg123.sym +libmpg123_la_LIBADD = @DECODER_LOBJ@ +libmpg123_la_DEPENDENCIES = @DECODER_LOBJ@ $(top_srcdir)/src/libmpg123/libmpg123.sym +libmpg123_la_SOURCES = \ + compat.c \ + compat.h \ + parse.c \ + parse.h \ + frame.c \ + format.c \ + frame.h \ + reader.h \ + debug.h \ + decode.h \ + decode_2to1.c \ + decode_4to1.c \ + decode_ntom.c \ + equalizer.c \ + huffman.h \ + icy.c \ + icy.h \ + icy2utf8.c \ + icy2utf8.h \ + id3.c \ + id3.h \ + true.h \ + l2tables.h \ + layer1.c \ + layer2.c \ + layer3.c \ + getbits.h \ + optimize.h \ + optimize.c \ + readers.c \ + tabinit.c \ + stringbuf.c \ + libmpg123.c \ + mpg123lib_intern.h \ + mangle.h \ + getcpuflags.h \ + index.h \ + index.c \ + libmpg123.sym + +EXTRA_libmpg123_la_SOURCES = \ + dct36_3dnowext.S \ + dct36_3dnow.S \ + dct64_3dnowext.S \ + dct64_3dnow.S \ + dct64_altivec.c \ + dct64.c \ + dct64_i386.c \ + dct64_i486.c \ + dct64_mmx.S \ + dct64_sse.S \ + decode_3dnowext.S \ + decode_3dnow.S \ + decode_altivec.c \ + decode.c \ + decode_i386.c \ + decode_i486.c \ + decode_i586_dither.S \ + decode_i586.S \ + decode_mmx.S \ + decode_sse3d.h \ + decode_sse.S \ + equalizer_3dnow.S \ + tabinit_mmx.S \ + getcpuflags.S + +all: all-am + +.SUFFIXES: +.SUFFIXES: .S .c .lo .o .obj +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu src/libmpg123/Makefile'; \ + cd $(top_srcdir) && \ + $(AUTOMAKE) --gnu src/libmpg123/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +mpg123.h: $(top_builddir)/config.status $(srcdir)/mpg123.h.in + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ +libmpg123.sym: $(top_builddir)/config.status $(srcdir)/libmpg123.sym.in + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ +install-libLTLIBRARIES: $(lib_LTLIBRARIES) + @$(NORMAL_INSTALL) + test -z "$(libdir)" || $(mkdir_p) "$(DESTDIR)$(libdir)" + @list='$(lib_LTLIBRARIES)'; for p in $$list; do \ + if test -f $$p; then \ + f=$(am__strip_dir) \ + echo " $(LIBTOOL) --mode=install $(libLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) '$$p' '$(DESTDIR)$(libdir)/$$f'"; \ + $(LIBTOOL) --mode=install $(libLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) "$$p" "$(DESTDIR)$(libdir)/$$f"; \ + else :; fi; \ + done + +uninstall-libLTLIBRARIES: + @$(NORMAL_UNINSTALL) + @set -x; list='$(lib_LTLIBRARIES)'; for p in $$list; do \ + p=$(am__strip_dir) \ + echo " $(LIBTOOL) --mode=uninstall rm -f '$(DESTDIR)$(libdir)/$$p'"; \ + $(LIBTOOL) --mode=uninstall rm -f "$(DESTDIR)$(libdir)/$$p"; \ + done + +clean-libLTLIBRARIES: + -test -z "$(lib_LTLIBRARIES)" || rm -f $(lib_LTLIBRARIES) + @list='$(lib_LTLIBRARIES)'; for p in $$list; do \ + dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \ + test "$$dir" != "$$p" || dir=.; \ + echo "rm -f \"$${dir}/so_locations\""; \ + rm -f "$${dir}/so_locations"; \ + done +libmpg123.la: $(libmpg123_la_OBJECTS) $(libmpg123_la_DEPENDENCIES) + $(LINK) -rpath $(libdir) $(libmpg123_la_LDFLAGS) $(libmpg123_la_OBJECTS) $(libmpg123_la_LIBADD) $(LIBS) +testcpu$(EXEEXT): $(testcpu_OBJECTS) $(testcpu_DEPENDENCIES) + @rm -f testcpu$(EXEEXT) + $(LINK) $(testcpu_LDFLAGS) $(testcpu_OBJECTS) $(testcpu_LDADD) $(LIBS) + +mostlyclean-compile: + -rm -f *.$(OBJEXT) + +distclean-compile: + -rm -f *.tab.c + +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/compat.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/dct64.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/dct64_altivec.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/dct64_i386.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/dct64_i486.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/decode.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/decode_2to1.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/decode_4to1.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/decode_altivec.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/decode_i386.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/decode_i486.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/decode_ntom.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/equalizer.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/format.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/frame.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/icy.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/icy2utf8.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/id3.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/index.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/layer1.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/layer2.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/layer3.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libmpg123.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/optimize.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/parse.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/readers.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/stringbuf.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tabinit.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/testcpu.Po@am__quote@ + +.S.obj: + $(CCASCOMPILE) -c `$(CYGPATH_W) '$<'` + +.c.o: +@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(COMPILE) -c $< + +.c.obj: +@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` + +.c.lo: +@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs + +distclean-libtool: + -rm -f libtool +uninstall-info-am: +install-nodist_includeHEADERS: $(nodist_include_HEADERS) + @$(NORMAL_INSTALL) + test -z "$(includedir)" || $(mkdir_p) "$(DESTDIR)$(includedir)" + @list='$(nodist_include_HEADERS)'; for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + f=$(am__strip_dir) \ + echo " $(nodist_includeHEADERS_INSTALL) '$$d$$p' '$(DESTDIR)$(includedir)/$$f'"; \ + $(nodist_includeHEADERS_INSTALL) "$$d$$p" "$(DESTDIR)$(includedir)/$$f"; \ + done + +uninstall-nodist_includeHEADERS: + @$(NORMAL_UNINSTALL) + @list='$(nodist_include_HEADERS)'; for p in $$list; do \ + f=$(am__strip_dir) \ + echo " rm -f '$(DESTDIR)$(includedir)/$$f'"; \ + rm -f "$(DESTDIR)$(includedir)/$$f"; \ + done + +ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) ' { files[$$0] = 1; } \ + END { for (i in files) print i; }'`; \ + mkid -fID $$unique +tags: TAGS + +TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) + tags=; \ + here=`pwd`; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) ' { files[$$0] = 1; } \ + END { for (i in files) print i; }'`; \ + if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$tags $$unique; \ + fi +ctags: CTAGS +CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) + tags=; \ + here=`pwd`; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) ' { files[$$0] = 1; } \ + END { for (i in files) print i; }'`; \ + test -z "$(CTAGS_ARGS)$$tags$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$tags $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && cd $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) $$here + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ + list='$(DISTFILES)'; for file in $$list; do \ + case $$file in \ + $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ + $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ + esac; \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test "$$dir" != "$$file" && test "$$dir" != "."; then \ + dir="/$$dir"; \ + $(mkdir_p) "$(distdir)$$dir"; \ + else \ + dir=''; \ + fi; \ + if test -d $$d/$$file; then \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ + fi; \ + cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ + else \ + test -f $(distdir)/$$file \ + || cp -p $$d/$$file $(distdir)/$$file \ + || exit 1; \ + fi; \ + done +check-am: all-am +check: check-am +all-am: Makefile $(LTLIBRARIES) $(HEADERS) +installdirs: + for dir in "$(DESTDIR)$(libdir)" "$(DESTDIR)$(includedir)"; do \ + test -z "$$dir" || $(mkdir_p) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + `test -z '$(STRIP)' || \ + echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install +mostlyclean-generic: + +clean-generic: + -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES) + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-generic clean-libLTLIBRARIES clean-libtool \ + mostlyclean-am + +distclean: distclean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +distclean-am: clean-am distclean-compile distclean-generic \ + distclean-libtool distclean-tags + +dvi: dvi-am + +dvi-am: + +html: html-am + +info: info-am + +info-am: + +install-data-am: install-nodist_includeHEADERS + +install-exec-am: install-libLTLIBRARIES + +install-info: install-info-am + +install-man: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-info-am uninstall-libLTLIBRARIES \ + uninstall-nodist_includeHEADERS + +.PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ + clean-libLTLIBRARIES clean-libtool ctags distclean \ + distclean-compile distclean-generic distclean-libtool \ + distclean-tags distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am install-exec \ + install-exec-am install-info install-info-am \ + install-libLTLIBRARIES install-man \ + install-nodist_includeHEADERS install-strip installcheck \ + installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-compile \ + mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ + tags uninstall uninstall-am uninstall-info-am \ + uninstall-libLTLIBRARIES uninstall-nodist_includeHEADERS + + +# explicit preprocessing since mingw32 does not honor the big .S +.S.o: + $(CPP) $(AM_CPPFLAGS) $(DEFAULT_INCLUDES) $(CPPFLAGS) $< > $<.s + $(CCAS) $(CCASFLAGS) -c -o $@ $<.s && rm $<.s + +.S.lo: + $(LTCCASCOMPILE) $(DEFAULT_INCLUDES) -c -o $@ $< + +dnoise.c: dnoise.dat dnoise.sh + sh dnoise.sh "$<" > "$@" +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff -r f2985e08589c -r 7e08477b0fc1 decoders/libmpg123/README-sdlsound.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/decoders/libmpg123/README-sdlsound.txt Fri Jan 30 02:44:47 2009 -0500 @@ -0,0 +1,7 @@ +This package, according to the README, is under the LGPL, which means it uses +the same license as SDL_sound. + +libmpg123 is part of mpg123, which can be found at http://www.mpg123.org/ ... + +--ryan. + diff -r f2985e08589c -r 7e08477b0fc1 decoders/libmpg123/compat.c --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/decoders/libmpg123/compat.c Fri Jan 30 02:44:47 2009 -0500 @@ -0,0 +1,41 @@ +/* + compat: Some compatibility functions. Basic standard C stuff, that may barely be above/around C89. + + The mpg123 code is determined to keep it's legacy. A legacy of old, old UNIX. + + copyright 2007-8 by the mpg123 project - free software under the terms of the LGPL 2.1 + see COPYING and AUTHORS files in distribution or http://mpg123.org + initially written by Thomas Orgis +*/ + +#include "config.h" +#include "compat.h" + +/* A safe realloc also for very old systems where realloc(NULL, size) returns NULL. */ +void *safe_realloc(void *ptr, size_t size) +{ + if(ptr == NULL) return malloc(size); + else return realloc(ptr, size); +} + +#ifndef HAVE_STRERROR +const char *strerror(int errnum) +{ + extern int sys_nerr; + extern char *sys_errlist[]; + + return (errnum < sys_nerr) ? sys_errlist[errnum] : ""; +} +#endif + +#ifndef HAVE_STRDUP +char *strdup(const char *src) +{ + char *dest; + + if (!(dest = (char *) malloc(strlen(src)+1))) + return NULL; + else + return strcpy(dest, src); +} +#endif diff -r f2985e08589c -r 7e08477b0fc1 decoders/libmpg123/compat.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/decoders/libmpg123/compat.h Fri Jan 30 02:44:47 2009 -0500 @@ -0,0 +1,124 @@ +/* + compat: Some compatibility functions and header inclusions. + Basic standard C stuff, that may barely be above/around C89. + + The mpg123 code is determined to keep it's legacy. A legacy of old, old UNIX. + It is envisioned to include this compat header instead of any of the "standard" headers, to catch compatibility issues. + So, don't include stdlib.h or string.h ... include compat.h. + + copyright 2007-8 by the mpg123 project - free software under the terms of the LGPL 2.1 + see COPYING and AUTHORS files in distribution or http://mpg123.org + initially written by Thomas Orgis +*/ + +#ifndef MPG123_COMPAT_H +#define MPG123_COMPAT_H + +#include "config.h" + +#ifdef HAVE_STDLIB_H +/* realloc, size_t */ +#include +#endif + +#include +#include + +#ifdef HAVE_SIGNAL_H +#include +#else +#ifdef HAVE_SYS_SIGNAL_H +#include +#endif +#endif + +#ifdef HAVE_UNISTD_H +#include +#endif + +/* Types, types, types. */ +/* Do we actually need these two in addition to sys/types.h? As replacement? */ +#ifdef HAVE_SYS_TYPES_H +#include +#endif +#ifdef HAVE_INTTYPES_H +#include +#endif +#ifdef HAVE_STDINT_H +#include +#endif +/* We want SIZE_MAX, etc. */ +#ifdef HAVE_LIMITS_H +#include +#endif + +#ifndef SIZE_MAX +#define SIZE_MAX ((size_t)-1) +#endif +#ifndef ULONG_MAX +#define ULONG_MAX ((unsigned long)-1) +#endif + +#ifdef HAVE_STRING_H +#include +#endif + +#ifdef OS2 +#include +#endif + +#ifdef HAVE_SYS_TIME_H +#include +#endif +/* For select(), I need select.h according to POSIX 2001, else: sys/time.h sys/types.h unistd.h */ +#ifdef HAVE_SYS_SELECT_H +#include +#endif + +/* To parse big numbers... */ +#ifdef HAVE_ATOLL +#define atobigint atoll +#else +#define atobigint atol +#endif + +typedef unsigned char byte; + +/* A safe realloc also for very old systems where realloc(NULL, size) returns NULL. */ +void *safe_realloc(void *ptr, size_t size); +#ifndef HAVE_STRERROR +const char *strerror(int errnum); +#endif + +#ifndef HAVE_STRDUP +char *strdup(const char *s); +#endif + +/* If we have the size checks enabled, try to derive some sane printfs. + Simple start: Use max integer type and format if long is not big enough. + I am hesitating to use %ll without making sure that it's there... */ +#if (defined SIZEOF_OFF_T) && (SIZEOF_OFF_T > SIZEOF_LONG) && (defined PRIiMAX) +# define OFF_P PRIiMAX +typedef intmax_t off_p; +#else +# define OFF_P "li" +typedef long off_p; +#endif + +#if (defined SIZEOF_SIZE_T) && (SIZEOF_SIZE_T > SIZEOF_LONG) && (defined PRIuMAX) +# define SIZE_P PRIuMAX +typedef uintmax_t size_p; +#else +# define SIZE_P "lu" +typedef unsigned long size_p; +#endif + +#if (defined SIZEOF_SSIZE_T) && (SIZEOF_SSIZE_T > SIZEOF_LONG) && (defined PRIiMAX) +# define SSIZE_P PRIuMAX +typedef intmax_t ssize_p; +#else +# define SSIZE_P "li" +typedef long ssize_p; +#endif + +#endif diff -r f2985e08589c -r 7e08477b0fc1 decoders/libmpg123/config.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/decoders/libmpg123/config.h Fri Jan 30 02:44:47 2009 -0500 @@ -0,0 +1,285 @@ + +/* Define if .align takes 3 for alignment of 2^3=8 bytes instead of 8. */ +/* #undef ASMALIGN_EXP */ + +/* Define if __attribute__((aligned(16))) shall be used */ +/* #undef CCALIGN */ + +/* Define if checking of stack alignment is wanted. */ +#define CHECK_ALIGN 1 + +/* Define if debugging is enabled. */ +/* #undef DEBUG */ + +/* The default audio output module(s) to use */ +#define DEFAULT_OUTPUT_MODULE "alsa,oss,esd,pulse,sdl,nas,arts" + +/* Define if building with dynamcally linked libmpg123 */ +#define DYNAMIC_BUILD 1 + +/* Define if FIFO support is enabled. */ +#define FIFO 1 + +/* Define if frame index should be used. */ +#define FRAME_INDEX 1 + +/* Define if gapless is enabled. */ +#define GAPLESS 1 + +/* Define to 1 if you have the header file. */ +/* #undef HAVE_ALIB_H */ + +/* Define to 1 if you have the header file. */ +#define HAVE_ARPA_INET_H 1 + +/* Define to 1 if you have the header file. */ +/* #undef HAVE_ASM_AUDIOIO_H */ + +/* Define to 1 if you have the `atoll' function. */ +#define HAVE_ATOLL 1 + +/* Define to 1 if you have the header file. */ +/* #undef HAVE_AUDIOS_H */ + +/* Define to 1 if you have the header file. */ +/* #undef HAVE_AUDIOTOOLBOX_AUDIOTOOLBOX_H */ + +/* Define to 1 if you have the header file. */ +/* #undef HAVE_AUDIOUNIT_AUDIOUNIT_H */ + +/* Define to 1 if you have the header file. */ +/* #undef HAVE_CORESERVICES_CORESERVICES_H */ + +/* Define to 1 if you have the header file. */ +/* #undef HAVE_CULIB_H */ + +/* Define to 1 if you have the header file. */ +#define HAVE_DLFCN_H 1 + +/* Define to 1 if you have the `getaddrinfo' function. */ +#define HAVE_GETADDRINFO 1 + +/* Define to 1 if you have the `getpagesize' function. */ +#define HAVE_GETPAGESIZE 1 + +/* Define to 1 if you have the `getuid' function. */ +#define HAVE_GETUID 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_INTTYPES_H 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_LANGINFO_H 1 + +/* Define to 1 if you have the `m' library (-lm). */ +#define HAVE_LIBM 1 + +/* Define to 1 if you have the `mx' library (-lmx). */ +/* #undef HAVE_LIBMX */ + +/* Define to 1 if you have the header file. */ +#define HAVE_LIMITS_H 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_LINUX_SOUNDCARD_H 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_LOCALE_H 1 + +/* Define if LTDL library is available. */ +#define HAVE_LTDL 1 + +/* Define to 1 if you have the header file. */ +/* #undef HAVE_MACHINE_SOUNDCARD_H */ + +/* Define to 1 if you have the header file. */ +#define HAVE_MEMORY_H 1 + +/* Define to 1 if you have the `mkfifo' function. */ +#define HAVE_MKFIFO 1 + +/* Define to 1 if you have a working `mmap' system call. */ +#define HAVE_MMAP 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_NETDB_H 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_NETINET_IN_H 1 + +/* Define to 1 if you have the header file. */ +/* #undef HAVE_NETINET_TCP_H */ + +/* Define to 1 if you have the `nl_langinfo' function. */ +#define HAVE_NL_LANGINFO 1 + +/* Define to 1 if you have the header file. */ +/* #undef HAVE_OS2ME_H */ + +/* Define to 1 if you have the header file. */ +/* #undef HAVE_OS2_H */ + +/* Define to 1 if you have the `random' function. */ +#define HAVE_RANDOM 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_SCHED_H 1 + +/* Define to 1 if you have the `sched_setscheduler' function. */ +#define HAVE_SCHED_SETSCHEDULER 1 + +/* Define to 1 if you have the `setlocale' function. */ +#define HAVE_SETLOCALE 1 + +/* Define to 1 if you have the `setpriority' function. */ +#define HAVE_SETPRIORITY 1 + +/* Define to 1 if you have the `setuid' function. */ +#define HAVE_SETUID 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_SIGNAL_H 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_STDINT_H 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_STDIO_H 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_STDLIB_H 1 + +/* Define to 1 if you have the `strdup' function. */ +#define HAVE_STRDUP 1 + +/* Define to 1 if you have the `strerror' function. */ +#define HAVE_STRERROR 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_STRINGS_H 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_STRING_H 1 + +/* Define to 1 if you have the header file. */ +/* #undef HAVE_SUN_AUDIOIO_H */ + +/* Define to 1 if you have the header file. */ +/* #undef HAVE_SYS_AUDIOIO_H */ + +/* Define to 1 if you have the header file. */ +/* #undef HAVE_SYS_AUDIO_H */ + +/* Define to 1 if you have the header file. */ +#define HAVE_SYS_IOCTL_H 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_SYS_PARAM_H 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_SYS_RESOURCE_H 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_SYS_SIGNAL_H 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_SYS_SOCKET_H 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_SYS_SOUNDCARD_H 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_SYS_STAT_H 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_SYS_TIME_H 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_SYS_TYPES_H 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_SYS_WAIT_H 1 + +/* Define this if you have the POSIX termios library */ +#define HAVE_TERMIOS 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_UNISTD_H 1 + +/* Define to 1 if you have the header file. */ +/* #undef HAVE_WINDOWS_H */ + +/* size of the frame index seek table */ +#define INDEX_SIZE 1000 + +/* Define if IPV6 support is enabled. */ +#define IPV6 1 + +/* Define if network support is enabled. */ +#define NETWORK 1 + +/* Name of package */ +#define PACKAGE "mpg123" + +/* Define to the address where bug reports for this package should be sent. */ +#define PACKAGE_BUGREPORT "mpg123-devel@lists.sourceforge.net" + +/* Define to the full name of this package. */ +#define PACKAGE_NAME "mpg123" + +/* Define to the full name and version of this package. */ +#define PACKAGE_STRING "mpg123 1.6.4" + +/* Define to the one symbol short name of this package. */ +#define PACKAGE_TARNAME "mpg123" + +/* Define to the version of this package. */ +#define PACKAGE_VERSION "1.6.4" + +/* Define if portaudio v18 API is wanted. */ +/* #undef PORTAUDIO18 */ + +/* The size of `long', as computed by sizeof. */ +/*#define SIZEOF_LONG sizeof (long)*/ + +/* The size of `off_t', as computed by sizeof. */ +/*#define SIZEOF_OFF_T sizeof (off_t)*/ + +/* The size of `size_t', as computed by sizeof. */ +/*#define SIZEOF_SIZE_T sizeof (size_t)*/ + +/* The size of `ssize_t', as computed by sizeof. */ +/*#define SIZEOF_SSIZE_T sizeof (ssize_t)*/ + +/* Define to 1 if you have the ANSI C header files. */ +#define STDC_HEADERS 1 + +/* Define if modules are enabled */ +#define USE_MODULES 1 + +/* Version number of package */ +#define VERSION "1.6.4" + +/* Number of bits in a file offset, on hosts where this is settable. */ +/* #undef _FILE_OFFSET_BITS */ + +/* Define for large files, on AIX-style hosts. */ +/* #undef _LARGE_FILES */ + +/* Define to empty if `const' does not conform to ANSI C. */ +/* #undef const */ + +/* Define to `__inline__' or `__inline' if that's what the C compiler + calls it, or to nothing if 'inline' is not supported under any name. */ +#ifndef __cplusplus +/* #undef inline */ +#endif + +/* Define to `long int' if does not define. */ +/* #undef off_t */ + +/* Define to `unsigned int' if does not define. */ +/* #undef size_t */ + +/* Define to `int' if does not define. */ +/* #undef ssize_t */ diff -r f2985e08589c -r 7e08477b0fc1 decoders/libmpg123/dct36_3dnow.S --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/decoders/libmpg123/dct36_3dnow.S Fri Jan 30 02:44:47 2009 -0500 @@ -0,0 +1,508 @@ +/* + dct64_3dnow.s: Replacement of dct36() with AMD's 3DNow! SIMD operations support + + copyright ?-2006 by the mpg123 project - free software under the terms of the LGPL 2.1 + see COPYING and AUTHORS files in distribution or http://mpg123.org + initially written by Syuuhei Kashiyama + + This code based 'dct36_3dnow.s' by Syuuhei Kashiyama + ,only two types of changes have been made: + + - remove PREFETCH instruction for speedup + - change function name for support 3DNow! automatic detect + + You can find Kashiyama's original 3dnow! support patch + (for mpg123-0.59o) at + http://user.ecc.u-tokyo.ac.jp/~g810370/linux-simd/ (Japanese). + + by KIMURA Takuhiro - until 31.Mar.1999 + - after 1.Apr.1999 + + Replacement of dct36() with AMD's 3DNow! SIMD operations support + + Syuuhei Kashiyama + + The author of this program disclaim whole expressed or implied + warranties with regard to this program, and in no event shall the + author of this program liable to whatever resulted from the use of + this program. Use it at your own risk. +*/ + +#include "mangle.h" + + .globl ASM_NAME(dct36_3dnow) +/* .type ASM_NAME(dct36_3dnow),@function */ +ASM_NAME(dct36_3dnow): + pushl %ebp + movl %esp,%ebp + subl $120,%esp + pushl %esi + pushl %ebx + movl 8(%ebp),%eax + movl 12(%ebp),%esi + movl 16(%ebp),%ecx + movl 20(%ebp),%edx + movl 24(%ebp),%ebx + leal -128(%ebp),%esp + + femms + movq (%eax),%mm0 + movq 4(%eax),%mm1 + pfadd %mm1,%mm0 + movq %mm0,4(%eax) + psrlq $32,%mm1 + movq 12(%eax),%mm2 + punpckldq %mm2,%mm1 + pfadd %mm2,%mm1 + movq %mm1,12(%eax) + psrlq $32,%mm2 + movq 20(%eax),%mm3 + punpckldq %mm3,%mm2 + pfadd %mm3,%mm2 + movq %mm2,20(%eax) + psrlq $32,%mm3 + movq 28(%eax),%mm4 + punpckldq %mm4,%mm3 + pfadd %mm4,%mm3 + movq %mm3,28(%eax) + psrlq $32,%mm4 + movq 36(%eax),%mm5 + punpckldq %mm5,%mm4 + pfadd %mm5,%mm4 + movq %mm4,36(%eax) + psrlq $32,%mm5 + movq 44(%eax),%mm6 + punpckldq %mm6,%mm5 + pfadd %mm6,%mm5 + movq %mm5,44(%eax) + psrlq $32,%mm6 + movq 52(%eax),%mm7 + punpckldq %mm7,%mm6 + pfadd %mm7,%mm6 + movq %mm6,52(%eax) + psrlq $32,%mm7 + movq 60(%eax),%mm0 + punpckldq %mm0,%mm7 + pfadd %mm0,%mm7 + movq %mm7,60(%eax) + psrlq $32,%mm0 + movd 68(%eax),%mm1 + pfadd %mm1,%mm0 + movd %mm0,68(%eax) + movd 4(%eax),%mm0 + movd 12(%eax),%mm1 + punpckldq %mm1,%mm0 + punpckldq 20(%eax),%mm1 + pfadd %mm1,%mm0 + movd %mm0,12(%eax) + psrlq $32,%mm0 + movd %mm0,20(%eax) + psrlq $32,%mm1 + movd 28(%eax),%mm2 + punpckldq %mm2,%mm1 + punpckldq 36(%eax),%mm2 + pfadd %mm2,%mm1 + movd %mm1,28(%eax) + psrlq $32,%mm1 + movd %mm1,36(%eax) + psrlq $32,%mm2 + movd 44(%eax),%mm3 + punpckldq %mm3,%mm2 + punpckldq 52(%eax),%mm3 + pfadd %mm3,%mm2 + movd %mm2,44(%eax) + psrlq $32,%mm2 + movd %mm2,52(%eax) + psrlq $32,%mm3 + movd 60(%eax),%mm4 + punpckldq %mm4,%mm3 + punpckldq 68(%eax),%mm4 + pfadd %mm4,%mm3 + movd %mm3,60(%eax) + psrlq $32,%mm3 + movd %mm3,68(%eax) + + movq 24(%eax),%mm0 + movq 48(%eax),%mm1 + movd ASM_NAME(COS9)+12,%mm2 + punpckldq %mm2,%mm2 + movd ASM_NAME(COS9)+24,%mm3 + punpckldq %mm3,%mm3 + pfmul %mm2,%mm0 + pfmul %mm3,%mm1 + pushl %eax + movl $1,%eax + movd %eax,%mm7 + pi2fd %mm7,%mm7 + popl %eax + movq 8(%eax),%mm2 + movd ASM_NAME(COS9)+4,%mm3 + punpckldq %mm3,%mm3 + pfmul %mm3,%mm2 + pfadd %mm0,%mm2 + movq 40(%eax),%mm3 + movd ASM_NAME(COS9)+20,%mm4 + punpckldq %mm4,%mm4 + pfmul %mm4,%mm3 + pfadd %mm3,%mm2 + movq 56(%eax),%mm3 + movd ASM_NAME(COS9)+28,%mm4 + punpckldq %mm4,%mm4 + pfmul %mm4,%mm3 + pfadd %mm3,%mm2 + movq (%eax),%mm3 + movq 16(%eax),%mm4 + movd ASM_NAME(COS9)+8,%mm5 + punpckldq %mm5,%mm5 + pfmul %mm5,%mm4 + pfadd %mm4,%mm3 + movq 32(%eax),%mm4 + movd ASM_NAME(COS9)+16,%mm5 + punpckldq %mm5,%mm5 + pfmul %mm5,%mm4 + pfadd %mm4,%mm3 + pfadd %mm1,%mm3 + movq 64(%eax),%mm4 + movd ASM_NAME(COS9)+32,%mm5 + punpckldq %mm5,%mm5 + pfmul %mm5,%mm4 + pfadd %mm4,%mm3 + movq %mm2,%mm4 + pfadd %mm3,%mm4 + movq %mm7,%mm5 + punpckldq ASM_NAME(tfcos36)+0,%mm5 + pfmul %mm5,%mm4 + movq %mm4,%mm5 + pfacc %mm5,%mm5 + movd 108(%edx),%mm6 + punpckldq 104(%edx),%mm6 + pfmul %mm6,%mm5 + movd %mm5,36(%ecx) + psrlq $32,%mm5 + movd %mm5,32(%ecx) + movq %mm4,%mm6 + punpckldq %mm6,%mm5 + pfsub %mm6,%mm5 + punpckhdq %mm5,%mm5 + movd 32(%edx),%mm6 + punpckldq 36(%edx),%mm6 + pfmul %mm6,%mm5 + movd 32(%esi),%mm6 + punpckldq 36(%esi),%mm6 + pfadd %mm6,%mm5 + movd %mm5,1024(%ebx) + psrlq $32,%mm5 + movd %mm5,1152(%ebx) + movq %mm3,%mm4 + pfsub %mm2,%mm4 + movq %mm7,%mm5 + punpckldq ASM_NAME(tfcos36)+32,%mm5 + pfmul %mm5,%mm4 + movq %mm4,%mm5 + pfacc %mm5,%mm5 + movd 140(%edx),%mm6 + punpckldq 72(%edx),%mm6 + pfmul %mm6,%mm5 + movd %mm5,68(%ecx) + psrlq $32,%mm5 + movd %mm5,0(%ecx) + movq %mm4,%mm6 + punpckldq %mm6,%mm5 + pfsub %mm6,%mm5 + punpckhdq %mm5,%mm5 + movd 0(%edx),%mm6 + punpckldq 68(%edx),%mm6 + pfmul %mm6,%mm5 + movd 0(%esi),%mm6 + punpckldq 68(%esi),%mm6 + pfadd %mm6,%mm5 + movd %mm5,0(%ebx) + psrlq $32,%mm5 + movd %mm5,2176(%ebx) + movq 8(%eax),%mm2 + movq 40(%eax),%mm3 + pfsub %mm3,%mm2 + movq 56(%eax),%mm3 + pfsub %mm3,%mm2 + movd ASM_NAME(COS9)+12,%mm3 + punpckldq %mm3,%mm3 + pfmul %mm3,%mm2 + movq 16(%eax),%mm3 + movq 32(%eax),%mm4 + pfsub %mm4,%mm3 + movq 64(%eax),%mm4 + pfsub %mm4,%mm3 + movd ASM_NAME(COS9)+24,%mm4 + punpckldq %mm4,%mm4 + pfmul %mm4,%mm3 + movq 48(%eax),%mm4 + pfsub %mm4,%mm3 + movq (%eax),%mm4 + pfadd %mm4,%mm3 + movq %mm2,%mm4 + pfadd %mm3,%mm4 + movq %mm7,%mm5 + punpckldq ASM_NAME(tfcos36)+4,%mm5 + pfmul %mm5,%mm4 + movq %mm4,%mm5 + pfacc %mm5,%mm5 + movd 112(%edx),%mm6 + punpckldq 100(%edx),%mm6 + pfmul %mm6,%mm5 + movd %mm5,40(%ecx) + psrlq $32,%mm5 + movd %mm5,28(%ecx) + movq %mm4,%mm6 + punpckldq %mm6,%mm5 + pfsub %mm6,%mm5 + punpckhdq %mm5,%mm5 + movd 28(%edx),%mm6 + punpckldq 40(%edx),%mm6 + pfmul %mm6,%mm5 + movd 28(%esi),%mm6 + punpckldq 40(%esi),%mm6 + pfadd %mm6,%mm5 + movd %mm5,896(%ebx) + psrlq $32,%mm5 + movd %mm5,1280(%ebx) + movq %mm3,%mm4 + pfsub %mm2,%mm4 + movq %mm7,%mm5 + punpckldq ASM_NAME(tfcos36)+28,%mm5 + pfmul %mm5,%mm4 + movq %mm4,%mm5 + pfacc %mm5,%mm5 + movd 136(%edx),%mm6 + punpckldq 76(%edx),%mm6 + pfmul %mm6,%mm5 + movd %mm5,64(%ecx) + psrlq $32,%mm5 + movd %mm5,4(%ecx) + movq %mm4,%mm6 + punpckldq %mm6,%mm5 + pfsub %mm6,%mm5 + punpckhdq %mm5,%mm5 + movd 4(%edx),%mm6 + punpckldq 64(%edx),%mm6 + pfmul %mm6,%mm5 + movd 4(%esi),%mm6 + punpckldq 64(%esi),%mm6 + pfadd %mm6,%mm5 + movd %mm5,128(%ebx) + psrlq $32,%mm5 + movd %mm5,2048(%ebx) + + movq 8(%eax),%mm2 + movd ASM_NAME(COS9)+20,%mm3 + punpckldq %mm3,%mm3 + pfmul %mm3,%mm2 + pfsub %mm0,%mm2 + movq 40(%eax),%mm3 + movd ASM_NAME(COS9)+28,%mm4 + punpckldq %mm4,%mm4 + pfmul %mm4,%mm3 + pfsub %mm3,%mm2 + movq 56(%eax),%mm3 + movd ASM_NAME(COS9)+4,%mm4 + punpckldq %mm4,%mm4 + pfmul %mm4,%mm3 + pfadd %mm3,%mm2 + movq (%eax),%mm3 + movq 16(%eax),%mm4 + movd ASM_NAME(COS9)+32,%mm5 + punpckldq %mm5,%mm5 + pfmul %mm5,%mm4 + pfsub %mm4,%mm3 + movq 32(%eax),%mm4 + movd ASM_NAME(COS9)+8,%mm5 + punpckldq %mm5,%mm5 + pfmul %mm5,%mm4 + pfsub %mm4,%mm3 + pfadd %mm1,%mm3 + movq 64(%eax),%mm4 + movd ASM_NAME(COS9)+16,%mm5 + punpckldq %mm5,%mm5 + pfmul %mm5,%mm4 + pfadd %mm4,%mm3 + movq %mm2,%mm4 + pfadd %mm3,%mm4 + movq %mm7,%mm5 + punpckldq ASM_NAME(tfcos36)+8,%mm5 + pfmul %mm5,%mm4 + movq %mm4,%mm5 + pfacc %mm5,%mm5 + movd 116(%edx),%mm6 + punpckldq 96(%edx),%mm6 + pfmul %mm6,%mm5 + movd %mm5,44(%ecx) + psrlq $32,%mm5 + movd %mm5,24(%ecx) + movq %mm4,%mm6 + punpckldq %mm6,%mm5 + pfsub %mm6,%mm5 + punpckhdq %mm5,%mm5 + movd 24(%edx),%mm6 + punpckldq 44(%edx),%mm6 + pfmul %mm6,%mm5 + movd 24(%esi),%mm6 + punpckldq 44(%esi),%mm6 + pfadd %mm6,%mm5 + movd %mm5,768(%ebx) + psrlq $32,%mm5 + movd %mm5,1408(%ebx) + movq %mm3,%mm4 + pfsub %mm2,%mm4 + movq %mm7,%mm5 + punpckldq ASM_NAME(tfcos36)+24,%mm5 + pfmul %mm5,%mm4 + movq %mm4,%mm5 + pfacc %mm5,%mm5 + movd 132(%edx),%mm6 + punpckldq 80(%edx),%mm6 + pfmul %mm6,%mm5 + movd %mm5,60(%ecx) + psrlq $32,%mm5 + movd %mm5,8(%ecx) + movq %mm4,%mm6 + punpckldq %mm6,%mm5 + pfsub %mm6,%mm5 + punpckhdq %mm5,%mm5 + movd 8(%edx),%mm6 + punpckldq 60(%edx),%mm6 + pfmul %mm6,%mm5 + movd 8(%esi),%mm6 + punpckldq 60(%esi),%mm6 + pfadd %mm6,%mm5 + movd %mm5,256(%ebx) + psrlq $32,%mm5 + movd %mm5,1920(%ebx) + movq 8(%eax),%mm2 + movd ASM_NAME(COS9)+28,%mm3 + punpckldq %mm3,%mm3 + pfmul %mm3,%mm2 + pfsub %mm0,%mm2 + movq 40(%eax),%mm3 + movd ASM_NAME(COS9)+4,%mm4 + punpckldq %mm4,%mm4 + pfmul %mm4,%mm3 + pfadd %mm3,%mm2 + movq 56(%eax),%mm3 + movd ASM_NAME(COS9)+20,%mm4 + punpckldq %mm4,%mm4 + pfmul %mm4,%mm3 + pfsub %mm3,%mm2 + movq (%eax),%mm3 + movq 16(%eax),%mm4 + movd ASM_NAME(COS9)+16,%mm5 + punpckldq %mm5,%mm5 + pfmul %mm5,%mm4 + pfsub %mm4,%mm3 + movq 32(%eax),%mm4 + movd ASM_NAME(COS9)+32,%mm5 + punpckldq %mm5,%mm5 + pfmul %mm5,%mm4 + pfadd %mm4,%mm3 + pfadd %mm1,%mm3 + movq 64(%eax),%mm4 + movd ASM_NAME(COS9)+8,%mm5 + punpckldq %mm5,%mm5 + pfmul %mm5,%mm4 + pfsub %mm4,%mm3 + movq %mm2,%mm4 + pfadd %mm3,%mm4 + movq %mm7,%mm5 + punpckldq ASM_NAME(tfcos36)+12,%mm5 + pfmul %mm5,%mm4 + movq %mm4,%mm5 + pfacc %mm5,%mm5 + movd 120(%edx),%mm6 + punpckldq 92(%edx),%mm6 + pfmul %mm6,%mm5 + movd %mm5,48(%ecx) + psrlq $32,%mm5 + movd %mm5,20(%ecx) + movq %mm4,%mm6 + punpckldq %mm6,%mm5 + pfsub %mm6,%mm5 + punpckhdq %mm5,%mm5 + movd 20(%edx),%mm6 + punpckldq 48(%edx),%mm6 + pfmul %mm6,%mm5 + movd 20(%esi),%mm6 + punpckldq 48(%esi),%mm6 + pfadd %mm6,%mm5 + movd %mm5,640(%ebx) + psrlq $32,%mm5 + movd %mm5,1536(%ebx) + movq %mm3,%mm4 + pfsub %mm2,%mm4 + movq %mm7,%mm5 + punpckldq ASM_NAME(tfcos36)+20,%mm5 + pfmul %mm5,%mm4 + movq %mm4,%mm5 + pfacc %mm5,%mm5 + movd 128(%edx),%mm6 + punpckldq 84(%edx),%mm6 + pfmul %mm6,%mm5 + movd %mm5,56(%ecx) + psrlq $32,%mm5 + movd %mm5,12(%ecx) + movq %mm4,%mm6 + punpckldq %mm6,%mm5 + pfsub %mm6,%mm5 + punpckhdq %mm5,%mm5 + movd 12(%edx),%mm6 + punpckldq 56(%edx),%mm6 + pfmul %mm6,%mm5 + movd 12(%esi),%mm6 + punpckldq 56(%esi),%mm6 + pfadd %mm6,%mm5 + movd %mm5,384(%ebx) + psrlq $32,%mm5 + movd %mm5,1792(%ebx) + + movq (%eax),%mm4 + movq 16(%eax),%mm3 + pfsub %mm3,%mm4 + movq 32(%eax),%mm3 + pfadd %mm3,%mm4 + movq 48(%eax),%mm3 + pfsub %mm3,%mm4 + movq 64(%eax),%mm3 + pfadd %mm3,%mm4 + movq %mm7,%mm5 + punpckldq ASM_NAME(tfcos36)+16,%mm5 + pfmul %mm5,%mm4 + movq %mm4,%mm5 + pfacc %mm5,%mm5 + movd 124(%edx),%mm6 + punpckldq 88(%edx),%mm6 + pfmul %mm6,%mm5 + movd %mm5,52(%ecx) + psrlq $32,%mm5 + movd %mm5,16(%ecx) + movq %mm4,%mm6 + punpckldq %mm6,%mm5 + pfsub %mm6,%mm5 + punpckhdq %mm5,%mm5 + movd 16(%edx),%mm6 + punpckldq 52(%edx),%mm6 + pfmul %mm6,%mm5 + movd 16(%esi),%mm6 + punpckldq 52(%esi),%mm6 + pfadd %mm6,%mm5 + movd %mm5,512(%ebx) + psrlq $32,%mm5 + movd %mm5,1664(%ebx) + + femms + popl %ebx + popl %esi + movl %ebp,%esp + popl %ebp + ret + +/* Mark non-executable stack. */ +#if defined(__linux__) && defined(__ELF__) +.section .note.GNU-stack,"",%progbits +#endif diff -r f2985e08589c -r 7e08477b0fc1 decoders/libmpg123/dct36_3dnowext.S --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/decoders/libmpg123/dct36_3dnowext.S Fri Jan 30 02:44:47 2009 -0500 @@ -0,0 +1,515 @@ +/* + dct36_3dnowext: extended 3DNow optimized DCT36 + + copyright ?-2007 by the mpg123 project - free software under the terms of the LGPL 2.1 + see COPYING and AUTHORS files in distribution or http://mpg123.org + + Transformed back into standalone asm, with help of + gcc -S -DHAVE_CONFIG_H -I. -march=k6-3 -O3 -Wall -pedantic -fno-strict-aliasing -DREAL_IS_FLOAT -c -o dct36_3dnowext.{S,c} + + MPlayer comment follows. +*/ + +/* + * dct36_3dnow.c - 3DNow! optimized dct36() + * + * This code based 'dct36_3dnow.s' by Syuuhei Kashiyama + * , only two types of changes have been made: + * + * - removed PREFETCH instruction for speedup + * - changed function name for support 3DNow! automatic detection + * + * You can find Kashiyama's original 3dnow! support patch + * (for mpg123-0.59o) at + * http://user.ecc.u-tokyo.ac.jp/~g810370/linux-simd/ (Japanese). + * + * by KIMURA Takuhiro - until 31.Mar.1999 + * - after 1.Apr.1999 + * + * Modified for use with MPlayer, for details see the changelog at + * http://svn.mplayerhq.hu/mplayer/trunk/ + * $Id: dct36_3dnow.c 18786 2006-06-22 13:34:00Z diego $ + * + * Original disclaimer: + * The author of this program disclaim whole expressed or implied + * warranties with regard to this program, and in no event shall the + * author of this program liable to whatever resulted from the use of + * this program. Use it at your own risk. + * + * 2003/06/21: Moved to GCC inline assembly - Alex Beregszaszi + */ + +#include "mangle.h" + + .text + ALIGN32,,31 +.globl ASM_NAME(dct36_3dnowext) + /* .type ASM_NAME(dct36_3dnowext), @function */ +ASM_NAME(dct36_3dnowext): + pushl %ebp + movl %esp, %ebp + pushl %esi + pushl %ebx + movl 8(%ebp), %eax + movl 12(%ebp), %esi + movl 16(%ebp), %ecx + movl 20(%ebp), %edx + movl 24(%ebp), %ebx +/* APP */ + movq (%eax),%mm0 + movq 4(%eax),%mm1 + pfadd %mm1,%mm0 + movq %mm0,4(%eax) + psrlq $32,%mm1 + movq 12(%eax),%mm2 + punpckldq %mm2,%mm1 + pfadd %mm2,%mm1 + movq %mm1,12(%eax) + psrlq $32,%mm2 + movq 20(%eax),%mm3 + punpckldq %mm3,%mm2 + pfadd %mm3,%mm2 + movq %mm2,20(%eax) + psrlq $32,%mm3 + movq 28(%eax),%mm4 + punpckldq %mm4,%mm3 + pfadd %mm4,%mm3 + movq %mm3,28(%eax) + psrlq $32,%mm4 + movq 36(%eax),%mm5 + punpckldq %mm5,%mm4 + pfadd %mm5,%mm4 + movq %mm4,36(%eax) + psrlq $32,%mm5 + movq 44(%eax),%mm6 + punpckldq %mm6,%mm5 + pfadd %mm6,%mm5 + movq %mm5,44(%eax) + psrlq $32,%mm6 + movq 52(%eax),%mm7 + punpckldq %mm7,%mm6 + pfadd %mm7,%mm6 + movq %mm6,52(%eax) + psrlq $32,%mm7 + movq 60(%eax),%mm0 + punpckldq %mm0,%mm7 + pfadd %mm0,%mm7 + movq %mm7,60(%eax) + psrlq $32,%mm0 + movd 68(%eax),%mm1 + pfadd %mm1,%mm0 + movd %mm0,68(%eax) + movd 4(%eax),%mm0 + movd 12(%eax),%mm1 + punpckldq %mm1,%mm0 + punpckldq 20(%eax),%mm1 + pfadd %mm1,%mm0 + movd %mm0,12(%eax) + psrlq $32,%mm0 + movd %mm0,20(%eax) + psrlq $32,%mm1 + movd 28(%eax),%mm2 + punpckldq %mm2,%mm1 + punpckldq 36(%eax),%mm2 + pfadd %mm2,%mm1 + movd %mm1,28(%eax) + psrlq $32,%mm1 + movd %mm1,36(%eax) + psrlq $32,%mm2 + movd 44(%eax),%mm3 + punpckldq %mm3,%mm2 + punpckldq 52(%eax),%mm3 + pfadd %mm3,%mm2 + movd %mm2,44(%eax) + psrlq $32,%mm2 + movd %mm2,52(%eax) + psrlq $32,%mm3 + movd 60(%eax),%mm4 + punpckldq %mm4,%mm3 + punpckldq 68(%eax),%mm4 + pfadd %mm4,%mm3 + movd %mm3,60(%eax) + psrlq $32,%mm3 + movd %mm3,68(%eax) + movq 24(%eax),%mm0 + movq 48(%eax),%mm1 + movd ASM_NAME(COS9)+12,%mm2 + punpckldq %mm2,%mm2 + movd ASM_NAME(COS9)+24,%mm3 + punpckldq %mm3,%mm3 + pfmul %mm2,%mm0 + pfmul %mm3,%mm1 + pushl %eax + movl $1,%eax + movd %eax,%mm7 + pi2fd %mm7,%mm7 + popl %eax + movq 8(%eax),%mm2 + movd ASM_NAME(COS9)+4,%mm3 + punpckldq %mm3,%mm3 + pfmul %mm3,%mm2 + pfadd %mm0,%mm2 + movq 40(%eax),%mm3 + movd ASM_NAME(COS9)+20,%mm4 + punpckldq %mm4,%mm4 + pfmul %mm4,%mm3 + pfadd %mm3,%mm2 + movq 56(%eax),%mm3 + movd ASM_NAME(COS9)+28,%mm4 + punpckldq %mm4,%mm4 + pfmul %mm4,%mm3 + pfadd %mm3,%mm2 + movq (%eax),%mm3 + movq 16(%eax),%mm4 + movd ASM_NAME(COS9)+8,%mm5 + punpckldq %mm5,%mm5 + pfmul %mm5,%mm4 + pfadd %mm4,%mm3 + movq 32(%eax),%mm4 + movd ASM_NAME(COS9)+16,%mm5 + punpckldq %mm5,%mm5 + pfmul %mm5,%mm4 + pfadd %mm4,%mm3 + pfadd %mm1,%mm3 + movq 64(%eax),%mm4 + movd ASM_NAME(COS9)+32,%mm5 + punpckldq %mm5,%mm5 + pfmul %mm5,%mm4 + pfadd %mm4,%mm3 + movq %mm2,%mm4 + pfadd %mm3,%mm4 + movq %mm7,%mm5 + punpckldq ASM_NAME(tfcos36)+0,%mm5 + pfmul %mm5,%mm4 + movq %mm4,%mm5 + pfacc %mm5,%mm5 + movd 108(%edx),%mm6 + punpckldq 104(%edx),%mm6 + pfmul %mm6,%mm5 + pswapd %mm5,%mm5 + movq %mm5,32(%ecx) + movq %mm4,%mm6 + punpckldq %mm6,%mm5 + pfsub %mm6,%mm5 + punpckhdq %mm5,%mm5 + movd 32(%edx),%mm6 + punpckldq 36(%edx),%mm6 + pfmul %mm6,%mm5 + movd 32(%esi),%mm6 + punpckldq 36(%esi),%mm6 + pfadd %mm6,%mm5 + movd %mm5,1024(%ebx) + psrlq $32,%mm5 + movd %mm5,1152(%ebx) + movq %mm3,%mm4 + pfsub %mm2,%mm4 + movq %mm7,%mm5 + punpckldq ASM_NAME(tfcos36)+32,%mm5 + pfmul %mm5,%mm4 + movq %mm4,%mm5 + pfacc %mm5,%mm5 + movd 140(%edx),%mm6 + punpckldq 72(%edx),%mm6 + pfmul %mm6,%mm5 + movd %mm5,68(%ecx) + psrlq $32,%mm5 + movd %mm5,0(%ecx) + movq %mm4,%mm6 + punpckldq %mm6,%mm5 + pfsub %mm6,%mm5 + punpckhdq %mm5,%mm5 + movd 0(%edx),%mm6 + punpckldq 68(%edx),%mm6 + pfmul %mm6,%mm5 + movd 0(%esi),%mm6 + punpckldq 68(%esi),%mm6 + pfadd %mm6,%mm5 + movd %mm5,0(%ebx) + psrlq $32,%mm5 + movd %mm5,2176(%ebx) + movq 8(%eax),%mm2 + movq 40(%eax),%mm3 + pfsub %mm3,%mm2 + movq 56(%eax),%mm3 + pfsub %mm3,%mm2 + movd ASM_NAME(COS9)+12,%mm3 + punpckldq %mm3,%mm3 + pfmul %mm3,%mm2 + movq 16(%eax),%mm3 + movq 32(%eax),%mm4 + pfsub %mm4,%mm3 + movq 64(%eax),%mm4 + pfsub %mm4,%mm3 + movd ASM_NAME(COS9)+24,%mm4 + punpckldq %mm4,%mm4 + pfmul %mm4,%mm3 + movq 48(%eax),%mm4 + pfsub %mm4,%mm3 + movq (%eax),%mm4 + pfadd %mm4,%mm3 + movq %mm2,%mm4 + pfadd %mm3,%mm4 + movq %mm7,%mm5 + punpckldq ASM_NAME(tfcos36)+4,%mm5 + pfmul %mm5,%mm4 + movq %mm4,%mm5 + pfacc %mm5,%mm5 + movd 112(%edx),%mm6 + punpckldq 100(%edx),%mm6 + pfmul %mm6,%mm5 + movd %mm5,40(%ecx) + psrlq $32,%mm5 + movd %mm5,28(%ecx) + movq %mm4,%mm6 + punpckldq %mm6,%mm5 + pfsub %mm6,%mm5 + punpckhdq %mm5,%mm5 + movd 28(%edx),%mm6 + punpckldq 40(%edx),%mm6 + pfmul %mm6,%mm5 + movd 28(%esi),%mm6 + punpckldq 40(%esi),%mm6 + pfadd %mm6,%mm5 + movd %mm5,896(%ebx) + psrlq $32,%mm5 + movd %mm5,1280(%ebx) + movq %mm3,%mm4 + pfsub %mm2,%mm4 + movq %mm7,%mm5 + punpckldq ASM_NAME(tfcos36)+28,%mm5 + pfmul %mm5,%mm4 + movq %mm4,%mm5 + pfacc %mm5,%mm5 + movd 136(%edx),%mm6 + punpckldq 76(%edx),%mm6 + pfmul %mm6,%mm5 + movd %mm5,64(%ecx) + psrlq $32,%mm5 + movd %mm5,4(%ecx) + movq %mm4,%mm6 + punpckldq %mm6,%mm5 + pfsub %mm6,%mm5 + punpckhdq %mm5,%mm5 + movd 4(%edx),%mm6 + punpckldq 64(%edx),%mm6 + pfmul %mm6,%mm5 + movd 4(%esi),%mm6 + punpckldq 64(%esi),%mm6 + pfadd %mm6,%mm5 + movd %mm5,128(%ebx) + psrlq $32,%mm5 + movd %mm5,2048(%ebx) + movq 8(%eax),%mm2 + movd ASM_NAME(COS9)+20,%mm3 + punpckldq %mm3,%mm3 + pfmul %mm3,%mm2 + pfsub %mm0,%mm2 + movq 40(%eax),%mm3 + movd ASM_NAME(COS9)+28,%mm4 + punpckldq %mm4,%mm4 + pfmul %mm4,%mm3 + pfsub %mm3,%mm2 + movq 56(%eax),%mm3 + movd ASM_NAME(COS9)+4,%mm4 + punpckldq %mm4,%mm4 + pfmul %mm4,%mm3 + pfadd %mm3,%mm2 + movq (%eax),%mm3 + movq 16(%eax),%mm4 + movd ASM_NAME(COS9)+32,%mm5 + punpckldq %mm5,%mm5 + pfmul %mm5,%mm4 + pfsub %mm4,%mm3 + movq 32(%eax),%mm4 + movd ASM_NAME(COS9)+8,%mm5 + punpckldq %mm5,%mm5 + pfmul %mm5,%mm4 + pfsub %mm4,%mm3 + pfadd %mm1,%mm3 + movq 64(%eax),%mm4 + movd ASM_NAME(COS9)+16,%mm5 + punpckldq %mm5,%mm5 + pfmul %mm5,%mm4 + pfadd %mm4,%mm3 + movq %mm2,%mm4 + pfadd %mm3,%mm4 + movq %mm7,%mm5 + punpckldq ASM_NAME(tfcos36)+8,%mm5 + pfmul %mm5,%mm4 + movq %mm4,%mm5 + pfacc %mm5,%mm5 + movd 116(%edx),%mm6 + punpckldq 96(%edx),%mm6 + pfmul %mm6,%mm5 + movd %mm5,44(%ecx) + psrlq $32,%mm5 + movd %mm5,24(%ecx) + movq %mm4,%mm6 + punpckldq %mm6,%mm5 + pfsub %mm6,%mm5 + punpckhdq %mm5,%mm5 + movd 24(%edx),%mm6 + punpckldq 44(%edx),%mm6 + pfmul %mm6,%mm5 + movd 24(%esi),%mm6 + punpckldq 44(%esi),%mm6 + pfadd %mm6,%mm5 + movd %mm5,768(%ebx) + psrlq $32,%mm5 + movd %mm5,1408(%ebx) + movq %mm3,%mm4 + pfsub %mm2,%mm4 + movq %mm7,%mm5 + punpckldq ASM_NAME(tfcos36)+24,%mm5 + pfmul %mm5,%mm4 + movq %mm4,%mm5 + pfacc %mm5,%mm5 + movd 132(%edx),%mm6 + punpckldq 80(%edx),%mm6 + pfmul %mm6,%mm5 + movd %mm5,60(%ecx) + psrlq $32,%mm5 + movd %mm5,8(%ecx) + movq %mm4,%mm6 + punpckldq %mm6,%mm5 + pfsub %mm6,%mm5 + punpckhdq %mm5,%mm5 + movd 8(%edx),%mm6 + punpckldq 60(%edx),%mm6 + pfmul %mm6,%mm5 + movd 8(%esi),%mm6 + punpckldq 60(%esi),%mm6 + pfadd %mm6,%mm5 + movd %mm5,256(%ebx) + psrlq $32,%mm5 + movd %mm5,1920(%ebx) + movq 8(%eax),%mm2 + movd ASM_NAME(COS9)+28,%mm3 + punpckldq %mm3,%mm3 + pfmul %mm3,%mm2 + pfsub %mm0,%mm2 + movq 40(%eax),%mm3 + movd ASM_NAME(COS9)+4,%mm4 + punpckldq %mm4,%mm4 + pfmul %mm4,%mm3 + pfadd %mm3,%mm2 + movq 56(%eax),%mm3 + movd ASM_NAME(COS9)+20,%mm4 + punpckldq %mm4,%mm4 + pfmul %mm4,%mm3 + pfsub %mm3,%mm2 + movq (%eax),%mm3 + movq 16(%eax),%mm4 + movd ASM_NAME(COS9)+16,%mm5 + punpckldq %mm5,%mm5 + pfmul %mm5,%mm4 + pfsub %mm4,%mm3 + movq 32(%eax),%mm4 + movd ASM_NAME(COS9)+32,%mm5 + punpckldq %mm5,%mm5 + pfmul %mm5,%mm4 + pfadd %mm4,%mm3 + pfadd %mm1,%mm3 + movq 64(%eax),%mm4 + movd ASM_NAME(COS9)+8,%mm5 + punpckldq %mm5,%mm5 + pfmul %mm5,%mm4 + pfsub %mm4,%mm3 + movq %mm2,%mm4 + pfadd %mm3,%mm4 + movq %mm7,%mm5 + punpckldq ASM_NAME(tfcos36)+12,%mm5 + pfmul %mm5,%mm4 + movq %mm4,%mm5 + pfacc %mm5,%mm5 + movd 120(%edx),%mm6 + punpckldq 92(%edx),%mm6 + pfmul %mm6,%mm5 + movd %mm5,48(%ecx) + psrlq $32,%mm5 + movd %mm5,20(%ecx) + movq %mm4,%mm6 + punpckldq %mm6,%mm5 + pfsub %mm6,%mm5 + punpckhdq %mm5,%mm5 + movd 20(%edx),%mm6 + punpckldq 48(%edx),%mm6 + pfmul %mm6,%mm5 + movd 20(%esi),%mm6 + punpckldq 48(%esi),%mm6 + pfadd %mm6,%mm5 + movd %mm5,640(%ebx) + psrlq $32,%mm5 + movd %mm5,1536(%ebx) + movq %mm3,%mm4 + pfsub %mm2,%mm4 + movq %mm7,%mm5 + punpckldq ASM_NAME(tfcos36)+20,%mm5 + pfmul %mm5,%mm4 + movq %mm4,%mm5 + pfacc %mm5,%mm5 + movd 128(%edx),%mm6 + punpckldq 84(%edx),%mm6 + pfmul %mm6,%mm5 + movd %mm5,56(%ecx) + psrlq $32,%mm5 + movd %mm5,12(%ecx) + movq %mm4,%mm6 + punpckldq %mm6,%mm5 + pfsub %mm6,%mm5 + punpckhdq %mm5,%mm5 + movd 12(%edx),%mm6 + punpckldq 56(%edx),%mm6 + pfmul %mm6,%mm5 + movd 12(%esi),%mm6 + punpckldq 56(%esi),%mm6 + pfadd %mm6,%mm5 + movd %mm5,384(%ebx) + psrlq $32,%mm5 + movd %mm5,1792(%ebx) + movq (%eax),%mm4 + movq 16(%eax),%mm3 + pfsub %mm3,%mm4 + movq 32(%eax),%mm3 + pfadd %mm3,%mm4 + movq 48(%eax),%mm3 + pfsub %mm3,%mm4 + movq 64(%eax),%mm3 + pfadd %mm3,%mm4 + movq %mm7,%mm5 + punpckldq ASM_NAME(tfcos36)+16,%mm5 + pfmul %mm5,%mm4 + movq %mm4,%mm5 + pfacc %mm5,%mm5 + movd 124(%edx),%mm6 + punpckldq 88(%edx),%mm6 + pfmul %mm6,%mm5 + movd %mm5,52(%ecx) + psrlq $32,%mm5 + movd %mm5,16(%ecx) + movq %mm4,%mm6 + punpckldq %mm6,%mm5 + pfsub %mm6,%mm5 + punpckhdq %mm5,%mm5 + movd 16(%edx),%mm6 + punpckldq 52(%edx),%mm6 + pfmul %mm6,%mm5 + movd 16(%esi),%mm6 + punpckldq 52(%esi),%mm6 + pfadd %mm6,%mm5 + movd %mm5,512(%ebx) + psrlq $32,%mm5 + movd %mm5,1664(%ebx) + femms + +/* NO_APP */ + popl %ebx + popl %esi + leave + ret + /* .size ASM_NAME(dct36_3dnowext), .-ASM_NAME(dct36_3dnowext) */ + +/* Mark non-executable stack. */ +#if defined(__linux__) && defined(__ELF__) +.section .note.GNU-stack,"",%progbits +#endif diff -r f2985e08589c -r 7e08477b0fc1 decoders/libmpg123/dct64.c --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/decoders/libmpg123/dct64.c Fri Jan 30 02:44:47 2009 -0500 @@ -0,0 +1,174 @@ +/* + dct64.c: DCT64, the plain C version + + copyright ?-2006 by the mpg123 project - free software under the terms of the LGPL 2.1 + see COPYING and AUTHORS files in distribution or http://mpg123.org + initially written by Michael Hipp +*/ + +/* + * Discrete Cosine Tansform (DCT) for subband synthesis + * + * -funroll-loops (for gcc) will remove the loops for better performance + * using loops in the source-code enhances readabillity + * + * + * TODO: write an optimized version for the down-sampling modes + * (in these modes the bands 16-31 (2:1) or 8-31 (4:1) are zero + */ + +#include "mpg123lib_intern.h" + +void dct64(real *out0,real *out1,real *samples) +{ + real bufs[64]; + + { + register int i,j; + register real *b1,*b2,*bs,*costab; + + b1 = samples; + bs = bufs; + costab = pnts[0]+16; + b2 = b1 + 32; + + for(i=15;i>=0;i--) + *bs++ = (*b1++ + *--b2); + for(i=15;i>=0;i--) + *bs++ = REAL_MUL((*--b2 - *b1++), *--costab); + + b1 = bufs; + costab = pnts[1]+8; + b2 = b1 + 16; + + { + for(i=7;i>=0;i--) + *bs++ = (*b1++ + *--b2); + for(i=7;i>=0;i--) + *bs++ = REAL_MUL((*--b2 - *b1++), *--costab); + b2 += 32; + costab += 8; + for(i=7;i>=0;i--) + *bs++ = (*b1++ + *--b2); + for(i=7;i>=0;i--) + *bs++ = REAL_MUL((*b1++ - *--b2), *--costab); + b2 += 32; + } + + bs = bufs; + costab = pnts[2]; + b2 = b1 + 8; + + for(j=2;j;j--) + { + for(i=3;i>=0;i--) + *bs++ = (*b1++ + *--b2); + for(i=3;i>=0;i--) + *bs++ = REAL_MUL((*--b2 - *b1++), costab[i]); + b2 += 16; + for(i=3;i>=0;i--) + *bs++ = (*b1++ + *--b2); + for(i=3;i>=0;i--) + *bs++ = REAL_MUL((*b1++ - *--b2), costab[i]); + b2 += 16; + } + + b1 = bufs; + costab = pnts[3]; + b2 = b1 + 4; + + for(j=4;j;j--) + { + *bs++ = (*b1++ + *--b2); + *bs++ = (*b1++ + *--b2); + *bs++ = REAL_MUL((*--b2 - *b1++), costab[1]); + *bs++ = REAL_MUL((*--b2 - *b1++), costab[0]); + b2 += 8; + *bs++ = (*b1++ + *--b2); + *bs++ = (*b1++ + *--b2); + *bs++ = REAL_MUL((*b1++ - *--b2), costab[1]); + *bs++ = REAL_MUL((*b1++ - *--b2), costab[0]); + b2 += 8; + } + bs = bufs; + costab = pnts[4]; + + for(j=8;j;j--) + { + real v0,v1; + v0=*b1++; v1 = *b1++; + *bs++ = (v0 + v1); + *bs++ = REAL_MUL((v0 - v1), (*costab)); + v0=*b1++; v1 = *b1++; + *bs++ = (v0 + v1); + *bs++ = REAL_MUL((v1 - v0), (*costab)); + } + + } + + + { + register real *b1; + register int i; + + for(b1=bufs,i=8;i;i--,b1+=4) + b1[2] += b1[3]; + + for(b1=bufs,i=4;i;i--,b1+=8) + { + b1[4] += b1[6]; + b1[6] += b1[5]; + b1[5] += b1[7]; + } + + for(b1=bufs,i=2;i;i--,b1+=16) + { + b1[8] += b1[12]; + b1[12] += b1[10]; + b1[10] += b1[14]; + b1[14] += b1[9]; + b1[9] += b1[13]; + b1[13] += b1[11]; + b1[11] += b1[15]; + } + } + + + out0[0x10*16] = bufs[0]; + out0[0x10*15] = bufs[16+0] + bufs[16+8]; + out0[0x10*14] = bufs[8]; + out0[0x10*13] = bufs[16+8] + bufs[16+4]; + out0[0x10*12] = bufs[4]; + out0[0x10*11] = bufs[16+4] + bufs[16+12]; + out0[0x10*10] = bufs[12]; + out0[0x10* 9] = bufs[16+12] + bufs[16+2]; + out0[0x10* 8] = bufs[2]; + out0[0x10* 7] = bufs[16+2] + bufs[16+10]; + out0[0x10* 6] = bufs[10]; + out0[0x10* 5] = bufs[16+10] + bufs[16+6]; + out0[0x10* 4] = bufs[6]; + out0[0x10* 3] = bufs[16+6] + bufs[16+14]; + out0[0x10* 2] = bufs[14]; + out0[0x10* 1] = bufs[16+14] + bufs[16+1]; + out0[0x10* 0] = bufs[1]; + + out1[0x10* 0] = bufs[1]; + out1[0x10* 1] = bufs[16+1] + bufs[16+9]; + out1[0x10* 2] = bufs[9]; + out1[0x10* 3] = bufs[16+9] + bufs[16+5]; + out1[0x10* 4] = bufs[5]; + out1[0x10* 5] = bufs[16+5] + bufs[16+13]; + out1[0x10* 6] = bufs[13]; + out1[0x10* 7] = bufs[16+13] + bufs[16+3]; + out1[0x10* 8] = bufs[3]; + out1[0x10* 9] = bufs[16+3] + bufs[16+11]; + out1[0x10*10] = bufs[11]; + out1[0x10*11] = bufs[16+11] + bufs[16+7]; + out1[0x10*12] = bufs[7]; + out1[0x10*13] = bufs[16+7] + bufs[16+15]; + out1[0x10*14] = bufs[15]; + out1[0x10*15] = bufs[16+15]; + +} + + diff -r f2985e08589c -r 7e08477b0fc1 decoders/libmpg123/dct64_3dnow.S --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/decoders/libmpg123/dct64_3dnow.S Fri Jan 30 02:44:47 2009 -0500 @@ -0,0 +1,715 @@ +/* + dct64_3dnow.s: Replacement of dct64() with AMD's 3DNow! SIMD operations support + + copyright ?-2006 by the mpg123 project - free software under the terms of the LGPL 2.1 + see COPYING and AUTHORS files in distribution or http://mpg123.org + initially written by Syuuhei Kashiyama + + Original "license" statement: + The author of this program disclaim whole expressed or implied + warranties with regard to this program, and in no event shall the + author of this program liable to whatever resulted from the use of + this program. Use it at your own risk. +*/ + +#include "mangle.h" + + .globl ASM_NAME(dct64_3dnow) +/* .type ASM_NAME(dct64_3dnow),@function */ +ASM_NAME(dct64_3dnow): + subl $256,%esp + pushl %ebp + pushl %edi + pushl %esi + pushl %ebx + leal 16(%esp),%ebx + movl 284(%esp),%edi + movl 276(%esp),%ebp + movl 280(%esp),%edx + leal 128(%ebx),%esi + + /* femms */ + + /* 1 */ + movl ASM_NAME(pnts),%eax + movq 0(%edi),%mm0 + movq %mm0,%mm1 + movd 124(%edi),%mm2 + punpckldq 120(%edi),%mm2 + movq 0(%eax),%mm3 + pfadd %mm2,%mm0 + movq %mm0,0(%ebx) + pfsub %mm2,%mm1 + pfmul %mm3,%mm1 + movd %mm1,124(%ebx) + psrlq $32,%mm1 + movd %mm1,120(%ebx) + movq 8(%edi),%mm4 + movq %mm4,%mm5 + movd 116(%edi),%mm6 + punpckldq 112(%edi),%mm6 + movq 8(%eax),%mm7 + pfadd %mm6,%mm4 + movq %mm4,8(%ebx) + pfsub %mm6,%mm5 + pfmul %mm7,%mm5 + movd %mm5,116(%ebx) + psrlq $32,%mm5 + movd %mm5,112(%ebx) + movq 16(%edi),%mm0 + movq %mm0,%mm1 + movd 108(%edi),%mm2 + punpckldq 104(%edi),%mm2 + movq 16(%eax),%mm3 + pfadd %mm2,%mm0 + movq %mm0,16(%ebx) + pfsub %mm2,%mm1 + pfmul %mm3,%mm1 + movd %mm1,108(%ebx) + psrlq $32,%mm1 + movd %mm1,104(%ebx) + movq 24(%edi),%mm4 + movq %mm4,%mm5 + movd 100(%edi),%mm6 + punpckldq 96(%edi),%mm6 + movq 24(%eax),%mm7 + pfadd %mm6,%mm4 + movq %mm4,24(%ebx) + pfsub %mm6,%mm5 + pfmul %mm7,%mm5 + movd %mm5,100(%ebx) + psrlq $32,%mm5 + movd %mm5,96(%ebx) + movq 32(%edi),%mm0 + movq %mm0,%mm1 + movd 92(%edi),%mm2 + punpckldq 88(%edi),%mm2 + movq 32(%eax),%mm3 + pfadd %mm2,%mm0 + movq %mm0,32(%ebx) + pfsub %mm2,%mm1 + pfmul %mm3,%mm1 + movd %mm1,92(%ebx) + psrlq $32,%mm1 + movd %mm1,88(%ebx) + movq 40(%edi),%mm4 + movq %mm4,%mm5 + movd 84(%edi),%mm6 + punpckldq 80(%edi),%mm6 + movq 40(%eax),%mm7 + pfadd %mm6,%mm4 + movq %mm4,40(%ebx) + pfsub %mm6,%mm5 + pfmul %mm7,%mm5 + movd %mm5,84(%ebx) + psrlq $32,%mm5 + movd %mm5,80(%ebx) + movq 48(%edi),%mm0 + movq %mm0,%mm1 + movd 76(%edi),%mm2 + punpckldq 72(%edi),%mm2 + movq 48(%eax),%mm3 + pfadd %mm2,%mm0 + movq %mm0,48(%ebx) + pfsub %mm2,%mm1 + pfmul %mm3,%mm1 + movd %mm1,76(%ebx) + psrlq $32,%mm1 + movd %mm1,72(%ebx) + movq 56(%edi),%mm4 + movq %mm4,%mm5 + movd 68(%edi),%mm6 + punpckldq 64(%edi),%mm6 + movq 56(%eax),%mm7 + pfadd %mm6,%mm4 + movq %mm4,56(%ebx) + pfsub %mm6,%mm5 + pfmul %mm7,%mm5 + movd %mm5,68(%ebx) + psrlq $32,%mm5 + movd %mm5,64(%ebx) + + /* 2 */ + movl ASM_NAME(pnts)+4,%eax + /* 0,14 */ + movq 0(%ebx),%mm0 + movq %mm0,%mm1 + movd 60(%ebx),%mm2 + punpckldq 56(%ebx),%mm2 + movq 0(%eax),%mm3 + pfadd %mm2,%mm0 + movq %mm0,0(%esi) + pfsub %mm2,%mm1 + pfmul %mm3,%mm1 + movd %mm1,60(%esi) + psrlq $32,%mm1 + movd %mm1,56(%esi) + /* 16,30 */ + movq 64(%ebx),%mm0 + movq %mm0,%mm1 + movd 124(%ebx),%mm2 + punpckldq 120(%ebx),%mm2 + pfadd %mm2,%mm0 + movq %mm0,64(%esi) + pfsubr %mm2,%mm1 + pfmul %mm3,%mm1 + movd %mm1,124(%esi) + psrlq $32,%mm1 + movd %mm1,120(%esi) + /* 2,12 */ + movq 8(%ebx),%mm4 + movq %mm4,%mm5 + movd 52(%ebx),%mm6 + punpckldq 48(%ebx),%mm6 + movq 8(%eax),%mm7 + pfadd %mm6,%mm4 + movq %mm4,8(%esi) + pfsub %mm6,%mm5 + pfmul %mm7,%mm5 + movd %mm5,52(%esi) + psrlq $32,%mm5 + movd %mm5,48(%esi) + /* 18,28 */ + movq 72(%ebx),%mm4 + movq %mm4,%mm5 + movd 116(%ebx),%mm6 + punpckldq 112(%ebx),%mm6 + pfadd %mm6,%mm4 + movq %mm4,72(%esi) + pfsubr %mm6,%mm5 + pfmul %mm7,%mm5 + movd %mm5,116(%esi) + psrlq $32,%mm5 + movd %mm5,112(%esi) + /* 4,10 */ + movq 16(%ebx),%mm0 + movq %mm0,%mm1 + movd 44(%ebx),%mm2 + punpckldq 40(%ebx),%mm2 + movq 16(%eax),%mm3 + pfadd %mm2,%mm0 + movq %mm0,16(%esi) + pfsub %mm2,%mm1 + pfmul %mm3,%mm1 + movd %mm1,44(%esi) + psrlq $32,%mm1 + movd %mm1,40(%esi) + /* 20,26 */ + movq 80(%ebx),%mm0 + movq %mm0,%mm1 + movd 108(%ebx),%mm2 + punpckldq 104(%ebx),%mm2 + pfadd %mm2,%mm0 + movq %mm0,80(%esi) + pfsubr %mm2,%mm1 + pfmul %mm3,%mm1 + movd %mm1,108(%esi) + psrlq $32,%mm1 + movd %mm1,104(%esi) + /* 6,8 */ + movq 24(%ebx),%mm4 + movq %mm4,%mm5 + movd 36(%ebx),%mm6 + punpckldq 32(%ebx),%mm6 + movq 24(%eax),%mm7 + pfadd %mm6,%mm4 + movq %mm4,24(%esi) + pfsub %mm6,%mm5 + pfmul %mm7,%mm5 + movd %mm5,36(%esi) + psrlq $32,%mm5 + movd %mm5,32(%esi) + /* 22,24 */ + movq 88(%ebx),%mm4 + movq %mm4,%mm5 + movd 100(%ebx),%mm6 + punpckldq 96(%ebx),%mm6 + pfadd %mm6,%mm4 + movq %mm4,88(%esi) + pfsubr %mm6,%mm5 + pfmul %mm7,%mm5 + movd %mm5,100(%esi) + psrlq $32,%mm5 + movd %mm5,96(%esi) + + /* 3 */ + movl ASM_NAME(pnts)+8,%eax + movq 0(%eax),%mm0 + movq 8(%eax),%mm1 + /* 0,6 */ + movq 0(%esi),%mm2 + movq %mm2,%mm3 + movd 28(%esi),%mm4 + punpckldq 24(%esi),%mm4 + pfadd %mm4,%mm2 + pfsub %mm4,%mm3 + pfmul %mm0,%mm3 + movq %mm2,0(%ebx) + movd %mm3,28(%ebx) + psrlq $32,%mm3 + movd %mm3,24(%ebx) + /* 2,4 */ + movq 8(%esi),%mm5 + movq %mm5,%mm6 + movd 20(%esi),%mm7 + punpckldq 16(%esi),%mm7 + pfadd %mm7,%mm5 + pfsub %mm7,%mm6 + pfmul %mm1,%mm6 + movq %mm5,8(%ebx) + movd %mm6,20(%ebx) + psrlq $32,%mm6 + movd %mm6,16(%ebx) + /* 8,14 */ + movq 32(%esi),%mm2 + movq %mm2,%mm3 + movd 60(%esi),%mm4 + punpckldq 56(%esi),%mm4 + pfadd %mm4,%mm2 + pfsubr %mm4,%mm3 + pfmul %mm0,%mm3 + movq %mm2,32(%ebx) + movd %mm3,60(%ebx) + psrlq $32,%mm3 + movd %mm3,56(%ebx) + /* 10,12 */ + movq 40(%esi),%mm5 + movq %mm5,%mm6 + movd 52(%esi),%mm7 + punpckldq 48(%esi),%mm7 + pfadd %mm7,%mm5 + pfsubr %mm7,%mm6 + pfmul %mm1,%mm6 + movq %mm5,40(%ebx) + movd %mm6,52(%ebx) + psrlq $32,%mm6 + movd %mm6,48(%ebx) + /* 16,22 */ + movq 64(%esi),%mm2 + movq %mm2,%mm3 + movd 92(%esi),%mm4 + punpckldq 88(%esi),%mm4 + pfadd %mm4,%mm2 + pfsub %mm4,%mm3 + pfmul %mm0,%mm3 + movq %mm2,64(%ebx) + movd %mm3,92(%ebx) + psrlq $32,%mm3 + movd %mm3,88(%ebx) + /* 18,20 */ + movq 72(%esi),%mm5 + movq %mm5,%mm6 + movd 84(%esi),%mm7 + punpckldq 80(%esi),%mm7 + pfadd %mm7,%mm5 + pfsub %mm7,%mm6 + pfmul %mm1,%mm6 + movq %mm5,72(%ebx) + movd %mm6,84(%ebx) + psrlq $32,%mm6 + movd %mm6,80(%ebx) + /* 24,30 */ + movq 96(%esi),%mm2 + movq %mm2,%mm3 + movd 124(%esi),%mm4 + punpckldq 120(%esi),%mm4 + pfadd %mm4,%mm2 + pfsubr %mm4,%mm3 + pfmul %mm0,%mm3 + movq %mm2,96(%ebx) + movd %mm3,124(%ebx) + psrlq $32,%mm3 + movd %mm3,120(%ebx) + /* 26,28 */ + movq 104(%esi),%mm5 + movq %mm5,%mm6 + movd 116(%esi),%mm7 + punpckldq 112(%esi),%mm7 + pfadd %mm7,%mm5 + pfsubr %mm7,%mm6 + pfmul %mm1,%mm6 + movq %mm5,104(%ebx) + movd %mm6,116(%ebx) + psrlq $32,%mm6 + movd %mm6,112(%ebx) + + /* 4 */ + movl ASM_NAME(pnts)+12,%eax + movq 0(%eax),%mm0 + /* 0 */ + movq 0(%ebx),%mm1 + movq %mm1,%mm2 + movd 12(%ebx),%mm3 + punpckldq 8(%ebx),%mm3 + pfadd %mm3,%mm1 + pfsub %mm3,%mm2 + pfmul %mm0,%mm2 + movq %mm1,0(%esi) + movd %mm2,12(%esi) + psrlq $32,%mm2 + movd %mm2,8(%esi) + /* 4 */ + movq 16(%ebx),%mm4 + movq %mm4,%mm5 + movd 28(%ebx),%mm6 + punpckldq 24(%ebx),%mm6 + pfadd %mm6,%mm4 + pfsubr %mm6,%mm5 + pfmul %mm0,%mm5 + movq %mm4,16(%esi) + movd %mm5,28(%esi) + psrlq $32,%mm5 + movd %mm5,24(%esi) + /* 8 */ + movq 32(%ebx),%mm1 + movq %mm1,%mm2 + movd 44(%ebx),%mm3 + punpckldq 40(%ebx),%mm3 + pfadd %mm3,%mm1 + pfsub %mm3,%mm2 + pfmul %mm0,%mm2 + movq %mm1,32(%esi) + movd %mm2,44(%esi) + psrlq $32,%mm2 + movd %mm2,40(%esi) + /* 12 */ + movq 48(%ebx),%mm4 + movq %mm4,%mm5 + movd 60(%ebx),%mm6 + punpckldq 56(%ebx),%mm6 + pfadd %mm6,%mm4 + pfsubr %mm6,%mm5 + pfmul %mm0,%mm5 + movq %mm4,48(%esi) + movd %mm5,60(%esi) + psrlq $32,%mm5 + movd %mm5,56(%esi) + /* 16 */ + movq 64(%ebx),%mm1 + movq %mm1,%mm2 + movd 76(%ebx),%mm3 + punpckldq 72(%ebx),%mm3 + pfadd %mm3,%mm1 + pfsub %mm3,%mm2 + pfmul %mm0,%mm2 + movq %mm1,64(%esi) + movd %mm2,76(%esi) + psrlq $32,%mm2 + movd %mm2,72(%esi) + /* 20 */ + movq 80(%ebx),%mm4 + movq %mm4,%mm5 + movd 92(%ebx),%mm6 + punpckldq 88(%ebx),%mm6 + pfadd %mm6,%mm4 + pfsubr %mm6,%mm5 + pfmul %mm0,%mm5 + movq %mm4,80(%esi) + movd %mm5,92(%esi) + psrlq $32,%mm5 + movd %mm5,88(%esi) + /* 24 */ + movq 96(%ebx),%mm1 + movq %mm1,%mm2 + movd 108(%ebx),%mm3 + punpckldq 104(%ebx),%mm3 + pfadd %mm3,%mm1 + pfsub %mm3,%mm2 + pfmul %mm0,%mm2 + movq %mm1,96(%esi) + movd %mm2,108(%esi) + psrlq $32,%mm2 + movd %mm2,104(%esi) + /* 28 */ + movq 112(%ebx),%mm4 + movq %mm4,%mm5 + movd 124(%ebx),%mm6 + punpckldq 120(%ebx),%mm6 + pfadd %mm6,%mm4 + pfsubr %mm6,%mm5 + pfmul %mm0,%mm5 + movq %mm4,112(%esi) + movd %mm5,124(%esi) + psrlq $32,%mm5 + movd %mm5,120(%esi) + + /* 5 */ + movl $-1,%eax + movd %eax,%mm1 + movl $1,%eax + /* L | H */ + movd %eax,%mm0 + punpckldq %mm1,%mm0 + /* 1.0 | -1.0 */ + pi2fd %mm0,%mm0 + movd %eax,%mm1 + pi2fd %mm1,%mm1 + movl ASM_NAME(pnts)+16,%eax + movd 0(%eax),%mm2 + /* 1.0 | cos0 */ + punpckldq %mm2,%mm1 + /* 0 */ + movq 0(%esi),%mm2 + movq %mm2,%mm3 + pfmul %mm0,%mm3 + pfacc %mm3,%mm2 + pfmul %mm1,%mm2 + movq %mm2,0(%ebx) + movq 8(%esi),%mm4 + movq %mm4,%mm5 + pfmul %mm0,%mm5 + pfacc %mm5,%mm4 + pfmul %mm0,%mm4 + pfmul %mm1,%mm4 + movq %mm4,%mm5 + psrlq $32,%mm5 + pfacc %mm5,%mm4 + movq %mm4,8(%ebx) + /* 4 */ + movq 16(%esi),%mm2 + movq %mm2,%mm3 + pfmul %mm0,%mm3 + pfacc %mm3,%mm2 + pfmul %mm1,%mm2 + movq 24(%esi),%mm4 + movq %mm4,%mm5 + pfmul %mm0,%mm5 + pfacc %mm5,%mm4 + pfmul %mm0,%mm4 + pfmul %mm1,%mm4 + movq %mm4,%mm5 + psrlq $32,%mm5 + pfacc %mm5,%mm4 + movq %mm2,%mm3 + psrlq $32,%mm3 + pfadd %mm4,%mm2 + pfadd %mm3,%mm4 + movq %mm2,16(%ebx) + movq %mm4,24(%ebx) + /* 8 */ + movq 32(%esi),%mm2 + movq %mm2,%mm3 + pfmul %mm0,%mm3 + pfacc %mm3,%mm2 + pfmul %mm1,%mm2 + movq %mm2,32(%ebx) + movq 40(%esi),%mm4 + movq %mm4,%mm5 + pfmul %mm0,%mm5 + pfacc %mm5,%mm4 + pfmul %mm0,%mm4 + pfmul %mm1,%mm4 + movq %mm4,%mm5 + psrlq $32,%mm5 + pfacc %mm5,%mm4 + movq %mm4,40(%ebx) + /* 12 */ + movq 48(%esi),%mm2 + movq %mm2,%mm3 + pfmul %mm0,%mm3 + pfacc %mm3,%mm2 + pfmul %mm1,%mm2 + movq 56(%esi),%mm4 + movq %mm4,%mm5 + pfmul %mm0,%mm5 + pfacc %mm5,%mm4 + pfmul %mm0,%mm4 + pfmul %mm1,%mm4 + movq %mm4,%mm5 + psrlq $32,%mm5 + pfacc %mm5,%mm4 + movq %mm2,%mm3 + psrlq $32,%mm3 + pfadd %mm4,%mm2 + pfadd %mm3,%mm4 + movq %mm2,48(%ebx) + movq %mm4,56(%ebx) + /* 16 */ + movq 64(%esi),%mm2 + movq %mm2,%mm3 + pfmul %mm0,%mm3 + pfacc %mm3,%mm2 + pfmul %mm1,%mm2 + movq %mm2,64(%ebx) + movq 72(%esi),%mm4 + movq %mm4,%mm5 + pfmul %mm0,%mm5 + pfacc %mm5,%mm4 + pfmul %mm0,%mm4 + pfmul %mm1,%mm4 + movq %mm4,%mm5 + psrlq $32,%mm5 + pfacc %mm5,%mm4 + movq %mm4,72(%ebx) + /* 20 */ + movq 80(%esi),%mm2 + movq %mm2,%mm3 + pfmul %mm0,%mm3 + pfacc %mm3,%mm2 + pfmul %mm1,%mm2 + movq 88(%esi),%mm4 + movq %mm4,%mm5 + pfmul %mm0,%mm5 + pfacc %mm5,%mm4 + pfmul %mm0,%mm4 + pfmul %mm1,%mm4 + movq %mm4,%mm5 + psrlq $32,%mm5 + pfacc %mm5,%mm4 + movq %mm2,%mm3 + psrlq $32,%mm3 + pfadd %mm4,%mm2 + pfadd %mm3,%mm4 + movq %mm2,80(%ebx) + movq %mm4,88(%ebx) + /* 24 */ + movq 96(%esi),%mm2 + movq %mm2,%mm3 + pfmul %mm0,%mm3 + pfacc %mm3,%mm2 + pfmul %mm1,%mm2 + movq %mm2,96(%ebx) + movq 104(%esi),%mm4 + movq %mm4,%mm5 + pfmul %mm0,%mm5 + pfacc %mm5,%mm4 + pfmul %mm0,%mm4 + pfmul %mm1,%mm4 + movq %mm4,%mm5 + psrlq $32,%mm5 + pfacc %mm5,%mm4 + movq %mm4,104(%ebx) + /* 28 */ + movq 112(%esi),%mm2 + movq %mm2,%mm3 + pfmul %mm0,%mm3 + pfacc %mm3,%mm2 + pfmul %mm1,%mm2 + movq 120(%esi),%mm4 + movq %mm4,%mm5 + pfmul %mm0,%mm5 + pfacc %mm5,%mm4 + pfmul %mm0,%mm4 + pfmul %mm1,%mm4 + movq %mm4,%mm5 + psrlq $32,%mm5 + pfacc %mm5,%mm4 + movq %mm2,%mm3 + psrlq $32,%mm3 + pfadd %mm4,%mm2 + pfadd %mm3,%mm4 + movq %mm2,112(%ebx) + movq %mm4,120(%ebx) + + /* Phase6 */ + movl 0(%ebx),%eax + movl %eax,1024(%ebp) + movl 4(%ebx),%eax + movl %eax,0(%ebp) + movl %eax,0(%edx) + movl 8(%ebx),%eax + movl %eax,512(%ebp) + movl 12(%ebx),%eax + movl %eax,512(%edx) + + movl 16(%ebx),%eax + movl %eax,768(%ebp) + movl 20(%ebx),%eax + movl %eax,256(%edx) + + movl 24(%ebx),%eax + movl %eax,256(%ebp) + movl 28(%ebx),%eax + movl %eax,768(%edx) + + movq 32(%ebx),%mm0 + movq 48(%ebx),%mm1 + pfadd %mm1,%mm0 + movd %mm0,896(%ebp) + psrlq $32,%mm0 + movd %mm0,128(%edx) + movq 40(%ebx),%mm2 + pfadd %mm2,%mm1 + movd %mm1,640(%ebp) + psrlq $32,%mm1 + movd %mm1,384(%edx) + + movq 56(%ebx),%mm3 + pfadd %mm3,%mm2 + movd %mm2,384(%ebp) + psrlq $32,%mm2 + movd %mm2,640(%edx) + + movd 36(%ebx),%mm4 + pfadd %mm4,%mm3 + movd %mm3,128(%ebp) + psrlq $32,%mm3 + movd %mm3,896(%edx) + movq 96(%ebx),%mm0 + movq 64(%ebx),%mm1 + + movq 112(%ebx),%mm2 + pfadd %mm2,%mm0 + movq %mm0,%mm3 + pfadd %mm1,%mm3 + movd %mm3,960(%ebp) + psrlq $32,%mm3 + movd %mm3,64(%edx) + movq 80(%ebx),%mm1 + pfadd %mm1,%mm0 + movd %mm0,832(%ebp) + psrlq $32,%mm0 + movd %mm0,192(%edx) + movq 104(%ebx),%mm3 + pfadd %mm3,%mm2 + movq %mm2,%mm4 + pfadd %mm1,%mm4 + movd %mm4,704(%ebp) + psrlq $32,%mm4 + movd %mm4,320(%edx) + movq 72(%ebx),%mm1 + pfadd %mm1,%mm2 + movd %mm2,576(%ebp) + psrlq $32,%mm2 + movd %mm2,448(%edx) + + movq 120(%ebx),%mm4 + pfadd %mm4,%mm3 + movq %mm3,%mm5 + pfadd %mm1,%mm5 + movd %mm5,448(%ebp) + psrlq $32,%mm5 + movd %mm5,576(%edx) + movq 88(%ebx),%mm1 + pfadd %mm1,%mm3 + movd %mm3,320(%ebp) + psrlq $32,%mm3 + movd %mm3,704(%edx) + + movd 100(%ebx),%mm5 + pfadd %mm5,%mm4 + movq %mm4,%mm6 + pfadd %mm1,%mm6 + movd %mm6,192(%ebp) + psrlq $32,%mm6 + movd %mm6,832(%edx) + movd 68(%ebx),%mm1 + pfadd %mm1,%mm4 + movd %mm4,64(%ebp) + psrlq $32,%mm4 + movd %mm4,960(%edx) + + /* femms */ + + popl %ebx + popl %esi + popl %edi + popl %ebp + addl $256,%esp + + ret + +/* Mark non-executable stack. */ +#if defined(__linux__) && defined(__ELF__) +.section .note.GNU-stack,"",%progbits +#endif diff -r f2985e08589c -r 7e08477b0fc1 decoders/libmpg123/dct64_3dnowext.S --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/decoders/libmpg123/dct64_3dnowext.S Fri Jan 30 02:44:47 2009 -0500 @@ -0,0 +1,717 @@ +/* + dct64_3dnowext: extended 3DNow optimized DCT64 + + copyright ?-2007 by the mpg123 project - free software under the terms of the LGPL 2.1 + see COPYING and AUTHORS files in distribution or http://mpg123.org + + Transformed back into standalone asm, with help of + gcc -S -DHAVE_CONFIG_H -I. -march=k6-3 -O3 -Wall -pedantic -fno-strict-aliasing -DREAL_IS_FLOAT -c -o dct64_3dnowext.{S,c} + + MPlayer comment follows. +*/ + +/* +* This code was taken from http://www.mpg123.org +* See ChangeLog of mpg123-0.59s-pre.1 for detail +* Applied to mplayer by Nick Kurshev +* Partial 3dnowex-DSP! optimization by Nick Kurshev +* +* TODO: optimize scalar 3dnow! code +* Warning: Phases 7 & 8 are not tested +*/ + +#include "mangle.h" + + .data + ALIGN4 + /* .type plus_1f, @object + .size plus_1f, 4 */ +plus_1f: + .long 1065353216 + ALIGN8 + /* .type x_plus_minus_3dnow, @object + .size x_plus_minus_3dnow, 8 */ +x_plus_minus_3dnow: + .long 0 + .long -2147483648 + + .text + ALIGN32,,31 +.globl ASM_NAME(dct64_3dnowext) + /* .type ASM_NAME(dct64_3dnowext), @function */ +ASM_NAME(dct64_3dnowext): + pushl %ebp + movl %esp, %ebp + pushl %edi + pushl %esi + pushl %ebx + subl $256, %esp +/* APP */ + movl 16(%ebp),%eax + leal 128+-268(%ebp),%edx + movl 8(%ebp),%esi + movl 12(%ebp),%edi + movl $ASM_NAME(costab_mmxsse),%ebx + leal -268(%ebp),%ecx + movq (%eax), %mm0 + movq 8(%eax), %mm4 + movq %mm0, %mm3 + movq %mm4, %mm7 + pswapd 120(%eax), %mm1 + pswapd 112(%eax), %mm5 + pfadd %mm1, %mm0 + pfadd %mm5, %mm4 + movq %mm0, (%edx) + movq %mm4, 8(%edx) + pfsub %mm1, %mm3 + pfsub %mm5, %mm7 + pfmul (%ebx), %mm3 + pfmul 8(%ebx), %mm7 + pswapd %mm3, %mm3 + pswapd %mm7, %mm7 + movq %mm3, 120(%edx) + movq %mm7, 112(%edx) + movq 16(%eax), %mm0 + movq 24(%eax), %mm4 + movq %mm0, %mm3 + movq %mm4, %mm7 + pswapd 104(%eax), %mm1 + pswapd 96(%eax), %mm5 + pfadd %mm1, %mm0 + pfadd %mm5, %mm4 + movq %mm0, 16(%edx) + movq %mm4, 24(%edx) + pfsub %mm1, %mm3 + pfsub %mm5, %mm7 + pfmul 16(%ebx), %mm3 + pfmul 24(%ebx), %mm7 + pswapd %mm3, %mm3 + pswapd %mm7, %mm7 + movq %mm3, 104(%edx) + movq %mm7, 96(%edx) + movq 32(%eax), %mm0 + movq 40(%eax), %mm4 + movq %mm0, %mm3 + movq %mm4, %mm7 + pswapd 88(%eax), %mm1 + pswapd 80(%eax), %mm5 + pfadd %mm1, %mm0 + pfadd %mm5, %mm4 + movq %mm0, 32(%edx) + movq %mm4, 40(%edx) + pfsub %mm1, %mm3 + pfsub %mm5, %mm7 + pfmul 32(%ebx), %mm3 + pfmul 40(%ebx), %mm7 + pswapd %mm3, %mm3 + pswapd %mm7, %mm7 + movq %mm3, 88(%edx) + movq %mm7, 80(%edx) + movq 48(%eax), %mm0 + movq 56(%eax), %mm4 + movq %mm0, %mm3 + movq %mm4, %mm7 + pswapd 72(%eax), %mm1 + pswapd 64(%eax), %mm5 + pfadd %mm1, %mm0 + pfadd %mm5, %mm4 + movq %mm0, 48(%edx) + movq %mm4, 56(%edx) + pfsub %mm1, %mm3 + pfsub %mm5, %mm7 + pfmul 48(%ebx), %mm3 + pfmul 56(%ebx), %mm7 + pswapd %mm3, %mm3 + pswapd %mm7, %mm7 + movq %mm3, 72(%edx) + movq %mm7, 64(%edx) + movq (%edx), %mm0 + movq 8(%edx), %mm4 + movq %mm0, %mm3 + movq %mm4, %mm7 + pswapd 56(%edx), %mm1 + pswapd 48(%edx), %mm5 + pfadd %mm1, %mm0 + pfadd %mm5, %mm4 + movq %mm0, (%ecx) + movq %mm4, 8(%ecx) + pfsub %mm1, %mm3 + pfsub %mm5, %mm7 + pfmul 64(%ebx), %mm3 + pfmul 72(%ebx), %mm7 + pswapd %mm3, %mm3 + pswapd %mm7, %mm7 + movq %mm3, 56(%ecx) + movq %mm7, 48(%ecx) + movq 16(%edx), %mm0 + movq 24(%edx), %mm4 + movq %mm0, %mm3 + movq %mm4, %mm7 + pswapd 40(%edx), %mm1 + pswapd 32(%edx), %mm5 + pfadd %mm1, %mm0 + pfadd %mm5, %mm4 + movq %mm0, 16(%ecx) + movq %mm4, 24(%ecx) + pfsub %mm1, %mm3 + pfsub %mm5, %mm7 + pfmul 80(%ebx), %mm3 + pfmul 88(%ebx), %mm7 + pswapd %mm3, %mm3 + pswapd %mm7, %mm7 + movq %mm3, 40(%ecx) + movq %mm7, 32(%ecx) + movq 64(%edx), %mm0 + movq 72(%edx), %mm4 + movq %mm0, %mm3 + movq %mm4, %mm7 + pswapd 120(%edx), %mm1 + pswapd 112(%edx), %mm5 + pfadd %mm1, %mm0 + pfadd %mm5, %mm4 + movq %mm0, 64(%ecx) + movq %mm4, 72(%ecx) + pfsubr %mm1, %mm3 + pfsubr %mm5, %mm7 + pfmul 64(%ebx), %mm3 + pfmul 72(%ebx), %mm7 + pswapd %mm3, %mm3 + pswapd %mm7, %mm7 + movq %mm3, 120(%ecx) + movq %mm7, 112(%ecx) + movq 80(%edx), %mm0 + movq 88(%edx), %mm4 + movq %mm0, %mm3 + movq %mm4, %mm7 + pswapd 104(%edx), %mm1 + pswapd 96(%edx), %mm5 + pfadd %mm1, %mm0 + pfadd %mm5, %mm4 + movq %mm0, 80(%ecx) + movq %mm4, 88(%ecx) + pfsubr %mm1, %mm3 + pfsubr %mm5, %mm7 + pfmul 80(%ebx), %mm3 + pfmul 88(%ebx), %mm7 + pswapd %mm3, %mm3 + pswapd %mm7, %mm7 + movq %mm3, 104(%ecx) + movq %mm7, 96(%ecx) + movq 96(%ebx), %mm2 + movq 104(%ebx), %mm6 + movq (%ecx), %mm0 + movq 8(%ecx), %mm4 + movq %mm0, %mm3 + movq %mm4, %mm7 + pswapd 24(%ecx), %mm1 + pswapd 16(%ecx), %mm5 + pfadd %mm1, %mm0 + pfadd %mm5, %mm4 + movq %mm0, (%edx) + movq %mm4, 8(%edx) + pfsub %mm1, %mm3 + pfsub %mm5, %mm7 + pfmul %mm2, %mm3 + pfmul %mm6, %mm7 + pswapd %mm3, %mm3 + pswapd %mm7, %mm7 + movq %mm3, 24(%edx) + movq %mm7, 16(%edx) + movq 32(%ecx), %mm0 + movq 40(%ecx), %mm4 + movq %mm0, %mm3 + movq %mm4, %mm7 + pswapd 56(%ecx), %mm1 + pswapd 48(%ecx), %mm5 + pfadd %mm1, %mm0 + pfadd %mm5, %mm4 + movq %mm0, 32(%edx) + movq %mm4, 40(%edx) + pfsubr %mm1, %mm3 + pfsubr %mm5, %mm7 + pfmul %mm2, %mm3 + pfmul %mm6, %mm7 + pswapd %mm3, %mm3 + pswapd %mm7, %mm7 + movq %mm3, 56(%edx) + movq %mm7, 48(%edx) + movq 64(%ecx), %mm0 + movq 72(%ecx), %mm4 + movq %mm0, %mm3 + movq %mm4, %mm7 + pswapd 88(%ecx), %mm1 + pswapd 80(%ecx), %mm5 + pfadd %mm1, %mm0 + pfadd %mm5, %mm4 + movq %mm0, 64(%edx) + movq %mm4, 72(%edx) + pfsub %mm1, %mm3 + pfsub %mm5, %mm7 + pfmul %mm2, %mm3 + pfmul %mm6, %mm7 + pswapd %mm3, %mm3 + pswapd %mm7, %mm7 + movq %mm3, 88(%edx) + movq %mm7, 80(%edx) + movq 96(%ecx), %mm0 + movq 104(%ecx), %mm4 + movq %mm0, %mm3 + movq %mm4, %mm7 + pswapd 120(%ecx), %mm1 + pswapd 112(%ecx), %mm5 + pfadd %mm1, %mm0 + pfadd %mm5, %mm4 + movq %mm0, 96(%edx) + movq %mm4, 104(%edx) + pfsubr %mm1, %mm3 + pfsubr %mm5, %mm7 + pfmul %mm2, %mm3 + pfmul %mm6, %mm7 + pswapd %mm3, %mm3 + pswapd %mm7, %mm7 + movq %mm3, 120(%edx) + movq %mm7, 112(%edx) + movq 112(%ebx), %mm2 + movq (%edx), %mm0 + movq 16(%edx), %mm4 + movq %mm0, %mm3 + movq %mm4, %mm7 + pswapd 8(%edx), %mm1 + pswapd 24(%edx), %mm5 + pfadd %mm1, %mm0 + pfadd %mm5, %mm4 + movq %mm0, (%ecx) + movq %mm4, 16(%ecx) + pfsub %mm1, %mm3 + pfsubr %mm5, %mm7 + pfmul %mm2, %mm3 + pfmul %mm2, %mm7 + pswapd %mm3, %mm3 + pswapd %mm7, %mm7 + movq %mm3, 8(%ecx) + movq %mm7, 24(%ecx) + movq 32(%edx), %mm0 + movq 48(%edx), %mm4 + movq %mm0, %mm3 + movq %mm4, %mm7 + pswapd 40(%edx), %mm1 + pswapd 56(%edx), %mm5 + pfadd %mm1, %mm0 + pfadd %mm5, %mm4 + movq %mm0, 32(%ecx) + movq %mm4, 48(%ecx) + pfsub %mm1, %mm3 + pfsubr %mm5, %mm7 + pfmul %mm2, %mm3 + pfmul %mm2, %mm7 + pswapd %mm3, %mm3 + pswapd %mm7, %mm7 + movq %mm3, 40(%ecx) + movq %mm7, 56(%ecx) + movq 64(%edx), %mm0 + movq 80(%edx), %mm4 + movq %mm0, %mm3 + movq %mm4, %mm7 + pswapd 72(%edx), %mm1 + pswapd 88(%edx), %mm5 + pfadd %mm1, %mm0 + pfadd %mm5, %mm4 + movq %mm0, 64(%ecx) + movq %mm4, 80(%ecx) + pfsub %mm1, %mm3 + pfsubr %mm5, %mm7 + pfmul %mm2, %mm3 + pfmul %mm2, %mm7 + pswapd %mm3, %mm3 + pswapd %mm7, %mm7 + movq %mm3, 72(%ecx) + movq %mm7, 88(%ecx) + movq 96(%edx), %mm0 + movq 112(%edx), %mm4 + movq %mm0, %mm3 + movq %mm4, %mm7 + pswapd 104(%edx), %mm1 + pswapd 120(%edx), %mm5 + pfadd %mm1, %mm0 + pfadd %mm5, %mm4 + movq %mm0, 96(%ecx) + movq %mm4, 112(%ecx) + pfsub %mm1, %mm3 + pfsubr %mm5, %mm7 + pfmul %mm2, %mm3 + pfmul %mm2, %mm7 + pswapd %mm3, %mm3 + pswapd %mm7, %mm7 + movq %mm3, 104(%ecx) + movq %mm7, 120(%ecx) + movd plus_1f, %mm6 + punpckldq 120(%ebx), %mm6 + movq x_plus_minus_3dnow, %mm7 + movq 32(%ecx), %mm0 + movq 64(%ecx), %mm2 + movq %mm0, %mm1 + movq %mm2, %mm3 + pxor %mm7, %mm1 + pxor %mm7, %mm3 + pfacc %mm1, %mm0 + pfacc %mm3, %mm2 + pfmul %mm6, %mm0 + pfmul %mm6, %mm2 + movq %mm0, 32(%edx) + movq %mm2, 64(%edx) + movd 44(%ecx), %mm0 + movd 40(%ecx), %mm2 + movd 120(%ebx), %mm3 + punpckldq 76(%ecx), %mm0 + punpckldq 72(%ecx), %mm2 + punpckldq %mm3, %mm3 + movq %mm0, %mm4 + movq %mm2, %mm5 + pfsub %mm2, %mm0 + pfmul %mm3, %mm0 + movq %mm0, %mm1 + pfadd %mm5, %mm0 + pfadd %mm4, %mm0 + movq %mm0, %mm2 + punpckldq %mm1, %mm0 + punpckhdq %mm1, %mm2 + movq %mm0, 40(%edx) + movq %mm2, 72(%edx) + movd 48(%ecx), %mm3 + movd 60(%ecx), %mm2 + pfsub 52(%ecx), %mm3 + pfsub 56(%ecx), %mm2 + pfmul 120(%ebx), %mm3 + pfmul 120(%ebx), %mm2 + movq %mm2, %mm1 + pfadd 56(%ecx), %mm1 + pfadd 60(%ecx), %mm1 + movq %mm1, %mm0 + pfadd 48(%ecx), %mm0 + pfadd 52(%ecx), %mm0 + pfadd %mm3, %mm1 + punpckldq %mm2, %mm1 + pfadd %mm3, %mm2 + punpckldq %mm2, %mm0 + movq %mm1, 56(%edx) + movq %mm0, 48(%edx) + movd 92(%ecx), %mm1 + pfsub 88(%ecx), %mm1 + pfmul 120(%ebx), %mm1 + movd %mm1, 92(%edx) + pfadd 92(%ecx), %mm1 + pfadd 88(%ecx), %mm1 + movq %mm1, %mm0 + pfadd 80(%ecx), %mm0 + pfadd 84(%ecx), %mm0 + movd %mm0, 80(%edx) + movd 80(%ecx), %mm0 + pfsub 84(%ecx), %mm0 + pfmul 120(%ebx), %mm0 + pfadd %mm0, %mm1 + pfadd 92(%edx), %mm0 + punpckldq %mm1, %mm0 + movq %mm0, 84(%edx) + movq 96(%ecx), %mm0 + movq %mm0, %mm1 + pxor %mm7, %mm1 + pfacc %mm1, %mm0 + pfmul %mm6, %mm0 + movq %mm0, 96(%edx) + movd 108(%ecx), %mm0 + pfsub 104(%ecx), %mm0 + pfmul 120(%ebx), %mm0 + movd %mm0, 108(%edx) + pfadd 104(%ecx), %mm0 + pfadd 108(%ecx), %mm0 + movd %mm0, 104(%edx) + movd 124(%ecx), %mm1 + pfsub 120(%ecx), %mm1 + pfmul 120(%ebx), %mm1 + movd %mm1, 124(%edx) + pfadd 120(%ecx), %mm1 + pfadd 124(%ecx), %mm1 + movq %mm1, %mm0 + pfadd 112(%ecx), %mm0 + pfadd 116(%ecx), %mm0 + movd %mm0, 112(%edx) + movd 112(%ecx), %mm0 + pfsub 116(%ecx), %mm0 + pfmul 120(%ebx), %mm0 + pfadd %mm0,%mm1 + pfadd 124(%edx), %mm0 + punpckldq %mm1, %mm0 + movq %mm0, 116(%edx) + jnz .L01 + movd (%ecx), %mm0 + pfadd 4(%ecx), %mm0 + movd %mm0, 1024(%esi) + movd (%ecx), %mm0 + pfsub 4(%ecx), %mm0 + pfmul 120(%ebx), %mm0 + movd %mm0, (%esi) + movd %mm0, (%edi) + movd 12(%ecx), %mm0 + pfsub 8(%ecx), %mm0 + pfmul 120(%ebx), %mm0 + movd %mm0, 512(%edi) + pfadd 12(%ecx), %mm0 + pfadd 8(%ecx), %mm0 + movd %mm0, 512(%esi) + movd 16(%ecx), %mm0 + pfsub 20(%ecx), %mm0 + pfmul 120(%ebx), %mm0 + movq %mm0, %mm3 + movd 28(%ecx), %mm0 + pfsub 24(%ecx), %mm0 + pfmul 120(%ebx), %mm0 + movd %mm0, 768(%edi) + movq %mm0, %mm2 + pfadd 24(%ecx), %mm0 + pfadd 28(%ecx), %mm0 + movq %mm0, %mm1 + pfadd 16(%ecx), %mm0 + pfadd 20(%ecx), %mm0 + movd %mm0, 768(%esi) + pfadd %mm3, %mm1 + movd %mm1, 256(%esi) + pfadd %mm3, %mm2 + movd %mm2, 256(%edi) + movq 32(%edx), %mm0 + movq 48(%edx), %mm1 + pfadd 48(%edx), %mm0 + pfadd 40(%edx), %mm1 + movd %mm0, 896(%esi) + movd %mm1, 640(%esi) + psrlq $32, %mm0 + psrlq $32, %mm1 + movd %mm0, 128(%edi) + movd %mm1, 384(%edi) + movd 40(%edx), %mm0 + pfadd 56(%edx), %mm0 + movd %mm0, 384(%esi) + movd 56(%edx), %mm0 + pfadd 36(%edx), %mm0 + movd %mm0, 128(%esi) + movd 60(%edx), %mm0 + movd %mm0, 896(%edi) + pfadd 44(%edx), %mm0 + movd %mm0, 640(%edi) + movq 96(%edx), %mm0 + movq 112(%edx), %mm2 + movq 104(%edx), %mm4 + pfadd 112(%edx), %mm0 + pfadd 104(%edx), %mm2 + pfadd 120(%edx), %mm4 + movq %mm0, %mm1 + movq %mm2, %mm3 + movq %mm4, %mm5 + pfadd 64(%edx), %mm0 + pfadd 80(%edx), %mm2 + pfadd 72(%edx), %mm4 + movd %mm0, 960(%esi) + movd %mm2, 704(%esi) + movd %mm4, 448(%esi) + psrlq $32, %mm0 + psrlq $32, %mm2 + psrlq $32, %mm4 + movd %mm0, 64(%edi) + movd %mm2, 320(%edi) + movd %mm4, 576(%edi) + pfadd 80(%edx), %mm1 + pfadd 72(%edx), %mm3 + pfadd 88(%edx), %mm5 + movd %mm1, 832(%esi) + movd %mm3, 576(%esi) + movd %mm5, 320(%esi) + psrlq $32, %mm1 + psrlq $32, %mm3 + psrlq $32, %mm5 + movd %mm1, 192(%edi) + movd %mm3, 448(%edi) + movd %mm5, 704(%edi) + movd 120(%edx), %mm0 + pfadd 100(%edx), %mm0 + movq %mm0, %mm1 + pfadd 88(%edx), %mm0 + movd %mm0, 192(%esi) + pfadd 68(%edx), %mm1 + movd %mm1, 64(%esi) + movd 124(%edx), %mm0 + movd %mm0, 960(%edi) + pfadd 92(%edx), %mm0 + movd %mm0, 832(%edi) + jmp .L_bye +.L01: + movq (%ecx), %mm0 + movq %mm0, %mm1 + pxor %mm7, %mm1 + pfacc %mm1, %mm0 + pfmul %mm6, %mm0 + pf2iw %mm0, %mm0 + movd %mm0, %eax + movw %ax, 512(%esi) + psrlq $32, %mm0 + movd %mm0, %eax + movw %ax, (%esi) + movd 12(%ecx), %mm0 + pfsub 8(%ecx), %mm0 + pfmul 120(%ebx), %mm0 + pf2iw %mm0, %mm7 + movd %mm7, %eax + movw %ax, 256(%edi) + pfadd 12(%ecx), %mm0 + pfadd 8(%ecx), %mm0 + pf2iw %mm0, %mm0 + movd %mm0, %eax + movw %ax, 256(%esi) + movd 16(%ecx), %mm3 + pfsub 20(%ecx), %mm3 + pfmul 120(%ebx), %mm3 + movq %mm3, %mm2 + movd 28(%ecx), %mm2 + pfsub 24(%ecx), %mm2 + pfmul 120(%ebx), %mm2 + movq %mm2, %mm1 + pf2iw %mm2, %mm7 + movd %mm7, %eax + movw %ax, 384(%edi) + pfadd 24(%ecx), %mm1 + pfadd 28(%ecx), %mm1 + movq %mm1, %mm0 + pfadd 16(%ecx), %mm0 + pfadd 20(%ecx), %mm0 + pf2iw %mm0, %mm0 + movd %mm0, %eax + movw %ax, 384(%esi) + pfadd %mm3, %mm1 + pf2iw %mm1, %mm1 + movd %mm1, %eax + movw %ax, 128(%esi) + pfadd %mm3, %mm2 + pf2iw %mm2, %mm2 + movd %mm2, %eax + movw %ax, 128(%edi) + movq 32(%edx), %mm0 + movq 48(%edx), %mm1 + pfadd 48(%edx), %mm0 + pfadd 40(%edx), %mm1 + pf2iw %mm0, %mm0 + pf2iw %mm1, %mm1 + movd %mm0, %eax + movd %mm1, %ecx + movw %ax, 448(%esi) + movw %cx, 320(%esi) + psrlq $32, %mm0 + psrlq $32, %mm1 + movd %mm0, %eax + movd %mm1, %ecx + movw %ax, 64(%edi) + movw %cx, 192(%edi) + movd 40(%edx), %mm3 + movd 56(%edx), %mm4 + movd 60(%edx), %mm0 + movd 44(%edx), %mm2 + movd 120(%edx), %mm5 + punpckldq %mm4, %mm3 + punpckldq 124(%edx), %mm0 + pfadd 100(%edx), %mm5 + punpckldq 36(%edx), %mm4 + punpckldq 92(%edx), %mm2 + movq %mm5, %mm6 + pfadd %mm4, %mm3 + pf2iw %mm0, %mm1 + pf2iw %mm3, %mm3 + pfadd 88(%edx), %mm5 + movd %mm1, %eax + movd %mm3, %ecx + movw %ax, 448(%edi) + movw %cx, 192(%esi) + pf2iw %mm5, %mm5 + psrlq $32, %mm1 + psrlq $32, %mm3 + movd %mm5, %ebx + movd %mm1, %eax + movd %mm3, %ecx + movw %bx, 96(%esi) + movw %ax, 480(%edi) + movw %cx, 64(%esi) + pfadd %mm2, %mm0 + pf2iw %mm0, %mm0 + movd %mm0, %eax + pfadd 68(%edx), %mm6 + movw %ax, 320(%edi) + psrlq $32, %mm0 + pf2iw %mm6, %mm6 + movd %mm0, %eax + movd %mm6, %ebx + movw %ax, 416(%edi) + movw %bx, 32(%esi) + movq 96(%edx), %mm0 + movq 112(%edx), %mm2 + movq 104(%edx), %mm4 + pfadd %mm2, %mm0 + pfadd %mm4, %mm2 + pfadd 120(%edx), %mm4 + movq %mm0, %mm1 + movq %mm2, %mm3 + movq %mm4, %mm5 + pfadd 64(%edx), %mm0 + pfadd 80(%edx), %mm2 + pfadd 72(%edx), %mm4 + pf2iw %mm0, %mm0 + pf2iw %mm2, %mm2 + pf2iw %mm4, %mm4 + movd %mm0, %eax + movd %mm2, %ecx + movd %mm4, %ebx + movw %ax, 480(%esi) + movw %cx, 352(%esi) + movw %bx, 224(%esi) + psrlq $32, %mm0 + psrlq $32, %mm2 + psrlq $32, %mm4 + movd %mm0, %eax + movd %mm2, %ecx + movd %mm4, %ebx + movw %ax, 32(%edi) + movw %cx, 160(%edi) + movw %bx, 288(%edi) + pfadd 80(%edx), %mm1 + pfadd 72(%edx), %mm3 + pfadd 88(%edx), %mm5 + pf2iw %mm1, %mm1 + pf2iw %mm3, %mm3 + pf2iw %mm5, %mm5 + movd %mm1, %eax + movd %mm3, %ecx + movd %mm5, %ebx + movw %ax, 416(%esi) + movw %cx, 288(%esi) + movw %bx, 160(%esi) + psrlq $32, %mm1 + psrlq $32, %mm3 + psrlq $32, %mm5 + movd %mm1, %eax + movd %mm3, %ecx + movd %mm5, %ebx + movw %ax, 96(%edi) + movw %cx, 224(%edi) + movw %bx, 352(%edi) + movsw +.L_bye: + femms + +/* NO_APP */ + addl $256, %esp + popl %ebx + popl %esi + popl %edi + leave + ret + /* .size ASM_NAME(dct64_3dnowext), .-ASM_NAME(dct64_3dnowext) */ + +/* Mark non-executable stack. */ +#if defined(__linux__) && defined(__ELF__) +.section .note.GNU-stack,"",%progbits +#endif diff -r f2985e08589c -r 7e08477b0fc1 decoders/libmpg123/dct64_altivec.c --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/decoders/libmpg123/dct64_altivec.c Fri Jan 30 02:44:47 2009 -0500 @@ -0,0 +1,325 @@ +/* + dct64_altivec.c: Discrete Cosine Tansform (DCT) for Altivec + + copyright ?-2006 by the mpg123 project - free software under the terms of the LGPL 2.1 + see COPYING and AUTHORS files in distribution or http://mpg123.org + initially written by Michael Hipp + altivec optimization by tmkk +*/ + +/* + * Discrete Cosine Tansform (DCT) for subband synthesis + * + * -funroll-loops (for gcc) will remove the loops for better performance + * using loops in the source-code enhances readabillity + * + * + * TODO: write an optimized version for the down-sampling modes + * (in these modes the bands 16-31 (2:1) or 8-31 (4:1) are zero + */ + +#include "mpg123lib_intern.h" + +#ifndef __APPLE__ +#include +#endif + +void dct64_altivec(real *out0,real *out1,real *samples) +{ + ALIGNED(16) real bufs[64]; + + { + register real *b1,*costab; + + vector unsigned char vinvert,vperm1,vperm2,vperm3,vperm4; + vector float v1,v2,v3,v4,v5,v6,v7,v8; + vector float vbs1,vbs2,vbs3,vbs4,vbs5,vbs6,vbs7,vbs8; + vector float vbs9,vbs10,vbs11,vbs12,vbs13,vbs14,vbs15,vbs16; + vector float vzero; + b1 = samples; + costab = pnts[0]; + + vzero = vec_xor(vzero,vzero); +#ifdef __APPLE__ + vinvert = (vector unsigned char)(12,13,14,15,8,9,10,11,4,5,6,7,0,1,2,3); +#else + vinvert = (vector unsigned char){12,13,14,15,8,9,10,11,4,5,6,7,0,1,2,3}; +#endif + vperm1 = vec_lvsl(0,b1); + vperm2 = vec_perm(vperm1,vperm1,vinvert); + + v1 = vec_ld(0,b1); + v2 = vec_ld(16,b1); + v3 = vec_ld(112,b1); + v4 = vec_ld(127,b1); + v5 = vec_perm(v1,v2,vperm1); /* b1[0,1,2,3] */ + v6 = vec_perm(v3,v4,vperm2); /* b1[31,30,29,28] */ + + vbs1 = vec_add(v5,v6); + vbs8 = vec_sub(v5,v6); + + v1 = vec_ld(32,b1); + v4 = vec_ld(96,b1); + v5 = vec_perm(v2,v1,vperm1); /* b1[4,5,6,7] */ + v6 = vec_perm(v4,v3,vperm2); /* b1[27,26,25,24] */ + + vbs2 = vec_add(v5,v6); + vbs7 = vec_sub(v5,v6); + + v2 = vec_ld(48,b1); + v3 = vec_ld(80,b1); + v5 = vec_perm(v1,v2,vperm1); /* b1[8,9,10,11] */ + v6 = vec_perm(v3,v4,vperm2); /* b1[23,22,21,20] */ + + vbs3 = vec_add(v5,v6); + vbs6 = vec_sub(v5,v6); + + v1 = vec_ld(64,b1); + v5 = vec_perm(v2,v1,vperm1); /* b1[12,13,14,15] */ + v6 = vec_perm(v1,v3,vperm2); /* b1[19,18,17,16] */ + + vbs4 = vec_add(v5,v6); + vbs5 = vec_sub(v5,v6); + + v1 = vec_ld(0,costab); + vbs8 = vec_madd(vbs8,v1,vzero); + v2 = vec_ld(16,costab); + vbs7 = vec_madd(vbs7,v2,vzero); + v3 = vec_ld(32,costab); + vbs6 = vec_madd(vbs6,v3,vzero); + v4 = vec_ld(48,costab); + vbs5 = vec_madd(vbs5,v4,vzero); + vbs6 = vec_perm(vbs6,vbs6,vinvert); + vbs5 = vec_perm(vbs5,vbs5,vinvert); + + + costab = pnts[1]; + + v1 = vec_perm(vbs4,vbs4,vinvert); + vbs9 = vec_add(vbs1,v1); + v3 = vec_sub(vbs1,v1); + v5 = vec_ld(0,costab); + v2 = vec_perm(vbs3,vbs3,vinvert); + vbs10 = vec_add(vbs2,v2); + v4 = vec_sub(vbs2,v2); + v6 = vec_ld(16,costab); + vbs12 = vec_madd(v3,v5,vzero); + vbs11 = vec_madd(v4,v6,vzero); + + v7 = vec_sub(vbs7,vbs6); + v8 = vec_sub(vbs8,vbs5); + vbs13 = vec_add(vbs5,vbs8); + vbs14 = vec_add(vbs6,vbs7); + vbs15 = vec_madd(v7,v6,vzero); + vbs16 = vec_madd(v8,v5,vzero); + + + costab = pnts[2]; + + v1 = vec_perm(vbs10,vbs10,vinvert); + v5 = vec_perm(vbs14,vbs14,vinvert); + vbs1 = vec_add(v1,vbs9); + vbs5 = vec_add(v5,vbs13); + v2 = vec_sub(vbs9,v1); + v6 = vec_sub(vbs13,v5); + v3 = vec_ld(0,costab); + vbs11 = vec_perm(vbs11,vbs11,vinvert); + vbs15 = vec_perm(vbs15,vbs15,vinvert); + vbs3 = vec_add(vbs11,vbs12); + vbs7 = vec_add(vbs15,vbs16); + v4 = vec_sub(vbs12,vbs11); + v7 = vec_sub(vbs16,vbs15); + vbs2 = vec_madd(v2,v3,vzero); + vbs4 = vec_madd(v4,v3,vzero); + vbs6 = vec_madd(v6,v3,vzero); + vbs8 = vec_madd(v7,v3,vzero); + + vbs2 = vec_perm(vbs2,vbs2,vinvert); + vbs4 = vec_perm(vbs4,vbs4,vinvert); + vbs6 = vec_perm(vbs6,vbs6,vinvert); + vbs8 = vec_perm(vbs8,vbs8,vinvert); + + + costab = pnts[3]; + +#ifdef __APPLE__ + vperm1 = (vector unsigned char)(0,1,2,3,4,5,6,7,16,17,18,19,20,21,22,23); + vperm2 = (vector unsigned char)(12,13,14,15,8,9,10,11,28,29,30,31,24,25,26,27); + vperm3 = (vector unsigned char)(0,1,2,3,4,5,6,7,20,21,22,23,16,17,18,19); +#else + vperm1 = (vector unsigned char){0,1,2,3,4,5,6,7,16,17,18,19,20,21,22,23}; + vperm2 = (vector unsigned char){12,13,14,15,8,9,10,11,28,29,30,31,24,25,26,27}; + vperm3 = (vector unsigned char){0,1,2,3,4,5,6,7,20,21,22,23,16,17,18,19}; +#endif + vperm4 = vec_add(vperm3,vec_splat_u8(8)); + + v1 = vec_ld(0,costab); + v2 = vec_splat(v1,0); + v3 = vec_splat(v1,1); + v1 = vec_mergeh(v2,v3); + + v2 = vec_perm(vbs1,vbs3,vperm1); + v3 = vec_perm(vbs2,vbs4,vperm1); + v4 = vec_perm(vbs1,vbs3,vperm2); + v5 = vec_perm(vbs2,vbs4,vperm2); + v6 = vec_sub(v2,v4); + v7 = vec_sub(v3,v5); + v2 = vec_add(v2,v4); + v3 = vec_add(v3,v5); + v4 = vec_madd(v6,v1,vzero); + v5 = vec_nmsub(v7,v1,vzero); + vbs9 = vec_perm(v2,v4,vperm3); + vbs11 = vec_perm(v2,v4,vperm4); + vbs10 = vec_perm(v3,v5,vperm3); + vbs12 = vec_perm(v3,v5,vperm4); + + v2 = vec_perm(vbs5,vbs7,vperm1); + v3 = vec_perm(vbs6,vbs8,vperm1); + v4 = vec_perm(vbs5,vbs7,vperm2); + v5 = vec_perm(vbs6,vbs8,vperm2); + v6 = vec_sub(v2,v4); + v7 = vec_sub(v3,v5); + v2 = vec_add(v2,v4); + v3 = vec_add(v3,v5); + v4 = vec_madd(v6,v1,vzero); + v5 = vec_nmsub(v7,v1,vzero); + vbs13 = vec_perm(v2,v4,vperm3); + vbs15 = vec_perm(v2,v4,vperm4); + vbs14 = vec_perm(v3,v5,vperm3); + vbs16 = vec_perm(v3,v5,vperm4); + + + costab = pnts[4]; + + v1 = vec_lde(0,costab); +#ifdef __APPLE__ + v2 = (vector float)(1.0f,-1.0f,1.0f,-1.0f); +#else + v2 = (vector float){1.0f,-1.0f,1.0f,-1.0f}; +#endif + v3 = vec_splat(v1,0); + v1 = vec_madd(v2,v3,vzero); + + v2 = vec_mergeh(vbs9,vbs10); + v3 = vec_mergel(vbs9,vbs10); + v4 = vec_mergeh(vbs11,vbs12); + v5 = vec_mergel(vbs11,vbs12); + v6 = vec_mergeh(v2,v3); + v7 = vec_mergel(v2,v3); + v2 = vec_mergeh(v4,v5); + v3 = vec_mergel(v4,v5); + v4 = vec_sub(v6,v7); + v5 = vec_sub(v2,v3); + v6 = vec_add(v6,v7); + v7 = vec_add(v2,v3); + v2 = vec_madd(v4,v1,vzero); + v3 = vec_madd(v5,v1,vzero); + vbs1 = vec_mergeh(v6,v2); + vbs2 = vec_mergel(v6,v2); + vbs3 = vec_mergeh(v7,v3); + vbs4 = vec_mergel(v7,v3); + + v2 = vec_mergeh(vbs13,vbs14); + v3 = vec_mergel(vbs13,vbs14); + v4 = vec_mergeh(vbs15,vbs16); + v5 = vec_mergel(vbs15,vbs16); + v6 = vec_mergeh(v2,v3); + v7 = vec_mergel(v2,v3); + v2 = vec_mergeh(v4,v5); + v3 = vec_mergel(v4,v5); + v4 = vec_sub(v6,v7); + v5 = vec_sub(v2,v3); + v6 = vec_add(v6,v7); + v7 = vec_add(v2,v3); + v2 = vec_madd(v4,v1,vzero); + v3 = vec_madd(v5,v1,vzero); + vbs5 = vec_mergeh(v6,v2); + vbs6 = vec_mergel(v6,v2); + vbs7 = vec_mergeh(v7,v3); + vbs8 = vec_mergel(v7,v3); + + vec_st(vbs1,0,bufs); + vec_st(vbs2,16,bufs); + vec_st(vbs3,32,bufs); + vec_st(vbs4,48,bufs); + vec_st(vbs5,64,bufs); + vec_st(vbs6,80,bufs); + vec_st(vbs7,96,bufs); + vec_st(vbs8,112,bufs); + vec_st(vbs9,128,bufs); + vec_st(vbs10,144,bufs); + vec_st(vbs11,160,bufs); + vec_st(vbs12,176,bufs); + vec_st(vbs13,192,bufs); + vec_st(vbs14,208,bufs); + vec_st(vbs15,224,bufs); + vec_st(vbs16,240,bufs); + + + } + + { + register real *b1; + register int i; + + for(b1=bufs,i=8;i;i--,b1+=4) + b1[2] += b1[3]; + + for(b1=bufs,i=4;i;i--,b1+=8) + { + b1[4] += b1[6]; + b1[6] += b1[5]; + b1[5] += b1[7]; + } + + for(b1=bufs,i=2;i;i--,b1+=16) + { + b1[8] += b1[12]; + b1[12] += b1[10]; + b1[10] += b1[14]; + b1[14] += b1[9]; + b1[9] += b1[13]; + b1[13] += b1[11]; + b1[11] += b1[15]; + } + } + + + out0[0x10*16] = bufs[0]; + out0[0x10*15] = bufs[16+0] + bufs[16+8]; + out0[0x10*14] = bufs[8]; + out0[0x10*13] = bufs[16+8] + bufs[16+4]; + out0[0x10*12] = bufs[4]; + out0[0x10*11] = bufs[16+4] + bufs[16+12]; + out0[0x10*10] = bufs[12]; + out0[0x10* 9] = bufs[16+12] + bufs[16+2]; + out0[0x10* 8] = bufs[2]; + out0[0x10* 7] = bufs[16+2] + bufs[16+10]; + out0[0x10* 6] = bufs[10]; + out0[0x10* 5] = bufs[16+10] + bufs[16+6]; + out0[0x10* 4] = bufs[6]; + out0[0x10* 3] = bufs[16+6] + bufs[16+14]; + out0[0x10* 2] = bufs[14]; + out0[0x10* 1] = bufs[16+14] + bufs[16+1]; + out0[0x10* 0] = bufs[1]; + + out1[0x10* 0] = bufs[1]; + out1[0x10* 1] = bufs[16+1] + bufs[16+9]; + out1[0x10* 2] = bufs[9]; + out1[0x10* 3] = bufs[16+9] + bufs[16+5]; + out1[0x10* 4] = bufs[5]; + out1[0x10* 5] = bufs[16+5] + bufs[16+13]; + out1[0x10* 6] = bufs[13]; + out1[0x10* 7] = bufs[16+13] + bufs[16+3]; + out1[0x10* 8] = bufs[3]; + out1[0x10* 9] = bufs[16+3] + bufs[16+11]; + out1[0x10*10] = bufs[11]; + out1[0x10*11] = bufs[16+11] + bufs[16+7]; + out1[0x10*12] = bufs[7]; + out1[0x10*13] = bufs[16+7] + bufs[16+15]; + out1[0x10*14] = bufs[15]; + out1[0x10*15] = bufs[16+15]; + +} + + diff -r f2985e08589c -r 7e08477b0fc1 decoders/libmpg123/dct64_i386.c --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/decoders/libmpg123/dct64_i386.c Fri Jan 30 02:44:47 2009 -0500 @@ -0,0 +1,336 @@ +/* + dct64_i386.c: DCT64, a C variant for i386 + + copyright ?-2006 by the mpg123 project - free software under the terms of the LGPL 2.1 + see COPYING and AUTHORS files in distribution or http://mpg123.org + initially written by Michael Hipp +*/ + +/* + * Discrete Cosine Tansform (DCT) for subband synthesis + * optimized for machines with no auto-increment. + * The performance is highly compiler dependend. Maybe + * the dct64.c version for 'normal' processor may be faster + * even for Intel processors. + */ + +#include "mpg123lib_intern.h" + +static void dct64_1(real *out0,real *out1,real *b1,real *b2,real *samples) +{ + { + register real *costab = pnts[0]; + + b1[0x00] = samples[0x00] + samples[0x1F]; + b1[0x01] = samples[0x01] + samples[0x1E]; + b1[0x1F] = (samples[0x00] - samples[0x1F]) * costab[0x0]; + b1[0x1E] = (samples[0x01] - samples[0x1E]) * costab[0x1]; + + b1[0x02] = samples[0x02] + samples[0x1D]; + b1[0x03] = samples[0x03] + samples[0x1C]; + b1[0x1D] = (samples[0x02] - samples[0x1D]) * costab[0x2]; + b1[0x1C] = (samples[0x03] - samples[0x1C]) * costab[0x3]; + + b1[0x04] = samples[0x04] + samples[0x1B]; + b1[0x05] = samples[0x05] + samples[0x1A]; + b1[0x1B] = (samples[0x04] - samples[0x1B]) * costab[0x4]; + b1[0x1A] = (samples[0x05] - samples[0x1A]) * costab[0x5]; + + b1[0x06] = samples[0x06] + samples[0x19]; + b1[0x07] = samples[0x07] + samples[0x18]; + b1[0x19] = (samples[0x06] - samples[0x19]) * costab[0x6]; + b1[0x18] = (samples[0x07] - samples[0x18]) * costab[0x7]; + + b1[0x08] = samples[0x08] + samples[0x17]; + b1[0x09] = samples[0x09] + samples[0x16]; + b1[0x17] = (samples[0x08] - samples[0x17]) * costab[0x8]; + b1[0x16] = (samples[0x09] - samples[0x16]) * costab[0x9]; + + b1[0x0A] = samples[0x0A] + samples[0x15]; + b1[0x0B] = samples[0x0B] + samples[0x14]; + b1[0x15] = (samples[0x0A] - samples[0x15]) * costab[0xA]; + b1[0x14] = (samples[0x0B] - samples[0x14]) * costab[0xB]; + + b1[0x0C] = samples[0x0C] + samples[0x13]; + b1[0x0D] = samples[0x0D] + samples[0x12]; + b1[0x13] = (samples[0x0C] - samples[0x13]) * costab[0xC]; + b1[0x12] = (samples[0x0D] - samples[0x12]) * costab[0xD]; + + b1[0x0E] = samples[0x0E] + samples[0x11]; + b1[0x0F] = samples[0x0F] + samples[0x10]; + b1[0x11] = (samples[0x0E] - samples[0x11]) * costab[0xE]; + b1[0x10] = (samples[0x0F] - samples[0x10]) * costab[0xF]; + + } + + + { + register real *costab = pnts[1]; + + b2[0x00] = b1[0x00] + b1[0x0F]; + b2[0x01] = b1[0x01] + b1[0x0E]; + b2[0x0F] = (b1[0x00] - b1[0x0F]) * costab[0]; + b2[0x0E] = (b1[0x01] - b1[0x0E]) * costab[1]; + + b2[0x02] = b1[0x02] + b1[0x0D]; + b2[0x03] = b1[0x03] + b1[0x0C]; + b2[0x0D] = (b1[0x02] - b1[0x0D]) * costab[2]; + b2[0x0C] = (b1[0x03] - b1[0x0C]) * costab[3]; + + b2[0x04] = b1[0x04] + b1[0x0B]; + b2[0x05] = b1[0x05] + b1[0x0A]; + b2[0x0B] = (b1[0x04] - b1[0x0B]) * costab[4]; + b2[0x0A] = (b1[0x05] - b1[0x0A]) * costab[5]; + + b2[0x06] = b1[0x06] + b1[0x09]; + b2[0x07] = b1[0x07] + b1[0x08]; + b2[0x09] = (b1[0x06] - b1[0x09]) * costab[6]; + b2[0x08] = (b1[0x07] - b1[0x08]) * costab[7]; + + /* */ + + b2[0x10] = b1[0x10] + b1[0x1F]; + b2[0x11] = b1[0x11] + b1[0x1E]; + b2[0x1F] = (b1[0x1F] - b1[0x10]) * costab[0]; + b2[0x1E] = (b1[0x1E] - b1[0x11]) * costab[1]; + + b2[0x12] = b1[0x12] + b1[0x1D]; + b2[0x13] = b1[0x13] + b1[0x1C]; + b2[0x1D] = (b1[0x1D] - b1[0x12]) * costab[2]; + b2[0x1C] = (b1[0x1C] - b1[0x13]) * costab[3]; + + b2[0x14] = b1[0x14] + b1[0x1B]; + b2[0x15] = b1[0x15] + b1[0x1A]; + b2[0x1B] = (b1[0x1B] - b1[0x14]) * costab[4]; + b2[0x1A] = (b1[0x1A] - b1[0x15]) * costab[5]; + + b2[0x16] = b1[0x16] + b1[0x19]; + b2[0x17] = b1[0x17] + b1[0x18]; + b2[0x19] = (b1[0x19] - b1[0x16]) * costab[6]; + b2[0x18] = (b1[0x18] - b1[0x17]) * costab[7]; + } + + { + register real *costab = pnts[2]; + + b1[0x00] = b2[0x00] + b2[0x07]; + b1[0x07] = (b2[0x00] - b2[0x07]) * costab[0]; + b1[0x01] = b2[0x01] + b2[0x06]; + b1[0x06] = (b2[0x01] - b2[0x06]) * costab[1]; + b1[0x02] = b2[0x02] + b2[0x05]; + b1[0x05] = (b2[0x02] - b2[0x05]) * costab[2]; + b1[0x03] = b2[0x03] + b2[0x04]; + b1[0x04] = (b2[0x03] - b2[0x04]) * costab[3]; + + b1[0x08] = b2[0x08] + b2[0x0F]; + b1[0x0F] = (b2[0x0F] - b2[0x08]) * costab[0]; + b1[0x09] = b2[0x09] + b2[0x0E]; + b1[0x0E] = (b2[0x0E] - b2[0x09]) * costab[1]; + b1[0x0A] = b2[0x0A] + b2[0x0D]; + b1[0x0D] = (b2[0x0D] - b2[0x0A]) * costab[2]; + b1[0x0B] = b2[0x0B] + b2[0x0C]; + b1[0x0C] = (b2[0x0C] - b2[0x0B]) * costab[3]; + + b1[0x10] = b2[0x10] + b2[0x17]; + b1[0x17] = (b2[0x10] - b2[0x17]) * costab[0]; + b1[0x11] = b2[0x11] + b2[0x16]; + b1[0x16] = (b2[0x11] - b2[0x16]) * costab[1]; + b1[0x12] = b2[0x12] + b2[0x15]; + b1[0x15] = (b2[0x12] - b2[0x15]) * costab[2]; + b1[0x13] = b2[0x13] + b2[0x14]; + b1[0x14] = (b2[0x13] - b2[0x14]) * costab[3]; + + b1[0x18] = b2[0x18] + b2[0x1F]; + b1[0x1F] = (b2[0x1F] - b2[0x18]) * costab[0]; + b1[0x19] = b2[0x19] + b2[0x1E]; + b1[0x1E] = (b2[0x1E] - b2[0x19]) * costab[1]; + b1[0x1A] = b2[0x1A] + b2[0x1D]; + b1[0x1D] = (b2[0x1D] - b2[0x1A]) * costab[2]; + b1[0x1B] = b2[0x1B] + b2[0x1C]; + b1[0x1C] = (b2[0x1C] - b2[0x1B]) * costab[3]; + } + + { + register real const cos0 = pnts[3][0]; + register real const cos1 = pnts[3][1]; + + b2[0x00] = b1[0x00] + b1[0x03]; + b2[0x03] = (b1[0x00] - b1[0x03]) * cos0; + b2[0x01] = b1[0x01] + b1[0x02]; + b2[0x02] = (b1[0x01] - b1[0x02]) * cos1; + + b2[0x04] = b1[0x04] + b1[0x07]; + b2[0x07] = (b1[0x07] - b1[0x04]) * cos0; + b2[0x05] = b1[0x05] + b1[0x06]; + b2[0x06] = (b1[0x06] - b1[0x05]) * cos1; + + b2[0x08] = b1[0x08] + b1[0x0B]; + b2[0x0B] = (b1[0x08] - b1[0x0B]) * cos0; + b2[0x09] = b1[0x09] + b1[0x0A]; + b2[0x0A] = (b1[0x09] - b1[0x0A]) * cos1; + + b2[0x0C] = b1[0x0C] + b1[0x0F]; + b2[0x0F] = (b1[0x0F] - b1[0x0C]) * cos0; + b2[0x0D] = b1[0x0D] + b1[0x0E]; + b2[0x0E] = (b1[0x0E] - b1[0x0D]) * cos1; + + b2[0x10] = b1[0x10] + b1[0x13]; + b2[0x13] = (b1[0x10] - b1[0x13]) * cos0; + b2[0x11] = b1[0x11] + b1[0x12]; + b2[0x12] = (b1[0x11] - b1[0x12]) * cos1; + + b2[0x14] = b1[0x14] + b1[0x17]; + b2[0x17] = (b1[0x17] - b1[0x14]) * cos0; + b2[0x15] = b1[0x15] + b1[0x16]; + b2[0x16] = (b1[0x16] - b1[0x15]) * cos1; + + b2[0x18] = b1[0x18] + b1[0x1B]; + b2[0x1B] = (b1[0x18] - b1[0x1B]) * cos0; + b2[0x19] = b1[0x19] + b1[0x1A]; + b2[0x1A] = (b1[0x19] - b1[0x1A]) * cos1; + + b2[0x1C] = b1[0x1C] + b1[0x1F]; + b2[0x1F] = (b1[0x1F] - b1[0x1C]) * cos0; + b2[0x1D] = b1[0x1D] + b1[0x1E]; + b2[0x1E] = (b1[0x1E] - b1[0x1D]) * cos1; + } + + { + register real const cos0 = pnts[4][0]; + + b1[0x00] = b2[0x00] + b2[0x01]; + b1[0x01] = (b2[0x00] - b2[0x01]) * cos0; + b1[0x02] = b2[0x02] + b2[0x03]; + b1[0x03] = (b2[0x03] - b2[0x02]) * cos0; + b1[0x02] += b1[0x03]; + + b1[0x04] = b2[0x04] + b2[0x05]; + b1[0x05] = (b2[0x04] - b2[0x05]) * cos0; + b1[0x06] = b2[0x06] + b2[0x07]; + b1[0x07] = (b2[0x07] - b2[0x06]) * cos0; + b1[0x06] += b1[0x07]; + b1[0x04] += b1[0x06]; + b1[0x06] += b1[0x05]; + b1[0x05] += b1[0x07]; + + b1[0x08] = b2[0x08] + b2[0x09]; + b1[0x09] = (b2[0x08] - b2[0x09]) * cos0; + b1[0x0A] = b2[0x0A] + b2[0x0B]; + b1[0x0B] = (b2[0x0B] - b2[0x0A]) * cos0; + b1[0x0A] += b1[0x0B]; + + b1[0x0C] = b2[0x0C] + b2[0x0D]; + b1[0x0D] = (b2[0x0C] - b2[0x0D]) * cos0; + b1[0x0E] = b2[0x0E] + b2[0x0F]; + b1[0x0F] = (b2[0x0F] - b2[0x0E]) * cos0; + b1[0x0E] += b1[0x0F]; + b1[0x0C] += b1[0x0E]; + b1[0x0E] += b1[0x0D]; + b1[0x0D] += b1[0x0F]; + + b1[0x10] = b2[0x10] + b2[0x11]; + b1[0x11] = (b2[0x10] - b2[0x11]) * cos0; + b1[0x12] = b2[0x12] + b2[0x13]; + b1[0x13] = (b2[0x13] - b2[0x12]) * cos0; + b1[0x12] += b1[0x13]; + + b1[0x14] = b2[0x14] + b2[0x15]; + b1[0x15] = (b2[0x14] - b2[0x15]) * cos0; + b1[0x16] = b2[0x16] + b2[0x17]; + b1[0x17] = (b2[0x17] - b2[0x16]) * cos0; + b1[0x16] += b1[0x17]; + b1[0x14] += b1[0x16]; + b1[0x16] += b1[0x15]; + b1[0x15] += b1[0x17]; + + b1[0x18] = b2[0x18] + b2[0x19]; + b1[0x19] = (b2[0x18] - b2[0x19]) * cos0; + b1[0x1A] = b2[0x1A] + b2[0x1B]; + b1[0x1B] = (b2[0x1B] - b2[0x1A]) * cos0; + b1[0x1A] += b1[0x1B]; + + b1[0x1C] = b2[0x1C] + b2[0x1D]; + b1[0x1D] = (b2[0x1C] - b2[0x1D]) * cos0; + b1[0x1E] = b2[0x1E] + b2[0x1F]; + b1[0x1F] = (b2[0x1F] - b2[0x1E]) * cos0; + b1[0x1E] += b1[0x1F]; + b1[0x1C] += b1[0x1E]; + b1[0x1E] += b1[0x1D]; + b1[0x1D] += b1[0x1F]; + } + + out0[0x10*16] = b1[0x00]; + out0[0x10*12] = b1[0x04]; + out0[0x10* 8] = b1[0x02]; + out0[0x10* 4] = b1[0x06]; + out0[0x10* 0] = b1[0x01]; + out1[0x10* 0] = b1[0x01]; + out1[0x10* 4] = b1[0x05]; + out1[0x10* 8] = b1[0x03]; + out1[0x10*12] = b1[0x07]; + +#if 1 + out0[0x10*14] = b1[0x08] + b1[0x0C]; + out0[0x10*10] = b1[0x0C] + b1[0x0a]; + out0[0x10* 6] = b1[0x0A] + b1[0x0E]; + out0[0x10* 2] = b1[0x0E] + b1[0x09]; + out1[0x10* 2] = b1[0x09] + b1[0x0D]; + out1[0x10* 6] = b1[0x0D] + b1[0x0B]; + out1[0x10*10] = b1[0x0B] + b1[0x0F]; + out1[0x10*14] = b1[0x0F]; +#else + b1[0x08] += b1[0x0C]; + out0[0x10*14] = b1[0x08]; + b1[0x0C] += b1[0x0a]; + out0[0x10*10] = b1[0x0C]; + b1[0x0A] += b1[0x0E]; + out0[0x10* 6] = b1[0x0A]; + b1[0x0E] += b1[0x09]; + out0[0x10* 2] = b1[0x0E]; + b1[0x09] += b1[0x0D]; + out1[0x10* 2] = b1[0x09]; + b1[0x0D] += b1[0x0B]; + out1[0x10* 6] = b1[0x0D]; + b1[0x0B] += b1[0x0F]; + out1[0x10*10] = b1[0x0B]; + out1[0x10*14] = b1[0x0F]; +#endif + + { + real tmp; + tmp = b1[0x18] + b1[0x1C]; + out0[0x10*15] = tmp + b1[0x10]; + out0[0x10*13] = tmp + b1[0x14]; + tmp = b1[0x1C] + b1[0x1A]; + out0[0x10*11] = tmp + b1[0x14]; + out0[0x10* 9] = tmp + b1[0x12]; + tmp = b1[0x1A] + b1[0x1E]; + out0[0x10* 7] = tmp + b1[0x12]; + out0[0x10* 5] = tmp + b1[0x16]; + tmp = b1[0x1E] + b1[0x19]; + out0[0x10* 3] = tmp + b1[0x16]; + out0[0x10* 1] = tmp + b1[0x11]; + tmp = b1[0x19] + b1[0x1D]; + out1[0x10* 1] = tmp + b1[0x11]; + out1[0x10* 3] = tmp + b1[0x15]; + tmp = b1[0x1D] + b1[0x1B]; + out1[0x10* 5] = tmp + b1[0x15]; + out1[0x10* 7] = tmp + b1[0x13]; + tmp = b1[0x1B] + b1[0x1F]; + out1[0x10* 9] = tmp + b1[0x13]; + out1[0x10*11] = tmp + b1[0x17]; + out1[0x10*13] = b1[0x17] + b1[0x1F]; + out1[0x10*15] = b1[0x1F]; + } +} + +/* + * the call via dct64 is a trick to force GCC to use + * (new) registers for the b1,b2 pointer to the bufs[xx] field + */ +void dct64_i386(real *a,real *b,real *c) +{ + real bufs[0x40]; + dct64_1(a,b,bufs,bufs+0x20,c); +} + diff -r f2985e08589c -r 7e08477b0fc1 decoders/libmpg123/dct64_i486.c --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/decoders/libmpg123/dct64_i486.c Fri Jan 30 02:44:47 2009 -0500 @@ -0,0 +1,342 @@ +/* + dct64_i486.c: DCT64, a plain C variant for i486 + + copyright 1998-2006 by the mpg123 project - free software under the terms of the LGPL 2.1 + see COPYING and AUTHORS files in distribution or http://mpg123.org + initially written by Fabrice Bellard +*/ + +/* Discrete Cosine Tansform (DCT) for subband synthesis. + * + * This code is optimized for 80486. It should be compiled with gcc + * 2.7.2 or higher. + * + * Note: This code does not give the necessary accuracy. Moreover, no + * overflow test are done. + * + * (c) 1998 Fabrice Bellard. + */ + +#include "mpg123lib_intern.h" + +#define COS_0_0 16403 +#define COS_0_1 16563 +#define COS_0_2 16890 +#define COS_0_3 17401 +#define COS_0_4 18124 +#define COS_0_5 19101 +#define COS_0_6 20398 +#define COS_0_7 22112 +#define COS_0_8 24396 +#define COS_0_9 27503 +#define COS_0_10 31869 +#define COS_0_11 38320 +#define COS_0_12 48633 +#define COS_0_13 67429 +#define COS_0_14 111660 +#define COS_0_15 333906 +#define COS_1_0 16463 +#define COS_1_1 17121 +#define COS_1_2 18577 +#define COS_1_3 21195 +#define COS_1_4 25826 +#define COS_1_5 34756 +#define COS_1_6 56441 +#define COS_1_7 167154 +#define COS_2_0 16704 +#define COS_2_1 19704 +#define COS_2_2 29490 +#define COS_2_3 83981 +#define COS_3_0 17733 +#define COS_3_1 42813 +#define COS_4_0 23170 + +#define SETOUT(out,n,expr) out[FIR_BUFFER_SIZE*(n)]=(expr) +#define MULL(a,b) (((long long)(a)*(long long)(b)) >> 15) +#define MUL(a,b) \ +(\ + ((!(b & 0x3F)) ? (((a)*(b >> 6)) >> 9) :\ + ((!(b & 0x1F)) ? (((a)*(b >> 5)) >> 10) :\ + ((!(b & 0x0F)) ? (((a)*(b >> 4)) >> 11) :\ + ((!(b & 0x07)) ? (((a)*(b >> 3)) >> 12) :\ + ((!(b & 0x03)) ? (((a)*(b >> 2)) >> 13) :\ + ((!(b & 0x01)) ? (((a)*(b >> 1)) >> 14) :\ + (((a)*(b )) >> 15)))))))) + + +void dct64_1_486(int *out0,int *out1,int *b1,int *b2) +{ + b1[0x00] = b2[0x00] + b2[0x1F]; + b1[0x1F] = MUL((b2[0x00] - b2[0x1F]),COS_0_0); + + b1[0x01] = b2[0x01] + b2[0x1E]; + b1[0x1E] = MUL((b2[0x01] - b2[0x1E]),COS_0_1); + + b1[0x02] = b2[0x02] + b2[0x1D]; + b1[0x1D] = MUL((b2[0x02] - b2[0x1D]),COS_0_2); + + b1[0x03] = b2[0x03] + b2[0x1C]; + b1[0x1C] = MUL((b2[0x03] - b2[0x1C]),COS_0_3); + + b1[0x04] = b2[0x04] + b2[0x1B]; + b1[0x1B] = MUL((b2[0x04] - b2[0x1B]),COS_0_4); + + b1[0x05] = b2[0x05] + b2[0x1A]; + b1[0x1A] = MUL((b2[0x05] - b2[0x1A]),COS_0_5); + + b1[0x06] = b2[0x06] + b2[0x19]; + b1[0x19] = MUL((b2[0x06] - b2[0x19]),COS_0_6); + + b1[0x07] = b2[0x07] + b2[0x18]; + b1[0x18] = MUL((b2[0x07] - b2[0x18]),COS_0_7); + + b1[0x08] = b2[0x08] + b2[0x17]; + b1[0x17] = MUL((b2[0x08] - b2[0x17]),COS_0_8); + + b1[0x09] = b2[0x09] + b2[0x16]; + b1[0x16] = MUL((b2[0x09] - b2[0x16]),COS_0_9); + + b1[0x0A] = b2[0x0A] + b2[0x15]; + b1[0x15] = MUL((b2[0x0A] - b2[0x15]),COS_0_10); + + b1[0x0B] = b2[0x0B] + b2[0x14]; + b1[0x14] = MUL((b2[0x0B] - b2[0x14]),COS_0_11); + + b1[0x0C] = b2[0x0C] + b2[0x13]; + b1[0x13] = MUL((b2[0x0C] - b2[0x13]),COS_0_12); + + b1[0x0D] = b2[0x0D] + b2[0x12]; + b1[0x12] = MULL((b2[0x0D] - b2[0x12]),COS_0_13); + + b1[0x0E] = b2[0x0E] + b2[0x11]; + b1[0x11] = MULL((b2[0x0E] - b2[0x11]),COS_0_14); + + b1[0x0F] = b2[0x0F] + b2[0x10]; + b1[0x10] = MULL((b2[0x0F] - b2[0x10]),COS_0_15); + + + b2[0x00] = b1[0x00] + b1[0x0F]; + b2[0x0F] = MUL((b1[0x00] - b1[0x0F]),COS_1_0); + b2[0x01] = b1[0x01] + b1[0x0E]; + b2[0x0E] = MUL((b1[0x01] - b1[0x0E]),COS_1_1); + b2[0x02] = b1[0x02] + b1[0x0D]; + b2[0x0D] = MUL((b1[0x02] - b1[0x0D]),COS_1_2); + b2[0x03] = b1[0x03] + b1[0x0C]; + b2[0x0C] = MUL((b1[0x03] - b1[0x0C]),COS_1_3); + b2[0x04] = b1[0x04] + b1[0x0B]; + b2[0x0B] = MUL((b1[0x04] - b1[0x0B]),COS_1_4); + b2[0x05] = b1[0x05] + b1[0x0A]; + b2[0x0A] = MUL((b1[0x05] - b1[0x0A]),COS_1_5); + b2[0x06] = b1[0x06] + b1[0x09]; + b2[0x09] = MUL((b1[0x06] - b1[0x09]),COS_1_6); + b2[0x07] = b1[0x07] + b1[0x08]; + b2[0x08] = MULL((b1[0x07] - b1[0x08]),COS_1_7); + + b2[0x10] = b1[0x10] + b1[0x1F]; + b2[0x1F] = MUL((b1[0x1F] - b1[0x10]),COS_1_0); + b2[0x11] = b1[0x11] + b1[0x1E]; + b2[0x1E] = MUL((b1[0x1E] - b1[0x11]),COS_1_1); + b2[0x12] = b1[0x12] + b1[0x1D]; + b2[0x1D] = MUL((b1[0x1D] - b1[0x12]),COS_1_2); + b2[0x13] = b1[0x13] + b1[0x1C]; + b2[0x1C] = MUL((b1[0x1C] - b1[0x13]),COS_1_3); + b2[0x14] = b1[0x14] + b1[0x1B]; + b2[0x1B] = MUL((b1[0x1B] - b1[0x14]),COS_1_4); + b2[0x15] = b1[0x15] + b1[0x1A]; + b2[0x1A] = MUL((b1[0x1A] - b1[0x15]),COS_1_5); + b2[0x16] = b1[0x16] + b1[0x19]; + b2[0x19] = MUL((b1[0x19] - b1[0x16]),COS_1_6); + b2[0x17] = b1[0x17] + b1[0x18]; + b2[0x18] = MULL((b1[0x18] - b1[0x17]),COS_1_7); + + + b1[0x00] = b2[0x00] + b2[0x07]; + b1[0x07] = MUL((b2[0x00] - b2[0x07]),COS_2_0); + b1[0x01] = b2[0x01] + b2[0x06]; + b1[0x06] = MUL((b2[0x01] - b2[0x06]),COS_2_1); + b1[0x02] = b2[0x02] + b2[0x05]; + b1[0x05] = MUL((b2[0x02] - b2[0x05]),COS_2_2); + b1[0x03] = b2[0x03] + b2[0x04]; + b1[0x04] = MULL((b2[0x03] - b2[0x04]),COS_2_3); + + b1[0x08] = b2[0x08] + b2[0x0F]; + b1[0x0F] = MUL((b2[0x0F] - b2[0x08]),COS_2_0); + b1[0x09] = b2[0x09] + b2[0x0E]; + b1[0x0E] = MUL((b2[0x0E] - b2[0x09]),COS_2_1); + b1[0x0A] = b2[0x0A] + b2[0x0D]; + b1[0x0D] = MUL((b2[0x0D] - b2[0x0A]),COS_2_2); + b1[0x0B] = b2[0x0B] + b2[0x0C]; + b1[0x0C] = MULL((b2[0x0C] - b2[0x0B]),COS_2_3); + + b1[0x10] = b2[0x10] + b2[0x17]; + b1[0x17] = MUL((b2[0x10] - b2[0x17]),COS_2_0); + b1[0x11] = b2[0x11] + b2[0x16]; + b1[0x16] = MUL((b2[0x11] - b2[0x16]),COS_2_1); + b1[0x12] = b2[0x12] + b2[0x15]; + b1[0x15] = MUL((b2[0x12] - b2[0x15]),COS_2_2); + b1[0x13] = b2[0x13] + b2[0x14]; + b1[0x14] = MULL((b2[0x13] - b2[0x14]),COS_2_3); + + b1[0x18] = b2[0x18] + b2[0x1F]; + b1[0x1F] = MUL((b2[0x1F] - b2[0x18]),COS_2_0); + b1[0x19] = b2[0x19] + b2[0x1E]; + b1[0x1E] = MUL((b2[0x1E] - b2[0x19]),COS_2_1); + b1[0x1A] = b2[0x1A] + b2[0x1D]; + b1[0x1D] = MUL((b2[0x1D] - b2[0x1A]),COS_2_2); + b1[0x1B] = b2[0x1B] + b2[0x1C]; + b1[0x1C] = MULL((b2[0x1C] - b2[0x1B]),COS_2_3); + + + b2[0x00] = b1[0x00] + b1[0x03]; + b2[0x03] = MUL((b1[0x00] - b1[0x03]),COS_3_0); + b2[0x01] = b1[0x01] + b1[0x02]; + b2[0x02] = MUL((b1[0x01] - b1[0x02]),COS_3_1); + + b2[0x04] = b1[0x04] + b1[0x07]; + b2[0x07] = MUL((b1[0x07] - b1[0x04]),COS_3_0); + b2[0x05] = b1[0x05] + b1[0x06]; + b2[0x06] = MUL((b1[0x06] - b1[0x05]),COS_3_1); + + b2[0x08] = b1[0x08] + b1[0x0B]; + b2[0x0B] = MUL((b1[0x08] - b1[0x0B]),COS_3_0); + b2[0x09] = b1[0x09] + b1[0x0A]; + b2[0x0A] = MUL((b1[0x09] - b1[0x0A]),COS_3_1); + + b2[0x0C] = b1[0x0C] + b1[0x0F]; + b2[0x0F] = MUL((b1[0x0F] - b1[0x0C]),COS_3_0); + b2[0x0D] = b1[0x0D] + b1[0x0E]; + b2[0x0E] = MUL((b1[0x0E] - b1[0x0D]),COS_3_1); + + b2[0x10] = b1[0x10] + b1[0x13]; + b2[0x13] = MUL((b1[0x10] - b1[0x13]),COS_3_0); + b2[0x11] = b1[0x11] + b1[0x12]; + b2[0x12] = MUL((b1[0x11] - b1[0x12]),COS_3_1); + + b2[0x14] = b1[0x14] + b1[0x17]; + b2[0x17] = MUL((b1[0x17] - b1[0x14]),COS_3_0); + b2[0x15] = b1[0x15] + b1[0x16]; + b2[0x16] = MUL((b1[0x16] - b1[0x15]),COS_3_1); + + b2[0x18] = b1[0x18] + b1[0x1B]; + b2[0x1B] = MUL((b1[0x18] - b1[0x1B]),COS_3_0); + b2[0x19] = b1[0x19] + b1[0x1A]; + b2[0x1A] = MUL((b1[0x19] - b1[0x1A]),COS_3_1); + + b2[0x1C] = b1[0x1C] + b1[0x1F]; + b2[0x1F] = MUL((b1[0x1F] - b1[0x1C]),COS_3_0); + b2[0x1D] = b1[0x1D] + b1[0x1E]; + b2[0x1E] = MUL((b1[0x1E] - b1[0x1D]),COS_3_1); + + { + int i; + for(i=0;i<32;i+=4) { + b1[i+0x00] = b2[i+0x00] + b2[i+0x01]; + b1[i+0x01] = MUL((b2[i+0x00] - b2[i+0x01]),COS_4_0); + b1[i+0x02] = b2[i+0x02] + b2[i+0x03]; + b1[i+0x03] = MUL((b2[i+0x03] - b2[i+0x02]),COS_4_0); + } + } + + b1[0x02] += b1[0x03]; + b1[0x06] += b1[0x07]; + b1[0x04] += b1[0x06]; + b1[0x06] += b1[0x05]; + b1[0x05] += b1[0x07]; + + b1[0x0A] += b1[0x0B]; + b1[0x0E] += b1[0x0F]; + b1[0x0C] += b1[0x0E]; + b1[0x0E] += b1[0x0D]; + b1[0x0D] += b1[0x0F]; + + b1[0x12] += b1[0x13]; + b1[0x16] += b1[0x17]; + b1[0x14] += b1[0x16]; + b1[0x16] += b1[0x15]; + b1[0x15] += b1[0x17]; + + b1[0x1A] += b1[0x1B]; + b1[0x1E] += b1[0x1F]; + b1[0x1C] += b1[0x1E]; + b1[0x1E] += b1[0x1D]; + b1[0x1D] += b1[0x1F]; + + SETOUT(out0,16,b1[0x00]); + SETOUT(out0,12,b1[0x04]); + SETOUT(out0, 8,b1[0x02]); + SETOUT(out0, 4,b1[0x06]); + SETOUT(out0, 0,b1[0x01]); + SETOUT(out1, 0,b1[0x01]); + SETOUT(out1, 4,b1[0x05]); + SETOUT(out1, 8,b1[0x03]); + SETOUT(out1,12,b1[0x07]); + + b1[0x08] += b1[0x0C]; + SETOUT(out0,14,b1[0x08]); + b1[0x0C] += b1[0x0a]; + SETOUT(out0,10,b1[0x0C]); + b1[0x0A] += b1[0x0E]; + SETOUT(out0, 6,b1[0x0A]); + b1[0x0E] += b1[0x09]; + SETOUT(out0, 2,b1[0x0E]); + b1[0x09] += b1[0x0D]; + SETOUT(out1, 2,b1[0x09]); + b1[0x0D] += b1[0x0B]; + SETOUT(out1, 6,b1[0x0D]); + b1[0x0B] += b1[0x0F]; + SETOUT(out1,10,b1[0x0B]); + SETOUT(out1,14,b1[0x0F]); + + b1[0x18] += b1[0x1C]; + SETOUT(out0,15,b1[0x10] + b1[0x18]); + SETOUT(out0,13,b1[0x18] + b1[0x14]); + b1[0x1C] += b1[0x1a]; + SETOUT(out0,11,b1[0x14] + b1[0x1C]); + SETOUT(out0, 9,b1[0x1C] + b1[0x12]); + b1[0x1A] += b1[0x1E]; + SETOUT(out0, 7,b1[0x12] + b1[0x1A]); + SETOUT(out0, 5,b1[0x1A] + b1[0x16]); + b1[0x1E] += b1[0x19]; + SETOUT(out0, 3,b1[0x16] + b1[0x1E]); + SETOUT(out0, 1,b1[0x1E] + b1[0x11]); + b1[0x19] += b1[0x1D]; + SETOUT(out1, 1,b1[0x11] + b1[0x19]); + SETOUT(out1, 3,b1[0x19] + b1[0x15]); + b1[0x1D] += b1[0x1B]; + SETOUT(out1, 5,b1[0x15] + b1[0x1D]); + SETOUT(out1, 7,b1[0x1D] + b1[0x13]); + b1[0x1B] += b1[0x1F]; + SETOUT(out1, 9,b1[0x13] + b1[0x1B]); + SETOUT(out1,11,b1[0x1B] + b1[0x17]); + SETOUT(out1,13,b1[0x17] + b1[0x1F]); + SETOUT(out1,15,b1[0x1F]); +} + + +/* + * the call via dct64 is a trick to force GCC to use + * (new) registers for the b1,b2 pointer to the bufs[xx] field + */ +void dct64_i486(int *a,int *b,real *samples) +{ + int bufs[64]; + int i; + +#ifdef REAL_IS_FIXED +#define TOINT(a) ((a) * 32768 / (int)REAL_FACTOR) + + for(i=0;i<32;i++) { + bufs[i]=TOINT(samples[i]); + } +#else + int *p = bufs; + register double const scale = ((65536.0 * 32) + 1) * 65536.0; + + for(i=0;i<32;i++) { + *((double *) (p++)) = scale + *samples++; /* beware on bufs overrun: 8B store from x87 */ + } +#endif + + dct64_1_486(a,b,bufs+32,bufs); +} + diff -r f2985e08589c -r 7e08477b0fc1 decoders/libmpg123/dct64_mmx.S --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/decoders/libmpg123/dct64_mmx.S Fri Jan 30 02:44:47 2009 -0500 @@ -0,0 +1,815 @@ +/* + dct64_mmx.s: MMX optimized DCT64 + + copyright ?-2006 by the mpg123 project - free software under the terms of the LGPL 2.1 + see COPYING and AUTHORS files in distribution or http://mpg123.org + initially written by the mysterious higway (apparently) +*/ + +#include "mangle.h" + +.text + + ALIGN32 +.globl ASM_NAME(dct64_mmx) +ASM_NAME(dct64_mmx): + + xorl %ecx,%ecx +.globl ASM_NAME(dct64_MMX) +ASM_NAME(dct64_MMX): + pushl %ebx + pushl %esi + pushl %edi + subl $256,%esp + movl 280(%esp),%eax + flds (%eax) + leal 128(%esp),%edx + fadds 124(%eax) + movl 272(%esp),%esi + fstps (%edx) + movl 276(%esp),%edi + flds 4(%eax) + movl $ASM_NAME(costab_mmxsse),%ebx + fadds 120(%eax) + orl %ecx,%ecx + fstps 4(%edx) + flds (%eax) + movl %esp,%ecx + fsubs 124(%eax) + fmuls (%ebx) + fstps 124(%edx) + flds 4(%eax) + fsubs 120(%eax) + fmuls 4(%ebx) + fstps 120(%edx) + flds 8(%eax) + fadds 116(%eax) + fstps 8(%edx) + flds 12(%eax) + fadds 112(%eax) + fstps 12(%edx) + flds 8(%eax) + fsubs 116(%eax) + fmuls 8(%ebx) + fstps 116(%edx) + flds 12(%eax) + fsubs 112(%eax) + fmuls 12(%ebx) + fstps 112(%edx) + flds 16(%eax) + fadds 108(%eax) + fstps 16(%edx) + flds 20(%eax) + fadds 104(%eax) + fstps 20(%edx) + flds 16(%eax) + fsubs 108(%eax) + fmuls 16(%ebx) + fstps 108(%edx) + flds 20(%eax) + fsubs 104(%eax) + fmuls 20(%ebx) + fstps 104(%edx) + flds 24(%eax) + fadds 100(%eax) + fstps 24(%edx) + flds 28(%eax) + fadds 96(%eax) + fstps 28(%edx) + flds 24(%eax) + fsubs 100(%eax) + fmuls 24(%ebx) + fstps 100(%edx) + flds 28(%eax) + fsubs 96(%eax) + fmuls 28(%ebx) + fstps 96(%edx) + flds 32(%eax) + fadds 92(%eax) + fstps 32(%edx) + flds 36(%eax) + fadds 88(%eax) + fstps 36(%edx) + flds 32(%eax) + fsubs 92(%eax) + fmuls 32(%ebx) + fstps 92(%edx) + flds 36(%eax) + fsubs 88(%eax) + fmuls 36(%ebx) + fstps 88(%edx) + flds 40(%eax) + fadds 84(%eax) + fstps 40(%edx) + flds 44(%eax) + fadds 80(%eax) + fstps 44(%edx) + flds 40(%eax) + fsubs 84(%eax) + fmuls 40(%ebx) + fstps 84(%edx) + flds 44(%eax) + fsubs 80(%eax) + fmuls 44(%ebx) + fstps 80(%edx) + flds 48(%eax) + fadds 76(%eax) + fstps 48(%edx) + flds 52(%eax) + fadds 72(%eax) + fstps 52(%edx) + flds 48(%eax) + fsubs 76(%eax) + fmuls 48(%ebx) + fstps 76(%edx) + flds 52(%eax) + fsubs 72(%eax) + fmuls 52(%ebx) + fstps 72(%edx) + flds 56(%eax) + fadds 68(%eax) + fstps 56(%edx) + flds 60(%eax) + fadds 64(%eax) + fstps 60(%edx) + flds 56(%eax) + fsubs 68(%eax) + fmuls 56(%ebx) + fstps 68(%edx) + flds 60(%eax) + fsubs 64(%eax) + fmuls 60(%ebx) + fstps 64(%edx) + + flds (%edx) + fadds 60(%edx) + fstps (%ecx) + flds 4(%edx) + fadds 56(%edx) + fstps 4(%ecx) + flds (%edx) + fsubs 60(%edx) + fmuls 64(%ebx) + fstps 60(%ecx) + flds 4(%edx) + fsubs 56(%edx) + fmuls 68(%ebx) + fstps 56(%ecx) + flds 8(%edx) + fadds 52(%edx) + fstps 8(%ecx) + flds 12(%edx) + fadds 48(%edx) + fstps 12(%ecx) + flds 8(%edx) + fsubs 52(%edx) + fmuls 72(%ebx) + fstps 52(%ecx) + flds 12(%edx) + fsubs 48(%edx) + fmuls 76(%ebx) + fstps 48(%ecx) + flds 16(%edx) + fadds 44(%edx) + fstps 16(%ecx) + flds 20(%edx) + fadds 40(%edx) + fstps 20(%ecx) + flds 16(%edx) + fsubs 44(%edx) + fmuls 80(%ebx) + fstps 44(%ecx) + flds 20(%edx) + fsubs 40(%edx) + fmuls 84(%ebx) + fstps 40(%ecx) + flds 24(%edx) + fadds 36(%edx) + fstps 24(%ecx) + flds 28(%edx) + fadds 32(%edx) + fstps 28(%ecx) + flds 24(%edx) + fsubs 36(%edx) + fmuls 88(%ebx) + fstps 36(%ecx) + flds 28(%edx) + fsubs 32(%edx) + fmuls 92(%ebx) + fstps 32(%ecx) + + flds 64(%edx) + fadds 124(%edx) + fstps 64(%ecx) + flds 68(%edx) + fadds 120(%edx) + fstps 68(%ecx) + flds 124(%edx) + fsubs 64(%edx) + fmuls 64(%ebx) + fstps 124(%ecx) + flds 120(%edx) + fsubs 68(%edx) + fmuls 68(%ebx) + fstps 120(%ecx) + flds 72(%edx) + fadds 116(%edx) + fstps 72(%ecx) + flds 76(%edx) + fadds 112(%edx) + fstps 76(%ecx) + flds 116(%edx) + fsubs 72(%edx) + fmuls 72(%ebx) + fstps 116(%ecx) + flds 112(%edx) + fsubs 76(%edx) + fmuls 76(%ebx) + fstps 112(%ecx) + flds 80(%edx) + fadds 108(%edx) + fstps 80(%ecx) + flds 84(%edx) + fadds 104(%edx) + fstps 84(%ecx) + flds 108(%edx) + fsubs 80(%edx) + fmuls 80(%ebx) + fstps 108(%ecx) + flds 104(%edx) + fsubs 84(%edx) + fmuls 84(%ebx) + fstps 104(%ecx) + flds 88(%edx) + fadds 100(%edx) + fstps 88(%ecx) + flds 92(%edx) + fadds 96(%edx) + fstps 92(%ecx) + flds 100(%edx) + fsubs 88(%edx) + fmuls 88(%ebx) + fstps 100(%ecx) + flds 96(%edx) + fsubs 92(%edx) + fmuls 92(%ebx) + fstps 96(%ecx) + + flds (%ecx) + fadds 28(%ecx) + fstps (%edx) + flds (%ecx) + fsubs 28(%ecx) + fmuls 96(%ebx) + fstps 28(%edx) + flds 4(%ecx) + fadds 24(%ecx) + fstps 4(%edx) + flds 4(%ecx) + fsubs 24(%ecx) + fmuls 100(%ebx) + fstps 24(%edx) + flds 8(%ecx) + fadds 20(%ecx) + fstps 8(%edx) + flds 8(%ecx) + fsubs 20(%ecx) + fmuls 104(%ebx) + fstps 20(%edx) + flds 12(%ecx) + fadds 16(%ecx) + fstps 12(%edx) + flds 12(%ecx) + fsubs 16(%ecx) + fmuls 108(%ebx) + fstps 16(%edx) + flds 32(%ecx) + fadds 60(%ecx) + fstps 32(%edx) + flds 60(%ecx) + fsubs 32(%ecx) + fmuls 96(%ebx) + fstps 60(%edx) + flds 36(%ecx) + fadds 56(%ecx) + fstps 36(%edx) + flds 56(%ecx) + fsubs 36(%ecx) + fmuls 100(%ebx) + fstps 56(%edx) + flds 40(%ecx) + fadds 52(%ecx) + fstps 40(%edx) + flds 52(%ecx) + fsubs 40(%ecx) + fmuls 104(%ebx) + fstps 52(%edx) + flds 44(%ecx) + fadds 48(%ecx) + fstps 44(%edx) + flds 48(%ecx) + fsubs 44(%ecx) + fmuls 108(%ebx) + fstps 48(%edx) + flds 64(%ecx) + fadds 92(%ecx) + fstps 64(%edx) + flds 64(%ecx) + fsubs 92(%ecx) + fmuls 96(%ebx) + fstps 92(%edx) + flds 68(%ecx) + fadds 88(%ecx) + fstps 68(%edx) + flds 68(%ecx) + fsubs 88(%ecx) + fmuls 100(%ebx) + fstps 88(%edx) + flds 72(%ecx) + fadds 84(%ecx) + fstps 72(%edx) + flds 72(%ecx) + fsubs 84(%ecx) + fmuls 104(%ebx) + fstps 84(%edx) + flds 76(%ecx) + fadds 80(%ecx) + fstps 76(%edx) + flds 76(%ecx) + fsubs 80(%ecx) + fmuls 108(%ebx) + fstps 80(%edx) + flds 96(%ecx) + fadds 124(%ecx) + fstps 96(%edx) + flds 124(%ecx) + fsubs 96(%ecx) + fmuls 96(%ebx) + fstps 124(%edx) + flds 100(%ecx) + fadds 120(%ecx) + fstps 100(%edx) + flds 120(%ecx) + fsubs 100(%ecx) + fmuls 100(%ebx) + fstps 120(%edx) + flds 104(%ecx) + fadds 116(%ecx) + fstps 104(%edx) + flds 116(%ecx) + fsubs 104(%ecx) + fmuls 104(%ebx) + fstps 116(%edx) + flds 108(%ecx) + fadds 112(%ecx) + fstps 108(%edx) + flds 112(%ecx) + fsubs 108(%ecx) + fmuls 108(%ebx) + fstps 112(%edx) + flds (%edx) + fadds 12(%edx) + fstps (%ecx) + flds (%edx) + fsubs 12(%edx) + fmuls 112(%ebx) + fstps 12(%ecx) + flds 4(%edx) + fadds 8(%edx) + fstps 4(%ecx) + flds 4(%edx) + fsubs 8(%edx) + fmuls 116(%ebx) + fstps 8(%ecx) + flds 16(%edx) + fadds 28(%edx) + fstps 16(%ecx) + flds 28(%edx) + fsubs 16(%edx) + fmuls 112(%ebx) + fstps 28(%ecx) + flds 20(%edx) + fadds 24(%edx) + fstps 20(%ecx) + flds 24(%edx) + fsubs 20(%edx) + fmuls 116(%ebx) + fstps 24(%ecx) + flds 32(%edx) + fadds 44(%edx) + fstps 32(%ecx) + flds 32(%edx) + fsubs 44(%edx) + fmuls 112(%ebx) + fstps 44(%ecx) + flds 36(%edx) + fadds 40(%edx) + fstps 36(%ecx) + flds 36(%edx) + fsubs 40(%edx) + fmuls 116(%ebx) + fstps 40(%ecx) + flds 48(%edx) + fadds 60(%edx) + fstps 48(%ecx) + flds 60(%edx) + fsubs 48(%edx) + fmuls 112(%ebx) + fstps 60(%ecx) + flds 52(%edx) + fadds 56(%edx) + fstps 52(%ecx) + flds 56(%edx) + fsubs 52(%edx) + fmuls 116(%ebx) + fstps 56(%ecx) + flds 64(%edx) + fadds 76(%edx) + fstps 64(%ecx) + flds 64(%edx) + fsubs 76(%edx) + fmuls 112(%ebx) + fstps 76(%ecx) + flds 68(%edx) + fadds 72(%edx) + fstps 68(%ecx) + flds 68(%edx) + fsubs 72(%edx) + fmuls 116(%ebx) + fstps 72(%ecx) + flds 80(%edx) + fadds 92(%edx) + fstps 80(%ecx) + flds 92(%edx) + fsubs 80(%edx) + fmuls 112(%ebx) + fstps 92(%ecx) + flds 84(%edx) + fadds 88(%edx) + fstps 84(%ecx) + flds 88(%edx) + fsubs 84(%edx) + fmuls 116(%ebx) + fstps 88(%ecx) + flds 96(%edx) + fadds 108(%edx) + fstps 96(%ecx) + flds 96(%edx) + fsubs 108(%edx) + fmuls 112(%ebx) + fstps 108(%ecx) + flds 100(%edx) + fadds 104(%edx) + fstps 100(%ecx) + flds 100(%edx) + fsubs 104(%edx) + fmuls 116(%ebx) + fstps 104(%ecx) + flds 112(%edx) + fadds 124(%edx) + fstps 112(%ecx) + flds 124(%edx) + fsubs 112(%edx) + fmuls 112(%ebx) + fstps 124(%ecx) + flds 116(%edx) + fadds 120(%edx) + fstps 116(%ecx) + flds 120(%edx) + fsubs 116(%edx) + fmuls 116(%ebx) + fstps 120(%ecx) + + flds 32(%ecx) + fadds 36(%ecx) + fstps 32(%edx) + flds 32(%ecx) + fsubs 36(%ecx) + fmuls 120(%ebx) + fstps 36(%edx) + flds 44(%ecx) + fsubs 40(%ecx) + fmuls 120(%ebx) + fsts 44(%edx) + fadds 40(%ecx) + fadds 44(%ecx) + fstps 40(%edx) + flds 48(%ecx) + fsubs 52(%ecx) + fmuls 120(%ebx) + flds 60(%ecx) + fsubs 56(%ecx) + fmuls 120(%ebx) + fld %st(0) + fadds 56(%ecx) + fadds 60(%ecx) + fld %st(0) + fadds 48(%ecx) + fadds 52(%ecx) + fstps 48(%edx) + fadd %st(2) + fstps 56(%edx) + fsts 60(%edx) + faddp %st(1) + fstps 52(%edx) + flds 64(%ecx) + fadds 68(%ecx) + fstps 64(%edx) + flds 64(%ecx) + fsubs 68(%ecx) + fmuls 120(%ebx) + fstps 68(%edx) + flds 76(%ecx) + fsubs 72(%ecx) + fmuls 120(%ebx) + fsts 76(%edx) + fadds 72(%ecx) + fadds 76(%ecx) + fstps 72(%edx) + flds 92(%ecx) + fsubs 88(%ecx) + fmuls 120(%ebx) + fsts 92(%edx) + fadds 92(%ecx) + fadds 88(%ecx) + fld %st(0) + fadds 80(%ecx) + fadds 84(%ecx) + fstps 80(%edx) + flds 80(%ecx) + fsubs 84(%ecx) + fmuls 120(%ebx) + fadd %st(0), %st(1) + fadds 92(%edx) + fstps 84(%edx) + fstps 88(%edx) + flds 96(%ecx) + fadds 100(%ecx) + fstps 96(%edx) + flds 96(%ecx) + fsubs 100(%ecx) + fmuls 120(%ebx) + fstps 100(%edx) + flds 108(%ecx) + fsubs 104(%ecx) + fmuls 120(%ebx) + fsts 108(%edx) + fadds 104(%ecx) + fadds 108(%ecx) + fstps 104(%edx) + flds 124(%ecx) + fsubs 120(%ecx) + fmuls 120(%ebx) + fsts 124(%edx) + fadds 120(%ecx) + fadds 124(%ecx) + fld %st(0) + fadds 112(%ecx) + fadds 116(%ecx) + fstps 112(%edx) + flds 112(%ecx) + fsubs 116(%ecx) + fmuls 120(%ebx) + fadd %st(0),%st(1) + fadds 124(%edx) + fstps 116(%edx) + fstps 120(%edx) + jnz .L01 + + flds (%ecx) + fadds 4(%ecx) + fstps 1024(%esi) + flds (%ecx) + fsubs 4(%ecx) + fmuls 120(%ebx) + fsts (%esi) + fstps (%edi) + flds 12(%ecx) + fsubs 8(%ecx) + fmuls 120(%ebx) + fsts 512(%edi) + fadds 12(%ecx) + fadds 8(%ecx) + fstps 512(%esi) + flds 16(%ecx) + fsubs 20(%ecx) + fmuls 120(%ebx) + flds 28(%ecx) + fsubs 24(%ecx) + fmuls 120(%ebx) + fsts 768(%edi) + fld %st(0) + fadds 24(%ecx) + fadds 28(%ecx) + fld %st(0) + fadds 16(%ecx) + fadds 20(%ecx) + fstps 768(%esi) + fadd %st(2) + fstps 256(%esi) + faddp %st(1) + fstps 256(%edi) + + flds 32(%edx) + fadds 48(%edx) + fstps 896(%esi) + flds 48(%edx) + fadds 40(%edx) + fstps 640(%esi) + flds 40(%edx) + fadds 56(%edx) + fstps 384(%esi) + flds 56(%edx) + fadds 36(%edx) + fstps 128(%esi) + flds 36(%edx) + fadds 52(%edx) + fstps 128(%edi) + flds 52(%edx) + fadds 44(%edx) + fstps 384(%edi) + flds 60(%edx) + fsts 896(%edi) + fadds 44(%edx) + fstps 640(%edi) + flds 96(%edx) + fadds 112(%edx) + fld %st(0) + fadds 64(%edx) + fstps 960(%esi) + fadds 80(%edx) + fstps 832(%esi) + flds 112(%edx) + fadds 104(%edx) + fld %st(0) + fadds 80(%edx) + fstps 704(%esi) + fadds 72(%edx) + fstps 576(%esi) + flds 104(%edx) + fadds 120(%edx) + fld %st(0) + fadds 72(%edx) + fstps 448(%esi) + fadds 88(%edx) + fstps 320(%esi) + flds 120(%edx) + fadds 100(%edx) + fld %st(0) + fadds 88(%edx) + fstps 192(%esi) + fadds 68(%edx) + fstps 64(%esi) + flds 100(%edx) + fadds 116(%edx) + fld %st(0) + fadds 68(%edx) + fstps 64(%edi) + fadds 84(%edx) + fstps 192(%edi) + flds 116(%edx) + fadds 108(%edx) + fld %st(0) + fadds 84(%edx) + fstps 320(%edi) + fadds 76(%edx) + fstps 448(%edi) + flds 108(%edx) + fadds 124(%edx) + fld %st(0) + fadds 76(%edx) + fstps 576(%edi) + fadds 92(%edx) + fstps 704(%edi) + flds 124(%edx) + fsts 960(%edi) + fadds 92(%edx) + fstps 832(%edi) + addl $256,%esp + popl %edi + popl %esi + popl %ebx + ret +.L01: + flds (%ecx) + fadds 4(%ecx) + fistp 512(%esi) + flds (%ecx) + fsubs 4(%ecx) + fmuls 120(%ebx) + + fistp (%esi) + + flds 12(%ecx) + fsubs 8(%ecx) + fmuls 120(%ebx) + fist 256(%edi) + fadds 12(%ecx) + fadds 8(%ecx) + fistp 256(%esi) + flds 16(%ecx) + fsubs 20(%ecx) + fmuls 120(%ebx) + flds 28(%ecx) + fsubs 24(%ecx) + fmuls 120(%ebx) + fist 384(%edi) + fld %st(0) + fadds 24(%ecx) + fadds 28(%ecx) + fld %st(0) + fadds 16(%ecx) + fadds 20(%ecx) + fistp 384(%esi) + fadd %st(2) + fistp 128(%esi) + faddp %st(1) + fistp 128(%edi) + + flds 32(%edx) + fadds 48(%edx) + fistp 448(%esi) + flds 48(%edx) + fadds 40(%edx) + fistp 320(%esi) + flds 40(%edx) + fadds 56(%edx) + fistp 192(%esi) + flds 56(%edx) + fadds 36(%edx) + fistp 64(%esi) + flds 36(%edx) + fadds 52(%edx) + fistp 64(%edi) + flds 52(%edx) + fadds 44(%edx) + fistp 192(%edi) + flds 60(%edx) + fist 448(%edi) + fadds 44(%edx) + fistp 320(%edi) + flds 96(%edx) + fadds 112(%edx) + fld %st(0) + fadds 64(%edx) + fistp 480(%esi) + fadds 80(%edx) + fistp 416(%esi) + flds 112(%edx) + fadds 104(%edx) + fld %st(0) + fadds 80(%edx) + fistp 352(%esi) + fadds 72(%edx) + fistp 288(%esi) + flds 104(%edx) + fadds 120(%edx) + fld %st(0) + fadds 72(%edx) + fistp 224(%esi) + fadds 88(%edx) + fistp 160(%esi) + flds 120(%edx) + fadds 100(%edx) + fld %st(0) + fadds 88(%edx) + fistp 96(%esi) + fadds 68(%edx) + fistp 32(%esi) + flds 100(%edx) + fadds 116(%edx) + fld %st(0) + fadds 68(%edx) + fistp 32(%edi) + fadds 84(%edx) + fistp 96(%edi) + flds 116(%edx) + fadds 108(%edx) + fld %st(0) + fadds 84(%edx) + fistp 160(%edi) + fadds 76(%edx) + fistp 224(%edi) + flds 108(%edx) + fadds 124(%edx) + fld %st(0) + fadds 76(%edx) + fistp 288(%edi) + fadds 92(%edx) + fistp 352(%edi) + flds 124(%edx) + fist 480(%edi) + fadds 92(%edx) + fistp 416(%edi) + movsw + addl $256,%esp + popl %edi + popl %esi + popl %ebx + ret + +/* Mark non-executable stack. */ +#if defined(__linux__) && defined(__ELF__) +.section .note.GNU-stack,"",%progbits +#endif + diff -r f2985e08589c -r 7e08477b0fc1 decoders/libmpg123/dct64_sse.S --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/decoders/libmpg123/dct64_sse.S Fri Jan 30 02:44:47 2009 -0500 @@ -0,0 +1,567 @@ +/* + dct64_sse: MMX/SSE optimized dct64 + + copyright 2006-2007 by Zuxy Meng / the mpg123 project - free software under the terms of the LGPL 2.1 + see COPYING and AUTHORS files in distribution or http://mpg123.org + initially written by the mysterious higway for MMX (apparently) + then developed into SSE opt by Zuxy Meng, also building on Romain Dolbeau's AltiVec + Both have agreed to distribution under LGPL 2.1 . + + Transformed back into standalone asm, with help of + gcc -S -DHAVE_CONFIG_H -I. -march=pentium3 -O3 -Wall -pedantic -fno-strict-aliasing -DREAL_IS_FLOAT -c -o dct64_sse.{S,c} + + Original comment from MPlayer source follows: +*/ + +/* + * Discrete Cosine Tansform (DCT) for SSE + * based upon code from mp3lib/dct64.c, mp3lib/dct64_altivec.c + * and mp3lib/dct64_MMX.c + */ + +#include "mangle.h" + +#ifndef __APPLE__ + .section .rodata +#else + .data +#endif + ALIGN16 + /* .type nnnn, @object + .size nnnn, 16 */ +nnnn: + .long -2147483648 + .long -2147483648 + .long -2147483648 + .long -2147483648 + ALIGN16 + /* .type ppnn, @object + .size ppnn, 16 */ +ppnn: + .long 0 + .long 0 + .long -2147483648 + .long -2147483648 + ALIGN16 + /* .type pnpn, @object + .size pnpn, 16 */ +pnpn: + .long 0 + .long -2147483648 + .long 0 + .long -2147483648 + ALIGN4 + /* .type one.4748, @object + .size one.4748, 4 */ +one.4748: + .long 1065353216 + + .text + ALIGN16,,15 +.globl ASM_NAME(dct64_sse) + /* .type ASM_NAME(dct64_sse), @function */ +ASM_NAME(dct64_sse): + pushl %ebp + movl %esp, %ebp + /* stack from ebp: 0=ebp 4=back 8=arg0 12=arg1 16=arg2 */ +#define ARG(n) (8+n*4)(%ebp) + andl $-16, %esp /* align the stack at 16 bytes */ + subl $256, %esp /* reserve space for local b1 and b2 */ + pushl %ebx +/* stack from esp: 0=ebx 4...131=b2 132...259=b1 */ +#define B1OFF 132 +#define B2OFF 4 +#define B1(n) (B1OFF+n)(%esp) +#define B2(n) (B2OFF+n)(%esp) + + movl ARG(2), %eax + movl ARG(0), %ecx +/* APP */ +/* for (i = 0; i < 0x20 / 2; i += 4) cycle 1 */ + movaps ASM_NAME(costab_mmxsse), %xmm3 + shufps $27, %xmm3, %xmm3 + MOVUAPS (%eax), %xmm1 + movaps %xmm1, %xmm4 + MOVUAPS 112(%eax), %xmm2 + shufps $27, %xmm4, %xmm4 + movaps %xmm2, %xmm0 + shufps $27, %xmm0, %xmm0 + addps %xmm0, %xmm1 + movaps %xmm1, B1(0) + subps %xmm2, %xmm4 + mulps %xmm3, %xmm4 + movaps %xmm4, B1(112) + +/* NO_APP */ + movl ARG(1), %ebx +/* APP */ +/* for (i = 0; i < 0x20 / 2; i += 4) cycle 2 */ + movaps ASM_NAME(costab_mmxsse)+16, %xmm3 + shufps $27, %xmm3, %xmm3 + MOVUAPS 16(%eax), %xmm1 + movaps %xmm1, %xmm4 + MOVUAPS 96(%eax), %xmm2 + shufps $27, %xmm4, %xmm4 + movaps %xmm2, %xmm0 + shufps $27, %xmm0, %xmm0 + addps %xmm0, %xmm1 + movaps %xmm1, B1(16) + subps %xmm2, %xmm4 + mulps %xmm3, %xmm4 + movaps %xmm4, B1(96) + +/* for (i = 0; i < 0x20 / 2; i += 4) cycle 3 */ + movaps ASM_NAME(costab_mmxsse)+32, %xmm3 + shufps $27, %xmm3, %xmm3 + MOVUAPS 32(%eax), %xmm1 + movaps %xmm1, %xmm4 + MOVUAPS 80(%eax), %xmm2 + shufps $27, %xmm4, %xmm4 + movaps %xmm2, %xmm0 + shufps $27, %xmm0, %xmm0 + addps %xmm0, %xmm1 + movaps %xmm1, B1(32) + subps %xmm2, %xmm4 + mulps %xmm3, %xmm4 + movaps %xmm4, B1(80) + +/* for (i = 0; i < 0x20 / 2; i += 4) cycle 4 */ + movaps ASM_NAME(costab_mmxsse)+48, %xmm3 + shufps $27, %xmm3, %xmm3 + MOVUAPS 48(%eax), %xmm1 + movaps %xmm1, %xmm4 + MOVUAPS 64(%eax), %xmm2 + shufps $27, %xmm4, %xmm4 + movaps %xmm2, %xmm0 + shufps $27, %xmm0, %xmm0 + addps %xmm0, %xmm1 + movaps %xmm1, B1(48) + subps %xmm2, %xmm4 + mulps %xmm3, %xmm4 + movaps %xmm4, B1(64) + + movaps B1(0), %xmm1 + movaps B1(16), %xmm3 + movaps B1(32), %xmm4 + movaps B1(48), %xmm6 + movaps %xmm1, %xmm7 + shufps $27, %xmm7, %xmm7 + movaps %xmm3, %xmm5 + shufps $27, %xmm5, %xmm5 + movaps %xmm4, %xmm2 + shufps $27, %xmm2, %xmm2 + movaps %xmm6, %xmm0 + shufps $27, %xmm0, %xmm0 + addps %xmm0, %xmm1 + movaps %xmm1, B2(0) + addps %xmm2, %xmm3 + movaps %xmm3, B2(16) + subps %xmm4, %xmm5 + movaps %xmm5, B2(32) + subps %xmm6, %xmm7 + movaps %xmm7, B2(48) + + movaps B1(64), %xmm1 + movaps B1(80), %xmm3 + movaps B1(96), %xmm4 + movaps B1(112), %xmm6 + movaps %xmm1, %xmm7 + shufps $27, %xmm7, %xmm7 + movaps %xmm3, %xmm5 + shufps $27, %xmm5, %xmm5 + movaps %xmm4, %xmm2 + shufps $27, %xmm2, %xmm2 + movaps %xmm6, %xmm0 + shufps $27, %xmm0, %xmm0 + addps %xmm0, %xmm1 + movaps %xmm1, B2(64) + addps %xmm2, %xmm3 + movaps %xmm3, B2(80) + subps %xmm4, %xmm5 + movaps %xmm5, B2(96) + subps %xmm6, %xmm7 + movaps %xmm7, B2(112) + + movaps B2(32), %xmm0 + movaps B2(48), %xmm1 + movaps ASM_NAME(costab_mmxsse)+64, %xmm4 + xorps %xmm6, %xmm6 + shufps $27, %xmm4, %xmm4 + mulps %xmm4, %xmm1 + movaps ASM_NAME(costab_mmxsse)+80, %xmm2 + xorps %xmm7, %xmm7 + shufps $27, %xmm2, %xmm2 + mulps %xmm2, %xmm0 + movaps %xmm0, B2(32) + movaps %xmm1, B2(48) + movaps B2(96), %xmm3 + mulps %xmm2, %xmm3 + subps %xmm3, %xmm6 + movaps %xmm6, B2(96) + movaps B2(112), %xmm5 + mulps %xmm4, %xmm5 + subps %xmm5, %xmm7 + movaps %xmm7, B2(112) + + movaps ASM_NAME(costab_mmxsse)+96, %xmm0 + shufps $27, %xmm0, %xmm0 + movaps nnnn, %xmm5 + movaps %xmm5, %xmm6 + + movaps B2(0), %xmm2 + movaps B2(16), %xmm3 + movaps %xmm2, %xmm4 + xorps %xmm5, %xmm6 + shufps $27, %xmm4, %xmm4 + movaps %xmm3, %xmm1 + shufps $27, %xmm1, %xmm1 + addps %xmm1, %xmm2 + movaps %xmm2, B1(0) + subps %xmm3, %xmm4 + xorps %xmm6, %xmm4 + mulps %xmm0, %xmm4 + movaps %xmm4, B1(16) + + movaps B2(32), %xmm2 + movaps B2(48), %xmm3 + movaps %xmm2, %xmm4 + xorps %xmm5, %xmm6 + shufps $27, %xmm4, %xmm4 + movaps %xmm3, %xmm1 + shufps $27, %xmm1, %xmm1 + addps %xmm1, %xmm2 + movaps %xmm2, B1(32) + subps %xmm3, %xmm4 + xorps %xmm6, %xmm4 + mulps %xmm0, %xmm4 + movaps %xmm4, B1(48) + + movaps B2(64), %xmm2 + movaps B2(80), %xmm3 + movaps %xmm2, %xmm4 + xorps %xmm5, %xmm6 + shufps $27, %xmm4, %xmm4 + movaps %xmm3, %xmm1 + shufps $27, %xmm1, %xmm1 + addps %xmm1, %xmm2 + movaps %xmm2, B1(64) + subps %xmm3, %xmm4 + xorps %xmm6, %xmm4 + mulps %xmm0, %xmm4 + movaps %xmm4, B1(80) + + movaps B2(96), %xmm2 + movaps B2(112), %xmm3 + movaps %xmm2, %xmm4 + xorps %xmm5, %xmm6 + shufps $27, %xmm4, %xmm4 + movaps %xmm3, %xmm1 + shufps $27, %xmm1, %xmm1 + addps %xmm1, %xmm2 + movaps %xmm2, B1(96) + subps %xmm3, %xmm4 + xorps %xmm6, %xmm4 + mulps %xmm0, %xmm4 + movaps %xmm4, B1(112) + + movss one.4748, %xmm1 + movss ASM_NAME(costab_mmxsse)+112, %xmm0 + movaps %xmm1, %xmm3 + unpcklps %xmm0, %xmm3 + movss ASM_NAME(costab_mmxsse)+116, %xmm2 + movaps %xmm1, %xmm0 + unpcklps %xmm2, %xmm0 + unpcklps %xmm3, %xmm0 + movaps ppnn, %xmm2 + + movaps B1(0), %xmm3 + movaps %xmm3, %xmm4 + shufps $20, %xmm4, %xmm4 + shufps $235, %xmm3, %xmm3 + xorps %xmm2, %xmm3 + addps %xmm3, %xmm4 + mulps %xmm0, %xmm4 + movaps %xmm4, B2(0) + movaps B1(16), %xmm6 + movaps %xmm6, %xmm5 + shufps $27, %xmm5, %xmm5 + xorps %xmm2, %xmm5 + addps %xmm5, %xmm6 + mulps %xmm0, %xmm6 + movaps %xmm6, B2(16) + + movaps B1(32), %xmm3 + movaps %xmm3, %xmm4 + shufps $20, %xmm4, %xmm4 + shufps $235, %xmm3, %xmm3 + xorps %xmm2, %xmm3 + addps %xmm3, %xmm4 + mulps %xmm0, %xmm4 + movaps %xmm4, B2(32) + movaps B1(48), %xmm6 + movaps %xmm6, %xmm5 + shufps $27, %xmm5, %xmm5 + xorps %xmm2, %xmm5 + addps %xmm5, %xmm6 + mulps %xmm0, %xmm6 + movaps %xmm6, B2(48) + + movaps B1(64), %xmm3 + movaps %xmm3, %xmm4 + shufps $20, %xmm4, %xmm4 + shufps $235, %xmm3, %xmm3 + xorps %xmm2, %xmm3 + addps %xmm3, %xmm4 + mulps %xmm0, %xmm4 + movaps %xmm4, B2(64) + movaps B1(80), %xmm6 + movaps %xmm6, %xmm5 + shufps $27, %xmm5, %xmm5 + xorps %xmm2, %xmm5 + addps %xmm5, %xmm6 + mulps %xmm0, %xmm6 + movaps %xmm6, B2(80) + + movaps B1(96), %xmm3 + movaps %xmm3, %xmm4 + shufps $20, %xmm4, %xmm4 + shufps $235, %xmm3, %xmm3 + xorps %xmm2, %xmm3 + addps %xmm3, %xmm4 + mulps %xmm0, %xmm4 + movaps %xmm4, B2(96) + movaps B1(112), %xmm6 + movaps %xmm6, %xmm5 + shufps $27, %xmm5, %xmm5 + xorps %xmm2, %xmm5 + addps %xmm5, %xmm6 + mulps %xmm0, %xmm6 + movaps %xmm6, B2(112) + + movss ASM_NAME(costab_mmxsse)+120, %xmm0 + movaps %xmm1, %xmm2 + movaps %xmm0, %xmm7 + unpcklps %xmm1, %xmm2 + unpcklps %xmm0, %xmm7 + movaps pnpn, %xmm0 + unpcklps %xmm7, %xmm2 + + movaps B2(32), %xmm1 + movaps %xmm1, %xmm3 + shufps $224, %xmm3, %xmm3 + shufps $181, %xmm1, %xmm1 + xorps %xmm0, %xmm1 + addps %xmm1, %xmm3 + mulps %xmm2, %xmm3 + movaps %xmm3, B1(32) + movaps B2(48), %xmm4 + movaps %xmm4, %xmm5 + shufps $224, %xmm5, %xmm5 + shufps $181, %xmm4, %xmm4 + xorps %xmm0, %xmm4 + addps %xmm4, %xmm5 + mulps %xmm2, %xmm5 + movaps %xmm5, B1(48) + + movaps B2(64), %xmm1 + movaps %xmm1, %xmm3 + shufps $224, %xmm3, %xmm3 + shufps $181, %xmm1, %xmm1 + xorps %xmm0, %xmm1 + addps %xmm1, %xmm3 + mulps %xmm2, %xmm3 + movaps %xmm3, B1(64) + movaps B2(80), %xmm4 + movaps %xmm4, %xmm5 + shufps $224, %xmm5, %xmm5 + shufps $181, %xmm4, %xmm4 + xorps %xmm0, %xmm4 + addps %xmm4, %xmm5 + mulps %xmm2, %xmm5 + movaps %xmm5, B1(80) + + movaps B2(96), %xmm1 + movaps %xmm1, %xmm3 + shufps $224, %xmm3, %xmm3 + shufps $181, %xmm1, %xmm1 + xorps %xmm0, %xmm1 + addps %xmm1, %xmm3 + mulps %xmm2, %xmm3 + movaps %xmm3, B1(96) + movaps B2(112), %xmm4 + movaps %xmm4, %xmm5 + shufps $224, %xmm5, %xmm5 + shufps $181, %xmm4, %xmm4 + xorps %xmm0, %xmm4 + addps %xmm4, %xmm5 + mulps %xmm2, %xmm5 + movaps %xmm5, B1(112) + +/* NO_APP */ + flds B1(40) + movl %esp, %edx + addl $B1OFF, %edx + movl %esp, %eax + addl $B2OFF, %eax + fadds B1(44) + fstps B1(40) + flds B1(56) + fadds B1(60) + flds B1(48) + fadd %st(1), %st + fstps B1(48) + fadds B1(52) + fstps B1(56) + flds B1(52) + fadds B1(60) + fstps B1(52) + flds B1(72) + fadds B1(76) + fstps B1(72) + flds B1(88) + fadds B1(92) + flds B1(80) + fadd %st(1), %st + fstps B1(80) + fadds B1(84) + fstps B1(88) + flds B1(84) + fadds B1(92) + fstps B1(84) + flds B1(104) + fadds B1(108) + fstps B1(104) + flds B1(120) + fadds B1(124) + flds B1(112) + fadd %st(1), %st + fstps B1(112) + fadds B1(116) + fstps B1(120) + flds B1(116) + fadds B1(124) + fstps B1(116) +/* APP */ + flds ASM_NAME(costab_mmxsse)+120 + flds (%eax) + fadds 4(%eax) + fistp 512(%ecx) + flds (%eax) + fsubs 4(%eax) + fmul %st(1) + fistp (%ecx) + flds 12(%eax) + fsubs 8(%eax) + fmul %st(1) + fist 256(%ebx) + fadds 12(%eax) + fadds 8(%eax) + fistp 256(%ecx) + flds 16(%eax) + fsubs 20(%eax) + fmul %st(1) + flds 28(%eax) + fsubs 24(%eax) + fmul %st(2) + fist 384(%ebx) + fld %st(0) + fadds 24(%eax) + fadds 28(%eax) + fld %st(0) + fadds 16(%eax) + fadds 20(%eax) + fistp 384(%ecx) + fadd %st(2) + fistp 128(%ecx) + faddp %st(1) + fistp 128(%ebx) + flds 32(%edx) + fadds 48(%edx) + fistp 448(%ecx) + flds 48(%edx) + fadds 40(%edx) + fistp 320(%ecx) + flds 40(%edx) + fadds 56(%edx) + fistp 192(%ecx) + flds 56(%edx) + fadds 36(%edx) + fistp 64(%ecx) + flds 36(%edx) + fadds 52(%edx) + fistp 64(%ebx) + flds 52(%edx) + fadds 44(%edx) + fistp 192(%ebx) + flds 60(%edx) + fist 448(%ebx) + fadds 44(%edx) + fistp 320(%ebx) + flds 96(%edx) + fadds 112(%edx) + fld %st(0) + fadds 64(%edx) + fistp 480(%ecx) + fadds 80(%edx) + fistp 416(%ecx) + flds 112(%edx) + fadds 104(%edx) + fld %st(0) + fadds 80(%edx) + fistp 352(%ecx) + fadds 72(%edx) + fistp 288(%ecx) + flds 104(%edx) + fadds 120(%edx) + fld %st(0) + fadds 72(%edx) + fistp 224(%ecx) + fadds 88(%edx) + fistp 160(%ecx) + flds 120(%edx) + fadds 100(%edx) + fld %st(0) + fadds 88(%edx) + fistp 96(%ecx) + fadds 68(%edx) + fistp 32(%ecx) + flds 100(%edx) + fadds 116(%edx) + fld %st(0) + fadds 68(%edx) + fistp 32(%ebx) + fadds 84(%edx) + fistp 96(%ebx) + flds 116(%edx) + fadds 108(%edx) + fld %st(0) + fadds 84(%edx) + fistp 160(%ebx) + fadds 76(%edx) + fistp 224(%ebx) + flds 108(%edx) + fadds 124(%edx) + fld %st(0) + fadds 76(%edx) + fistp 288(%ebx) + fadds 92(%edx) + fistp 352(%ebx) + flds 124(%edx) + fist 480(%ebx) + fadds 92(%edx) + fistp 416(%ebx) + ffreep %st(0) + +/* NO_APP */ + movzwl (%ecx), %eax + movw %ax, (%ebx) + popl %ebx + movl %ebp, %esp + popl %ebp + ret + /* .size ASM_NAME(dct64_sse), .-ASM_NAME(dct64_sse) */ + +/* Mark non-executable stack. */ +#if defined(__linux__) && defined(__ELF__) +.section .note.GNU-stack,"",%progbits +#endif diff -r f2985e08589c -r 7e08477b0fc1 decoders/libmpg123/debug.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/decoders/libmpg123/debug.h Fri Jan 30 02:44:47 2009 -0500 @@ -0,0 +1,114 @@ +/* + debug.h: + if DEBUG defined: debugging macro fprintf wrappers + else: macros defined to do nothing + That saves typing #ifdef DEBUG all the time and still preserves + lean code without debugging. + + public domain (or LGPL / GPL, if you like that more;-) + generated by debugdef.pl, what was + trivially written by Thomas Orgis +*/ + +#include "config.h" + +/* + I could do that with variadic macros available: + #define sdebug(me, s) fprintf(stderr, "[location] " s "\n") + #define debug(me, s, ...) fprintf(stderr, "[location] " s "}n", __VA_ARGS__) + + Variadic macros are a C99 feature... + Now just predefining stuff non-variadic for up to 15 arguments. + It's cumbersome to have them all with different names, though... +*/ + +#ifdef DEBUG +#include +#define debug(s) fprintf(stderr, "[" __FILE__ ":%i] debug: " s "\n", __LINE__) +#define debug1(s, a) fprintf(stderr, "[" __FILE__ ":%i] debug: " s "\n", __LINE__, a) +#define debug2(s, a, b) fprintf(stderr, "[" __FILE__ ":%i] debug: " s "\n", __LINE__, a, b) +#define debug3(s, a, b, c) fprintf(stderr, "[" __FILE__ ":%i] debug: " s "\n", __LINE__, a, b, c) +#define debug4(s, a, b, c, d) fprintf(stderr, "[" __FILE__ ":%i] debug: " s "\n", __LINE__, a, b, c, d) +#define debug5(s, a, b, c, d, e) fprintf(stderr, "[" __FILE__ ":%i] debug: " s "\n", __LINE__, a, b, c, d, e) +#define debug6(s, a, b, c, d, e, f) fprintf(stderr, "[" __FILE__ ":%i] debug: " s "\n", __LINE__, a, b, c, d, e, f) +#define debug7(s, a, b, c, d, e, f, g) fprintf(stderr, "[" __FILE__ ":%i] debug: " s "\n", __LINE__, a, b, c, d, e, f, g) +#define debug8(s, a, b, c, d, e, f, g, h) fprintf(stderr, "[" __FILE__ ":%i] debug: " s "\n", __LINE__, a, b, c, d, e, f, g, h) +#define debug9(s, a, b, c, d, e, f, g, h, i) fprintf(stderr, "[" __FILE__ ":%i] debug: " s "\n", __LINE__, a, b, c, d, e, f, g, h, i) +#define debug10(s, a, b, c, d, e, f, g, h, i, j) fprintf(stderr, "[" __FILE__ ":%i] debug: " s "\n", __LINE__, a, b, c, d, e, f, g, h, i, j) +#define debug11(s, a, b, c, d, e, f, g, h, i, j, k) fprintf(stderr, "[" __FILE__ ":%i] debug: " s "\n", __LINE__, a, b, c, d, e, f, g, h, i, j, k) +#define debug12(s, a, b, c, d, e, f, g, h, i, j, k, l) fprintf(stderr, "[" __FILE__ ":%i] debug: " s "\n", __LINE__, a, b, c, d, e, f, g, h, i, j, k, l) +#define debug13(s, a, b, c, d, e, f, g, h, i, j, k, l, m) fprintf(stderr, "[" __FILE__ ":%i] debug: " s "\n", __LINE__, a, b, c, d, e, f, g, h, i, j, k, l, m) +#define debug14(s, a, b, c, d, e, f, g, h, i, j, k, l, m, n) fprintf(stderr, "[" __FILE__ ":%i] debug: " s "\n", __LINE__, a, b, c, d, e, f, g, h, i, j, k, l, m, n) +#define debug15(s, a, b, c, d, e, f, g, h, i, j, k, l, m, n, o) fprintf(stderr, "[" __FILE__ ":%i] debug: " s "\n", __LINE__, a, b, c, d, e, f, g, h, i, j, k, l, m, n, o) +#else +#define debug(s) +#define debug1(s, a) +#define debug2(s, a, b) +#define debug3(s, a, b, c) +#define debug4(s, a, b, c, d) +#define debug5(s, a, b, c, d, e) +#define debug6(s, a, b, c, d, e, f) +#define debug7(s, a, b, c, d, e, f, g) +#define debug8(s, a, b, c, d, e, f, g, h) +#define debug9(s, a, b, c, d, e, f, g, h, i) +#define debug10(s, a, b, c, d, e, f, g, h, i, j) +#define debug11(s, a, b, c, d, e, f, g, h, i, j, k) +#define debug12(s, a, b, c, d, e, f, g, h, i, j, k, l) +#define debug13(s, a, b, c, d, e, f, g, h, i, j, k, l, m) +#define debug14(s, a, b, c, d, e, f, g, h, i, j, k, l, m, n) +#define debug15(s, a, b, c, d, e, f, g, h, i, j, k, l, m, n, o) +#endif + +/* warning macros also here... */ +#define warning(s) fprintf(stderr, "[" __FILE__ ":%i] warning: " s "\n", __LINE__) +#define warning1(s, a) fprintf(stderr, "[" __FILE__ ":%i] warning: " s "\n", __LINE__, a) +#define warning2(s, a, b) fprintf(stderr, "[" __FILE__ ":%i] warning: " s "\n", __LINE__, a, b) +#define warning3(s, a, b, c) fprintf(stderr, "[" __FILE__ ":%i] warning: " s "\n", __LINE__, a, b, c) +#define warning4(s, a, b, c, d) fprintf(stderr, "[" __FILE__ ":%i] warning: " s "\n", __LINE__, a, b, c, d) +#define warning5(s, a, b, c, d, e) fprintf(stderr, "[" __FILE__ ":%i] warning: " s "\n", __LINE__, a, b, c, d, e) +#define warning6(s, a, b, c, d, e, f) fprintf(stderr, "[" __FILE__ ":%i] warning: " s "\n", __LINE__, a, b, c, d, e, f) +#define warning7(s, a, b, c, d, e, f, g) fprintf(stderr, "[" __FILE__ ":%i] warning: " s "\n", __LINE__, a, b, c, d, e, f, g) +#define warning8(s, a, b, c, d, e, f, g, h) fprintf(stderr, "[" __FILE__ ":%i] warning: " s "\n", __LINE__, a, b, c, d, e, f, g, h) +#define warning9(s, a, b, c, d, e, f, g, h, i) fprintf(stderr, "[" __FILE__ ":%i] warning: " s "\n", __LINE__, a, b, c, d, e, f, g, h, i) +#define warning10(s, a, b, c, d, e, f, g, h, i, j) fprintf(stderr, "[" __FILE__ ":%i] warning: " s "\n", __LINE__, a, b, c, d, e, f, g, h, i, j) +#define warning11(s, a, b, c, d, e, f, g, h, i, j, k) fprintf(stderr, "[" __FILE__ ":%i] warning: " s "\n", __LINE__, a, b, c, d, e, f, g, h, i, j, k) +#define warning12(s, a, b, c, d, e, f, g, h, i, j, k, l) fprintf(stderr, "[" __FILE__ ":%i] warning: " s "\n", __LINE__, a, b, c, d, e, f, g, h, i, j, k, l) +#define warning13(s, a, b, c, d, e, f, g, h, i, j, k, l, m) fprintf(stderr, "[" __FILE__ ":%i] warning: " s "\n", __LINE__, a, b, c, d, e, f, g, h, i, j, k, l, m) +#define warning14(s, a, b, c, d, e, f, g, h, i, j, k, l, m, n) fprintf(stderr, "[" __FILE__ ":%i] warning: " s "\n", __LINE__, a, b, c, d, e, f, g, h, i, j, k, l, m, n) +#define warning15(s, a, b, c, d, e, f, g, h, i, j, k, l, m, n, o) fprintf(stderr, "[" __FILE__ ":%i] warning: " s "\n", __LINE__, a, b, c, d, e, f, g, h, i, j, k, l, m, n, o) + +/* error macros also here... */ +#define error(s) fprintf(stderr, "[" __FILE__ ":%i] error: " s "\n", __LINE__) +#define error1(s, a) fprintf(stderr, "[" __FILE__ ":%i] error: " s "\n", __LINE__, a) +#define error2(s, a, b) fprintf(stderr, "[" __FILE__ ":%i] error: " s "\n", __LINE__, a, b) +#define error3(s, a, b, c) fprintf(stderr, "[" __FILE__ ":%i] error: " s "\n", __LINE__, a, b, c) +#define error4(s, a, b, c, d) fprintf(stderr, "[" __FILE__ ":%i] error: " s "\n", __LINE__, a, b, c, d) +#define error5(s, a, b, c, d, e) fprintf(stderr, "[" __FILE__ ":%i] error: " s "\n", __LINE__, a, b, c, d, e) +#define error6(s, a, b, c, d, e, f) fprintf(stderr, "[" __FILE__ ":%i] error: " s "\n", __LINE__, a, b, c, d, e, f) +#define error7(s, a, b, c, d, e, f, g) fprintf(stderr, "[" __FILE__ ":%i] error: " s "\n", __LINE__, a, b, c, d, e, f, g) +#define error8(s, a, b, c, d, e, f, g, h) fprintf(stderr, "[" __FILE__ ":%i] error: " s "\n", __LINE__, a, b, c, d, e, f, g, h) +#define error9(s, a, b, c, d, e, f, g, h, i) fprintf(stderr, "[" __FILE__ ":%i] error: " s "\n", __LINE__, a, b, c, d, e, f, g, h, i) +#define error10(s, a, b, c, d, e, f, g, h, i, j) fprintf(stderr, "[" __FILE__ ":%i] error: " s "\n", __LINE__, a, b, c, d, e, f, g, h, i, j) +#define error11(s, a, b, c, d, e, f, g, h, i, j, k) fprintf(stderr, "[" __FILE__ ":%i] error: " s "\n", __LINE__, a, b, c, d, e, f, g, h, i, j, k) +#define error12(s, a, b, c, d, e, f, g, h, i, j, k, l) fprintf(stderr, "[" __FILE__ ":%i] error: " s "\n", __LINE__, a, b, c, d, e, f, g, h, i, j, k, l) +#define error13(s, a, b, c, d, e, f, g, h, i, j, k, l, m) fprintf(stderr, "[" __FILE__ ":%i] error: " s "\n", __LINE__, a, b, c, d, e, f, g, h, i, j, k, l, m) +#define error14(s, a, b, c, d, e, f, g, h, i, j, k, l, m, n) fprintf(stderr, "[" __FILE__ ":%i] error: " s "\n", __LINE__, a, b, c, d, e, f, g, h, i, j, k, l, m, n) +#define error15(s, a, b, c, d, e, f, g, h, i, j, k, l, m, n, o) fprintf(stderr, "[" __FILE__ ":%i] error: " s "\n", __LINE__, a, b, c, d, e, f, g, h, i, j, k, l, m, n, o) + +/* ereturn macros also here... */ +#define ereturn(rv, s) do{ fprintf(stderr, "[" __FILE__ ":%i] ereturn: " s "\n", __LINE__); return rv; }while(0) +#define ereturn1(rv, s, a) do{ fprintf(stderr, "[" __FILE__ ":%i] ereturn: " s "\n", __LINE__, a); return rv; }while(0) +#define ereturn2(rv, s, a, b) do{ fprintf(stderr, "[" __FILE__ ":%i] ereturn: " s "\n", __LINE__, a, b); return rv; }while(0) +#define ereturn3(rv, s, a, b, c) do{ fprintf(stderr, "[" __FILE__ ":%i] ereturn: " s "\n", __LINE__, a, b, c); return rv; }while(0) +#define ereturn4(rv, s, a, b, c, d) do{ fprintf(stderr, "[" __FILE__ ":%i] ereturn: " s "\n", __LINE__, a, b, c, d); return rv; }while(0) +#define ereturn5(rv, s, a, b, c, d, e) do{ fprintf(stderr, "[" __FILE__ ":%i] ereturn: " s "\n", __LINE__, a, b, c, d, e); return rv; }while(0) +#define ereturn6(rv, s, a, b, c, d, e, f) do{ fprintf(stderr, "[" __FILE__ ":%i] ereturn: " s "\n", __LINE__, a, b, c, d, e, f); return rv; }while(0) +#define ereturn7(rv, s, a, b, c, d, e, f, g) do{ fprintf(stderr, "[" __FILE__ ":%i] ereturn: " s "\n", __LINE__, a, b, c, d, e, f, g); return rv; }while(0) +#define ereturn8(rv, s, a, b, c, d, e, f, g, h) do{ fprintf(stderr, "[" __FILE__ ":%i] ereturn: " s "\n", __LINE__, a, b, c, d, e, f, g, h); return rv; }while(0) +#define ereturn9(rv, s, a, b, c, d, e, f, g, h, i) do{ fprintf(stderr, "[" __FILE__ ":%i] ereturn: " s "\n", __LINE__, a, b, c, d, e, f, g, h, i); return rv; }while(0) +#define ereturn10(rv, s, a, b, c, d, e, f, g, h, i, j) do{ fprintf(stderr, "[" __FILE__ ":%i] ereturn: " s "\n", __LINE__, a, b, c, d, e, f, g, h, i, j); return rv; }while(0) +#define ereturn11(rv, s, a, b, c, d, e, f, g, h, i, j, k) do{ fprintf(stderr, "[" __FILE__ ":%i] ereturn: " s "\n", __LINE__, a, b, c, d, e, f, g, h, i, j, k); return rv; }while(0) +#define ereturn12(rv, s, a, b, c, d, e, f, g, h, i, j, k, l) do{ fprintf(stderr, "[" __FILE__ ":%i] ereturn: " s "\n", __LINE__, a, b, c, d, e, f, g, h, i, j, k, l); return rv; }while(0) +#define ereturn13(rv, s, a, b, c, d, e, f, g, h, i, j, k, l, m) do{ fprintf(stderr, "[" __FILE__ ":%i] ereturn: " s "\n", __LINE__, a, b, c, d, e, f, g, h, i, j, k, l, m); return rv; }while(0) +#define ereturn14(rv, s, a, b, c, d, e, f, g, h, i, j, k, l, m, n) do{ fprintf(stderr, "[" __FILE__ ":%i] ereturn: " s "\n", __LINE__, a, b, c, d, e, f, g, h, i, j, k, l, m, n); return rv; }while(0) +#define ereturn15(rv, s, a, b, c, d, e, f, g, h, i, j, k, l, m, n, o) do{ fprintf(stderr, "[" __FILE__ ":%i] ereturn: " s "\n", __LINE__, a, b, c, d, e, f, g, h, i, j, k, l, m, n, o); return rv; }while(0) diff -r f2985e08589c -r 7e08477b0fc1 decoders/libmpg123/decode.c --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/decoders/libmpg123/decode.c Fri Jan 30 02:44:47 2009 -0500 @@ -0,0 +1,246 @@ +/* + decode.c: decoding samples... + + copyright 1995-2006 by the mpg123 project - free software under the terms of the LGPL 2.1 + see COPYING and AUTHORS files in distribution or http://mpg123.org + initially written by Michael Hipp +*/ + +#include "mpg123lib_intern.h" + +/* 8bit functions silenced for FLOATOUT */ + +int synth_1to1_8bit(real *bandPtr,int channel, mpg123_handle *fr, int final) +{ + sample_t samples_tmp[64]; + sample_t *tmp1 = samples_tmp + channel; + int i,ret; + + /* save buffer stuff, trick samples_tmp into there, decode, restore */ + unsigned char *samples = fr->buffer.data; + int pnt = fr->buffer.fill; + fr->buffer.data = (unsigned char*) samples_tmp; + fr->buffer.fill = 0; + ret = synth_1to1(bandPtr, channel, fr, 0); + fr->buffer.data = samples; /* restore original value */ + + samples += channel + pnt; + for(i=0;i<32;i++) { +#ifdef FLOATOUT + *samples = 0; +#else + *samples = fr->conv16to8[*tmp1>>AUSHIFT]; +#endif + samples += 2; + tmp1 += 2; + } + fr->buffer.fill = pnt + (final ? 64 : 0 ); + + return ret; +} + +int synth_1to1_8bit_mono(real *bandPtr, mpg123_handle *fr) +{ + sample_t samples_tmp[64]; + sample_t *tmp1 = samples_tmp; + int i,ret; + + /* save buffer stuff, trick samples_tmp into there, decode, restore */ + unsigned char *samples = fr->buffer.data; + int pnt = fr->buffer.fill; + fr->buffer.data = (unsigned char*) samples_tmp; + fr->buffer.fill = 0; + ret = synth_1to1(bandPtr,0, fr, 0); + fr->buffer.data = samples; /* restore original value */ + + samples += pnt; + for(i=0;i<32;i++) { +#ifdef FLOATOUT + *samples++ = 0; +#else + *samples++ = fr->conv16to8[*tmp1>>AUSHIFT]; +#endif + tmp1 += 2; + } + fr->buffer.fill = pnt + 32; + + return ret; +} + +int synth_1to1_8bit_mono2stereo(real *bandPtr, mpg123_handle *fr) +{ + sample_t samples_tmp[64]; + sample_t *tmp1 = samples_tmp; + int i,ret; + + /* save buffer stuff, trick samples_tmp into there, decode, restore */ + unsigned char *samples = fr->buffer.data; + int pnt = fr->buffer.fill; + fr->buffer.data = (unsigned char*) samples_tmp; + fr->buffer.fill = 0; + ret = synth_1to1(bandPtr, 0, fr, 0); + fr->buffer.data = samples; /* restore original value */ + + samples += pnt; + for(i=0;i<32;i++) { +#ifdef FLOATOUT + *samples++ = 0; + *samples++ = 0; +#else + *samples++ = fr->conv16to8[*tmp1>>AUSHIFT]; + *samples++ = fr->conv16to8[*tmp1>>AUSHIFT]; +#endif + tmp1 += 2; + } + fr->buffer.fill = pnt + 64; + + return ret; +} + +int synth_1to1_mono(real *bandPtr, mpg123_handle *fr) +{ + sample_t samples_tmp[64]; + sample_t *tmp1 = samples_tmp; + int i,ret; + + /* save buffer stuff, trick samples_tmp into there, decode, restore */ + unsigned char *samples = fr->buffer.data; + int pnt = fr->buffer.fill; + fr->buffer.data = (unsigned char*) samples_tmp; + fr->buffer.fill = 0; + ret = synth_1to1(bandPtr, 0, fr, 0); /* decode into samples_tmp */ + fr->buffer.data = samples; /* restore original value */ + + /* now append samples from samples_tmp */ + samples += pnt; /* just the next mem in frame buffer */ + for(i=0;i<32;i++){ + *( (sample_t *)samples) = *tmp1; + samples += sizeof(sample_t); + tmp1 += 2; + } + fr->buffer.fill = pnt + 32*sizeof(sample_t); + + return ret; +} + + +int synth_1to1_mono2stereo(real *bandPtr, mpg123_handle *fr) +{ + int i,ret; + unsigned char *samples = fr->buffer.data; + + ret = synth_1to1(bandPtr,0,fr,1); + samples += fr->buffer.fill - 64*sizeof(sample_t); + + for(i=0;i<32;i++) { + ((sample_t *)samples)[1] = ((sample_t *)samples)[0]; + samples+=2*sizeof(sample_t); + } + + return ret; +} + + +int synth_1to1(real *bandPtr,int channel,mpg123_handle *fr, int final) +{ + static const int step = 2; + sample_t *samples = (sample_t *) (fr->buffer.data+fr->buffer.fill); + + real *b0, **buf; /* (*buf)[0x110]; */ + int clip = 0; + int bo1; + + if(fr->have_eq_settings) do_equalizer(bandPtr,channel,fr->equalizer); + + if(!channel) { + fr->bo[0]--; + fr->bo[0] &= 0xf; + buf = fr->real_buffs[0]; + } + else { + samples++; + buf = fr->real_buffs[1]; + } + + if(fr->bo[0] & 0x1) { + b0 = buf[0]; + bo1 = fr->bo[0]; + dct64(buf[1]+((fr->bo[0]+1)&0xf),buf[0]+fr->bo[0],bandPtr); + } + else { + b0 = buf[1]; + bo1 = fr->bo[0]+1; + dct64(buf[0]+fr->bo[0],buf[1]+fr->bo[0]+1,bandPtr); + } + + + { + register int j; + real *window = opt_decwin(fr) + 16 - bo1; + + for (j=16;j;j--,window+=0x10,samples+=step) + { + real sum; + sum = REAL_MUL(*window++, *b0++); + sum -= REAL_MUL(*window++, *b0++); + sum += REAL_MUL(*window++, *b0++); + sum -= REAL_MUL(*window++, *b0++); + sum += REAL_MUL(*window++, *b0++); + sum -= REAL_MUL(*window++, *b0++); + sum += REAL_MUL(*window++, *b0++); + sum -= REAL_MUL(*window++, *b0++); + sum += REAL_MUL(*window++, *b0++); + sum -= REAL_MUL(*window++, *b0++); + sum += REAL_MUL(*window++, *b0++); + sum -= REAL_MUL(*window++, *b0++); + sum += REAL_MUL(*window++, *b0++); + sum -= REAL_MUL(*window++, *b0++); + sum += REAL_MUL(*window++, *b0++); + sum -= REAL_MUL(*window++, *b0++); + + WRITE_SAMPLE(samples,sum,clip); + } + + { + real sum; + sum = REAL_MUL(window[0x0], b0[0x0]); + sum += REAL_MUL(window[0x2], b0[0x2]); + sum += REAL_MUL(window[0x4], b0[0x4]); + sum += REAL_MUL(window[0x6], b0[0x6]); + sum += REAL_MUL(window[0x8], b0[0x8]); + sum += REAL_MUL(window[0xA], b0[0xA]); + sum += REAL_MUL(window[0xC], b0[0xC]); + sum += REAL_MUL(window[0xE], b0[0xE]); + WRITE_SAMPLE(samples,sum,clip); + b0-=0x10,window-=0x20,samples+=step; + } + window += bo1<<1; + + for (j=15;j;j--,b0-=0x20,window-=0x10,samples+=step) + { + real sum; + sum = -REAL_MUL(*(--window), *b0++); + sum -= REAL_MUL(*(--window), *b0++); + sum -= REAL_MUL(*(--window), *b0++); + sum -= REAL_MUL(*(--window), *b0++); + sum -= REAL_MUL(*(--window), *b0++); + sum -= REAL_MUL(*(--window), *b0++); + sum -= REAL_MUL(*(--window), *b0++); + sum -= REAL_MUL(*(--window), *b0++); + sum -= REAL_MUL(*(--window), *b0++); + sum -= REAL_MUL(*(--window), *b0++); + sum -= REAL_MUL(*(--window), *b0++); + sum -= REAL_MUL(*(--window), *b0++); + sum -= REAL_MUL(*(--window), *b0++); + sum -= REAL_MUL(*(--window), *b0++); + sum -= REAL_MUL(*(--window), *b0++); + sum -= REAL_MUL(*(--window), *b0++); + + WRITE_SAMPLE(samples,sum,clip); + } + } + + if(final) fr->buffer.fill += 64*sizeof(sample_t); + + return clip; +} diff -r f2985e08589c -r 7e08477b0fc1 decoders/libmpg123/decode.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/decoders/libmpg123/decode.h Fri Jan 30 02:44:47 2009 -0500 @@ -0,0 +1,67 @@ +/* + decode.h: common definitions for decode functions + + copyright 2007 by the mpg123 project - free software under the terms of the LGPL 2.1 + see COPYING and AUTHORS files in distribution or http://mpg123.org + initially written by Thomas Orgis, taking WRITE_SAMPLE from decode.c +*/ +#ifndef MPG123_DECODE_H +#define MPG123_DECODE_H + +#ifdef FLOATOUT +#define WRITE_SAMPLE(samples,sum,clip) *(samples) = sum +#define sample_t float +#else +#define WRITE_SAMPLE(samples,sum,clip) \ + if( (sum) > REAL_PLUS_32767) { *(samples) = 0x7fff; (clip)++; } \ + else if( (sum) < REAL_MINUS_32768) { *(samples) = -0x8000; (clip)++; } \ + else { *(samples) = REAL_TO_SHORT(sum); } +#define sample_t short +#endif + +#define NTOM_MAX 8 /* maximum allowed factor for upsampling */ +#define NTOM_MAX_FREQ 96000 /* maximum frequency to upsample to / downsample from */ +#define NTOM_MUL (32768) + +/* synth_1to1 in optimize.h, one should also use opts for these here... */ + +int synth_2to1 (real *,int, mpg123_handle*, int); +int synth_2to1_8bit (real *,int, mpg123_handle *,int); +int synth_2to1_mono (real *, mpg123_handle *); +int synth_2to1_mono2stereo (real *, mpg123_handle *); +int synth_2to1_8bit_mono (real *, mpg123_handle *); +int synth_2to1_8bit_mono2stereo (real *, mpg123_handle *); + +int synth_4to1 (real *,int, mpg123_handle*, int); +int synth_4to1_8bit (real *,int, mpg123_handle *,int); +int synth_4to1_mono (real *, mpg123_handle *); +int synth_4to1_mono2stereo (real *, mpg123_handle *); +int synth_4to1_8bit_mono (real *, mpg123_handle *); +int synth_4to1_8bit_mono2stereo (real *, mpg123_handle *); + +int synth_ntom (real *,int, mpg123_handle*, int); +int synth_ntom_8bit (real *,int, mpg123_handle *,int); +int synth_ntom_mono (real *, mpg123_handle *); +int synth_ntom_mono2stereo (real *, mpg123_handle *); +int synth_ntom_8bit_mono (real *, mpg123_handle *); +int synth_ntom_8bit_mono2stereo (real *, mpg123_handle *); + +int synth_ntom_set_step(mpg123_handle *fr); /* prepare ntom decoding */ +unsigned long ntom_val(mpg123_handle *fr, off_t frame); /* compute ntom_val for frame offset */ + +off_t ntom_frmouts(mpg123_handle *fr, off_t frame); +off_t ntom_ins2outs(mpg123_handle *fr, off_t ins); +off_t ntom_frameoff(mpg123_handle *fr, off_t soff); + +void init_layer3(void); +void init_layer3_stuff(mpg123_handle *fr); +void init_layer2(void); +void init_layer2_stuff(mpg123_handle *fr); +int make_conv16to8_table(mpg123_handle *fr); + +int do_layer3(mpg123_handle *fr); +int do_layer2(mpg123_handle *fr); +int do_layer1(mpg123_handle *fr); +void do_equalizer(real *bandPtr,int channel, real equalizer[2][32]); + +#endif diff -r f2985e08589c -r 7e08477b0fc1 decoders/libmpg123/decode_2to1.c --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/decoders/libmpg123/decode_2to1.c Fri Jan 30 02:44:47 2009 -0500 @@ -0,0 +1,248 @@ +/* + decode_2to1.c: ...with 2to1 downsampling + + copyright 1995-2006 by the mpg123 project - free software under the terms of the LGPL 2.1 + see COPYING and AUTHORS files in distribution or http://mpg123.org + initially written by Michael Hipp +*/ + +#include "mpg123lib_intern.h" + +int synth_2to1_8bit(real *bandPtr, int channel, mpg123_handle *fr, int final) +{ + sample_t samples_tmp[32]; + sample_t *tmp1 = samples_tmp + channel; + int i,ret; + + unsigned char *samples = fr->buffer.data; + int pnt = fr->buffer.fill; + fr->buffer.data = (unsigned char*) samples_tmp; + fr->buffer.fill = 0; + ret = synth_2to1(bandPtr,channel, fr, 0); + fr->buffer.data = samples; + + samples += channel + pnt; + for(i=0;i<16;i++) { +#ifdef FLOATOUT + *samples = 0; +#else + *samples = fr->conv16to8[*tmp1>>AUSHIFT]; +#endif + samples += 2; + tmp1 += 2; + } + fr->buffer.fill = pnt + (final ? 32 : 0); + + return ret; +} + +int synth_2to1_8bit_mono(real *bandPtr, mpg123_handle *fr) +{ + sample_t samples_tmp[32]; + sample_t *tmp1 = samples_tmp; + int i,ret; + + unsigned char *samples = fr->buffer.data; + int pnt = fr->buffer.fill; + fr->buffer.data = (unsigned char*) samples_tmp; + fr->buffer.fill = 0; + ret = synth_2to1(bandPtr, 0, fr, 0); + fr->buffer.data = samples; + + samples += pnt; + for(i=0;i<16;i++) { +#ifdef FLOATOUT + *samples++ = 0; +#else + *samples++ = fr->conv16to8[*tmp1>>AUSHIFT]; +#endif + tmp1 += 2; + } + fr->buffer.fill = pnt + 16; + + return ret; +} + + +int synth_2to1_8bit_mono2stereo(real *bandPtr, mpg123_handle *fr) +{ + sample_t samples_tmp[32]; + sample_t *tmp1 = samples_tmp; + int i,ret; + + unsigned char *samples = fr->buffer.data; + int pnt = fr->buffer.fill; + fr->buffer.data = (unsigned char*) samples_tmp; + fr->buffer.fill = 0; + ret = synth_2to1(bandPtr,0, fr, 0); + fr->buffer.data = samples; + + samples += pnt; + for(i=0;i<16;i++) { +#ifdef FLOATOUT + *samples++ = 0; + *samples++ = 0; +#else + *samples++ = fr->conv16to8[*tmp1>>AUSHIFT]; + *samples++ = fr->conv16to8[*tmp1>>AUSHIFT]; +#endif + tmp1 += 2; + } + fr->buffer.fill = pnt + 32; + + return ret; +} + +int synth_2to1_mono(real *bandPtr, mpg123_handle *fr) +{ + sample_t samples_tmp[32]; + sample_t *tmp1 = samples_tmp; + int i,ret; + + unsigned char *samples = fr->buffer.data; + int pnt = fr->buffer.fill; + fr->buffer.data = (unsigned char*) samples_tmp; + fr->buffer.fill = 0; + ret = synth_2to1(bandPtr, 0, fr, 0); + fr->buffer.data = samples; + + samples += pnt; + for(i=0;i<16;i++) { + *( (sample_t *) samples) = *tmp1; + samples += sizeof(sample_t); + tmp1 += 2; + } + fr->buffer.fill = pnt + 16*sizeof(sample_t); + + return ret; +} + +int synth_2to1_mono2stereo(real *bandPtr, mpg123_handle *fr) +{ + int i,ret; + unsigned char *samples = fr->buffer.data; + + ret = synth_2to1(bandPtr,0, fr, 1); + samples += fr->buffer.fill - 32*sizeof(sample_t); + + for(i=0;i<16;i++) { + ((sample_t *)samples)[1] = ((sample_t *)samples)[0]; + samples+=2*sizeof(sample_t); + } + + return ret; +} + +int synth_2to1(real *bandPtr,int channel, mpg123_handle *fr, int final) +{ + static const int step = 2; + sample_t *samples = (sample_t *) (fr->buffer.data + fr->buffer.fill); + + real *b0, **buf; /* (*buf)[0x110]; */ + int clip = 0; + int bo1; + + if(fr->have_eq_settings) do_equalizer(bandPtr,channel,fr->equalizer); + + if(!channel) { + fr->bo[0]--; + fr->bo[0] &= 0xf; + buf = fr->real_buffs[0]; + } + else { + samples++; + buf = fr->real_buffs[1]; + } + + if(fr->bo[0] & 0x1) { + b0 = buf[0]; + bo1 = fr->bo[0]; + opt_dct64(fr)(buf[1]+((fr->bo[0]+1)&0xf),buf[0]+fr->bo[0],bandPtr); + } + else { + b0 = buf[1]; + bo1 = fr->bo[0]+1; + opt_dct64(fr)(buf[0]+fr->bo[0],buf[1]+fr->bo[0]+1,bandPtr); + } + + { + register int j; + real *window = opt_decwin(fr) + 16 - bo1; + + for (j=8;j;j--,b0+=0x10,window+=0x30) + { + real sum; + sum = REAL_MUL(*window++, *b0++); + sum -= REAL_MUL(*window++, *b0++); + sum += REAL_MUL(*window++, *b0++); + sum -= REAL_MUL(*window++, *b0++); + sum += REAL_MUL(*window++, *b0++); + sum -= REAL_MUL(*window++, *b0++); + sum += REAL_MUL(*window++, *b0++); + sum -= REAL_MUL(*window++, *b0++); + sum += REAL_MUL(*window++, *b0++); + sum -= REAL_MUL(*window++, *b0++); + sum += REAL_MUL(*window++, *b0++); + sum -= REAL_MUL(*window++, *b0++); + sum += REAL_MUL(*window++, *b0++); + sum -= REAL_MUL(*window++, *b0++); + sum += REAL_MUL(*window++, *b0++); + sum -= REAL_MUL(*window++, *b0++); + + WRITE_SAMPLE(samples,sum,clip); samples += step; +#if 0 + WRITE_SAMPLE(samples,sum,clip); samples += step; +#endif + } + + { + real sum; + sum = REAL_MUL(window[0x0], b0[0x0]); + sum += REAL_MUL(window[0x2], b0[0x2]); + sum += REAL_MUL(window[0x4], b0[0x4]); + sum += REAL_MUL(window[0x6], b0[0x6]); + sum += REAL_MUL(window[0x8], b0[0x8]); + sum += REAL_MUL(window[0xA], b0[0xA]); + sum += REAL_MUL(window[0xC], b0[0xC]); + sum += REAL_MUL(window[0xE], b0[0xE]); + WRITE_SAMPLE(samples,sum,clip); samples += step; +#if 0 + WRITE_SAMPLE(samples,sum,clip); samples += step; +#endif + b0-=0x20,window-=0x40; + } + window += bo1<<1; + + for (j=7;j;j--,b0-=0x30,window-=0x30) + { + real sum; + sum = REAL_MUL(-*(--window), *b0++); + sum -= REAL_MUL(*(--window), *b0++); + sum -= REAL_MUL(*(--window), *b0++); + sum -= REAL_MUL(*(--window), *b0++); + sum -= REAL_MUL(*(--window), *b0++); + sum -= REAL_MUL(*(--window), *b0++); + sum -= REAL_MUL(*(--window), *b0++); + sum -= REAL_MUL(*(--window), *b0++); + sum -= REAL_MUL(*(--window), *b0++); + sum -= REAL_MUL(*(--window), *b0++); + sum -= REAL_MUL(*(--window), *b0++); + sum -= REAL_MUL(*(--window), *b0++); + sum -= REAL_MUL(*(--window), *b0++); + sum -= REAL_MUL(*(--window), *b0++); + sum -= REAL_MUL(*(--window), *b0++); + sum -= REAL_MUL(*(--window), *b0++); + + WRITE_SAMPLE(samples,sum,clip); samples += step; +#if 0 + WRITE_SAMPLE(samples,sum,clip); samples += step; +#endif + } + } + + if(final) fr->buffer.fill += 32*sizeof(sample_t); + + return clip; +} + + diff -r f2985e08589c -r 7e08477b0fc1 decoders/libmpg123/decode_3dnow.S --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/decoders/libmpg123/decode_3dnow.S Fri Jan 30 02:44:47 2009 -0500 @@ -0,0 +1,285 @@ +/* + decode_3dnow.s - 3DNow! optimized synth_1to1() + + copyright ?-2007 by the mpg123 project - free software under the terms of the LGPL 2.1 + see COPYING and AUTHORS files in distribution or http://mpg123.org + initially written by Syuuhei Kashiyama + + This code based 'decode_3dnow.s' by Syuuhei Kashiyama + ,only two types of changes have been made: + + - remove PREFETCH instruction for speedup + - change function name for support 3DNow! automatic detect + - femms moved to before 'call dct64_3dnow' + + You can find Kashiyama's original 3dnow! support patch + (for mpg123-0.59o) at + http://user.ecc.u-tokyo.ac.jp/~g810370/linux-simd/ (Japanese). + + by KIMURA Takuhiro - until 31.Mar.1999 + - after 1.Apr.1999 + + + + Replacement of synth_1to1() with AMD's 3DNow! SIMD operations support + + Syuuhei Kashiyama + + The author of this program disclaim whole expressed or implied + warranties with regard to this program, and in no event shall the + author of this program liable to whatever resulted from the use of + this program. Use it at your own risk. +*/ + +#include "mangle.h" + +.text +.globl ASM_NAME(synth_1to1_3dnow_asm) +/* int synth_1to1_3dnow_asm(real *bandPtr, int channel, unsigned char *out, unsigned char *buffs, int *bo, real *decwin); */ +ASM_NAME(synth_1to1_3dnow_asm): + subl $24,%esp + pushl %ebp + pushl %edi + xorl %ebp,%ebp + pushl %esi + pushl %ebx +/* stack old: 0=ebx 4=esi 8=edi 12=ebp 16,20,24,28,32,36=local 40=back 44=bandptr 48=channel 52=out 56=pnt */ +/* stack new: 0=ebx 4=esi 8=edi 12=ebp 16,20,24,28,32,36=local 40=back 44=bandptr 48=channel 52=out 56=buffs 60=bo 64=decwin */ +#define OUT 52(%esp) +#define CHANNEL 48(%esp) +#define BANDPTR 44(%esp) +#define BUFFS 56(%esp) +#define BO 60(%esp) +#define DECWIN 64(%esp) +#define LOCAL0 16(%esp) +#define LOCAL1 20(%esp) +#define LOCAL5 36(%esp) + movl OUT,%esi + movl %esi,LOCAL0 /* save buffer start (samples pointer) to another local var */ + movl CHANNEL,%ebx + movl BO,%esi /* bo address */ + movl (%esi),%edx /* bo value */ + + femms + testl %ebx,%ebx + jne .L26 +/* if(!channel) */ + decl %edx /* --bo */ + andl $15,%edx + movl %edx,(%esi) /* save bo */ + movl BUFFS,%ecx + jmp .L27 +.L26: /* if(channel) */ + addl $2,LOCAL0 /* samples++ */ + movl BUFFS,%ecx + addl $2176,%ecx +.L27: +/* edx (and it's lower end) still holds bo value */ + testb $1,%dl /* bo & 0x1 */ + je .L28 + movl %edx,LOCAL5 + movl %ecx,%ebx + movl BANDPTR,%esi + movl %edx,%edi + pushl %esi + sall $2,%edi + movl %ebx,%eax + movl %edi,24(%esp) /* LOCAL1, actually */ + addl %edi,%eax + pushl %eax + movl %edx,%eax + incl %eax + andl $15,%eax + leal 1088(,%eax,4),%eax + addl %ebx,%eax + pushl %eax + call ASM_NAME(dct64_3dnow) + addl $12,%esp + jmp .L29 +.L28: + leal 1(%edx),%esi + movl BANDPTR,%edi + movl %esi,LOCAL5 + leal 1092(%ecx,%edx,4),%eax + pushl %edi + leal 1088(%ecx),%ebx + pushl %eax + sall $2,%esi + leal (%ecx,%edx,4),%eax + pushl %eax + call ASM_NAME(dct64_3dnow) + addl $12,%esp + movl %esi,LOCAL1 +.L29: + movl DECWIN,%edx + addl $64,%edx + movl $16,%ecx + subl LOCAL1,%edx + movl LOCAL0,%edi + + movq (%edx),%mm0 + movq (%ebx),%mm1 + ALIGN32 +.L33: + movq 8(%edx),%mm3 + pfmul %mm1,%mm0 + movq 8(%ebx),%mm4 + movq 16(%edx),%mm5 + pfmul %mm4,%mm3 + movq 16(%ebx),%mm6 + pfadd %mm3,%mm0 + movq 24(%edx),%mm1 + pfmul %mm6,%mm5 + movq 24(%ebx),%mm2 + pfadd %mm5,%mm0 + movq 32(%edx),%mm3 + pfmul %mm2,%mm1 + movq 32(%ebx),%mm4 + pfadd %mm1,%mm0 + movq 40(%edx),%mm5 + pfmul %mm4,%mm3 + movq 40(%ebx),%mm6 + pfadd %mm3,%mm0 + movq 48(%edx),%mm1 + pfmul %mm6,%mm5 + movq 48(%ebx),%mm2 + pfadd %mm0,%mm5 + movq 56(%edx),%mm3 + pfmul %mm1,%mm2 + movq 56(%ebx),%mm4 + pfadd %mm5,%mm2 + addl $64,%ebx + subl $-128,%edx + movq (%edx),%mm0 + pfmul %mm4,%mm3 + movq (%ebx),%mm1 + pfadd %mm3,%mm2 + movq %mm2,%mm3 + psrlq $32,%mm3 + pfsub %mm3,%mm2 + incl %ebp + pf2id %mm2,%mm2 + packssdw %mm2,%mm2 + movd %mm2,%eax + movw %ax,0(%edi) + addl $4,%edi + decl %ecx + jnz .L33 + + movd (%ebx),%mm0 + movd (%edx),%mm1 + punpckldq 8(%ebx),%mm0 + punpckldq 8(%edx),%mm1 + movd 16(%ebx),%mm3 + movd 16(%edx),%mm4 + pfmul %mm1,%mm0 + punpckldq 24(%ebx),%mm3 + punpckldq 24(%edx),%mm4 + movd 32(%ebx),%mm5 + movd 32(%edx),%mm6 + pfmul %mm4,%mm3 + punpckldq 40(%ebx),%mm5 + punpckldq 40(%edx),%mm6 + pfadd %mm3,%mm0 + movd 48(%ebx),%mm1 + movd 48(%edx),%mm2 + pfmul %mm6,%mm5 + punpckldq 56(%ebx),%mm1 + punpckldq 56(%edx),%mm2 + pfadd %mm5,%mm0 + pfmul %mm2,%mm1 + pfadd %mm1,%mm0 + pfacc %mm1,%mm0 + pf2id %mm0,%mm0 + packssdw %mm0,%mm0 + movd %mm0,%eax + movw %ax,0(%edi) + incl %ebp + movl LOCAL5,%esi + addl $-64,%ebx + movl $15,%ebp + addl $4,%edi + leal -128(%edx,%esi,8),%edx + + movl $15,%ecx + movd (%ebx),%mm0 + movd -4(%edx),%mm1 + punpckldq 4(%ebx),%mm0 + punpckldq -8(%edx),%mm1 + ALIGN32 +.L46: + movd 8(%ebx),%mm3 + movd -12(%edx),%mm4 + pfmul %mm1,%mm0 + punpckldq 12(%ebx),%mm3 + punpckldq -16(%edx),%mm4 + movd 16(%ebx),%mm5 + movd -20(%edx),%mm6 + pfmul %mm4,%mm3 + punpckldq 20(%ebx),%mm5 + punpckldq -24(%edx),%mm6 + pfadd %mm3,%mm0 + movd 24(%ebx),%mm1 + movd -28(%edx),%mm2 + pfmul %mm6,%mm5 + punpckldq 28(%ebx),%mm1 + punpckldq -32(%edx),%mm2 + pfadd %mm5,%mm0 + movd 32(%ebx),%mm3 + movd -36(%edx),%mm4 + pfmul %mm2,%mm1 + punpckldq 36(%ebx),%mm3 + punpckldq -40(%edx),%mm4 + pfadd %mm1,%mm0 + movd 40(%ebx),%mm5 + movd -44(%edx),%mm6 + pfmul %mm4,%mm3 + punpckldq 44(%ebx),%mm5 + punpckldq -48(%edx),%mm6 + pfadd %mm3,%mm0 + movd 48(%ebx),%mm1 + movd -52(%edx),%mm2 + pfmul %mm6,%mm5 + punpckldq 52(%ebx),%mm1 + punpckldq -56(%edx),%mm2 + pfadd %mm0,%mm5 + movd 56(%ebx),%mm3 + movd -60(%edx),%mm4 + pfmul %mm2,%mm1 + punpckldq 60(%ebx),%mm3 + punpckldq (%edx),%mm4 + pfadd %mm1,%mm5 + addl $-128,%edx + addl $-64,%ebx + movd (%ebx),%mm0 + movd -4(%edx),%mm1 + pfmul %mm4,%mm3 + punpckldq 4(%ebx),%mm0 + punpckldq -8(%edx),%mm1 + pfadd %mm5,%mm3 + pfacc %mm3,%mm3 + incl %ebp + pf2id %mm3,%mm3 + movd %mm3,%eax + negl %eax + movd %eax,%mm3 + packssdw %mm3,%mm3 + movd %mm3,%eax + movw %ax,(%edi) + addl $4,%edi + decl %ecx + jnz .L46 + + femms + movl %ebp,%eax + popl %ebx + popl %esi + popl %edi + popl %ebp + addl $24,%esp + ret + +/* Mark non-executable stack. */ +#if defined(__linux__) && defined(__ELF__) +.section .note.GNU-stack,"",%progbits +#endif diff -r f2985e08589c -r 7e08477b0fc1 decoders/libmpg123/decode_3dnowext.S --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/decoders/libmpg123/decode_3dnowext.S Fri Jan 30 02:44:47 2009 -0500 @@ -0,0 +1,9 @@ +#include "mangle.h" +#define MPL_DCT64 ASM_NAME(dct64_3dnowext) +#define SYNTH_NAME ASM_NAME(synth_1to1_3dnowext_asm) +#include "decode_sse3d.h" + +/* Mark non-executable stack. */ +#if defined(__linux__) && defined(__ELF__) +.section .note.GNU-stack,"",%progbits +#endif diff -r f2985e08589c -r 7e08477b0fc1 decoders/libmpg123/decode_4to1.c --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/decoders/libmpg123/decode_4to1.c Fri Jan 30 02:44:47 2009 -0500 @@ -0,0 +1,257 @@ +/* + decode_4to1.c: ...with 4to1 downsampling / decoding of every 4th sample + + copyright 1995-2006 by the mpg123 project - free software under the terms of the LGPL 2.1 + see COPYING and AUTHORS files in distribution or http://mpg123.org + initially written by Michael Hipp + + dunno why it sounds THIS annoying (maybe we should adapt the window?) + absolutely not optimized for this operation +*/ + +#include "mpg123lib_intern.h" + +int synth_4to1_8bit(real *bandPtr, int channel, mpg123_handle *fr, int final) +{ + sample_t samples_tmp[16]; + sample_t *tmp1 = samples_tmp + channel; + int i,ret; + + unsigned char *samples = fr->buffer.data; + int pnt = fr->buffer.fill; + fr->buffer.data = (unsigned char*) samples_tmp; + fr->buffer.fill = 0; + ret = synth_4to1(bandPtr,channel, fr, 0); + fr->buffer.data = samples; + + samples += channel + pnt; + for(i=0;i<8;i++) { +#ifdef FLOATOUT + *samples = 0; +#else + *samples = fr->conv16to8[*tmp1>>AUSHIFT]; +#endif + samples += 2; + tmp1 += 2; + } + fr->buffer.fill = pnt + (final ? 16 : 0); + + return ret; +} + +int synth_4to1_8bit_mono(real *bandPtr, mpg123_handle *fr) +{ + sample_t samples_tmp[16]; + sample_t *tmp1 = samples_tmp; + int i,ret; + + unsigned char *samples = fr->buffer.data; + int pnt = fr->buffer.fill; + fr->buffer.data = (unsigned char*) samples_tmp; + fr->buffer.fill = 0; + ret = synth_4to1(bandPtr, 0, fr, 0); + fr->buffer.data = samples; + + samples += pnt; + for(i=0;i<8;i++) { +#ifdef FLOATOUT + *samples++ = 0; +#else + *samples++ = fr->conv16to8[*tmp1>>AUSHIFT]; +#endif + tmp1 += 2; + } + fr->buffer.fill = pnt + 8; + + return ret; +} + + +int synth_4to1_8bit_mono2stereo(real *bandPtr, mpg123_handle *fr) +{ + sample_t samples_tmp[16]; + sample_t *tmp1 = samples_tmp; + int i,ret; + + unsigned char *samples = fr->buffer.data; + int pnt = fr->buffer.fill; + fr->buffer.data = (unsigned char*) samples_tmp; + fr->buffer.fill = 0; + ret = synth_4to1(bandPtr, 0, fr, 0); + fr->buffer.data = samples; + + samples += pnt; + for(i=0;i<8;i++) { +#ifdef FLOATOUT + *samples++ = 0; + *samples++ = 0; +#else + *samples++ = fr->conv16to8[*tmp1>>AUSHIFT]; + *samples++ = fr->conv16to8[*tmp1>>AUSHIFT]; +#endif + tmp1 += 2; + } + fr->buffer.fill = pnt + 16; + + return ret; +} + +int synth_4to1_mono(real *bandPtr, mpg123_handle *fr) +{ + sample_t samples_tmp[16]; + sample_t *tmp1 = samples_tmp; + int i,ret; + + unsigned char *samples = fr->buffer.data; + int pnt = fr->buffer.fill; + fr->buffer.data = (unsigned char*) samples_tmp; + fr->buffer.fill = 0; + ret = synth_4to1(bandPtr, 0, fr, 0); + fr->buffer.data = samples; + + samples += pnt; + for(i=0;i<8;i++) { + *( (sample_t *)samples) = *tmp1; + samples += sizeof(sample_t); + tmp1 += 2; + } + fr->buffer.fill = pnt + 8*sizeof(sample_t); + + return ret; +} + +int synth_4to1_mono2stereo(real *bandPtr, mpg123_handle *fr) +{ + int i,ret; + unsigned char *samples = fr->buffer.data; + + ret = synth_4to1(bandPtr, 0, fr, 1); + samples += fr->buffer.fill - 16*sizeof(sample_t); + + for(i=0;i<8;i++) { + ((sample_t *)samples)[1] = ((sample_t *)samples)[0]; + samples+=2*sizeof(sample_t); + } + + return ret; +} + +int synth_4to1(real *bandPtr,int channel, mpg123_handle *fr, int final) +{ + static const int step = 2; + sample_t *samples = (sample_t *) (fr->buffer.data + fr->buffer.fill); + + real *b0, **buf; /* (*buf)[0x110]; */ + int clip = 0; + int bo1; + + if(fr->have_eq_settings) do_equalizer(bandPtr,channel,fr->equalizer); + + if(!channel) { + fr->bo[0]--; + fr->bo[0] &= 0xf; + buf = fr->real_buffs[0]; + } + else { + samples++; + buf = fr->real_buffs[1]; + } + + if(fr->bo[0] & 0x1) { + b0 = buf[0]; + bo1 = fr->bo[0]; + opt_dct64(fr)(buf[1]+((fr->bo[0]+1)&0xf),buf[0]+fr->bo[0],bandPtr); + } + else { + b0 = buf[1]; + bo1 = fr->bo[0]+1; + opt_dct64(fr)(buf[0]+fr->bo[0],buf[1]+fr->bo[0]+1,bandPtr); + } + + { + register int j; + real *window = opt_decwin(fr) + 16 - bo1; + + for (j=4;j;j--,b0+=0x30,window+=0x70) + { + real sum; + sum = REAL_MUL(*window++, *b0++); + sum -= REAL_MUL(*window++, *b0++); + sum += REAL_MUL(*window++, *b0++); + sum -= REAL_MUL(*window++, *b0++); + sum += REAL_MUL(*window++, *b0++); + sum -= REAL_MUL(*window++, *b0++); + sum += REAL_MUL(*window++, *b0++); + sum -= REAL_MUL(*window++, *b0++); + sum += REAL_MUL(*window++, *b0++); + sum -= REAL_MUL(*window++, *b0++); + sum += REAL_MUL(*window++, *b0++); + sum -= REAL_MUL(*window++, *b0++); + sum += REAL_MUL(*window++, *b0++); + sum -= REAL_MUL(*window++, *b0++); + sum += REAL_MUL(*window++, *b0++); + sum -= REAL_MUL(*window++, *b0++); + + WRITE_SAMPLE(samples,sum,clip); samples += step; +#if 0 + WRITE_SAMPLE(samples,sum,clip); samples += step; + WRITE_SAMPLE(samples,sum,clip); samples += step; + WRITE_SAMPLE(samples,sum,clip); samples += step; +#endif + } + + { + real sum; + sum = REAL_MUL(window[0x0], b0[0x0]); + sum += REAL_MUL(window[0x2], b0[0x2]); + sum += REAL_MUL(window[0x4], b0[0x4]); + sum += REAL_MUL(window[0x6], b0[0x6]); + sum += REAL_MUL(window[0x8], b0[0x8]); + sum += REAL_MUL(window[0xA], b0[0xA]); + sum += REAL_MUL(window[0xC], b0[0xC]); + sum += REAL_MUL(window[0xE], b0[0xE]); + WRITE_SAMPLE(samples,sum,clip); samples += step; +#if 0 + WRITE_SAMPLE(samples,sum,clip); samples += step; + WRITE_SAMPLE(samples,sum,clip); samples += step; + WRITE_SAMPLE(samples,sum,clip); samples += step; +#endif + b0-=0x40,window-=0x80; + } + window += bo1<<1; + + for (j=3;j;j--,b0-=0x50,window-=0x70) + { + real sum; + sum = REAL_MUL(-*(--window), *b0++); + sum -= REAL_MUL(*(--window), *b0++); + sum -= REAL_MUL(*(--window), *b0++); + sum -= REAL_MUL(*(--window), *b0++); + sum -= REAL_MUL(*(--window), *b0++); + sum -= REAL_MUL(*(--window), *b0++); + sum -= REAL_MUL(*(--window), *b0++); + sum -= REAL_MUL(*(--window), *b0++); + sum -= REAL_MUL(*(--window), *b0++); + sum -= REAL_MUL(*(--window), *b0++); + sum -= REAL_MUL(*(--window), *b0++); + sum -= REAL_MUL(*(--window), *b0++); + sum -= REAL_MUL(*(--window), *b0++); + sum -= REAL_MUL(*(--window), *b0++); + sum -= REAL_MUL(*(--window), *b0++); + sum -= REAL_MUL(*(--window), *b0++); + + WRITE_SAMPLE(samples,sum,clip); samples += step; +#if 0 + WRITE_SAMPLE(samples,sum,clip); samples += step; + WRITE_SAMPLE(samples,sum,clip); samples += step; + WRITE_SAMPLE(samples,sum,clip); samples += step; +#endif + } + } + + if(final) fr->buffer.fill += 16*sizeof(sample_t); + + return clip; +} + + diff -r f2985e08589c -r 7e08477b0fc1 decoders/libmpg123/decode_altivec.c --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/decoders/libmpg123/decode_altivec.c Fri Jan 30 02:44:47 2009 -0500 @@ -0,0 +1,606 @@ +/* + decode.c: decoding samples... + + copyright 1995-2006 by the mpg123 project - free software under the terms of the LGPL 2.1 + see COPYING and AUTHORS files in distribution or http://mpg123.org + initially written by Michael Hipp + altivec optimization by tmkk +*/ + +#include "mpg123lib_intern.h" + +#ifndef __APPLE__ +#include +#endif + +#define WRITE_SAMPLE(samples,sum,clip) \ + if( (sum) > REAL_PLUS_32767) { *(samples) = 0x7fff; (clip)++; } \ + else if( (sum) < REAL_MINUS_32768) { *(samples) = -0x8000; (clip)++; } \ + else { *(samples) = REAL_TO_SHORT(sum); } + +int synth_1to1_8bit_altivec(real *bandPtr,int channel, mpg123_handle *fr, int final) +{ + short samples_tmp[64]; + short *tmp1 = samples_tmp + channel; + int i,ret; + + unsigned char *samples = fr->buffer.data; + int pnt = fr->buffer.fill; + fr->buffer.data = (unsigned char*) samples_tmp; + fr->buffer.fill = 0; + ret = synth_1to1_altivec(bandPtr, channel, fr, 0); + fr->buffer.data = samples; + + samples += channel + pnt; + for(i=0;i<32;i++) { + *samples = fr->conv16to8[*tmp1>>AUSHIFT]; + samples += 2; + tmp1 += 2; + } + fr->buffer.fill = pnt + (final ? 64 : 0 ); + + return ret; +} + +int synth_1to1_8bit_mono_altivec(real *bandPtr, mpg123_handle *fr) +{ + sample_t samples_tmp[64]; + sample_t *tmp1 = samples_tmp; + int i,ret; + + /* save buffer stuff, trick samples_tmp into there, decode, restore */ + unsigned char *samples = fr->buffer.data; + int pnt = fr->buffer.fill; + fr->buffer.data = (unsigned char*) samples_tmp; + fr->buffer.fill = 0; + ret = synth_1to1_altivec(bandPtr,0, fr, 0); + fr->buffer.data = samples; /* restore original value */ + + samples += pnt; + for(i=0;i<32;i++) { +#ifdef FLOATOUT + *samples++ = 0; +#else + *samples++ = fr->conv16to8[*tmp1>>AUSHIFT]; +#endif + tmp1 += 2; + } + fr->buffer.fill = pnt + 32; + + return ret; +} + +int synth_1to1_8bit_mono2stereo_altivec(real *bandPtr, mpg123_handle *fr) +{ + sample_t samples_tmp[64]; + sample_t *tmp1 = samples_tmp; + int i,ret; + + /* save buffer stuff, trick samples_tmp into there, decode, restore */ + unsigned char *samples = fr->buffer.data; + int pnt = fr->buffer.fill; + fr->buffer.data = (unsigned char*) samples_tmp; + fr->buffer.fill = 0; + ret = synth_1to1_altivec(bandPtr, 0, fr, 0); + fr->buffer.data = samples; /* restore original value */ + + samples += pnt; + for(i=0;i<32;i++) { +#ifdef FLOATOUT + *samples++ = 0; + *samples++ = 0; +#else + *samples++ = fr->conv16to8[*tmp1>>AUSHIFT]; + *samples++ = fr->conv16to8[*tmp1>>AUSHIFT]; +#endif + tmp1 += 2; + } + fr->buffer.fill = pnt + 64; + + return ret; +} + +int synth_1to1_mono_altivec(real *bandPtr, mpg123_handle *fr) +{ + sample_t samples_tmp[64]; + sample_t *tmp1 = samples_tmp; + int i,ret; + + /* save buffer stuff, trick samples_tmp into there, decode, restore */ + unsigned char *samples = fr->buffer.data; + int pnt = fr->buffer.fill; + fr->buffer.data = (unsigned char*) samples_tmp; + fr->buffer.fill = 0; + ret = synth_1to1_altivec(bandPtr, 0, fr, 0); /* decode into samples_tmp */ + fr->buffer.data = samples; /* restore original value */ + + /* now append samples from samples_tmp */ + samples += pnt; /* just the next mem in frame buffer */ + for(i=0;i<32;i++){ + *( (sample_t *)samples) = *tmp1; + samples += sizeof(sample_t); + tmp1 += 2; + } + fr->buffer.fill = pnt + 32*sizeof(sample_t); + + return ret; +} + + +int synth_1to1_mono2stereo_altivec(real *bandPtr, mpg123_handle *fr) +{ + int i,ret; + unsigned char *samples = fr->buffer.data; + + ret = synth_1to1_altivec(bandPtr,0,fr,1); + samples += fr->buffer.fill - 64*sizeof(sample_t); + + for(i=0;i<32;i++) { + ((sample_t *)samples)[1] = ((sample_t *)samples)[0]; + samples+=2*sizeof(sample_t); + } + + return ret; +} + + +int synth_1to1_altivec(real *bandPtr,int channel,mpg123_handle *fr, int final) +{ + static const int step = 2; + sample_t *samples = (sample_t *) (fr->buffer.data+fr->buffer.fill); + + real *b0, **buf; + int clip = 0; + int bo1; + + if(fr->have_eq_settings) do_equalizer(bandPtr,channel,fr->equalizer); + + if(!channel) { + fr->bo[0]--; + fr->bo[0] &= 0xf; + buf = fr->real_buffs[0]; + } + else { + samples++; + buf = fr->real_buffs[1]; + } + + if(fr->bo[0] & 0x1) { + b0 = buf[0]; + bo1 = fr->bo[0]; + dct64_altivec(buf[1]+((fr->bo[0]+1)&0xf),buf[0]+fr->bo[0],bandPtr); + } + else { + b0 = buf[1]; + bo1 = fr->bo[0]+1; + dct64_altivec(buf[0]+fr->bo[0],buf[1]+fr->bo[0]+1,bandPtr); + } + + + { + register int j; + real *window = opt_decwin(fr) + 16 - bo1; + + ALIGNED(16) int clip_tmp[4]; + vector float v1,v2,v3,v4,v5,v6,v7,v8,v9; + vector unsigned char vperm1,vperm2,vperm3,vperm4,vperm5; + vector float vsum,vsum2,vsum3,vsum4,vmin,vmax; + vector signed int vclip; + vector signed short vsample1,vsample2; + vclip = vec_xor(vclip,vclip); +#ifdef __APPLE__ + vmax = (vector float)(32767.0f); + vmin = (vector float)(-32768.0f); + vperm5 = (vector unsigned char)(0,1,18,19,2,3,22,23,4,5,26,27,6,7,30,31); +#else + vmax = (vector float){32767.0f,32767.0f,32767.0f,32767.0f}; + vmin = (vector float){-32768.0f,-32768.0f,-32768.0f,-32768.0f}; + vperm5 = (vector unsigned char){0,1,18,19,2,3,22,23,4,5,26,27,6,7,30,31}; +#endif + + vperm1 = vec_lvsl(0,window); + vperm3 = vec_lvsl(0,samples); + vperm4 = vec_lvsr(0,samples); + for (j=4;j;j--) + { + vsum = vec_xor(vsum,vsum); + vsum2 = vec_xor(vsum2,vsum2); + vsum3 = vec_xor(vsum3,vsum3); + vsum4 = vec_xor(vsum4,vsum4); + v1 = vec_ld(0,window); + v2 = vec_ld(16,window); + v3 = vec_ld(32,window); + v4 = vec_ld(48,window); + v5 = vec_ld(64,window); + v1 = vec_perm(v1,v2,vperm1); + v6 = vec_ld(0,b0); + v2 = vec_perm(v2,v3,vperm1); + v7 = vec_ld(16,b0); + v3 = vec_perm(v3,v4,vperm1); + v8 = vec_ld(32,b0); + v4 = vec_perm(v4,v5,vperm1); + v9 = vec_ld(48,b0); + + vsum = vec_madd(v1,v6,vsum); + vsum = vec_madd(v2,v7,vsum); + vsum = vec_madd(v3,v8,vsum); + vsum = vec_madd(v4,v9,vsum); + + window += 32; + b0 += 16; + + v1 = vec_ld(0,window); + v2 = vec_ld(16,window); + v3 = vec_ld(32,window); + v4 = vec_ld(48,window); + v5 = vec_ld(64,window); + v1 = vec_perm(v1,v2,vperm1); + v6 = vec_ld(0,b0); + v2 = vec_perm(v2,v3,vperm1); + v7 = vec_ld(16,b0); + v3 = vec_perm(v3,v4,vperm1); + v8 = vec_ld(32,b0); + v4 = vec_perm(v4,v5,vperm1); + v9 = vec_ld(48,b0); + + vsum2 = vec_madd(v1,v6,vsum2); + vsum2 = vec_madd(v2,v7,vsum2); + vsum2 = vec_madd(v3,v8,vsum2); + vsum2 = vec_madd(v4,v9,vsum2); + + window += 32; + b0 += 16; + + v1 = vec_ld(0,window); + v2 = vec_ld(16,window); + v3 = vec_ld(32,window); + v4 = vec_ld(48,window); + v5 = vec_ld(64,window); + v1 = vec_perm(v1,v2,vperm1); + v6 = vec_ld(0,b0); + v2 = vec_perm(v2,v3,vperm1); + v7 = vec_ld(16,b0); + v3 = vec_perm(v3,v4,vperm1); + v8 = vec_ld(32,b0); + v4 = vec_perm(v4,v5,vperm1); + v9 = vec_ld(48,b0); + + vsum3 = vec_madd(v1,v6,vsum3); + vsum3 = vec_madd(v2,v7,vsum3); + vsum3 = vec_madd(v3,v8,vsum3); + vsum3 = vec_madd(v4,v9,vsum3); + + window += 32; + b0 += 16; + + v1 = vec_ld(0,window); + v2 = vec_ld(16,window); + v3 = vec_ld(32,window); + v4 = vec_ld(48,window); + v5 = vec_ld(64,window); + v1 = vec_perm(v1,v2,vperm1); + v6 = vec_ld(0,b0); + v2 = vec_perm(v2,v3,vperm1); + v7 = vec_ld(16,b0); + v3 = vec_perm(v3,v4,vperm1); + v8 = vec_ld(32,b0); + v4 = vec_perm(v4,v5,vperm1); + v9 = vec_ld(48,b0); + + vsum4 = vec_madd(v1,v6,vsum4); + vsum4 = vec_madd(v2,v7,vsum4); + vsum4 = vec_madd(v3,v8,vsum4); + vsum4 = vec_madd(v4,v9,vsum4); + + window += 32; + b0 += 16; + + v1 = vec_mergeh(vsum,vsum3); + v2 = vec_mergeh(vsum2,vsum4); + v3 = vec_mergel(vsum,vsum3); + v4 = vec_mergel(vsum2,vsum4); + v5 = vec_mergeh(v1,v2); + v6 = vec_mergel(v1,v2); + v7 = vec_mergeh(v3,v4); + v8 = vec_mergel(v3,v4); + + vsum = vec_sub(v5,v6); + v9 = vec_sub(v7,v8); + vsum = vec_add(vsum,v9); + + v3 = (vector float)vec_cts(vsum,0); + v1 = (vector float)vec_cmpgt(vsum,vmax); + v2 = (vector float)vec_cmplt(vsum,vmin); + vsample1 = vec_ld(0,samples); + vsample2 = vec_ld(15,samples); + v3 = (vector float)vec_packs((vector signed int)v3,(vector signed int)v3); + v4 = (vector float)vec_perm(vsample1,vsample2,vperm3); + v5 = (vector float)vec_perm(v3,v4,vperm5); + v6 = (vector float)vec_perm(vsample2,vsample1,vperm3); + v7 = (vector float)vec_perm(v5,v6,vperm4); + v8 = (vector float)vec_perm(v6,v5,vperm4); + vec_st((vector signed short)v7,15,samples); + vec_st((vector signed short)v8,0,samples); + samples += 8; +#ifdef __APPLE__ + v1 = (vector float)vec_sr((vector unsigned int)v1,(vector unsigned int)(31)); + v2 = (vector float)vec_sr((vector unsigned int)v2,(vector unsigned int)(31)); +#else + v1 = (vector float)vec_sr((vector unsigned int)v1,(vector unsigned int){31,31,31,31}); + v2 = (vector float)vec_sr((vector unsigned int)v2,(vector unsigned int){31,31,31,31}); +#endif + v5 = (vector float)vec_add((vector unsigned int)v1,(vector unsigned int)v2); + vclip = vec_sums((vector signed int)v5,vclip); + } + + { + real sum; + sum = REAL_MUL(window[0x0], b0[0x0]); + sum += REAL_MUL(window[0x2], b0[0x2]); + sum += REAL_MUL(window[0x4], b0[0x4]); + sum += REAL_MUL(window[0x6], b0[0x6]); + sum += REAL_MUL(window[0x8], b0[0x8]); + sum += REAL_MUL(window[0xA], b0[0xA]); + sum += REAL_MUL(window[0xC], b0[0xC]); + sum += REAL_MUL(window[0xE], b0[0xE]); + WRITE_SAMPLE(samples,sum,clip); + b0-=0x10,window-=0x20,samples+=step; + } + window += bo1<<1; + + vperm1 = vec_lvsl(0,window); +#ifdef __APPLE__ + vperm2 = vec_perm(vperm1,vperm1,(vector unsigned char)(12,13,14,15,8,9,10,11,4,5,6,7,0,1,2,3)); +#else + vperm2 = vec_perm(vperm1,vperm1,(vector unsigned char){12,13,14,15,8,9,10,11,4,5,6,7,0,1,2,3}); +#endif + vperm3 = vec_lvsl(0,samples); + vperm4 = vec_lvsr(0,samples); + for (j=3;j;j--) + { + vsum = vec_xor(vsum,vsum); + vsum2 = vec_xor(vsum2,vsum2); + vsum3 = vec_xor(vsum3,vsum3); + vsum4 = vec_xor(vsum4,vsum4); + v1 = vec_ld(-1,window); + v2 = vec_ld(-16,window); + v3 = vec_ld(-32,window); + v4 = vec_ld(-48,window); + v5 = vec_ld(-64,window); + v1 = vec_perm(v2,v1,vperm2); + v6 = vec_ld(0,b0); + v2 = vec_perm(v3,v2,vperm2); + v7 = vec_ld(16,b0); + v3 = vec_perm(v4,v3,vperm2); + v8 = vec_ld(32,b0); + v4 = vec_perm(v5,v4,vperm2); + v9 = vec_ld(48,b0); + + vsum = vec_nmsub(v1,v6,vsum); + vsum = vec_nmsub(v2,v7,vsum); + vsum = vec_nmsub(v3,v8,vsum); + vsum = vec_nmsub(v4,v9,vsum); + + window -= 32; + b0 -= 16; + + v1 = vec_ld(0,window); + v2 = vec_ld(-16,window); + v3 = vec_ld(-32,window); + v4 = vec_ld(-48,window); + v5 = vec_ld(-64,window); + v1 = vec_perm(v2,v1,vperm2); + v6 = vec_ld(0,b0); + v2 = vec_perm(v3,v2,vperm2); + v7 = vec_ld(16,b0); + v3 = vec_perm(v4,v3,vperm2); + v8 = vec_ld(32,b0); + v4 = vec_perm(v5,v4,vperm2); + v9 = vec_ld(48,b0); + + vsum2 = vec_nmsub(v1,v6,vsum2); + vsum2 = vec_nmsub(v2,v7,vsum2); + vsum2 = vec_nmsub(v3,v8,vsum2); + vsum2 = vec_nmsub(v4,v9,vsum2); + + window -= 32; + b0 -= 16; + + v1 = vec_ld(0,window); + v2 = vec_ld(-16,window); + v3 = vec_ld(-32,window); + v4 = vec_ld(-48,window); + v5 = vec_ld(-64,window); + v1 = vec_perm(v2,v1,vperm2); + v6 = vec_ld(0,b0); + v2 = vec_perm(v3,v2,vperm2); + v7 = vec_ld(16,b0); + v3 = vec_perm(v4,v3,vperm2); + v8 = vec_ld(32,b0); + v4 = vec_perm(v5,v4,vperm2); + v9 = vec_ld(48,b0); + + vsum3 = vec_nmsub(v1,v6,vsum3); + vsum3 = vec_nmsub(v2,v7,vsum3); + vsum3 = vec_nmsub(v3,v8,vsum3); + vsum3 = vec_nmsub(v4,v9,vsum3); + + window -= 32; + b0 -= 16; + + v1 = vec_ld(0,window); + v2 = vec_ld(-16,window); + v3 = vec_ld(-32,window); + v4 = vec_ld(-48,window); + v5 = vec_ld(-64,window); + v1 = vec_perm(v2,v1,vperm2); + v6 = vec_ld(0,b0); + v2 = vec_perm(v3,v2,vperm2); + v7 = vec_ld(16,b0); + v3 = vec_perm(v4,v3,vperm2); + v8 = vec_ld(32,b0); + v4 = vec_perm(v5,v4,vperm2); + v9 = vec_ld(48,b0); + + vsum4 = vec_nmsub(v1,v6,vsum4); + vsum4 = vec_nmsub(v2,v7,vsum4); + vsum4 = vec_nmsub(v3,v8,vsum4); + vsum4 = vec_nmsub(v4,v9,vsum4); + + window -= 32; + b0 -= 16; + + v1 = vec_mergeh(vsum,vsum3); + v2 = vec_mergeh(vsum2,vsum4); + v3 = vec_mergel(vsum,vsum3); + v4 = vec_mergel(vsum2,vsum4); + v5 = vec_mergeh(v1,v2); + v6 = vec_mergel(v1,v2); + v7 = vec_mergeh(v3,v4); + v8 = vec_mergel(v3,v4); + + vsum = vec_add(v5,v6); + v9 = vec_add(v7,v8); + vsum = vec_add(vsum,v9); + + v3 = (vector float)vec_cts(vsum,0); + v1 = (vector float)vec_cmpgt(vsum,vmax); + v2 = (vector float)vec_cmplt(vsum,vmin); + vsample1 = vec_ld(0,samples); + vsample2 = vec_ld(15,samples); + v3 = (vector float)vec_packs((vector signed int)v3,(vector signed int)v3); + v4 = (vector float)vec_perm(vsample1,vsample2,vperm3); + v5 = (vector float)vec_perm(v3,v4,vperm5); + v6 = (vector float)vec_perm(vsample2,vsample1,vperm3); + v7 = (vector float)vec_perm(v5,v6,vperm4); + v8 = (vector float)vec_perm(v6,v5,vperm4); + vec_st((vector signed short)v7,15,samples); + vec_st((vector signed short)v8,0,samples); + samples += 8; +#ifdef __APPLE__ + v1 = (vector float)vec_sr((vector unsigned int)v1,(vector unsigned int)(31)); + v2 = (vector float)vec_sr((vector unsigned int)v2,(vector unsigned int)(31)); +#else + v1 = (vector float)vec_sr((vector unsigned int)v1,(vector unsigned int){31,31,31,31}); + v2 = (vector float)vec_sr((vector unsigned int)v2,(vector unsigned int){31,31,31,31}); +#endif + v5 = (vector float)vec_add((vector unsigned int)v1,(vector unsigned int)v2); + vclip = vec_sums((vector signed int)v5,vclip); + } +#ifdef __APPLE__ + vperm5 = (vector unsigned char)(0,1,18,19,2,3,22,23,4,5,26,27,28,29,30,31); +#else + vperm5 = (vector unsigned char){0,1,18,19,2,3,22,23,4,5,26,27,28,29,30,31}; +#endif + { + vsum = vec_xor(vsum,vsum); + vsum2 = vec_xor(vsum2,vsum2); + vsum3 = vec_xor(vsum3,vsum3); + vsum4 = vec_xor(vsum4,vsum4); + v1 = vec_ld(-1,window); + v2 = vec_ld(-16,window); + v3 = vec_ld(-32,window); + v4 = vec_ld(-48,window); + v5 = vec_ld(-64,window); + v1 = vec_perm(v2,v1,vperm2); + v6 = vec_ld(0,b0); + v2 = vec_perm(v3,v2,vperm2); + v7 = vec_ld(16,b0); + v3 = vec_perm(v4,v3,vperm2); + v8 = vec_ld(32,b0); + v4 = vec_perm(v5,v4,vperm2); + v9 = vec_ld(48,b0); + + vsum = vec_nmsub(v1,v6,vsum); + vsum = vec_nmsub(v2,v7,vsum); + vsum = vec_nmsub(v3,v8,vsum); + vsum = vec_nmsub(v4,v9,vsum); + + window -= 32; + b0 -= 16; + + v1 = vec_ld(0,window); + v2 = vec_ld(-16,window); + v3 = vec_ld(-32,window); + v4 = vec_ld(-48,window); + v5 = vec_ld(-64,window); + v1 = vec_perm(v2,v1,vperm2); + v6 = vec_ld(0,b0); + v2 = vec_perm(v3,v2,vperm2); + v7 = vec_ld(16,b0); + v3 = vec_perm(v4,v3,vperm2); + v8 = vec_ld(32,b0); + v4 = vec_perm(v5,v4,vperm2); + v9 = vec_ld(48,b0); + + vsum2 = vec_nmsub(v1,v6,vsum2); + vsum2 = vec_nmsub(v2,v7,vsum2); + vsum2 = vec_nmsub(v3,v8,vsum2); + vsum2 = vec_nmsub(v4,v9,vsum2); + + window -= 32; + b0 -= 16; + + v1 = vec_ld(0,window); + v2 = vec_ld(-16,window); + v3 = vec_ld(-32,window); + v4 = vec_ld(-48,window); + v5 = vec_ld(-64,window); + v1 = vec_perm(v2,v1,vperm2); + v6 = vec_ld(0,b0); + v2 = vec_perm(v3,v2,vperm2); + v7 = vec_ld(16,b0); + v3 = vec_perm(v4,v3,vperm2); + v8 = vec_ld(32,b0); + v4 = vec_perm(v5,v4,vperm2); + v9 = vec_ld(48,b0); + + vsum3 = vec_nmsub(v1,v6,vsum3); + vsum3 = vec_nmsub(v2,v7,vsum3); + vsum3 = vec_nmsub(v3,v8,vsum3); + vsum3 = vec_nmsub(v4,v9,vsum3); + + v1 = vec_mergeh(vsum,vsum3); + v2 = vec_mergeh(vsum2,vsum2); + v3 = vec_mergel(vsum,vsum3); + v4 = vec_mergel(vsum2,vsum2); + v5 = vec_mergeh(v1,v2); + v6 = vec_mergel(v1,v2); + v7 = vec_mergeh(v3,v4); + v8 = vec_mergel(v3,v4); + + vsum = vec_add(v5,v6); + v9 = vec_add(v7,v8); + vsum = vec_add(vsum,v9); + + v3 = (vector float)vec_cts(vsum,0); + v1 = (vector float)vec_cmpgt(vsum,vmax); + v2 = (vector float)vec_cmplt(vsum,vmin); + vsample1 = vec_ld(0,samples); + vsample2 = vec_ld(15,samples); + v3 = (vector float)vec_packs((vector signed int)v3,(vector signed int)v3); + v4 = (vector float)vec_perm(vsample1,vsample2,vperm3); + v5 = (vector float)vec_perm(v3,v4,vperm5); + v6 = (vector float)vec_perm(vsample2,vsample1,vperm3); + v7 = (vector float)vec_perm(v5,v6,vperm4); + v8 = (vector float)vec_perm(v6,v5,vperm4); + vec_st((vector signed short)v7,15,samples); + vec_st((vector signed short)v8,0,samples); + samples += 6; +#ifdef __APPLE__ + v1 = (vector float)vec_sr((vector unsigned int)v1,(vector unsigned int)(31,31,31,32)); + v2 = (vector float)vec_sr((vector unsigned int)v2,(vector unsigned int)(31,31,31,32)); +#else + v1 = (vector float)vec_sr((vector unsigned int)v1,(vector unsigned int){31,31,31,32}); + v2 = (vector float)vec_sr((vector unsigned int)v2,(vector unsigned int){31,31,31,32}); +#endif + v5 = (vector float)vec_add((vector unsigned int)v1,(vector unsigned int)v2); + vclip = vec_sums((vector signed int)v5,vclip); + vec_st(vclip,0,clip_tmp); + clip += clip_tmp[3]; + } + } + if(final) fr->buffer.fill += 128; + + return clip; +} diff -r f2985e08589c -r 7e08477b0fc1 decoders/libmpg123/decode_i386.c --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/decoders/libmpg123/decode_i386.c Fri Jan 30 02:44:47 2009 -0500 @@ -0,0 +1,295 @@ +/* + decode_i386.c: decode for i386 (really faster?) + + copyright 1995-2006 by the mpg123 project - free software under the terms of the LGPL 2.1 + see COPYING and AUTHORS files in distribution or http://mpg123.org + initially written by Michael Hipp + + slighlty optimized for machines without autoincrement/decrement. + The performance is highly compiler dependend. Maybe + the decode.c version for 'normal' processor may be faster + even for Intel processors. +*/ + +#include "mpg123lib_intern.h" + +int synth_1to1_8bit_i386(real *bandPtr,int channel, mpg123_handle *fr, int final) +{ + short samples_tmp[64]; + short *tmp1 = samples_tmp + channel; + int i,ret; + + unsigned char *samples = fr->buffer.data; + int pnt = fr->buffer.fill; + fr->buffer.data = (unsigned char*) samples_tmp; + fr->buffer.fill = 0; + ret = opt_synth_1to1(fr)(bandPtr, channel, fr , 0); + fr->buffer.data = samples; + + samples += channel + pnt; + for(i=0;i<32;i++) { + *samples = fr->conv16to8[*tmp1>>AUSHIFT]; + samples += 2; + tmp1 += 2; + } + fr->buffer.fill = pnt + (final ? 64 : 0 ); + + return ret; +} + +int synth_1to1_8bit_mono_i386(real *bandPtr, mpg123_handle *fr) +{ + short samples_tmp[64]; + short *tmp1 = samples_tmp; + int i,ret; + + unsigned char *samples = fr->buffer.data; + int pnt = fr->buffer.fill; + fr->buffer.data = (unsigned char*) samples_tmp; + fr->buffer.fill = 0; + ret = opt_synth_1to1(fr)(bandPtr, 0, fr, 0); + fr->buffer.data = samples; + + samples += pnt; + for(i=0;i<32;i++) { + *samples++ = fr->conv16to8[*tmp1>>AUSHIFT]; + tmp1+=2; + } + fr->buffer.fill = pnt + 32; + + return ret; +} + +int synth_1to1_8bit_mono2stereo_i386(real *bandPtr, mpg123_handle *fr) +{ + short samples_tmp[64]; + short *tmp1 = samples_tmp; + int i,ret; + + unsigned char *samples = fr->buffer.data; + int pnt = fr->buffer.fill; + fr->buffer.data = (unsigned char*) samples_tmp; + fr->buffer.fill = 0; + ret = opt_synth_1to1(fr)(bandPtr, 0, fr, 0); + fr->buffer.data = samples; + + samples += pnt; + for(i=0;i<32;i++) { + *samples++ = fr->conv16to8[*tmp1>>AUSHIFT]; + *samples++ = fr->conv16to8[*tmp1>>AUSHIFT]; + tmp1 += 2; + } + fr->buffer.fill = pnt + 64; + + return ret; +} + +int synth_1to1_mono_i386(real *bandPtr, mpg123_handle *fr) +{ + short samples_tmp[64]; + short *tmp1 = samples_tmp; + int i,ret; + + unsigned char *samples = fr->buffer.data; + int pnt = fr->buffer.fill; + fr->buffer.data = (unsigned char*) samples_tmp; + fr->buffer.fill = 0; + ret = opt_synth_1to1(fr)(bandPtr, 0, fr, 0); + fr->buffer.data = samples; + + samples += pnt; + for(i=0;i<32;i++) { + *( (short *) samples) = *tmp1; + samples += 2; + tmp1 += 2; + } + fr->buffer.fill = pnt + 64; + + return ret; +} + + +int synth_1to1_mono2stereo_i386(real *bandPtr, mpg123_handle *fr) +{ + int i,ret; + unsigned char *samples = fr->buffer.data; + + ret = opt_synth_1to1(fr)(bandPtr, 0, fr, 1); + samples += fr->buffer.fill - 128; + + for(i=0;i<32;i++) { + ((short *)samples)[1] = ((short *)samples)[0]; + samples+=4; + } + + return ret; +} + +/* needed for i386, i486 */ +#ifdef OPT_I386_SYNTH +int synth_1to1_i386(real *bandPtr,int channel, mpg123_handle *fr, int final) +{ + static const int step = 2; + short *samples = (short *) (fr->buffer.data + fr->buffer.fill); + + real *b0, **buf; + int clip = 0; + int bo1; + + if(fr->have_eq_settings) do_equalizer(bandPtr,channel,fr->equalizer); + + if(!channel) { + fr->bo[0]--; + fr->bo[0] &= 0xf; + buf = fr->real_buffs[0]; + } + else { + samples++; + buf = fr->real_buffs[1]; + } + + if(fr->bo[0] & 0x1) { + b0 = buf[0]; + bo1 = fr->bo[0]; + dct64_i386(buf[1]+((fr->bo[0]+1)&0xf),buf[0]+fr->bo[0],bandPtr); + } + else { + b0 = buf[1]; + bo1 = fr->bo[0]+1; + dct64_i386(buf[0]+fr->bo[0],buf[1]+fr->bo[0]+1,bandPtr); + } + + { + register int j; + real *window = opt_decwin(fr) + 16 - bo1; + + for (j=16;j;j--,b0+=0x10,window+=0x20,samples+=step) + { + real sum; + sum = window[0x0] * b0[0x0]; + sum -= window[0x1] * b0[0x1]; + sum += window[0x2] * b0[0x2]; + sum -= window[0x3] * b0[0x3]; + sum += window[0x4] * b0[0x4]; + sum -= window[0x5] * b0[0x5]; + sum += window[0x6] * b0[0x6]; + sum -= window[0x7] * b0[0x7]; + sum += window[0x8] * b0[0x8]; + sum -= window[0x9] * b0[0x9]; + sum += window[0xA] * b0[0xA]; + sum -= window[0xB] * b0[0xB]; + sum += window[0xC] * b0[0xC]; + sum -= window[0xD] * b0[0xD]; + sum += window[0xE] * b0[0xE]; + sum -= window[0xF] * b0[0xF]; + + WRITE_SAMPLE(samples,sum,clip); + } + + { + real sum; + sum = window[0x0] * b0[0x0]; + sum += window[0x2] * b0[0x2]; + sum += window[0x4] * b0[0x4]; + sum += window[0x6] * b0[0x6]; + sum += window[0x8] * b0[0x8]; + sum += window[0xA] * b0[0xA]; + sum += window[0xC] * b0[0xC]; + sum += window[0xE] * b0[0xE]; + WRITE_SAMPLE(samples,sum,clip); + b0-=0x10,window-=0x20,samples+=step; + } + window += bo1<<1; + + for (j=15;j;j--,b0-=0x10,window-=0x20,samples+=step) + { + real sum; + sum = -window[-0x1] * b0[0x0]; + sum -= window[-0x2] * b0[0x1]; + sum -= window[-0x3] * b0[0x2]; + sum -= window[-0x4] * b0[0x3]; + sum -= window[-0x5] * b0[0x4]; + sum -= window[-0x6] * b0[0x5]; + sum -= window[-0x7] * b0[0x6]; + sum -= window[-0x8] * b0[0x7]; + sum -= window[-0x9] * b0[0x8]; + sum -= window[-0xA] * b0[0x9]; + sum -= window[-0xB] * b0[0xA]; + sum -= window[-0xC] * b0[0xB]; + sum -= window[-0xD] * b0[0xC]; + sum -= window[-0xE] * b0[0xD]; + sum -= window[-0xF] * b0[0xE]; + sum -= window[-0x0] * b0[0xF]; + + WRITE_SAMPLE(samples,sum,clip); + } + } + if(final) fr->buffer.fill += 128; + + return clip; +} +#endif + +#ifdef OPT_PENTIUM +int synth_1to1_i586(real *bandPtr,int channel, mpg123_handle *fr, int final) +{ + int ret; + if(fr->have_eq_settings) do_equalizer(bandPtr,channel,fr->equalizer); + + /* this is in asm, can be dither or not */ + /* uh, is this return from pointer correct? */ + ret = (int) opt_synth_1to1_i586_asm(fr)(bandPtr, channel, fr->buffer.data+fr->buffer.fill, fr->rawbuffs, fr->bo, fr->decwin); + if(final) fr->buffer.fill += 128; + return ret; +} +#endif + +#ifdef OPT_3DNOW +int synth_1to1_3dnow(real *bandPtr,int channel, mpg123_handle *fr, int final) +{ + int ret; + + if(fr->have_eq_settings) do_equalizer_3dnow(bandPtr,channel,fr->equalizer); + + /* this is in asm, can be dither or not */ + /* uh, is this return from pointer correct? */ + ret = (int) synth_1to1_3dnow_asm(bandPtr, channel, fr->buffer.data+fr->buffer.fill, fr->rawbuffs, fr->bo, fr->decwin); + if(final) fr->buffer.fill += 128; + return ret; +} +#endif + +#ifdef OPT_MMX +/* wrapper for da interface */ +int synth_1to1_mmx(real *bandPtr, int channel, mpg123_handle *fr, int final) +{ + if(fr->have_eq_settings) do_equalizer(bandPtr,channel,fr->equalizer); + + /* in asm */ + synth_1to1_MMX(bandPtr, channel, (short*) (fr->buffer.data+fr->buffer.fill), (short *) fr->rawbuffs, fr->bo, fr->decwins); + if(final) fr->buffer.fill += 128; + return 0; +} +#endif + +#ifdef OPT_SSE +int synth_1to1_sse(real *bandPtr, int channel, mpg123_handle *fr, int final) +{ + if(fr->have_eq_settings) do_equalizer(bandPtr,channel,fr->equalizer); + + synth_1to1_sse_asm(bandPtr, channel, (short*) (fr->buffer.data+fr->buffer.fill), (short *) fr->rawbuffs, fr->bo, fr->decwins); + if(final) fr->buffer.fill += 128; + return 0; +} +#endif + +#ifdef OPT_3DNOWEXT +int synth_1to1_3dnowext(real *bandPtr, int channel, mpg123_handle *fr, int final) +{ + if(fr->have_eq_settings) do_equalizer(bandPtr,channel,fr->equalizer); + + synth_1to1_3dnowext_asm(bandPtr, channel, (short*) (fr->buffer.data+fr->buffer.fill), (short *) fr->rawbuffs, fr->bo, fr->decwins); + if(final) fr->buffer.fill += 128; + return 0; +} +#endif diff -r f2985e08589c -r 7e08477b0fc1 decoders/libmpg123/decode_i486.c --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/decoders/libmpg123/decode_i486.c Fri Jan 30 02:44:47 2009 -0500 @@ -0,0 +1,252 @@ +/* + decode_i486.c: i486 decode + + copyright 1998-2006 by the mpg123 project - free software under the terms of the LGPL 2.1 + see COPYING and AUTHORS files in distribution or http://mpg123.org + initially written by Fabrice Bellard + + One has to see if the modification for non-static memory kills this optimization (cache locality?). +*/ + +/* + * Subband Synthesis for MPEG Audio. + * + * Version optimized for 80486 by using integer arithmetic, + * multiplications by shift and add, and by increasing locality in + * order to fit the 8KB L1 cache. This code should be compiled with gcc + * 2.7.2 or higher. + * + * Note: this version does not guaranty a good accuracy. The filter + * coefficients are quantified on 14 bits. + * + * (c) 1998 Fabrice Bellard + */ + +#include "mpg123lib_intern.h" + +#define FIR16_1(pos,c0,c1,c2,c3,c4,c5,c6,c7,c8,c9,c10,c11,c12,c13,c14,c15) \ +{\ + int sum;\ + sum=(c0)*b0[0]+(c1)*b0[1]+(c2)*b0[2]+(c3)*b0[3]+\ + (c4)*b0[4]+(c5)*b0[5]+(c6)*b0[6]+(c7)*b0[7]+\ + (c8)*b0[8]+(c9)*b0[9]+(c10)*b0[10]+(c11)*b0[11]+\ + (c12)*b0[12]+(c13)*b0[13]+(c14)*b0[14]+(c15)*b0[15];\ + sum=(sum+(1 << 13))>>14;\ + if (sum<-32768) sum=-32768;\ + else if (sum>32767) sum=32767;\ + samples[2*(pos)]=sum;\ + b0+=FIR_BUFFER_SIZE;\ +} + +#define FIR16_2(pos1,c0,c1,c2,c3,c4,c5,c6,c7,c8,c9,c10,c11,c12,c13,c14,c15,\ + pos2,d0,d1,d2,d3,d4,d5,d6,d7,d8,d9,d10,d11,d12,d13,d14,d15) \ +{\ + int sum1,sum2,v;\ +\ + v=b0[0];\ + sum1=(c0)*v;\ + sum2=(d0)*v;\ + v=b0[1];\ + sum1+=(c1)*v;\ + sum2+=(d1)*v;\ + v=b0[2];\ + sum1+=(c2)*v;\ + sum2+=(d2)*v;\ + v=b0[3];\ + sum1+=(c3)*v;\ + sum2+=(d3)*v;\ + v=b0[4];\ + sum1+=(c4)*v;\ + sum2+=(d4)*v;\ + v=b0[5];\ + sum1+=(c5)*v;\ + sum2+=(d5)*v;\ + v=b0[6];\ + sum1+=(c6)*v;\ + sum2+=(d6)*v;\ + v=b0[7];\ + sum1+=(c7)*v;\ + sum2+=(d7)*v;\ + v=b0[8];\ + sum1+=(c8)*v;\ + sum2+=(d8)*v;\ + v=b0[9];\ + sum1+=(c9)*v;\ + sum2+=(d9)*v;\ + v=b0[10];\ + sum1+=(c10)*v;\ + sum2+=(d10)*v;\ + v=b0[11];\ + sum1+=(c11)*v;\ + sum2+=(d11)*v;\ + v=b0[12];\ + sum1+=(c12)*v;\ + sum2+=(d12)*v;\ + v=b0[13];\ + sum1+=(c13)*v;\ + sum2+=(d13)*v;\ + v=b0[14];\ + sum1+=(c14)*v;\ + sum2+=(d14)*v;\ + v=b0[15];\ + sum1+=(c15)*v;\ + sum2+=(d15)*v;\ +\ + sum1=(sum1+(1<<13))>>14;\ + sum2=(sum2+(1<<13))>>14;\ +\ + if (sum1<-32768) sum1=-32768;\ + else if (sum1>32767) sum1=32767;\ + samples[(pos1)*2]=sum1;\ +\ + if (sum2<-32768) sum2=-32768;\ + else if (sum2>32767) sum2=32767;\ + samples[(pos2)*2]=sum2;\ + b0+=FIR_BUFFER_SIZE;\ +} + +int synth_1to1_486(real *bandPtr, int channel, mpg123_handle *fr, int nb_blocks) +{ + short *samples = (short *) (fr->buffer.data+fr->buffer.fill); + int *b0,**buf; + int clip = 0; + int block,b,bo_start; + + /* samples address */ + samples+=channel; + + bo_start=fr->bo[channel]; + buf = fr->int_buffs[channel]; + + b=bo_start; + for(block=0;block= FIR_BUFFER_SIZE) { + int *p,*q; + int c,i,j; + + /* we shift the buffers */ + for(c=0;c<2;c++) { + p=&buf[c][0]+1; + q=p+(FIR_BUFFER_SIZE-FIR_SIZE); + for(i=0;i<17;i++) { + for(j=0;jbo[channel]=FIR_SIZE; + } + + if(b & 1) { + dct64_i486(buf[1]+b,buf[0]+b,bandPtr); + } else { + dct64_i486(buf[0]+b,buf[1]+b,bandPtr); + } + bandPtr+=32; + } + fr->bo[channel]=b; + + /* filter bank: part 1 */ + b=bo_start; + for(block=0;block= FIR_BUFFER_SIZE) b=FIR_SIZE; + if(b & 1) { + b0 = buf[0] + b - (FIR_SIZE-1); + } else { + b0 = buf[1] + b - (FIR_SIZE-1); + } + + FIR16_1(0,-7,53,-114,509,-1288,1643,-9372,18759,9372,1643,1288,509,114,53,7,0); + FIR16_2(1,-6,52,-100,515,-1197,1783,-8910,18748,9834,1489,1379,500,129,54,7,0, + 31,0,-7,54,-129,500,-1379,1489,-9834,18748,8910,1783,1197,515,100,52,6); + FIR16_2(2,-6,50,-86,520,-1106,1910,-8447,18714,10294,1322,1469,488,145,55,8,0, + 30,0,-8,55,-145,488,-1469,1322,-10294,18714,8447,1910,1106,520,86,50,6); + FIR16_2(3,-5,49,-73,521,-1015,2023,-7986,18657,10751,1140,1559,473,161,56,9,0, + 29,0,-9,56,-161,473,-1559,1140,-10751,18657,7986,2023,1015,521,73,49,5); + samples+=64; + } + samples-=64*nb_blocks; + + /* filter bank: part 2 */ + + b=bo_start; + for(block=0;block= FIR_BUFFER_SIZE) b=FIR_SIZE; + if(b & 1) { + b0 = buf[0] + b - (FIR_SIZE-1) + 4*FIR_BUFFER_SIZE; + } else { + b0 = buf[1] + b - (FIR_SIZE-1) + 4*FIR_BUFFER_SIZE; + } + + FIR16_2(4,-4,47,-61,521,-926,2123,-7528,18578,11205,944,1647,455,177,56,10,0, + 28,0,-10,56,-177,455,-1647,944,-11205,18578,7528,2123,926,521,61,47,4); + FIR16_2(5,-4,45,-49,518,-837,2210,-7072,18477,11654,733,1733,434,194,57,11,0, + 27,0,-11,57,-194,434,-1733,733,-11654,18477,7072,2210,837,518,49,45,4); + FIR16_2(6,-4,44,-38,514,-751,2284,-6620,18353,12097,509,1817,411,212,57,12,0, + 26,0,-12,57,-212,411,-1817,509,-12097,18353,6620,2284,751,514,38,44,4); + FIR16_2(7,-3,42,-27,508,-665,2347,-6173,18208,12534,270,1899,383,229,56,13,0, + 25,0,-13,56,-229,383,-1899,270,-12534,18208,6173,2347,665,508,27,42,3); + + samples+=64; + } + samples-=64*nb_blocks; + + /* filter bank: part 3 */ + + b=bo_start; + for(block=0;block= FIR_BUFFER_SIZE) b=FIR_SIZE; + if(b & 1) { + b0 = buf[0] + b - (FIR_SIZE-1) + 8*FIR_BUFFER_SIZE; + } else { + b0 = buf[1] + b - (FIR_SIZE-1) + 8*FIR_BUFFER_SIZE; + } + + FIR16_2(8,-3,40,-18,500,-582,2398,-5732,18042,12963,17,1977,353,247,56,14,0, + 24,0,-14,56,-247,353,-1977,17,-12963,18042,5732,2398,582,500,18,40,3); + FIR16_2(9,-2,38,-9,490,-501,2437,-5297,17855,13383,-249,2052,320,266,55,15,0, + 23,0,-15,55,-266,320,-2052,-249,-13383,17855,5297,2437,501,490,9,38,2); + FIR16_2(10,-2,36,0,479,-423,2465,-4869,17647,13794,-530,2122,282,284,53,17,0, + 22,0,-17,53,-284,282,-2122,-530,-13794,17647,4869,2465,423,479,0,36,2); + FIR16_2(11,-2,34,7,467,-347,2483,-4449,17419,14194,-825,2188,242,302,52,18,0, + 21,0,-18,52,-302,242,-2188,-825,-14194,17419,4449,2483,347,467,-7,34,2); + + samples+=64; + } + samples-=64*nb_blocks; + + /* filter bank: part 4 */ + + b=bo_start; + for(block=0;block= FIR_BUFFER_SIZE) b=FIR_SIZE; + if(b & 1) { + b0 = buf[0] + b - (FIR_SIZE-1) + 12*FIR_BUFFER_SIZE; + } else { + b0 = buf[1] + b - (FIR_SIZE-1) + 12*FIR_BUFFER_SIZE; + } + + FIR16_2(12,-2,33,14,454,-273,2491,-4038,17173,14583,-1133,2249,198,320,50,19,0, + 20,0,-19,50,-320,198,-2249,-1133,-14583,17173,4038,2491,273,454,-14,33,2); + FIR16_2(13,-1,31,20,439,-203,2489,-3637,16907,14959,-1454,2304,151,339,47,21,-1, + 19,-1,-21,47,-339,151,-2304,-1454,-14959,16907,3637,2489,203,439,-20,31,1); + FIR16_2(14,-1,29,26,424,-136,2479,-3245,16623,15322,-1788,2354,100,357,44,22,-1, + 18,-1,-22,44,-357,100,-2354,-1788,-15322,16623,3245,2479,136,424,-26,29,1); + FIR16_2(15,-1,27,31,408,-72,2459,-2863,16322,15671,-2135,2396,46,374,40,24,-1, + 17,-1,-24,40,-374,46,-2396,-2135,-15671,16322,2863,2459,72,408,-31,27,1); + FIR16_1(16,-1,0,36,0,-11,0,-2493,0,16004,0,2431,0,391,0,26,0); + + samples+=64; + } + + return clip; +} + diff -r f2985e08589c -r 7e08477b0fc1 decoders/libmpg123/decode_i586.S --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/decoders/libmpg123/decode_i586.S Fri Jan 30 02:44:47 2009 -0500 @@ -0,0 +1,339 @@ +/* + decode_i586: asm synth + + copyright ?-2006 by the mpg123 project - free software under the terms of the LGPL 2.1 + see COPYING and AUTHORS files in distribution or http://mpg123.org + initially written by Stefan Bieschewski + + synth_1to1 works the same way as the c version of this + file. only two types of changes have been made: + - reordered floating point instructions to + prevent pipline stalls + - made WRITE_SAMPLE use integer instead of + (slower) floating point + all kinds of x86 processors should benefit from these + modifications. + + useful sources of information on optimizing x86 code include: + + Intel Architecture Optimization Manual + http://www.intel.com/design/pentium/manuals/242816.htm + + Cyrix 6x86 Instruction Set Summary + ftp://ftp.cyrix.com/6x86/6x-dbch6.pdf + + AMD-K5 Processor Software Development + http://www.amd.com/products/cpg/techdocs/appnotes/20007e.pdf + + Stefan Bieschewski + + $Id: decode_i586.s 1 2004-09-18 13:30:08Z thomas $ +*/ + +#include "mangle.h" + +.data +#ifndef __APPLE__ +.section .rodata +#endif + ALIGN8 +.LC0: + .long 0x0,0x40dfffc0 + ALIGN8 +.LC1: + .long 0x0,0xc0e00000 + ALIGN8 +.text +/* int synth_1to1_i586_asm(real *bandPtr, int channel, unsigned char *out, unsigned char *buffs, int *bo, real *decwin); */ +.globl ASM_NAME(synth_1to1_i586_asm) +ASM_NAME(synth_1to1_i586_asm): + subl $12,%esp + pushl %ebp + pushl %edi + pushl %esi + pushl %ebx +/* stack: 0=ebx, 4=esi, 8=edi, 12=ebp, 16,20,24=local, 28=back, 32=bandPtr, 36=channel, 40=out, 44=buffs, 48=bo, 52=decwin */ + movl 32(%esp),%eax /* *bandPtr */ + movl 40(%esp),%esi /* *out */ + movl 48(%esp),%edi /* *bo */ + movl (%edi),%ebp /* store bo value in ebp */ + xorl %edi,%edi + cmpl %edi,36(%esp) + jne .L48 /* if(!channel) */ + decl %ebp /* bo-- */ + andl $15,%ebp /* bo &= 0xf */ + movl 48(%esp), %edi /* *bo */ + movl %ebp,(%edi) /* write back bo */ + xorl %edi,%edi /* restore %edi to 0; it's used later */ + movl 44(%esp),%ecx /* use buffs */ + jmp .L49 +.L48: /* if(channel) use buffs+2176 */ + addl $2,%esi + movl 44(%esp),%ecx /* *buffs */ + addl $2176,%ecx +.L49: + testl $1,%ebp + je .L50 + movl %ecx,%ebx + movl %ebp,16(%esp) + pushl %eax + movl 20(%esp),%edx + leal (%ebx,%edx,4),%eax + pushl %eax + movl 24(%esp),%eax + incl %eax + andl $15,%eax + leal 1088(,%eax,4),%eax + addl %ebx,%eax + jmp .L74 +.L50: + leal 1088(%ecx),%ebx + leal 1(%ebp),%edx + movl %edx,16(%esp) + pushl %eax + leal 1092(%ecx,%ebp,4),%eax + pushl %eax + leal (%ecx,%ebp,4),%eax +.L74: + pushl %eax + call ASM_NAME(dct64_i386) + addl $12,%esp +/* stack now back on track */ + movl 16(%esp),%edx + leal 0(,%edx,4),%edx + movl 52(%esp),%eax /* decwin */ + addl $64,%eax + movl %eax,%ecx + subl %edx,%ecx + movl $16,%ebp +.L55: + flds (%ecx) + fmuls (%ebx) + flds 4(%ecx) + fmuls 4(%ebx) + fxch %st(1) + flds 8(%ecx) + fmuls 8(%ebx) + fxch %st(2) + fsubrp %st,%st(1) + flds 12(%ecx) + fmuls 12(%ebx) + fxch %st(2) + faddp %st,%st(1) + flds 16(%ecx) + fmuls 16(%ebx) + fxch %st(2) + fsubrp %st,%st(1) + flds 20(%ecx) + fmuls 20(%ebx) + fxch %st(2) + faddp %st,%st(1) + flds 24(%ecx) + fmuls 24(%ebx) + fxch %st(2) + fsubrp %st,%st(1) + flds 28(%ecx) + fmuls 28(%ebx) + fxch %st(2) + faddp %st,%st(1) + flds 32(%ecx) + fmuls 32(%ebx) + fxch %st(2) + fsubrp %st,%st(1) + flds 36(%ecx) + fmuls 36(%ebx) + fxch %st(2) + faddp %st,%st(1) + flds 40(%ecx) + fmuls 40(%ebx) + fxch %st(2) + fsubrp %st,%st(1) + flds 44(%ecx) + fmuls 44(%ebx) + fxch %st(2) + faddp %st,%st(1) + flds 48(%ecx) + fmuls 48(%ebx) + fxch %st(2) + fsubrp %st,%st(1) + flds 52(%ecx) + fmuls 52(%ebx) + fxch %st(2) + faddp %st,%st(1) + flds 56(%ecx) + fmuls 56(%ebx) + fxch %st(2) + fsubrp %st,%st(1) + flds 60(%ecx) + fmuls 60(%ebx) + fxch %st(2) + subl $4,%esp + faddp %st,%st(1) + fxch %st(1) + fsubrp %st,%st(1) + fistpl (%esp) + popl %eax + cmpl $32767,%eax + jg 1f + cmpl $-32768,%eax + jl 2f + movw %ax,(%esi) + jmp 4f +1: movw $32767,(%esi) + jmp 3f +2: movw $-32768,(%esi) +3: incl %edi +4: +.L54: + addl $64,%ebx + subl $-128,%ecx + addl $4,%esi + decl %ebp + jnz .L55 + flds (%ecx) + fmuls (%ebx) + flds 8(%ecx) + fmuls 8(%ebx) + flds 16(%ecx) + fmuls 16(%ebx) + fxch %st(2) + faddp %st,%st(1) + flds 24(%ecx) + fmuls 24(%ebx) + fxch %st(2) + faddp %st,%st(1) + flds 32(%ecx) + fmuls 32(%ebx) + fxch %st(2) + faddp %st,%st(1) + flds 40(%ecx) + fmuls 40(%ebx) + fxch %st(2) + faddp %st,%st(1) + flds 48(%ecx) + fmuls 48(%ebx) + fxch %st(2) + faddp %st,%st(1) + flds 56(%ecx) + fmuls 56(%ebx) + fxch %st(2) + subl $4,%esp + faddp %st,%st(1) + fxch %st(1) + faddp %st,%st(1) + fistpl (%esp) + popl %eax + cmpl $32767,%eax + jg 1f + cmpl $-32768,%eax + jl 2f + movw %ax,(%esi) + jmp 4f +1: movw $32767,(%esi) + jmp 3f +2: movw $-32768,(%esi) +3: incl %edi +4: +.L62: + addl $-64,%ebx + addl $4,%esi + movl 16(%esp),%edx + leal -128(%ecx,%edx,8),%ecx + movl $15,%ebp +.L68: + flds -4(%ecx) + fchs + fmuls (%ebx) + flds -8(%ecx) + fmuls 4(%ebx) + fxch %st(1) + flds -12(%ecx) + fmuls 8(%ebx) + fxch %st(2) + fsubrp %st,%st(1) + flds -16(%ecx) + fmuls 12(%ebx) + fxch %st(2) + fsubrp %st,%st(1) + flds -20(%ecx) + fmuls 16(%ebx) + fxch %st(2) + fsubrp %st,%st(1) + flds -24(%ecx) + fmuls 20(%ebx) + fxch %st(2) + fsubrp %st,%st(1) + flds -28(%ecx) + fmuls 24(%ebx) + fxch %st(2) + fsubrp %st,%st(1) + flds -32(%ecx) + fmuls 28(%ebx) + fxch %st(2) + fsubrp %st,%st(1) + flds -36(%ecx) + fmuls 32(%ebx) + fxch %st(2) + fsubrp %st,%st(1) + flds -40(%ecx) + fmuls 36(%ebx) + fxch %st(2) + fsubrp %st,%st(1) + flds -44(%ecx) + fmuls 40(%ebx) + fxch %st(2) + fsubrp %st,%st(1) + flds -48(%ecx) + fmuls 44(%ebx) + fxch %st(2) + fsubrp %st,%st(1) + flds -52(%ecx) + fmuls 48(%ebx) + fxch %st(2) + fsubrp %st,%st(1) + flds -56(%ecx) + fmuls 52(%ebx) + fxch %st(2) + fsubrp %st,%st(1) + flds -60(%ecx) + fmuls 56(%ebx) + fxch %st(2) + fsubrp %st,%st(1) + flds (%ecx) + fmuls 60(%ebx) + fxch %st(2) + subl $4,%esp + fsubrp %st,%st(1) + fxch %st(1) + fsubrp %st,%st(1) + fistpl (%esp) + popl %eax + cmpl $32767,%eax + jg 1f + cmpl $-32768,%eax + jl 2f + movw %ax,(%esi) + jmp 4f +1: movw $32767,(%esi) + jmp 3f +2: movw $-32768,(%esi) +3: incl %edi +4: +.L67: + addl $-64,%ebx + addl $-128,%ecx + addl $4,%esi + decl %ebp + jnz .L68 + movl %edi,%eax + popl %ebx + popl %esi + popl %edi + popl %ebp + addl $12,%esp + ret + +/* Mark non-executable stack. */ +#if defined(__linux__) && defined(__ELF__) +.section .note.GNU-stack,"",%progbits +#endif diff -r f2985e08589c -r 7e08477b0fc1 decoders/libmpg123/decode_i586_dither.S --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/decoders/libmpg123/decode_i586_dither.S Fri Jan 30 02:44:47 2009 -0500 @@ -0,0 +1,372 @@ +/* + decode_i586_dither: asm synth with dither noise + + copyright ?-2007 by the mpg123 project - free software under the terms of the LGPL 2.1 + see COPYING and AUTHORS files in distribution or http://mpg123.org + initially written by Stefan Bieschewski as decode_i586.s without dither + + This version uses "circular" 64k dither noise. + (Patch by Adrian ) + + Thomas learned something about assembler and the stack while making this one thread safe (removing static data). +*/ + +#include "mangle.h" + +.data +#ifndef __APPLE__ + .section .rodata +#endif + ALIGN8 +.LC0: + .long 0x0,0x40dfffc0 + ALIGN8 +.LC1: + .long 0x0,0xc0e00000 + ALIGN8 +.text +/* int synth_1to1_i586_asm_dither(real *bandPtr, int channel, unsigned char *out, unsigned char *buffs, int bo_and_ditherindex[2], real *decwin); */ +.globl ASM_NAME(synth_1to1_i586_asm_dither) +ASM_NAME(synth_1to1_i586_asm_dither): + subl $16,%esp + pushl %ebp + pushl %edi + pushl %esi + pushl %ebx +/* stack: 0(%esp)=%ebx 4=esi 8=edi 12=ebp 16,20,24,28=local 32=back 36=bandptr 40=channel 44=out 48=buffs 52=bo 56=decwin */ +#define BANDPTR 36(%esp) +#define CHANNEL 40(%esp) +#define OUT 44(%esp) +#define BUFFS 48(%esp) +#define BO 52(%esp) +#define DECWIN 56(%esp) +#define LOC0 16(%esp) +#define LOC1 20(%esp) +#define LOC2 24(%esp) +#define DITHERINDEX 28(%esp) + movl BANDPTR,%eax + movl OUT,%esi + movl BO, %ebx + movl (%ebx),%ebp /* get bo value */ + movl 4(%ebx),%edi; /* get the ditherindex behind bo */ + movl %edi,DITHERINDEX + xorl %edi,%edi + cmpl %edi,CHANNEL + jne .L48 + decl %ebp + andl $15,%ebp + movl %ebp,(%ebx) /* save bo back */ + movl BUFFS,%ecx + jmp .L49 +.L48: +/* In stereo mode , "rewind" dither pointer 32 samples , so 2nd channel */ +/* has same dither values. Tested OK for mono and stereo MP2 and MP3 */ + subl $128,DITHERINDEX /* better move to %edi for the two calculations? */ + andl $0x0003fffc,DITHERINDEX + addl $2,%esi + movl BUFFS,%ecx + addl $2176,%ecx +.L49: +/* now the call of dct64 is prepared, stuff pushed to the stack, but soon after it's removed again */ + testl $1,%ebp + je .L50 + movl %ecx,%ebx + movl %ebp,LOC0 + pushl %eax + movl LOC1,%edx + leal (%ebx,%edx,4),%eax + pushl %eax + movl LOC2,%eax + incl %eax + andl $15,%eax + leal 1088(,%eax,4),%eax + addl %ebx,%eax + jmp .L74 +.L50: + leal 1088(%ecx),%ebx + leal 1(%ebp),%edx + movl %edx,LOC0 + pushl %eax + leal 1092(%ecx,%ebp,4),%eax + pushl %eax + leal (%ecx,%ebp,4),%eax +.L74: + pushl %eax + call ASM_NAME(dct64_i386) + addl $12,%esp +/* Now removed the parameters. + stack: 0(%esp)=%ebx 4=esi 8=edi 12=ebp 16,20,24,28=local 32=back 36=bandptr 40=channel 44=out 48=buffs 52=bo */ + movl LOC0,%edx + leal 0(,%edx,4),%edx + /* movl $ASM_NAME(decwin)+64,%eax */ + movl DECWIN,%eax + addl $64,%eax + movl %eax,%ecx + subl %edx,%ecx + movl $16,%ebp +.L55: + flds (%ecx) + fmuls (%ebx) + flds 4(%ecx) + fmuls 4(%ebx) + fxch %st(1) + flds 8(%ecx) + fmuls 8(%ebx) + fxch %st(2) + fsubrp %st,%st(1) + flds 12(%ecx) + fmuls 12(%ebx) + fxch %st(2) + faddp %st,%st(1) + flds 16(%ecx) + fmuls 16(%ebx) + fxch %st(2) + fsubrp %st,%st(1) + flds 20(%ecx) + fmuls 20(%ebx) + fxch %st(2) + faddp %st,%st(1) + flds 24(%ecx) + fmuls 24(%ebx) + fxch %st(2) + fsubrp %st,%st(1) + flds 28(%ecx) + fmuls 28(%ebx) + fxch %st(2) + faddp %st,%st(1) + flds 32(%ecx) + fmuls 32(%ebx) + fxch %st(2) + fsubrp %st,%st(1) + flds 36(%ecx) + fmuls 36(%ebx) + fxch %st(2) + faddp %st,%st(1) + flds 40(%ecx) + fmuls 40(%ebx) + fxch %st(2) + fsubrp %st,%st(1) + flds 44(%ecx) + fmuls 44(%ebx) + fxch %st(2) + faddp %st,%st(1) + flds 48(%ecx) + fmuls 48(%ebx) + fxch %st(2) + fsubrp %st,%st(1) + flds 52(%ecx) + fmuls 52(%ebx) + fxch %st(2) + faddp %st,%st(1) + flds 56(%ecx) + fmuls 56(%ebx) + fxch %st(2) + fsubrp %st,%st(1) + flds 60(%ecx) + fmuls 60(%ebx) + fxch %st(2) + subl $4,%esp + faddp %st,%st(1) + fxch %st(1) + fsubrp %st,%st(1) + + addl $4,DITHERINDEX + andl $0x0003fffc,DITHERINDEX + movl $ASM_NAME(dithernoise),%edi + addl DITHERINDEX,%edi + + fadd (%edi) + +/* fistpl and popl as a unit keep the stack unchanged */ + fistpl (%esp) + popl %eax + cmpl $32767,%eax + jg 1f + cmpl $-32768,%eax + jl 2f + movw %ax,(%esi) + jmp 4f +1: movw $32767,(%esi) + jmp 3f +2: movw $-32768,(%esi) +3: +/* incl %edi */ +4: +.L54: + addl $64,%ebx + subl $-128,%ecx + addl $4,%esi + decl %ebp + jnz .L55 + flds (%ecx) + fmuls (%ebx) + flds 8(%ecx) + fmuls 8(%ebx) + flds 16(%ecx) + fmuls 16(%ebx) + fxch %st(2) + faddp %st,%st(1) + flds 24(%ecx) + fmuls 24(%ebx) + fxch %st(2) + faddp %st,%st(1) + flds 32(%ecx) + fmuls 32(%ebx) + fxch %st(2) + faddp %st,%st(1) + flds 40(%ecx) + fmuls 40(%ebx) + fxch %st(2) + faddp %st,%st(1) + flds 48(%ecx) + fmuls 48(%ebx) + fxch %st(2) + faddp %st,%st(1) + flds 56(%ecx) + fmuls 56(%ebx) + fxch %st(2) + subl $4,%esp + faddp %st,%st(1) + fxch %st(1) + faddp %st,%st(1) + + addl $4,DITHERINDEX + andl $0x0003fffc,DITHERINDEX + movl $ASM_NAME(dithernoise),%edi + addl DITHERINDEX,%edi + + fadd (%edi) +/* fistpl and popl as a unit keep the stack unchanged */ + fistpl (%esp) + popl %eax + cmpl $32767,%eax + jg 1f + cmpl $-32768,%eax + jl 2f + movw %ax,(%esi) + jmp 4f +1: movw $32767,(%esi) + jmp 3f +2: movw $-32768,(%esi) +3: +/* incl %edi */ +4: +.L62: + addl $-64,%ebx + addl $4,%esi + movl LOC0,%edx + leal -128(%ecx,%edx,8),%ecx + movl $15,%ebp +.L68: + flds -4(%ecx) + fchs + fmuls (%ebx) + flds -8(%ecx) + fmuls 4(%ebx) + fxch %st(1) + flds -12(%ecx) + fmuls 8(%ebx) + fxch %st(2) + fsubrp %st,%st(1) + flds -16(%ecx) + fmuls 12(%ebx) + fxch %st(2) + fsubrp %st,%st(1) + flds -20(%ecx) + fmuls 16(%ebx) + fxch %st(2) + fsubrp %st,%st(1) + flds -24(%ecx) + fmuls 20(%ebx) + fxch %st(2) + fsubrp %st,%st(1) + flds -28(%ecx) + fmuls 24(%ebx) + fxch %st(2) + fsubrp %st,%st(1) + flds -32(%ecx) + fmuls 28(%ebx) + fxch %st(2) + fsubrp %st,%st(1) + flds -36(%ecx) + fmuls 32(%ebx) + fxch %st(2) + fsubrp %st,%st(1) + flds -40(%ecx) + fmuls 36(%ebx) + fxch %st(2) + fsubrp %st,%st(1) + flds -44(%ecx) + fmuls 40(%ebx) + fxch %st(2) + fsubrp %st,%st(1) + flds -48(%ecx) + fmuls 44(%ebx) + fxch %st(2) + fsubrp %st,%st(1) + flds -52(%ecx) + fmuls 48(%ebx) + fxch %st(2) + fsubrp %st,%st(1) + flds -56(%ecx) + fmuls 52(%ebx) + fxch %st(2) + fsubrp %st,%st(1) + flds -60(%ecx) + fmuls 56(%ebx) + fxch %st(2) + fsubrp %st,%st(1) + flds (%ecx) + fmuls 60(%ebx) + fxch %st(2) + subl $4,%esp + fsubrp %st,%st(1) + fxch %st(1) + fsubrp %st,%st(1) + + addl $4,DITHERINDEX + andl $0x0003fffc,DITHERINDEX + movl $ASM_NAME(dithernoise),%edi + addl DITHERINDEX,%edi + + fadd (%edi) +/* fistpl and popl as a unit keep the stack unchanged */ + fistpl (%esp) + popl %eax + cmpl $32767,%eax + jg 1f + cmpl $-32768,%eax + jl 2f + movw %ax,(%esi) + jmp 4f +1: movw $32767,(%esi) + jmp 3f +2: movw $-32768,(%esi) +3: +/* incl %edi */ +4: +.L67: + addl $-64,%ebx + addl $-128,%ecx + addl $4,%esi + decl %ebp + jnz .L68 +/* return ipv edi 0 in eax */ + movl $0,%eax +/* save ditherindex */ + movl BO,%ebx + movl DITHERINDEX,%esi + movl %esi,4(%ebx); +/* stack: 0=ebx 4=esi 8=edi 12=ebp 16,20,24,28=local 32=back 36=bandptr 40=channel 44=out 48=buffs 52=bo */ + popl %ebx + popl %esi + popl %edi + popl %ebp + addl $16,%esp +/* The stack must be now: 0=back 4=bandptr 8=channel 12=out 16=buffs 20=bo */ + ret + +/* Mark non-executable stack. */ +#if defined(__linux__) && defined(__ELF__) +.section .note.GNU-stack,"",%progbits +#endif diff -r f2985e08589c -r 7e08477b0fc1 decoders/libmpg123/decode_mmx.S --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/decoders/libmpg123/decode_mmx.S Fri Jan 30 02:44:47 2009 -0500 @@ -0,0 +1,129 @@ +/* + decode_MMX.s: MMX optimized synth + + copyright ?-2006 by the mpg123 project - free software under the terms of the LGPL 2.1 + see COPYING and AUTHORS files in distribution or http://mpg123.org + initially written by the mysterious higway (apparently) + + Thomas' words about a note: + Initially, I found the note "this code comes under GPL" in this file. + After asking Michael about legal status of the MMX files, he said that he got them without any comment and thus I believe that the GPL comment was made by Michael, since he made mpg123 GPL at some time - and marked some files that way, but not all. + Based on that thought, I now consider this file along with the other parts of higway's MMX optimization to be licensed under LGPL 2.1 by Michael's decision. +*/ + +#include "mangle.h" + +.text + +.globl ASM_NAME(synth_1to1_MMX) +/* int synth_1to1_MMX(real *bandPtr, int channel, short *out, short *buffs, int *bo, float *decwins); */ +ASM_NAME(synth_1to1_MMX): + pushl %ebp + pushl %edi + pushl %esi + pushl %ebx +/* stack: 0=ebx, 4=esi, 8=edi, 12=ebp, 16=back, 20=bandPtr, 24=channel, 28=out, 32=buffs, 36=bo, 40=decwins */ + movl 24(%esp),%ecx + movl 28(%esp),%edi + movl $15,%ebx + movl 36(%esp),%edx + leal (%edi,%ecx,2),%edi + decl %ecx + movl 32(%esp),%esi + movl (%edx),%eax + jecxz .L1 + decl %eax + andl %ebx,%eax + leal 1088(%esi),%esi + movl %eax,(%edx) +.L1: + leal (%esi,%eax,2),%edx + movl %eax,%ebp + incl %eax + pushl 20(%esp) + andl %ebx,%eax + leal 544(%esi,%eax,2),%ecx + incl %ebx + testl $1, %eax + jnz .L2 + xchgl %edx,%ecx + incl %ebp + leal 544(%esi),%esi +.L2: + pushl %edx + pushl %ecx + call ASM_NAME(dct64_MMX) + addl $12,%esp +/* stack like before, pushed 3, incremented again */ + leal 1(%ebx), %ecx + subl %ebp,%ebx + pushl %eax + movl 44(%esp),%eax /* decwins */ + leal (%eax,%ebx,2), %edx + popl %eax +.L3: + movq (%edx),%mm0 + pmaddwd (%esi),%mm0 + movq 8(%edx),%mm1 + pmaddwd 8(%esi),%mm1 + movq 16(%edx),%mm2 + pmaddwd 16(%esi),%mm2 + movq 24(%edx),%mm3 + pmaddwd 24(%esi),%mm3 + paddd %mm1,%mm0 + paddd %mm2,%mm0 + paddd %mm3,%mm0 + movq %mm0,%mm1 + psrlq $32,%mm1 + paddd %mm1,%mm0 + psrad $13,%mm0 + packssdw %mm0,%mm0 + movd %mm0,%eax + movw %ax, (%edi) + + leal 32(%esi),%esi + leal 64(%edx),%edx + leal 4(%edi),%edi + loop .L3 + + + subl $64,%esi + movl $15,%ecx +.L4: + movq (%edx),%mm0 + pmaddwd (%esi),%mm0 + movq 8(%edx),%mm1 + pmaddwd 8(%esi),%mm1 + movq 16(%edx),%mm2 + pmaddwd 16(%esi),%mm2 + movq 24(%edx),%mm3 + pmaddwd 24(%esi),%mm3 + paddd %mm1,%mm0 + paddd %mm2,%mm0 + paddd %mm3,%mm0 + movq %mm0,%mm1 + psrlq $32,%mm1 + paddd %mm0,%mm1 + psrad $13,%mm1 + packssdw %mm1,%mm1 + psubd %mm0,%mm0 + psubsw %mm1,%mm0 + movd %mm0,%eax + movw %ax,(%edi) + + subl $32,%esi + addl $64,%edx + leal 4(%edi),%edi + loop .L4 + emms + popl %ebx + popl %esi + popl %edi + popl %ebp + ret + +/* Mark non-executable stack. */ +#if defined(__linux__) && defined(__ELF__) +.section .note.GNU-stack,"",%progbits +#endif + diff -r f2985e08589c -r 7e08477b0fc1 decoders/libmpg123/decode_ntom.c --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/decoders/libmpg123/decode_ntom.c Fri Jan 30 02:44:47 2009 -0500 @@ -0,0 +1,408 @@ +/* + decode_ntom.c: N->M down/up sampling. Not optimized for speed. + + copyright 1995-2008 by the mpg123 project - free software under the terms of the LGPL 2.1 + see COPYING and AUTHORS files in distribution or http://mpg123.org + initially written by Michael Hipp +*/ + +#define SAFE_NTOM /* Do not depend on off_t*off_t with big values still being in the range... */ +#include "mpg123lib_intern.h" +#include "debug.h" + +int synth_ntom_set_step(mpg123_handle *fr) +{ + long m,n; + m = frame_freq(fr); + n = fr->af.rate; + if(VERBOSE2) + fprintf(stderr,"Init rate converter: %ld->%ld\n",m,n); + + if(n > NTOM_MAX_FREQ || m > NTOM_MAX_FREQ || m <= 0 || n <= 0) { + if(NOQUIET) error("NtoM converter: illegal rates"); + fr->err = MPG123_BAD_RATE; + return -1; + } + + n *= NTOM_MUL; + fr->ntom_step = (unsigned long) n / m; + + if(fr->ntom_step > (unsigned long)NTOM_MAX*NTOM_MUL) { + if(NOQUIET) error3("max. 1:%i conversion allowed (%lu vs %lu)!", NTOM_MAX, fr->ntom_step, (unsigned long)8*NTOM_MUL); + fr->err = MPG123_BAD_RATE; + return -1; + } + + fr->ntom_val[0] = fr->ntom_val[1] = ntom_val(fr, fr->num); + return 0; +} + +/* + The SAFE_NTOM does iterative loops instead of straight multiplication. + The safety is not just about the algorithm closely mimicking the decoder instead of applying some formula, + it is more about avoiding multiplication of possibly big sample offsets (a 32bit off_t could overflow too easily). +*/ + +unsigned long ntom_val(mpg123_handle *fr, off_t frame) +{ + off_t ntm; +#ifdef SAFE_NTOM /* Carry out the loop, without the threatening integer overflow. */ + off_t f; + ntm = NTOM_MUL>>1; /* for frame 0 */ + for(f=0; f 0 */ + { + ntm += spf(fr)*fr->ntom_step; + ntm -= (ntm/NTOM_MUL)*NTOM_MUL; + } +#else /* Just make one computation with overall sample offset. */ + ntm = (NTOM_MUL>>1) + spf(fr)*frame*fr->ntom_step; + ntm -= (ntm/NTOM_MUL)*NTOM_MUL; +#endif + return (unsigned long) ntm; +} + +/* Set the ntom value for next expected frame to be decoded. + This is for keeping output consistent across seeks. */ +void ntom_set_ntom(mpg123_handle *fr, off_t num) +{ + fr->ntom_val[1] = fr->ntom_val[0] = ntom_val(fr, num); +} + +/* Convert frame offset to unadjusted output sample offset. */ +off_t ntom_frmouts(mpg123_handle *fr, off_t frame) +{ +#ifdef SAFE_NTOM + off_t f; +#endif + off_t soff = 0; + off_t ntm = ntom_val(fr,0); +#ifdef SAFE_NTOM + if(frame <= 0) return 0; + for(f=0; fntom_step; + soff += ntm/NTOM_MUL; + ntm -= (ntm/NTOM_MUL)*NTOM_MUL; + } +#else + soff = (ntm + frame*(off_t)spf(fr)*(off_t)fr->ntom_step)/(off_t)NTOM_MUL; +#endif + return soff; +} + +/* Convert input samples to unadjusted output samples. */ +off_t ntom_ins2outs(mpg123_handle *fr, off_t ins) +{ + off_t soff = 0; + off_t ntm = ntom_val(fr,0); +#ifdef SAFE_NTOM + { + off_t block = spf(fr); + if(ins <= 0) return 0; + do + { + off_t nowblock = ins > block ? block : ins; + ntm += nowblock*fr->ntom_step; + soff += ntm/NTOM_MUL; + ntm -= (ntm/NTOM_MUL)*NTOM_MUL; + ins -= nowblock; + } while(ins > 0); + } +#else + /* Beware of overflows: when off_t is 32bits, the multiplication blows too easily. + Of course, it blows for 64bits, too, in theory, but that's for _really_ large files. */ + soff = ((off_t)ntm + (off_t)ins*(off_t)fr->ntom_step)/(off_t)NTOM_MUL; +#endif + return soff; +} + +/* Determine frame offset from unadjusted output sample offset. */ +off_t ntom_frameoff(mpg123_handle *fr, off_t soff) +{ + off_t ioff = 0; /* frames or samples */ + off_t ntm = ntom_val(fr,0); +#ifdef SAFE_NTOM + if(soff <= 0) return 0; + for(ioff=0; 1; ++ioff) + { + ntm += spf(fr)*fr->ntom_step; + if(ntm/NTOM_MUL > soff) break; + soff -= ntm/NTOM_MUL; + ntm -= (ntm/NTOM_MUL)*NTOM_MUL; + } + return ioff; +#else + ioff = (soff*(off_t)NTOM_MUL-ntm)/(off_t)fr->ntom_step; + return ioff/(off_t)spf(fr); +#endif +} + +/* Now to the actual decoding/synth functions... */ + +int synth_ntom_8bit(real *bandPtr,int channel, mpg123_handle *fr, int final) +{ + sample_t samples_tmp[8*64]; + sample_t *tmp1 = samples_tmp + channel; + int i,ret; + + int pnt = fr->buffer.fill; + unsigned char *samples = fr->buffer.data; + fr->buffer.data = (unsigned char*) samples_tmp; + fr->buffer.fill = 0; + ret = synth_ntom(bandPtr, channel, fr, 1); + fr->buffer.data = samples; + + samples += channel + pnt; + for(i=0;i<(fr->buffer.fill>>2);i++) { +#ifdef FLOATOUT + *samples = 0; +#else + *samples = fr->conv16to8[*tmp1>>AUSHIFT]; +#endif + samples += 2; + tmp1 += 2; + } + fr->buffer.fill = pnt + (final ? fr->buffer.fill>>1 : 0); + + return ret; +} + +int synth_ntom_8bit_mono(real *bandPtr, mpg123_handle *fr) +{ + sample_t samples_tmp[8*64]; + sample_t *tmp1 = samples_tmp; + int i,ret; + + int pnt = fr->buffer.fill; + unsigned char *samples = fr->buffer.data; + fr->buffer.data = (unsigned char*) samples_tmp; + fr->buffer.fill = 0; + ret = synth_ntom(bandPtr, 0, fr, 1); + fr->buffer.data = samples; + + samples += pnt; + for(i=0;i<(fr->buffer.fill>>2);i++) { +#ifdef FLOATOUT + *samples++ = 0; +#else + *samples++ = fr->conv16to8[*tmp1>>AUSHIFT]; +#endif + tmp1 += 2; + } + fr->buffer.fill = pnt + (fr->buffer.fill>>2); + + return ret; +} + +int synth_ntom_8bit_mono2stereo(real *bandPtr, mpg123_handle *fr) +{ + sample_t samples_tmp[8*64]; + sample_t *tmp1 = samples_tmp; + int i,ret; + + int pnt = fr->buffer.fill; + unsigned char *samples = fr->buffer.data; + fr->buffer.data = (unsigned char*) samples_tmp; + fr->buffer.fill = 0; + ret = synth_ntom(bandPtr, 0, fr, 1); + fr->buffer.data = samples; + + samples += pnt; + for(i=0;i<(fr->buffer.fill>>2);i++) { +#ifdef FLOATOUT + *samples++ = 0; + *samples++ = 0; +#else + *samples++ = fr->conv16to8[*tmp1>>AUSHIFT]; + *samples++ = fr->conv16to8[*tmp1>>AUSHIFT]; +#endif + tmp1 += 2; + } + fr->buffer.fill = pnt + (fr->buffer.fill>>1); + + return ret; +} + +int synth_ntom_mono(real *bandPtr, mpg123_handle *fr) +{ + sample_t samples_tmp[8*64]; + sample_t *tmp1 = samples_tmp; + int i,ret; + + int pnt = fr->buffer.fill; + unsigned char *samples = fr->buffer.data; + fr->buffer.data = (unsigned char*) samples_tmp; + fr->buffer.fill = 0; + ret = synth_ntom(bandPtr, 0, fr, 1); + fr->buffer.data = samples; + + samples += pnt; + for(i=0;i<(fr->buffer.fill>>2);i++) { + *( (sample_t *)samples) = *tmp1; + samples += sizeof(sample_t); + tmp1 += 2; + } + fr->buffer.fill = pnt + (fr->buffer.fill>>2)*sizeof(sample_t); + + return ret; +} + + +int synth_ntom_mono2stereo(real *bandPtr, mpg123_handle *fr) +{ + int i,ret; + int pnt1 = fr->buffer.fill; + unsigned char *samples = fr->buffer.data + pnt1; + + ret = synth_ntom(bandPtr, 0, fr, 1); + + for(i=0;i<((fr->buffer.fill-pnt1)>>2);i++) { + ((sample_t *)samples)[1] = ((sample_t *)samples)[0]; + samples+=2*sizeof(sample_t); + } + + return ret; +} + + +int synth_ntom(real *bandPtr,int channel, mpg123_handle *fr, int final) +{ + static const int step = 2; + sample_t *samples = (sample_t *) (fr->buffer.data + fr->buffer.fill); + + real *b0, **buf; /* (*buf)[0x110]; */ + int clip = 0; + int bo1; + int ntom; + + if(fr->have_eq_settings) do_equalizer(bandPtr,channel,fr->equalizer); + + if(!channel) { + fr->bo[0]--; + fr->bo[0] &= 0xf; + buf = fr->real_buffs[0]; + ntom = fr->ntom_val[1] = fr->ntom_val[0]; + } + else { + samples++; + buf = fr->real_buffs[1]; + ntom = fr->ntom_val[1]; + } + + if(fr->bo[0] & 0x1) { + b0 = buf[0]; + bo1 = fr->bo[0]; + opt_dct64(fr)(buf[1]+((fr->bo[0]+1)&0xf),buf[0]+fr->bo[0],bandPtr); + } + else { + b0 = buf[1]; + bo1 = fr->bo[0]+1; + opt_dct64(fr)(buf[0]+fr->bo[0],buf[1]+fr->bo[0]+1,bandPtr); + } + + + { + register int j; + real *window = opt_decwin(fr) + 16 - bo1; + + for (j=16;j;j--,window+=0x10) + { + real sum; + + ntom += fr->ntom_step; + if(ntom < NTOM_MUL) { + window += 16; + b0 += 16; + continue; + } + + sum = REAL_MUL(*window++, *b0++); + sum -= REAL_MUL(*window++, *b0++); + sum += REAL_MUL(*window++, *b0++); + sum -= REAL_MUL(*window++, *b0++); + sum += REAL_MUL(*window++, *b0++); + sum -= REAL_MUL(*window++, *b0++); + sum += REAL_MUL(*window++, *b0++); + sum -= REAL_MUL(*window++, *b0++); + sum += REAL_MUL(*window++, *b0++); + sum -= REAL_MUL(*window++, *b0++); + sum += REAL_MUL(*window++, *b0++); + sum -= REAL_MUL(*window++, *b0++); + sum += REAL_MUL(*window++, *b0++); + sum -= REAL_MUL(*window++, *b0++); + sum += REAL_MUL(*window++, *b0++); + sum -= REAL_MUL(*window++, *b0++); + + while(ntom >= NTOM_MUL) { + WRITE_SAMPLE(samples,sum,clip); + samples += step; + ntom -= NTOM_MUL; + } + } + + ntom += fr->ntom_step; + if(ntom >= NTOM_MUL) + { + real sum; + sum = REAL_MUL(window[0x0], b0[0x0]); + sum += REAL_MUL(window[0x2], b0[0x2]); + sum += REAL_MUL(window[0x4], b0[0x4]); + sum += REAL_MUL(window[0x6], b0[0x6]); + sum += REAL_MUL(window[0x8], b0[0x8]); + sum += REAL_MUL(window[0xA], b0[0xA]); + sum += REAL_MUL(window[0xC], b0[0xC]); + sum += REAL_MUL(window[0xE], b0[0xE]); + + while(ntom >= NTOM_MUL) { + WRITE_SAMPLE(samples,sum,clip); + samples += step; + ntom -= NTOM_MUL; + } + } + + b0-=0x10,window-=0x20; + window += bo1<<1; + + for (j=15;j;j--,b0-=0x20,window-=0x10) + { + real sum; + + ntom += fr->ntom_step; + if(ntom < NTOM_MUL) { + window -= 16; + b0 += 16; + continue; + } + + sum = REAL_MUL(-*(--window), *b0++); + sum -= REAL_MUL(*(--window), *b0++); + sum -= REAL_MUL(*(--window), *b0++); + sum -= REAL_MUL(*(--window), *b0++); + sum -= REAL_MUL(*(--window), *b0++); + sum -= REAL_MUL(*(--window), *b0++); + sum -= REAL_MUL(*(--window), *b0++); + sum -= REAL_MUL(*(--window), *b0++); + sum -= REAL_MUL(*(--window), *b0++); + sum -= REAL_MUL(*(--window), *b0++); + sum -= REAL_MUL(*(--window), *b0++); + sum -= REAL_MUL(*(--window), *b0++); + sum -= REAL_MUL(*(--window), *b0++); + sum -= REAL_MUL(*(--window), *b0++); + sum -= REAL_MUL(*(--window), *b0++); + sum -= REAL_MUL(*(--window), *b0++); + + while(ntom >= NTOM_MUL) { + WRITE_SAMPLE(samples,sum,clip); + samples += step; + ntom -= NTOM_MUL; + } + } + } + + fr->ntom_val[channel] = ntom; + if(final) fr->buffer.fill = ((unsigned char *) samples - fr->buffer.data - (channel ? 2 : 0)); + + return clip; +} + + diff -r f2985e08589c -r 7e08477b0fc1 decoders/libmpg123/decode_sse.S --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/decoders/libmpg123/decode_sse.S Fri Jan 30 02:44:47 2009 -0500 @@ -0,0 +1,9 @@ +#include "mangle.h" +#define MPL_DCT64 ASM_NAME(dct64_sse) +#define SYNTH_NAME ASM_NAME(synth_1to1_sse_asm) +#include "decode_sse3d.h" + +/* Mark non-executable stack. */ +#if defined(__linux__) && defined(__ELF__) +.section .note.GNU-stack,"",%progbits +#endif diff -r f2985e08589c -r 7e08477b0fc1 decoders/libmpg123/decode_sse3d.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/decoders/libmpg123/decode_sse3d.h Fri Jan 30 02:44:47 2009 -0500 @@ -0,0 +1,247 @@ +/* + decode_sse3d: Synth for SSE and extended 3DNow (yeah, the name is a relic) + + copyright 2006-2007 by Zuxy Meng/the mpg123 project - free software under the terms of the LGPL 2.1 + see COPYING and AUTHORS files in distribution or http://mpg123.org + initially written by the mysterious higway for MMX (apparently) + then developed into SSE opt by Zuxy Meng, also building on Romain Dolbeau's AltiVec + Both have agreed to distribution under LGPL 2.1 . + + Transformed back into standalone asm, with help of + gcc -S -DHAVE_CONFIG_H -I. -march=pentium -O3 -Wall -pedantic -fno-strict-aliasing -DREAL_IS_FLOAT -c -o decode_mmxsse.{S,c} + + The difference between SSE and 3DNowExt is the dct64 function and the synth function name. + This template here uses the SYNTH_NAME and MPL_DCT64 macros for this - see decode_sse.S and decode_3dnowext.S... + That's not memory efficient since there's doubled code, but it's easier than giving another function pointer. + Maybe I'll change it in future, but now I need something that works. + + Original comment from MPlayer source follows: +*/ + +/* + * this code comes under GPL + * This code was taken from http://www.mpg123.org + * See ChangeLog of mpg123-0.59s-pre.1 for detail + * Applied to mplayer by Nick Kurshev + * + * Local ChangeLog: + * - Partial loops unrolling and removing MOVW insn from loops +*/ + +#include "mangle.h" + + .data + ALIGN8 +one_null: + .long -65536 + .long -65536 + ALIGN8 +null_one: + .long 65535 + .long 65535 + + .text + ALIGN16,,15 + /* void SYNTH_NAME(real *bandPtr, int channel, short *samples, short *buffs, int *bo, float *decwins) */ +.globl SYNTH_NAME +SYNTH_NAME: + pushl %ebp +/* stack:0=ebp 4=back 8=bandptr 12=channel 16=samples 20=buffs 24=bo 28=decwins */ + movl %esp, %ebp +/* Now the old stack addresses are preserved via %epb. */ + subl $4,%esp /* What has been called temp before. */ + pushl %edi + pushl %esi + pushl %ebx +#define TEMP 12(%esp) +#APP + movl 12(%ebp),%ecx + movl 16(%ebp),%edi + movl $15,%ebx + movl 24(%ebp),%edx + leal (%edi,%ecx,2),%edi + decl %ecx + movl 20(%ebp),%esi + movl (%edx),%eax + jecxz .L01 + decl %eax + andl %ebx,%eax + leal 1088(%esi),%esi + movl %eax,(%edx) + .L01: + leal (%esi,%eax,2),%edx + movl %eax,TEMP + incl %eax + andl %ebx,%eax + leal 544(%esi,%eax,2),%ecx + incl %ebx + testl $1, %eax + jnz .L02 + xchgl %edx,%ecx + incl TEMP + leal 544(%esi),%esi + .L02: + emms + pushl 8(%ebp) + pushl %edx + pushl %ecx + call MPL_DCT64 + addl $12, %esp + leal 1(%ebx), %ecx + subl TEMP,%ebx + pushl %ecx + /* leal ASM_NAME(decwins)(%ebx,%ebx,1), %edx */ + movl 28(%ebp),%ecx + leal (%ecx,%ebx,2), %edx + movl (%esp),%ecx /* restore, but leave value on stack */ + shrl $1, %ecx + ALIGN16 + .L03: + movq (%edx),%mm0 + movq 64(%edx),%mm4 + pmaddwd (%esi),%mm0 + pmaddwd 32(%esi),%mm4 + movq 8(%edx),%mm1 + movq 72(%edx),%mm5 + pmaddwd 8(%esi),%mm1 + pmaddwd 40(%esi),%mm5 + movq 16(%edx),%mm2 + movq 80(%edx),%mm6 + pmaddwd 16(%esi),%mm2 + pmaddwd 48(%esi),%mm6 + movq 24(%edx),%mm3 + movq 88(%edx),%mm7 + pmaddwd 24(%esi),%mm3 + pmaddwd 56(%esi),%mm7 + paddd %mm1,%mm0 + paddd %mm5,%mm4 + paddd %mm2,%mm0 + paddd %mm6,%mm4 + paddd %mm3,%mm0 + paddd %mm7,%mm4 + movq %mm0,%mm1 + movq %mm4,%mm5 + psrlq $32,%mm1 + psrlq $32,%mm5 + paddd %mm1,%mm0 + paddd %mm5,%mm4 + psrad $13,%mm0 + psrad $13,%mm4 + packssdw %mm0,%mm0 + packssdw %mm4,%mm4 + movq (%edi), %mm1 + punpckldq %mm4, %mm0 + pand one_null, %mm1 + pand null_one, %mm0 + por %mm0, %mm1 + movq %mm1,(%edi) + leal 64(%esi),%esi + leal 128(%edx),%edx + leal 8(%edi),%edi + decl %ecx + jnz .L03 + popl %ecx + andl $1, %ecx + jecxz .next_loop + movq (%edx),%mm0 + pmaddwd (%esi),%mm0 + movq 8(%edx),%mm1 + pmaddwd 8(%esi),%mm1 + movq 16(%edx),%mm2 + pmaddwd 16(%esi),%mm2 + movq 24(%edx),%mm3 + pmaddwd 24(%esi),%mm3 + paddd %mm1,%mm0 + paddd %mm2,%mm0 + paddd %mm3,%mm0 + movq %mm0,%mm1 + psrlq $32,%mm1 + paddd %mm1,%mm0 + psrad $13,%mm0 + packssdw %mm0,%mm0 + movd %mm0,%eax + movw %ax, (%edi) + leal 32(%esi),%esi + leal 64(%edx),%edx + leal 4(%edi),%edi + .next_loop: + subl $64,%esi + movl $7,%ecx + ALIGN16 + .L04: + movq (%edx),%mm0 + movq 64(%edx),%mm4 + pmaddwd (%esi),%mm0 + pmaddwd -32(%esi),%mm4 + movq 8(%edx),%mm1 + movq 72(%edx),%mm5 + pmaddwd 8(%esi),%mm1 + pmaddwd -24(%esi),%mm5 + movq 16(%edx),%mm2 + movq 80(%edx),%mm6 + pmaddwd 16(%esi),%mm2 + pmaddwd -16(%esi),%mm6 + movq 24(%edx),%mm3 + movq 88(%edx),%mm7 + pmaddwd 24(%esi),%mm3 + pmaddwd -8(%esi),%mm7 + paddd %mm1,%mm0 + paddd %mm5,%mm4 + paddd %mm2,%mm0 + paddd %mm6,%mm4 + paddd %mm3,%mm0 + paddd %mm7,%mm4 + movq %mm0,%mm1 + movq %mm4,%mm5 + psrlq $32,%mm1 + psrlq $32,%mm5 + paddd %mm0,%mm1 + paddd %mm4,%mm5 + psrad $13,%mm1 + psrad $13,%mm5 + packssdw %mm1,%mm1 + packssdw %mm5,%mm5 + psubd %mm0,%mm0 + psubd %mm4,%mm4 + psubsw %mm1,%mm0 + psubsw %mm5,%mm4 + movq (%edi), %mm1 + punpckldq %mm4, %mm0 + pand one_null, %mm1 + pand null_one, %mm0 + por %mm0, %mm1 + movq %mm1,(%edi) + subl $64,%esi + addl $128,%edx + leal 8(%edi),%edi + decl %ecx + jnz .L04 + movq (%edx),%mm0 + pmaddwd (%esi),%mm0 + movq 8(%edx),%mm1 + pmaddwd 8(%esi),%mm1 + movq 16(%edx),%mm2 + pmaddwd 16(%esi),%mm2 + movq 24(%edx),%mm3 + pmaddwd 24(%esi),%mm3 + paddd %mm1,%mm0 + paddd %mm2,%mm0 + paddd %mm3,%mm0 + movq %mm0,%mm1 + psrlq $32,%mm1 + paddd %mm0,%mm1 + psrad $13,%mm1 + packssdw %mm1,%mm1 + psubd %mm0,%mm0 + psubsw %mm1,%mm0 + movd %mm0,%eax + movw %ax,(%edi) + emms + +#NO_APP + popl %ebx + popl %esi + popl %edi + addl $4,%esp + popl %ebp + ret diff -r f2985e08589c -r 7e08477b0fc1 decoders/libmpg123/dnoise.dat --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/decoders/libmpg123/dnoise.dat Fri Jan 30 02:44:47 2009 -0500 @@ -0,0 +1,65536 @@ +-.126371 +.497872 +-.779434 +.843073 +-.646505 +.245335 +.222073 +-.581612 +.695388 +-.530708 +.185041 +.158622 +-.331470 +.278622 +-.092817 +-.048841 +.011484 +.193124 +-.404798 +.427858 +-.181552 +-.226995 +.570757 +-.665446 +.501044 +-.236217 +.058892 +-.027609 +.026705 +.123418 +-.489333 +.929757 +-1.170636 +1.002794 +-.453246 +-.206738 +.632205 +-.633397 +.294532 +.104633 +-.302673 +.242320 +-.089727 +.081029 +-.324990 +.717858 +-1.029248 +1.079430 +-.865108 +.545086 +-.315316 +.279339 +-.403600 +.567323 +-.649849 +.592073 +-.408065 +.162572 +.060177 +-.184770 +.170196 +-.029769 +-.166320 +.316669 +-.336468 +.202805 +.031615 +-.267881 +.415993 +-.441208 +.374135 +-.283867 +.237228 +-.269021 +.372174 +-.501860 +.588166 +-.561109 +.389184 +-.113668 +-.154052 +.288390 +-.230394 +.033172 +.169925 +-.254336 +.180427 +.001239 +-.207596 +.381351 +-.497008 +.525549 +-.416073 +.133741 +.274462 +-.657655 +.824427 +-.655465 +.181011 +.434058 +-.978169 +1.285011 +-1.277038 +.964366 +-.433292 +-.163679 +.640509 +-.853299 +.787458 +-.582884 +.449365 +-.512563 +.704562 +-.798259 +.577758 +-.023201 +-.637865 +1.068069 +-1.056910 +.681034 +-.259306 +.124050 +-.373801 +.794477 +-1.013669 +.775175 +-.129223 +-.599158 +1.031099 +-.974601 +.517839 +.066833 +-.512471 +.700553 +-.680405 +.587045 +-.534422 +.550606 +-.576378 +.514289 +-.298390 +-.051238 +.423241 +-.671410 +.704669 +-.549354 +.333014 +-.194403 +.184374 +-.232905 +.206095 +-.008017 +-.348208 +.743970 +-1.019454 +1.049885 +-.795487 +.316931 +.236503 +-.666516 +.797240 +-.561812 +.056286 +.489703 +-.828997 +.835407 +-.572158 +.239403 +-.035552 +.028771 +-.126091 +.156077 +-.002708 +-.304050 +.602824 +-.710860 +.555917 +-.239252 +-.018276 +.017531 +.282194 +-.725074 +1.049196 +-1.048341 +.699686 +-.177881 +-.246852 +.355969 +-.086717 +-.456173 +1.068131 +-1.539105 +1.723683 +-1.568057 +1.105834 +-.444760 +-.248736 +.779518 +-.982741 +.800518 +-.332841 +-.187653 +.507058 +-.492466 +.211669 +.113055 +-.253987 +.128636 +.153526 +-.377464 +.374412 +-.128717 +-.227781 +.516816 +-.630938 +.590884 +-.517150 +.545354 +-.739329 +1.047802 +-1.323966 +1.397959 +-1.168752 +.669202 +-.066645 +-.409525 +.580521 +-.410935 +.026572 +.356685 +-.553327 +.504346 +-.288332 +.043253 +.141181 +-.277205 +.436716 +-.651000 +.844066 +-.869754 +.635648 +-.215008 +-.157355 +.226196 +.096190 +-.635057 +1.036336 +-.990329 +.451464 +.299472 +-.807388 +.722275 +-.027316 +-.935817 +1.664935 +-1.792102 +1.287557 +-.451326 +-.286585 +.618143 +-.505490 +.152416 +.157551 +-.240544 +.102379 +.099415 +-.179993 +.051984 +.226031 +-.500686 +.633198 +-.588798 +.445032 +-.317995 +.269202 +-.269536 +.248552 +-.182288 +.135708 +-.212630 +.448683 +-.739797 +.880135 +-.697185 +.191455 +.424851 +-.828880 +.772228 +-.236914 +-.534490 +1.158070 +-1.314780 +.930502 +-.226757 +-.393937 +.571055 +-.192762 +-.537378 +1.218571 +-1.487907 +1.229142 +-.628217 +.047183 +.196134 +-.002984 +-.476145 +.954564 +-1.178012 +1.043978 +-.617449 +.062058 +.451735 +-.808485 +.964828 +-.938582 +.790698 +-.605411 +.463329 +-.409224 +.430645 +-.465883 +.442322 +-.322865 +.131314 +.058113 +-.158472 +.113045 +.075994 +-.343025 +.580166 +-.678519 +.574712 +-.281691 +-.113686 +.486386 +-.724084 +.768183 +-.628861 +.372934 +-.093638 +-.124324 +.231160 +-.219429 +.112956 +.050462 +-.226928 +.362720 +-.395747 +.279793 +-.024831 +-.282393 +.510873 +-.563079 +.442322 +-.249115 +.100163 +-.032927 +-.020319 +.160193 +-.409025 +.663533 +-.766234 +.647766 +-.419203 +.320701 +-.544970 +1.065059 +-1.610836 +1.833730 +-1.553197 +.903052 +-.259697 +-.007328 +-.212963 +.698974 +-1.051706 +.966280 +-.430702 +-.275602 +.767679 +-.792826 +.371346 +.230092 +-.659509 +.676170 +-.279738 +-.289389 +.677696 +-.612296 +.059468 +.744351 +-1.415615 +1.633517 +-1.310116 +.618659 +.125613 +-.641087 +.797705 +-.624972 +.244521 +.200689 +-.580801 +.792009 +-.778689 +.563061 +-.245811 +-.048662 +.255707 +-.416065 +.636467 +-.985799 +1.405228 +-1.706730 +1.672335 +-1.194345 +.367253 +.531114 +-1.167965 +1.328168 +-1.033785 +.534288 +-.161470 +.130608 +-.412598 +.763537 +-.892412 +.650136 +-.110037 +-.506462 +.990219 +-1.265662 +1.392091 +-1.463807 +1.502231 +-1.428187 +1.130763 +-.575290 +-.131447 +.766594 +-1.094440 +.988759 +-.506066 +-.132718 +.647549 +-.840015 +.693105 +-.370183 +.110418 +-.083722 +.297888 +-.616739 +.869546 +-.967642 +.943438 +-.891181 +.867534 +-.838194 +.714985 +-.449887 +.104667 +.165938 +-.209080 +-.023751 +.441613 +-.868145 +1.141624 +-1.192608 +1.058257 +-.840340 +.643364 +-.524861 +.474193 +-.425268 +.302863 +-.085859 +-.152176 +.268761 +-.148889 +-.186358 +.549277 +-.681526 +.428213 +.134062 +-.721509 +1.019052 +-.887599 +.451604 +-.001794 +-.212825 +.146477 +.045285 +-.159039 +.121305 +-.050041 +.156332 +-.567752 +1.211385 +-1.841873 +2.186326 +-2.095567 +1.601731 +-.866160 +.082809 +.585382 +-1.015759 +1.120463 +-.871128 +.346640 +.255073 +-.689651 +.801037 +-.626363 +.379712 +-.308040 +.514921 +-.883995 +1.165453 +-1.164216 +.885950 +-.525427 +.303936 +-.284000 +.312088 +-.143421 +-.341842 +.999944 +-1.480440 +1.452371 +-.841920 +-.091956 +.905720 +-1.243410 +1.043876 +-.544013 +.088666 +.104874 +-.059335 +-.036917 +.011546 +.152849 +-.322889 +.341940 +-.168819 +-.082418 +.226453 +-.143899 +-.133743 +.451565 +-.644967 +.652353 +-.544854 +.456003 +-.468467 +.544916 +-.555947 +.384552 +-.029689 +-.369447 +.608910 +-.544448 +.180984 +.328957 +-.768386 +.962414 +-.848542 +.488615 +-.036194 +-.319074 +.419543 +-.209805 +-.218671 +.647677 +-.830564 +.627034 +-.091921 +-.545405 +1.004111 +-1.098973 +.820335 +-.308723 +-.240546 +.669917 +-.897878 +.904382 +-.702341 +.330260 +.134447 +-.571624 +.851422 +-.896608 +.730999 +-.469036 +.242118 +-.111680 +.038244 +.064536 +-.233955 +.406047 +-.460742 +.332000 +-.086600 +-.106043 +.098374 +.116018 +-.389234 +.525811 +-.425894 +.154290 +.111027 +-.203706 +.073183 +.196870 +-.451806 +.557485 +-.464065 +.217680 +.073077 +-.293398 +.375712 +-.328123 +.223963 +-.156283 +.182045 +-.288072 +.398408 +-.418353 +.291616 +-.042398 +-.219641 +.341600 +-.208667 +-.171333 +.634521 +-.920253 +.810839 +-.275652 +-.477942 +1.094327 +-1.255779 +.853991 +-.044561 +-.840078 +1.457267 +-1.601629 +1.265814 +-.609276 +-.122629 +.682685 +-.887867 +.668919 +-.102846 +-.591799 +1.123047 +-1.252539 +.925260 +-.317176 +-.250328 +.493810 +-.337583 +-.044739 +.347126 +-.327706 +-.046634 +.595021 +-1.044198 +1.185353 +-.971055 +.515207 +-.021765 +-.308064 +.353022 +-.116044 +-.276426 +.627639 +-.764058 +.624909 +-.291646 +-.067457 +.304359 +-.377220 +.356467 +-.351534 +.415600 +-.499381 +.487763 +-.292859 +-.063127 +.437589 +-.645581 +.579737 +-.290667 +-.034326 +.188131 +-.081413 +-.193407 +.418649 +-.392865 +.064960 +.425936 +-.830973 +.943858 +-.732277 +.364261 +-.105132 +.140695 +-.439890 +.759009 +-.802184 +.436993 +.192156 +-.749808 +.944502 +-.739487 +.373420 +-.169415 +.280941 +-.577621 +.762562 +-.625049 +.221936 +.159477 +-.228902 +-.068902 +.491491 +-.660812 +.331401 +.427909 +-1.263737 +1.753887 +-1.661433 +1.063673 +-.284554 +-.311289 +.524205 +-.400098 +.152814 +.000831 +.024832 +-.164273 +.290136 +-.331264 +.327050 +-.383008 +.570581 +-.854593 +1.104448 +-1.177109 +1.006895 +-.639477 +.194828 +.203307 +-.479882 +.615899 +-.623115 +.517761 +-.316398 +.052591 +.205826 +-.361960 +.326457 +-.071748 +-.329229 +.713980 +-.900912 +.788143 +-.419879 +-.029883 +.355239 +-.436436 +.298387 +-.070931 +-.114130 +.208693 +-.254976 +.318693 +-.412097 +.473227 +-.416822 +.214036 +.063603 +-.271802 +.276965 +-.042089 +-.340042 +.690092 +-.839610 +.726656 +-.430764 +.121686 +.049591 +-.047432 +-.031360 +.035101 +.124440 +-.400909 +.644842 +-.713888 +.575514 +-.322630 +.096578 +.013152 +-.010922 +-.043259 +.102322 +-.163330 +.241401 +-.326364 +.374773 +-.347347 +.253156 +-.155689 +.134088 +-.232258 +.432746 +-.665160 +.833455 +-.846793 +.649700 +-.250874 +-.263652 +.751424 +-1.070271 +1.140694 +-.975397 +.660284 +-.309355 +.028465 +.099423 +-.024506 +-.246477 +.626578 +-.962104 +1.100112 +-.975528 +.649942 +-.264381 +-.059637 +.289311 +-.464241 +.618969 +-.724111 +.705307 +-.521791 +.228780 +.036842 +-.137976 +.020887 +.258619 +-.575388 +.805269 +-.883310 +.827107 +-.721062 +.666692 +-.716213 +.826535 +-.873709 +.735604 +-.394343 +-.020124 +.291573 +-.252174 +-.102241 +.599796 +-.991718 +1.093305 +-.874595 +.453732 +-.014581 +-.289499 +.394402 +-.331127 +.193321 +-.087056 +.079568 +-.165102 +.270096 +-.307337 +.252447 +-.182961 +.231172 +-.469057 +.816267 +-1.067345 +1.044785 +-.764925 +.466107 +-.445726 +.817137 +-1.383623 +1.748763 +-1.595159 +.922294 +-.061379 +-.542436 +.615714 +-.205097 +-.399097 +.881831 +-1.092023 +1.077639 +-.975025 +.867492 +-.731467 +.498781 +-.162509 +-.178186 +.379277 +-.369241 +.220551 +-.107283 +.172762 +-.406348 +.629314 +-.612433 +.249310 +.338060 +-.846355 +.972771 +-.617145 +-.032780 +.600043 +-.746601 +.386403 +.256532 +-.784731 +.870020 +-.445768 +-.268976 +.915043 +-1.203731 +1.059589 +-.623752 +.141269 +.182059 +-.269220 +.172855 +-.008117 +-.129451 +.210069 +-.258417 +.302920 +-.330486 +.287292 +-.128816 +-.121732 +.361859 +-.469078 +.394170 +-.214734 +.093875 +-.162012 +.406885 +-.663390 +.723732 +-.491897 +.064450 +.327834 +-.474959 +.320895 +.022322 +-.378511 +.635648 +-.795615 +.917141 +-1.016394 +1.019779 +-.813605 +.350780 +.273418 +-.841845 +1.126313 +-1.017729 +.590333 +-.058643 +-.345717 +.499637 +-.441121 +.322034 +-.298458 +.431822 +-.660216 +.849055 +-.880159 +.720260 +-.431131 +.123961 +.105120 +-.214306 +.208351 +-.100351 +-.114623 +.440820 +-.829259 +1.145886 +-1.213623 +.923573 +-.340590 +-.289546 +.661411 +-.590929 +.132205 +.454372 +-.863841 +.929048 +-.703966 +.400286 +-.228318 +.251690 +-.350402 +.312806 +.007098 +-.572131 +1.162878 +-1.497817 +1.394627 +-.870285 +.122760 +.580750 +-1.028903 +1.132477 +-.917120 +.479999 +.047192 +-.519970 +.808986 +-.846259 +.667735 +-.410196 +.243936 +-.273427 +.470404 +-.688768 +.757221 +-.593355 +.267412 +.028232 +-.091791 +-.156209 +.605217 +-1.004469 +1.112847 +-.859761 +.404783 +-.041174 +-.003764 +-.264562 +.598731 +-.673303 +.309215 +.401547 +-1.157364 +1.641678 +-1.705791 +1.418602 +-.974983 +.558513 +-.265421 +.120322 +-.129348 +.297804 +-.594940 +.915478 +-1.098386 +1.010987 +-.641185 +.122715 +.334966 +-.569442 +.558987 +-.424526 +.339881 +-.409981 +.597664 +-.747025 +.688491 +-.356512 +-.158509 +.658171 +-.951136 +.958656 +-.745797 +.467615 +-.274757 +.239728 +-.339133 +.486582 +-.586261 +.579078 +-.467582 +.315632 +-.221506 +.269172 +-.474973 +.760398 +-.975954 +.973743 +-.690864 +.192410 +.356026 +-.772543 +.949729 +-.900134 +.733633 +-.583325 +.523436 +-.525331 +.478425 +-.268967 +-.127116 +.598335 +-.940496 +.973332 +-.658561 +.133762 +.369268 +-.668722 +.736605 +-.688751 +.674695 +-.756061 +.865415 +-.870559 +.688613 +-.363137 +.049877 +.075865 +.071788 +-.431807 +.823065 +-1.038807 +.955526 +-.596866 +.118791 +.274354 +-.436421 +.350777 +-.128100 +-.067161 +.119981 +-.035890 +-.067142 +.045999 +.155266 +-.448546 +.649838 +-.607867 +.322344 +.041586 +-.263861 +.228872 +-.013125 +-.171139 +.138699 +.123717 +-.445500 +.605721 +-.507377 +.252150 +-.054281 +.064718 +-.251054 +.432242 +-.435885 +.242430 +.004844 +-.127050 +.058282 +.113901 +-.244058 +.265755 +-.241002 +.279204 +-.406938 +.517508 +-.456691 +.173850 +.198372 +-.416717 +.304491 +.105234 +-.575120 +.817256 +-.683192 +.256697 +.209879 +-.463639 +.407055 +-.141686 +-.120206 +.209269 +-.111371 +-.036117 +.056245 +.132113 +-.455004 +.738924 +-.831891 +.695433 +-.407892 +.095410 +.144420 +-.276075 +.316568 +-.311501 +.313140 +-.354244 +.416890 +-.422025 +.270441 +.074684 +-.526041 +.897210 +-1.015672 +.842516 +-.499020 +.171551 +.030642 +-.146657 +.306201 +-.595179 +.962286 +-1.245916 +1.295508 +-1.081126 +.700356 +-.285323 +-.099657 +.476437 +-.875218 +1.241929 +-1.431463 +1.310947 +-.891512 +.366863 +-.005617 +-.031304 +-.194777 +.450450 +-.509341 +.318669 +-.023303 +-.165326 +.142850 +.012307 +-.116057 +.039768 +.174585 +-.333380 +.228331 +.207951 +-.834385 +1.364494 +-1.518036 +1.172248 +-.431292 +-.417212 +1.034792 +-1.191249 +.875492 +-.299263 +-.217953 +.429268 +-.301802 +.025015 +.127076 +.012276 +-.394095 +.806780 +-1.043587 +1.048174 +-.924980 +.818928 +-.778188 +.723077 +-.543930 +.233090 +.075025 +-.199677 +.066336 +.217387 +-.432228 +.409344 +-.151076 +-.184965 +.416687 +-.467639 +.391133 +-.283283 +.176900 +-.017769 +-.258219 +.624694 +-.942099 +1.044431 +-.868458 +.517675 +-.204333 +.112470 +-.284888 +.611869 +-.915314 +1.054162 +-.979808 +.727258 +-.379226 +.039545 +.184125 +-.210794 +.032270 +.259758 +-.504564 +.558015 +-.378406 +.050077 +.271750 +-.452459 +.442826 +-.283869 +.066321 +.116858 +-.198305 +.145301 +.035784 +-.293010 +.530312 +-.632053 +.512656 +-.170955 +-.285003 +.669622 +-.804852 +.619735 +-.205060 +-.220618 +.427814 +-.313197 +-.029399 +.357015 +-.422249 +.124783 +.426866 +-.980676 +1.285697 +-1.222558 +.847610 +-.342968 +-.081648 +.278461 +-.210017 +-.049320 +.352640 +-.549652 +.561496 +-.422917 +.258953 +-.201742 +.299498 +-.482371 +.609926 +-.562707 +.309754 +.088441 +-.525716 +.898143 +-1.125803 +1.158252 +-.986273 +.658672 +-.277931 +-.041854 +.233335 +-.304836 +.313730 +-.306201 +.274504 +-.167333 +-.056101 +.372723 +-.686676 +.875548 +-.864011 +.676555 +-.431590 +.275262 +-.293007 +.454948 +-.632119 +.675175 +-.507616 +.176505 +.169068 +-.358550 +.294113 +-.006279 +-.359251 +.615854 +-.630706 +.387357 +.015235 +-.421784 +.699343 +-.791669 +.725989 +-.578780 +.427831 +-.317745 +.252718 +-.212435 +.175990 +-.137676 +.106774 +-.094368 +.098810 +-.100976 +.073057 +.006375 +-.142302 +.325267 +-.541313 +.778582 +-1.022235 +1.240814 +-1.378523 +1.367406 +-1.161542 +.778153 +-.318791 +-.051722 +.170870 +.038593 +-.514572 +1.069342 +-1.473991 +1.570776 +-1.349059 +.940323 +-.539828 +.306654 +-.300306 +.479036 +-.742283 +.981081 +-1.110657 +1.083779 +-.894245 +.576321 +-.196482 +-.165455 +.439992 +-.585456 +.593641 +-.487724 +.320186 +-.170138 +.129661 +-.270644 +.599909 +-1.029764 +1.394669 +-1.521270 +1.322157 +-.857043 +.314362 +.087627 +-.225309 +.138654 +.005851 +-.038163 +-.092435 +.286070 +-.380001 +.289860 +-.092329 +-.022898 +-.099272 +.445759 +-.824991 +.993879 +-.828842 +.413001 +.022589 +-.255005 +.207553 +.022108 +-.248469 +.326430 +-.233274 +.062357 +.051383 +-.019135 +-.150237 +.356854 +-.466509 +.388746 +-.136404 +-.169770 +.363775 +-.335023 +.104683 +.180737 +-.346056 +.315050 +-.177286 +.137148 +-.369718 +.878869 +-1.458996 +1.795941 +-1.650661 +1.012486 +-.126298 +-.626793 +.927206 +-.680170 +.053978 +.622507 +-1.037653 +1.046285 +-.712487 +.237690 +.167528 +-.387699 +.432696 +-.396343 +.384227 +-.454948 +.598305 +-.750330 +.830445 +-.783369 +.608248 +-.361498 +.131084 +.004466 +-.008442 +-.106326 +.291594 +-.482222 +.606105 +-.591277 +.386474 +.002125 +-.481882 +.888868 +-1.059688 +.925105 +-.560939 +.150254 +.127323 +-.206099 +.165933 +-.162594 +.308410 +-.590654 +.884120 +-1.042306 +.996308 +-.790537 +.537674 +-.335780 +.212223 +-.130261 +.040124 +.075285 +-.198047 +.309149 +-.417683 +.550934 +-.711807 +.847520 +-.868410 +.712931 +-.410214 +.086215 +.100619 +-.056309 +-.182961 +.462160 +-.594302 +.473966 +-.148668 +-.201714 +.373232 +-.270681 +-.024302 +.303310 +-.372952 +.190864 +.103034 +-.286269 +.215294 +.065693 +-.343818 +.370732 +-.023498 +-.604514 +1.232847 +-1.527338 +1.271319 +-.490821 +-.533027 +1.382690 +-1.705096 +1.391742 +-.633061 +-.192174 +.729938 +-.834421 +.608782 +-.288889 +.065827 +.021201 +-.055577 +.125187 +-.230018 +.295264 +-.266293 +.185280 +-.168070 +.296549 +-.525245 +.692595 +-.636416 +.321086 +.127152 +-.504578 +.666483 +-.613017 +.467016 +-.370717 +.383103 +-.449985 +.459639 +-.335926 +.100074 +.139102 +-.254889 +.183248 +.035394 +-.273479 +.377977 +-.242704 +-.141088 +.674361 +-1.182653 +1.479144 +-1.434833 +1.028470 +-.356300 +-.400691 +1.037117 +-1.387793 +1.376616 +-1.037221 +.499455 +.059051 +-.483843 +.707778 +-.771247 +.779539 +-.817796 +.878985 +-.858590 +.627723 +-.140865 +-.494144 +1.038073 +-1.234972 +.961761 +-.324582 +-.368443 +.762767 +-.662284 +.156057 +.427814 +-.725503 +.569076 +-.087663 +-.392051 +.572664 +-.378117 +-.017438 +.327032 +-.342688 +.048028 +.407031 +-.824422 +1.071446 +-1.117622 +.995038 +-.738888 +.367537 +.085878 +-.532210 +.832099 +-.865933 +.623684 +-.239136 +-.073903 +.150679 +.019128 +-.286856 +.443702 +-.350596 +.010160 +.455583 +-.886996 +1.162013 +-1.223766 +1.068054 +-.724916 +.255554 +.242930 +-.648100 +.848158 +-.788456 +.498334 +-.078706 +-.343317 +.663446 +-.825617 +.819414 +-.667896 +.424025 +-.172050 +.011215 +-.010753 +.158761 +-.351189 +.445401 +-.351037 +.092183 +.208582 +-.414398 +.462014 +-.389127 +.288430 +-.233138 +.235014 +-.260855 +.283222 +-.316240 +.405761 +-.582664 +.819253 +-1.026533 +1.101420 +-.996201 +.761894 +-.527704 +.419489 +-.465984 +.561297 +-.521609 +.208199 +.365522 +-1.021585 +1.513503 +-1.666461 +1.466653 +-1.046055 +.585909 +-.213872 +-.037456 +.198072 +-.294995 +.310708 +-.195764 +-.078267 +.468995 +-.857159 +1.094255 +-1.077061 +.803287 +-.374940 +-.052045 +.341770 +-.435986 +.368958 +-.238494 +.152980 +-.180209 +.318427 +-.498555 +.615258 +-.575636 +.345979 +.025882 +-.428371 +.739907 +-.890239 +.890841 +-.812574 +.725756 +-.647373 +.537835 +-.351525 +.100754 +.123649 +-.203250 +.085058 +.154156 +-.333356 +.281126 +.036597 +-.472377 +.781267 +-.782275 +.482621 +-.072404 +-.208383 +.234324 +-.072849 +-.075694 +.028513 +.247859 +-.614901 +.858885 +-.834937 +.558063 +-.184959 +-.089833 +.144801 +.020925 +-.315614 +.616334 +-.814619 +.833074 +-.634503 +.242623 +.238931 +-.643939 +.811448 +-.672304 +.293367 +.157997 +-.508230 +.664236 +-.635522 +.489119 +-.287489 +.063018 +.161815 +-.346614 +.439637 +-.420470 +.337019 +-.292934 +.384054 +-.629788 +.954009 +-1.231756 +1.367329 +-1.345980 +1.224245 +-1.071118 +.909174 +-.702947 +.404456 +-.018987 +-.364264 +.609390 +-.619389 +.410068 +-.114896 +-.088350 +.081209 +.131863 +-.438847 +.694655 +-.797210 +.717569 +-.481647 +.137508 +.258831 +-.637591 +.914521 +-1.015672 +.918905 +-.678063 +.400736 +-.184714 +.054164 +.055583 +-.246526 +.571070 +-.971940 +1.295944 +-1.376902 +1.133565 +-.618778 +-.006816 +.554644 +-.893077 +.996645 +-.943563 +.866136 +-.873903 +.983292 +-1.094365 +1.040139 +-.691809 +.059973 +.677729 +-1.250438 +1.432056 +-1.162356 +.579162 +.055740 +-.492782 +.615857 +-.484135 +.276158 +-.172039 +.243543 +-.416184 +.525495 +-.431605 +.118041 +.291860 +-.614069 +.726525 +-.649218 +.522187 +-.493238 +.596064 +-.713226 +.661348 +-.344190 +-.141255 +.538115 +-.597623 +.270197 +.225134 +-.522265 +.352333 +.256921 +-.975051 +1.373203 +-1.203945 +.563151 +.178625 +-.624059 +.599968 +-.239178 +-.149309 +.310270 +-.198822 +-.036547 +.202401 +-.203183 +.070257 +.116519 +-.314281 +.521588 +-.711438 +.785017 +-.621040 +.193358 +.354431 +-.765992 +.835962 +-.553717 +.108635 +.250074 +-.387750 +.359865 +-.341019 +.474357 +-.759662 +1.055456 +-1.180507 +1.034917 +-.660368 +.208078 +.156640 +-.350083 +.407457 +-.441324 +.549667 +-.736101 +.897979 +-.894352 +.649271 +-.220177 +-.217032 +.458825 +-.385109 +.026166 +.449216 +-.813522 +.886222 +-.615216 +.098736 +.461573 +-.854682 +.957067 +-.784865 +.476586 +-.217121 +.143448 +-.278967 +.526843 +-.725240 +.737806 +-.534771 +.217928 +.032291 +-.064752 +-.143493 +.465984 +-.706201 +.728534 +-.548320 +.311897 +-.178440 +.193516 +-.255232 +.203867 +.033096 +-.357364 +.551625 +-.436597 +.018082 +.490990 +-.800441 +.738459 +-.372463 +-.038132 +.229979 +-.129838 +-.092408 +.158006 +.096308 +-.576703 +.987951 +-1.049909 +.710174 +-.187830 +-.185788 +.206140 +.068123 +-.379929 +.480943 +-.316740 +.050821 +.081471 +.031126 +-.281472 +.419307 +-.235200 +-.282433 +.926887 +-1.398347 +1.486065 +-1.188334 +.699641 +-.281686 +.104348 +-.154339 +.262842 +-.228935 +-.042555 +.475951 +-.872085 +1.034053 +-.889130 +.529564 +-.151569 +-.063670 +.051196 +.112866 +-.269791 +.278498 +-.095450 +-.210252 +.509979 +-.698288 +.749898 +-.715488 +.664358 +-.620823 +.544824 +-.372517 +.084993 +.250845 +-.504614 +.556701 +-.375009 +.044560 +.266908 +-.385601 +.211107 +.234015 +-.802283 +1.270601 +-1.430702 +1.188960 +-.625687 +-.028828 +.501610 +-.613103 +.362747 +.085527 +-.502260 +.709530 +-.647155 +.364028 +.038358 +-.460888 +.828573 +-1.082807 +1.170806 +-1.054445 +.737460 +-.289902 +-.154061 +.433104 +-.419558 +.078131 +.505783 +-1.148989 +1.643317 +-1.847843 +1.749887 +-1.455119 +1.111372 +-.818955 +.591584 +-.391431 +.200297 +-.059297 +.038764 +-.163718 +.362139 +-.488731 +.416219 +-.129928 +-.246186 +.516795 +-.533689 +.286711 +.092007 +-.408378 +.513845 +-.372031 +.056056 +.303641 +-.579108 +.686730 +-.609381 +.402074 +-.173817 +.037575 +-.045069 +.148993 +-.229629 +.176944 +.029180 +-.302890 +.515421 +-.589254 +.551983 +-.510036 +.564084 +-.729529 +.919099 +-.999345 +.880746 +-.580157 +.213581 +.073575 +-.190483 +.143524 +-.016184 +-.090829 +.113627 +-.043581 +-.086270 +.225019 +-.323440 +.350807 +-.311101 +.248490 +-.226689 +.285156 +-.401305 +.492689 +-.465546 +.279628 +.015186 +-.296663 +.433280 +-.357615 +.109936 +.174640 +-.333294 +.263187 +.022563 +-.406906 +.740149 +-.919323 +.921802 +-.782057 +.547244 +-.257042 +-.042433 +.281539 +-.381533 +.299948 +-.069528 +-.206146 +.401240 +-.426720 +.263612 +.037951 +-.378841 +.636115 +-.695895 +.499676 +-.090678 +-.374824 +.679106 +-.646836 +.247897 +.365233 +-.917955 +1.148801 +-.949562 +.428392 +.150876 +-.528294 +.609869 +-.518530 +.486335 +-.657006 +.947586 +-1.087743 +.823357 +-.137023 +-.687535 +1.220794 +-1.162949 +.548004 +.268380 +-.831330 +.869686 +-.451043 +-.087681 +.377053 +-.253329 +-.158900 +.559491 +-.684041 +.461603 +-.024538 +-.406372 +.657995 +-.671154 +.483405 +-.177941 +-.150153 +.404783 +-.503786 +.412109 +-.170363 +-.116119 +.332719 +-.419242 +.395863 +-.336292 +.313903 +-.359442 +.450644 +-.529319 +.531370 +-.419283 +.207427 +.033401 +-.204619 +.234314 +-.126566 +-.031379 +.115554 +-.039302 +-.191031 +.471725 +-.648014 +.584866 +-.230152 +-.353081 +.998338 +-1.493963 +1.671718 +-1.486682 +1.040804 +-.527877 +.128480 +.079172 +-.136246 +.146262 +-.195577 +.310294 +-.467862 +.633382 +-.779402 +.878064 +-.889381 +.772913 +-.520682 +.181049 +.154971 +-.400760 +.519660 +-.533704 +.490230 +-.416690 +.302854 +-.125764 +-.104559 +.320594 +-.420702 +.328230 +-.044451 +-.343344 +.703453 +-.920583 +.936195 +-.751871 +.409001 +.028065 +-.472741 +.813951 +-.934627 +.759882 +-.312261 +-.269040 +.774731 +-1.023162 +.952504 +-.645888 +.271716 +.017259 +-.155583 +.165945 +-.106782 +.020404 +.080545 +-.195296 +.319038 +-.446802 +.581940 +-.726477 +.856766 +-.914989 +.839109 +-.614266 +.298458 +.008471 +-.233888 +.384284 +-.535614 +.766746 +-1.084455 +1.394704 +-1.542551 +1.399011 +-.944210 +.296978 +.332108 +-.743257 +.848942 +-.712651 +.499768 +-.372049 +.394537 +-.512283 +.604156 +-.569910 +.393207 +-.148246 +-.044160 +.081996 +.063617 +-.329044 +.586079 +-.709048 +.647662 +-.457487 +.260988 +-.161615 +.176025 +-.240137 +.282608 +-.297620 +.346146 +-.480821 +.665068 +-.769095 +.659929 +-.315369 +-.134644 +.478955 +-.557610 +.358738 +-.015240 +-.285679 +.410500 +-.337130 +.141074 +.064001 +-.188227 +.199666 +-.123229 +.013763 +.080160 +-.143672 +.200009 +-.289143 +.433038 +-.610552 +.759239 +-.803111 +.687251 +-.397481 +-.040959 +.573251 +-1.118135 +1.565584 +-1.790847 +1.703770 +-1.318926 +.792891 +-.375164 +.273771 +-.513338 +.892817 +-1.093799 +.880851 +-.258690 +-.524646 +1.130703 +-1.332252 +1.130414 +-.722582 +.361197 +-.206034 +.258942 +-.401848 +.491879 +-.443485 +.254409 +.018609 +-.298500 +.511586 +-.596809 +.518956 +-.292346 +-.004270 +.247112 +-.322540 +.185699 +.117595 +-.479903 +.788915 +-.973114 +1.011938 +-.916855 +.708714 +-.412559 +.070075 +.249893 +-.462515 +.501738 +-.356279 +.080272 +.230237 +-.478014 +.597503 +-.567615 +.411475 +-.191365 +-.003413 +.085315 +-.009961 +-.193997 +.433441 +-.601202 +.639698 +-.575868 +.504072 +-.526577 +.687061 +-.934848 +1.139871 +-1.151483 +.873319 +-.318192 +-.383914 +1.029385 +-1.416548 +1.420226 +-1.036267 +.382090 +.342891 +-.923570 +1.203340 +-1.142593 +.835789 +-.470521 +.237320 +-.232078 +.406938 +-.604147 +.656699 +-.493846 +.183328 +.117077 +-.264593 +.222040 +-.074067 +-.037641 +.010903 +.156445 +-.380192 +.560245 +-.651024 +.681249 +-.714967 +.790370 +-.885143 +.931891 +-.869123 +.689424 +-.451279 +.246335 +-.142984 +.144585 +-.194064 +.226460 +-.231706 +.273703 +-.439613 +.751835 +-1.116397 +1.363254 +-1.360211 +1.113566 +-.767718 +.494177 +-.354288 +.249815 +-.010917 +-.442066 +.992591 +-1.372363 +1.335995 +-.841753 +.103063 +.532037 +-.790522 +.627749 +-.225791 +-.146821 +.304932 +-.231748 +.043121 +.116028 +-.158372 +.077254 +.077760 +-.230565 +.293844 +-.187611 +-.118309 +.553616 +-.940403 +1.066957 +-.815879 +.259748 +.357129 +-.754074 +.778588 +-.484770 +.073600 +.253158 +-.413865 +.460220 +-.491110 +.550692 +-.595068 +.545912 +-.375444 +.147647 +.015979 +-.013363 +-.179477 +.503929 +-.857141 +1.135290 +-1.256986 +1.172767 +-.879676 +.442975 +-.001015 +-.274484 +.260684 +.036653 +-.466437 +.806461 +-.892182 +.717038 +-.432922 +.248135 +-.292330 +.538738 +-.827441 +.962933 +-.819501 +.400551 +.163920 +-.669947 +.923093 +-.827092 +.439551 +.044087 +-.385837 +.432755 +-.197511 +-.161521 +.446239 +-.536139 +.441217 +-.265379 +.118401 +-.040783 +-.012832 +.128967 +-.363268 +.687353 +-.989191 +1.130906 +-1.033045 +.733884 +-.381682 +.157862 +-.175602 +.416977 +-.747233 +.992749 +-1.029877 +.832445 +-.461383 +.019650 +.391798 +-.696255 +.845937 +-.822484 +.640130 +-.347129 +.019244 +.255562 +-.397308 +.356229 +-.134565 +-.200581 +.527796 +-.714263 +.678909 +-.441631 +.122685 +.116618 +-.162727 +.016839 +.200817 +-.314547 +.192912 +.167082 +-.618188 +.922917 +-.874195 +.417552 +.295837 +-.966641 +1.294251 +-1.134125 +.575335 +.107086 +-.595590 +.687400 +-.382063 +-.137735 +.609875 +-.820043 +.689105 +-.285906 +-.227096 +.675938 +-.938141 +.962307 +-.753510 +.354992 +.152102 +-.638744 +.938660 +-.900757 +.468971 +.260284 +-1.051652 +1.624108 +-1.779578 +1.496639 +-.937557 +.365867 +-.019468 +.004088 +-.258709 +.606946 +-.863370 +.934130 +-.853624 +.737878 +-.689511 +.721288 +-.750211 +.662233 +-.398656 +.003781 +.395112 +-.658302 +.709349 +-.572694 +.354205 +-.177510 +.113002 +-.141904 +.178076 +-.132288 +-.027125 +.258618 +-.479897 +.612793 +-.604218 +.423411 +-.067866 +-.403633 +.842763 +-1.044842 +.860092 +-.317029 +-.348339 +.808586 +-.841345 +.465645 +.084612 +-.528094 +.715858 +-.693531 +.616266 +-.599909 +.630020 +-.590547 +.376186 +.006241 +-.424043 +.698380 +-.716365 +.498281 +-.179653 +-.073519 +.158685 +-.083065 +-.059102 +.156879 +-.153659 +.077425 +-.016851 +.062719 +-.251956 +.545587 +-.848644 +1.056025 +-1.097501 +.959988 +-.681359 +.326019 +.040565 +-.363343 +.595650 +-.696246 +.640953 +-.448522 +.197247 +-.003356 +-.042873 +-.055074 +.187334 +-.207762 +.046311 +.224140 +-.430290 +.427310 +-.212992 +-.069169 +.244149 +-.241955 +.141108 +-.083755 +.137304 +-.223887 +.181261 +.091615 +-.522494 +.882591 +-.929659 +.578491 +.024808 +-.583194 +.831315 +-.694679 +.314872 +.070362 +-.297727 +.372162 +-.422291 +.565085 +-.793621 +.974205 +-.949583 +.666281 +-.232602 +-.132286 +.224761 +.019112 +-.475632 +.893026 +-1.028685 +.787499 +-.278747 +-.244744 +.528017 +-.449088 +.070534 +.408971 +-.759602 +.820773 +-.558796 +.073470 +.443318 +-.787926 +.837980 +-.609563 +.235793 +.125460 +-.389008 +.570047 +-.725592 +.869734 +-.945008 +.877152 +-.659929 +.387366 +-.197952 +.173833 +-.276754 +.372678 +-.327273 +.103790 +.203096 +-.417096 +.380040 +-.040029 +-.520783 +1.128173 +-1.596589 +1.802555 +-1.718330 +1.403732 +-.972923 +.554823 +-.254443 +.119587 +-.122541 +.172299 +-.162062 +.032229 +.189992 +-.405746 +.510978 +-.469612 +.338522 +-.221559 +.185540 +-.205582 +.188133 +-.057889 +-.161825 +.346485 +-.357892 +.158997 +.136055 +-.326007 +.264464 +.021243 +-.327005 +.398712 +-.106879 +-.454051 +1.016182 +-1.306998 +1.218919 +-.861230 +.462849 +-.203489 +.099407 +-.024008 +-.161062 +.472231 +-.774195 +.878487 +-.694303 +.312907 +.042947 +-.170913 +.030041 +.233755 +-.395642 +.312106 +-.017151 +-.309739 +.471361 +-.378827 +.091377 +.241780 +-.478785 +.549649 +-.458876 +.250842 +.020407 +-.299063 +.526616 +-.650183 +.639832 +-.500290 +.268718 +-.006441 +-.206243 +.279298 +-.141860 +-.210395 +.681758 +-1.098297 +1.291756 +-1.198631 +.902203 +-.580181 +.390489 +-.378055 +.468861 +-.548564 +.557291 +-.524485 +.523138 +-.591200 +.691534 +-.743108 +.691332 +-.553235 +.397922 +-.281785 +.197061 +-.081008 +-.119636 +.383267 +-.605619 +.663926 +-.508492 +.210165 +.077557 +-.218305 +.180971 +-.050463 +-.045219 +.033848 +.051171 +-.103668 +.030440 +.174841 +-.420181 +.570739 +-.533477 +.319014 +-.043636 +-.133021 +.102999 +.117117 +-.384451 +.509666 +-.374797 +.014058 +.399860 +-.660111 +.653626 +-.427387 +.149322 +.008095 +.018677 +-.149358 +.225024 +-.128123 +-.122301 +.364028 +-.382707 +.050552 +.569919 +-1.225497 +1.589892 +-1.443867 +.816398 +.004849 +-.615577 +.717420 +-.288924 +-.404560 +.974452 +-1.144661 +.907597 +-.500275 +.222426 +-.225126 +.415901 +-.540898 +.380406 +.082131 +-.634721 +.972002 +-.899178 +.468524 +.043868 +-.309733 +.159310 +.306827 +-.781798 +.952862 +-.704508 +.187072 +.293013 +-.479912 +.326180 +.001376 +-.256280 +.279384 +-.081684 +-.197160 +.401383 +-.451213 +.360261 +-.191787 +.007325 +.154586 +-.274152 +.347994 +-.398200 +.472076 +-.609750 +.792721 +-.921477 +.862682 +-.547664 +.049591 +.431092 +-.676468 +.582884 +-.221695 +-.210417 +.510289 +-.572506 +.418887 +-.153674 +-.109267 +.297955 +-.393470 +.411710 +-.377378 +.304428 +-.187905 +.008803 +.247330 +-.563732 +.873215 +-1.066507 +1.036816 +-.744110 +.259945 +.245475 +-.581337 +.641334 +-.469990 +.241825 +-.158539 +.327369 +-.698726 +1.102845 +-1.358399 +1.378813 +-1.207433 +.964289 +-.749245 +.574780 +-.377587 +.097631 +.242712 +-.531838 +.651232 +-.586219 +.467686 +-.492564 +.769405 +-1.207456 +1.548798 +-1.536846 +1.104150 +-.436749 +-.141362 +.386170 +-.297073 +.105355 +-.096076 +.395329 +-.881289 +1.284105 +-1.395202 +1.222070 +-.967848 +.854348 +-.933519 +1.042270 +-.938708 +.511004 +.108814 +-.616590 +.738337 +-.413367 +-.168801 +.691835 +-.902107 +.739922 +-.341660 +-.068537 +.316579 +-.359060 +.267572 +-.145267 +.046820 +.038627 +-.139325 +.241719 +-.281692 +.198056 +.000270 +-.217924 +.328597 +-.261181 +.050262 +.185775 +-.320323 +.294185 +-.144409 +-.026160 +.115796 +-.086744 +-.013131 +.084818 +-.049252 +-.091285 +.248226 +-.308562 +.223186 +-.055498 +-.051087 +-.029486 +.309900 +-.661086 +.873203 +-.770487 +.314147 +.361459 +-.997462 +1.320178 +-1.163021 +.546701 +.319640 +-1.120531 +1.564979 +-1.504857 +.983742 +-.195992 +-.612650 +1.242382 +-1.585210 +1.615515 +-1.360289 +.885628 +-.301826 +-.243249 +.610030 +-.738635 +.692729 +-.627475 +.686685 +-.896275 +1.134849 +-1.210264 +.990717 +-.496406 +-.110806 +.623410 +-.894328 +.884526 +-.642684 +.259118 +.162057 +-.508617 +.672763 +-.590866 +.291821 +.091427 +-.376323 +.429730 +-.249400 +-.031275 +.224937 +-.207544 +-.005572 +.273479 +-.420425 +.341380 +-.057923 +-.300434 +.567505 +-.620250 +.431184 +-.076851 +-.297746 +.544830 +-.581489 +.422934 +-.159416 +-.108446 +.328162 +-.502772 +.645874 +-.731094 +.691654 +-.480386 +.139913 +.187821 +-.337943 +.234891 +.049507 +-.345350 +.506867 +-.509398 +.441670 +-.402876 +.397598 +-.325625 +.081264 +.322093 +-.715459 +.871000 +-.667551 +.197497 +.274068 +-.477826 +.318380 +.066326 +-.407475 +.494424 +-.312493 +.031953 +.134405 +-.089424 +-.096770 +.271942 +-.342575 +.348444 +-.413454 +.625010 +-.951786 +1.268622 +-1.457473 +1.488184 +-1.409604 +1.270812 +-1.058728 +.719750 +-.247997 +-.247302 +.572164 +-.567225 +.225188 +.290671 +-.745573 +.974279 +-.958820 +.795487 +-.594750 +.404584 +-.212204 +.001885 +.201113 +-.347725 +.424049 +-.487697 +.635969 +-.924619 +1.303586 +-1.625086 +1.720479 +-1.490869 +.955395 +-.241827 +-.459108 +.951082 +-1.094318 +.867600 +-.401073 +-.062730 +.288882 +-.190369 +-.113208 +.377107 +-.405335 +.188251 +.103954 +-.264672 +.214032 +-.052039 +-.034008 +-.074528 +.334105 +-.574658 +.627141 +-.442442 +.120501 +.157889 +-.239963 +.080050 +.248788 +-.602737 +.840248 +-.883867 +.747335 +-.520891 +.323449 +-.243893 +.300449 +-.438510 +.566891 +-.609625 +.542287 +-.394149 +.219859 +-.062824 +-.065298 +.178474 +-.291090 +.393279 +-.445312 +.397726 +-.226245 +-.040860 +.323771 +-.525081 +.578446 +-.481393 +.290717 +-.084988 +-.077775 +.178516 +-.225446 +.230479 +-.196537 +.121651 +-.008090 +-.134731 +.291881 +-.440922 +.548186 +-.575779 +.505154 +-.360026 +.201101 +-.087198 +.031789 +.003659 +-.070564 +.183447 +-.306845 +.389908 +-.410721 +.383729 +-.323208 +.207852 +.003795 +-.306365 +.589492 +-.660540 +.361844 +.290027 +-1.054436 +1.568439 +-1.553140 +.991325 +-.152345 +-.557044 +.817060 +-.551846 +-.065191 +.732820 +-1.175694 +1.245252 +-.942576 +.387807 +.232434 +-.725270 +.953425 +-.882675 +.590651 +-.225997 +-.065008 +.205528 +-.213888 +.177285 +-.191989 +.305432 +-.492433 +.675562 +-.772311 +.736921 +-.573809 +.323503 +-.039305 +-.228064 +.436022 +-.552773 +.559997 +-.453136 +.240719 +.050608 +-.363239 +.604627 +-.676495 +.537399 +-.257948 +.009435 +.034687 +.169698 +-.475468 +.621523 +-.415972 +-.102086 +.653030 +-.886606 +.621967 +.012213 +-.641343 +.870747 +-.519254 +-.289605 +1.219819 +-1.916665 +2.171739 +-1.977335 +1.476143 +-.868491 +.335485 +.002043 +-.098177 +-.018347 +.260311 +-.517219 +.700699 +-.778713 +.778278 +-.754163 +.741925 +-.724540 +.637382 +-.415003 +.055462 +.344095 +-.618277 +.627973 +-.361784 +-.032232 +.321667 +-.331741 +.057391 +.335735 +-.624319 +.674343 +-.518569 +.313024 +-.209018 +.237839 +-.295108 +.236805 +-.011957 +-.276544 +.439378 +-.349153 +.050303 +.264052 +-.394596 +.284245 +-.054063 +-.097097 +.043419 +.183815 +-.431190 +.534496 +-.419575 +.133826 +.191325 +-.409785 +.425122 +-.229560 +-.092228 +.397741 +-.550403 +.483247 +-.227354 +-.110567 +.404316 +-.560796 +.543003 +-.365689 +.083587 +.216353 +-.428290 +.461704 +-.291305 +-.010791 +.296637 +-.419125 +.318058 +-.055394 +-.227252 +.397663 +-.404435 +.287552 +-.135097 +.027602 +-.005565 +.065935 +-.174999 +.288243 +-.374523 +.433995 +-.491709 +.560707 +-.603044 +.534389 +-.288092 +-.104696 +.493980 +-.687132 +.579466 +-.242191 +-.105858 +.231040 +-.032873 +-.394543 +.827471 +-1.056841 +1.012388 +-.784966 +.539453 +-.388966 +.325566 +-.255809 +.104335 +.104633 +-.257928 +.248013 +-.072859 +-.143146 +.229166 +-.091175 +-.212826 +.503175 +-.595626 +.425131 +-.091841 +-.200495 +.270039 +-.061334 +-.335520 +.751776 +-1.036077 +1.114284 +-.989265 +.707733 +-.337303 +-.031794 +.285961 +-.321488 +.109323 +.256635 +-.582846 +.678903 +-.479671 +.097068 +.247361 +-.371286 +.257927 +-.065909 +.011288 +-.206497 +.574304 +-.900316 +.984032 +-.776651 +.407072 +-.083149 +-.053455 +.014283 +.061568 +-.015622 +-.220931 +.588103 +-.941700 +1.141362 +-1.123595 +.923182 +-.642816 +.397162 +-.262781 +.254484 +-.332367 +.431065 +-.494066 +.495849 +-.440880 +.343064 +-.202175 +-.002288 +.291103 +-.651358 +1.015103 +-1.273346 +1.324234 +-1.128951 +.740113 +-.284602 +-.088353 +.263841 +-.196952 +-.078952 +.464920 +-.825664 +1.036509 +-1.039388 +.878338 +-.678671 +.565905 +-.574947 +.624107 +-.587844 +.418199 +-.210515 +.143633 +-.328269 +.685487 +-.967314 +.922911 +-.492144 +-.125710 +.592553 +-.661944 +.350223 +.082077 +-.328069 +.263227 +-.029854 +-.088703 +-.094291 +.508477 +-.872759 +.913225 +-.579084 +.084790 +.252122 +-.245379 +-.036303 +.340966 +-.428326 +.230684 +.129903 +-.453195 +.596058 +-.534192 +.332933 +-.080596 +-.154367 +.326370 +-.402730 +.370305 +-.256598 +.135218 +-.091629 +.161865 +-.290085 +.349102 +-.224076 +-.093956 +.477274 +-.727938 +.704171 +-.417978 +.030159 +.257049 +-.332209 +.236269 +-.112665 +.089925 +-.187689 +.312049 +-.334391 +.187558 +.091156 +-.393088 +.612579 +-.705328 +.695531 +-.640017 +.584297 +-.540708 +.495411 +-.430770 +.345988 +-.265543 +.233056 +-.291579 +.457174 +-.698798 +.940254 +-1.089764 +1.083442 +-.915600 +.635808 +-.317563 +.025212 +.195534 +-.304532 +.257896 +-.026881 +-.362544 +.808464 +-1.165345 +1.322663 +-1.275995 +1.131800 +-1.032160 +1.048827 +-1.123407 +1.099093 +-.825491 +.267944 +.447801 +-1.082441 +1.395181 +-1.262178 +.742786 +-.060752 +-.494224 +.700404 +-.506513 +.046237 +.445902 +-.767793 +.849210 +-.757322 +.613288 +-.487679 +.353552 +-.129280 +-.227304 +.652624 +-.998460 +1.132358 +-1.042815 +.861484 +-.772141 +.866992 +-1.061005 +1.138944 +-.907809 +.342286 +.384460 +-1.002445 +1.297595 +-1.208726 +.821170 +-.292070 +-.222726 +.600895 +-.759003 +.665014 +-.366583 +.004992 +.223216 +-.160634 +-.207864 +.716052 +-1.085886 +1.080465 +-.649969 +-.029554 +.661092 +-1.011446 +1.049951 +-.942910 +.909964 +-1.050910 +1.271539 +-1.358134 +1.137299 +-.599193 +-.098737 +.735356 +-1.149960 +1.302206 +-1.246253 +1.063139 +-.812494 +.530714 +-.255599 +.039408 +.068227 +-.053090 +-.046114 +.155132 +-.207668 +.185696 +-.126551 +.089044 +-.100403 +.124801 +-.084529 +-.072880 +.309489 +-.492412 +.469135 +-.178505 +-.285817 +.716654 +-.920551 +.843798 +-.606004 +.415975 +-.428875 +.643802 +-.908536 +1.022930 +-.870276 +.494349 +-.079889 +-.147733 +.046430 +.360538 +-.886111 +1.266601 +-1.295285 +.935670 +-.349910 +-.185137 +.437977 +-.366854 +.150318 +-.069002 +.306470 +-.805767 +1.290856 +-1.446141 +1.126653 +-.446525 +-.311003 +.880141 +-1.148574 +1.155364 +-.986887 +.683997 +-.240992 +-.322007 +.901967 +-1.339235 +1.511446 +-1.412539 +1.145624 +-.834421 +.530756 +-.200097 +-.201301 +.628608 +-.926401 +.919111 +-.552230 +-.030373 +.546084 +-.736742 +.519624 +-.020471 +-.524762 +.916116 +-1.077353 +1.041307 +-.875167 +.624510 +-.317885 +.006383 +.221230 +-.277987 +.143806 +.106139 +-.345105 +.482931 +-.528428 +.572614 +-.703939 +.924267 +-1.134810 +1.204348 +-1.064170 +.752837 +-.377190 +.027762 +.274892 +-.556263 +.812750 +-.964700 +.898134 +-.574953 +.116772 +.228811 +-.240760 +-.109124 +.611455 +-.947592 +.906989 +-.533558 +.090180 +.131283 +-.010638 +-.334257 +.651823 +-.740509 +.572694 +-.279935 +.030178 +.099701 +-.164826 +.288834 +-.553345 +.922047 +-1.248018 +1.353580 +-1.129240 +.594383 +.108674 +-.776892 +1.230147 +-1.378881 +1.250122 +-.964492 +.675222 +-.496725 +.457487 +-.502090 +.539665 +-.507559 +.408932 +-.301698 +.250262 +-.274494 +.329568 +-.328477 +.194825 +.082335 +-.421251 +.668868 +-.671285 +.364827 +.163348 +-.693481 +.978163 +-.882398 +.469695 +.032074 +-.373596 +.442597 +-.325589 +.226815 +-.305105 +.552463 +-.804065 +.866315 +-.660496 +.276331 +.092959 +-.274081 +.205247 +.053842 +-.378153 +.648657 +-.796849 +.812446 +-.725869 +.580914 +-.410503 +.226737 +-.033621 +-.144114 +.242101 +-.176097 +-.098527 +.528020 +-.957619 +1.205972 +-1.173771 +.906739 +-.560829 +.294629 +-.172736 +.153330 +-.158711 +.155860 +-.169532 +.218383 +-.243526 +.114817 +.267443 +-.851094 +1.403276 +-1.625405 +1.348758 +-.672248 +-.067663 +.489450 +-.398620 +-.094884 +.651498 +-.917347 +.737365 +-.231262 +-.305286 +.596872 +-.548308 +.271760 +.019057 +-.159930 +.125879 +-.009196 +-.078666 +.095131 +-.076607 +.074269 +-.083080 +.035462 +.129732 +-.383214 +.586500 +-.567103 +.238637 +.323461 +-.908337 +1.283202 +-1.320893 +1.063396 +-.687961 +.400965 +-.323193 +.430815 +-.582410 +.613291 +-.439372 +.107909 +.234723 +-.434949 +.423745 +-.249918 +.038696 +.091739 +-.098347 +.025751 +.035612 +-.010708 +-.118571 +.307534 +-.469439 +.504802 +-.330227 +-.091630 +.721506 +-1.426262 +1.998989 +-2.229942 +2.009140 +-1.405980 +.663995 +-.088382 +-.123303 +.002729 +.208134 +-.219714 +-.101210 +.632089 +-1.078164 +1.184796 +-.924127 +.515469 +-.260762 +.314663 +-.560161 +.685478 +-.412628 +-.283219 +1.121688 +-1.676481 +1.642226 +-1.029293 +.155681 +.554051 +-.822052 +.655179 +-.292327 +.021850 +-.006914 +.223916 +-.521758 +.729458 +-.736331 +.518920 +-.135007 +-.293882 +.615568 +-.708293 +.552999 +-.265365 +.043834 +-.047949 +.285286 +-.593897 +.743290 +-.589334 +.176118 +.284250 +-.537244 +.432698 +-.003414 +-.560838 +1.016504 +-1.184087 +1.024646 +-.647796 +.254108 +-.036842 +.083572 +-.325977 +.572339 +-.615881 +.360720 +.115725 +-.609175 +.914280 +-.941688 +.747800 +-.468798 +.222383 +-.053039 +-.054626 +.129985 +-.188393 +.235630 +-.279882 +.324996 +-.352092 +.319876 +-.196874 +.000523 +.198250 +-.317855 +.322642 +-.243156 +.141351 +-.051430 +-.050986 +.225153 +-.506668 +.861412 +-1.186912 +1.358900 +-1.291789 +.978223 +-.491688 +-.041870 +.487542 +-.745955 +.788242 +-.669562 +.507645 +-.424532 +.474443 +-.602663 +.673082 +-.559714 +.246095 +.141969 +-.406604 +.413975 +-.201701 +-.029188 +.048523 +.227810 +-.651265 +.920670 +-.787705 +.243846 +.453365 +-.943357 +1.000186 +-.672280 +.227686 +.042676 +-.010154 +-.247401 +.550621 +-.768198 +.890087 +-.983230 +1.091111 +-1.173899 +1.137704 +-.918646 +.544809 +-.127233 +-.206139 +.377393 +-.382558 +.271286 +-.112291 +-.029387 +.101568 +-.074839 +-.039904 +.178227 +-.234465 +.109277 +.224970 +-.681967 +1.081117 +-1.234594 +1.055971 +-.616999 +.103982 +.304598 +-.551613 +.716940 +-.918643 +1.178752 +-1.368926 +1.291759 +-.841342 +.114822 +.620489 +-1.085797 +1.155632 +-.907100 +.529301 +-.181291 +-.084008 +.285105 +-.427265 +.466366 +-.360529 +.151854 +.018157 +.002641 +-.247484 +.572012 +-.729559 +.536335 +-.009917 +-.618829 +1.031841 +-1.008996 +.560319 +.070335 +-.532640 +.559204 +-.114048 +-.585591 +1.191529 +-1.422435 +1.216252 +-.741192 +.263225 +.032651 +-.140056 +.186302 +-.294414 +.469451 +-.599119 +.559628 +-.332468 +.033522 +.167475 +-.168541 +.000998 +.207059 +-.330579 +.327157 +-.240157 +.138876 +-.058682 +-.007478 +.070995 +-.112566 +.092822 +.000163 +-.117875 +.176230 +-.126445 +.011334 +.048822 +.060672 +-.357668 +.733598 +-1.007875 +1.028113 +-.751537 +.264120 +.264351 +-.659643 +.819042 +-.751448 +.562268 +-.385545 +.296783 +-.261529 +.162529 +.102660 +-.519651 +.933507 +-1.136608 +1.014853 +-.642541 +.243688 +-.037466 +.082220 +-.241625 +.303665 +-.158006 +-.112238 +.298461 +-.235963 +-.065555 +.432663 +-.663032 +.669228 +-.521549 +.371957 +-.335344 +.423435 +-.567109 +.686447 +-.740125 +.720555 +-.616593 +.392283 +-.008911 +-.524542 +1.114883 +-1.597376 +1.801324 +-1.639541 +1.173521 +-.610996 +.219570 +-.185894 +.494192 +-.908062 +1.092333 +-.821325 +.146794 +.598264 +-.985602 +.761960 +-.026495 +-.812538 +1.285527 +-1.155787 +.564027 +.077831 +-.373298 +.211976 +.166535 +-.363265 +.128904 +.435318 +-.938123 +.981179 +-.457275 +-.358899 +.996505 +-1.113849 +.725142 +-.168950 +-.146643 +.027700 +.395034 +-.790653 +.875560 +-.596094 +.126987 +.285561 +-.498573 +.534973 +-.509660 +.503956 +-.501443 +.431015 +-.264702 +.072615 +.019252 +.066068 +-.279847 +.466762 +-.466667 +.219899 +.199651 +-.637430 +.946347 +-1.047688 +.939786 +-.674686 +.334426 +-.017541 +-.176795 +.179243 +.013408 +-.321348 +.604794 +-.723041 +.601608 +-.271008 +-.145545 +.490552 +-.647408 +.593176 +-.403096 +.204976 +-.107120 +.136398 +-.221085 +.233663 +-.076698 +-.238095 +.575192 +-.750250 +.655411 +-.347889 +.027590 +.093959 +.055283 +-.349910 +.551548 +-.479915 +.148414 +.234722 +-.402936 +.212261 +.257863 +-.753343 +1.011607 +-.931423 +.629019 +-.342068 +.252985 +-.363418 +.513827 +-.530708 +.383428 +-.223723 +.271568 +-.632089 +1.183520 +-1.626874 +1.669518 +-1.218210 +.449893 +.286217 +-.667714 +.569332 +-.103837 +-.473772 +.920530 +-1.119118 +1.098869 +-.978989 +.885801 +-.888913 +.974709 +-1.057175 +1.019729 +-.776421 +.328930 +.211366 +-.657667 +.831089 +-.654693 +.205826 +.309829 +-.658150 +.698735 +-.456396 +.094537 +.192904 +-.297076 +.237991 +-.114737 +.013538 +.047695 +-.100598 +.166439 +-.221055 +.219199 +-.148792 +.054470 +-.000427 +.005696 +-.017055 +-.047317 +.217935 +-.430964 +.565848 +-.535143 +.350139 +-.106333 +-.096331 +.226760 +-.327670 +.453931 +-.604669 +.711059 +-.689117 +.510334 +-.231878 +-.034763 +.189549 +-.196750 +.093421 +.045738 +-.161609 +.248131 +-.347853 +.502772 +-.691651 +.808014 +-.714627 +.351877 +.181925 +-.658058 +.856023 +-.718865 +.401624 +-.163378 +.177502 +-.403699 +.619532 +-.585382 +.217405 +.354235 +-.870532 +1.097772 +-.943974 +.479259 +.122210 +-.663464 +.988845 +-1.024918 +.802408 +-.450092 +.143980 +-.021055 +.104857 +-.299036 +.460974 +-.503038 +.443604 +-.371122 +.358354 +-.403398 +.445458 +-.433861 +.383664 +-.366836 +.446719 +-.610975 +.758297 +-.753224 +.514259 +-.077766 +-.406923 +.755051 +-.853371 +.728424 +-.525928 +.409701 +-.448850 +.576026 +-.648374 +.562200 +-.330301 +.063264 +.121787 +-.183250 +.161666 +-.117964 +.071951 +-.003268 +-.090939 +.148502 +-.067373 +-.203274 +.582902 +-.871686 +.866565 +-.505741 +-.065206 +.563148 +-.734882 +.514915 +-.068428 +-.311516 +.388585 +-.129533 +-.285054 +.593885 +-.639600 +.473430 +-.303486 +.324606 +-.557398 +.817924 +-.842203 +.476371 +.200163 +-.900000 +1.282147 +-1.139415 +.512477 +.329449 +-1.028613 +1.324595 +-1.182772 +.790060 +-.419015 +.249424 +-.270056 +.326624 +-.272237 +.097175 +.063976 +-.047451 +-.200077 +.568259 +-.851478 +.880821 +-.624456 +.196510 +.216800 +-.459225 +.476443 +-.328132 +.143623 +-.050014 +.109799 +-.296546 +.515949 +-.656538 +.643436 +-.471689 +.207762 +.040075 +-.169791 +.131449 +.050519 +-.289287 +.472482 +-.504468 +.338414 +.005409 +-.435241 +.805263 +-.964372 +.827578 +-.433044 +-.060214 +.447696 +-.589301 +.484144 +-.260291 +.087105 +-.070316 +.197711 +-.364186 +.450662 +-.399320 +.239519 +-.057116 +-.062800 +.080513 +-.012553 +-.084611 +.140083 +-.091556 +-.092993 +.393827 +-.728650 +.970882 +-1.003411 +.785887 +-.394528 +.000853 +.207817 +-.125550 +-.213018 +.646809 +-.969731 +1.035895 +-.832442 +.481945 +-.172958 +.054202 +-.147830 +.331544 +-.406986 +.224945 +.202408 +-.678522 +.919490 +-.725553 +.120935 +.636440 +-1.192810 +1.300832 +-.955351 +.377113 +.135593 +-.381861 +.345547 +-.153617 +-.044475 +.179483 +-.277918 +.394620 +-.528956 +.599608 +-.503511 +.216561 +.144026 +-.355966 +.220973 +.290089 +-.977716 +1.499030 +-1.564019 +1.124921 +-.427453 +-.127495 +.234168 +.120402 +-.650648 +.967278 +-.838203 +.334200 +.235846 +-.541188 +.436594 +-.024432 +-.444936 +.737127 +-.743916 +.492689 +-.093862 +-.309823 +.569860 +-.560990 +.235903 +.319709 +-.891390 +1.228585 +-1.182558 +.796673 +-.283913 +-.094235 +.166888 +.070107 +-.470086 +.815972 +-.917150 +.684509 +-.163239 +-.484433 +1.042994 +-1.330976 +1.272025 +-.914208 +.389968 +.153343 +-.606478 +.906855 +-1.013643 +.888487 +-.512360 +-.069853 +.721250 +-1.242528 +1.457586 +-1.304343 +.867921 +-.332641 +-.114795 +.367876 +-.424326 +.352780 +-.238240 +.143126 +-.096325 +.099380 +-.133879 +.165046 +-.148021 +.045035 +.147653 +-.376234 +.529781 +-.479164 +.148778 +.413927 +-1.021922 +1.417356 +-1.402957 +.958453 +-.259390 +-.423048 +.874216 +-1.033633 +.977495 +-.820460 +.630962 +-.426702 +.230348 +-.106425 +.123211 +-.268116 +.405529 +-.343156 +-.021454 +.584142 +-1.054132 +1.122659 +-.677207 +-.089132 +.761951 +-.943008 +.493610 +.373551 +-1.215587 +1.618231 +-1.429460 +.826943 +-.190235 +-.127669 +-.015902 +.510021 +-1.082590 +1.449050 +-1.434002 +1.026566 +-.371459 +-.290533 +.719974 +-.786447 +.534794 +-.160196 +-.106436 +.133889 +.045893 +-.288322 +.454015 +-.497935 +.466211 +-.422642 +.385190 +-.331848 +.258960 +-.218287 +.282075 +-.463511 +.677002 +-.792808 +.748181 +-.611649 +.528225 +-.582071 +.697501 +-.676367 +.352968 +.258085 +-.944758 +1.426563 +-1.526888 +1.259996 +-.785479 +.292843 +.083858 +-.275168 +.246975 +.002633 +-.407117 +.808843 +-1.010298 +.890773 +-.502844 +.057057 +.213881 +-.216396 +.057282 +.047049 +.056106 +-.335389 +.601029 +-.652031 +.426478 +-.040212 +-.306923 +.475665 +-.470863 +.412053 +-.430415 +.577668 +-.805668 +1.010597 +-1.093558 +.998251 +-.721297 +.311680 +.135008 +-.499848 +.688748 +-.683970 +.556161 +-.413507 +.315763 +-.220563 +.015215 +.377736 +-.897506 +1.331623 +-1.422053 +1.034440 +-.280938 +-.495393 +.884833 +-.639251 +-.171074 +1.175932 +-1.901354 +2.032957 +-1.585442 +.873251 +-.305495 +.143323 +-.374770 +.772108 +-1.067783 +1.115971 +-.939304 +.657709 +-.377661 +.129107 +.117295 +-.385735 +.644419 +-.808074 +.789276 +-.561258 +.190030 +.185156 +-.413919 +.406369 +-.176463 +-.166510 +.473340 +-.626450 +.589045 +-.407800 +.174648 +.024650 +-.143809 +.177727 +-.141824 +.051878 +.077033 +-.213732 +.297605 +-.255452 +.053459 +.247968 +-.490183 +.493595 +-.182585 +-.331094 +.785857 +-.924410 +.663411 +-.153225 +-.321369 +.527412 +-.420031 +.136542 +.130846 +-.274815 +.320570 +-.361710 +.453097 +-.554409 +.567425 +-.428973 +.179086 +.054156 +-.143048 +.053799 +.126687 +-.252288 +.223070 +-.058499 +-.113934 +.147959 +.015120 +-.296033 +.519549 +-.524223 +.269437 +.130010 +-.464908 +.550013 +-.327288 +-.104395 +.544889 +-.796581 +.758246 +-.461645 +.037183 +.365787 +-.652952 +.807156 +-.850948 +.789371 +-.591098 +.231354 +.240917 +-.681836 +.914861 +-.839890 +.505172 +-.082564 +-.235882 +.342727 +-.250882 +.052597 +.150818 +-.294883 +.357570 +-.344971 +.280876 +-.201950 +.145338 +-.123832 +.106635 +-.031482 +-.147281 +.405120 +-.635934 +.706091 +-.545080 +.206593 +.153445 +-.374925 +.398980 +-.302383 +.234263 +-.303176 +.498767 +-.703584 +.781056 +-.670772 +.422279 +-.149257 +-.053625 +.165766 +-.229839 +.292719 +-.352727 +.358324 +-.258271 +.059364 +.158659 +-.286940 +.259069 +-.095796 +-.111272 +.265034 +-.325744 +.323336 +-.313569 +.321146 +-.322651 +.281890 +-.197575 +.110114 +-.056711 +.022431 +.052982 +-.204567 +.370279 +-.398599 +.156550 +.333431 +-.843944 +1.046034 +-.717989 +-.080168 +1.001590 +-1.601829 +1.607727 +-1.085087 +.386063 +.090017 +-.156865 +-.057294 +.230942 +-.098285 +-.354709 +.882940 +-1.160666 +1.013643 +-.540326 +.039729 +.199317 +-.096242 +-.176697 +.332659 +-.187507 +-.204962 +.597557 +-.735460 +.540863 +-.162390 +-.136730 +.159885 +.101628 +-.477146 +.729473 +-.688721 +.332900 +.212217 +-.738307 +1.049954 +-1.051372 +.786507 +-.409060 +.091110 +.078567 +-.138109 +.200631 +-.339365 +.499303 +-.516709 +.248117 +.285642 +-.863558 +1.185511 +-1.072140 +.590121 +-.000549 +-.430618 +.608039 +-.632071 +.669351 +-.793797 +.934729 +-.959931 +.799660 +-.495470 +.144573 +.188014 +-.497774 +.789741 +-1.013207 +1.060642 +-.845908 +.398536 +.111654 +-.454763 +.480392 +-.220967 +-.119599 +.295385 +-.185254 +-.118980 +.372973 +-.355185 +.034638 +.394835 +-.646046 +.543867 +-.153527 +-.264019 +.435977 +-.264376 +-.118415 +.456876 +-.554016 +.394394 +-.131874 +-.030077 +-.029945 +.292349 +-.628640 +.883375 +-.949846 +.807329 +-.517186 +.189211 +.067120 +-.188122 +.176165 +-.082646 +-.034323 +.145095 +-.249969 +.351257 +-.428076 +.443014 +-.376859 +.257399 +-.149838 +.111335 +-.145260 +.193119 +-.171287 +.025657 +.232478 +-.527492 +.751141 +-.806369 +.647480 +-.304896 +-.116750 +.474073 +-.645954 +.590970 +-.365534 +.088105 +.128589 +-.232097 +.238333 +-.197634 +.154660 +-.134513 +.155004 +-.236399 +.384576 +-.557622 +.655393 +-.562552 +.229735 +.264477 +-.728152 +.953482 +-.840364 +.464038 +-.038842 +-.200695 +.127728 +.215109 +-.648481 +.954924 +-.983212 +.706866 +-.218428 +-.323354 +.759385 +-.979325 +.943324 +-.683120 +.293156 +.088180 +-.316511 +.299308 +-.048450 +-.313277 +.613527 +-.730906 +.665321 +-.522029 +.417552 +-.382063 +.340203 +-.188867 +-.092517 +.395562 +-.547229 +.441220 +-.134833 +-.167770 +.239724 +.022543 +-.531829 +1.063270 +-1.385975 +1.384523 +-1.097507 +.663983 +-.229292 +-.120606 +.359847 +-.478145 +.447529 +-.242081 +-.101753 +.446728 +-.596532 +.411710 +.079733 +-.670766 +1.089263 +-1.164341 +.925483 +-.562715 +.282511 +-.169734 +.153994 +-.092595 +-.104489 +.402953 +-.669908 +.765665 +-.631201 +.317882 +.044607 +-.310499 +.376111 +-.217806 +-.093857 +.410920 +-.564051 +.447815 +-.094366 +-.319605 +.558132 +-.466598 +.080196 +.381026 +-.642673 +.555211 +-.199799 +-.160714 +.261284 +-.023855 +-.380046 +.641716 +-.525260 +.027681 +.618945 +-1.095567 +1.186283 +-.887369 +.381276 +.086807 +-.342724 +.354616 +-.220595 +.099144 +-.127320 +.361596 +-.756008 +1.178477 +-1.461449 +1.475040 +-1.195523 +.729708 +-.269038 +-.010043 +.039020 +.119804 +-.335169 +.502710 +-.598839 +.655125 +-.686661 +.649554 +-.476526 +.165587 +.162431 +-.310309 +.145572 +.265166 +-.651161 +.699337 +-.286023 +-.397344 +.942460 +-.999017 +.531602 +.139447 +-.555547 +.440543 +.111846 +-.716591 +.972771 +-.725163 +.130397 +.491274 +-.880645 +.971382 +-.860783 +.684599 +-.516694 +.362148 +-.217683 +.121160 +-.139053 +.307242 +-.583054 +.851910 +-.983185 +.893512 +-.578837 +.107415 +.408095 +-.840886 +1.079797 +-1.062799 +.807159 +-.411943 +.014671 +.283169 +-.472348 +.625049 +-.816186 +1.034902 +-1.162630 +1.048165 +-.632742 +.031262 +.499762 +-.698854 +.456819 +.105725 +-.692831 +.990147 +-.834704 +.301245 +.343761 +-.793833 +.873233 +-.627743 +.282198 +-.091924 +.182437 +-.479948 +.774531 +-.866986 +.695400 +-.358062 +.030579 +.150259 +-.149972 +.017439 +.178269 +-.391210 +.591978 +-.735377 +.750834 +-.579391 +.234157 +.168117 +-.443276 +.436832 +-.127577 +-.332465 +.681517 +-.692452 +.315813 +.272249 +-.758678 +.872201 +-.540457 +-.074193 +.678736 +-1.018885 +1.003729 +-.719870 +.349883 +-.063179 +-.058426 +.038815 +.018557 +.017526 +-.241961 +.655059 +-1.140163 +1.503059 +-1.566612 +1.272532 +-.725553 +.145716 +.247177 +-.345702 +.194289 +.063912 +-.288176 +.414175 +-.452748 +.430633 +-.338176 +.138440 +.170510 +-.505046 +.718478 +-.693060 +.430061 +-.060280 +-.238142 +.351081 +-.283159 +.123165 +.037310 +-.158505 +.244293 +-.298390 +.301382 +-.233352 +.112670 +-.001598 +-.036531 +-.008537 +.082090 +-.110879 +.069287 +-.007658 +.018603 +-.169240 +.451517 +-.782597 +1.048183 +-1.157230 +1.080000 +-.857675 +.584774 +-.371608 +.298258 +-.377321 +.543441 +-.677908 +.660889 +-.429655 +.016831 +.451309 +-.801406 +.887557 +-.659396 +.187406 +.369805 +-.837205 +1.092261 +-1.095856 +.879822 +-.514491 +.082388 +.333854 +-.660841 +.852325 +-.909475 +.883927 +-.849878 +.854688 +-.879504 +.841854 +-.649206 +.276491 +.183394 +-.539653 +.598684 +-.285943 +-.281790 +.830624 +-1.064358 +.828225 +-.204292 +-.522887 +1.015258 +-1.059977 +.674885 +-.081924 +-.429104 +.659622 +-.589364 +.349430 +-.115163 +-.001923 +-.003441 +.064685 +-.111407 +.115064 +-.086369 +.042389 +.017488 +-.104573 +.214895 +-.316418 +.367268 +-.349916 +.286524 +-.217825 +.164145 +-.108633 +.021864 +.095259 +-.195521 +.218375 +-.146507 +.034215 +.023326 +.038913 +-.198256 +.346822 +-.358485 +.178968 +.120913 +-.370442 +.395881 +-.132084 +-.325738 +.770854 +-1.006886 +.960426 +-.708416 +.407859 +-.187966 +.085187 +-.057506 +.046944 +-.027978 +.006559 +.011669 +-.038032 +.079790 +-.106931 +.054098 +.125101 +-.391040 +.605709 +-.607542 +.331252 +.118297 +-.506087 +.605992 +-.347195 +-.133078 +.567326 +-.714728 +.497914 +-.039230 +-.417686 +.648759 +-.569469 +.269923 +.048099 +-.190651 +.077223 +.224333 +-.547190 +.724212 +-.677708 +.452817 +-.182743 +.011106 +-.016720 +.180985 +-.411075 +.600108 +-.685263 +.668987 +-.596216 +.510665 +-.426061 +.333315 +-.232101 +.153910 +-.150493 +.253909 +-.443434 +.652749 +-.815310 +.907192 +-.944984 +.938728 +-.848608 +.600466 +-.162648 +-.379864 +.833238 +-1.003026 +.830689 +-.447717 +.091798 +.060292 +-.015902 +-.051865 +-.047983 +.361331 +-.738304 +.935533 +-.795588 +.370836 +.100633 +-.351940 +.268136 +.035277 +-.292189 +.271672 +.056810 +-.492886 +.734313 +-.580831 +.074897 +.516688 +-.868750 +.798661 +-.368171 +-.176204 +.574050 +-.710633 +.660931 +-.603301 +.677651 +-.890174 +1.118394 +-1.197123 +1.020092 +-.598827 +.057581 +.423086 +-.684965 +.660692 +-.403427 +.061149 +.195345 +-.254371 +.110926 +.144310 +-.382943 +.505905 +-.483265 +.352148 +-.184913 +.051785 +.002190 +.039007 +-.168306 +.359912 +-.570331 +.745520 +-.841592 +.849216 +-.798408 +.730301 +-.653787 +.528544 +-.300193 +-.034287 +.388808 +-.620543 +.616671 +-.370037 +-.014150 +.381631 +-.609869 +.650759 +-.522601 +.280827 +.000535 +-.235763 +.343609 +-.282357 +.081166 +.165905 +-.349970 +.406455 +-.337771 +.187497 +.000176 +-.192779 +.349627 +-.408807 +.318076 +-.093382 +-.157106 +.289866 +-.234942 +.066313 +.038948 +.067230 +-.384036 +.754482 +-.978822 +.956221 +-.743386 +.492737 +-.332591 +.289721 +-.304738 +.307280 +-.276107 +.238252 +-.224740 +.234492 +-.239050 +.216561 +-.178451 +.165665 +-.220812 +.358351 +-.550665 +.734024 +-.832740 +.795988 +-.634014 +.430597 +-.312624 +.381399 +-.642845 +.984911 +-1.226427 +1.214317 +-.910167 +.411150 +.105155 +-.472738 +.607485 +-.522679 +.299460 +-.046280 +-.132968 +.167459 +-.054293 +-.116602 +.185813 +-.012925 +-.411510 +.916584 +-1.225542 +1.126522 +-.626948 +-.025903 +.486377 +-.523564 +.159191 +.364261 +-.756819 +.868309 +-.758321 +.611097 +-.573263 +.642956 +-.687892 +.565171 +-.240091 +-.185717 +.545882 +-.713086 +.657018 +-.432153 +.130626 +.151798 +-.326132 +.323271 +-.130832 +-.168090 +.404193 +-.402959 +.096547 +.416792 +-.920861 +1.210538 +-1.208345 +.984973 +-.678015 +.383747 +-.109863 +-.183559 +.504733 +-.789967 +.937337 +-.882252 +.649793 +-.343422 +.083487 +.057344 +-.081548 +.049367 +-.034381 +.076718 +-.153933 +.184770 +-.072778 +-.225083 +.645087 +-1.024095 +1.177646 +-1.006132 +.557389 +-.001924 +-.459082 +.687892 +-.650851 +.400217 +-.032081 +-.345788 +.633809 +-.763653 +.727664 +-.590958 +.461478 +-.424058 +.483024 +-.560051 +.554260 +-.420148 +.202995 +-.005605 +-.084486 +.050303 +.053355 +-.142341 +.150636 +-.054043 +-.127704 +.334462 +-.471984 +.438039 +-.176878 +-.264260 +.727762 +-1.017016 +1.013425 +-.755227 +.409168 +-.146008 +.013300 +.089317 +-.304732 +.664314 +-1.016438 +1.111226 +-.790665 +.140022 +.526655 +-.854196 +.680969 +-.152338 +-.371492 +.550457 +-.279314 +-.260502 +.734447 +-.870029 +.607735 +-.103650 +-.392349 +.686375 +-.727532 +.600114 +-.449660 +.394537 +-.464223 +.586351 +-.627869 +.477003 +-.126606 +-.296581 +.590744 +-.600296 +.319399 +.099825 +-.444352 +.571427 +-.479700 +.279090 +-.099319 +.013986 +-.026295 +.101655 +-.201163 +.289075 +-.325679 +.272663 +-.117706 +-.103261 +.312276 +-.427429 +.408035 +-.275937 +.100132 +.041870 +-.100682 +.070187 +.022028 +-.138750 +.255144 +-.364431 +.463990 +-.534580 +.534964 +-.426469 +.214516 +.030631 +-.206408 +.253593 +-.217485 +.231484 +-.415495 +.759659 +-1.093510 +1.185389 +-.910658 +.361093 +.197357 +-.495530 +.435551 +-.141038 +-.146771 +.239793 +-.113636 +-.109057 +.266945 +-.267170 +.121526 +.089664 +-.276710 +.376633 +-.357588 +.212692 +.038701 +-.345636 +.633040 +-.827798 +.889613 +-.824624 +.672346 +-.477110 +.266979 +-.054614 +-.142693 +.283173 +-.301272 +.136690 +.220944 +-.700073 +1.155385 +-1.422563 +1.395771 +-1.084980 +.617061 +-.176615 +-.082470 +.106198 +.045890 +-.246312 +.376010 +-.387816 +.323661 +-.279302 +.339076 +-.519347 +.753305 +-.925918 +.937918 +-.760094 +.445699 +-.096350 +-.192562 +.370794 +-.437539 +.420952 +-.357463 +.284473 +-.238370 +.244053 +-.297874 +.364809 +-.405576 +.419137 +-.460590 +.605086 +-.874049 +1.182310 +-1.361860 +1.263141 +-.868875 +.334280 +.088333 +-.199826 +-.019569 +.395711 +-.670367 +.662400 +-.373050 +-.030880 +.337103 +-.423718 +.321441 +-.170266 +.114329 +-.213027 +.422300 +-.642205 +.783288 +-.805519 +.717211 +-.553506 +.358619 +-.177563 +.048001 +.013675 +-.023264 +.023007 +-.056793 +.141286 +-.253535 +.344304 +-.369280 +.318049 +-.221232 +.128704 +-.071931 +.039286 +.011166 +-.105918 +.215930 +-.265640 +.194933 +-.023853 +-.144690 +.200741 +-.123062 +.007734 +.005116 +.149462 +-.398402 +.581692 +-.576399 +.389136 +-.141674 +-.032944 +.091512 +-.096073 +.139384 +-.252842 +.377545 +-.418649 +.330734 +-.160550 +.015163 +.014512 +.085796 +-.248396 +.366776 +-.351654 +.168548 +.151233 +-.519594 +.814985 +-.920732 +.773873 +-.405153 +-.057554 +.436153 +-.582998 +.452912 +-.124912 +-.239113 +.474598 +-.488624 +.291181 +.027588 +-.355591 +.618271 +-.805731 +.952868 +-1.086130 +1.176194 +-1.136810 +.880240 +-.394784 +-.213897 +.755993 +-1.050243 +1.016620 +-.709381 +.273725 +.138847 +-.438952 +.614281 +-.695922 +.713718 +-.677720 +.594508 +-.494114 +.433280 +-.463046 +.583731 +-.727088 +.787452 +-.685105 +.418246 +-.068698 +-.239663 +.400107 +-.366923 +.168891 +.103039 +-.325378 +.385735 +-.234398 +-.077643 +.404387 +-.568724 +.459618 +-.105197 +-.328880 +.622098 +-.615923 +.297271 +.197267 +-.653828 +.887414 +-.824502 +.523251 +-.127866 +-.210491 +.399878 +-.428907 +.343833 +-.207710 +.068823 +.052327 +-.163250 +.290683 +-.459892 +.664031 +-.843732 +.904474 +-.776809 +.481986 +-.145824 +-.066849 +.060878 +.116778 +-.302419 +.327941 +-.141199 +-.154044 +.368684 +-.358515 +.121332 +.204946 +-.437324 +.466944 +-.321321 +.132910 +-.040895 +.096067 +-.231992 +.319667 +-.264441 +.074384 +.151849 +-.309376 +.376040 +-.428705 +.566021 +-.798530 +1.004713 +-1.004993 +.706872 +-.206200 +-.245580 +.396691 +-.164786 +-.301078 +.711059 +-.815447 +.554573 +-.084205 +-.330108 +.471874 +-.283522 +-.129485 +.580485 +-.900102 +.993515 +-.847630 +.517803 +-.115482 +-.215424 +.355618 +-.287628 +.133185 +-.093270 +.303385 +-.703087 +1.035945 +-1.011693 +.530324 +.201162 +-.767489 +.810980 +-.282288 +-.509389 +1.093743 +-1.152961 +.732537 +-.200708 +-.015111 +-.269929 +.868318 +-1.350316 +1.339908 +-.769247 +-.082059 +.781702 +-1.029204 +.831557 +-.459478 +.234905 +-.310863 +.593200 +-.836782 +.826457 +-.509350 +.002651 +.500129 +-.839127 +.942084 +-.814580 +.509627 +-.115856 +-.241669 +.425906 +-.354136 +.066849 +.269459 +-.452429 +.372547 +-.079344 +-.272515 +.553557 +-.753695 +.958492 +-1.231682 +1.513875 +-1.634650 +1.436368 +-.909797 +.230889 +.332760 +-.576703 +.467841 +-.141349 +-.195844 +.383059 +-.375548 +.239347 +-.090647 +.021711 +-.052960 +.131777 +-.173743 +.119923 +.024648 +-.193570 +.299087 +-.283251 +.151225 +.028753 +-.156106 +.147144 +.014618 +-.251380 +.412646 +-.354139 +.041640 +.388489 +-.674280 +.576947 +-.049645 +-.693400 +1.274219 +-1.369043 +.908623 +-.124806 +-.591954 +.930177 +-.833834 +.507598 +-.260109 +.297319 +-.597295 +.933858 +-1.021219 +.689198 +.007023 +-.799210 +1.335661 +-1.364622 +.873957 +-.102094 +-.595727 +.950525 +-.922947 +.692563 +-.505389 +.495145 +-.608376 +.678256 +-.573117 +.293866 +.050683 +-.350342 +.575150 +-.759954 +.920318 +-.995918 +.889193 +-.568775 +.135925 +.220353 +-.351710 +.254654 +-.062365 +-.064491 +.050754 +.065213 +-.191782 +.259281 +-.241124 +.123688 +.114312 +-.468640 +.849821 +-1.072763 +.942698 +-.397338 +-.401103 +1.111569 +-1.391104 +1.097662 +-.385726 +-.373214 +.800166 +-.719956 +.245240 +.313945 +-.651438 +.645429 +-.403392 +.151806 +-.057240 +.111121 +-.159756 +.049570 +.230298 +-.521370 +.607092 +-.375569 +-.089511 +.555694 +-.788107 +.689391 +-.341940 +-.061443 +.337124 +-.398265 +.268612 +-.039965 +-.178862 +.290472 +-.222560 +-.048939 +.465829 +-.877718 +1.093778 +-.986833 +.581940 +-.054257 +-.376287 +.580089 +-.579838 +.495458 +-.426091 +.373924 +-.272347 +.085811 +.115257 +-.178499 +-.018502 +.456459 +-.954328 +1.265146 +-1.225336 +.855058 +-.341863 +-.078409 +.258836 +-.204418 +.026989 +.160129 +-.320770 +.489596 +-.698228 +.907130 +-1.008597 +.902492 +-.583257 +.166666 +.166628 +-.271449 +.115611 +.208417 +-.534726 +.702434 +-.622459 +.308422 +.135226 +-.561786 +.846566 +-.935873 +.852948 +-.660028 +.407788 +-.114882 +-.206975 +.511434 +-.710350 +.722689 +-.545012 +.278018 +-.073828 +.037008 +-.157074 +.326749 +-.428690 +.417754 +-.335833 +.258070 +-.225712 +.223108 +-.211045 +.178415 +-.163012 +.221942 +-.375214 +.569422 +-.695677 +.657208 +-.442391 +.148351 +.069391 +-.092579 +-.084923 +.356255 +-.574804 +.647453 +-.584050 +.476166 +-.428648 +.492812 +-.639001 +.777893 +-.813719 +.700428 +-.471227 +.223780 +-.067053 +.059152 +-.172283 +.304133 +-.325709 +.137614 +.288833 +-.894710 +1.540363 +-2.037436 +2.206173 +-1.946151 +1.290677 +-.410917 +-.441464 +1.030372 +-1.222955 +1.028196 +-.575013 +.048318 +.383866 +-.623112 +.657241 +-.540624 +.351448 +-.149825 +-.041575 +.227246 +-.412336 +.583015 +-.707903 +.755176 +-.709286 +.576727 +-.382674 +.165569 +.030403 +-.169482 +.242950 +-.275285 +.301838 +-.325917 +.292791 +-.119603 +-.222220 +.632184 +-.890588 +.779166 +-.247256 +-.498919 +1.073446 +-1.131714 +.600237 +.245226 +-.924130 +1.040917 +-.537340 +-.260365 +.838114 +-.813412 +.173379 +.719882 +-1.355562 +1.380896 +-.791854 +-.102561 +.898120 +-1.336681 +1.414876 +-1.309844 +1.202306 +-1.137681 +1.021720 +-.738304 +.285137 +.184942 +-.451917 +.379339 +-.012878 +-.445550 +.764189 +-.811957 +.604275 +-.250672 +-.134927 +.488502 +-.789705 +1.026447 +-1.174665 +1.208345 +-1.120057 +.928008 +-.666579 +.373602 +-.084691 +-.168522 +.363650 +-.493551 +.563827 +-.579940 +.535611 +-.416184 +.215817 +.047140 +-.331011 +.584214 +-.757942 +.812455 +-.726495 +.516935 +-.254530 +.048022 +.011327 +.089430 +-.272840 +.428401 +-.497086 +.509854 +-.544305 +.639632 +-.750631 +.785616 +-.691665 +.505327 +-.320114 +.203834 +-.147050 +.091967 +-.010923 +-.047021 +-.006258 +.205018 +-.467749 +.631937 +-.568971 +.290136 +.046210 +-.243130 +.214062 +-.059790 +.006305 +-.236870 +.734370 +-1.252852 +1.454284 +-1.129863 +.358130 +.514781 +-1.072218 +1.078667 +-.621687 +.048277 +.263282 +-.143398 +-.277641 +.683520 +-.804214 +.599027 +-.263599 +.067070 +-.149060 +.429000 +-.686596 +.738909 +-.571550 +.329315 +-.189132 +.226370 +-.376764 +.507246 +-.522622 +.420935 +-.268929 +.137461 +-.057434 +.022475 +-.018174 +.042018 +-.098092 +.178851 +-.254845 +.281744 +-.219111 +.049898 +.207163 +-.496314 +.736983 +-.848441 +.780060 +-.535176 +.176909 +.189072 +-.450829 +.533277 +-.430362 +.209915 +.015751 +-.142446 +.123178 +.013828 +-.189256 +.323500 +-.381572 +.382889 +-.370815 +.365486 +-.337341 +.224557 +.014777 +-.354366 +.693886 +-.905210 +.903261 +-.696932 +.388278 +-.119006 +-.007857 +-.011189 +.074024 +-.034215 +-.199115 +.586234 +-.967070 +1.163718 +-1.107483 +.891521 +-.697570 +.646401 +-.691496 +.651533 +-.366958 +-.140523 +.639144 +-.825962 +.538317 +.117393 +-.814726 +1.197990 +-1.080456 +.523585 +.232611 +-.915955 +1.342493 +-1.456609 +1.306620 +-1.002069 +.678307 +-.459326 +.407040 +-.475811 +.516959 +-.360374 +-.059195 +.617804 +-1.038705 +1.050269 +-.569872 +-.217863 +.956018 +-1.328523 +1.247004 +-.883936 +.536541 +-.425104 +.566042 +-.794408 +.900572 +-.776448 +.477188 +-.171100 +.020678 +-.070968 +.212411 +-.243992 +.007354 +.485763 +-1.020718 +1.283581 +-1.055029 +.374928 +.440570 +-.960322 +.888040 +-.243804 +-.641650 +1.320360 +-1.487305 +1.144455 +-.569803 +.118810 +.005471 +.138634 +-.308777 +.276233 +.005197 +-.379533 +.621925 +-.613577 +.423632 +-.244357 +.241078 +-.433700 +.686772 +-.797174 +.608296 +-.085285 +-.668525 +1.441963 +-1.980194 +2.077449 +-1.675995 +.918634 +-.100149 +-.481045 +.688944 +-.618131 +.506027 +-.546418 +.742423 +-.911681 +.840483 +-.465892 +-.058368 +.465847 +-.569931 +.394501 +-.142533 +.033141 +-.141358 +.366097 +-.541498 +.587564 +-.569973 +.620808 +-.790799 +.960540 +-.892594 +.400074 +.481975 +-1.447009 +2.043859 +-1.925600 +1.077815 +.123871 +-1.089641 +1.342045 +-.798760 +-.175041 +.990279 +-1.194313 +.732277 +.056316 +-.685055 +.827354 +-.477608 +-.112739 +.639105 +-.925540 +.975439 +-.899580 +.811144 +-.769792 +.788790 +-.862491 +.971949 +-1.068829 +1.075770 +-.930911 +.655915 +-.385610 +.309525 +-.542326 +1.011982 +-1.464292 +1.607721 +-1.311460 +.712275 +-.138392 +-.107926 +-.044270 +.393005 +-.616170 +.502784 +-.089435 +-.392891 +.707229 +-.778731 +.713921 +-.670436 +.699895 +-.703027 +.535635 +-.171241 +-.225901 +.392248 +-.159032 +-.401177 +.992919 +-1.273387 +1.059634 +-.424681 +-.371304 +1.048445 +-1.449423 +1.571613 +-1.498145 +1.305719 +-1.024018 +.661810 +-.256217 +-.109538 +.337976 +-.371900 +.229053 +.005478 +-.220163 +.324871 +-.283150 +.120195 +.091823 +-.263672 +.323157 +-.240853 +.038059 +.223146 +-.459544 +.587054 +-.539244 +.286797 +.143045 +-.658612 +1.123023 +-1.403500 +1.429725 +-1.226639 +.898313 +-.572152 +.341061 +-.238018 +.248775 +-.338149 +.464014 +-.576223 +.619484 +-.554391 +.385542 +-.169161 +-.014588 +.106729 +-.095973 +.005533 +.142597 +-.345728 +.596350 +-.835795 +.938317 +-.763587 +.259242 +.458959 +-1.123869 +1.443355 +-1.266398 +.680030 +.031614 +-.542594 +.655435 +-.383703 +-.089337 +.529555 +-.766451 +.745895 +-.517752 +.189708 +.122087 +-.331962 +.408870 +-.377879 +.294204 +-.201568 +.104482 +.021278 +-.187288 +.358285 +-.462134 +.444313 +-.324150 +.201400 +-.196387 +.361269 +-.629359 +.847222 +-.874020 +.678531 +-.360288 +.076902 +.066781 +-.080173 +.051725 +-.053446 +.073768 +-.040661 +-.090090 +.272679 +-.405749 +.439932 +-.453472 +.605700 +-.985403 +1.480095 +-1.796206 +1.644661 +-.962387 +-.006351 +.844331 +-1.218746 +1.071526 +-.608954 +.118644 +.227309 +-.432344 +.578920 +-.689251 +.681004 +-.454870 +.024960 +.437285 +-.697638 +.620605 +-.266527 +-.155424 +.441705 +-.534997 +.545229 +-.641865 +.907183 +-1.263528 +1.525314 +-1.530417 +1.251248 +-.807531 +.378281 +-.081414 +-.093495 +.255620 +-.513389 +.878106 +-1.239157 +1.427567 +-1.324121 +.939345 +-.413632 +-.060622 +.342775 +-.407871 +.334024 +-.227992 +.144247 +-.056455 +-.096953 +.326892 +-.537477 +.555875 +-.244693 +-.375000 +1.085075 +-1.563789 +1.567116 +-1.083788 +.356172 +.256463 +-.489667 +.325056 +.016963 +-.236717 +.160531 +.145374 +-.428275 +.432150 +-.083200 +-.453469 +.887151 +-1.003613 +.808589 +-.509165 +.351359 +-.440305 +.678584 +-.861680 +.846653 +-.659664 +.465034 +-.431637 +.606054 +-.884377 +1.089615 +-1.085195 +.844108 +-.442182 +.003177 +.355558 +-.550826 +.542383 +-.341943 +.023342 +.287794 +-.461821 +.435849 +-.259187 +.069746 +-.005458 +.110836 +-.311274 +.476443 +-.520998 +.459043 +-.371629 +.323652 +-.308073 +.264239 +-.145268 +-.032472 +.201904 +-.304073 +.337422 +-.354795 +.412977 +-.518694 +.615482 +-.623875 +.506975 +-.313405 +.162512 +-.175333 +.393359 +-.738468 +1.041772 +-1.125854 +.893443 +-.376487 +-.275917 +.860429 +-1.203027 +1.225986 +-.970035 +.564557 +-.163939 +-.116341 +.235019 +-.222408 +.150254 +-.092086 +.089742 +-.137767 +.192576 +-.204008 +.152373 +-.065117 +-.003068 +.015831 +.009042 +-.006929 +-.081789 +.254450 +-.434526 +.524157 +-.484362 +.375631 +-.318386 +.399696 +-.602722 +.819537 +-.936404 +.916888 +-.811379 +.690715 +-.570697 +.399290 +-.116875 +-.268247 +.658132 +-.915737 +.945533 +-.744655 +.397988 +-.032826 +-.234901 +.342626 +-.305081 +.213215 +-.198702 +.366896 +-.728155 +1.172788 +-1.515673 +1.592155 +-1.349309 +.876937 +-.360890 +-.011541 +.137718 +-.031803 +-.207285 +.463803 +-.663861 +.792226 +-.867296 +.903195 +-.891855 +.816625 +-.679502 +.514226 +-.370758 +.283302 +-.247254 +.222141 +-.157528 +.023795 +.169657 +-.376192 +.531450 +-.583579 +.523153 +-.396769 +.290564 +-.284285 +.401135 +-.588583 +.748837 +-.800292 +.726617 +-.581129 +.450492 +-.409040 +.489870 +-.674918 +.894787 +-1.040741 +1.002582 +-.730415 +.284289 +.177166 +-.482013 +.555175 +-.471951 +.406688 +-.506656 +.782024 +-1.094619 +1.256417 +-1.167172 +.891127 +-.616644 +.527597 +-.677228 +.951804 +-1.147567 +1.107864 +-.829935 +.471060 +-.248529 +.294127 +-.556489 +.820374 +-.839160 +.498233 +.101601 +-.701415 +1.043802 +-1.024268 +.735159 +-.386480 +.172279 +-.173020 +.339547 +-.543906 +.653539 +-.592157 +.368621 +-.064799 +-.214916 +.407445 +-.524327 +.623454 +-.736784 +.817587 +-.764156 +.513138 +-.125361 +-.219386 +.332474 +-.153933 +-.191925 +.472652 +-.503070 +.265256 +.093773 +-.379718 +.492129 +-.483280 +.495661 +-.631788 +.860297 +-1.032989 +.999932 +-.731294 +.346745 +-.025653 +-.131333 +.175400 +-.252274 +.457395 +-.725115 +.853824 +-.660302 +.144607 +.472363 +-.880946 +.891172 +-.559854 +.140998 +.098077 +-.053433 +-.171875 +.371906 +-.395398 +.237705 +-.015323 +-.137046 +.160621 +-.096508 +.038298 +-.058368 +.158875 +-.273137 +.309587 +-.209903 +-.011318 +.268275 +-.448268 +.475421 +-.354217 +.161198 +.013050 +-.130806 +.229462 +-.377411 +.596681 +-.819745 +.925898 +-.836311 +.590088 +-.330382 +.201202 +-.235584 +.330394 +-.334540 +.177956 +.069662 +-.261798 +.301734 +-.217856 +.120919 +-.089496 +.097482 +-.055657 +-.074422 +.211166 +-.206208 +-.019293 +.380570 +-.672918 +.727851 +-.554391 +.344873 +-.334835 +.624533 +-1.098154 +1.497948 +-1.594309 +1.329474 +-.842227 +.370061 +-.102804 +.080943 +-.192003 +.255574 +-.140825 +-.151264 +.486269 +-.676110 +.595977 +-.268484 +-.141134 +.422589 +-.452933 +.276326 +-.073546 +.038050 +-.242049 +.584178 +-.852044 +.853991 +-.531665 +-.011887 +.572840 +-.947846 +1.018495 +-.787231 +.363739 +.081372 +-.376749 +.408789 +-.162775 +-.267257 +.707647 +-.968998 +.925158 +-.574527 +.049815 +.439318 +-.709912 +.700863 +-.499783 +.279580 +-.182871 +.232370 +-.330549 +.347371 +-.228351 +.038492 +.092224 +-.076873 +-.056654 +.192153 +-.230036 +.182009 +-.169941 +.320994 +-.641582 +.980163 +-1.122293 +.953380 +-.561529 +.191914 +-.078955 +.279224 +-.629576 +.859737 +-.774677 +.378025 +.140132 +-.529087 +.626980 +-.444844 +.148114 +.043011 +.021363 +-.332319 +.716239 +-.921758 +.761495 +-.231352 +-.467269 +1.024509 +-1.187070 +.894483 +-.308031 +-.279843 +.597876 +-.523385 +.123271 +.398256 +-.803764 +.922550 +-.707697 +.240886 +.305128 +-.731517 +.889360 +-.742587 +.386504 +-.003291 +-.229573 +.226150 +-.019024 +-.288544 +.604552 +-.898126 +1.178752 +-1.428506 +1.556252 +-1.430074 +.979737 +-.293578 +-.376821 +.730301 +-.584249 +-.013703 +.805862 +-1.461506 +1.740555 +-1.588062 +1.121583 +-.542442 +.035204 +.293761 +-.423241 +.386379 +-.232274 +.005390 +.250694 +-.480675 +.620569 +-.627663 +.519436 +-.385846 +.349213 +-.485080 +.753278 +-.994678 +1.013529 +-.707128 +.160952 +.365540 +-.574310 +.311238 +.324004 +-1.023401 +1.449158 +-1.427412 +1.029192 +-.495339 +.074329 +.108222 +-.073345 +-.078878 +.253925 +-.400742 +.495640 +-.511484 +.413844 +-.190715 +-.115865 +.415662 +-.622188 +.714940 +-.755409 +.830740 +-.962039 +1.059011 +-.978533 +.658213 +-.217106 +-.081512 +.008504 +.434052 +-.961401 +1.171679 +-.832063 +.076287 +.650952 +-.886508 +.476848 +.300875 +-.922053 +.974577 +-.434466 +-.339720 +.879456 +-.936267 +.628047 +-.308797 +.277148 +-.548493 +.854101 +-.855311 +.407415 +.319041 +-.942257 +1.121282 +-.780102 +.151178 +.386886 +-.563732 +.388740 +-.124607 +.085536 +-.402280 +.918387 +-1.289387 +1.217432 +-.661071 +-.122239 +.730993 +-.869662 +.528825 +.020872 +-.411960 +.413728 +-.062079 +-.390206 +.653125 +-.578789 +.226348 +.209643 +-.537072 +.670555 +-.644348 +.547435 +-.440993 +.317038 +-.120451 +-.186995 +.568727 +-.906790 +1.062141 +-.970828 +.709960 +-.473623 +.454441 +-.702505 +1.066760 +-1.277637 +1.126471 +-.615383 +-.034064 +.521689 +-.653706 +.439235 +-.041555 +-.357084 +.663116 +-.878371 +1.026813 +-1.084706 +.983760 +-.683237 +.244712 +.161989 +-.338340 +.172503 +.286489 +-.843607 +1.251859 +-1.329730 +1.042175 +-.512247 +-.035155 +.372925 +-.377858 +.098966 +.252044 +-.399827 +.155140 +.464813 +-1.223709 +1.779647 +-1.865934 +1.434166 +-.677481 +-.074074 +.519800 +-.521433 +.139656 +.427185 +-.951324 +1.268720 +-1.319841 +1.138733 +-.814288 +.448981 +-.128387 +-.096125 +.212188 +-.238912 +.208184 +-.141588 +.033803 +.145223 +-.424675 +.792876 +-1.167220 +1.403664 +-1.358536 +.979805 +-.371414 +-.225713 +.546675 +-.452289 +.019244 +.498424 +-.821417 +.813474 +-.551616 +.249700 +-.090785 +.090660 +-.093769 +-.092874 +.525418 +-1.041328 +1.341938 +-1.192578 +.602338 +.150645 +-.679091 +.730301 +-.348071 +-.160282 +.429471 +-.272346 +-.213821 +.735675 +-1.013109 +.956307 +-.690521 +.426872 +-.290376 +.239509 +-.131632 +-.129821 +.493324 +-.787967 +.858166 +-.691779 +.434999 +-.280498 +.318973 +-.472637 +.561729 +-.449845 +.154082 +.162493 +-.307063 +.193373 +.098488 +-.375262 +.453526 +-.268536 +-.095642 +.461511 +-.656937 +.600713 +-.338253 +.019461 +.168863 +-.092928 +-.250403 +.711414 +-1.050594 +1.070262 +-.742661 +.243165 +.150493 +-.237165 +.026560 +.270276 +-.391091 +.205744 +.195946 +-.566843 +.662034 +-.384036 +-.171312 +.778123 +-1.200056 +1.298864 +-1.086029 +.703632 +-.345654 +.155262 +-.151789 +.235804 +-.276186 +.221265 +-.145730 +.185884 +-.406974 +.712573 +-.885473 +.744974 +-.302658 +-.214281 +.506987 +-.419406 +.063085 +.249126 +-.223268 +-.195370 +.763301 +-1.093239 +.922178 +-.306133 +-.401192 +.778460 +-.616963 +.053343 +.536759 +-.799710 +.626128 +-.181132 +-.257059 +.506629 +-.577758 +.599816 +-.665592 +.733270 +-.664734 +.359531 +.132384 +-.614874 +.867111 +-.791899 +.480481 +-.147459 +-.015080 +-.041813 +.209962 +-.315283 +.238629 +.018963 +-.356649 +.644377 +-.785640 +.742447 +-.531099 +.210684 +.130818 +-.400828 +.537003 +-.533090 +.433605 +-.298118 +.163369 +-.035284 +-.085532 +.174920 +-.188650 +.102342 +.048599 +-.174642 +.191276 +-.086562 +-.065148 +.163394 +-.168208 +.135570 +-.164674 +.298571 +-.466074 +.521993 +-.359927 +.006885 +.380582 +-.621884 +.640705 +-.517296 +.423337 +-.488299 +.699284 +-.909040 +.943235 +-.722552 +.309736 +.143073 +-.492883 +.670102 +-.672713 +.521889 +-.238200 +-.138261 +.517520 +-.771500 +.799064 +-.597477 +.276698 +.002391 +-.121874 +.065032 +.093757 +-.245146 +.299710 +-.214297 +-.003176 +.293080 +-.548418 +.642735 +-.488868 +.101637 +.383887 +-.765709 +.875981 +-.666823 +.228976 +.259029 +-.609360 +.688459 +-.454322 +-.023596 +.567025 +-.940064 +.957201 +-.598273 +.041333 +.437271 +-.641969 +.583957 +-.450656 +.438111 +-.580914 +.718505 +-.627368 +.216486 +.365739 +-.797898 +.786242 +-.267059 +-.523987 +1.167771 +-1.300474 +.833986 +-.022791 +-.671219 +.841500 +-.371551 +-.500230 +1.323382 +-1.695472 +1.479082 +-.849609 +.159529 +.282393 +-.375354 +.242780 +-.109400 +.133526 +-.306175 +.475716 +-.469749 +.224453 +.167614 +-.519356 +.670859 +-.583281 +.344667 +-.097404 +-.049561 +.062439 +.034039 +-.197537 +.393046 +-.591423 +.759951 +-.862592 +.869155 +-.761292 +.533364 +-.198341 +-.197167 +.565475 +-.801701 +.839479 +-.701367 +.496638 +-.354822 +.338739 +-.406700 +.457159 +-.419233 +.309516 +-.203280 +.146982 +-.097757 +-.043433 +.324025 +-.654126 +.832969 +-.685743 +.208480 +.400572 +-.859776 +.990532 +-.833360 +.609184 +-.559055 +.781416 +-1.178486 +1.536667 +-1.670991 +1.530831 +-1.204217 +.834397 +-.516262 +.244066 +.060566 +-.466005 +.952960 +-1.396075 +1.619676 +-1.494556 +1.017049 +-.323604 +-.365426 +.839664 +-.981263 +.800050 +-.412726 +-.015890 +.339013 +-.472443 +.405484 +-.185703 +-.103907 +.364386 +-.502158 +.462116 +-.264784 +.016201 +.138476 +-.106233 +-.078103 +.258673 +-.260218 +.016473 +.374570 +-.717560 +.859588 +-.792015 +.634828 +-.522914 +.493739 +-.469445 +.341147 +-.076532 +-.241746 +.473826 +-.520965 +.382150 +-.132695 +-.139275 +.373509 +-.526476 +.540943 +-.352983 +-.047628 +.554185 +-.952209 +1.026915 +-.707623 +.141060 +.374597 +-.562045 +.329160 +.186959 +-.722856 +1.061744 +-1.154666 +1.111652 +-1.082783 +1.128253 +-1.177881 +1.104076 +-.839863 +.440421 +-.040545 +-.246914 +.399225 +-.464855 +.490371 +-.473513 +.388137 +-.246236 +.121204 +-.095345 +.176471 +-.267651 +.231826 +-.006787 +-.325199 +.575782 +-.573058 +.277762 +.190459 +-.629624 +.873739 +-.872175 +.689591 +-.447869 +.261978 +-.205795 +.305853 +-.539486 +.827500 +-1.038127 +1.028211 +-.721205 +.179314 +.391562 +-.734364 +.692294 +-.322511 +-.119060 +.334143 +-.185340 +-.199717 +.514572 +-.504897 +.178109 +.177128 +-.197116 +-.266803 +.996737 +-1.527308 +1.464397 +-.774132 +-.175457 +.857353 +-.939548 +.495893 +.071329 +-.329708 +.112424 +.397431 +-.836704 +.941324 +-.721014 +.411251 +-.261128 +.334716 +-.477787 +.461213 +-.175939 +-.273451 +.639778 +-.704690 +.422124 +.059405 +-.494704 +.682808 +-.562346 +.218925 +.178942 +-.465728 +.542672 +-.402095 +.118544 +.179085 +-.347085 +.276774 +.053453 +-.547786 +1.015958 +-1.259534 +1.185636 +-.874657 +.541712 +-.401168 +.520622 +-.771244 +.915880 +-.774937 +.352297 +.164155 +-.519877 +.543572 +-.234939 +-.251758 +.703501 +-.959863 +.978843 +-.826693 +.605867 +-.372654 +.105799 +.245792 +-.671208 +1.043403 +-1.167581 +.917472 +-.359939 +-.243359 +.584541 +-.513433 +.144290 +.224359 +-.324561 +.107652 +.237106 +-.445747 +.393586 +-.190225 +.081977 +-.241004 +.609586 +-.924765 +.909642 +-.489217 +-.133131 +.601322 +-.648058 +.279482 +.230166 +-.528670 +.422666 +.005583 +-.473710 +.697990 +-.567800 +.185072 +.231310 +-.485378 +.490579 +-.269720 +-.094915 +.505622 +-.863522 +1.071633 +-1.054576 +.796104 +-.364291 +-.107546 +.482854 +-.687028 +.728588 +-.664266 +.542666 +-.377453 +.170545 +.044686 +-.191832 +.194319 +-.040554 +-.188445 +.362580 +-.389729 +.278000 +-.122062 +.024401 +-.017018 +.047612 +-.037971 +-.040255 +.140608 +-.190272 +.168069 +-.142110 +.230593 +-.512811 +.956757 +-1.415717 +1.696155 +-1.654938 +1.271387 +-.660555 +.024290 +.437464 +-.615553 +.537933 +-.345800 +.207985 +-.222077 +.364458 +-.521275 +.575138 +-.482946 +.290716 +-.085185 +-.068782 +.153566 +-.177763 +.143625 +-.042750 +-.116908 +.286797 +-.390030 +.368210 +-.225187 +.031235 +.115906 +-.141962 +.024641 +.211228 +-.516217 +.833884 +-1.104743 +1.264261 +-1.248974 +1.018247 +-.585230 +.038139 +.472124 +-.787950 +.824585 +-.625735 +.348241 +-.171523 +.183575 +-.323241 +.425468 +-.344393 +.070124 +.243822 +-.365346 +.129775 +.444623 +-1.144598 +1.665772 +-1.776225 +1.445718 +-.861674 +.318076 +-.042919 +.072253 +-.249231 +.343332 +-.204724 +-.147357 +.549178 +-.799907 +.776138 +-.488821 +.062471 +.339079 +-.594639 +.672939 +-.625693 +.538520 +-.476255 +.457386 +-.466458 +.481700 +-.489238 +.477152 +-.428052 +.329986 +-.199905 +.092256 +-.072658 +.169470 +-.343371 +.507115 +-.588944 +.593495 +-.608025 +.738930 +-1.017541 +1.344683 +-1.525455 +1.384830 +-.894072 +.220841 +.341073 +-.529143 +.265144 +.289693 +-.813689 +.995483 +-.701376 +.046348 +.669899 +-1.125565 +1.147346 +-.794951 +.315235 +.003064 +.011877 +-.330853 +.753403 +-1.024670 +.970810 +-.583996 +.021740 +.473072 +-.691898 +.564659 +-.196984 +-.183532 +.350762 +-.209180 +-.147414 +.489491 +-.592672 +.381431 +.018432 +-.359111 +.436159 +-.230676 +-.072906 +.213436 +-.041630 +-.362082 +.729175 +-.781452 +.423990 +.181577 +-.713477 +.886788 +-.617541 +.053040 +.533888 +-.901395 +.944558 +-.703844 +.302458 +.124876 +-.468393 +.646097 +-.604949 +.341690 +.069166 +-.477662 +.714207 +-.678507 +.403305 +-.040869 +-.227141 +.297969 +-.200769 +.063136 +-.022750 +.147177 +-.405269 +.689809 +-.865695 +.822958 +-.526002 +.047633 +.437145 +-.717345 +.654424 +-.271568 +-.242968 +.634774 +-.728510 +.524983 +-.187351 +-.069210 +.104755 +.083881 +-.392957 +.691272 +-.883026 +.920685 +-.787851 +.494639 +-.100670 +-.264499 +.428675 +-.261836 +-.228093 +.860238 +-1.347202 +1.436881 +-1.050645 +.337261 +.391568 +-.811433 +.743994 +-.241976 +-.443160 +.992824 +-1.179869 +.967672 +-.500045 +-.000938 +.357427 +-.504882 +.480759 +-.364085 +.222026 +-.096667 +.021325 +-.031915 +.152289 +-.365197 +.600678 +-.761292 +.772713 +-.624256 +.370666 +-.095221 +-.136621 +.300175 +-.400408 +.444644 +-.427304 +.338849 +-.186561 +.003290 +.167814 +-.303269 +.419981 +-.567070 +.787914 +-1.073425 +1.339205 +-1.451640 +1.299002 +-.868041 +.273729 +.285932 +-.626828 +.667816 +-.459603 +.144852 +.116952 +-.217497 +.136504 +.056960 +-.237531 +.286049 +-.160546 +-.065915 +.237584 +-.213765 +-.026333 +.347803 +-.530374 +.407394 +.015771 +-.545536 +.901824 +-.876940 +.454501 +.181588 +-.748265 +1.009577 +-.884687 +.466712 +.042470 +-.435676 +.588499 +-.496743 +.256381 +-.003504 +-.153161 +.174184 +-.088317 +-.043540 +.171198 +-.277624 +.371760 +-.464813 +.550698 +-.604159 +.596422 +-.518497 +.399502 +-.308058 +.329232 +-.520631 +.868681 +-1.274755 +1.589907 +-1.685330 +1.517643 +-1.148354 +.708940 +-.339642 +.140412 +-.150887 +.348175 +-.647069 +.907681 +-.972455 +.738492 +-.233434 +-.363546 +.792504 +-.850346 +.514158 +.034118 +-.506581 +.674164 +-.493661 +.118131 +.211559 +-.319763 +.195106 +.022293 +-.147491 +.074116 +.166854 +-.443270 +.615383 +-.613923 +.453145 +-.189465 +-.120344 +.419438 +-.622474 +.613884 +-.310130 +-.244411 +.833744 +-1.145984 +.947503 +-.244837 +-.686614 +1.443057 +-1.718249 +1.469675 +-.921111 +.409391 +-.181707 +.270348 +-.510313 +.671786 +-.614585 +.369927 +-.104653 +-.003397 +-.103371 +.313107 +-.415978 +.253914 +.154700 +-.611533 +.869889 +-.812064 +.539051 +-.297202 +.289485 +-.513079 +.750187 +-.723047 +.298524 +.408885 +-1.105349 +1.498356 +-1.456427 +1.048830 +-.467507 +-.087020 +.474899 +-.623663 +.512536 +-.174930 +-.284970 +.701552 +-.909675 +.833864 +-.540428 +.202265 +.011962 +-.051829 +.019440 +-.092975 +.387023 +-.846024 +1.249278 +-1.333498 +.958298 +-.208818 +-.631898 +1.225736 +-1.351246 +1.004960 +-.381619 +-.241534 +.641135 +-.730057 +.555142 +-.232127 +-.131212 +.477683 +-.792688 +1.064000 +-1.247946 +1.274177 +-1.091242 +.720144 +-.271043 +-.099593 +.271242 +-.228556 +.069400 +.057919 +-.051084 +-.077567 +.206671 +-.186393 +-.054612 +.445625 +-.799684 +.917251 +-.704851 +.235053 +.287785 +-.632956 +.657965 +-.371173 +-.083259 +.502275 +-.719381 +.672090 +-.413007 +.065488 +.247724 +-.462485 +.587924 +-.674361 +.760637 +-.839172 +.863519 +-.791186 +.625845 +-.421987 +.246190 +-.127852 +.043973 +.047771 +-.160184 +.262830 +-.320123 +.343097 +-.393365 +.519868 +-.679472 +.724454 +-.492144 +-.059968 +.784760 +-1.412402 +1.716005 +-1.653293 +1.376059 +-1.104118 +.967213 +-.938028 +.897154 +-.761358 +.561100 +-.406914 +.383410 +-.468369 +.546856 +-.505499 +.325583 +-.097543 +-.051772 +.057545 +.037011 +-.118250 +.087491 +.072196 +-.289986 +.454468 +-.473391 +.312609 +-.004858 +-.364365 +.687096 +-.875072 +.899598 +-.804914 +.678432 +-.591489 +.552332 +-.509237 +.403305 +-.227806 +.042703 +.070426 +-.076462 +.018710 +.014576 +.037694 +-.160498 +.278081 +-.318636 +.269773 +-.177933 +.097859 +-.043408 +-.014839 +.107782 +-.226542 +.323646 +-.355731 +.327872 +-.298139 +.336358 +-.467653 +.642070 +-.751719 +.686810 +-.399764 +-.057020 +.542132 +-.882672 +.951506 +-.724874 +.291521 +.189080 +-.555109 +.704225 +-.624465 +.387133 +-.108524 +-.102215 +.186338 +-.150088 +.045363 +.068572 +-.156785 +.216140 +-.260785 +.301352 +-.332698 +.335106 +-.286016 +.176883 +-.027628 +-.112483 +.185208 +-.158074 +.050444 +.072040 +-.134826 +.097371 +.029880 +-.203112 +.376055 +-.516009 +.598857 +-.601992 +.515067 +-.362297 +.206334 +-.112446 +.090198 +-.063383 +-.091228 +.447803 +-.944388 +1.379248 +-1.510761 +1.203761 +-.524586 +-.283222 +.929018 +-1.226037 +1.167935 +-.891515 +.564811 +-.284325 +.048264 +.188608 +-.432159 +.608209 +-.598466 +.328761 +.153767 +-.671959 +.990925 +-.934237 +.482341 +.199422 +-.822118 +1.101727 +-.897547 +.289749 +.452390 +-1.003175 +1.143111 +-.858247 +.322153 +.216332 +-.559398 +.625481 +-.436132 +.065650 +.392808 +-.829008 +1.114800 +-1.138429 +.872073 +-.421483 +-.001579 +.192626 +-.088447 +-.177641 +.354068 +-.241456 +-.160939 +.641003 +-.908420 +.788674 +-.342605 +-.169961 +.456256 +-.373152 +.005340 +.406715 +-.633078 +.597909 +-.404283 +.231292 +-.185759 +.222326 +-.192048 +-.019535 +.374451 +-.681588 +.721112 +-.405335 +-.144361 +.665154 +-.919439 +.842185 +-.564498 +.300521 +-.184723 +.180725 +-.126953 +-.120711 +.561347 +-1.033251 +1.318038 +-1.281700 +.947548 +-.457645 +-.031161 +.426967 +-.703379 +.844921 +-.811519 +.572178 +-.181415 +-.185656 +.303480 +-.045244 +-.498874 +1.041489 +-1.264503 +1.022697 +-.436060 +-.198535 +.609267 +-.713724 +.630208 +-.543930 +.547494 +-.584634 +.532762 +-.343532 +.114608 +-.027332 +.197449 +-.559693 +.883628 +-.918533 +.567374 +.033926 +-.590282 +.827226 +-.658377 +.231379 +.175052 +-.331526 +.195783 +.081079 +-.277570 +.263915 +-.088608 +-.069210 +.042752 +.191603 +-.493205 +.660585 +-.580902 +.313241 +-.045258 +-.042737 +-.094105 +.332617 +-.460441 +.307996 +.148970 +-.767924 +1.300855 +-1.502976 +1.242930 +-.571421 +-.283353 +1.002430 +-1.317105 +1.138703 +-.603593 +-.000327 +.388701 +-.425793 +.172932 +.180717 +-.447726 +.542341 +-.495864 +.400995 +-.342790 +.363635 +-.466193 +.626807 +-.798509 +.910453 +-.885754 +.684101 +-.345019 +-.006217 +.209750 +-.159686 +-.121833 +.476651 +-.684515 +.583868 +-.170784 +-.385664 +.826031 +-.936901 +.663387 +-.134063 +-.413537 +.760818 +-.815301 +.640923 +-.404083 +.276118 +-.350271 +.610841 +-.954984 +1.242867 +-1.351741 +1.222341 +-.889303 +.479578 +-.162082 +.057655 +-.158221 +.318743 +-.347144 +.142333 +.219059 +-.521013 +.554570 +-.268868 +-.186821 +.562480 +-.675115 +.523504 +-.273846 +.137577 +-.234195 +.527871 +-.864816 +1.072209 +-1.054785 +.841491 +-.567741 +.406449 +-.478958 +.787407 +-1.204655 +1.531347 +-1.592360 +1.320938 +-.788644 +.172448 +.317560 +-.518345 +.376764 +.022347 +-.479703 +.761945 +-.715289 +.355299 +.128403 +-.470237 +.478815 +-.147967 +-.341904 +.730143 +-.819665 +.572193 +-.110743 +-.355302 +.632238 +-.624062 +.368571 +-.016514 +-.242672 +.282900 +-.117704 +-.104891 +.198515 +-.066584 +-.232162 +.533164 +-.691618 +.681869 +-.591301 +.522056 +-.493342 +.434424 +-.273657 +.040860 +.117107 +-.036785 +-.316424 +.776060 +-1.047748 +.893425 +-.304646 +-.459421 +1.006677 +-1.040905 +.541462 +.218457 +-.825587 +.958206 +-.559702 +-.141241 +.767173 +-1.002871 +.762851 +-.226068 +-.276549 +.455431 +-.224113 +-.264772 +.727833 +-.931012 +.823363 +-.540630 +.287659 +-.192868 +.240042 +-.315724 +.320341 +-.249956 +.190322 +-.240893 +.436594 +-.724826 +1.002916 +-1.176921 +1.201153 +-1.084986 +.878702 +-.651107 +.461943 +-.334531 +.246042 +-.152337 +.037497 +.053850 +-.041453 +-.115392 +.352658 +-.512834 +.442305 +-.109517 +-.347353 +.688068 +-.714105 +.394176 +.109212 +-.527448 +.633218 +-.362571 +-.152211 +.651864 +-.882019 +.720227 +-.235315 +-.349988 +.774132 +-.868646 +.635415 +-.226630 +-.157408 +.387437 +-.465850 +.495193 +-.583522 +.756112 +-.931650 +.971388 +-.762016 +.281209 +.382743 +-1.056365 +1.536160 +-1.659611 +1.373343 +-.769384 +.059029 +.517636 +-.803543 +.789905 +-.593978 +.369665 +-.218360 +.158513 +-.158363 +.186342 +-.230339 +.277485 +-.288585 +.204991 +.008333 +-.319789 +.629851 +-.821429 +.828579 +-.673637 +.446459 +-.243717 +.114041 +-.046429 +.001990 +.044042 +-.085463 +.102358 +-.090424 +.073972 +-.093107 +.180564 +-.346894 +.577803 +-.833586 +1.046845 +-1.131696 +1.019499 +-.709942 +.297810 +.061402 +-.239569 +.220984 +-.117819 +.095934 +-.258152 +.567577 +-.868106 +.991572 +-.876955 +.615637 +-.385387 +.317852 +-.397410 +.471653 +-.371337 +.049965 +.367373 +-.669115 +.714386 +-.541095 +.340662 +-.317602 +.540234 +-.893091 +1.161986 +-1.184167 +.952182 +-.602231 +.305367 +-.147290 +.082155 +.014446 +-.238789 +.576145 +-.896877 +1.030211 +-.865957 +.421435 +.163703 +-.696059 +1.018069 +-1.069342 +.893834 +-.599977 +.304565 +-.091287 +-.002754 +-.020056 +.129237 +-.272516 +.381369 +-.386543 +.246428 +.024530 +-.349517 +.616766 +-.729693 +.651042 +-.414550 +.100897 +.201769 +-.425399 +.526422 +-.478145 +.271727 +.066485 +-.457269 +.777458 +-.907311 +.795755 +-.500078 +.166508 +.043741 +-.038955 +-.159995 +.441935 +-.672868 +.762636 +-.692676 +.499136 +-.236824 +-.043616 +.292119 +-.445252 +.432007 +-.212991 +-.168789 +.570739 +-.799085 +.707930 +-.291204 +-.294932 +.799779 +-.999914 +.806875 +-.304056 +-.301182 +.778916 +-.976205 +.867561 +-.541423 +.143890 +.180838 +-.327783 +.248206 +.036681 +-.422455 +.732882 +-.782012 +.475131 +.111006 +-.737901 +1.121044 +-1.089421 +.685386 +-.137235 +-.276608 +.381113 +-.180974 +-.174680 +.497670 +-.659193 +.626560 +-.437920 +.156676 +.153860 +-.427197 +.587033 +-.563008 +.327732 +.074529 +-.535730 +.927650 +-1.151033 +1.160046 +-.956847 +.576438 +-.081334 +-.435473 +.858229 +-1.079776 +1.046750 +-.790542 +.418973 +-.066334 +-.173716 +.292697 +-.359239 +.459645 +-.626417 +.808530 +-.911156 +.877110 +-.742697 +.615368 +-.584932 +.641117 +-.671658 +.550394 +-.247925 +-.125111 +.380892 +-.378859 +.121728 +.244343 +-.521883 +.581072 +-.427483 +.180897 +.012504 +-.071610 +.016397 +.067798 +-.103741 +.074884 +-.019731 +-.021690 +.059401 +-.154817 +.364568 +-.668826 +.945461 +-1.023776 +.794289 +-.303084 +-.242578 +.577817 +-.538302 +.169724 +.291824 +-.565738 +.505312 +-.187525 +-.147356 +.261471 +-.072371 +-.309286 +.671613 +-.846131 +.802151 +-.638041 +.495109 +-.463746 +.539477 +-.640005 +.657903 +-.516041 +.204855 +.208145 +-.600955 +.847344 +-.874890 +.699316 +-.412235 +.128638 +.071273 +-.168540 +.189820 +-.172824 +.145823 +-.133082 +.166713 +-.277633 +.463138 +-.661476 +.768833 +-.700249 +.453162 +-.121453 +-.156857 +.283124 +-.253194 +.146913 +-.063328 +.049686 +-.073242 +.054882 +.058746 +-.235813 +.361057 +-.308800 +.042747 +.333148 +-.623368 +.666606 +-.449091 +.115901 +.132603 +-.179543 +.057370 +.103814 +-.190317 +.179917 +-.122032 +.058564 +.029381 +-.196829 +.460393 +-.748533 +.926774 +-.879507 +.583364 +-.121073 +-.364291 +.731780 +-.882666 +.772350 +-.417272 +-.089076 +.569493 +-.803755 +.629657 +-.058013 +-.684614 +1.243967 +-1.326252 +.871209 +-.088936 +-.670382 +1.126203 +-1.213802 +1.076989 +-.931325 +.908703 +-.989730 +1.051614 +-.975302 +.728272 +-.376186 +.035370 +.188354 +-.237118 +.107759 +.157148 +-.480279 +.763253 +-.912488 +.876782 +-.676620 +.398471 +-.146812 +-.017360 +.103377 +-.157548 +.196325 +-.169076 +-.004961 +.346047 +-.745254 +.986952 +-.863454 +.309027 +.538094 +-1.388547 +1.937430 +-2.004359 +1.605376 +-.928449 +.233582 +.269531 +-.505893 +.541006 +-.509016 +.510811 +-.550505 +.553631 +-.448850 +.244209 +-.032813 +-.077441 +.049715 +.054229 +-.128008 +.109591 +-.030890 +-.009717 +-.074338 +.291880 +-.566709 +.785783 +-.862357 +.772427 +-.552174 +.272189 +-.012351 +-.152882 +.166641 +-.009700 +-.275405 +.577722 +-.750187 +.678495 +-.352065 +-.112448 +.522545 +-.715935 +.657256 +-.459207 +.307614 +-.336090 +.534485 +-.754825 +.811182 +-.604120 +.183684 +.288523 +-.645677 +.812008 +-.825319 +.781190 +-.752661 +.749746 +-.742670 +.716114 +-.698661 +.738769 +-.849636 +.974452 +-1.005548 +.846405 +-.473126 +-.043192 +.561961 +-.928544 +1.034843 +-.865063 +.511058 +-.144688 +-.053093 +-.018532 +.319614 +-.679908 +.885044 +-.793949 +.418052 +.086379 +-.507225 +.691248 +-.616397 +.385831 +-.157884 +.060293 +-.135478 +.337589 +-.571910 +.751293 +-.841339 +.872413 +-.911815 +1.010331 +-1.157179 +1.277778 +-1.281926 +1.131064 +-.874008 +.620358 +-.468163 +.438305 +-.464193 +.442942 +-.309322 +.079634 +.161811 +-.318675 +.339344 +-.237853 +.073602 +.087268 +-.198055 +.233152 +-.178309 +.030545 +.186908 +-.412527 +.560578 +-.563636 +.416717 +-.187175 +-.023887 +.145783 +-.185125 +.221884 +-.353910 +.622271 +-.964140 +1.228105 +-1.252721 +.968164 +-.457559 +-.070217 +.390441 +-.389711 +.125657 +.221744 +-.469695 +.533954 +-.443416 +.274562 +-.076898 +-.142480 +.374046 +-.561800 +.618987 +-.497729 +.244213 +.021239 +-.189774 +.239289 +-.229883 +.224717 +-.213704 +.117035 +.128309 +-.476002 +.761566 +-.801305 +.532178 +-.086017 +-.267903 +.286147 +.082699 +-.641492 +1.044851 +-1.003455 +.466870 +.334573 +-1.022346 +1.294772 +-1.097149 +.626676 +-.178273 +-.049790 +.050678 +.049248 +-.132359 +.187433 +-.285984 +.472205 +-.676867 +.741409 +-.539805 +.098388 +.389479 +-.675163 +.615288 +-.264950 +-.162711 +.440126 +-.469153 +.327640 +-.194135 +.212770 +-.395052 +.620709 +-.725655 +.609253 +-.292138 +-.101732 +.415367 +-.535289 +.436686 +-.184070 +-.104038 +.306046 +-.341115 +.189594 +.111212 +-.484755 +.833059 +-1.052073 +1.053113 +-.796122 +.322749 +.238411 +-.713748 +.961416 +-.939825 +.722677 +-.449365 +.244499 +-.158474 +.162171 +-.186795 +.174180 +-.106747 +.010824 +.055684 +-.022769 +-.163478 +.503964 +-.917505 +1.248042 +-1.324189 +1.050997 +-.481104 +-.186996 +.694342 +-.846245 +.603780 +-.089150 +-.491849 +.956069 +-1.212258 +1.261743 +-1.149719 +.916265 +-.585799 +.194889 +.176064 +-.407266 +.392388 +-.112571 +-.319921 +.690926 +-.787756 +.526577 +-.024977 +-.439053 +.575296 +-.255854 +-.392808 +1.047241 +-1.366649 +1.188021 +-.617932 +-.032382 +.425525 +-.380814 +-.044194 +.613434 +-1.066436 +1.266011 +-1.248790 +1.155456 +-1.100148 +1.078378 +-.981084 +.701251 +-.249697 +-.211525 +.450391 +-.310726 +-.173618 +.774621 +-1.184465 +1.182817 +-.757409 +.107565 +.468327 +-.729777 +.602904 +-.187593 +-.321134 +.733434 +-.928389 +.864855 +-.564286 +.095518 +.431262 +-.878127 +1.116194 +-1.079579 +.807400 +-.441807 +.170571 +-.135199 +.352545 +-.698649 +.972128 +-1.005199 +.756926 +-.331911 +-.084020 +.326799 +-.332397 +.151740 +.092255 +-.271631 +.308628 +-.200016 +.007765 +.176175 +-.275030 +.261064 +-.160150 +.026165 +.096044 +-.191543 +.266142 +-.318827 +.325136 +-.252978 +.103955 +.055667 +-.112594 +-.020817 +.320588 +-.620334 +.680960 +-.338852 +-.357427 +1.125049 +-1.579267 +1.455124 +-.780516 +-.120544 +.809698 +-.992538 +.688086 +-.199079 +-.096062 +-.008310 +.419224 +-.818586 +.879283 +-.476950 +-.237130 +.936287 +-1.312694 +1.237556 +-.799666 +.224342 +.255487 +-.495783 +.469081 +-.238107 +-.089488 +.400885 +-.607709 +.668188 +-.598264 +.462542 +-.342706 +.295499 +-.323172 +.375208 +-.383777 +.313247 +-.192481 +.105034 +-.138047 +.320070 +-.589918 +.822189 +-.897035 +.770812 +-.500349 +.204316 +.012294 +-.118212 +.157968 +-.195626 +.245713 +-.250874 +.132467 +.121415 +-.405946 +.542606 +-.397213 +-.013092 +.511970 +-.869036 +.942123 +-.750327 +.431554 +-.133534 +-.065843 +.154278 +-.129484 +-.029388 +.323169 +-.669503 +.899267 +-.849660 +.495747 +-.008379 +-.329139 +.302446 +.082975 +-.596112 +.929701 +-.899848 +.556269 +-.131066 +-.128935 +.122907 +.059648 +-.229601 +.246285 +-.110895 +-.058004 +.137405 +-.106322 +.059697 +-.118566 +.311024 +-.525689 +.584750 +-.386606 +.005559 +.338188 +-.425963 +.198784 +.194084 +-.494215 +.506775 +-.220121 +-.207179 +.565708 +-.720370 +.653864 +-.423387 +.096899 +.265110 +-.582750 +.743815 +-.653948 +.325020 +.083057 +-.332197 +.258806 +.102625 +-.528455 +.749761 +-.626194 +.223193 +.253749 +-.604043 +.744444 +-.721726 +.642705 +-.591620 +.590127 +-.605607 +.579016 +-.449091 +.173278 +.246312 +-.739177 +1.170299 +-1.388579 +1.302420 +-.936106 +.425903 +.044122 +-.324537 +.350733 +-.140851 +-.237716 +.697322 +-1.137457 +1.445405 +-1.515193 +1.291872 +-.815719 +.228899 +.273940 +-.530419 +.484129 +-.204941 +-.153012 +.429298 +-.528577 +.452593 +-.284014 +.134949 +-.086035 +.144333 +-.241044 +.273015 +-.167869 +-.066061 +.340843 +-.545834 +.623890 +-.610725 +.603488 +-.679744 +.830350 +-.963296 +.978342 +-.851204 +.656329 +-.508060 +.469281 +-.503249 +.505434 +-.387097 +.145343 +.127576 +-.294809 +.250023 +.022323 +-.425459 +.777819 +-.888135 +.655939 +-.147605 +-.409344 +.735347 +-.662925 +.253151 +.224664 +-.452608 +.265497 +.241315 +-.772502 +1.019881 +-.848709 +.363361 +.178228 +-.531188 +.599497 +-.464232 +.303620 +-.268304 +.391643 +-.584881 +.710031 +-.675335 +.487161 +-.227833 +-.014929 +.207414 +-.374791 +.557708 +-.763545 +.949556 +-1.041689 +.969549 +-.701707 +.277352 +.176555 +-.469820 +.433768 +-.036955 +-.547587 +.997137 +-1.011285 +.501717 +.330006 +-1.090023 +1.410423 +-1.154738 +.487748 +.224382 +-.617315 +.515743 +-.004735 +-.642959 +1.129776 +-1.286290 +1.129347 +-.805993 +.477897 +-.231783 +.070397 +.029214 +-.053920 +-.050288 +.318246 +-.691454 +.999834 +-1.033165 +.667741 +.035436 +-.836647 +1.435677 +-1.630486 +1.413517 +-.947148 +.448188 +-.071053 +-.134561 +.188140 +-.123260 +-.028726 +.213117 +-.333771 +.286984 +-.036514 +-.333547 +.646875 +-.738757 +.563514 +-.222689 +-.110339 +.312177 +-.385291 +.433864 +-.564852 +.794748 +-1.032357 +1.145081 +-1.053590 +.784415 +-.447580 +.165446 +-.009906 +-.010542 +-.079658 +.255184 +-.489140 +.727261 +-.878732 +.854733 +-.636256 +.312976 +-.047238 +-.024068 +-.118948 +.363534 +-.539310 +.531945 +-.357778 +.151623 +-.078448 +.226089 +-.543316 +.858277 +-.967800 +.750601 +-.244382 +-.357939 +.799403 +-.896266 +.646619 +-.238936 +-.058097 +.066814 +.177899 +-.447815 +.480875 +-.177667 +-.304735 +.636145 +-.525558 +-.077179 +.925719 +-1.606574 +1.774917 +-1.352981 +.573824 +.151907 +-.465543 +.253671 +.299996 +-.824305 +.962680 +-.555688 +-.284811 +1.234710 +-1.909750 +2.037356 +-1.576126 +.735726 +.113562 +-.609485 +.571946 +-.092551 +-.518438 +.907681 +-.874499 +.463284 +.103863 +-.595277 +.906963 +-1.069315 +1.138071 +-1.083296 +.788999 +-.173756 +-.671222 +1.457682 +-1.836046 +1.610186 +-.880210 +.004883 +.601014 +-.705206 +.377703 +.082627 +-.358994 +.318719 +-.070441 +-.153090 +.189920 +-.069775 +-.029727 +-.048924 +.292460 +-.512354 +.494963 +-.184890 +-.252532 +.545977 +-.521162 +.230060 +.093254 +-.208526 +.035409 +.310791 +-.619759 +.728623 +-.602028 +.318156 +-.003108 +-.227297 +.296269 +-.177541 +-.096876 +.439402 +-.732376 +.871981 +-.808443 +.563225 +-.219941 +-.103676 +.296903 +-.304112 +.161276 +.008291 +-.053658 +-.112801 +.451720 +-.809862 +1.010307 +-.962936 +.721998 +-.453276 +.333663 +-.449309 +.753942 +-1.106445 +1.354358 +-1.406516 +1.254455 +-.944445 +.536320 +-.085701 +-.344647 +.671306 +-.806253 +.706973 +-.427617 +.124499 +.007570 +.156417 +-.582804 +1.074656 +-1.370124 +1.293348 +-.862840 +.280675 +.195038 +-.407335 +.376591 +-.245832 +.145903 +-.089855 +-.023564 +.306953 +-.769229 +1.278952 +-1.632200 +1.673241 +-1.383826 +.887265 +-.375107 +.009996 +.139334 +-.106281 +-.010959 +.105762 +-.113848 +.041016 +.046130 +-.068707 +.000456 +.098425 +-.117616 +-.008775 +.221176 +-.348092 +.228974 +.137668 +-.548037 +.712013 +-.467290 +-.074795 +.580390 +-.721646 +.416488 +.107264 +-.479095 +.459457 +-.110372 +-.264229 +.355349 +-.075584 +-.393902 +.757984 +-.830186 +.648726 +-.408682 +.283199 +-.288134 +.296137 +-.175239 +-.075602 +.311584 +-.356840 +.146945 +.220344 +-.561148 +.734906 +-.718204 +.574584 +-.367912 +.109803 +.211818 +-.559520 +.810875 +-.811030 +.484168 +.082659 +-.655664 +.969815 +-.870723 +.394271 +.257575 +-.817769 +1.068000 +-.913830 +.406131 +.280805 +-.903285 +1.229369 +-1.132703 +.661846 +-.037720 +-.441318 +.549804 +-.256787 +-.260439 +.725634 +-.928663 +.839944 +-.604031 +.426815 +-.441184 +.640315 +-.908936 +1.113217 +-1.178927 +1.113101 +-.972244 +.814750 +-.672382 +.551461 +-.448903 +.363644 +-.294809 +.233045 +-.156614 +.037586 +.145532 +-.394718 +.683547 +-.955264 +1.132235 +-1.139180 +.934398 +-.533936 +.014415 +.506569 +-.901160 +1.060653 +-.921492 +.490254 +.138949 +-.793499 +1.273003 +-1.430300 +1.241780 +-.821405 +.363656 +-.046581 +-.046784 +-.055412 +.259256 +-.469469 +.624802 +-.688909 +.623216 +-.383297 +-.045655 +.601924 +-1.136876 +1.467359 +-1.467929 +1.145379 +-.644547 +.178803 +.074431 +-.055173 +-.159949 +.402769 +-.496072 +.336566 +.053120 +-.523674 +.855675 +-.857803 +.466980 +.201915 +-.893008 +1.323894 +-1.320798 +.900134 +-.251743 +-.362178 +.730578 +-.772204 +.539152 +-.163254 +-.210643 +.470726 +-.557845 +.470372 +-.261024 +.017749 +.177427 +-.295344 +.375038 +-.482529 +.634652 +-.752461 +.700330 +-.399431 +-.070241 +.476556 +-.571231 +.267155 +.279308 +-.755379 +.892096 +-.631499 +.139073 +.336781 +-.639397 +.777133 +-.853165 +.929179 +-.946791 +.772219 +-.323768 +-.324895 +.951452 +-1.303764 +1.252536 +-.876946 +.427420 +-.185916 +.306225 +-.725914 +1.200029 +-1.436893 +1.260586 +-.710043 +.019792 +.507303 +-.663700 +.444242 +-.035468 +-.303740 +.395580 +-.237275 +-.018212 +.176164 +-.133004 +-.056026 +.216142 +-.173800 +-.117718 +.531698 +-.837273 +.846203 +-.541724 +.099662 +.218153 +-.229181 +-.056664 +.450060 +-.708225 +.686473 +-.417394 +.073469 +.153670 +-.174155 +.042832 +.098255 +-.131120 +.042820 +.083685 +-.156037 +.159411 +-.166013 +.258545 +-.438290 +.606129 +-.640029 +.502680 +-.281759 +.123631 +-.116072 +.221514 +-.317101 +.303799 +-.187611 +.063426 +-.018188 +.040581 +-.018051 +-.171942 +.549983 +-.994126 +1.308184 +-1.352003 +1.138572 +-.825953 +.608630 +-.585364 +.698428 +-.787550 +.718657 +-.491643 +.244996 +-.151990 +.284663 +-.549047 +.742676 +-.694840 +.388972 +.019932 +-.304708 +.313748 +-.068994 +-.247671 +.408625 +-.283552 +-.074900 +.454322 +-.604058 +.388152 +.118180 +-.652112 +.905884 +-.714344 +.173531 +.394450 +-.625469 +.338823 +.341693 +-1.057163 +1.431910 +-1.294751 +.756023 +-.099350 +-.418413 +.707039 +-.832007 +.890874 +-.901517 +.802596 +-.555351 +.238318 +-.030072 +.076679 +-.351451 +.636589 +-.663423 +.316103 +.259895 +-.739395 +.840188 +-.523528 +.019944 +.341949 +-.374582 +.156532 +.047324 +-.000954 +-.324251 +.740539 +-.995968 +.953974 +-.661607 +.273946 +.077683 +-.356753 +.589510 +-.787517 +.914608 +-.930511 +.858891 +-.799055 +.853666 +-1.029034 +1.200426 +-1.188453 +.900590 +-.430049 +.025854 +.059648 +.255725 +-.814935 +1.313501 +-1.493158 +1.303496 +-.919710 +.608647 +-.543107 +.695185 +-.874860 +.873751 +-.607336 +.163056 +.263574 +-.489190 +.439378 +-.171692 +-.172429 +.445595 +-.555229 +.481295 +-.256892 +-.062043 +.413051 +-.726227 +.923501 +-.937182 +.743809 +-.387243 +-.032779 +.401427 +-.628441 +.663548 +-.494659 +.153745 +.265990 +-.613446 +.737022 +-.580497 +.245498 +.050748 +-.117825 +-.060398 +.291792 +-.298595 +-.079543 +.748288 +-1.392982 +1.670180 +-1.427162 +.798089 +-.113527 +-.308529 +.343392 +-.097740 +-.199709 +.359257 +-.331723 +.202919 +-.112502 +.162733 +-.364711 +.635531 +-.838933 +.853869 +-.642953 +.282486 +.073668 +-.283038 +.299272 +-.190205 +.073413 +-.018470 +-.007255 +.105797 +-.356443 +.739511 +-1.137341 +1.409750 +-1.481430 +1.372777 +-1.156479 +.885107 +-.554877 +.135456 +.365373 +-.863415 +1.224630 +-1.339762 +1.190450 +-.857639 +.468804 +-.125191 +-.140642 +.355603 +-.563127 +.782108 +-.991888 +1.143296 +-1.181264 +1.068084 +-.805162 +.450754 +-.122164 +-.033957 +-.095073 +.516643 +-1.098219 +1.604061 +-1.797154 +1.556860 +-.946394 +.189469 +.433771 +-.716821 +.616128 +-.256565 +-.144852 +.393526 +-.408256 +.243269 +-.036360 +-.079984 +.049985 +.088101 +-.238428 +.307587 +-.253331 +.102754 +.061120 +-.136173 +.050355 +.193945 +-.506057 +.744274 +-.796128 +.656097 +-.441401 +.321715 +-.403728 +.653989 +-.921206 +1.042765 +-.952975 +.711521 +-.439691 +.226724 +-.085403 +-.016107 +.089316 +-.094643 +-.025496 +.281498 +-.600547 +.854506 +-.933006 +.807919 +-.546108 +.268447 +-.087007 +.056011 +-.152742 +.287206 +-.336462 +.199831 +.139710 +-.583042 +.946564 +-1.058820 +.868562 +-.486660 +.121104 +.056821 +-.019125 +-.119288 +.204800 +-.167384 +.062857 +-.006286 +.059009 +-.167561 +.204004 +-.069935 +-.223008 +.556707 +-.781899 +.801582 +-.607977 +.267471 +.115533 +-.429995 +.584506 +-.538383 +.328144 +-.062170 +-.130804 +.174620 +-.089959 +-.023901 +.056722 +.042540 +-.236276 +.419647 +-.475093 +.332844 +-.013167 +-.369772 +.654121 +-.714234 +.538827 +-.249416 +.035613 +-.040606 +.270265 +-.587421 +.794617 +-.750205 +.444358 +.004097 +-.415638 +.633865 +-.581707 +.277128 +.178166 +-.623869 +.882019 +-.821080 +.429554 +.146053 +-.646657 +.830663 +-.619121 +.153556 +.290107 +-.483647 +.397192 +-.206090 +.148481 +-.343660 +.709429 +-1.034720 +1.141219 +-1.005413 +.755826 +-.563866 +.521791 +-.594988 +.666960 +-.628676 +.445327 +-.164076 +-.128098 +.359170 +-.502209 +.567025 +-.567699 +.496871 +-.329956 +.055757 +.294483 +-.646589 +.913245 +-1.030843 +.978306 +-.774466 +.468428 +-.134404 +-.135095 +.251061 +-.164339 +-.103811 +.460408 +-.773369 +.921066 +-.835658 +.526258 +-.077423 +-.377214 +.702404 +-.814237 +.711706 +-.467406 +.183776 +.053701 +-.197945 +.235022 +-.175080 +.056081 +.051144 +-.063573 +-.060649 +.270880 +-.427000 +.377518 +-.071520 +-.376663 +.728105 +-.752646 +.372800 +.274461 +-.898787 +1.201418 +-1.018468 +.388903 +.472440 +-1.265161 +1.709487 +-1.635288 +1.039585 +-.100591 +-.868154 +1.527544 +-1.655060 +1.251672 +-.546573 +-.117141 +.458271 +-.394197 +.057576 +.310511 +-.516244 +.514694 +-.398584 +.297365 +-.270121 +.272237 +-.213155 +.051909 +.149690 +-.260044 +.172884 +.107548 +-.455439 +.695937 +-.711024 +.508680 +-.214460 +-.002624 +.020986 +.174999 +-.493342 +.784862 +-.921326 +.864646 +-.687946 +.528747 +-.495422 +.588827 +-.701054 +.699504 +-.534452 +.282925 +-.091338 +.062216 +-.176874 +.313074 +-.337729 +.198918 +.046911 +-.277848 +.374654 +-.268445 +-.043464 +.496361 +-.960235 +1.259427 +-1.231738 +.818923 +-.135495 +-.549899 +.939113 +-.873340 +.435318 +.094084 +-.405406 +.344453 +.013313 +-.441217 +.725196 +-.790793 +.710502 +-.604987 +.528896 +-.432675 +.223361 +.133769 +-.561449 +.912855 +-1.078971 +1.073341 +-1.021156 +1.055408 +-1.201659 +1.346796 +-1.320827 +1.027257 +-.516772 +-.051739 +.523370 +-.833190 +.996815 +-1.028417 +.878976 +-.470696 +-.190148 +.927608 +-1.441224 +1.481895 +-1.035707 +.360059 +.179859 +-.363778 +.261403 +-.150418 +.271911 +-.624319 +.965195 +-1.014996 +.688894 +-.166246 +-.251118 +.367575 +-.225549 +.048556 +-.056041 +.298664 +-.629600 +.816696 +-.705632 +.324001 +.132301 +-.413164 +.358258 +.008817 +-.486144 +.796661 +-.736158 +.287008 +.367459 +-.941485 +1.206094 +-1.115068 +.817477 +-.544803 +.446000 +-.484788 +.475310 +-.232716 +-.271933 +.869352 +-1.294927 +1.359228 +-1.061369 +.571210 +-.108435 +-.184274 +.289121 +-.270324 +.194698 +-.081157 +-.093293 +.351150 +-.673821 +.990016 +-1.196846 +1.202375 +-.972274 +.559684 +-.096760 +-.260449 +.413096 +-.377906 +.276447 +-.252612 +.371605 +-.574932 +.727565 +-.720692 +.549166 +-.304795 +.096859 +.030665 +-.118741 +.238583 +-.412270 +.574873 +-.609485 +.431387 +-.062495 +-.356381 +.627204 +-.596818 +.241946 +.308261 +-.823214 +1.070435 +-.919951 +.408247 +.268555 +-.837419 +1.074826 +-.913985 +.472118 +.019841 +-.341252 +.385088 +-.188521 +-.108200 +.335178 +-.361719 +.145442 +.243489 +-.636053 +.829882 +-.693302 +.255401 +.283463 +-.646416 +.635430 +-.253215 +-.289200 +.688712 +-.718961 +.348041 +.261251 +-.855213 +1.221369 +-1.270481 +1.041009 +-.654267 +.264059 +-.017978 +.017936 +-.272690 +.668925 +-1.003619 +1.086354 +-.856473 +.427966 +-.017086 +-.202593 +.211200 +-.136615 +.140176 +-.285015 +.486600 +-.577034 +.430770 +-.061693 +-.371700 +.654013 +-.639421 +.342694 +.060129 +-.328069 +.298366 +.007991 +-.389398 +.583612 +-.434731 +.000926 +.471263 +-.693540 +.512498 +-.005912 +-.559354 +.879521 +-.783777 +.323941 +.263200 +-.693710 +.792224 +-.577686 +.235171 +.003154 +.005938 +-.242433 +.548224 +-.730400 +.678727 +-.429268 +.138300 +.017338 +.045078 +-.255872 +.431986 +-.395836 +.100899 +.320001 +-.623001 +.600398 +-.213639 +-.374657 +.891735 +-1.110949 +.974879 +-.610591 +.234094 +-.010962 +-.033785 +-.000230 +-.007512 +.088920 +-.158356 +.089015 +.166398 +-.511672 +.759206 +-.762720 +.526327 +-.203068 +-.016382 +.038064 +.076196 +-.160846 +.064281 +.249751 +-.675577 +1.021055 +-1.109691 +.876592 +-.410488 +-.082184 +.378830 +-.356878 +.059437 +.330480 +-.594446 +.600630 +-.370022 +.048323 +.195620 +-.277436 +.238528 +-.194977 +.233726 +-.336903 +.394829 +-.298574 +.038708 +.270084 +-.458429 +.411811 +-.139613 +-.238350 +.564376 +-.717464 +.649280 +-.382063 +-.008835 +.412929 +-.708025 +.796709 +-.648300 +.322183 +.047525 +-.305266 +.341416 +-.141230 +-.208804 +.561094 +-.776224 +.789297 +-.641141 +.456506 +-.376779 +.478318 +-.719011 +.946922 +-.975805 +.693990 +-.144442 +-.479730 +.934317 +-1.062379 +.881924 +-.559866 +.288213 +-.152559 +.089824 +.035344 +-.299424 +.639910 +-.888943 +.893008 +-.624671 +.203741 +.181566 +-.390453 +.402551 +-.310356 +.251354 +-.328379 +.558486 +-.865367 +1.113917 +-1.175211 +.997122 +-.642592 +.264237 +-.020594 +-.015855 +-.105112 +.258095 +-.338128 +.336194 +-.342504 +.480037 +-.816234 +1.307445 +-1.803231 +2.104235 +-2.047633 +1.588641 +-.844650 +.072478 +.429894 +-.464077 +.043470 +.597021 +-1.114689 +1.239866 +-.918724 +.332266 +.216549 +-.475328 +.370994 +-.026178 +-.334027 +.519961 +-.476067 +.287492 +-.102889 +.033531 +-.096400 +.228622 +-.344244 +.381127 +-.311835 +.136986 +.108539 +-.338838 +.427742 +-.274816 +-.104024 +.539289 +-.780981 +.653012 +-.183235 +-.393386 +.771891 +-.764070 +.406697 +.079335 +-.443455 +.561991 +-.492266 +.397890 +-.410417 +.531385 +-.640685 +.595316 +-.337932 +-.063881 +.466932 +-.742172 +.835413 +-.764851 +.577686 +-.315030 +.013044 +.276189 +-.483593 +.560036 +-.523805 +.466560 +-.492433 +.624769 +-.758216 +.711879 +-.363116 +-.231873 +.830281 +-1.131362 +.963329 +-.400870 +-.271562 +.729959 +-.803013 +.562152 +-.256326 +.140916 +-.315474 +.672203 +-.979433 +1.036732 +-.797344 +.383798 +.002316 +-.207199 +.204405 +-.085562 +-.015240 +.002898 +.141370 +-.373816 +.623884 +-.820934 +.904978 +-.836543 +.615723 +-.298500 +-.013353 +.215957 +-.256416 +.157435 +.004591 +-.148978 +.229732 +-.241772 +.203872 +-.143471 +.095540 +-.104308 +.209402 +-.415817 +.670248 +-.870160 +.911663 +-.752732 +.451383 +-.146804 +-.016561 +-.016998 +.164655 +-.244860 +.096085 +.298294 +-.770254 +1.053763 +-.949637 +.458912 +.207033 +-.746536 +.937265 +-.746837 +.324504 +.104938 +-.366607 +.404858 +-.271055 +.061537 +.139189 +-.277417 +.320251 +-.248510 +.070514 +.158356 +-.340593 +.377935 +-.226949 +-.070407 +.403597 +-.648005 +.724472 +-.631788 +.438498 +-.241913 +.118792 +-.095695 +.154186 +-.261074 +.394823 +-.543998 +.682316 +-.751746 +.682808 +-.446355 +.095467 +.245640 +-.448859 +.460420 +-.330632 +.171569 +-.076035 +.061513 +-.080153 +.079263 +-.055294 +.053449 +-.115299 +.224106 +-.301454 +.264584 +-.100674 +-.104813 +.216555 +-.145268 +-.078456 +.311158 +-.386531 +.227966 +.095721 +-.411087 +.546615 +-.429644 +.113042 +.270263 +-.578405 +.709581 +-.619470 +.327792 +.073869 +-.432761 +.590932 +-.476046 +.166989 +.132111 +-.213913 +.010165 +.351704 +-.627556 +.619377 +-.307084 +-.141282 +.480946 +-.540863 +.315199 +.050128 +-.350587 +.431184 +-.253010 +-.104528 +.494165 +-.773661 +.865802 +-.780138 +.591107 +-.390200 +.242069 +-.167240 +.152660 +-.174102 +.211753 +-.252424 +.283169 +-.285820 +.238437 +-.125588 +-.046403 +.238851 +-.388632 +.441300 +-.394590 +.318511 +-.322201 +.476839 +-.747746 +.996317 +-1.064284 +.883146 +-.524172 +.147249 +.110640 +-.219603 +.252575 +-.306628 +.419039 +-.540076 +.571678 +-.434934 +.120621 +.299406 +-.697758 +.941095 +-.947810 +.731651 +-.405222 +.129359 +-.027152 +.113144 +-.288419 +.410950 +-.393675 +.257891 +-.102201 +.014204 +.001729 +-.023275 +.141073 +-.381935 +.684530 +-.938636 +1.049170 +-.978252 +.749692 +-.432660 +.122973 +.079805 +-.111066 +-.012360 +.175426 +-.214817 +.024639 +.351353 +-.722674 +.869868 +-.701728 +.329801 +.008609 +-.129704 +.046773 +.038836 +.101573 +-.533596 +1.086792 +-1.456591 +1.406999 +-.928896 +.248098 +.311757 +-.510787 +.303039 +.177402 +-.723023 +1.172129 +-1.471016 +1.655668 +-1.779796 +1.843632 +-1.774267 +1.476101 +-.922792 +.225332 +.383944 +-.660394 +.489163 +.033450 +-.640828 +1.040646 +-1.072951 +.782319 +-.363960 +.028558 +.120458 +-.121835 +.096768 +-.150966 +.309066 +-.514247 +.675106 +-.719083 +.625207 +-.431903 +.223712 +-.095409 +.097543 +-.190384 +.248649 +-.135247 +-.194519 +.637811 +-.993915 +1.094175 +-.917141 +.598216 +-.325437 +.203697 +-.193654 +.168176 +-.034547 +-.179028 +.342140 +-.331112 +.142359 +.081614 +-.141648 +-.072380 +.487414 +-.881831 +1.032461 +-.867710 +.510128 +-.174393 +.002447 +.031503 +-.073553 +.248553 +-.548549 +.841196 +-.979889 +.913427 +-.707447 +.476738 +-.301328 +.194924 +-.130281 +.073987 +.006268 +-.148981 +.381789 +-.673255 +.900638 +-.892150 +.543751 +.068528 +-.682888 +.986172 +-.812199 +.263593 +.339294 +-.658734 +.555217 +-.170581 +-.177850 +.216910 +.100356 +-.571833 +.891247 +-.856113 +.496299 +-.041613 +-.238953 +.209062 +.068702 +-.405046 +.627290 +-.684894 +.651006 +-.639391 +.711724 +-.840072 +.935211 +-.907875 +.723792 +-.430082 +.143795 +.000379 +.070959 +-.306967 +.540606 +-.586216 +.373572 +-.018334 +-.240103 +.203437 +.136689 +-.583701 +.872881 +-.858485 +.608540 +-.338724 +.242425 +-.349973 +.518172 +-.545593 +.320198 +.104253 +-.543131 +.791782 +-.739940 +.429813 +-.033771 +-.235691 +.242571 +-.011614 +-.273720 +.373876 +-.145810 +-.351442 +.878681 +-1.163077 +1.071756 +-.687910 +.234605 +.091089 +-.243594 +.322090 +-.451624 +.660099 +-.851493 +.888099 +-.706005 +.371414 +-.042044 +-.130187 +.086408 +.111230 +-.318248 +.386918 +-.246399 +-.054639 +.367644 +-.522882 +.429545 +-.138975 +-.172865 +.300547 +-.127919 +-.301021 +.801666 +-1.145129 +1.172367 +-.863755 +.334924 +.225080 +-.632786 +.772117 +-.624873 +.270961 +.138955 +-.435858 +.498927 +-.310294 +-.032180 +.358127 +-.506507 +.404116 +-.098665 +-.270140 +.543253 +-.617479 +.484889 +-.221717 +-.060958 +.275487 +-.397493 +.470202 +-.570775 +.751102 +-.983525 +1.150029 +-1.097576 +.739213 +-.137185 +-.499795 +.920613 +-.976557 +.707855 +-.308777 +-.004555 +.128638 +-.115173 +.099670 +-.178022 +.327855 +-.431828 +.380081 +-.169570 +-.078955 +.201853 +-.111603 +-.137312 +.387750 +-.496123 +.435637 +-.306076 +.243539 +-.304729 +.421254 +-.461451 +.345919 +-.118089 +-.091344 +.175332 +-.140891 +.100308 +-.170025 +.364359 +-.575925 +.660284 +-.553324 +.323050 +-.113297 +.027172 +-.045267 +.043337 +.105999 +-.426046 +.802241 +-1.043495 +.995587 +-.633967 +.083962 +.436874 +-.718779 +.651933 +-.270830 +-.265792 +.747978 +-1.006573 +.980875 +-.729523 +.383336 +-.070290 +-.143425 +.266439 +-.349114 +.430517 +-.499327 +.493429 +-.342125 +.030046 +.356565 +-.642073 +.643894 +-.289850 +-.303284 +.857493 +-1.074596 +.816312 +-.205257 +-.435682 +.782445 +-.720594 +.417340 +-.195028 +.291918 +-.687579 +1.127240 +-1.326359 +1.192846 +-.888367 +.680799 +-.711420 +.869889 +-.880556 +.529623 +.148935 +-.872911 +1.290713 +-1.200831 +.660654 +.067593 +-.668030 +.912766 +-.730042 +.202769 +.470992 +-1.038887 +1.277325 +-1.084286 +.538520 +.123591 +-.620394 +.770615 +-.583209 +.231832 +.070019 +-.208612 +.229547 +-.279770 +.478183 +-.810649 +1.125792 +-1.233610 +1.035769 +-.596842 +.109826 +.217133 +-.276621 +.109527 +.136433 +-.300714 +.293787 +-.125772 +-.123726 +.363009 +-.534425 +.628962 +-.671294 +.691212 +-.698047 +.673169 +-.588345 +.443398 +-.295227 +.242773 +-.358583 +.607074 +-.822052 +.787756 +-.387541 +-.285357 +.950737 +-1.299556 +1.181631 +-.688953 +.078858 +.397416 +-.631955 +.674903 +-.641459 +.601533 +-.536276 +.377327 +-.080446 +-.327956 +.757623 +-1.099769 +1.277754 +-1.277676 +1.148342 +-.971239 +.812205 +-.679091 +.514632 +-.237767 +-.188251 +.709358 +-1.194673 +1.505891 +-1.571825 +1.415162 +-1.120409 +.779890 +-.464110 +.226322 +-.111320 +.139104 +-.272997 +.414696 +-.452966 +.339797 +-.131250 +-.048083 +.093943 +.005757 +-.172310 +.303263 +-.344354 +.308282 +-.236033 +.148187 +-.036067 +-.103042 +.230480 +-.277691 +.204288 +-.050875 +-.071486 +.060571 +.087594 +-.255423 +.274304 +-.041406 +-.401451 +.881122 +-1.185535 +1.172955 +-.836573 +.299588 +.245966 +-.623466 +.743076 +-.630417 +.399618 +-.185687 +.075236 +-.075065 +.130334 +-.169586 +.142059 +-.029298 +-.160829 +.401788 +-.651271 +.856324 +-.967716 +.959505 +-.840948 +.650654 +-.435366 +.227239 +-.035937 +-.137279 +.274394 +-.326946 +.233156 +.037321 +-.439574 +.845726 +-1.088336 +1.036237 +-.662454 +.067427 +.554349 +-.990428 +1.098043 +-.865629 +.417850 +.045322 +-.348822 +.426690 +-.337484 +.202073 +-.111186 +.072894 +-.035519 +-.042930 +.145829 +-.212521 +.197552 +-.114523 +.023381 +.022078 +-.012270 +-.029986 +.091094 +-.187178 +.336671 +-.514217 +.641662 +-.640315 +.505580 +-.333207 +.259597 +-.353302 +.543345 +-.651411 +.515365 +-.116259 +-.388856 +.760169 +-.830412 +.610591 +-.270801 +.015004 +.055895 +.002724 +-.036616 +-.090545 +.402545 +-.791654 +1.076772 +-1.100487 +.816368 +-.324469 +-.165107 +.428830 +-.339911 +-.069039 +.627275 +-1.115276 +1.364143 +-1.308932 +.983245 +-.484574 +-.053286 +.476169 +-.639129 +.466950 +-.019373 +-.499530 +.828633 +-.802914 +.473695 +-.096470 +-.028170 +-.236034 +.748747 +-1.166502 +1.160529 +-.632822 +-.214584 +.996857 +-1.364044 +1.178433 +-.557765 +-.211812 +.819548 +-1.052335 +.857797 +-.346509 +-.256951 +.704011 +-.828403 +.622307 +-.234577 +-.117553 +.273998 +-.214295 +.044184 +.098738 +-.147618 +.143079 +-.182284 +.325729 +-.536514 +.699504 +-.706693 +.543211 +-.306070 +.136300 +-.111634 +.181980 +-.203279 +.053290 +.254454 +-.549408 +.604445 +-.297296 +-.279335 +.844164 +-1.085618 +.856026 +-.273798 +-.339532 +.654416 +-.537835 +.133747 +.234713 +-.275700 +-.088588 +.685791 +-1.217468 +1.448088 +-1.329024 +.988082 +-.617064 +.353111 +-.231711 +.218636 +-.268301 +.353674 +-.455523 +.541077 +-.565890 +.503139 +-.373202 +.243597 +-.191662 +.251374 +-.380040 +.471999 +-.420711 +.196846 +.110468 +-.330328 +.316320 +-.056855 +-.295163 +.509958 +-.433876 +.097254 +.307242 +-.561884 +.571061 +-.405886 +.220426 +-.119334 +.090737 +-.053093 +-.039303 +.137362 +-.142389 +.013152 +.168763 +-.246027 +.116286 +.162717 +-.390334 +.361909 +-.026628 +-.460268 +.835625 +-.904382 +.662874 +-.283597 +-.016804 +.121241 +-.066615 +-.015243 +.010810 +.096142 +-.230761 +.302550 +-.286284 +.246477 +-.287633 +.469117 +-.751394 +1.016417 +-1.146902 +1.101271 +-.926765 +.707483 +-.498826 +.304824 +-.108550 +-.084854 +.240111 +-.325762 +.354759 +-.388823 +.496844 +-.696279 +.921844 +-1.048428 +.961854 +-.639030 +.185422 +.204597 +-.353379 +.210089 +.111083 +-.398417 +.474762 +-.302658 +-.011026 +.309239 +-.502394 +.619246 +-.754756 +.958113 +-1.151263 +1.149063 +-.779807 +.028717 +.900817 +-1.666389 +1.969604 +-1.727536 +1.117256 +-.462906 +.044948 +.038073 +.126008 +-.369364 +.562432 +-.657512 +.650943 +-.529555 +.269490 +.108539 +-.490770 +.696863 +-.586160 +.169476 +.368103 +-.767459 +.856026 +-.653670 +.346181 +-.146923 +.149930 +-.279590 +.366619 +-.287494 +.062425 +.157382 +-.200850 +.005574 +.327580 +-.593402 +.616474 +-.371346 +.008514 +.231986 +-.165213 +-.226076 +.778042 +-1.236325 +1.393596 +-1.193484 +.745937 +-.253148 +-.104683 +.257534 +-.262697 +.248397 +-.322210 +.498406 +-.685898 +.743496 +-.571335 +.183458 +.285568 +-.650234 +.782814 +-.695269 +.538410 +-.509803 +.719434 +-1.098687 +1.421457 +-1.439760 +1.054502 +-.402211 +-.215958 +.526628 +-.464956 +.209579 +-.041842 +.134642 +-.430657 +.699582 +-.724942 +.473802 +-.122022 +-.078702 +-.013001 +.326946 +-.634667 +.711810 +-.488877 +.086700 +.278542 +-.443550 +.392465 +-.240652 +.135055 +-.154334 +.279990 +-.445869 +.610629 +-.785249 +.994287 +-1.213689 +1.353356 +-1.312286 +1.064936 +-.700562 +.372979 +-.197160 +.177555 +-.226672 +.252741 +-.235918 +.228173 +-.283885 +.391255 +-.470872 +.444927 +-.314183 +.170791 +-.127954 +.220552 +-.360538 +.392099 +-.212093 +-.135411 +.468089 +-.579326 +.379220 +.037977 +-.447309 +.629079 +-.494192 +.120235 +.314058 +-.640989 +.786537 +-.778320 +.689663 +-.569550 +.409373 +-.166441 +-.175851 +.555494 +-.829906 +.838445 +-.501839 +-.102230 +.745722 +-1.153769 +1.153960 +-.778528 +.246889 +.168104 +-.304151 +.192580 +-.004410 +-.096767 +.082816 +-.072778 +.221261 +-.573001 +.999593 +-1.270464 +1.206395 +-.803227 +.238894 +.234703 +-.435843 +.339961 +-.067056 +-.205901 +.345257 +-.317360 +.180407 +-.027695 +-.077484 +.135143 +-.192635 +.295023 +-.440659 +.574402 +-.621523 +.536526 +-.333798 +.084114 +.118137 +-.200133 +.150587 +-.035446 +-.026518 +-.071023 +.345967 +-.692965 +.929423 +-.908444 +.629120 +-.262413 +.060483 +-.197977 +.646309 +-1.167360 +1.439948 +-1.247261 +.611127 +.212764 +-.879313 +1.149391 +-1.011008 +.650103 +-.298458 +.074633 +.064351 +-.231858 +.465132 +-.653808 +.612600 +-.246489 +-.326382 +.804920 +-.885718 +.473859 +.228636 +-.828922 +.982780 +-.611145 +-.050880 +.605771 +-.744351 +.429185 +.104521 +-.517642 +.581063 +-.295097 +-.144634 +.485885 +-.560701 +.350190 +.039881 +-.454903 +.768636 +-.926708 +.944180 +-.867173 +.727598 +-.525263 +.252549 +.059224 +-.316818 +.397323 +-.224087 +-.164266 +.605032 +-.879024 +.822335 +-.421149 +-.166050 +.677115 +-.875993 +.675765 +-.184871 +-.353725 +.695925 +-.721786 +.477233 +-.116310 +-.204443 +.401830 +-.469236 +.429134 +-.294363 +.078456 +.162222 +-.311209 +.241199 +.090569 +-.574435 +.975820 +-1.060487 +.741609 +-.147167 +-.444921 +.766693 +-.713423 +.393979 +-.051120 +-.092381 +-.036364 +.331708 +-.591581 +.651343 +-.482478 +.196855 +.037387 +-.104207 +-.002366 +.201090 +-.394847 +.526962 +-.584223 +.563279 +-.449183 +.234441 +.042771 +-.289870 +.403710 +-.337270 +.132089 +.114122 +-.318401 +.462470 +-.581692 +.707605 +-.818693 +.845124 +-.725646 +.467528 +-.156537 +-.095456 +.223887 +-.244917 +.220976 +-.190654 +.128238 +.026304 +-.289620 +.579606 +-.739299 +.633329 +-.249187 +-.273641 +.712892 +-.888722 +.764717 +-.462748 +.186312 +-.102299 +.250496 +-.527409 +.745594 +-.731482 +.412276 +.145742 +-.760911 +1.210672 +-1.324976 +1.056973 +-.497276 +-.173746 +.767882 +-1.159936 +1.313895 +-1.263170 +1.069538 +-.790897 +.472312 +-.155478 +-.108381 +.256454 +-.229424 +-.000014 +.399791 +-.871575 +1.277021 +-1.490535 +1.451825 +-1.187857 +.791478 +-.372654 +.013365 +.250462 +-.420184 +.515192 +-.557738 +.565219 +-.547339 +.508611 +-.458262 +.421036 +-.432952 +.513776 +-.631925 +.697400 +-.604880 +.308720 +.123076 +-.522831 +.705924 +-.572381 +.163480 +.361009 +-.808169 +1.048741 +-1.070885 +.964816 +-.852557 +.808014 +-.817766 +.806354 +-.705063 +.511636 +-.294329 +.137457 +-.072817 +.053779 +.005772 +-.159237 +.381431 +-.585784 +.688023 +-.662019 +.543858 +-.389851 +.235696 +-.098021 +.009503 +-.036456 +.237854 +-.587754 +.937077 +-1.076325 +.877560 +-.411156 +-.069112 +.285878 +-.137252 +-.214631 +.443416 +-.285372 +-.267228 +.948433 +-1.393140 +1.378762 +-.959481 +.399234 +.036147 +-.260619 +.383178 +-.556924 +.802041 +-.962912 +.841339 +-.391344 +-.197569 +.610376 +-.628235 +.286231 +.156256 +-.403702 +.322189 +-.001361 +-.348608 +.567904 +-.650657 +.713214 +-.870154 +1.125091 +-1.359958 +1.422596 +-1.238817 +.865507 +-.454411 +.162436 +-.072093 +.164276 +-.344429 +.497005 +-.540863 +.465341 +-.331991 +.236861 +-.249038 +.362699 +-.498767 +.559210 +-.496767 +.348572 +-.209160 +.164798 +-.237968 +.380287 +-.513824 +.587152 +-.606624 +.624238 +-.694464 +.829673 +-.980780 +1.053733 +-.954322 +.642640 +-.172412 +-.308711 +.610510 +-.592028 +.252470 +.234728 +-.582944 +.535599 +-.021142 +-.775870 +1.488157 +-1.760581 +1.458594 +-.759143 +.055695 +.273842 +-.095137 +-.402691 +.826547 +-.823736 +.301224 +.511106 +-1.187305 +1.345729 +-.865418 +-.041775 +.941819 +-1.410689 +1.260571 +-.636175 +-.072652 +.454062 +-.308955 +-.237317 +.813784 +-1.030914 +.721297 +-.044525 +-.613380 +.883208 +-.639987 +.066391 +.481951 +-.706958 +.535820 +-.126068 +-.269662 +.467260 +-.434922 +.264886 +-.081765 +-.036140 +.077380 +-.066639 +.022686 +.058823 +-.189438 +.358506 +-.518780 +.602609 +-.560784 +.397577 +-.175803 +-.015220 +.110838 +-.107388 +.058657 +-.033665 +.065365 +-.127877 +.158544 +-.108398 +-.017504 +.159870 +-.244414 +.231317 +-.139978 +.033500 +.024540 +-.011250 +-.042859 +.076231 +-.038967 +-.071337 +.202718 +-.275299 +.226681 +-.052398 +-.180039 +.353370 +-.355239 +.144752 +.203883 +-.516581 +.603649 +-.376314 +-.078317 +.526592 +-.718710 +.541360 +-.088493 +-.400453 +.691302 +-.689642 +.471042 +-.200795 +.014409 +.052660 +-.046657 +.020934 +.025923 +-.149129 +.398459 +-.750446 +1.088497 +-1.252870 +1.132662 +-.739329 +.209032 +.273971 +-.583972 +.715298 +-.752434 +.772880 +-.764392 +.631868 +-.295066 +-.203746 +.681475 +-.915940 +.798140 +-.416681 +.003714 +.222372 +-.202340 +.063039 +-.009302 +.164419 +-.479048 +.774305 +-.882347 +.774263 +-.576882 +.466637 +-.525841 +.675726 +-.740369 +.592672 +-.267939 +-.045462 +.136077 +.074513 +-.465263 +.790027 +-.841026 +.584181 +-.170208 +-.181835 +.336876 +-.317936 +.253169 +-.248532 +.293617 +-.274591 +.079739 +.289476 +-.689773 +.914506 +-.827232 +.460444 +-.011085 +-.271255 +.237615 +.062566 +-.406435 +.535248 +-.317450 +-.168054 +.679824 +-.956879 +.863194 +-.450584 +-.083497 +.505303 +-.656851 +.518360 +-.200403 +-.122621 +.302366 +-.284673 +.123525 +.062610 +-.161794 +.124274 +.025352 +-.215480 +.367426 +-.422696 +.352256 +-.159972 +-.111802 +.383169 +-.561359 +.589105 +-.487158 +.350360 +-.286917 +.338596 +-.443720 +.476464 +-.335979 +.019295 +.374663 +-.707772 +.882100 +-.881608 +.757003 +-.577311 +.389944 +-.214617 +.065433 +.027662 +-.023220 +-.100146 +.310252 +-.516700 +.607366 +-.507955 +.228002 +.135430 +-.440328 +.565785 +-.468488 +.203575 +.100292 +-.302073 +.320445 +-.180238 +.002541 +.065645 +.053970 +-.313861 +.566563 +-.663816 +.562093 +-.356503 +.215428 +-.261917 +.488225 +-.763945 +.926956 +-.887688 +.672415 +-.382421 +.109117 +.125333 +-.358693 +.624641 +-.893744 +1.075180 +-1.084080 +.921472 +-.696458 +.563163 +-.614576 +.815233 +-1.026816 +1.105411 +-.992582 +.732826 +-.417707 +.118784 +.131692 +-.311632 +.382990 +-.311536 +.116659 +.107049 +-.234410 +.192536 +-.012026 +-.199396 +.338221 +-.373125 +.348098 +-.329002 +.346807 +-.383342 +.400858 +-.379113 +.323867 +-.243830 +.125274 +.062296 +-.323947 +.593006 +-.728844 +.582914 +-.104707 +-.584518 +1.216931 +-1.507548 +1.315490 +-.731365 +.029987 +.481632 +-.621323 +.399278 +.028089 +-.466405 +.775882 +-.902310 +.853997 +-.663831 +.371369 +-.031344 +-.271378 +.429438 +-.356342 +.047530 +.385699 +-.747937 +.853937 +-.630304 +.154172 +.398995 +-.859478 +1.142235 +-1.252056 +1.231640 +-1.113014 +.917034 +-.689135 +.518250 +-.498480 +.649730 +-.862825 +.930356 +-.665342 +.036017 +.782427 +-1.491015 +1.840833 +-1.780168 +1.468972 +-1.149483 +.971350 +-.902516 +.787118 +-.494746 +.039634 +.417364 +-.672063 +.599945 +-.217063 +-.339335 +.873477 +-1.195418 +1.173971 +-.781720 +.121391 +.595188 +-1.127783 +1.314488 +-1.138241 +.709301 +-.183195 +-.318690 +.730242 +-1.008540 +1.101328 +-.960438 +.594195 +-.106070 +-.328144 +.543238 +-.476201 +.204644 +.095345 +-.249215 +.183929 +.030606 +-.225977 +.244296 +-.048531 +-.239236 +.407356 +-.296653 +-.078850 +.524366 +-.787216 +.729044 +-.420464 +.083475 +.076973 +-.021649 +-.110115 +.129885 +.036867 +-.287525 +.426589 +-.323771 +.017513 +.312782 +-.474368 +.385431 +-.108834 +-.212741 +.457314 +-.584643 +.627001 +-.633764 +.619726 +-.552945 +.384373 +-.095525 +-.267369 +.594329 +-.752670 +.653349 +-.310565 +-.143595 +.512131 +-.635859 +.487497 +-.190054 +-.063539 +.141687 +-.062994 +-.024921 +-.037312 +.298223 +-.662955 +.973060 +-1.128268 +1.147835 +-1.124617 +1.120492 +-1.102160 +.977752 +-.701736 +.351901 +-.104315 +.118970 +-.423522 +.882624 +-1.271131 +1.394421 +-1.176215 +.672444 +-.026327 +-.592005 +1.030974 +-1.187174 +1.030664 +-.623976 +.114023 +.319456 +-.543095 +.529525 +-.353910 +.130197 +.060945 +-.194632 +.264887 +-.237101 +.048667 +.332853 +-.847794 +1.344263 +-1.653698 +1.687765 +-1.482268 +1.158791 +-.841306 +.593724 +-.415319 +.278325 +-.164444 +.072348 +-.003857 +-.046195 +.084034 +-.106436 +.103999 +-.079248 +.059754 +-.085563 +.174413 +-.293826 +.369602 +-.332114 +.168336 +.060183 +-.248582 +.307763 +-.212019 +.008249 +.213255 +-.364732 +.400015 +-.330409 +.212573 +-.113070 +.067331 +-.057774 +.029587 +.063400 +-.215257 +.362130 +-.421280 +.346137 +-.155559 +-.082576 +.297092 +-.452841 +.558281 +-.642929 +.725291 +-.793595 +.810282 +-.737285 +.568569 +-.348450 +.157277 +-.063116 +.065333 +-.073890 +-.046167 +.379566 +-.875644 +1.341232 +-1.533204 +1.301937 +-.694241 +-.055699 +.646860 +-.871638 +.720189 +-.370317 +.072975 +-.003451 +.164834 +-.399162 +.497482 +-.339601 +-.026302 +.417054 +-.637844 +.611229 +-.422705 +.253759 +-.251362 +.425489 +-.643248 +.720463 +-.547414 +.165734 +.252271 +-.508277 +.500683 +-.288458 +.054022 +.014407 +.152100 +-.453308 +.682179 +-.661357 +.362371 +.074482 +-.431760 +.551157 +-.419421 +.153131 +.091587 +-.209887 +.180091 +-.034153 +-.187480 +.450709 +-.705757 +.864789 +-.820821 +.513496 +.001049 +-.538139 +.859677 +-.804086 +.392385 +.161727 +-.554153 +.552579 +-.129442 +-.508420 +1.014495 +-1.077463 +.589707 +.279192 +-1.148840 +1.607397 +-1.416089 +.633132 +.408417 +-1.258434 +1.563569 +-1.228260 +.442009 +.437130 +-1.074405 +1.314375 +-1.214294 +.949264 +-.668015 +.405847 +-.108823 +-.266110 +.666111 +-.943220 +.939822 +-.595209 +.000608 +.629025 +-1.048156 +1.090306 +-.744262 +.162182 +.407126 +-.732119 +.703900 +-.376827 +-.075707 +.458626 +-.644568 +.608054 +-.401785 +.108753 +.193205 +-.442859 +.596374 +-.632846 +.564301 +-.436019 +.307105 +-.219382 +.176429 +-.149117 +.102823 +-.023396 +-.079744 +.192081 +-.311817 +.444886 +-.580294 +.673806 +-.665235 +.522631 +-.274762 +-.002267 +.238094 +-.413328 +.552448 +-.668388 +.713679 +-.595149 +.254312 +.249442 +-.730829 +.971025 +-.854411 +.452334 +.010764 +-.290229 +.264890 +.001772 +-.316898 +.485730 +-.426270 +.204499 +.020436 +-.097491 +-.030766 +.301656 +-.569413 +.679699 +-.543262 +.179467 +.285062 +-.663363 +.787631 +-.592058 +.157200 +.318767 +-.619738 +.631880 +-.410339 +.145370 +-.044599 +.204128 +-.549071 +.879638 +-.992988 +.806220 +-.405189 +-.010333 +.250560 +-.247578 +.080670 +.097287 +-.172923 +.137877 +-.064027 +.022516 +-.023148 +.022285 +.020783 +-.100900 +.177502 +-.220208 +.236081 +-.247462 +.246089 +-.179289 +-.003613 +.279765 +-.528374 +.595092 +-.408208 +.052928 +.268211 +-.371170 +.221448 +.043105 +-.217024 +.177734 +.032735 +-.250745 +.317518 +-.191543 +-.027983 +.172206 +-.112843 +-.157020 +.513788 +-.767369 +.764866 +-.480425 +.038073 +.353242 +-.521052 +.431718 +-.203857 +.021297 +-.007412 +.150210 +-.327348 +.403570 +-.323691 +.137916 +.045878 +-.137366 +.114157 +-.025204 +-.040988 +.000811 +.183537 +-.475906 +.764144 +-.898078 +.763560 +-.357844 +-.185755 +.653894 +-.865635 +.771819 +-.474348 +.153952 +.040400 +-.064924 +-.021671 +.115485 +-.126077 +.003997 +.254475 +-.600359 +.923129 +-1.071800 +.927674 +-.497479 +-.049618 +.457183 +-.538419 +.305286 +.035092 +-.223517 +.127087 +.179970 +-.485885 +.596526 +-.455043 +.150646 +.164210 +-.369861 +.424913 +-.355159 +.219392 +-.082032 +-.003555 +.011186 +.042432 +-.096125 +.070114 +.085017 +-.341747 +.584321 +-.652112 +.425596 +.089691 +-.736393 +1.262860 +-1.440747 +1.177565 +-.561961 +-.177329 +.769992 +-1.011586 +.841318 +-.368708 +-.163176 +.477695 +-.397657 +-.055622 +.666597 +-1.148327 +1.313433 +-1.178117 +.924112 +-.747421 +.707736 +-.690157 +.503154 +-.035799 +-.640655 +1.295365 +-1.665498 +1.605415 +-1.166773 +.565687 +-.059026 +-.195864 +.212568 +-.134413 +.110240 +-.177406 +.239670 +-.157100 +-.123400 +.501422 +-.773703 +.762762 +-.426138 +-.127486 +.712711 +-1.166308 +1.403348 +-1.413216 +1.227366 +-.898489 +.498984 +-.115241 +-.182090 +.377020 +-.513925 +.645498 +-.753808 +.717807 +-.380856 +-.310392 +1.200485 +-1.957116 +2.249127 +-1.960484 +1.283387 +-.608281 +.274262 +-.350381 +.604016 +-.681714 +.374776 +.220982 +-.766615 +.918917 +-.575490 +-.047906 +.559476 +-.649948 +.288001 +.275193 +-.684190 +.710791 +-.382543 +-.069023 +.391064 +-.487003 +.463430 +-.519585 +.768514 +-1.127002 +1.356808 +-1.226886 +.680414 +.106787 +-.811284 +1.133419 +-.954206 +.395046 +.247255 +-.656347 +.665115 +-.346724 +-.030474 +.169051 +.065309 +-.549595 +.977531 +-1.060326 +.720299 +-.142517 +-.353960 +.535134 +-.406610 +.194645 +-.167269 +.423060 +-.799228 +.970545 +-.681648 +-.040534 +.844784 +-1.233550 +.867951 +.187146 +-1.445724 +2.246832 +-2.131616 +1.122880 +.272812 +-1.350519 +1.606061 +-1.002656 +-.051721 +.981671 +-1.381474 +1.198378 +-.674599 +.133061 +.219833 +-.349600 +.314615 +-.160234 +-.111494 +.486284 +-.873558 +1.117566 +-1.092538 +.806384 +-.419537 +.151200 +-.136361 +.338942 +-.583877 +.680378 +-.544216 +.235773 +.099188 +-.327935 +.393657 +-.311456 +.125929 +.118661 +-.372657 +.564247 +-.611634 +.472878 +-.194318 +-.094841 +.254086 +-.222994 +.063523 +.079269 +-.067430 +-.153228 +.532976 +-.948665 +1.250378 +-1.301481 +1.016125 +-.402629 +-.404223 +1.161861 +-1.612085 +1.613366 +-1.230808 +.710684 +-.339690 +.275584 +-.463159 +.692551 +-.753856 +.575308 +-.251613 +-.042693 +.176682 +-.129545 +-.034937 +.243414 +-.464023 +.694139 +-.911210 +1.047438 +-1.024512 +.824243 +-.530511 +.295083 +-.240788 +.370529 +-.551080 +.588172 +-.344241 +-.176496 +.825486 +-1.384326 +1.669060 +-1.609361 +1.270681 +-.818538 +.445729 +-.293671 +.398483 +-.683618 +1.002311 +-1.209534 +1.226287 +-1.063393 +.796158 +-.511162 +.262355 +-.062768 +-.089806 +.180023 +-.165641 +.002791 +.311697 +-.713897 +1.085552 +-1.302346 +1.289556 +-1.053885 +.678322 +-.288917 +.011543 +.067542 +.069690 +-.362780 +.689636 +-.912754 +.939208 +-.765080 +.478005 +-.212933 +.083093 +-.123422 +.278682 +-.442749 +.525209 +-.502364 +.420827 +-.355069 +.353090 +-.408551 +.471379 +-.479993 +.391225 +-.200679 +-.043361 +.238915 +-.262926 +.045054 +.353975 +-.729365 +.829175 +-.521138 +-.086375 +.677970 +-.922324 +.697117 +-.182525 +-.254642 +.309724 +.054835 +-.593012 +.953351 +-.921063 +.554579 +-.128860 +-.066498 +-.070033 +.388149 +-.602195 +.503231 +-.114006 +-.325896 +.534023 +-.389103 +.013269 +.326376 +-.417063 +.247109 +.006537 +-.128980 +.032299 +.190016 +-.348757 +.306073 +-.069129 +-.230956 +.442710 +-.493348 +.414133 +-.289514 +.184247 +-.107772 +.032593 +.064086 +-.179651 +.301629 +-.433479 +.592934 +-.774666 +.914444 +-.904846 +.672579 +-.263743 +-.142597 +.327321 +-.177882 +-.219683 +.620847 +-.773724 +.575219 +-.123170 +-.362109 +.679839 +-.753421 +.640252 +-.463233 +.325062 +-.259464 +.236322 +-.203513 +.132927 +-.041608 +-.022850 +.020167 +.050666 +-.150399 +.228521 +-.257050 +.241834 +-.206413 +.166086 +-.115324 +.037177 +.072959 +-.186116 +.239047 +-.164671 +-.055440 +.350786 +-.576634 +.595739 +-.381572 +.062277 +.145166 +-.077559 +-.257290 +.680381 +-.961428 +.967356 +-.728424 +.382382 +-.057361 +-.203949 +.425015 +-.619952 +.748414 +-.750345 +.624742 +-.465937 +.406262 +-.502096 +.660648 +-.679004 +.378794 +.258440 +-1.051134 +1.701040 +-1.945793 +1.690075 +-1.047852 +.281770 +.324963 +-.602287 +.569413 +-.412148 +.367039 +-.572077 +.975028 +-1.364366 +1.512281 +-1.337739 +.975698 +-.695880 +.718758 +-1.052493 +1.467794 +-1.637964 +1.357678 +-.693758 +-.038609 +.466169 +-.390510 +-.092248 +.664621 +-1.000445 +.968414 +-.689400 +.418994 +-.352068 +.494680 +-.688929 +.755161 +-.630643 +.397729 +-.192349 +.082185 +-.021197 +-.087111 +.282227 +-.495276 +.599855 +-.518292 +.289290 +-.039642 +-.111241 +.128867 +-.059807 +-.039718 +.168570 +-.374740 +.685415 +-1.042642 +1.310596 +-1.356882 +1.143973 +-.758747 +.359912 +-.086926 +-.004185 +-.057442 +.202744 +-.372201 +.534786 +-.674483 +.767840 +-.778645 +.677082 +-.467683 +.201163 +.043605 +-.199222 +.246396 +-.224693 +.209934 +-.271620 +.434019 +-.662215 +.879721 +-1.006552 +.996210 +-.852694 +.620963 +-.359892 +.114275 +.098643 +-.282278 +.439715 +-.555848 +.600055 +-.552424 +.433596 +-.307546 +.243892 +-.264324 +.320839 +-.335163 +.274223 +-.196186 +.215995 +-.405618 +.707086 +-.937515 +.898197 +-.515436 +-.089335 +.655366 +-.930565 +.815391 +-.412524 +-.042341 +.319634 +-.319008 +.108090 +.137104 +-.247857 +.163083 +.041942 +-.209416 +.196104 +.046275 +-.449580 +.868488 +-1.149898 +1.194992 +-.990359 +.604004 +-.154659 +-.231329 +.460748 +-.499327 +.376287 +-.166794 +-.041474 +.185706 +-.252439 +.273737 +-.296615 +.347204 +-.416968 +.478738 +-.510930 +.501467 +-.428618 +.249915 +.070592 +-.506513 +.938240 +-1.194882 +1.157835 +-.853019 +.452966 +-.174886 +.142469 +-.310842 +.508161 +-.562638 +.424305 +-.198112 +.068923 +-.170924 +.488624 +-.854286 +1.045098 +-.920586 +.515570 +-.030959 +-.273366 +.222438 +.174176 +-.721452 +1.139064 +-1.212982 +.918434 +-.441130 +.072091 +-.028840 +.314100 +-.713739 +.943679 +-.844397 +.480350 +-.074249 +-.164255 +.177965 +-.068958 +-.013138 +-.001985 +.062888 +-.057827 +-.080960 +.313963 +-.516101 +.564498 +-.430344 +.210041 +-.069537 +.133357 +-.392581 +.698503 +-.851523 +.726561 +-.350226 +-.118081 +.479221 +-.595566 +.442993 +-.101477 +-.292063 +.600320 +-.737016 +.703647 +-.593653 +.545825 +-.655730 +.894549 +-1.099569 +1.062424 +-.670394 +.006303 +.669550 +-1.054123 +.970152 +-.461904 +-.237376 +.835929 +-1.125082 +1.053485 +-.713131 +.271001 +.104535 +-.295732 +.265998 +-.072783 +-.145394 +.219271 +-.027722 +-.431924 +1.026250 +-1.538470 +1.766971 +-1.619166 +1.155167 +-.564012 +.085404 +.092191 +.081229 +-.481694 +.854095 +-.930881 +.580542 +.095594 +-.791317 +1.156270 +-1.006442 +.449654 +.168408 +-.475674 +.306652 +.198953 +-.695507 +.855284 +-.565231 +-.022423 +.598925 +-.883283 +.770186 +-.369247 +-.071388 +.308231 +-.235778 +-.061483 +.368377 +-.476210 +.312004 +.023444 +-.330400 +.441017 +-.313343 +.030060 +.282085 +-.541548 +.743979 +-.923880 +1.088619 +-1.185440 +1.131153 +-.883024 +.493819 +-.102888 +-.139579 +.166657 +-.039528 +-.094397 +.106410 +.018186 +-.165911 +.178479 +.022054 +-.358336 +.634107 +-.663330 +.403684 +.002487 +-.312818 +.340918 +-.079759 +-.287951 +.498773 +-.368368 +-.093372 +.678903 +-1.094211 +1.124716 +-.763510 +.224095 +.179172 +-.220236 +-.095020 +.528273 +-.759984 +.596115 +-.089770 +-.504680 +.904617 +-.967708 +.737913 +-.357498 +-.057339 +.463984 +-.837866 +1.095537 +-1.101900 +.782459 +-.243696 +-.229538 +.339401 +.004240 +-.586315 +1.012248 +-.982091 +.510465 +.079960 +-.391559 +.235828 +.245138 +-.702464 +.843798 +-.632777 +.287059 +-.098186 +.220544 +-.576485 +.921632 +-1.002648 +.698142 +-.070626 +-.675204 +1.286853 +-1.561816 +1.414891 +-.899953 +.185699 +.504468 +-.968781 +1.094455 +-.892540 +.485816 +-.052069 +-.255312 +.372988 +-.345967 +.287694 +-.305322 +.435309 +-.626411 +.775336 +-.787169 +.623672 +-.318958 +-.034364 +.316743 +-.422762 +.307242 +-.020994 +-.290964 +.447541 +-.328883 +-.043633 +.505133 +-.836266 +.888889 +-.662484 +.280432 +.107154 +-.412676 +.627484 +-.770785 +.834796 +-.784009 +.605300 +-.351871 +.129816 +-.031976 +.074806 +-.190121 +.275030 +-.256346 +.123954 +.078488 +-.284341 +.431769 +-.482368 +.437151 +-.347707 +.306735 +-.404804 +.666808 +-1.009383 +1.260992 +-1.250578 +.918881 +-.377494 +-.137589 +.404155 +-.359906 +.151791 +-.040829 +.216080 +-.646794 +1.085180 +-1.226707 +.918724 +-.269628 +-.414732 +.816538 +-.782364 +.382925 +.157495 +-.591709 +.755430 +-.608621 +.224892 +.243474 +-.613985 +.737329 +-.563663 +.176646 +.239131 +-.493110 +.492463 +-.286495 +.022656 +.151608 +-.170536 +.066260 +.075086 +-.171248 +.175869 +-.081511 +-.083037 +.248026 +-.306398 +.153336 +.239463 +-.762449 +1.184253 +-1.267316 +.924947 +-.309042 +-.253647 +.453887 +-.195141 +-.347549 +.847717 +-1.035442 +.842039 +-.390847 +-.128534 +.583093 +-.923975 +1.128337 +-1.144241 +.912932 +-.455290 +-.067935 +.404837 +-.363066 +-.041443 +.559511 +-.847008 +.682226 +-.112767 +-.571833 +1.020307 +-1.024581 +.613711 +.007427 +-.605810 +1.037871 +-1.266750 +1.300447 +-1.130662 +.736143 +-.143884 +-.517621 +1.038026 +-1.223166 +1.008775 +-.508128 +-.043026 +.408396 +-.462536 +.231723 +.142024 +-.477021 +.628524 +-.544544 +.291578 +-.035584 +-.033182 +-.189088 +.637275 +-1.093093 +1.310760 +-1.176072 +.781252 +-.350867 +.070827 +.045629 +-.145638 +.387953 +-.781500 +1.147716 +-1.243461 +.950230 +-.381670 +-.176625 +.453919 +-.373861 +.100219 +.082026 +.033247 +-.428356 +.868681 +-1.054392 +.814142 +-.215021 +-.475608 +.941459 +-.982002 +.598499 +.029240 +-.642208 +1.017842 +-1.051682 +.780644 +-.347716 +-.070355 +.338012 +-.405561 +.310920 +-.150161 +.037971 +-.069288 +.283535 +-.637382 +1.004636 +-1.220934 +1.164311 +-.829745 +.347418 +.076696 +-.270168 +.191096 +.046786 +-.240391 +.219254 +.050164 +-.444459 +.762422 +-.851666 +.698458 +-.422923 +.190226 +-.103353 +.147348 +-.211737 +.166306 +.058702 +-.428323 +.812377 +-1.043590 +.999593 +-.671249 +.179904 +.271962 +-.496752 +.415430 +-.097542 +-.275405 +.504134 +-.470959 +.190132 +.214318 +-.581635 +.788930 +-.787944 +.600445 +-.297339 +-.017671 +.225595 +-.229717 +.011259 +.334772 +-.628983 +.705414 +-.519549 +.183763 +.107338 +-.213636 +.143944 +-.031692 +.009852 +-.089957 +.150667 +-.050071 +-.233065 +.555384 +-.709635 +.592779 +-.301752 +.072046 +-.101396 +.394501 +-.748119 +.887491 +-.653858 +.111432 +.493840 +-.887473 +.926371 +-.665896 +.302044 +-.036964 +-.041816 +-.005847 +.039858 +.045331 +-.237960 +.412285 +-.413609 +.167500 +.257932 +-.677675 +.889142 +-.785011 +.410381 +.070939 +-.478943 +.720221 +-.821065 +.869635 +-.914685 +.905636 +-.731613 +.336602 +.183748 +-.597989 +.678638 +-.370645 +-.145374 +.558471 +-.634294 +.371793 +.007133 +-.224132 +.139031 +.169849 +-.485936 +.619967 +-.531310 +.323661 +-.136021 +.025507 +.064732 +-.233026 +.506867 +-.787893 +.906608 +-.750402 +.364705 +.057304 +-.295494 +.244611 +.029371 +-.353889 +.575752 +-.646875 +.614707 +-.547071 +.468738 +-.360297 +.204531 +-.024190 +-.127504 +.210368 +-.228556 +.216758 +-.193899 +.130439 +.031563 +-.311128 +.626885 +-.804300 +.671720 +-.194097 +-.453836 +.948615 +-.997515 +.527370 +.248255 +-.938463 +1.195737 +-.908000 +.246437 +.448048 +-.858360 +.849446 +-.512784 +.090140 +.170030 +-.144272 +-.112967 +.418452 +-.579713 +.513165 +-.289869 +.083549 +-.056774 +.258659 +-.596329 +.892808 +-.990520 +.836266 +-.501395 +.134161 +.119234 +-.176755 +.038685 +.231823 +-.540138 +.785052 +-.878967 +.772928 +-.481849 +.088205 +.291451 +-.562188 +.689066 +-.691096 +.605706 +-.466107 +.314314 +-.223030 +.278036 +-.509806 +.829223 +-1.043286 +.969433 +-.574360 +.023598 +.412211 +-.534571 +.347269 +-.043262 +-.137280 +.069019 +.191088 +-.466074 +.591087 +-.515886 +.313620 +-.105253 +-.036130 +.131916 +-.267596 +.511159 +-.840170 +1.130444 +-1.217969 +.997003 +-.491786 +-.144111 +.699996 +-1.007795 +1.013195 +-.786602 +.479543 +-.254504 +.217143 +-.370520 +.606484 +-.747227 +.633353 +-.222888 +-.358783 +.864750 +-1.056609 +.844215 +-.343144 +-.192282 +.519037 +-.541044 +.345922 +-.127449 +.053712 +-.169773 +.391690 +-.583525 +.655924 +-.618626 +.558200 +-.564605 +.662019 +-.790426 +.848578 +-.768654 +.571556 +-.361427 +.255258 +-.290262 +.377533 +-.348855 +.077633 +.409221 +-.918715 +1.201114 +-1.108827 +.688205 +-.136671 +-.337714 +.642604 +-.819763 +.955213 +-1.069079 +1.082286 +-.886371 +.454149 +.101106 +-.565404 +.735317 +-.528854 +.034509 +.520703 +-.866246 +.808711 +-.332179 +-.370410 +.966167 +-1.137439 +.751683 +.052058 +-.923155 +1.484494 +-1.538199 +1.165262 +-.652928 +.295716 +-.204890 +.260731 +-.241480 +.029265 +.270152 +-.393860 +.127700 +.508262 +-1.241637 +1.713018 +-1.701982 +1.252113 +-.619836 +.103133 +.120130 +-.047172 +-.205128 +.495726 +-.722254 +.830233 +-.797848 +.630962 +-.373304 +.107724 +.070946 +-.102628 +-.004818 +.182254 +-.341630 +.423218 +-.416193 +.346673 +-.252926 +.171421 +-.136670 +.177866 +-.299680 +.460977 +-.583281 +.600624 +-.518265 +.422347 +-.415731 +.523791 +-.653837 +.656004 +-.444167 +.076115 +.279400 +-.464825 +.444039 +-.311396 +.198717 +-.165708 +.166161 +-.111885 +-.027908 +.180509 +-.217531 +.059545 +.244319 +-.525209 +.591674 +-.352491 +-.115691 +.603000 +-.885178 +.855493 +-.588204 +.293237 +-.187634 +.361546 +-.720823 +1.042780 +-1.113169 +.860715 +-.404906 +-.015714 +.192059 +-.074266 +-.205049 +.432907 +-.473537 +.366404 +-.288747 +.407156 +-.732096 +1.091001 +-1.245222 +1.061726 +-.609491 +.112884 +.192195 +-.188330 +-.089332 +.510405 +-.930177 +1.234114 +-1.340466 +1.198134 +-.806959 +.247799 +.317405 +-.699704 +.770886 +-.532485 +.119582 +.264830 +-.446176 +.351496 +-.026791 +-.396450 +.757307 +-.917338 +.799326 +-.413659 +-.133962 +.668337 +-1.011035 +1.065315 +-.872529 +.597325 +-.440525 +.525635 +-.826210 +1.176385 +-1.358483 +1.218577 +-.750384 +.107807 +.457681 +-.705733 +.515022 +.055875 +-.783026 +1.366095 +-1.557772 +1.276913 +-.648693 +-.055447 +.552591 +-.687779 +.498954 +-.169983 +-.095569 +.197168 +-.177791 +.163010 +-.250724 +.435014 +-.617347 +.689976 +-.622373 +.481662 +-.371357 +.338000 +-.321754 +.195816 +.128799 +-.608886 +1.059044 +-1.242990 +1.013052 +-.409963 +-.339723 +.927701 +-1.110248 +.819012 +-.184017 +-.535498 +1.073064 +-1.269191 +1.124134 +-.769253 +.381995 +-.099347 +-.022646 +-.004681 +.137811 +-.320081 +.478484 +-.526965 +.402626 +-.122150 +-.191943 +.356634 +-.231789 +-.186102 +.748634 +-1.232379 +1.454263 +-1.349795 +.975162 +-.453869 +-.082979 +.529772 +-.816631 +.916387 +-.851970 +.688247 +-.497109 +.314746 +-.129721 +-.079346 +.285562 +-.394763 +.299883 +.024531 +-.467439 +.825277 +-.924193 +.730704 +-.365820 +.014560 +.194814 +-.250472 +.223792 +-.189987 +.177177 +-.177222 +.187396 +-.226926 +.307310 +-.390722 +.389818 +-.224937 +-.102678 +.486132 +-.764824 +.819733 +-.643179 +.335902 +-.039570 +-.143080 +.188888 +-.139365 +.053792 +.032502 +-.119550 +.222946 +-.341636 +.438913 +-.454787 +.347546 +-.136880 +-.089021 +.220228 +-.199669 +.068581 +.060081 +-.085691 +-.004451 +.130469 +-.189176 +.138107 +-.025225 +-.054878 +.036739 +.069661 +-.193447 +.261122 +-.254749 +.230458 +-.283670 +.478884 +-.786880 +1.075878 +-1.176260 +.986455 +-.549116 +.037664 +.344232 +-.480642 +.396438 +-.215206 +.066098 +-.013667 +.052090 +-.145703 +.265614 +-.391866 +.492630 +-.514739 +.406077 +-.156822 +-.173799 +.470696 +-.613586 +.536684 +-.262784 +-.106667 +.437721 +-.619905 +.605822 +-.421155 +.147123 +.115573 +-.289094 +.352288 +-.349460 +.364479 +-.468413 +.667381 +-.882788 +.981534 +-.847005 +.455252 +.088885 +-.585957 +.838650 +-.759978 +.425218 +-.028729 +-.230745 +.260993 +-.110018 +-.093468 +.240321 +-.304947 +.333556 +-.381160 +.458250 +-.528804 +.549733 +-.508346 +.425325 +-.329214 +.233537 +-.137041 +.039038 +.051250 +-.118987 +.151258 +-.137711 +.070842 +.042327 +-.163396 +.227656 +-.186962 +.065980 +.023890 +.053708 +-.354244 +.785318 +-1.143755 +1.242543 +-1.038094 +.662922 +-.339201 +.236843 +-.374401 +.621794 +-.787768 +.724853 +-.391035 +-.148638 +.758449 +-1.279089 +1.574120 +-1.576152 +1.322550 +-.953646 +.652389 +-.541426 +.597292 +-.649164 +.481659 +.014074 +-.741782 +1.429218 +-1.775328 +1.623473 +-1.047954 +.300041 +.346018 +-.742026 +.915049 +-.995453 +1.086962 +-1.175703 +1.140357 +-.849824 +.275928 +.454507 +-1.099203 +1.407711 +-1.240799 +.646338 +.145205 +-.811784 +1.084107 +-.875063 +.320108 +.300998 +-.717500 +.801180 +-.601292 +.275238 +.020302 +-.199831 +.250887 +-.196864 +.069618 +.088471 +-.214650 +.239646 +-.128791 +-.080938 +.285882 +-.369751 +.272655 +-.025780 +-.272758 +.520616 +-.664704 +.708225 +-.675452 +.571651 +-.375953 +.071642 +.316427 +-.712293 +1.016703 +-1.149698 +1.078381 +-.819244 +.427000 +.015230 +-.404888 +.641364 +-.662648 +.477477 +-.164596 +-.169225 +.445133 +-.639433 +.762133 +-.810571 +.745907 +-.521206 +.140994 +.301793 +-.654556 +.791684 +-.701027 +.503350 +-.380308 +.452125 +-.688029 +.916724 +-.937235 +.655989 +-.153593 +-.366085 +.704091 +-.776466 +.633680 +-.395300 +.168288 +-.012363 +-.043246 +-.023634 +.219811 +-.505631 +.782981 +-.927990 +.850000 +-.534929 +.048116 +.491673 +-.942135 +1.163739 +-1.056713 +.615905 +.023350 +-.598615 +.821083 +-.528005 +-.204795 +1.076629 +-1.712372 +1.863869 +-1.534354 +.948293 +-.396644 +.070549 +.009956 +.051557 +-.129417 +.145726 +-.074118 +-.090478 +.345058 +-.660350 +.963135 +-1.156568 +1.176442 +-1.038664 +.831059 +-.646189 +.504057 +-.330552 +.020033 +.456277 +-.980005 +1.322869 +-1.285157 +.844289 +-.198145 +-.345201 +.563565 +-.461618 +.251059 +-.185341 +.374240 +-.714669 +.979302 +-.984994 +.713786 +-.309683 +-.027164 +.161143 +-.078702 +-.134338 +.357156 +-.489438 +.476023 +-.310475 +.034154 +.268518 +-.493774 +.566855 +-.493279 +.371489 +-.340295 +.482165 +-.747257 +.962492 +-.934925 +.585772 +-.019681 +-.526607 +.826165 +-.797988 +.545953 +-.280393 +.181567 +-.296036 +.524732 +-.697871 +.683579 +-.465803 +.150313 +.102121 +-.177190 +.081857 +.058316 +-.084179 +-.081317 +.366255 +-.583433 +.548376 +-.206120 +-.316702 +.769649 +-.913612 +.655894 +-.110399 +-.451392 +.736328 +-.583743 +.054744 +.597578 +-1.066394 +1.160186 +-.900614 +.490028 +-.174624 +.099208 +-.249059 +.504781 +-.751853 +.952474 +-1.128614 +1.283658 +-1.342111 +1.170719 +-.675878 +-.093865 +.924094 +-1.522629 +1.674693 +-1.369683 +.815692 +-.325729 +.141126 +-.298709 +.622590 +-.842516 +.762031 +-.372153 +-.153822 +.570664 +-.702699 +.532121 +-.192189 +-.118926 +.246585 +-.149300 +-.101661 +.380460 +-.577454 +.639120 +-.563815 +.376454 +-.113877 +-.171263 +.409120 +-.535969 +.534240 +-.453434 +.382910 +-.388683 +.462289 +-.525200 +.488752 +-.324546 +.090728 +.106594 +-.187755 +.153382 +-.076769 +.041634 +-.075972 +.136175 +-.154785 +.109859 +-.055452 +.085023 +-.258778 +.556608 +-.894033 +1.182319 +-1.378178 +1.483731 +-1.507652 +1.434166 +-1.235324 +.916086 +-.545548 +.235548 +-.073993 +.061847 +-.105209 +.073782 +.112300 +-.423894 +.728394 +-.854870 +.682515 +-.208506 +-.435604 +1.027451 +-1.341259 +1.242641 +-.747060 +.013180 +.725559 +-1.256253 +1.463300 +-1.357124 +1.052624 +-.715128 +.496633 +-.481784 +.660782 +-.940713 +1.193526 +-1.317314 +1.276317 +-1.098058 +.837473 +-.542955 +.252498 +-.014190 +-.104152 +.044215 +.186918 +-.484916 +.684393 +-.655435 +.395508 +-.042920 +-.207720 +.230825 +-.042695 +-.230771 +.459323 +-.596627 +.681344 +-.761480 +.820073 +-.774928 +.553649 +-.175535 +-.233098 +.505774 +-.534803 +.335386 +-.040535 +-.162732 +.121920 +.203049 +-.703844 +1.154622 +-1.312127 +1.045641 +-.424329 +-.302181 +.832224 +-.976127 +.751293 +-.346280 +-.017211 +.224642 +-.314854 +.410938 +-.600398 +.859204 +-1.069851 +1.108120 +-.928285 +.590684 +-.223047 +-.051162 +.173186 +-.168452 +.119798 +-.111987 +.180414 +-.293579 +.378326 +-.369080 +.248748 +-.058555 +-.124154 +.224359 +-.204880 +.083748 +.074607 +-.193270 +.225328 +-.179254 +.107888 +-.067630 +.079218 +-.122616 +.169763 +-.223653 +.322022 +-.493652 +.702446 +-.837106 +.774210 +-.478121 +.056173 +.291584 +-.406807 +.292917 +-.119780 +.097388 +-.310675 +.646589 +-.875268 +.825035 +-.514849 +.141752 +.064279 +-.003946 +-.231151 +.438430 +-.454933 +.264703 +.007139 +-.194751 +.205384 +-.069376 +-.093814 +.155218 +-.045909 +-.215678 +.535432 +-.778534 +.819879 +-.606847 +.212862 +.163453 +-.287159 +.035901 +.488958 +-.990526 +1.156666 +-.878535 +.342858 +.086536 +-.121197 +-.251086 +.766481 +-1.081275 +1.011392 +-.640252 +.231271 +-.030378 +.111877 +-.365042 +.601354 +-.680665 +.567738 +-.306824 +-.033224 +.388015 +-.692291 +.872151 +-.862667 +.644392 +-.267494 +-.158598 +.503571 +-.660681 +.581934 +-.300050 +-.070078 +.364961 +-.445774 +.279954 +.027310 +-.291491 +.370141 +-.260744 +.094483 +-.025209 +.101623 +-.228392 +.247847 +-.072732 +-.240556 +.533596 +-.660692 +.581355 +-.366058 +.128594 +.049694 +-.150012 +.196620 +-.221436 +.243320 +-.266670 +.285373 +-.282772 +.230629 +-.095908 +-.142519 +.473570 +-.840301 +1.142658 +-1.263543 +1.116796 +-.700380 +.123607 +.420189 +-.736033 +.726242 +-.445342 +.069866 +.204458 +-.273707 +.170851 +-.015784 +-.088846 +.134870 +-.199037 +.357743 +-.598466 +.803442 +-.822428 +.580554 +-.141508 +-.318564 +.607667 +-.624644 +.415281 +-.149729 +.031618 +-.180971 +.550713 +-.931221 +1.057783 +-.771655 +.137319 +.571079 +-1.020757 +1.019141 +-.628477 +.117675 +.214267 +-.219098 +-.037622 +.361874 +-.586392 +.674304 +-.702249 +.756103 +-.838617 +.868318 +-.763137 +.528273 +-.267456 +.107170 +-.099511 +.184870 +-.241663 +.180259 +-.008361 +-.175543 +.250379 +-.154601 +-.067553 +.283285 +-.346202 +.190089 +.116388 +-.397225 +.471766 +-.268460 +-.129607 +.539825 +-.793550 +.826469 +-.690628 +.497700 +-.347126 +.285843 +-.307412 +.370612 +-.419677 +.404232 +-.301045 +.129298 +.056123 +-.196798 +.268606 +-.294525 +.318532 +-.358813 +.380552 +-.316210 +.123431 +.164690 +-.442603 +.595003 +-.575362 +.437575 +-.290052 +.204640 +-.154821 +.040215 +.213570 +-.558784 +.820145 +-.803057 +.444850 +.107250 +-.564641 +.678045 +-.406730 +-.047347 +.369024 +-.333884 +-.053878 +.577680 +-.955178 +1.006197 +-.734435 +.289889 +.136132 +-.401746 +.444668 +-.264676 +-.097416 +.559708 +-.994287 +1.252336 +-1.227789 +.923209 +-.462524 +.028386 +.238888 +-.310240 +.258554 +-.187730 +.162023 +-.186862 +.238630 +-.298160 +.351540 +-.368580 +.301924 +-.129620 +-.090624 +.218018 +-.104546 +-.293510 +.855752 +-1.345974 +1.542259 +-1.359842 +.886150 +-.315405 +-.161852 +.442400 +-.527883 +.486067 +-.392930 +.291060 +-.180969 +.042170 +.134715 +-.327086 +.485343 +-.560754 +.538136 +-.451028 +.367689 +-.353719 +.432690 +-.569162 +.687135 +-.714052 +.620650 +-.428502 +.182128 +.086192 +-.365709 +.643897 +-.879006 +1.003265 +-.960447 +.745487 +-.410220 +.032715 +.318269 +-.593480 +.749835 +-.742885 +.545399 +-.180662 +-.262096 +.651304 +-.865904 +.848042 +-.629332 +.319807 +-.062397 +-.034167 +-.042974 +.192163 +-.248021 +.085991 +.281918 +-.693665 +.930055 +-.859066 +.529534 +-.140888 +-.094087 +.094879 +.039947 +-.118167 +.006089 +.266353 +-.522890 +.565955 +-.319184 +-.110630 +.491804 +-.606418 +.380424 +.073628 +-.523472 +.748583 +-.656031 +.317462 +.082980 +-.347925 +.356646 +-.109619 +-.276678 +.615374 +-.724185 +.512593 +-.044088 +-.471796 +.774007 +-.688727 +.227208 +.423295 +-1.008394 +1.338657 +-1.360271 +1.135001 +-.769927 +.360506 +.021525 +-.313277 +.456450 +-.419257 +.224468 +.049374 +-.305352 +.482255 +-.586500 +.677589 +-.815188 +1.003804 +-1.173703 +1.215984 +-1.055300 +.715900 +-.332295 +.084695 +-.089697 +.317190 +-.597828 +.726132 +-.592034 +.246723 +.143843 +-.419623 +.528747 +-.538717 +.557008 +-.628918 +.691496 +-.617383 +.316869 +.174911 +-.690950 +1.018650 +-1.026733 +.745815 +-.343773 +.013121 +.144793 +-.152963 +.092960 +-.007937 +-.134406 +.385339 +-.719771 +.997998 +-1.034843 +.734241 +-.184413 +-.369209 +.664952 +-.583793 +.214839 +.216169 +-.500394 +.571678 +-.521361 +.503422 +-.607727 +.794176 +-.927829 +.879366 +-.613673 +.208587 +.196808 +-.476681 +.566176 +-.466342 +.226043 +.074819 +-.337088 +.464980 +-.406798 +.193085 +.063827 +-.226625 +.217996 +-.073852 +-.081247 +.125224 +-.028469 +-.129902 +.235319 +-.240180 +.205796 +-.241792 +.390886 +-.561949 +.581862 +-.337628 +-.102725 +.497172 +-.574745 +.218929 +.444507 +-1.118314 +1.508895 +-1.482789 +1.110293 +-.593489 +.149634 +.076200 +-.044643 +-.180519 +.453422 +-.590577 +.445300 +.011858 +-.657822 +1.262500 +-1.596631 +1.537779 +-1.115643 +.485560 +.137467 +-.547816 +.607431 +-.292603 +-.283622 +.901049 +-1.323075 +1.411365 +-1.194298 +.838838 +-.542550 +.420151 +-.459401 +.564745 +-.641099 +.648923 +-.597620 +.500290 +-.343776 +.106837 +.189861 +-.454876 +.558433 +-.414184 +.049138 +.398676 +-.759707 +.930961 +-.918920 +.803302 +-.665068 +.544573 +-.453675 +.406122 +-.415623 +.456343 +-.436555 +.238349 +.184850 +-.729508 +1.164168 +-1.260875 +.950626 +-.385938 +-.143688 +.387309 +-.274333 +-.073643 +.455681 +-.732507 +.890826 +-.998505 +1.107957 +-1.195138 +1.178665 +-.992472 +.648493 +-.244381 +-.082069 +.217894 +-.124500 +-.145714 +.467376 +-.688497 +.691779 +-.448516 +.038751 +.378841 +-.638774 +.648070 +-.429304 +.102275 +.185146 +-.334829 +.338614 +-.261235 +.184377 +-.151762 +.148229 +-.118152 +.005646 +.207340 +-.481173 +.721738 +-.806479 +.628745 +-.150902 +-.553756 +1.296575 +-1.825397 +1.925970 +-1.531240 +.776123 +.047639 +-.626879 +.781342 +-.544958 +.124380 +.233508 +-.375071 +.292406 +-.080558 +-.146320 +.310914 +-.374839 +.316153 +-.126433 +-.162715 +.457851 +-.627398 +.572220 +-.294721 +-.092070 +.432341 +-.626807 +.688640 +-.712332 +.780764 +-.886940 +.936997 +-.834600 +.578569 +-.289925 +.137866 +-.216204 +.466014 +-.710323 +.781202 +-.644097 +.420413 +-.286195 +.326385 +-.465937 +.539501 +-.442734 +.232733 +-.082209 +.120876 +-.303039 +.427638 +-.306571 +-.056470 +.434147 +-.531066 +.211589 +.379500 +-.900227 +1.038166 +-.712439 +.109444 +.458590 +-.754825 +.732766 +-.502036 +.200837 +.108487 +-.442090 +.811987 +-1.146390 +1.294570 +-1.124546 +.640622 +-.026106 +-.434680 +.514328 +-.180579 +-.375292 +.840281 +-.950388 +.630491 +-.027214 +-.575680 +.905368 +-.831160 +.415224 +.134602 +-.576449 +.749042 +-.633213 +.338861 +-.038285 +-.113513 +.038005 +.240080 +-.599232 +.864255 +-.884159 +.619377 +-.185870 +-.190743 +.302312 +-.089947 +-.315143 +.679028 +-.820297 +.717491 +-.491521 +.287413 +-.160998 +.064968 +.062773 +-.198649 +.222456 +-.017479 +-.399937 +.839535 +-1.038875 +.846182 +-.349567 +-.152623 +.333905 +-.055201 +-.534383 +1.083618 +-1.256876 +.939849 +-.301439 +-.320537 +.626825 +-.523245 +.152602 +.210077 +-.323136 +.110223 +.304693 +-.668883 +.742602 +-.440582 +-.105580 +.612528 +-.812383 +.620847 +-.188275 +-.208561 +.356801 +-.236543 +-.004283 +.193790 +-.269477 +.293410 +-.354750 +.462390 +-.527477 +.444009 +-.187961 +-.152634 +.435524 +-.555485 +.498176 +-.328409 +.138626 +-.001512 +-.049211 +.016099 +.070226 +-.158343 +.188549 +-.115575 +-.066932 +.316618 +-.556993 +.709989 +-.728102 +.610662 +-.401040 +.171106 +.000341 +-.052052 +-.034989 +.221019 +-.412276 +.495569 +-.395359 +.125885 +.196317 +-.399872 +.351305 +-.043563 +-.377786 +.677809 +-.656314 +.261364 +.375900 +-1.005172 +1.378988 +-1.363323 +.983984 +-.399353 +-.174532 +.550808 +-.640503 +.481981 +-.216366 +.011607 +.032234 +.057477 +-.145266 +.080473 +.193815 +-.590470 +.923352 +-1.018387 +.815647 +-.396030 +-.078113 +.459240 +-.678984 +.745183 +-.693206 +.545080 +-.311697 +.025138 +.244514 +-.416884 +.454676 +-.391473 +.300327 +-.224548 +.132836 +.052411 +-.366139 +.723056 +-.927504 +.786137 +-.255714 +-.482443 +1.090992 +-1.261358 +.901315 +-.199997 +-.479107 +.813111 +-.706073 +.329544 +.002521 +-.036018 +-.275903 +.766055 +-1.173703 +1.301118 +-1.109131 +.711551 +-.296669 +.032498 +.001902 +.156248 +-.370881 +.470047 +-.340289 +.007882 +.353880 +-.520110 +.368675 +.009904 +-.340116 +.331392 +.114064 +-.803257 +1.348740 +-1.410277 +.923021 +-.153809 +-.459001 +.577016 +-.164369 +-.506265 +1.034151 +-1.127109 +.744771 +-.080560 +-.574485 +.983379 +-1.048749 +.815239 +-.421942 +.043052 +.168540 +-.135186 +-.103935 +.393470 +-.527892 +.365802 +.071441 +-.588985 +.917964 +-.872055 +.462974 +.100467 +-.530404 +.620498 +-.350962 +-.120872 +.569773 +-.836731 +.902805 +-.860661 +.812064 +-.770636 +.644875 +-.317572 +-.237059 +.891196 +-1.412703 +1.600133 +-1.409538 +.980297 +-.538931 +.249416 +-.116896 +.010163 +.220817 +-.622364 +1.095891 +-1.457977 +1.549033 +-1.314193 +.814356 +-.181988 +-.433685 +.900868 +-1.121539 +1.049712 +-.716058 +.236502 +.222141 +-.515791 +.592827 +-.507192 +.360261 +-.214976 +.051753 +.194622 +-.544490 +.904486 +-1.085797 +.912280 +-.352592 +-.416130 +1.070256 +-1.306265 +1.018089 +-.372198 +-.278218 +.598606 +-.472410 +.064772 +.294717 +-.335634 +.027552 +.404286 +-.640845 +.499342 +-.071180 +-.333970 +.406831 +-.069323 +-.451610 +.770114 +-.609664 +.000265 +.740301 +-1.225533 +1.256199 +-.928970 +.533081 +-.328495 +.374588 +-.522148 +.552892 +-.351665 +-.008762 +.316371 +-.356792 +.047947 +.504045 +-1.050827 +1.320309 +-1.148884 +.566790 +.205723 +-.857529 +1.140306 +-.997089 +.586258 +-.178203 +-.013550 +-.046493 +.224940 +-.345186 +.327601 +-.236044 +.201701 +-.294285 +.448876 +-.507380 +.341842 +.035631 +-.460086 +.710794 +-.653325 +.330254 +.061979 +-.296011 +.255558 +-.002352 +-.274504 +.388939 +-.276486 +.023393 +.205188 +-.278140 +.171365 +.042040 +-.262822 +.435119 +-.562471 +.667744 +-.740733 +.726775 +-.572840 +.293855 +.003321 +-.173234 +.133182 +.064761 +-.255535 +.270813 +-.057896 +-.282568 +.568638 +-.662683 +.557523 +-.367435 +.243992 +-.284678 +.489864 +-.775822 +1.015228 +-1.079517 +.879131 +-.404199 +-.248220 +.890889 +-1.320860 +1.421043 +-1.224108 +.888925 +-.600702 +.464950 +-.468858 +.527933 +-.567520 +.569281 +-.554773 +.540055 +-.515767 +.471161 +-.427900 +.437309 +-.535838 +.701656 +-.860697 +.942222 +-.932604 +.873826 +-.805031 +.703584 +-.488332 +.094211 +.439682 +-.947887 +1.215837 +-1.112517 +.686655 +-.154061 +-.222283 +.284578 +-.069125 +-.220447 +.335064 +-.123089 +-.384683 +.989650 +-1.428488 +1.510692 +-1.218773 +.715599 +-.250416 +.015088 +-.037695 +.181996 +-.253172 +.138534 +.111836 +-.316803 +.284937 +.055405 +-.597670 +1.104413 +-1.331831 +1.161188 +-.664230 +.066221 +.373402 +-.495962 +.317521 +-.002484 +-.241340 +.277945 +-.101120 +-.187762 +.452662 +-.593224 +.575999 +-.424532 +.191162 +.067120 +-.299144 +.459383 +-.506131 +.407174 +-.157175 +-.200330 +.567234 +-.820487 +.873569 +-.733902 +.510042 +-.352345 +.361561 +-.528181 +.745812 +-.885920 +.878577 +-.744375 +.562230 +-.402387 +.273805 +-.122298 +-.117287 +.446623 +-.760046 +.874386 +-.632321 +.024013 +.757307 +-1.380488 +1.540703 +-1.129124 +.301385 +.601688 +-1.234203 +1.416065 +-1.194959 +.773503 +-.362923 +.065417 +.142891 +-.334653 +.533102 +-.675356 +.664954 +-.466777 +.162104 +.088425 +-.153076 +.029034 +.143489 +-.170311 +-.063102 +.505139 +-.958337 +1.192977 +-1.080083 +.662201 +-.125162 +-.304669 +.474798 +-.372487 +.114074 +.129690 +-.230077 +.168007 +-.037182 +-.019304 +-.096875 +.370934 +-.676045 +.847198 +-.783297 +.513436 +-.184044 +-.026392 +.012255 +.197720 +-.456843 +.580932 +-.445124 +.046787 +.491730 +-.975868 +1.221214 +-1.131326 +.739457 +-.194806 +-.302878 +.589894 +-.602570 +.387395 +-.060767 +-.249565 +.446298 +-.477093 +.335702 +-.064857 +-.243440 +.470530 +-.524732 +.401097 +-.200752 +.079366 +-.145744 +.377765 +-.623079 +.695621 +-.506376 +.134672 +.215157 +-.343666 +.180377 +.183244 +-.566325 +.814041 +-.871686 +.778162 +-.606257 +.408083 +-.201384 +-.012665 +.229709 +-.435685 +.604785 +-.692554 +.636425 +-.383858 +-.054402 +.566262 +-.962867 +1.070647 +-.835935 +.364556 +.138675 +-.490949 +.627249 +-.606987 +.538049 +-.485471 +.435414 +-.333500 +.155545 +.052412 +-.196532 +.200027 +-.059633 +-.147649 +.311572 +-.358753 +.301182 +-.230844 +.259471 +-.437855 +.707915 +-.925358 +.944427 +-.711626 +.306124 +.098986 +-.328892 +.296918 +-.044508 +-.284979 +.522747 +-.564194 +.426174 +-.236906 +.155899 +-.266327 +.508697 +-.707247 +.682259 +-.379566 +-.072028 +.425972 +-.475933 +.205283 +.182813 +-.395624 +.264486 +.113258 +-.427349 +.385357 +.044453 +-.574098 +.787631 +-.454140 +-.273669 +.933796 +-1.058236 +.491172 +.501076 +-1.397226 +1.742293 +-1.406051 +.624799 +.171521 +-.611708 +.555935 +-.109719 +-.487652 +1.004060 +-1.303082 +1.356718 +-1.209930 +.937256 +-.614114 +.303930 +-.052260 +-.116004 +.194703 +-.188092 +.101255 +.060981 +-.281140 +.512197 +-.678015 +.704511 +-.568918 +.329917 +-.106524 +.009304 +-.068349 +.211620 +-.313590 +.283465 +-.131584 +-.034163 +.082264 +.046988 +-.290369 +.492815 +-.502790 +.268858 +.127451 +-.523045 +.770487 +-.814580 +.701772 +-.527334 +.367641 +-.248357 +.165361 +-.130152 +.189768 +-.391103 +.709462 +-1.006099 +1.073994 +-.768386 +.137608 +.555467 +-.967222 +.888290 +-.391061 +-.203718 +.525379 +-.380785 +-.141657 +.748583 +-1.127452 +1.109015 +-.715813 +.102012 +.541420 +-1.048264 +1.296263 +-1.220684 +.848435 +-.326761 +-.109867 +.254459 +-.063846 +-.289910 +.514885 +-.392036 +-.068000 +.618102 +-.922849 +.757447 +-.130193 +-.732206 +1.504150 +-1.905905 +1.807979 +-1.268142 +.504078 +.187040 +-.543167 +.449231 +.006606 +-.573657 +.969147 +-1.029832 +.790748 +-.437843 +.169463 +-.069052 +.081355 +-.097848 +.067672 +-.034819 +.075083 +-.198977 +.316550 +-.301650 +.101778 +.202075 +-.440367 +.473790 +-.296224 +.043979 +.096195 +-.014602 +-.248070 +.530833 +-.661715 +.567526 +-.309271 +.025346 +.168398 +-.247450 +.272662 +-.325378 +.437899 +-.566858 +.619392 +-.508265 +.204601 +.234305 +-.673115 +.946558 +-.936278 +.641725 +-.197441 +-.188345 +.346992 +-.243256 +-.014664 +.255853 +-.358899 +.317113 +-.216530 +.152430 +-.151786 +.159735 +-.098077 +-.050287 +.198326 +-.193795 +-.078091 +.596606 +-1.183949 +1.583130 +-1.591499 +1.170108 +-.468068 +-.245319 +.699734 +-.737645 +.377119 +.199784 +-.730739 +.995533 +-.917695 +.587045 +-.187788 +-.120255 +.286584 +-.367733 +.453654 +-.590547 +.760750 +-.921576 +1.053316 +-1.166028 +1.261185 +-1.293497 +1.181175 +-.870750 +.408029 +.047563 +-.292625 +.197939 +.201121 +-.706589 +1.058165 +-1.072993 +.739293 +-.208410 +-.304565 +.643647 +-.780746 +.794420 +-.785953 +.798626 +-.795636 +.702982 +-.476148 +.139045 +.226608 +-.523394 +.677502 +-.655846 +.466908 +-.159307 +-.181089 +.446996 +-.545733 +.441473 +-.177060 +-.142508 +.397168 +-.502513 +.438674 +-.249187 +.017989 +.162874 +-.225270 +.150380 +.020695 +-.199525 +.287438 +-.224147 +.023744 +.224893 +-.399442 +.409430 +-.251283 +.019118 +.140911 +-.113113 +-.113868 +.428517 +-.651295 +.637412 +-.369328 +-.018338 +.301716 +-.288083 +-.071964 +.645829 +-1.179926 +1.430789 +-1.292784 +.847961 +-.308523 +-.110359 +.305599 +-.318582 +.273142 +-.271183 +.321757 +-.348259 +.260598 +-.035316 +-.254750 +.482252 +-.549461 +.455550 +-.297948 +.204380 +-.242800 +.374186 +-.482103 +.455740 +-.264590 +-.026467 +.304848 +-.479456 +.522664 +-.464891 +.357954 +-.240020 +.125911 +-.023135 +-.046278 +.042969 +.062867 +-.250952 +.432260 +-.481092 +.310923 +.052736 +-.459168 +.701251 +-.630903 +.249766 +.284500 +-.742283 +.945706 +-.857302 +.582518 +-.288825 +.096264 +-.011848 +-.048882 +.170221 +-.344369 +.453949 +-.350584 +-.024304 +.569359 +-1.063741 +1.294894 +-1.183303 +.818174 +-.389058 +.074410 +.033557 +.065856 +-.318445 +.645307 +-.948504 +1.114913 +-1.047402 +.719721 +-.214288 +-.297918 +.636589 +-.704264 +.531269 +-.245237 +-.009662 +.145346 +-.148150 +.043872 +.147000 +-.417170 +.736501 +-1.012993 +1.103474 +-.888910 +.369808 +.292172 +-.832615 +1.019451 +-.783363 +.259734 +.286203 +-.604919 +.590216 +-.316314 +-.028376 +.261622 +-.306038 +.211859 +-.101070 +.077722 +-.164674 +.303403 +-.408822 +.435140 +-.404223 +.376538 +-.387953 +.404378 +-.337568 +.120688 +.210606 +-.504850 +.581260 +-.368934 +-.006950 +.275660 +-.193340 +-.279541 +.931093 +-1.425749 +1.519884 +-1.212088 +.726626 +-.354479 +.273009 +-.464676 +.768287 +-1.002269 +1.065833 +-.964027 +.768833 +-.566122 +.425614 +-.393967 +.489050 +-.683952 +.896474 +-1.010036 +.930318 +-.646914 +.253523 +.096539 +-.275200 +.249076 +-.086886 +-.095883 +.210820 +-.236525 +.205609 +-.163015 +.136350 +-.135322 +.162988 +-.212576 +.250217 +-.213836 +.051924 +.217870 +-.486833 +.609214 +-.504051 +.222293 +.084742 +-.275135 +.311152 +-.257430 +.192823 +-.129057 +.020658 +.145459 +-.281256 +.239386 +.052017 +-.481569 +.788632 +-.736688 +.297539 +.303278 +-.723914 +.726668 +-.322278 +-.255524 +.708654 +-.843798 +.645435 +-.234654 +-.226038 +.608165 +-.842766 +.913368 +-.844719 +.694640 +-.536714 +.428234 +-.380791 +.359161 +-.314565 +.226396 +-.116181 +.020805 +.049374 +-.125598 +.249604 +-.421197 +.575597 +-.621064 +.515234 +-.317369 +.163422 +-.169681 +.334662 +-.520679 +.541238 +-.297650 +-.135794 +.545584 +-.713164 +.557646 +-.188907 +-.162600 +.290093 +-.135327 +-.179798 +.426153 +-.396104 +.016272 +.610451 +-1.248250 +1.633169 +-1.591231 +1.117291 +-.378335 +-.362571 +.865302 +-1.014075 +.849600 +-.521549 +.199691 +-.001012 +-.031990 +-.090175 +.332534 +-.644371 +.952737 +-1.166442 +1.206243 +-1.047232 +.739749 +-.385655 +.080170 +.141057 +-.310317 +.483873 +-.679192 +.845854 +-.899362 +.795755 +-.585239 +.392248 +-.327339 +.397645 +-.491211 +.454554 +-.205924 +-.202939 +.620543 +-.891181 +.935641 +-.765313 +.441097 +-.028491 +-.414214 +.824123 +-1.132602 +1.290552 +-1.297070 +1.197323 +-1.045051 +.865957 +-.660511 +.444695 +-.281283 +.255779 +-.403415 +.649778 +-.829551 +.787771 +-.494871 +.085384 +.218228 +-.251056 +.022196 +.279472 +-.397380 +.167740 +.372427 +-.996147 +1.407771 +-1.401387 +.965532 +-.282202 +-.369375 +.746059 +-.743260 +.423724 +.031535 +-.419358 +.608346 +-.585540 +.437178 +-.280693 +.191234 +-.164252 +.131245 +-.013836 +-.217684 +.514700 +-.767211 +.860363 +-.740554 +.450724 +-.108261 +-.166381 +.326910 +-.430559 +.594317 +-.902024 +1.323999 +-1.708554 +1.860003 +-1.659483 +1.151978 +-.539715 +.080562 +.049045 +.155289 +-.534002 +.860485 +-.965067 +.812732 +-.495437 +.154903 +.105612 +-.261181 +.336966 +-.347526 +.264675 +-.049418 +-.278508 +.603089 +-.758699 +.641823 +-.303337 +-.060817 +.227130 +-.089281 +-.275611 +.663378 +-.872338 +.809567 +-.511672 +.092971 +.319840 +-.623344 +.746855 +-.663119 +.408133 +-.086470 +-.163948 +.239741 +-.129802 +-.079634 +.257999 +-.305620 +.203979 +-.015513 +-.158556 +.232393 +-.173262 +.009367 +.187835 +-.335008 +.370687 +-.284346 +.131581 +-.021077 +.063371 +-.294861 +.621967 +-.838403 +.730602 +-.219929 +-.553297 +1.275927 +-1.626197 +1.459237 +-.893780 +.240848 +.182624 +-.236901 +.022771 +.213157 +-.263332 +.104942 +.097245 +-.132271 +-.078205 +.402450 +-.587301 +.450617 +-.032007 +-.413668 +.578619 +-.304434 +-.314657 +.989548 +-1.404650 +1.383516 +-.958936 +.327732 +.261913 +-.620784 +.678751 +-.485101 +.168959 +.113154 +-.225610 +.093902 +.263566 +-.723241 +1.084381 +-1.147781 +.820756 +-.188650 +-.505261 +.977272 +-1.054365 +.762380 +-.294073 +-.117239 +.329002 +-.341103 +.249367 +-.153978 +.097516 +-.069433 +.054219 +-.069264 +.155433 +-.330522 +.550239 +-.716573 +.735356 +-.583743 +.337300 +-.132339 +.083929 +-.211896 +.424145 +-.571830 +.544091 +-.342259 +.082012 +.082346 +-.063160 +-.098556 +.260362 +-.276163 +.094092 +.214030 +-.505738 +.656725 +-.622492 +.442615 +-.204311 +-.000561 +.106167 +-.092606 +-.003226 +.097525 +-.101162 +-.020607 +.210194 +-.337899 +.277417 +.010672 +-.444933 +.861910 +-1.101334 +1.085022 +-.848542 +.517701 +-.248794 +.158779 +-.270441 +.494937 +-.666570 +.624909 +-.308082 +-.196599 +.683639 +-.934034 +.837631 +-.460813 +.016706 +.248698 +-.190197 +-.160011 +.617315 +-.954224 +1.024423 +-.823256 +.453326 +-.034655 +-.361495 +.703170 +-.935647 +.948355 +-.632846 +.004570 +.721428 +-1.201245 +1.167268 +-.627219 +-.107802 +.614716 +-.643048 +.280630 +.127962 +-.249054 +.008154 +.367295 +-.534529 +.301197 +.230237 +-.736972 +.901261 +-.616543 +.036192 +.548925 +-.899324 +.950114 +-.804843 +.633439 +-.560874 +.612838 +-.728519 +.809629 +-.772418 +.587856 +-.304079 +.040282 +.059273 +.098305 +-.487140 +.953380 +-1.283324 +1.315564 +-1.027785 +.541551 +-.043106 +-.323345 +.516289 +-.576476 +.555041 +-.459314 +.265340 +.017453 +-.297900 +.431292 +-.318508 +-.000009 +.340936 +-.485557 +.329074 +.036595 +-.372261 +.444340 +-.178946 +-.287585 +.696419 +-.835074 +.675213 +-.386382 +.214779 +-.308327 +.609151 +-.890203 +.911055 +-.582708 +.025948 +.513746 +-.827462 +.865001 +-.738748 +.619756 +-.608698 +.671360 +-.674400 +.487965 +-.083428 +-.434484 +.877289 +-1.072590 +.956388 +-.606609 +.199273 +.087044 +-.162792 +.060973 +.104694 +-.223794 +.253234 +-.216855 +.148916 +-.038960 +-.164693 +.487724 +-.857564 +1.102052 +-1.044517 +.637546 +-.032880 +-.480106 +.639883 +-.374219 +-.153171 +.642553 +-.834707 +.647069 +-.189701 +-.329536 +.730349 +-.932136 +.945420 +-.819182 +.601000 +-.335160 +.077745 +.107050 +-.176877 +.138370 +-.036822 +-.089354 +.246455 +-.471293 +.767915 +-1.052526 +1.171226 +-.999509 +.556364 +-.036069 +-.288371 +.237944 +.144082 +-.608102 +.859356 +-.757286 +.414294 +-.121449 +.149795 +-.562897 +1.169774 +-1.649910 +1.762503 +-1.493328 +1.038383 +-.642845 +.421194 +-.294843 +.089354 +.294557 +-.777619 +1.148282 +-1.216303 +.949288 +-.489608 +.051110 +.214998 +-.286004 +.233309 +-.136791 +.025255 +.116095 +-.293876 +.469212 +-.574891 +.573439 +-.501804 +.455353 +-.515705 +.678069 +-.841222 +.875638 +-.720958 +.436844 +-.164514 +.026561 +-.042533 +.126226 +-.164618 +.110635 +-.010695 +-.056010 +.071157 +-.116198 +.312454 +-.703909 +1.179512 +-1.509101 +1.482840 +-1.063291 +.441336 +.053278 +-.141724 +-.228363 +.834871 +-1.300244 +1.311937 +-.808533 +.011515 +.719801 +-1.112818 +1.133803 +-.967955 +.851556 +-.885232 +.964867 +-.874878 +.467564 +.205825 +-.905618 +1.344665 +-1.360119 +1.002618 +-.492001 +.077307 +.105578 +-.093117 +.042857 +-.113379 +.353662 +-.668987 +.879295 +-.829333 +.481274 +.064489 +-.626980 +1.038705 +-1.216958 +1.175118 +-.980366 +.696705 +-.354250 +-.039903 +.465138 +-.857928 +1.116022 +-1.141427 +.900811 +-.465850 +.001191 +.304196 +-.329318 +.084117 +.295155 +-.615801 +.723393 +-.570867 +.231561 +.143212 +-.397532 +.440919 +-.283952 +.022600 +.219238 +-.354595 +.366419 +-.292550 +.183154 +-.069202 +-.036058 +.115422 +-.138282 +.080160 +.045308 +-.176353 +.233023 +-.169101 +.006524 +.175388 +-.290031 +.300166 +-.245305 +.223005 +-.331121 +.598234 +-.940347 +1.178987 +-1.129183 +.719318 +-.066503 +-.559616 +.883518 +-.794122 +.419051 +-.041725 +-.086864 +-.089958 +.410992 +-.621267 +.548320 +-.209021 +-.213581 +.490868 +-.480908 +.196557 +.213876 +-.547756 +.643859 +-.451088 +.046264 +.402909 +-.714105 +.773119 +-.583758 +.257166 +.055225 +-.245588 +.297816 +-.270576 +.232545 +-.202072 +.137661 +.016987 +-.273025 +.571311 +-.810890 +.908310 +-.843774 +.665047 +-.453961 +.285775 +-.209271 +.250931 +-.421560 +.703939 +-1.027743 +1.266476 +-1.285774 +1.028631 +-.575934 +.121820 +.135936 +-.116839 +-.100845 +.348667 +-.490096 +.501714 +-.461269 +.469734 +-.577123 +.759167 +-.938836 +1.019040 +-.910554 +.566164 +-.026898 +-.549026 +.922637 +-.888734 +.411001 +.320737 +-.971979 +1.248071 +-1.065634 +.596797 +-.156700 +.009514 +-.216490 +.615482 +-.933984 +.957532 +-.650303 +.162677 +.266998 +-.448632 +.333285 +-.017810 +-.326475 +.547885 +-.577657 +.437706 +-.204071 +-.042955 +.252956 +-.410270 +.515988 +-.565258 +.538511 +-.412646 +.183536 +.117002 +-.421891 +.648923 +-.731416 +.646470 +-.426615 +.146818 +.109841 +-.289821 +.386784 +-.428720 +.446704 +-.451031 +.431691 +-.376988 +.290383 +-.192949 +.116259 +-.095886 +.164990 +-.337186 +.579057 +-.796673 +.867969 +-.722102 +.415176 +-.131367 +.080243 +-.344986 +.792733 +-1.130355 +1.087093 +-.604686 +-.101521 +.661941 +-.776162 +.390617 +.286020 +-.930631 +1.306423 +-1.378163 +1.276013 +-1.155683 +1.072605 +-.963317 +.734283 +-.372559 +-.017235 +.278536 +-.315036 +.159587 +.050656 +-.169348 +.133005 +.012987 +-.164858 +.243654 +-.249845 +.253677 +-.332287 +.499008 +-.674102 +.718517 +-.514360 +.046786 +.561949 +-1.093468 +1.335119 +-1.189758 +.727753 +-.145514 +-.344551 +.620814 +-.686158 +.616567 +-.477110 +.277524 +.003408 +-.358458 +.720704 +-.993301 +1.115399 +-1.106153 +1.046279 +-1.008567 +.990049 +-.900876 +.627243 +-.131935 +-.476717 +.967952 +-1.109232 +.818219 +-.242515 +-.303146 +.518137 +-.301549 +-.184817 +.621517 +-.731380 +.439384 +.104743 +-.636020 +.928496 +-.898194 +.613628 +-.234970 +-.070215 +.195642 +-.130012 +-.051537 +.236255 +-.343800 +.378761 +-.426702 +.585254 +-.871304 +1.173425 +-1.296578 +1.081812 +-.523028 +-.203554 +.824824 +-1.117813 +1.023654 +-.660955 +.241902 +.045444 +-.117000 +.001506 +.206272 +-.407251 +.540273 +-.593641 +.593814 +-.585543 +.611625 +-.693969 +.817420 +-.925120 +.937715 +-.796906 +.511290 +-.169610 +-.097012 +.183415 +-.062371 +-.213996 +.553187 +-.860730 +1.049372 +-1.033931 +.749931 +-.207061 +-.465007 +1.040234 +-1.303276 +1.176573 +-.770460 +.309402 +.014722 +-.152223 +.189772 +-.246546 +.365763 +-.489980 +.531856 +-.470553 +.386117 +-.398423 +.559881 +-.792894 +.932490 +-.850146 +.563717 +-.239913 +.076379 +-.149876 +.352431 +-.472601 +.363721 +-.067391 +-.206684 +.233002 +.059609 +-.526327 +.898039 +-.957967 +.677329 +-.218636 +-.185707 +.384731 +-.382412 +.292101 +-.222350 +.190194 +-.125694 +-.046391 +.321521 +-.596305 +.727979 +-.625729 +.309420 +.098327 +-.433721 +.566027 +-.447938 +.126925 +.278175 +-.624441 +.801183 +-.775151 +.601524 +-.389798 +.240809 +-.194307 +.221705 +-.265164 +.287945 +-.294425 +.308034 +-.334552 +.349686 +-.324022 +.259920 +-.200090 +.194961 +-.256339 +.343278 +-.398200 +.402524 +-.397127 +.440290 +-.536103 +.602108 +-.520086 +.242417 +.131553 +-.384007 +.311322 +.124854 +-.738360 +1.204700 +-1.245055 +.789431 +-.011882 +-.781691 +1.330845 +-1.541960 +1.483528 +-1.285467 +1.038091 +-.767438 +.483781 +-.235200 +.105064 +-.155353 +.372368 +-.667062 +.929766 +-1.092509 +1.150777 +-1.135234 +1.064886 +-.924303 +.685043 +-.353579 +.003334 +.244876 +-.291050 +.126183 +.153835 +-.410285 +.557553 +-.617318 +.685892 +-.839461 +1.053479 +-1.201639 +1.137240 +-.798557 +.264239 +.277764 +-.627728 +.677961 +-.462700 +.127980 +.156164 +-.285464 +.260343 +-.158453 +.070534 +-.047951 +.090809 +-.168265 +.242903 +-.281432 +.258194 +-.165618 +.030408 +.083504 +-.100225 +-.025337 +.277804 +-.587349 +.865072 +-1.040422 +1.079147 +-.983424 +.788271 +-.558596 +.374794 +-.297242 +.324406 +-.380069 +.354637 +-.182820 +-.098403 +.362890 +-.479471 +.408539 +-.237357 +.124360 +-.192262 +.447783 +-.783586 +1.054573 +-1.168487 +1.127571 +-1.001127 +.859534 +-.722019 +.552317 +-.297987 +-.058217 +.469501 +-.835258 +1.043820 +-1.026599 +.797487 +-.455362 +.143013 +.022878 +-.013963 +-.094760 +.172554 +-.117351 +-.076837 +.315036 +-.462777 +.432851 +-.241372 +-.000477 +.151111 +-.120624 +-.075483 +.319769 +-.455392 +.378335 +-.109828 +-.200068 +.351949 +-.219669 +-.163219 +.617956 +-.934210 +1.006871 +-.898614 +.783857 +-.816639 +1.018033 +-1.258175 +1.338084 +-1.112093 +.577427 +.111844 +-.705450 +.962671 +-.761101 +.165082 +.583272 +-1.161244 +1.316595 +-.998055 +.386859 +.199550 +-.483870 +.382335 +-.040876 +-.267587 +.317149 +-.061148 +-.359084 +.723807 +-.877817 +.806199 +-.601393 +.363817 +-.123575 +-.157087 +.512381 +-.899371 +1.186453 +-1.217933 +.912196 +-.329452 +-.335359 +.834987 +-.986642 +.760213 +-.288098 +-.209775 +.540818 +-.623666 +.495607 +-.254942 +-.005631 +.225658 +-.362270 +.374955 +-.244322 +.012061 +.208352 +-.285740 +.165674 +.070606 +-.246896 +.221663 +-.015511 +-.170669 +.082691 +.389690 +-1.087901 +1.640834 +-1.690155 +1.143853 +-.276306 +-.418878 +.547512 +-.093639 +-.546707 +.822171 +-.408455 +-.551393 +1.525550 +-1.940613 +1.553560 +-.592079 +-.417948 +.996502 +-.981269 +.564635 +-.114696 +-.064849 +-.120815 +.563577 +-1.054639 +1.393047 +-1.449146 +1.187890 +-.677046 +.081475 +.380740 +-.531987 +.341189 +.034564 +-.325467 +.312314 +.031284 +-.524592 +.908095 +-1.016557 +.864846 +-.591939 +.328618 +-.111349 +-.090790 +.281902 +-.386221 +.300843 +-.009985 +-.352387 +.568277 +-.493312 +.180592 +.139125 +-.218660 +-.020882 +.422422 +-.694452 +.606281 +-.136942 +-.519514 +1.079743 +-1.328735 +1.207486 +-.798238 +.250158 +.288669 +-.702574 +.918339 +-.920989 +.773065 +-.605503 +.557652 +-.690965 +.939477 +-1.146080 +1.169742 +-.987355 +.711158 +-.505601 +.466858 +-.557583 +.645578 +-.612519 +.446370 +-.246849 +.144035 +-.195847 +.341922 +-.443705 +.375631 +-.101445 +-.308565 +.716055 +-.974095 +.978071 +-.701111 +.215800 +.309483 +-.662150 +.684295 +-.372034 +-.098560 +.458125 +-.501994 +.216319 +.216527 +-.537471 +.570799 +-.317995 +-.066810 +.388081 +-.525144 +.482377 +-.355957 +.254291 +-.232052 +.278382 +-.354789 +.440990 +-.545587 +.675183 +-.796644 +.836325 +-.726135 +.460959 +-.117908 +-.182364 +.345162 +-.351853 +.258638 +-.150920 +.088211 +-.073995 +.063300 +.001467 +-.147730 +.344903 +-.507791 +.535790 +-.373030 +.055033 +.294567 +-.526398 +.553100 +-.403120 +.200810 +-.086093 +.132000 +-.315840 +.554570 +-.767256 +.915511 +-.999992 +1.028453 +-.987367 +.841759 +-.564340 +.174549 +.242594 +-.560337 +.672850 +-.560552 +.310967 +-.072886 +-.029028 +-.039761 +.222677 +-.430046 +.605625 +-.749612 +.886183 +-1.010749 +1.066093 +-.970491 +.678605 +-.231281 +-.239948 +.558132 +-.573520 +.232539 +.381670 +-1.056290 +1.514802 +-1.533022 +1.060078 +-.271408 +-.500477 +.938952 +-.920482 +.577490 +-.200152 +.044802 +-.180481 +.470688 +-.684280 +.646067 +-.330069 +-.143230 +.579716 +-.803037 +.724138 +-.370600 +-.127505 +.588377 +-.846131 +.808992 +-.486892 +-.015394 +.531719 +-.886338 +.957461 +-.734843 +.338402 +.030941 +-.196734 +.107187 +.143384 +-.393827 +.536732 +-.582476 +.613699 +-.674346 +.697799 +-.548388 +.148516 +.416953 +-.916315 +1.106776 +-.890642 +.374752 +.207374 +-.645373 +.860789 +-.906498 +.880702 +-.841744 +.790921 +-.718797 +.651295 +-.641030 +.710627 +-.809161 +.833977 +-.709435 +.456062 +-.186842 +.027351 +-.021108 +.094353 +-.107757 +-.043305 +.350444 +-.687231 +.878687 +-.801949 +.460473 +.008551 +-.398164 +.535167 +-.369960 +.003359 +.367879 +-.560608 +.508703 +-.296999 +.101010 +-.067111 +.211031 +-.404932 +.465585 +-.284612 +-.088518 +.466545 +-.631010 +.452155 +.050480 +-.730972 +1.393482 +-1.870316 +2.066618 +-1.965559 +1.608115 +-1.064916 +.413233 +.272483 +-.915999 +1.429644 +-1.717474 +1.702450 +-1.368786 +.790852 +-.120402 +-.470020 +.857836 +-1.013538 +.993128 +-.891396 +.788575 +-.719414 +.672835 +-.613392 +.511586 +-.371337 +.242104 +-.201970 +.308732 +-.541390 +.776028 +-.832013 +.579239 +-.042769 +-.574673 +.987104 +-.988544 +.579582 +.031774 +-.558441 +.803776 +-.755978 +.550454 +-.342283 +.193600 +-.058810 +-.134597 +.389112 +-.610665 +.674039 +-.522762 +.218960 +.096599 +-.298768 +.349216 +-.291900 +.186804 +-.047053 +-.160955 +.453958 +-.764460 +.941387 +-.837083 +.422329 +.163283 +-.676942 +.914399 +-.824985 +.515767 +-.148971 +-.178668 +.479140 +-.813185 +1.188906 +-1.510651 +1.623995 +-1.424104 +.946776 +-.375503 +-.044504 +.135895 +.112505 +-.536356 +.885044 +-.964766 +.754839 +-.423742 +.225715 +-.334012 +.716317 +-1.140262 +1.314506 +-1.077305 +.505595 +.131476 +-.543971 +.600088 +-.392373 +.153983 +-.093656 +.268015 +-.569973 +.821581 +-.891145 +.756646 +-.493956 +.222744 +-.053654 +.053588 +-.224042 +.490782 +-.719864 +.772815 +-.585135 +.222593 +.130863 +-.260899 +.045021 +.460351 +-1.024283 +1.345607 +-1.208848 +.607512 +.238296 +-.988055 +1.356045 +-1.257504 +.842984 +-.404166 +.209116 +-.360342 +.750047 +-1.128197 +1.238915 +-.948636 +.301367 +.519666 +-1.290069 +1.839641 +-2.094441 +2.061024 +-1.788806 +1.351222 +-.852059 +.427235 +-.208753 +.255065 +-.495253 +.741886 +-.785213 +.519356 +-.017218 +-.503014 +.804965 +-.772868 +.469960 +-.081003 +-.212436 +.331941 +-.313098 +.238352 +-.160623 +.080753 +.015067 +-.105879 +.128155 +-.019954 +-.220244 +.511457 +-.725676 +.757212 +-.578774 +.249719 +.121392 +-.428657 +.602746 +-.617911 +.486129 +-.255064 +.008014 +.151430 +-.139458 +-.058809 +.365173 +-.634411 +.724138 +-.572074 +.236160 +.128013 +-.344995 +.312395 +-.056610 +-.283693 +.538383 +-.600266 +.472625 +-.243983 +.016933 +.153207 +-.269902 +.360073 +-.428275 +.437789 +-.331589 +.078146 +.288812 +-.665342 +.917019 +-.945402 +.741445 +-.389714 +.018984 +.266593 +-.429170 +.488326 +-.478237 +.409779 +-.265513 +.026636 +.291443 +-.621204 +.856962 +-.898674 +.708139 +-.347976 +-.025372 +.224446 +-.126129 +-.250641 +.733583 +-1.068125 +1.040213 +-.588553 +-.154471 +.917776 +-1.416137 +1.479737 +-1.122260 +.516482 +.101479 +-.542356 +.732572 +-.716418 +.603405 +-.495390 +.431503 +-.377760 +.266352 +-.060370 +-.200253 +.408756 +-.456363 +.306485 +-.022740 +-.268587 +.448358 +-.453457 +.280727 +.032678 +-.416658 +.758786 +-.911907 +.750500 +-.260068 +-.406226 +.967612 +-1.153641 +.862208 +-.230314 +-.439503 +.857064 +-.910453 +.709656 +-.483864 +.411424 +-.505878 +.633031 +-.633260 +.449169 +-.163080 +-.075142 +.167299 +-.139808 +.116667 +-.215043 +.444188 +-.687540 +.787267 +-.669294 +.408914 +-.177452 +.105466 +-.174461 +.232705 +-.129618 +-.143212 +.430058 +-.536043 +.398235 +-.155963 +.052481 +-.240274 +.644339 +-.993545 +1.001190 +-.563541 +-.162062 +.846426 +-1.177029 +1.023094 +-.486436 +-.170994 +.663899 +-.807478 +.577713 +-.097864 +-.429286 +.810547 +-.937003 +.813915 +-.534341 +.214623 +.066860 +-.289242 +.462587 +-.587552 +.642270 +-.608016 +.505204 +-.399392 +.364458 +-.430746 +.560456 +-.668388 +.668463 +-.510849 +.191827 +.252860 +-.750434 +1.186540 +-1.415320 +1.306998 +-.825527 +.089259 +.643576 +-1.084935 +1.073836 +-.680358 +.174555 +.136632 +-.101731 +-.189371 +.490248 +-.588640 +.454101 +-.229465 +.084448 +-.065213 +.072885 +.013955 +-.187640 +.274585 +-.059458 +-.520888 +1.270049 +-1.808709 +1.799288 +-1.173744 +.209686 +.606093 +-.851994 +.418064 +.428454 +-1.200804 +1.476551 +-1.133168 +.396107 +.318517 +-.658830 +.531582 +-.127150 +-.222645 +.253299 +.087476 +-.636005 +1.132289 +-1.372566 +1.299881 +-.996973 +.615157 +-.301415 +.159914 +-.240641 +.532121 +-.954027 +1.369126 +-1.630051 +1.644018 +-1.414065 +1.026590 +-.595656 +.208159 +.091770 +-.280304 +.330513 +-.222501 +-.018041 +.297182 +-.485974 +.500456 +-.367319 +.212578 +-.169970 +.277652 +-.448996 +.545998 +-.496969 +.360917 +-.284025 +.382570 +-.645280 +.930800 +-1.059852 +.931894 +-.583701 +.155680 +.200775 +-.405788 +.471874 +-.464086 +.443956 +-.443535 +.478586 +-.569672 +.734748 +-.952158 +1.133597 +-1.150160 +.911472 +-.444653 +-.093040 +.489608 +-.596034 +.407558 +-.057168 +-.266004 +.413689 +-.334739 +.075347 +.255103 +-.526789 +.631785 +-.526643 +.262383 +.026347 +-.189061 +.157248 +-.005484 +-.082757 +-.059907 +.448802 +-.903613 +1.145066 +-.979403 +.446656 +.176719 +-.534252 +.407981 +.145967 +-.836716 +1.326961 +-1.441978 +1.257555 +-1.012310 +.914938 +-.989727 +1.070155 +-.939322 +.509583 +.088923 +-.572113 +.674233 +-.318144 +-.320192 +.890200 +-1.046461 +.634730 +.215000 +-1.141976 +1.732523 +-1.731277 +1.172448 +-.359149 +-.297463 +.490883 +-.169330 +-.454405 +1.033901 +-1.285968 +1.143406 +-.777390 +.478511 +-.470631 +.774999 +-1.210398 +1.523136 +-1.551888 +1.312730 +-.953485 +.626262 +-.383965 +.177322 +.057840 +-.306595 +.459564 +-.393720 +.087521 +.322296 +-.595355 +.528190 +-.092977 +-.519907 +.994034 +-1.068349 +.700193 +-.104211 +-.366484 +.428222 +-.033675 +-.607816 +1.164332 +-1.377105 +1.192927 +-.762270 +.324776 +-.067003 +.035792 +-.142892 +.241809 +-.226406 +.096545 +.045202 +-.066298 +-.094302 +.362973 +-.557065 +.494096 +-.116506 +-.454581 +.978446 +-1.230072 +1.122990 +-.743037 +.281403 +.079614 +-.253435 +.264782 +-.202481 +.152338 +-.154754 +.204696 +-.280714 +.372773 +-.485644 +.617875 +-.738363 +.786128 +-.699468 +.456044 +-.093569 +-.305149 +.653527 +-.900063 +1.038547 +-1.084730 +1.040446 +-.878434 +.566852 +-.120915 +-.361418 +.721264 +-.820928 +.636795 +-.293241 +.002049 +.060319 +.143230 +-.493724 +.793368 +-.880550 +.708305 +-.348476 +-.063168 +.395320 +-.565663 +.553524 +-.392370 +.152801 +.083684 +-.259542 +.369539 +-.457553 +.572119 +-.707352 +.780916 +-.681556 +.361903 +.095335 +-.501306 +.670653 +-.540347 +.206915 +.146902 +-.378210 +.464959 +-.485307 +.523406 +-.586258 +.599345 +-.477212 +.204378 +.140051 +-.427685 +.554659 +-.489122 +.269795 +.026205 +-.313787 +.513797 +-.559207 +.408768 +-.069186 +-.389583 +.843586 +-1.152362 +1.210818 +-.992520 +.564769 +-.067065 +-.340566 +.540717 +-.506319 +.308097 +-.074118 +-.080536 +.114739 +-.075132 +.052777 +-.111681 +.239214 +-.354142 +.366681 +-.246577 +.048976 +.120722 +-.178541 +.119851 +-.024247 +.004075 +-.130595 +.385813 +-.672301 +.876690 +-.945744 +.920688 +-.898960 +.944806 +-1.014379 +.963067 +-.646455 +.049930 +.655092 +-1.188891 +1.337193 +-1.101712 +.712147 +-.479033 +.584345 +-.955660 +1.313373 +-1.357708 +.968053 +-.284355 +-.375444 +.702258 +-.570751 +.103073 +.407016 +-.660844 +.517108 +-.059608 +-.465046 +.798724 +-.817146 +.580151 +-.263407 +.028670 +.073423 +-.106417 +.169064 +-.304285 +.465502 +-.559455 +.525680 +-.389950 +.253544 +-.228195 +.361427 +-.599882 +.811784 +-.855797 +.659846 +-.268507 +-.168820 +.467734 +-.502853 +.273729 +.096425 +-.428103 +.575233 +-.483110 +.189628 +.211713 +-.608642 +.887953 +-.949124 +.738173 +-.296534 +-.217285 +.577233 +-.603971 +.274591 +.256130 +-.749507 +1.028843 +-1.069345 +.968766 +-.834096 +.688342 +-.477566 +.163260 +.195143 +-.452319 +.478932 +-.263411 +-.075528 +.372225 +-.516438 +.492439 +-.343141 +.117979 +.137616 +-.356068 +.440498 +-.314591 +-.000161 +.353770 +-.530428 +.374299 +.108151 +-.742772 +1.285005 +-1.554556 +1.521571 +-1.295532 +1.034184 +-.839643 +.709819 +-.570533 +.355430 +-.071837 +-.193030 +.324749 +-.252372 +-.008776 +.362976 +-.677315 +.834406 +-.772311 +.501610 +-.099429 +-.316496 +.626784 +-.750384 +.668743 +-.424213 +.095814 +.231086 +-.485003 +.614880 +-.592157 +.417936 +-.131885 +-.190961 +.464715 +-.629657 +.677604 +-.645614 +.580384 +-.498767 +.374642 +-.163782 +-.149907 +.521138 +-.851073 +1.036485 +-1.029436 +.865862 +-.640929 +.447711 +-.324317 +.248245 +-.179128 +.111970 +-.094221 +.189414 +-.412667 +.687520 +-.862345 +.786981 +-.408151 +-.176881 +.752583 +-1.096893 +1.107864 +-.859898 +.544287 +-.331896 +.259823 +-.230413 +.123425 +.074653 +-.239483 +.212240 +.045500 +-.382141 +.545789 +-.371951 +-.083558 +.582315 +-.885083 +.925847 +-.831595 +.776698 +-.807507 +.798760 +-.582855 +.136991 +.342247 +-.551679 +.299582 +.340292 +-1.055605 +1.481001 +-1.409800 +.895029 +-.195254 +-.375605 +.593694 +-.399422 +-.104647 +.703638 +-1.144861 +1.228469 +-.895431 +.270494 +.383175 +-.793311 +.821936 +-.529519 +.116236 +.214272 +-.368976 +.383098 +-.349156 +.330766 +-.330796 +.322689 +-.296198 +.266028 +-.240166 +.190766 +-.069934 +-.135841 +.364365 +-.499175 +.450349 +-.233146 +-.025609 +.171494 +-.140223 +.018145 +.009826 +.203374 +-.641331 +1.103864 +-1.315546 +1.095686 +-.479376 +-.288018 +.876136 +-1.036553 +.717604 +-.075295 +-.611699 +1.073472 +-1.167274 +.932177 +-.553399 +.247955 +-.131032 +.147683 +-.124762 +-.084106 +.465296 +-.832069 +.952588 +-.726236 +.269648 +.158173 +-.334817 +.219018 +.045865 +-.260536 +.319882 +-.268591 +.232336 +-.294859 +.424919 +-.505139 +.429268 +-.187850 +-.118416 +.337437 +-.348649 +.119088 +.287999 +-.740474 +1.081141 +-1.177756 +.974923 +-.532514 +.021869 +.340018 +-.399815 +.158819 +.221375 +-.514784 +.568870 +-.385938 +.088779 +.196275 +-.436874 +.687988 +-.989361 +1.266175 +-1.336445 +1.038595 +-.385035 +-.386677 +.920720 +-.943846 +.426127 +.402083 +-1.178936 +1.595657 +-1.528530 +1.060785 +-.409344 +-.187087 +.563321 +-.674680 +.587847 +-.425724 +.293779 +-.227282 +.190693 +-.128591 +.028903 +.053029 +-.032505 +-.130500 +.378585 +-.569246 +.549551 +-.246822 +-.280219 +.859391 +-1.281134 +1.393235 +-1.168892 +.716120 +-.224131 +-.126866 +.245174 +-.153990 +-.044121 +.233564 +-.336400 +.323288 +-.198275 +-.014425 +.271713 +-.516062 +.697236 +-.797225 +.827795 +-.793803 +.659366 +-.367277 +-.085112 +.579803 +-.903562 +.878144 +-.505797 +.002666 +.330319 +-.313557 +.011803 +.326284 +-.462631 +.338829 +-.087327 +-.108892 +.175615 +-.189504 +.280311 +-.493443 +.737279 +-.854262 +.747660 +-.459096 +.145554 +.014674 +.082138 +-.417310 +.859719 +-1.219000 +1.322854 +-1.095242 +.601754 +-.029560 +-.399711 +.539441 +-.382671 +.042308 +.331443 +-.631585 +.817870 +-.884168 +.818934 +-.607253 +.273380 +.086330 +-.330170 +.353797 +-.167470 +-.099941 +.282800 +-.288931 +.157317 +-.024057 +.025302 +-.205302 +.483912 +-.695230 +.672969 +-.343395 +-.214747 +.778791 +-1.074966 +.926270 +-.376424 +-.300321 +.738289 +-.701540 +.246465 +.296299 +-.527921 +.248508 +.397031 +-1.002838 +1.167277 +-.760818 +.011004 +.655831 +-.904927 +.709903 +-.344033 +.158515 +-.316758 +.684205 +-.951902 +.890251 +-.529316 +.124047 +.061335 +.029722 +-.204554 +.183798 +.168878 +-.735153 +1.229622 +-1.407118 +1.225149 +-.847374 +.506552 +-.345740 +.353364 +-.417590 +.432058 +-.361161 +.226430 +-.051291 +-.168904 +.441378 +-.727982 +.934136 +-.958948 +.769485 +-.436484 +.101511 +.097075 +-.085618 +-.125963 +.458506 +-.788200 +.976399 +-.915159 +.583510 +-.080164 +-.406312 +.688211 +-.676057 +.415155 +-.036685 +-.334087 +.639796 +-.881420 +1.059050 +-1.125908 +1.003577 +-.650335 +.126303 +.403871 +-.745162 +.780582 +-.543918 +.206420 +.019152 +-.000856 +-.237783 +.536422 +-.698857 +.613890 +-.323265 +-.002317 +.161035 +-.032469 +-.356369 +.842170 +-1.202276 +1.258098 +-.957443 +.399010 +.214468 +-.673160 +.858876 +-.792128 +.602448 +-.443169 +.404310 +-.474827 +.569809 +-.597465 +.520071 +-.371715 +.225093 +-.133391 +.089703 +-.036158 +-.080964 +.251544 +-.387580 +.373658 +-.149600 +-.235730 +.641206 +-.912068 +.967773 +-.842832 +.658532 +-.547143 +.574533 +-.704628 +.823414 +-.808339 +.603909 +-.259250 +-.096052 +.323819 +-.352178 +.208193 +.006075 +-.170167 +.194642 +-.042206 +-.270576 +.671947 +-1.034163 +1.196810 +-1.032261 +.531611 +.149240 +-.736742 +.973970 +-.766124 +.241472 +.317220 +-.628968 +.559741 +-.172079 +-.335213 +.742444 +-.905744 +.794644 +-.479110 +.094428 +.200792 +-.276051 +.086722 +.289680 +-.674516 +.872276 +-.774770 +.419662 +.033834 +-.392313 +.522008 +-.400658 +.114562 +.184578 +-.343338 +.273549 +.000932 +-.347329 +.589924 +-.610653 +.421268 +-.154132 +-.025507 +.023521 +.136590 +-.352071 +.525501 +-.626793 +.689230 +-.754163 +.818049 +-.827196 +.720740 +-.481408 +.151669 +.192658 +-.482514 +.676140 +-.754002 +.710997 +-.563848 +.363805 +-.186958 +.093805 +-.087681 +.113673 +-.106884 +.051843 +.000318 +.026826 +-.168959 +.383193 +-.564185 +.598663 +-.422443 +.054372 +.400322 +-.777151 +.908673 +-.699197 +.186988 +.447991 +-.952495 +1.120370 +-.899184 +.417155 +.089845 +-.407916 +.452748 +-.292867 +.082149 +.047656 +-.064533 +.039198 +-.081159 +.256841 +-.544099 +.846388 +-1.047656 +1.066924 +-.882275 +.524467 +-.060925 +-.413600 +.785544 +-.946800 +.839088 +-.494734 +.037771 +.370672 +-.616295 +.689248 +-.672260 +.666126 +-.708052 +.745305 +-.683424 +.470494 +-.152275 +-.142037 +.272201 +-.168742 +-.124829 +.469904 +-.698255 +.692014 +-.439884 +.041367 +.344494 +-.578968 +.607318 +-.472020 +.275082 +-.118964 +.061349 +-.099724 +.180904 +-.224588 +.155452 +.059930 +-.383053 +.699734 +-.856169 +.726856 +-.284391 +-.365632 +1.008910 +-1.403008 +1.383477 +-.948260 +.276167 +.338867 +-.616686 +.426484 +.139655 +-.800342 +1.218061 +-1.167983 +.652684 +.101197 +-.762002 +1.058710 +-.901476 +.399577 +.215874 +-.709244 +.935504 +-.878976 +.634309 +-.348268 +.148056 +-.085228 +.121135 +-.164349 +.140041 +-.046812 +-.041020 +.032575 +.098027 +-.268052 +.319950 +-.120263 +-.337353 +.896281 +-1.303097 +1.345723 +-.981895 +.374070 +.197471 +-.492725 +.442004 +-.167823 +-.107731 +.202782 +-.073455 +-.180057 +.387357 +-.409001 +.210227 +.124659 +-.440546 +.598034 +-.552776 +.379464 +-.220574 +.190016 +-.296276 +.439434 +-.483375 +.351382 +-.080726 +-.195389 +.322725 +-.213315 +-.098209 +.455970 +-.647793 +.514041 +-.051092 +-.556194 +1.014498 +-1.088718 +.756771 +-.239566 +-.133913 +.147244 +.151611 +-.484985 +.552278 +-.261127 +-.191513 +.458590 +-.307742 +-.182820 +.649671 +-.684933 +.127942 +.798944 +-1.610109 +1.854412 +-1.392552 +.474923 +.420431 +-.873817 +.750112 +-.236267 +-.309352 +.582738 +-.493476 +.175791 +.130005 +-.234420 +.096430 +.183642 +-.451276 +.598830 +-.617780 +.579654 +-.567943 +.609461 +-.649519 +.587590 +-.353028 +-.025844 +.407522 +-.596696 +.451589 +.021495 +-.646869 +1.153462 +-1.309415 +1.043200 +-.480675 +-.125584 +.534246 +-.638235 +.498904 +-.275144 +.102815 +-.013190 +-.052035 +.150653 +-.258984 +.277500 +-.125523 +-.155736 +.389091 +-.365799 +-.001541 +.594088 +-1.140929 +1.379313 +-1.210002 +.743159 +-.212112 +-.174749 +.339687 +-.337231 +.270889 +-.200814 +.112138 +.042737 +-.274335 +.521698 +-.682015 +.677338 +-.503294 +.222956 +.082632 +-.362681 +.605667 +-.810214 +.953070 +-.988824 +.884743 +-.661676 +.405168 +-.232921 +.236071 +-.428559 +.733797 +-1.016566 +1.144956 +-1.051146 +.760669 +-.375858 +.024310 +.198668 +-.263757 +.205777 +-.094828 +-.000544 +.042600 +-.037788 +.029651 +-.070884 +.185154 +-.341744 +.466479 +-.489008 +.395344 +-.243550 +.124681 +-.095503 +.135652 +-.164929 +.109561 +.033087 +-.181613 +.220798 +-.080543 +-.210637 +.533498 +-.741958 +.743853 +-.551229 +.272307 +-.051539 +-.006970 +-.110384 +.329062 +-.534404 +.630944 +-.576697 +.379363 +-.073170 +-.295521 +.663831 +-.946516 +1.053387 +-.932517 +.611521 +-.201718 +-.146268 +.311119 +-.252768 +.020098 +.282470 +-.543790 +.683579 +-.667270 +.503628 +-.235956 +-.068499 +.334251 +-.502066 +.556278 +-.538332 +.532529 +-.625439 +.857922 +-1.194813 +1.528301 +-1.717248 +1.651764 +-1.320401 +.844069 +-.441235 +.319587 +-.545330 +.979570 +-1.345989 +1.404075 +-1.112529 +.659763 +-.330737 +.305027 +-.535641 +.795967 +-.853100 +.632503 +-.254333 +-.074474 +.219826 +-.209088 +.188985 +-.294602 +.532467 +-.762300 +.786123 +-.481957 +-.103225 +.755239 +-1.189311 +1.194333 +-.754228 +.078655 +.488889 +-.652466 +.338343 +.249192 +-.740453 +.822398 +-.429715 +-.220514 +.771214 +-.945300 +.697439 +-.208789 +-.251153 +.488782 +-.469528 +.285363 +-.056587 +-.146793 +.310022 +-.420797 +.424046 +-.241087 +-.152052 +.655569 +-1.061768 +1.168472 +-.917081 +.446936 +-.012770 +-.182802 +.118831 +.049685 +-.125840 +.026932 +.156927 +-.241865 +.099622 +.238790 +-.599772 +.784680 +-.698813 +.403374 +-.064970 +-.152420 +.178065 +-.055674 +-.105253 +.207177 +-.220105 +.184488 +-.167316 +.206427 +-.283259 +.341863 +-.336090 +.265894 +-.173837 +.108538 +-.089789 +.106635 +-.146784 +.224931 +-.377128 +.620122 +-.909427 +1.137073 +-1.182361 +.987388 +-.606853 +.193586 +.078781 +-.113429 +-.049872 +.252553 +-.306932 +.107573 +.302923 +-.757558 +1.065962 +-1.128224 +.984452 +-.766451 +.588628 +-.461883 +.297202 +.005541 +-.455782 +.939298 +-1.280287 +1.351517 +-1.152669 +.806667 +-.483384 +.304905 +-.288845 +.356014 +-.390644 +.315176 +-.135312 +-.070872 +.212482 +-.252194 +.231008 +-.232019 +.311054 +-.449821 +.569410 +-.593215 +.506906 +-.364920 +.238191 +-.148172 +.047353 +.130710 +-.389908 +.632286 +-.708189 +.531593 +-.172382 +-.158641 +.240046 +.000172 +-.414744 +.717855 +-.667989 +.227772 +.407537 +-.927579 +1.085880 +-.824693 +.279790 +.315322 +-.749317 +.906152 +-.770520 +.394271 +.133321 +-.693314 +1.138932 +-1.320389 +1.140834 +-.615491 +-.109888 +.805984 +-1.253481 +1.333047 +-1.066081 +.592851 +-.107634 +-.217928 +.296871 +-.156512 +-.076797 +.237547 +-.203024 +-.044099 +.408470 +-.735124 +.890695 +-.826895 +.593838 +-.302079 +.057554 +.095186 +-.190989 +.311358 +-.518292 +.795934 +-1.043903 +1.134966 +-1.004165 +.706359 +-.394939 +.227360 +-.258681 +.398429 +-.466178 +.312910 +.072420 +-.543733 +.880433 +-.918825 +.649343 +-.220659 +-.148329 +.293623 +-.194109 +-.026875 +.185566 +-.156486 +-.046837 +.281596 +-.372505 +.232973 +.072492 +-.370925 +.499747 +-.416518 +.218860 +-.062396 +.041315 +-.123934 +.190525 +-.139473 +-.024127 +.187032 +-.212670 +.045387 +.244809 +-.507478 +.610394 +-.519484 +.306583 +-.086119 +-.070499 +.181329 +-.330003 +.589954 +-.952194 +1.311156 +-1.522093 +1.492347 +-1.242280 +.893115 +-.591325 +.421489 +-.363492 +.315569 +-.163958 +-.142066 +.549411 +-.917579 +1.090092 +-.987763 +.667330 +-.298095 +.060379 +-.032494 +.151002 +-.275602 +.302926 +-.232256 +.132060 +-.050025 +-.038789 +.192226 +-.410062 +.588395 +-.578578 +.313665 +.102495 +-.427575 +.427140 +-.039275 +-.557211 +1.024688 +-1.057554 +.570182 +.232381 +-.950388 +1.204273 +-.847145 +.049354 +.798050 +-1.305430 +1.298629 +-.897210 +.415328 +-.156444 +.236816 +-.545927 +.854781 +-.982208 +.898692 +-.704395 +.519499 +-.387073 +.266162 +-.105773 +-.079767 +.206847 +-.189394 +.007679 +.285775 +-.620295 +.956707 +-1.277691 +1.533868 +-1.618520 +1.423698 +-.947196 +.352989 +.090980 +-.174353 +-.109133 +.545453 +-.833679 +.775941 +-.392516 +-.108894 +.473608 +-.547128 +.338405 +.020892 +-.372869 +.615017 +-.723625 +.724618 +-.650657 +.521215 +-.352169 +.171567 +-.015585 +-.094137 +.164579 +-.214147 +.237127 +-.191788 +.038736 +.195157 +-.391207 +.395422 +-.131409 +-.315813 +.722335 +-.855839 +.629564 +-.169261 +-.260545 +.425074 +-.267170 +-.067339 +.341004 +-.388877 +.217408 +.025635 +-.174549 +.160955 +-.038157 +-.088121 +.152209 +-.166521 +.184760 +-.234779 +.285344 +-.273168 +.161896 +.019492 +-.190249 +.270710 +-.233442 +.117370 +.001131 +-.058561 +.043687 +-.002953 +.009454 +-.113991 +.308568 +-.527370 +.686849 +-.739204 +.701474 +-.638917 +.615330 +-.648455 +.702932 +-.721989 +.668248 +-.543268 +.380305 +-.229320 +.150262 +-.204917 +.426371 +-.769882 +1.091176 +-1.202563 +.999700 +-.570641 +.179324 +-.098957 +.401976 +-.874681 +1.146202 +-.952269 +.336206 +.371146 +-.779735 +.700619 +-.243773 +-.304029 +.703262 +-.902411 +.999143 +-1.085132 +1.130420 +-1.012468 +.656335 +-.148363 +-.290633 +.461263 +-.341901 +.111295 +-.013437 +.170286 +-.490409 +.742187 +-.730826 +.442570 +-.052786 +-.198742 +.168613 +.105745 +-.446972 +.665402 +-.682226 +.567305 +-.473087 +.515222 +-.686664 +.866914 +-.920211 +.808431 +-.630232 +.550150 +-.666343 +.917111 +-1.103334 +1.020372 +-.610334 +.025831 +.445783 +-.552954 +.234252 +.344477 +-.893521 +1.173133 +-1.124429 +.879036 +-.654594 +.616325 +-.793952 +1.090083 +-1.349801 +1.433886 +-1.261084 +.824150 +-.197576 +-.465102 +.967934 +-1.152202 +.983883 +-.584166 +.164290 +.101279 +-.171675 +.131421 +-.086389 +.054994 +.048333 +-.320061 +.744283 +-1.149117 +1.291059 +-1.014525 +.373715 +.371754 +-.890120 +.957815 +-.577853 +-.030743 +.558769 +-.768645 +.600010 +-.171000 +-.307254 +.642142 +-.737583 +.612394 +-.367048 +.123666 +.034262 +-.098517 +.131100 +-.215531 +.388990 +-.598714 +.717205 +-.614233 +.242286 +.319214 +-.889879 +1.269528 +-1.329381 +1.068161 +-.611050 +.155728 +.111395 +-.094809 +-.167689 +.521555 +-.765635 +.744217 +-.417284 +-.121379 +.682468 +-1.057038 +1.100192 +-.791794 +.248186 +.325750 +-.727449 +.846310 +-.703048 +.418294 +-.135053 +-.052509 +.122940 +-.102316 +.022201 +.102754 +-.265560 +.442623 +-.582252 +.621103 +-.520512 +.296959 +-.022452 +-.209849 +.335344 +-.351487 +.314004 +-.299290 +.357179 +-.482565 +.619729 +-.694664 +.656305 +-.504766 +.290549 +-.084811 +-.061910 +.145213 +-.198436 +.256368 +-.318460 +.339443 +-.255364 +.027671 +.322019 +-.705814 +.995548 +-1.071020 +.873966 +-.446960 +-.065622 +.468762 +-.609577 +.468327 +-.187721 +.003416 +-.100213 +.479483 +-.933811 +1.163101 +-.966793 +.384746 +.312615 +-.782504 +.811442 +-.430508 +-.120712 +.543599 +-.641549 +.400909 +.034926 +-.460205 +.706300 +-.700067 +.471501 +-.126638 +-.194450 +.363802 +-.310374 +.052471 +.300881 +-.592297 +.690938 +-.562340 +.288992 +-.023015 +-.105202 +.067200 +.046989 +-.090975 +-.032219 +.288629 +-.515630 +.517859 +-.202291 +-.337964 +.855657 +-1.086062 +.902826 +-.391198 +-.207251 +.637916 +-.770785 +.651671 +-.448456 +.337654 +-.402918 +.599316 +-.792930 +.845601 +-.694947 +.389672 +-.064918 +-.127954 +.102109 +.114028 +-.386251 +.546079 +-.489491 +.244120 +.043056 +-.195752 +.118070 +.152542 +-.485292 +.753293 +-.908197 +.975394 +-.985483 +.916399 +-.710892 +.359752 +.029982 +-.263645 +.185820 +.186512 +-.639624 +.885861 +-.755114 +.317196 +.156503 +-.365316 +.166187 +.346992 +-.910933 +1.247135 +-1.199689 +.784379 +-.147009 +-.518998 +1.042556 +-1.312750 +1.296435 +-1.049301 +.711578 +-.465639 +.451937 +-.681821 +1.011079 +-1.211713 +1.111333 +-.709697 +.184178 +.229551 +-.401812 +.397189 +-.416813 +.634294 +-1.048487 +1.465941 +-1.626788 +1.379227 +-.775068 +.027306 +.623028 +-1.027472 +1.164559 +-1.093865 +.889223 +-.603563 +.272937 +.066670 +-.373816 +.609932 +-.750583 +.792066 +-.752819 +.668734 +-.578157 +.497974 +-.406470 +.254917 +-.012353 +-.285172 +.526303 +-.580935 +.391619 +-.031745 +-.322919 +.498075 +-.425471 +.169713 +.138530 +-.403484 +.616248 +-.823068 +1.048487 +-1.247106 +1.326550 +-1.219736 +.943101 +-.591289 +.272454 +-.036655 +-.144347 +.328206 +-.523418 +.650434 +-.586011 +.268423 +.217204 +-.652353 +.807159 +-.593402 +.135348 +.301960 +-.482451 +.345946 +-.028162 +-.253073 +.350649 +-.263746 +.094376 +.054391 +-.138753 +.150681 +-.062197 +-.176958 +.565839 +-.977206 +1.182364 +-.994314 +.427840 +.265323 +-.737708 +.769641 +-.407141 +-.087357 +.425474 +-.474824 +.304649 +-.085152 +-.059999 +.131291 +-.217753 +.396334 +-.653325 +.883709 +-.959926 +.816356 +-.493348 +.117323 +.167098 +-.271207 +.201494 +-.044818 +-.088924 +.131124 +-.087987 +.024931 +-.013576 +.076798 +-.168663 +.204784 +-.125838 +-.047706 +.210795 +-.231177 +.039900 +.302831 +-.616155 +.688613 +-.403108 +-.178138 +.825900 +-1.255278 +1.277506 +-.905362 +.347201 +.111990 +-.275011 +.142318 +.103649 +-.229768 +.110558 +.195000 +-.497103 +.610844 +-.469168 +.136893 +.262449 +-.628754 +.909275 +-1.068626 +1.065053 +-.877852 +.563115 +-.267913 +.161427 +-.319918 +.656314 +-.959356 +1.023183 +-.778311 +.337097 +.070162 +-.222522 +.024015 +.448125 +-.979597 +1.320705 +-1.308375 +.951148 +-.430088 +.007330 +.111944 +.112663 +-.540818 +.932100 +-1.071446 +.868661 +-.387431 +-.196224 +.674498 +-.889533 +.787771 +-.432189 +-.028534 +.420031 +-.605539 +.527716 +-.220137 +-.205068 +.585725 +-.757269 +.622232 +-.220384 +-.251753 +.516512 +-.371185 +-.165700 +.828991 +-1.243911 +1.149695 +-.560280 +-.249214 +.917347 +-1.205099 +1.097087 +-.746631 +.335568 +.030140 +-.322394 +.524983 +-.590464 +.475003 +-.216456 +-.034426 +.087121 +.148701 +-.564838 +.889578 +-.851672 +.368645 +.371456 +-.999271 +1.176215 +-.798259 +.063091 +.641904 +-.960775 +.763313 +-.199734 +-.404271 +.736405 +-.657307 +.251459 +.239698 +-.552925 +.534452 +-.205620 +-.265543 +.668212 +-.866992 +.861591 +-.752601 +.644577 +-.563425 +.449923 +-.226667 +-.122773 +.526008 +-.860020 +1.017747 +-.955699 +.704070 +-.352384 +.026698 +.143034 +-.073380 +-.216556 +.584047 +-.815209 +.743815 +-.367963 +-.124145 +.456900 +-.442260 +.106130 +.328033 +-.590756 +.545128 +-.267933 +-.014531 +.079443 +.158477 +-.609518 +1.072730 +-1.348981 +1.337691 +-1.074101 +.698965 +-.382597 +.243869 +-.301629 +.476038 +-.631156 +.636002 +-.422401 +.022956 +.428120 +-.745660 +.787717 +-.548102 +.180533 +.083532 +-.086606 +-.136033 +.367769 +-.362029 +.032095 +.464023 +-.817459 +.780045 +-.339669 +-.269679 +.727458 +-.835393 +.626995 +-.311513 +.109113 +-.103191 +.208937 +-.265433 +.172809 +.027613 +-.185391 +.158315 +.072639 +-.376374 +.554558 +-.475385 +.162154 +.224691 +-.493405 +.534863 +-.368645 +.104528 +.135384 +-.274333 +.292910 +-.214141 +.091178 +-.002930 +.035276 +-.232902 +.545798 +-.823426 +.889318 +-.662454 +.237570 +.150772 +-.271449 +.050627 +.376800 +-.756377 +.876911 +-.690056 +.312988 +.067351 +-.305015 +.347561 +-.219417 +-.021880 +.310043 +-.568593 +.710690 +-.665220 +.419918 +-.043779 +-.340057 +.621380 +-.765489 +.826085 +-.897917 +1.039722 +-1.218729 +1.315197 +-1.190992 +.786891 +-.190291 +-.377610 +.663956 +-.526857 +.032313 +.564295 +-.953380 +.946806 +-.585090 +.107431 +.197046 +-.161519 +-.170900 +.595361 +-.889938 +.956066 +-.860449 +.756246 +-.747916 +.804399 +-.786713 +.567896 +-.150613 +-.311206 +.606680 +-.608609 +.357740 +-.032329 +-.171169 +.161433 +-.000367 +-.147696 +.126439 +.112099 +-.476216 +.790113 +-.903997 +.791648 +-.569383 +.416604 +-.445452 +.610233 +-.727374 +.599584 +-.159972 +-.465877 +1.025460 +-1.288460 +1.180477 +-.818774 +.434695 +-.237773 +.305272 +-.557494 +.823515 +-.949759 +.884049 +-.690241 +.494645 +-.406020 +.458959 +-.608534 +.769807 +-.872657 +.898593 +-.880427 +.867638 +-.881942 +.895923 +-.854181 +.725378 +-.546216 +.417552 +-.444424 +.654034 +-.949017 +1.137588 +-1.036151 +.591134 +.056147 +-.615720 +.799225 +-.497726 +-.124156 +.695668 +-.850715 +.461806 +.258009 +-.869340 +.978187 +-.491187 +-.318988 +.983438 +-1.125812 +.675291 +.125468 +-.896421 +1.340207 +-1.364363 +1.061479 +-.607852 +.172653 +.117613 +-.179905 +-.017370 +.428904 +-.920795 +1.307824 +-1.437069 +1.269134 +-.899121 +.498477 +-.215794 +.104241 +-.120710 +.186182 +-.252341 +.322698 +-.420568 +.540788 +-.631481 +.620382 +-.463049 +.177302 +.156174 +-.422884 +.518947 +-.395395 +.086451 +.295528 +-.606040 +.737088 +-.668445 +.466756 +-.235208 +.052605 +.053912 +-.092113 +.071566 +.009109 +-.144212 +.296383 +-.398200 +.389604 +-.264690 +.087989 +.039583 +-.044894 +-.070408 +.236449 +-.370878 +.440594 +-.480601 +.555539 +-.694288 +.848683 +-.910208 +.775911 +-.422267 +-.060693 +.498263 +-.710881 +.604174 +-.222134 +-.266578 +.644377 +-.745245 +.529099 +-.093273 +-.380505 +.712040 +-.796623 +.634908 +-.314147 +-.040505 +.317000 +-.448686 +.421748 +-.264359 +.029719 +.219228 +-.423066 +.539775 +-.558254 +.502579 +-.420213 +.358002 +-.340927 +.366213 +-.411960 +.448972 +-.449061 +.393967 +-.289569 +.176338 +-.116961 +.155277 +-.272249 +.380630 +-.376654 +.217293 +.038719 +-.265173 +.356840 +-.303093 +.188618 +-.121853 +.149514 +-.223216 +.239274 +-.115587 +-.152548 +.491816 +-.794688 +.970679 +-.975287 +.811579 +-.519394 +.165417 +.164644 +-.380090 +.411910 +-.246316 +-.051500 +.344480 +-.472130 +.327935 +.072966 +-.581680 +.980586 +-1.097695 +.903058 +-.523755 +.165840 +.005701 +.049705 +-.250468 +.467597 +-.610495 +.663303 +-.654708 +.598126 +-.460521 +.192556 +.202633 +-.623860 +.900865 +-.891643 +.582899 +-.116919 +-.280189 +.421560 +-.250888 +-.151750 +.636977 +-1.066453 +1.352605 +-1.451181 +1.341411 +-1.029922 +.577958 +-.115377 +-.195112 +.238891 +-.024719 +-.305498 +.550776 +-.564706 +.333705 +.029336 +-.363227 +.549309 +-.558108 +.437232 +-.266854 +.118946 +-.036568 +.028939 +-.073626 +.125651 +-.136527 +.078289 +.042070 +-.188534 +.317390 +-.396191 +.405931 +-.330296 +.151700 +.130268 +-.466682 +.745013 +-.823572 +.610779 +-.142054 +-.407755 +.802435 +-.873158 +.614367 +-.181094 +-.209563 +.402944 +-.376672 +.222605 +-.071433 +.019073 +-.092693 +.254841 +-.423653 +.498415 +-.396966 +.106616 +.276668 +-.564137 +.564769 +-.211675 +-.361555 +.867594 +-1.028214 +.755838 +-.225747 +-.224999 +.316362 +-.016815 +-.427754 +.655366 +-.435423 +-.165346 +.813519 +-1.118647 +.883855 +-.232395 +-.470816 +.848861 +-.743937 +.303436 +.129721 +-.247610 +-.022005 +.475352 +-.778209 +.698598 +-.268052 +-.239363 +.493876 +-.330251 +-.152053 +.671339 +-.958462 +.919782 +-.659780 +.366398 +-.160149 +.022291 +.154527 +-.445702 +.805087 +-1.078053 +1.108168 +-.857338 +.448948 +-.099430 +-.015219 +-.136110 +.435855 +-.710439 +.845180 +-.836737 +.754530 +-.657324 +.541340 +-.360416 +.091011 +.221748 +-.477885 +.580452 +-.486332 +.214584 +.177113 +-.611798 +.989402 +-1.181201 +1.059640 +-.570670 +-.194814 +.994830 +-1.525300 +1.566919 +-1.104618 +.344208 +.388421 +-.810589 +.819373 +-.529868 +.198475 +-.074316 +.259923 +-.657575 +1.033102 +-1.160908 +.963243 +-.555297 +.165902 +.014201 +.046765 +-.214596 +.299045 +-.198994 +-.024986 +.204939 +-.204969 +.036357 +.144820 +-.160300 +-.042203 +.335702 +-.504525 +.413501 +-.124155 +-.137847 +.146611 +.147870 +-.563049 +.794030 +-.618179 +.054256 +.634855 +-1.101161 +1.129139 +-.768872 +.296783 +-.029689 +.115695 +-.441068 +.715104 +-.674584 +.267702 +.307283 +-.731210 +.767372 +-.399556 +-.178569 +.696232 +-.956650 +.911758 +-.637484 +.256468 +.128743 +-.460271 +.714138 +-.877361 +.932344 +-.857764 +.646189 +-.327425 +-.023029 +.306240 +-.446218 +.431465 +-.321208 +.211640 +-.185825 +.277775 +-.464929 +.682140 +-.844692 +.874732 +-.729345 +.422446 +-.025772 +-.358741 +.643343 +-.787866 +.799949 +-.705501 +.517552 +-.233719 +-.132448 +.515216 +-.796444 +.858754 +-.664382 +.301385 +.046826 +-.198504 +.075886 +.256230 +-.638223 +.911180 +-.993727 +.897962 +-.692780 +.454957 +-.242145 +.091554 +-.025237 +.045423 +-.121152 +.182967 +-.141096 +-.071478 +.448438 +-.881521 +1.182492 +-1.163426 +.747618 +-.050776 +-.629657 +.938114 +-.648359 +-.187488 +1.226332 +-1.985940 +2.091645 +-1.482908 +.456515 +.488624 +-.922506 +.713697 +-.079620 +-.570092 +.890719 +-.788999 +.424079 +-.047583 +-.178932 +.250722 +-.244453 +.197810 +-.067337 +-.200222 +.564751 +-.872186 +.951845 +-.751376 +.388573 +-.070557 +-.053349 +-.015563 +.154463 +-.231303 +.199675 +-.105486 +.018927 +.036778 +-.099040 +.219596 +-.402691 +.577657 +-.625737 +.446596 +-.028626 +-.517722 +.991235 +-1.191508 +1.026789 +-.572751 +.038393 +.346333 +-.453526 +.313197 +-.070283 +-.122670 +.201884 +-.215597 +.266965 +-.425423 +.672361 +-.914980 +1.048547 +-1.014584 +.816049 +-.493080 +.093888 +.330907 +-.715262 +.974789 +-1.034306 +.873522 +-.555232 +.206517 +.043181 +-.129838 +.083470 +.001702 +-.032993 +-.026976 +.155208 +-.305546 +.446754 +-.564498 +.633317 +-.602842 +.431342 +-.146768 +-.128366 +.234413 +-.088229 +-.234490 +.524849 +-.569073 +.290681 +.197075 +-.663810 +.903806 +-.848450 +.582375 +-.269852 +.052055 +.020050 +.012447 +-.067044 +.085520 +-.076139 +.108030 +-.258410 +.541816 +-.868240 +1.068689 +-.987227 +.588523 +-.006257 +-.514021 +.754839 +-.662651 +.384287 +-.170047 +.202908 +-.470756 +.773217 +-.861656 +.616373 +-.139020 +-.300536 +.424282 +-.108853 +-.544201 +1.260673 +-1.728168 +1.738177 +-1.270696 +.489312 +.342998 +-.982926 +1.301293 +-1.309836 +1.118376 +-.861218 +.639594 +-.501357 +.447473 +-.445556 +.446033 +-.406238 +.318302 +-.218013 +.157145 +-.153097 +.160081 +-.095824 +-.088303 +.349573 +-.561413 +.588514 +-.376538 +-.008527 +.417263 +-.699835 +.777601 +-.665682 +.449482 +-.243058 +.150624 +-.231909 +.468658 +-.748229 +.895673 +-.764195 +.341851 +.205778 +-.611264 +.669395 +-.379900 +-.040650 +.296992 +-.208821 +-.177752 +.636256 +-.921352 +.925659 +-.726775 +.506313 +-.409710 +.444880 +-.482249 +.350157 +.037467 +-.602460 +1.125413 +-1.362843 +1.189738 +-.677770 +.055956 +.422437 +-.619115 +.565094 +-.401073 +.256295 +-.159066 +.040675 +.179566 +-.501962 +.820955 +-.985915 +.901765 +-.597730 +.219576 +.045529 +-.064491 +-.175624 +.558355 +-.888549 +.985900 +-.785085 +.390465 +-.039421 +-.027380 +-.276863 +.803722 +-1.234802 +1.268678 +-.813897 +.057802 +.638941 +-.955318 +.792525 +-.313536 +-.175368 +.416696 +-.345594 +.104752 +.065443 +.015782 +-.362505 +.824600 +-1.187607 +1.298966 +-1.138596 +.796211 +-.386293 +-.027231 +.440981 +-.860646 +1.243616 +-1.491924 +1.504389 +-1.245839 +.779530 +-.241695 +-.218036 +.490570 +-.531972 +.363713 +-.063842 +-.247321 +.436934 +-.410816 +.167113 +.185487 +-.473063 +.550645 +-.388370 +.087820 +.187714 +-.321834 +.314478 +-.263322 +.276175 +-.384904 +.526571 +-.601152 +.555172 +-.423000 +.295963 +-.248231 +.281239 +-.329586 +.319837 +-.232945 +.122029 +-.075279 +.154880 +-.354571 +.600004 +-.787255 +.837342 +-.741225 +.573389 +-.460521 +.509389 +-.727306 +.987230 +-1.077228 +.823435 +-.217445 +-.540943 +1.131410 +-1.290379 +.966909 +-.349701 +-.256944 +.621157 +-.699957 +.606078 +-.469966 +.326266 +-.124675 +-.155524 +.410697 +-.448531 +.143175 +.421513 +-.957023 +1.142572 +-.841509 +.197819 +.459970 +-.834189 +.836129 +-.607712 +.386904 +-.323926 +.379366 +-.368699 +.114667 +.403442 +-1.009756 +1.430321 +-1.461690 +1.091522 +-.491280 +-.102373 +.520438 +-.713697 +.707671 +-.527659 +.175523 +.323402 +-.861576 +1.255469 +-1.335918 +1.063032 +-.575180 +.125590 +.058953 +.091959 +-.453916 +.779914 +-.835211 +.516006 +.107658 +-.835074 +1.429230 +-1.710366 +1.611197 +-1.185070 +.578119 +.020166 +-.438811 +.587969 +-.498096 +.307125 +-.187259 +.243906 +-.449350 +.659807 +-.709858 +.521752 +-.154939 +-.234669 +.492350 +-.549375 +.441637 +-.260227 +.077760 +.093914 +-.286068 +.512694 +-.718207 +.782740 +-.595319 +.150948 +.400667 +-.804616 +.833169 +-.423355 +-.271077 +.954483 +-1.351348 +1.357589 +-1.086294 +.777297 +-.626870 +.648422 +-.660618 +.417677 +.200489 +-1.068561 +1.854674 +-2.200599 +1.929770 +-1.152920 +.211702 +.495566 +-.699409 +.361906 +.334841 +-1.085528 +1.589430 +-1.661030 +1.291369 +-.641176 +-.034148 +.500152 +-.645662 +.518846 +-.278291 +.092262 +-.049172 +.130482 +-.250230 +.323262 +-.313250 +.236502 +-.131631 +.023995 +.091210 +-.240282 +.444594 +-.691567 +.921007 +-1.040568 +.972497 +-.710425 +.348441 +-.050714 +-.034181 +-.134093 +.453761 +-.738814 +.835929 +-.717938 +.483056 +-.261745 +.109328 +.024601 +-.226201 +.513815 +-.798667 +.948317 +-.896009 +.696214 +-.478806 +.346542 +-.308750 +.303230 +-.273771 +.225194 +-.207661 +.253713 +-.332886 +.367396 +-.294097 +.119714 +.073959 +-.175761 +.107656 +.133338 +-.471462 +.782534 +-.944344 +.890057 +-.644541 +.322251 +-.077286 +.023175 +-.166459 +.398939 +-.560209 +.532941 +-.309069 +-.015644 +.309388 +-.482311 +.521975 +-.472470 +.386659 +-.293190 +.196438 +-.095513 +-.001628 +.078106 +-.113118 +.084395 +.026713 +-.217566 +.442436 +-.614158 +.649250 +-.535087 +.362198 +-.275550 +.363605 +-.568346 +.701605 +-.576315 +.163584 +.350485 +-.667816 +.579695 +-.121132 +-.440323 +.779974 +-.730650 +.381572 +.005924 +-.195705 +.136746 +.027091 +-.089332 +-.057901 +.355519 +-.638875 +.765155 +-.705602 +.546490 +-.417537 +.409800 +-.532780 +.720552 +-.869352 +.885548 +-.730125 +.444427 +-.139037 +-.061510 +.095697 +-.014465 +-.040704 +-.069793 +.377402 +-.762246 +1.013628 +-.961142 +.588330 +-.048873 +-.426046 +.663214 +-.632634 +.432704 +-.201004 +.024094 +.094200 +-.201870 +.345961 +-.540848 +.768189 +-.990052 +1.157057 +-1.213435 +1.113354 +-.849603 +.475167 +-.091935 +-.195619 +.334063 +-.343216 +.291345 +-.244078 +.228028 +-.236057 +.263489 +-.335514 +.491163 +-.729094 +.963761 +-1.045906 +.854378 +-.399281 +-.150867 +.557977 +-.666621 +.506984 +-.267161 +.154517 +-.254375 +.491661 +-.712743 +.809182 +-.782325 +.709459 +-.656201 +.614695 +-.513797 +.284879 +.071640 +-.465716 +.755605 +-.821900 +.636753 +-.289004 +-.054517 +.235946 +-.193092 +-.009495 +.227556 +-.330689 +.277945 +-.125631 +-.029788 +.123244 +-.151690 +.147768 +-.128944 +.072367 +.059731 +-.266553 +.477081 +-.576193 +.478240 +-.196943 +-.142155 +.362371 +-.334823 +.054822 +.351007 +-.691636 +.814607 +-.687570 +.412711 +-.165105 +.089512 +-.216751 +.451589 +-.640103 +.671830 +-.546782 +.361188 +-.225906 +.180855 +-.172540 +.111267 +.039655 +-.216819 +.293257 +-.173615 +-.124233 +.463749 +-.667387 +.625663 +-.365823 +.036475 +.181881 +-.185889 +.010799 +.195457 +-.272761 +.159531 +.063492 +-.233540 +.232763 +-.087989 +-.040022 +-.017648 +.286804 +-.595992 +.679231 +-.374830 +-.226118 +.805710 +-1.019678 +.737228 +-.144383 +-.371930 +.483560 +-.141666 +-.397112 +.754786 +-.692884 +.266651 +.228306 +-.468473 +.317739 +.100632 +-.509168 +.667682 +-.513350 +.167966 +.166205 +-.332895 +.290614 +-.103387 +-.114059 +.254810 +-.260710 +.144214 +.011383 +-.082797 +-.029951 +.333982 +-.714248 +.978631 +-.964340 +.644046 +-.158803 +-.253235 +.394715 +-.228138 +-.103144 +.369823 +-.408965 +.233313 +-.020753 +-.014973 +-.212295 +.577978 +-.809722 +.663053 +-.096041 +-.676322 +1.290382 +-1.440621 +1.056308 +-.339329 +-.356431 +.725097 +-.665458 +.307620 +.090613 +-.300482 +.235946 +.028624 +-.324731 +.486439 +-.425560 +.160537 +.200175 +-.507350 +.635090 +-.536016 +.262049 +.062843 +-.305665 +.389243 +-.324579 +.196903 +-.118235 +.172389 +-.376460 +.672072 +-.950004 +1.100800 +-1.071893 +.901332 +-.701710 +.592714 +-.616438 +.693010 +-.659438 +.381428 +.130771 +-.690250 +1.024611 +-.944007 +.475632 +.131125 +-.540964 +.524962 +-.087012 +-.552239 +1.095102 +-1.335027 +1.247004 +-.952787 +.599986 +-.251877 +-.129458 +.598222 +-1.114928 +1.513056 +-1.587097 +1.246381 +-.617258 +.004362 +.277460 +-.092984 +-.428609 +.971415 +-1.222708 +1.053771 +-.579904 +.068023 +.242275 +-.285319 +.189727 +-.166107 +.345275 +-.682018 +.989352 +-1.073690 +.871063 +-.488904 +.129911 +.042294 +-.000497 +-.147468 +.248880 +-.217493 +.090435 +.004128 +.055822 +-.289929 +.585582 +-.757856 +.664045 +-.299710 +-.189382 +.589909 +-.744986 +.637156 +-.377453 +.115261 +.060845 +-.158365 +.233089 +-.305066 +.314568 +-.160969 +-.201496 +.687991 +-1.095176 +1.205689 +-.919934 +.326913 +.333580 +-.793684 +.888943 +-.623803 +.142937 +.361242 +-.743442 +.949661 +-.998958 +.932651 +-.777226 +.547375 +-.277883 +.047154 +.039589 +.093989 +-.434835 +.860217 +-1.181598 +1.238128 +-.989733 +.551330 +-.138279 +-.052514 +-.045339 +.335851 +-.630265 +.768168 +-.704356 +.506501 +-.280469 +.091882 +.056758 +-.191351 +.321193 +-.430699 +.508948 +-.578247 +.683830 +-.848161 +1.030899 +-1.136071 +1.070155 +-.811793 +.441786 +-.107402 +-.061147 +.031056 +.108966 +-.202416 +.128337 +.111126 +-.381190 +.496400 +-.343401 +-.038153 +.472676 +-.751808 +.755000 +-.511806 +.176089 +.062311 +-.072842 +-.159384 +.533108 +-.877623 +1.026250 +-.890725 +.506289 +-.021649 +-.370985 +.535528 +-.463704 +.272042 +-.123480 +.125871 +-.273688 +.463749 +-.562033 +.471224 +-.166761 +-.297788 +.800041 +-1.171709 +1.247681 +-.940630 +.306821 +.446778 +-1.039084 +1.244572 +-1.005258 +.458435 +.139031 +-.548579 +.671854 +-.584735 +.463245 +-.450593 +.558254 +-.673461 +.666126 +-.507687 +.301209 +-.195445 +.255870 +-.405445 +.488737 +-.405657 +.200335 +-.029201 +.035485 +-.235119 +.505654 +-.681940 +.676170 +-.526536 +.344244 +-.212443 +.124018 +-.003860 +-.211321 +.506096 +-.783971 +.925471 +-.859412 +.599873 +-.234750 +-.116983 +.353773 +-.429703 +.374725 +-.287421 +.291477 +-.462309 +.759441 +-1.016253 +1.018277 +-.641710 +-.033251 +.725941 +-1.098130 +.957946 +-.388877 +-.291217 +.718171 +-.689373 +.255002 +.352038 +-.875891 +1.167384 +-1.211301 +1.070918 +-.821739 +.526998 +-.248321 +.049046 +.032913 +-.020301 +-.004619 +-.046989 +.201516 +-.397481 +.530425 +-.534422 +.432865 +-.317459 +.275846 +-.329616 +.428514 +-.494159 +.469570 +-.339994 +.127935 +.113930 +-.304601 +.352139 +-.205364 +-.081133 +.329240 +-.315223 +-.079794 +.746435 +-1.361091 +1.563497 +-1.197964 +.448364 +.249346 +-.480326 +.130092 +.529188 +-1.014903 +.953872 +-.322454 +-.556558 +1.244057 +-1.466948 +1.255707 +-.864518 +.563398 +-.467999 +.516181 +-.572325 +.551035 +-.462202 +.364714 +-.291615 +.217670 +-.087332 +-.132599 +.420440 +-.703054 +.883405 +-.878773 +.664534 +-.310538 +-.021279 +.143865 +.043346 +-.472076 +.925415 +-1.163718 +1.071499 +-.717265 +.286266 +.052258 +-.236071 +.299472 +-.293733 +.224395 +-.061330 +-.199420 +.493050 +-.713277 +.790009 +-.747186 +.684515 +-.694378 +.784328 +-.871701 +.855040 +-.700690 +.471397 +-.276246 +.188665 +-.203746 +.266753 +-.339347 +.437840 +-.606648 +.853079 +-1.108514 +1.259072 +-1.224251 +1.015025 +-.718105 +.419659 +-.138136 +-.170724 +.539569 +-.913660 +1.147781 +-1.090220 +.695594 +-.082703 +-.507288 +.827146 +-.743895 +.296304 +.333655 +-.910825 +1.248822 +-1.277882 +1.055032 +-.719625 +.420452 +-.250503 +.220640 +-.280820 +.368204 +-.445550 +.503085 +-.529275 +.485873 +-.320576 +.017678 +.354613 +-.649903 +.716791 +-.497428 +.080832 +.335309 +-.555726 +.499038 +-.235338 +-.071987 +.275221 +-.325065 +.275862 +-.220949 +.215015 +-.243001 +.253053 +-.218494 +.170918 +-.172118 +.246112 +-.332734 +.313468 +-.103361 +-.258132 +.596887 +-.698983 +.451720 +.071157 +-.646562 +1.037480 +-1.130256 +.979743 +-.741794 +.554457 +-.456995 +.395478 +-.293422 +.124604 +.064146 +-.186683 +.173478 +-.009663 +-.262004 +.562417 +-.803078 +.909633 +-.844087 +.623988 +-.324585 +.049630 +.122326 +-.181100 +.179590 +-.175856 +.167704 +-.081825 +-.159107 +.538639 +-.906432 +1.050746 +-.847100 +.372255 +.117604 +-.346593 +.207871 +.158331 +-.459293 +.449964 +-.095816 +-.412363 +.791079 +-.843318 +.565481 +-.126654 +-.247166 +.401815 +-.323598 +.120499 +.062427 +-.140367 +.141119 +-.178852 +.363474 +-.705668 +1.088008 +-1.329241 +1.299219 +-1.000031 +.553756 +-.111245 +-.242030 +.510009 +-.731249 +.904897 +-.968876 +.849472 +-.533754 +.095400 +.350891 +-.724588 +1.015523 +-1.250730 +1.427665 +-1.481686 +1.324729 +-.927310 +.374746 +.153086 +-.471349 +.490472 +-.261867 +-.059101 +.307516 +-.401126 +.373819 +-.330987 +.358422 +-.449082 +.503136 +-.405481 +.125208 +.241071 +-.521660 +.584047 +-.426416 +.177852 +-.008770 +.020923 +-.194672 +.421307 +-.583948 +.624873 +-.559774 +.443574 +-.321777 +.202684 +-.066418 +-.099392 +.266090 +-.363602 +.321429 +-.125151 +-.157196 +.407308 +-.529549 +.510274 +-.417090 +.340235 +-.326624 +.359671 +-.395213 +.413358 +-.436078 +.496284 +-.592464 +.675681 +-.684772 +.598475 +-.457806 +.337601 +-.291065 +.312744 +-.348041 +.339526 +-.272277 +.184099 +-.133087 +.145976 +-.185646 +.166412 +-.014568 +-.262837 +.552472 +-.682986 +.528297 +-.102060 +-.424279 +.803850 +-.854411 +.569881 +-.129685 +-.206213 +.253664 +-.012630 +-.344161 +.594934 +-.617610 +.456149 +-.256822 +.127817 +-.040042 +-.141840 +.516313 +-1.008284 +1.366229 +-1.319886 +.792152 +.000801 +-.655840 +.838999 +-.514772 +-.020224 +.333339 +-.150894 +-.453860 +1.113566 +-1.424002 +1.223819 +-.699018 +.240295 +-.159229 +.468497 +-.880758 +1.020268 +-.690494 +.010860 +.661452 +-.956859 +.709921 +-.038448 +-.740521 +1.286779 +-1.400522 +1.097537 +-.575055 +.097186 +.140103 +-.096906 +-.114651 +.319113 +-.392862 +.331219 +-.229481 +.200917 +-.294083 +.461749 +-.591388 +.569192 +-.340164 +-.060306 +.511955 +-.850736 +.933271 +-.700076 +.207509 +.390620 +-.904674 +1.184128 +-1.170743 +.909714 +-.520062 +.142491 +.110302 +-.180996 +.067364 +.193551 +-.538490 +.880627 +-1.114391 +1.141293 +-.917913 +.498066 +-.031626 +-.293025 +.336471 +-.077268 +-.372654 +.810085 +-1.020161 +.866175 +-.360160 +-.319855 +.892072 +-1.103095 +.867149 +-.323771 +-.235604 +.534756 +-.466297 +.132898 +.240062 +-.448078 +.409054 +-.174140 +-.129833 +.370147 +-.453478 +.346560 +-.084286 +-.237066 +.494585 +-.598919 +.545739 +-.415784 +.313721 +-.286401 +.284243 +-.200246 +-.039806 +.403648 +-.753272 +.923772 +-.828791 +.522530 +-.177114 +-.012608 +-.060919 +.359588 +-.727747 +.987921 +-1.041030 +.906802 +-.684661 +.473522 +-.316272 +.205808 +-.131785 +.110856 +-.164620 +.267520 +-.325124 +.221438 +.089321 +-.520014 +.876115 +-.962873 +.703438 +-.188412 +-.373289 +.764329 +-.859001 +.660904 +-.274420 +-.156266 +.501842 +-.679255 +.662347 +-.479528 +.199057 +.098623 +-.352309 +.538085 +-.661813 +.732864 +-.741734 +.661473 +-.473462 +.197196 +.101114 +-.332379 +.428532 +-.379962 +.242918 +-.113253 +.080915 +-.188212 +.408437 +-.652287 +.801922 +-.765116 +.528708 +-.180748 +-.122345 +.236228 +-.112414 +-.169650 +.447595 +-.571863 +.490785 +-.270859 +.042642 +.088909 +-.109778 +.095800 +-.147234 +.303936 +-.501297 +.603193 +-.496790 +.186187 +.187192 +-.424764 +.404876 +-.173814 +-.083183 +.179473 +-.070606 +-.113921 +.181970 +-.042774 +-.217444 +.416377 +-.441697 +.350762 +-.309334 +.421423 +-.607497 +.652061 +-.391178 +-.120834 +.619586 +-.823036 +.657810 +-.330787 +.175508 +-.384904 +.837398 +-1.159152 +.987930 +-.250964 +-.745949 +1.488911 +-1.573744 +.957085 +.026166 +-.884517 +1.275605 +-1.190471 +.903362 +-.740199 +.840117 +-1.077541 +1.185627 +-.974038 +.473856 +.089067 +-.455130 +.494522 +-.258954 +-.089793 +.391821 +-.549384 +.515877 +-.266695 +-.191019 +.774609 +-1.310041 +1.592634 +-1.499709 +1.070805 +-.486737 +-.039655 +.377533 +-.516500 +.519034 +-.445905 +.321986 +-.159111 +-.004013 +.094889 +-.046222 +-.151301 +.427739 +-.663998 +.755689 +-.670594 +.464804 +-.248115 +.120297 +-.117605 +.203007 +-.304041 +.367504 +-.387479 +.386784 +-.373134 +.315733 +-.168922 +-.075379 +.355692 +-.564203 +.612939 +-.492332 +.276083 +-.068716 +-.064575 +.135708 +-.216111 +.380373 +-.651417 +.980389 +-1.267948 +1.407824 +-1.326982 +1.009640 +-.507654 +-.058632 +.517955 +-.698801 +.509824 +-.010846 +-.582130 +.985820 +-.995760 +.603101 +-.004213 +-.507529 +.701155 +-.522151 +.100120 +.340191 +-.599790 +.588163 +-.335347 +-.050104 +.436657 +-.708481 +.785419 +-.639060 +.311799 +.077786 +-.368249 +.431205 +-.253379 +-.034771 +.221019 +-.140104 +-.212022 +.662698 +-.967263 +.966575 +-.685371 +.300607 +-.007837 +-.108448 +.102841 +-.085583 +.110270 +-.132338 +.070256 +.091091 +-.250808 +.246104 +.026111 +-.512253 +1.006558 +-1.263063 +1.145400 +-.715342 +.197791 +.158274 +-.231140 +.087817 +.083461 +-.114739 +-.033243 +.270869 +-.473999 +.586881 +-.650773 +.743764 +-.890558 +1.018456 +-.992195 +.699313 +-.127242 +-.611542 +1.313913 +-1.758381 +1.786383 +-1.365222 +.609178 +.255991 +-.977787 +1.372926 +-1.383808 +1.068555 +-.545283 +-.058303 +.616945 +-.998168 +1.078125 +-.803153 +.257096 +.336817 +-.712329 +.705820 +-.351129 +-.147306 +.545831 +-.705975 +.657694 +-.551804 +.547122 +-.710240 +.984049 +-1.231205 +1.317668 +-1.186751 +.885476 +-.533608 +.257138 +-.127011 +.136839 +-.224643 +.315208 +-.353454 +.316395 +-.212398 +.078382 +.027487 +-.047685 +-.039834 +.196487 +-.334245 +.366550 +-.268484 +.102165 +.016134 +.010361 +-.193822 +.450474 +-.652651 +.708761 +-.616459 +.454849 +-.326928 +.296877 +-.363268 +.474941 +-.567231 +.592782 +-.539471 +.438865 +-.362416 +.394519 +-.583373 +.895699 +-1.212711 +1.381552 +-1.293228 +.937188 +-.400220 +-.179663 +.666430 +-.958042 +.998296 +-.786775 +.391860 +.051849 +-.384668 +.494889 +-.379879 +.145140 +.067290 +-.171750 +.180787 +-.163307 +.157877 +-.121416 +-.035776 +.354598 +-.754929 +1.056439 +-1.088068 +.808297 +-.347278 +-.061804 +.217465 +-.063705 +-.285321 +.620161 +-.761402 +.659894 +-.412989 +.189739 +-.115125 +.191380 +-.308315 +.330588 +-.194484 +-.054900 +.303611 +-.445270 +.437101 +-.309379 +.141356 +-.026903 +.037877 +-.184531 +.388132 +-.499267 +.378552 +-.003690 +-.477289 +.808321 +-.782218 +.387196 +.171286 +-.602010 +.723515 +-.579770 +.389726 +-.371188 +.575320 +-.855073 +.983948 +-.825748 +.425572 +.035959 +-.373959 +.507970 +-.475102 +.361486 +-.226610 +.082150 +.074307 +-.221286 +.314949 +-.325870 +.267701 +-.182626 +.094144 +.025398 +-.234262 +.557327 +-.931617 +1.213352 +-1.253144 +.991265 +-.506960 +-.013261 +.367751 +-.433822 +.212168 +.191176 +-.618489 +.913818 +-.959839 +.705331 +-.190582 +-.441700 +.976560 +-1.208151 +1.040887 +-.547774 +-.061040 +.548993 +-.773125 +.733544 +-.524434 +.234386 +.116203 +-.546535 +1.022426 +-1.391316 +1.426578 +-.976214 +.113538 +.838027 +-1.455220 +1.458907 +-.887971 +.076808 +.555217 +-.759981 +.589438 +-.317876 +.224909 +-.397493 +.683213 +-.813707 +.601017 +-.070797 +-.549172 +.966182 +-.989402 +.623598 +-.045762 +-.502695 +.831491 +-.863001 +.627281 +-.221592 +-.229916 +.604794 +-.808020 +.800137 +-.614054 +.341031 +-.085997 +-.081024 +.144552 +-.125361 +.046404 +.084864 +-.265527 +.473108 +-.655614 +.748163 +-.704663 +.522709 +-.248259 +-.037058 +.236689 +-.264478 +.075584 +.303784 +-.768025 +1.164201 +-1.358837 +1.303126 +-1.054496 +.741395 +-.497032 +.403496 +-.467701 +.624697 +-.757814 +.738244 +-.488970 +.051960 +.391964 +-.591528 +.364055 +.276441 +-1.092565 +1.726764 +-1.876572 +1.440630 +-.560751 +-.448820 +1.238224 +-1.560922 +1.362125 +-.786224 +.101247 +.427864 +-.655956 +.602621 +-.403594 +.206349 +-.083575 +.019954 +.031685 +-.081376 +.081325 +.030493 +-.262355 +.536350 +-.722239 +.716061 +-.508325 +.194627 +.078478 +-.198387 +.149617 +-.018076 +-.065027 +.002907 +.214801 +-.519138 +.815614 +-1.038586 +1.165429 +-1.190659 +1.099862 +-.879676 +.558114 +-.229332 +.022874 +-.026557 +.219430 +-.471665 +.619842 +-.570036 +.358580 +-.128559 +.034196 +-.133617 +.342480 +-.486192 +.423423 +-.157142 +-.152150 +.291805 +-.152197 +-.182344 +.479391 +-.512146 +.210914 +.295076 +-.768690 +1.015592 +-.987513 +.778349 +-.535867 +.362607 +-.268404 +.187882 +-.035557 +-.236731 +.602919 +-.959300 +1.162296 +-1.100899 +.768719 +-.284952 +-.162564 +.421018 +-.450167 +.319178 +-.136198 +-.021701 +.122956 +-.150124 +.080548 +.083889 +-.269335 +.334918 +-.160347 +-.241251 +.689841 +-.938937 +.850444 +-.506751 +.159171 +-.040700 +.188045 +-.418759 +.486284 +-.288911 +-.040500 +.240615 +-.140109 +-.189291 +.470556 +-.422815 +-.028772 +.692530 +-1.238665 +1.414882 +-1.193070 +.754214 +-.343860 +.115743 +-.072269 +.123020 +-.191809 +.277992 +-.428669 +.656943 +-.885208 +.969287 +-.793442 +.368231 +.144231 +-.506772 +.543164 +-.246740 +-.213593 +.596818 +-.733949 +.614802 +-.363534 +.132473 +-.000833 +-.049681 +.079539 +-.115660 +.120205 +-.022539 +-.218762 +.572354 +-.935036 +1.171467 +-1.170752 +.898316 +-.424431 +-.087663 +.441643 +-.498877 +.255893 +.142298 +-.473430 +.560939 +-.375399 +.045944 +.229904 +-.319515 +.239651 +-.132802 +.155305 +-.361769 +.669157 +-.919761 +.988505 +-.855305 +.601161 +-.346137 +.179418 +-.121605 +.128818 +-.127753 +.064118 +.055030 +-.148896 +.099241 +.171824 +-.625425 +1.089227 +-1.330821 +1.190983 +-.695033 +.061410 +.411820 +-.518646 +.265118 +.142888 +-.436946 +.455267 +-.230838 +-.053937 +.203588 +-.135493 +-.086516 +.318660 +-.441357 +.425104 +-.324317 +.221745 +-.172042 +.179095 +-.209098 +.218784 +-.178770 +.084391 +.042256 +-.154939 +.191796 +-.095069 +-.156065 +.511535 +-.839658 +.964426 +-.750634 +.198771 +.513588 +-1.089826 +1.257707 +-.918637 +.205710 +.591832 +-1.188411 +1.438124 +-1.363502 +1.081254 +-.706285 +.315518 +.018201 +-.186455 +.070191 +.367346 +-.995095 +1.527556 +-1.662506 +1.269039 +-.496478 +-.286079 +.698980 +-.580649 +.082868 +.434072 +-.635403 +.413790 +.073487 +-.540940 +.771056 +-.727881 +.523943 +-.293776 +.087649 +.133824 +-.414860 +.713196 +-.887372 +.780814 +-.341991 +-.311498 +.937164 +-1.293318 +1.262759 +-.898111 +.374317 +.103505 +-.374648 +.353653 +-.037718 +-.483694 +1.026035 +-1.353958 +1.290850 +-.843058 +.239047 +.181354 +-.179807 +-.210851 +.694247 +-.904542 +.653527 +-.055930 +-.550266 +.824904 +-.634503 +.119613 +.406527 +-.651533 +.509380 +-.106219 +-.291634 +.446173 +-.290070 +-.042673 +.313304 +-.338113 +.108829 +.201357 +-.348381 +.174957 +.280335 +-.789094 +1.054234 +-.880100 +.293372 +.459782 +-1.045402 +1.228221 +-1.000049 +.570345 +-.227506 +.162719 +-.369086 +.671643 +-.854471 +.794328 +-.521120 +.183724 +.043169 +-.052772 +-.145153 +.436594 +-.664686 +.708118 +-.538890 +.233268 +.065581 +-.211615 +.117849 +.205480 +-.646809 +1.027052 +-1.167453 +.972122 +-.487879 +-.098859 +.541626 +-.658585 +.434174 +-.031463 +-.303117 +.390978 +-.230546 +-.014861 +.148095 +-.094264 +-.039500 +.053565 +.170715 +-.552185 +.847923 +-.826776 +.446456 +.105104 +-.539018 +.666260 +-.516494 +.288465 +-.181250 +.246473 +-.375378 +.415430 +-.304067 +.104390 +.075262 +-.190133 +.291200 +-.454697 +.681678 +-.866419 +.867972 +-.627886 +.237021 +.105293 +-.214264 +.041392 +.287159 +-.542565 +.533787 +-.231171 +-.204797 +.514161 +-.496999 +.141978 +.363346 +-.751942 +.846978 +-.664609 +.381703 +-.201318 +.220648 +-.393058 +.592967 +-.715813 +.734623 +-.687782 +.630396 +-.595015 +.580035 +-.555261 +.472550 +-.284280 +-.025144 +.408545 +-.755799 +.940868 +-.895622 +.660284 +-.371217 +.190277 +-.220679 +.460408 +-.814088 +1.147549 +-1.351207 +1.383328 +-1.278013 +1.116275 +-.972491 +.864127 +-.740050 +.524899 +-.197643 +-.153142 +.350211 +-.228827 +-.241185 +.898570 +-1.450564 +1.625670 +-1.328836 +.701266 +-.043499 +-.353349 +.364756 +-.084117 +-.255656 +.430407 +-.343422 +.046563 +.329720 +-.670176 +.923501 +-1.087206 +1.165095 +-1.146187 +1.020417 +-.804870 +.544102 +-.280687 +.026424 +.230868 +-.485036 +.673294 +-.686956 +.438573 +.057084 +-.651948 +1.117849 +-1.260014 +1.022590 +-.520041 +-.023952 +.390614 +-.465275 +.270668 +.070041 +-.404879 +.613953 +-.635251 +.461624 +-.130787 +-.277863 +.647933 +-.851580 +.802557 +-.511955 +.103177 +.239655 +-.367006 +.240871 +.060133 +-.406145 +.695323 +-.885846 +.968426 +-.924282 +.721980 +-.361111 +-.083460 +.471525 +-.668039 +.623106 +-.397523 +.115632 +.111522 +-.229776 +.228423 +-.103653 +-.148086 +.492594 +-.820842 +.972554 +-.829527 +.415024 +.091051 +-.454015 +.539182 +-.401001 +.230791 +-.198698 +.314386 +-.420797 +.329693 +.009242 +-.444039 +.716612 +-.646750 +.261061 +.229579 +-.580178 +.669592 +-.551956 +.380770 +-.282413 +.279768 +-.308476 +.289440 +-.189893 +.034178 +.123554 +-.230438 +.250032 +-.166831 +-.007730 +.227790 +-.416443 +.489110 +-.392099 +.138454 +.181285 +-.428937 +.485110 +-.320570 +.023933 +.245324 +-.357388 +.295355 +-.153773 +.050867 +-.028171 +.026166 +.043234 +-.195358 +.339413 +-.348304 +.171383 +.110952 +-.341618 +.406771 +-.321572 +.212713 +-.213716 +.358085 +-.552919 +.649334 +-.552671 +.290627 +.005697 +-.187880 +.180280 +-.015739 +-.199192 +.358288 +-.417117 +.403997 +-.381098 +.390194 +-.425769 +.453741 +-.455553 +.456241 +-.508513 +.642658 +-.822550 +.946579 +-.899830 +.626498 +-.175494 +-.312463 +.672212 +-.797764 +.692560 +-.456125 +.218054 +-.065583 +.013107 +-.027190 +.076225 +-.156780 +.274740 +-.404256 +.469513 +-.374579 +.063780 +.431536 +-.992454 +1.457247 +-1.683545 +1.599376 +-1.229297 +.692548 +-.170183 +-.159546 +.200791 +.005033 +-.292466 +.461743 +-.398393 +.144121 +.134309 +-.262191 +.179514 +.016962 +-.141849 +.052288 +.247551 +-.597882 +.776269 +-.633376 +.186906 +.383935 +-.837950 +1.001446 +-.848107 +.487685 +-.085515 +-.225924 +.392885 +-.435703 +.417501 +-.409671 +.460181 +-.567115 +.671270 +-.685126 +.551476 +-.292285 +.005899 +.191263 +-.233741 +.132726 +.056599 +-.287723 +.541799 +-.795827 +.978998 +-.977403 +.709328 +-.222228 +-.279112 +.528726 +-.376842 +-.079127 +.526267 +-.631868 +.270219 +.388677 +-.997894 +1.268750 +-1.145642 +.800065 +-.471057 +.290995 +-.226885 +.157967 +-.002030 +-.220835 +.428001 +-.565499 +.660075 +-.784254 +.967007 +-1.131979 +1.125526 +-.825378 +.255154 +.381113 +-.781691 +.708103 +-.132113 +-.723855 +1.487936 +-1.833036 +1.652491 +-1.107801 +.515275 +-.145503 +.070302 +-.158762 +.211388 +-.119998 +-.069830 +.227918 +-.263650 +.191779 +-.091309 +.010533 +.083167 +-.259929 +.533370 +-.808774 +.929259 +-.789717 +.428019 +-.018777 +-.229932 +.202842 +.061317 +-.410509 +.683255 +-.796611 +.761870 +-.634113 +.451768 +-.219576 +-.058481 +.338289 +-.535650 +.577424 +-.465597 +.298577 +-.223907 +.347573 +-.659867 +1.028718 +-1.267996 +1.240417 +-.934419 +.471477 +-.041725 +-.193284 +.176323 +.029938 +-.287370 +.452191 +-.427772 +.183143 +.248342 +-.768109 +1.212869 +-1.387539 +1.150327 +-.518059 +-.288496 +.923513 +-1.098550 +.757877 +-.122022 +-.440081 +.628640 +-.376725 +-.138152 +.623079 +-.840567 +.716144 +-.340259 +-.107395 +.451803 +-.590115 +.516429 +-.306970 +.076194 +.079056 +-.121996 +.082053 +-.022536 +-.006824 +-.001949 +.022725 +-.025380 +-.000976 +.047699 +-.100358 +.145034 +-.160183 +.109493 +.043118 +-.296879 +.584041 +-.780770 +.766317 +-.498704 +.054483 +.400095 +-.692786 +.731264 +-.536356 +.207201 +.147790 +-.459281 +.695233 +-.826538 +.806112 +-.591483 +.196149 +.277078 +-.659459 +.792969 +-.615804 +.201696 +.274236 +-.624375 +.739427 +-.627904 +.386024 +-.125410 +-.088031 +.246849 +-.369966 +.462455 +-.502096 +.457770 +-.317623 +.103097 +.136689 +-.339747 +.446298 +-.415522 +.247825 +-.004084 +-.200116 +.240475 +-.056935 +-.291534 +.638700 +-.799463 +.686098 +-.371340 +.045180 +.111272 +-.045430 +-.142449 +.286943 +-.286160 +.170972 +-.064613 +.071254 +-.184526 +.286059 +-.231810 +-.040407 +.458646 +-.852429 +1.047760 +-.959654 +.628745 +-.189383 +-.202923 +.439914 +-.492230 +.398247 +-.228872 +.054429 +.070119 +-.104056 +.019708 +.185042 +-.466014 +.728319 +-.860715 +.800867 +-.586810 +.344459 +-.204488 +.204891 +-.260790 +.236131 +-.064592 +-.184577 +.360166 +-.362854 +.241807 +-.161607 +.258578 +-.507675 +.719989 +-.682262 +.327217 +.205518 +-.668766 +.885628 +-.862166 +.749496 +-.696115 +.717631 +-.690610 +.470524 +-.034574 +-.465946 +.784441 +-.731026 +.292559 +.354774 +-.940326 +1.238569 +-1.174165 +.842349 +-.443199 +.170987 +-.118237 +.242153 +-.405430 +.462193 +-.337422 +.058363 +.270927 +-.527549 +.624554 +-.539086 +.310881 +-.021211 +-.237083 +.392221 +-.422452 +.368356 +-.313873 +.334373 +-.435676 +.527704 +-.465218 +.144680 +.402575 +-.992040 +1.369850 +-1.354143 +.943584 +-.321923 +-.243526 +.543384 +-.522190 +.280810 +.002812 +-.179070 +.198331 +-.115706 +.036049 +-.037528 +.121682 +-.219861 +.250447 +-.186953 +.087994 +-.064625 +.204648 +-.506253 +.869546 +-1.154854 +1.268452 +-1.215438 +1.083457 +-.971484 +.916202 +-.867638 +.726009 +-.408500 +-.099293 +.732268 +-1.366873 +1.853366 +-2.050318 +1.868787 +-1.325823 +.577761 +.113538 +-.498463 +.489250 +-.236340 +.051724 +-.203532 +.716830 +-1.332553 +1.672249 +-1.499784 +.888406 +-.165992 +-.321357 +.448167 +-.372201 +.379750 +-.641787 +1.073300 +-1.403446 +1.395235 +-1.038276 +.561479 +-.257858 +.261823 +-.455001 +.572107 +-.418899 +.029195 +.358234 +-.476941 +.221764 +.289561 +-.812330 +1.138614 +-1.204729 +1.082116 +-.887157 +.693805 +-.506882 +.293337 +-.029420 +-.272636 +.565225 +-.780448 +.848948 +-.722275 +.399726 +.050316 +-.493631 +.769921 +-.760735 +.454343 +.031846 +-.495187 +.746312 +-.710791 +.468932 +-.199046 +.055014 +-.063204 +.118278 +-.085019 +-.073263 +.246740 +-.257758 +.008664 +.418309 +-.793535 +.887825 +-.631278 +.167739 +.237434 +-.376546 +.243237 +-.037414 +.020147 +-.314472 +.795442 +-1.158267 +1.125783 +-.648097 +-.054175 +.635773 +-.851648 +.695501 +-.362660 +.086381 +.016626 +.014083 +-.058135 +.021750 +.107408 +-.277759 +.424025 +-.501428 +.489965 +-.388284 +.217011 +-.027868 +-.102356 +.104461 +.039149 +-.271946 +.485018 +-.574867 +.501559 +-.309197 +.095934 +.045893 +-.080442 +.039961 +.005896 +.000529 +-.068235 +.154775 +-.195551 +.145377 +-.005803 +-.178138 +.349469 +-.477391 +.575084 +-.682766 +.826165 +-.981325 +1.075642 +-1.030601 +.818928 +-.494820 +.171231 +.043949 +-.111526 +.082215 +-.061894 +.142445 +-.338915 +.567830 +-.679693 +.534347 +-.085863 +-.567738 +1.206553 +-1.585457 +1.558773 +-1.158320 +.571863 +-.032775 +-.305677 +.430061 +-.431772 +.418681 +-.445005 +.502427 +-.558710 +.598174 +-.630736 +.673911 +-.734015 +.803791 +-.870193 +.916461 +-.915737 +.829494 +-.623875 +.297882 +.098678 +-.474520 +.730084 +-.795124 +.653667 +-.350387 +-.020694 +.345755 +-.536210 +.572202 +-.515019 +.468661 +-.506477 +.612662 +-.687159 +.618629 +-.375268 +.043377 +.221127 +-.298175 +.190325 +-.025238 +-.031678 +-.105234 +.377813 +-.620656 +.675154 +-.500477 +.200721 +.054539 +-.159616 +.154127 +-.189671 +.402354 +-.788435 +1.182853 +-1.361958 +1.193466 +-.721104 +.127020 +.387771 +-.709438 +.835440 +-.823793 +.727670 +-.568721 +.354837 +-.110253 +-.113998 +.256470 +-.273845 +.162838 +.035232 +-.250370 +.415892 +-.502969 +.535784 +-.570369 +.643981 +-.730477 +.742655 +-.591519 +.263440 +.146378 +-.477248 +.594902 +-.462894 +.143877 +.257929 +-.655539 +.993560 +-1.226254 +1.304527 +-1.200664 +.948937 +-.652261 +.431819 +-.352476 +.383914 +-.430195 +.403371 +-.283175 +.121405 +.004167 +-.045957 +.013386 +.042242 +-.068473 +.049457 +-.018231 +.037536 +-.159940 +.388799 +-.660973 +.862658 +-.875429 +.635969 +-.183767 +-.331690 +.700491 +-.746953 +.423835 +.151205 +-.746804 +1.130757 +-1.178018 +.911502 +-.463439 +-.004481 +.369051 +-.573120 +.619061 +-.549551 +.428270 +-.321181 +.275501 +-.300395 +.357701 +-.369337 +.244531 +.075927 +-.571326 +1.116096 +-1.510102 +1.571342 +-1.250208 +.687636 +-.156643 +-.097179 +.017187 +.219188 +-.318129 +.078604 +.451893 +-.989447 +1.193523 +-.897759 +.238004 +.411492 +-.660830 +.351028 +.332018 +-.958310 +1.118791 +-.692202 +-.064603 +.675434 +-.758234 +.283070 +.406789 +-.829938 +.694729 +-.090514 +-.586839 +.911931 +-.707200 +.132447 +.454697 +-.745207 +.651870 +-.308133 +-.068511 +.323005 +-.417602 +.390355 +-.288744 +.145694 +-.001030 +-.081168 +.039773 +.126815 +-.331330 +.437333 +-.350590 +.094029 +.196346 +-.359048 +.315852 +-.119882 +-.093473 +.213115 +-.230061 +.224566 +-.276972 +.382186 +-.445178 +.364508 +-.132714 +-.135586 +.277807 +-.204316 +-.028661 +.250467 +-.286316 +.064893 +.347129 +-.793171 +1.111163 +-1.199245 +1.039662 +-.692023 +.274072 +.068501 +-.210518 +.106890 +.169919 +-.452304 +.564787 +-.430719 +.126978 +.159242 +-.250644 +.098035 +.187868 +-.416357 +.453276 +-.314532 +.146874 +-.108632 +.239199 +-.416547 +.439050 +-.175815 +-.322174 +.833744 +-1.100088 +.990586 +-.587984 +.132474 +.137085 +-.132873 +-.046990 +.219003 +-.268197 +.235358 +-.273679 +.516485 +-.964509 +1.475666 +-1.852206 +1.948329 +-1.725152 +1.240113 +-.610460 +-.013496 +.470321 +-.631454 +.466870 +-.086257 +-.296526 +.474333 +-.362795 +.036082 +.343243 +-.640938 +.821697 +-.927579 +.999613 +-1.020617 +.927862 +-.677344 +.298893 +.105581 +-.417856 +.569636 +-.571854 +.490567 +-.392373 +.301158 +-.196403 +.049989 +.130785 +-.290033 +.350333 +-.258497 +.017441 +.313054 +-.639165 +.861826 +-.903383 +.735311 +-.404953 +.041674 +.183009 +-.142949 +-.151335 +.526622 +-.727896 +.573988 +-.088677 +-.491676 +.852870 +-.794545 +.348041 +.257865 +-.750950 +.975212 +-.951497 +.816493 +-.704815 +.663068 +-.642720 +.555363 +-.340218 +.003177 +.383866 +-.714111 +.892695 +-.882535 +.727148 +-.531939 +.406023 +-.399058 +.478839 +-.569511 +.620242 +-.646049 +.704461 +-.827527 +.971388 +-1.031806 +.919200 +-.634512 +.284269 +-.019512 +-.059999 +-.030194 +.169815 +-.211056 +.072615 +.208481 +-.496582 +.633919 +-.526738 +.192688 +.252140 +-.653104 +.888284 +-.916458 +.783282 +-.588160 +.430764 +-.363635 +.374904 +-.409394 +.414690 +-.381169 +.347159 +-.364181 +.448406 +-.557780 +.616489 +-.570667 +.431721 +-.272270 +.178167 +-.195164 +.310264 +-.474768 +.641498 +-.783357 +.885077 +-.927787 +.888415 +-.756896 +.553819 +-.330108 +.145060 +-.035581 +-.004458 +.020310 +-.065390 +.157529 +-.251459 +.254656 +-.087757 +-.246175 +.637460 +-.919752 +.968810 +-.781789 +.477784 +-.218032 +.105543 +-.137573 +.238573 +-.334698 +.401281 +-.446349 +.457728 +-.377295 +.141868 +.237396 +-.631230 +.840552 +-.719983 +.292268 +.235867 +-.581215 +.552388 +-.170628 +-.337067 +.671881 +-.642339 +.277694 +.194145 +-.488427 +.433971 +-.064358 +-.421176 +.790754 +-.911788 +.799785 +-.569594 +.342411 +-.179013 +.073593 +.009135 +-.095560 +.192043 +-.297537 +.417140 +-.558000 +.708821 +-.823012 +.827986 +-.667899 +.360363 +-.025729 +-.148674 +.010368 +.443300 +-1.020033 +1.411964 +-1.372148 +.879116 +-.168765 +-.403314 +.583156 +-.369724 +-.009241 +.271956 +-.275009 +.086858 +.094200 +-.099752 +-.092750 +.357874 +-.514587 +.436031 +-.108432 +-.378335 +.879587 +-1.246074 +1.359916 +-1.165119 +.700178 +-.115885 +-.355871 +.497568 +-.227930 +-.327974 +.883801 +-1.142452 +.964307 +-.445351 +-.144299 +.520065 +-.538100 +.255060 +.130667 +-.404783 +.445917 +-.259482 +-.061337 +.399943 +-.657700 +.763566 +-.676984 +.406184 +-.028810 +-.320669 +.511723 +-.493914 +.330039 +-.153942 +.079021 +-.121265 +.188115 +-.137158 +-.134068 +.617419 +-1.177312 +1.598035 +-1.680892 +1.352024 +-.724466 +.066963 +.322049 +-.273627 +-.156191 +.720877 +-1.131815 +1.223921 +-1.029770 +.719497 +-.461645 +.313188 +-.215609 +.085089 +.088917 +-.222908 +.211466 +-.027113 +-.239313 +.432478 +-.435864 +.243957 +.045077 +-.296327 +.406748 +-.335037 +.097763 +.241105 +-.578262 +.794000 +-.801606 +.598663 +-.273649 +-.050702 +.296787 +-.464384 +.584699 +-.642404 +.549679 +-.214008 +-.348414 +.956418 +-1.332404 +1.266076 +-.761307 +.055648 +.512974 +-.709647 +.539515 +-.223172 +.026779 +-.069592 +.250753 +-.349198 +.216724 +.090593 +-.349117 +.344375 +-.047403 +-.349245 +.565797 +-.438436 +.040874 +.363653 +-.503327 +.282281 +.160593 +-.556480 +.697865 +-.578077 +.380025 +-.326388 +.506128 +-.809170 +1.016814 +-.975510 +.718409 +-.440835 +.350184 +-.504945 +.763641 +-.879635 +.671431 +-.148123 +-.492239 +.982249 +-1.137597 +.946877 +-.555649 +.172556 +.034919 +.000330 +-.245076 +.602117 +-.950817 +1.175029 +-1.180984 +.916137 +-.392254 +-.297689 +.987605 +-1.484190 +1.642352 +-1.437957 +.995378 +-.542657 +.305415 +-.389038 +.714299 +-1.050076 +1.135720 +-.831619 +.210904 +.470336 +-.916303 +.964822 +-.678817 +.294290 +-.061187 +.089088 +-.301468 +.517269 +-.586899 +.482988 +-.296250 +.160706 +-.170112 +.332352 +-.572384 +.771083 +-.822550 +.688590 +-.422616 +.141717 +.043881 +-.098558 +.075070 +-.062962 +.114024 +-.205882 +.269539 +-.249936 +.144063 +.010332 +-.173909 +.329428 +-.472103 +.587409 +-.649772 +.648639 +-.612856 +.598785 +-.640708 +.702213 +-.677034 +.452647 +.002925 +-.597199 +1.150848 +-1.494726 +1.555173 +-1.367254 +1.017848 +-.581171 +.109885 +.319533 +-.575490 +.520277 +-.124945 +-.450405 +.909910 +-1.003169 +.706478 +-.252161 +-.034085 +-.028875 +.349198 +-.642088 +.650556 +-.332033 +-.124661 +.446277 +-.460575 +.187954 +.201915 +-.510015 +.614722 +-.513442 +.301671 +-.117373 +.074621 +-.204324 +.424797 +-.568775 +.471886 +-.084104 +-.467260 +.921352 +-1.026292 +.697430 +-.083341 +-.513666 +.813886 +-.714636 +.321804 +.149010 +-.517549 +.725699 +-.821906 +.880368 +-.928947 +.934156 +-.840164 +.623332 +-.323497 +.032771 +.151904 +-.185989 +.107148 +-.012403 +-.008736 +-.061768 +.160600 +-.199518 +.143346 +-.042952 +-.007058 +-.049447 +.179989 +-.289886 +.303057 +-.226841 +.144690 +-.143746 +.240100 +-.365465 +.423566 +-.364046 +.209770 +-.019966 +-.167679 +.356083 +-.551905 +.716374 +-.763811 +.622140 +-.304613 +-.077142 +.380338 +-.528044 +.556290 +-.572664 +.662266 +-.818088 +.949491 +-.956242 +.805957 +-.555547 +.306073 +-.131584 +.036401 +.032947 +-.138352 +.304121 +-.503538 +.677005 +-.760142 +.704192 +-.488743 +.134728 +.284652 +-.652019 +.846897 +-.807492 +.575716 +-.287585 +.105123 +-.126992 +.332734 +-.594094 +.744879 +-.667652 +.351812 +.100556 +-.517651 +.729061 +-.638846 +.274360 +.212115 +-.599378 +.695364 +-.432025 +-.096162 +.676030 +-1.078387 +1.160589 +-.915606 +.454358 +.052729 +-.439178 +.592884 +-.491327 +.216163 +.070287 +-.197235 +.083153 +.200483 +-.456092 +.479617 +-.202765 +-.244635 +.609390 +-.688008 +.478493 +-.196577 +.132744 +-.443616 +1.023964 +-1.553194 +1.688784 +-1.278055 +.450847 +.458140 +-1.095734 +1.262556 +-.976196 +.413460 +.204638 +-.705304 +.994353 +-1.040732 +.856238 +-.494028 +.052754 +.341925 +-.586953 +.653068 +-.594237 +.498552 +-.414816 +.315891 +-.135371 +-.148401 +.453976 +-.624021 +.530434 +-.180081 +-.265396 +.579302 +-.607548 +.354619 +.040004 +-.406631 +.646121 +-.756225 +.782316 +-.751132 +.648583 +-.454536 +.194302 +.045873 +-.159930 +.092621 +.111992 +-.322734 +.392176 +-.245455 +-.065839 +.378552 +-.496412 +.293086 +.211922 +-.844733 +1.345676 +-1.488071 +1.191427 +-.568346 +-.125061 +.613175 +-.733422 +.506385 +-.110363 +-.218138 +.302020 +-.101969 +-.276102 +.642377 +-.821441 +.738703 +-.449955 +.098597 +.171648 +-.293124 +.294204 +-.258767 +.261528 +-.323002 +.404450 +-.432198 +.331908 +-.060471 +-.367587 +.866914 +-1.295577 +1.503325 +-1.397500 +.991143 +-.401988 +-.200308 +.668755 +-.932651 +1.002555 +-.932666 +.775166 +-.562441 +.325732 +-.121864 +.029928 +-.106995 +.335595 +-.611962 +.794432 +-.781002 +.561711 +-.214272 +-.144042 +.411561 +-.536288 +.524047 +-.427623 +.323283 +-.281220 +.342220 +-.511797 +.768606 +-1.070221 +1.345446 +-1.488360 +1.384660 +-.978863 +.344396 +.308905 +-.723956 +.741249 +-.401255 +-.077274 +.437399 +-.545578 +.458754 +-.352941 +.374713 +-.531385 +.697728 +-.722871 +.549366 +-.257106 +.009018 +.055776 +.091746 +-.353242 +.556877 +-.545998 +.256101 +.254151 +-.826436 +1.265829 +-1.414834 +1.210151 +-.704168 +.046398 +.567678 +-.963267 +1.044896 +-.824880 +.411352 +.036083 +-.361012 +.453487 +-.273763 +-.138627 +.667044 +-1.138295 +1.374011 +-1.266652 +.843780 +-.271054 +-.225305 +.476887 +-.454226 +.254869 +-.014095 +-.185585 +.335973 +-.452873 +.515660 +-.461704 +.242516 +.112622 +-.488502 +.745329 +-.804238 +.693150 +-.522041 +.410214 +-.418872 +.530678 +-.678849 +.793130 +-.827912 +.764058 +-.604144 +.380895 +-.170347 +.077330 +-.175134 +.429706 +-.676259 +.694869 +-.355901 +-.263610 +.889801 +-1.200452 +1.020915 +-.435843 +-.258373 +.727008 +-.782066 +.467144 +-.005303 +-.340089 +.400149 +-.160118 +-.268529 +.724820 +-1.070295 +1.224320 +-1.164520 +.915019 +-.539510 +.136984 +.175016 +-.296983 +.190556 +.099732 +-.465695 +.789246 +-.999306 +1.096291 +-1.129675 +1.145946 +-1.145182 +1.080256 +-.901693 +.616039 +-.308943 +.105791 +-.089163 +.231487 +-.397296 +.422660 +-.222485 +-.146020 +.507675 +-.668349 +.529656 +-.152040 +-.271246 +.516637 +-.452390 +.108153 +.351567 +-.732650 +.922995 +-.933423 +.846623 +-.726805 +.571991 +-.347263 +.059333 +.207083 +-.334638 +.264206 +-.048248 +-.185127 +.327190 +-.357856 +.328716 +-.281770 +.187932 +.028271 +-.394486 +.815081 +-1.095698 +1.063750 +-.693984 +.136168 +.381670 +-.699924 +.812389 +-.831900 +.878267 +-.986723 +1.105560 +-1.167006 +1.153430 +-1.095805 +1.013300 +-.864658 +.572479 +-.111400 +-.419516 +.820693 +-.917975 +.702821 +-.370353 +.205949 +-.388254 +.851034 +-1.312527 +1.460826 +-1.166365 +.570903 +.008662 +-.291473 +.211616 +.052592 +-.210420 +.058142 +.383747 +-.877981 +1.112999 +-.891810 +.255227 +.529999 +-1.108791 +1.220717 +-.827390 +.120431 +.583772 +-.998824 +.992222 +-.623818 +.091877 +.378061 +-.641531 +.685719 +-.599846 +.490442 +-.401845 +.295862 +-.099087 +-.224389 +.632488 +-1.022703 +1.286430 +-1.356086 +1.219381 +-.907836 +.481998 +-.023786 +-.373837 +.632098 +-.720075 +.670814 +-.558695 +.446140 +-.338385 +.184785 +.069803 +-.423560 +.797281 +-1.073502 +1.164478 +-1.057199 +.808783 +-.507985 +.238161 +-.058856 +-.003623 +-.031429 +.094238 +-.091928 +-.029500 +.228662 +-.374183 +.329226 +-.062911 +-.301215 +.552138 +-.536672 +.276723 +.035449 +-.168274 +.014816 +.329825 +-.631496 +.670650 +-.376862 +-.141088 +.673526 +-1.030277 +1.124734 +-.985948 +.714830 +-.426037 +.206297 +-.095245 +.080476 +-.102011 +.072541 +.079661 +-.356676 +.661330 +-.829849 +.727902 +-.355826 +-.118579 +.441986 +-.429304 +.083869 +.403734 +-.776200 +.860676 +-.648699 +.266853 +.120355 +-.400995 +.551211 +-.614102 +.649799 +-.688154 +.706884 +-.646729 +.457383 +-.146027 +-.207817 +.487390 +-.601184 +.526881 +-.306783 +.007703 +.314109 +-.615151 +.847124 +-.955708 +.913317 +-.759045 +.598064 +-.539548 +.609121 +-.707468 +.663375 +-.359686 +-.155149 +.662591 +-.900492 +.745558 +-.321289 +-.060198 +.098601 +.285558 +-.885259 +1.338734 +-1.370834 +.974649 +-.407776 +.012406 +.008979 +.291799 +-.669994 +.866378 +-.773226 +.481390 +-.192686 +.068921 +-.122106 +.215674 +-.173305 +-.077501 +.427653 +-.638026 +.498781 +.008862 +-.669392 +1.154675 +-1.234021 +.922419 +-.455347 +.109240 +-.005433 +.048288 +-.039346 +-.131236 +.375128 +-.468706 +.239206 +.274047 +-.812038 +1.051852 +-.814458 +.180178 +.560465 +-1.078971 +1.189708 +-.933036 +.523916 +-.209150 +.122307 +-.220946 +.338554 +-.313262 +.105486 +.176206 +-.357492 +.327241 +-.117724 +-.121042 +.229243 +-.145928 +-.058001 +.236765 +-.267482 +.119505 +.142108 +-.406160 +.578089 +-.621300 +.565595 +-.486436 +.463132 +-.528974 +.638106 +-.678125 +.537534 +-.196116 +-.223098 +.490260 +-.389196 +-.141832 +.935143 +-1.639690 +1.876551 +-1.429060 +.369140 +.950671 +-2.042888 +2.500202 +-2.176317 +1.242870 +-.102625 +-.796912 +1.153036 +-.912685 +.253706 +.529874 +-1.167265 +1.505327 +-1.527744 +1.315203 +-.984032 +.634345 +-.323533 +.069837 +.118072 +-.206733 +.133082 +.149785 +-.599959 +1.052544 +-1.277333 +1.112445 +-.583287 +-.090338 +.619005 +-.818586 +.712946 +-.495962 +.386856 +-.482353 +.699784 +-.837503 +.707685 +-.261815 +-.359838 +.884514 +-1.046189 +.737699 +-.088263 +-.588577 +.956325 +-.834242 +.286890 +.425074 +-.993650 +1.217143 +-1.075401 +.703140 +-.297936 +.022806 +.050422 +.057726 +-.274753 +.528848 +-.783130 +1.035102 +-1.286800 +1.510305 +-1.635875 +1.575807 +-1.273930 +.753197 +-.131264 +-.412545 +.711602 +-.693743 +.424776 +-.080733 +-.144270 +.143705 +.048983 +-.297512 +.463698 +-.498644 +.456790 +-.426228 +.437020 +-.429149 +.313232 +-.075649 +-.164696 +.210305 +.075573 +-.643987 +1.250301 +-1.581598 +1.441575 +-.867415 +.097823 +.581725 +-1.003163 +1.175249 +-1.210565 +1.197481 +-1.130775 +.953366 +-.655909 +.327863 +-.101473 +.035889 +-.052584 +-.008067 +.249427 +-.618665 +.934168 +-1.019785 +.833691 +-.486815 +.143179 +.106458 +-.290295 +.489926 +-.728710 +.916435 +-.901666 +.593149 +-.054857 +-.503115 +.839363 +-.827733 +.536809 +-.185760 +.001077 +-.066529 +.267982 +-.375560 +.212034 +.207839 +-.668850 +.890454 +-.715211 +.219420 +.332990 +-.662096 +.651924 +-.417841 +.219010 +-.276559 +.617282 +-1.044893 +1.259007 +-1.049322 +.443744 +.285476 +-.766958 +.742909 +-.220860 +-.526986 +1.116949 +-1.267188 +.945864 +-.369870 +-.137896 +.341115 +-.214314 +-.071892 +.283335 +-.277123 +.075875 +.177715 +-.338027 +.352697 +-.273525 +.190110 +-.151422 +.138427 +-.099149 +.003548 +.133504 +-.276466 +.409066 +-.545113 +.698157 +-.842122 +.908456 +-.832460 +.610641 +-.315426 +.049543 +.121145 +-.196467 +.210175 +-.176394 +.075648 +.098929 +-.282318 +.337213 +-.137347 +-.321363 +.878484 +-1.287127 +1.368357 +-1.129321 +.753024 +-.464652 +.376022 +-.426496 +.460697 +-.373331 +.198387 +-.068813 +.082554 +-.192127 +.219754 +.002764 +-.476458 +.992109 +-1.251624 +1.077740 +-.559351 +.017387 +.198002 +.055911 +-.609419 +1.083409 +-1.133043 +.667574 +.098086 +-.785732 +1.086277 +-.928648 +.489515 +-.060189 +-.128409 +.014980 +.296488 +-.627398 +.831762 +-.856345 +.732039 +-.522208 +.277348 +-.029863 +-.180145 +.290583 +-.246527 +.055359 +.189459 +-.357474 +.377366 +-.298339 +.253040 +-.341645 +.532568 +-.668859 +.581421 +-.220296 +-.298983 +.764523 +-.993828 +.925975 +-.631526 +.258211 +.038192 +-.144931 +.023586 +.274130 +-.617842 +.854688 +-.897744 +.790441 +-.683439 +.718025 +-.894352 +1.038336 +-.917695 +.435220 +.252326 +-.799481 +.891431 +-.460918 +-.258546 +.882284 +-1.116501 +.922568 +-.502790 +.140103 +-.015897 +.122206 +-.301173 +.359752 +-.177964 +-.240501 +.778218 +-1.251529 +1.476408 +-1.342627 +.877462 +-.262000 +-.234073 +.388495 +-.162930 +-.255520 +.555085 +-.493646 +.061569 +.502540 +-.863245 +.808631 +-.389759 +-.115722 +.388403 +-.271811 +-.138424 +.570188 +-.754351 +.588100 +-.186951 +-.193961 +.314353 +-.090630 +-.351695 +.744694 +-.830534 +.515281 +.068946 +-.636792 +.915037 +-.796167 +.384117 +.088691 +-.408598 +.495849 +-.426335 +.364693 +-.459246 +.755409 +-1.164439 +1.500791 +-1.575521 +1.304059 +-.766314 +.171589 +.261879 +-.437887 +.431658 +-.419719 +.542290 +-.802095 +1.074277 +-1.214094 +1.173452 +-1.033638 +.930183 +-.932061 +.973490 +-.896766 +.577543 +-.037110 +-.547202 +.946946 +-1.027886 +.830904 +-.534911 +.337911 +-.345329 +.533802 +-.790495 +.978902 +-.988279 +.762177 +-.322499 +-.213450 +.652705 +-.803871 +.583489 +-.080109 +-.480729 +.858679 +-.927549 +.723148 +-.385068 +.045917 +.244635 +-.510188 +.774341 +-.995983 +1.075368 +-.932902 +.598275 +-.230466 +.035032 +-.124928 +.425140 +-.702777 +.716740 +-.386483 +-.146959 +.619538 +-.832299 +.784892 +-.650526 +.615088 +-.713098 +.795451 +-.656368 +.218338 +.373843 +-.829301 +.907559 +-.594070 +.125057 +.162433 +-.055264 +-.392033 +.896909 +-1.144294 +.997867 +-.575418 +.139492 +.105957 +-.153307 +.161363 +-.292260 +.553506 +-.774213 +.732403 +-.331148 +-.310735 +.915323 +-1.200712 +1.026393 +-.446555 +-.335440 +1.060963 +-1.503813 +1.529860 +-1.132015 +.441235 +.301767 +-.827286 +.951032 +-.666889 +.155711 +.309984 +-.517621 +.430559 +-.193013 +.020019 +-.047746 +.247144 +-.458745 +.518771 +-.382287 +.153958 +-.008019 +.060955 +-.291208 +.560462 +-.712603 +.674465 +-.489834 +.274456 +-.134282 +.104840 +-.144002 +.172134 +-.129356 +.017155 +.098280 +-.125284 +.011404 +.204857 +-.395860 +.413773 +-.192043 +-.189368 +.531984 +-.636947 +.441783 +-.079501 +-.191572 +.152250 +.224092 +-.734814 +1.061574 +-.967481 +.451759 +.241308 +-.767301 +.885116 +-.585078 +.063326 +.424884 +-.719902 +.816577 +-.809847 +.795171 +-.807174 +.825217 +-.812938 +.745931 +-.615959 +.430731 +-.221296 +.042957 +.048953 +-.039004 +-.029645 +.083346 +-.075943 +.028544 +-.016232 +.111571 +-.327747 +.599652 +-.810383 +.843479 +-.634491 +.202056 +.351302 +-.870643 +1.203635 +-1.259302 +1.046139 +-.671985 +.303170 +-.096681 +.131367 +-.368988 +.667348 +-.845213 +.769930 +-.423423 +-.087949 +.582983 +-.887998 +.912956 +-.689764 +.358050 +-.101226 +.055315 +-.232077 +.503979 +-.672969 +.593462 +-.273157 +-.122658 +.376871 +-.368344 +.155863 +.066700 +-.114416 +-.051196 +.294281 +-.408533 +.275647 +.040360 +-.334859 +.411045 +-.226131 +-.072496 +.248463 +-.142967 +-.210989 +.604135 +-.781804 +.600156 +-.108727 +-.483360 +.925498 +-1.051736 +.847180 +-.431941 +-.012157 +.324451 +-.419087 +.297924 +-.033081 +-.264524 +.481492 +-.538541 +.419125 +-.175880 +-.093776 +.294897 +-.380832 +.371673 +-.335499 +.343028 +-.421063 +.531105 +-.587877 +.511162 +-.281560 +-.037017 +.328242 +-.491283 +.500152 +-.411612 +.316231 +-.269963 +.258697 +-.222241 +.117006 +.035480 +-.157805 +.179300 +-.100124 +-.003019 +.040913 +.008801 +-.082664 +.096971 +-.038859 +-.009340 +-.053351 +.235242 +-.415617 +.430412 +-.212777 +-.136069 +.414270 +-.473531 +.333795 +-.164978 +.151085 +-.343568 +.614093 +-.739457 +.555246 +-.070242 +-.534696 +1.017821 +-1.219205 +1.139877 +-.909964 +.677759 +-.504400 +.339916 +-.092811 +-.265840 +.649063 +-.897830 +.892433 +-.646285 +.307209 +-.061480 +.012941 +-.127884 +.282109 +-.363990 +.347606 +-.285678 +.245362 +-.252706 +.289429 +-.327160 +.352378 +-.357716 +.320803 +-.207675 +.006880 +.241171 +-.459958 +.594463 +-.661241 +.739162 +-.899899 +1.135669 +-1.351023 +1.432702 +-1.340105 +1.135907 +-.927650 +.772147 +-.632074 +.426499 +-.128060 +-.186325 +.382263 +-.372991 +.192338 +.021573 +-.110411 +-.021017 +.371170 +-.855913 +1.341244 +-1.678806 +1.748769 +-1.508013 +1.020107 +-.437351 +-.066894 +.377581 +-.479623 +.438755 +-.342620 +.246964 +-.159967 +.064252 +.051217 +-.177490 +.295528 +-.392033 +.460190 +-.484067 +.427140 +-.247586 +-.060306 +.428901 +-.722314 +.796876 +-.587534 +.163356 +.292624 +-.575740 +.569973 +-.306023 +-.069053 +.386933 +-.552165 +.575916 +-.536568 +.504936 +-.491572 +.451785 +-.340346 +.171973 +-.038413 +.061402 +-.307286 +.721732 +-1.136450 +1.353401 +-1.255677 +.872729 +-.357528 +-.105038 +.393842 +-.490466 +.447088 +-.320514 +.129572 +.132389 +-.445991 +.726689 +-.843711 +.697641 +-.304637 +-.181337 +.538374 +-.600478 +.352166 +.071264 +-.473498 +.709337 +-.743126 +.627880 +-.441536 +.237776 +-.040787 +-.132617 +.258191 +-.313319 +.295327 +-.224537 +.125764 +-.006515 +-.145509 +.342340 +-.572682 +.796775 +-.962656 +1.027740 +-.970357 +.791362 +-.516927 +.206488 +.046430 +-.137243 +-.002694 +.358226 +-.813695 +1.184730 +-1.290561 +1.036813 +-.472521 +-.210399 +.747871 +-.925635 +.695990 +-.217881 +-.221275 +.370198 +-.166082 +-.230184 +.545161 +-.575970 +.315793 +.062787 +-.344593 +.419277 +-.332066 +.212951 +-.154298 +.138377 +-.068078 +-.132331 +.433062 +-.701462 +.791016 +-.648323 +.356607 +-.083609 +-.028234 +-.048061 +.213107 +-.312952 +.244221 +-.024610 +-.217029 +.327109 +-.236984 +.020374 +.149730 +-.125507 +-.094702 +.344393 +-.397025 +.136252 +.336701 +-.747287 +.823647 +-.484100 +-.097992 +.600713 +-.760380 +.537992 +-.136245 +-.137954 +.069073 +.340802 +-.887229 +1.296382 +-1.381104 +1.123470 +-.647683 +.121289 +.338084 +-.692148 +.945068 +-1.087806 +1.078456 +-.877325 +.504698 +-.066178 +-.285588 +.433092 +-.361087 +.159091 +.042676 +-.154771 +.168289 +-.130475 +.086487 +-.039967 +-.036567 +.157566 +-.291826 +.375020 +-.359504 +.259263 +-.151115 +.129249 +-.247486 +.490883 +-.789952 +1.057992 +-1.221572 +1.233717 +-1.080873 +.794518 +-.457451 +.181925 +-.055366 +.084600 +-.186354 +.242226 +-.181999 +.030419 +.119902 +-.183397 +.138254 +-.020314 +-.128816 +.300753 +-.506507 +.728850 +-.897878 +.926055 +-.779422 +.521379 +-.284397 +.185455 +-.249646 +.400271 +-.520327 +.534452 +-.448981 +.326898 +-.229474 +.179417 +-.172888 +.217058 +-.343824 +.574041 +-.859904 +1.065440 +-1.023731 +.647474 +-.017611 +-.623657 +.988100 +-.900149 +.397240 +.294546 +-.891980 +1.201978 +-1.188906 +.932714 +-.533379 +.049476 +.485024 +-.999244 +1.355952 +-1.401494 +1.069905 +-.459651 +-.188179 +.613073 +-.684661 +.476240 +-.206904 +.088063 +-.181251 +.367072 +-.443351 +.275583 +.109572 +-.545766 +.832537 +-.843890 +.577296 +-.137889 +-.310520 +.600499 +-.617082 +.351305 +.072870 +-.433849 +.516694 +-.238390 +-.286848 +.797147 +-1.027040 +.857129 +-.374004 +-.192995 +.607065 +-.738009 +.590279 +-.251552 +-.178193 +.619961 +-1.003577 +1.247991 +-1.275137 +1.059330 +-.671574 +.270958 +-.031428 +.043730 +-.259083 +.518461 +-.653802 +.593668 +-.399004 +.205048 +-.115195 +.128628 +-.153847 +.090069 +.092381 +-.333348 +.529573 +-.600767 +.524092 +-.324913 +.050693 +.239814 +-.467239 +.527486 +-.320329 +-.189504 +.915120 +-1.641901 +2.097329 +-2.071891 +1.529034 +-.641155 +-.272876 +.880362 +-.974288 +.556361 +.170440 +-.893723 +1.326338 +-1.325054 +.939843 +-.372737 +-.130165 +.395770 +-.390951 +.211665 +-.010535 +-.092501 +.070076 +.007907 +-.022871 +-.117290 +.416440 +-.776940 +1.043411 +-1.079314 +.832940 +-.358869 +-.207160 +.696711 +-.956361 +.886996 +-.478556 +-.166498 +.844790 +-1.318768 +1.422983 +-1.153516 +.677255 +-.243333 +.045636 +-.122518 +.355647 +-.562736 +.619106 +-.530297 +.415546 +-.418508 +.603199 +-.899616 +1.134360 +-1.131970 +.827921 +-.321450 +-.171204 +.439768 +-.403380 +.154406 +.106360 +-.199174 +.072050 +.184865 +-.419435 +.527501 +-.510969 +.448501 +-.414315 +.417585 +-.409987 +.345803 +-.235215 +.142417 +-.132614 +.215584 +-.332853 +.397058 +-.351254 +.206001 +-.032392 +-.078824 +.064864 +.078691 +-.294161 +.482028 +-.537703 +.394703 +-.059104 +-.383965 +.801937 +-1.071443 +1.125681 +-.963800 +.626053 +-.169591 +-.325759 +.734718 +-.896221 +.687186 +-.125847 +-.582613 +1.124471 +-1.251207 +.932621 +-.372600 +-.129884 +.374848 +-.370586 +.288048 +-.307948 +.482088 +-.707420 +.820013 +-.729228 +.489405 +-.256635 +.164778 +-.215166 +.268385 +-.152474 +-.189879 +.631785 +-.935453 +.922384 +-.609679 +.198850 +.083050 +-.166096 +.192011 +-.386203 +.842614 +-1.397062 +1.705239 +-1.484434 +.744935 +.167496 +-.765870 +.729434 +-.116057 +-.667464 +1.118835 +-.948555 +.242675 +.614135 +-1.186331 +1.234108 +-.810640 +.178680 +.367644 +-.652812 +.667714 +-.520297 +.344825 +-.227111 +.175049 +-.134602 +.033393 +.171785 +-.464783 +.769798 +-.979626 +.999062 +-.784886 +.366592 +.158580 +-.653784 +.985179 +-1.066900 +.893977 +-.547298 +.160637 +.141362 +-.302273 +.351245 +-.362991 +.389184 +-.416020 +.385148 +-.260465 +.081415 +.048507 +-.034088 +-.135555 +.369161 +-.529012 +.517168 +-.330167 +.048722 +.220477 +-.404545 +.487781 +-.493545 +.448668 +-.360655 +.223397 +-.044009 +-.132524 +.225575 +-.156851 +-.092930 +.446465 +-.747043 +.835187 +-.645209 +.257922 +.134449 +-.337416 +.268769 +-.002248 +-.287837 +.440033 +-.399523 +.235204 +-.079893 +.040196 +-.132187 +.274162 +-.334355 +.206319 +.126054 +-.568331 +.954134 +-1.123604 +.998287 +-.611020 +.079892 +.450355 +-.863448 +1.101554 +-1.168481 +1.113190 +-.999691 +.870541 +-.721923 +.510986 +-.200164 +-.188539 +.552868 +-.749880 +.678843 +-.355293 +-.073750 +.387121 +-.390963 +.015388 +.637555 +-1.319582 +1.735581 +-1.685458 +1.182719 +-.473898 +-.076849 +.189733 +.162692 +-.738486 +1.181261 +-1.244891 +.932213 +-.455422 +.060853 +.140161 +-.208890 +.274477 +-.392638 +.494004 +-.460405 +.250590 +.044557 +-.269458 +.332474 +-.278106 +.237794 +-.304038 +.441977 +-.517350 +.416416 +-.152904 +-.131684 +.275911 +-.225532 +.074552 +.013742 +.058676 +-.244173 +.389878 +-.366997 +.182947 +.018536 +-.072821 +-.068132 +.291115 +-.410107 +.317205 +-.072135 +-.143861 +.173251 +-.009366 +-.196190 +.251626 +-.076931 +-.226966 +.445321 +-.405359 +.107416 +.264927 +-.466777 +.360833 +-.012102 +-.361105 +.543608 +-.470819 +.258432 +-.097760 +.104812 +-.243770 +.379354 +-.403988 +.325867 +-.242299 +.227256 +-.239853 +.145151 +.160594 +-.625049 +1.031335 +-1.131341 +.827277 +-.259545 +-.274462 +.515094 +-.405660 +.108331 +.132029 +-.166637 +.033123 +.095279 +-.047948 +-.222002 +.607586 +-.911588 +.954474 +-.669652 +.147755 +.386877 +-.666033 +.505270 +.089348 +-.900847 +1.593815 +-1.877585 +1.648312 +-1.029344 +.294454 +.271972 +-.498236 +.377959 +-.044643 +-.306619 +.512354 +-.512414 +.370589 +-.233006 +.242494 +-.453285 +.793314 +-1.096032 +1.185905 +-.972944 +.507353 +.037143 +-.447935 +.585591 +-.461135 +.228851 +-.092423 +.178404 +-.456575 +.759429 +-.889807 +.747505 +-.394176 +.016797 +.185689 +-.121709 +-.139491 +.409975 +-.494597 +.306923 +.076542 +-.455588 +.616695 +-.449604 +.000227 +.569389 +-1.079541 +1.417699 +-1.555116 +1.502898 +-1.265379 +.843190 +-.281676 +-.292194 +.697546 +-.787422 +.533999 +-.045813 +-.494248 +.920121 +-1.139821 +1.136167 +-.938728 +.606159 +-.225916 +-.093940 +.261265 +-.247093 +.102163 +.078857 +-.218940 +.294981 +-.323172 +.317420 +-.268476 +.164177 +-.025021 +-.088733 +.114549 +-.040119 +-.076088 +.138811 +-.082388 +-.077673 +.245252 +-.298303 +.165407 +.121548 +-.432830 +.607861 +-.549950 +.292242 +.012118 +-.178419 +.105785 +.157085 +-.442531 +.571019 +-.459952 +.160452 +.195095 +-.485530 +.662031 +-.741395 +.753922 +-.700771 +.558307 +-.319661 +.031132 +.213715 +-.322686 +.262361 +-.083588 +-.103517 +.189866 +-.127134 +-.047745 +.236890 +-.341481 +.323414 +-.231569 +.172100 +-.234195 +.415614 +-.602147 +.628941 +-.396241 +-.037624 +.462771 +-.639784 +.464595 +-.058570 +-.295465 +.342363 +-.041813 +-.385249 +.596535 +-.366195 +-.245855 +.917716 +-1.271581 +1.120421 +-.583457 +-.006032 +.328668 +-.279559 +.009429 +.204774 +-.154189 +-.176654 +.622390 +-.957535 +1.034902 +-.857055 +.550472 +-.272165 +.113301 +-.059374 +.027197 +.052072 +-.166242 +.222333 +-.115071 +-.185858 +.593584 +-.939035 +1.061938 +-.901282 +.531978 +-.127562 +-.129951 +.144916 +.042709 +-.282931 +.405746 +-.327384 +.107607 +.084616 +-.084918 +-.142634 +.460146 +-.634640 +.500835 +-.097513 +-.330194 +.481367 +-.206900 +-.374353 +.940123 +-1.168365 +.937721 +-.390429 +-.171458 +.471507 +-.401913 +.050734 +.374624 +-.663241 +.692512 +-.465060 +.090705 +.269368 +-.471307 +.442328 +-.198783 +-.173930 +.561491 +-.856739 +.981048 +-.897917 +.629308 +-.268140 +-.037641 +.145297 +-.001927 +-.302431 +.564012 +-.574920 +.248142 +.326665 +-.934773 +1.357046 +-1.476596 +1.308229 +-.951702 +.521737 +-.107706 +-.225948 +.427676 +-.466980 +.362756 +-.200699 +.109007 +-.193618 +.470091 +-.838051 +1.120960 +-1.155191 +.882359 +-.393657 +-.103397 +.385387 +-.331073 +-.008594 +.432594 +-.697331 +.651006 +-.317962 +-.116897 +.416050 +-.428204 +.176926 +.154474 +-.334480 +.224124 +.140504 +-.574920 +.861665 +-.876767 +.647829 +-.316600 +.043567 +.078176 +-.053151 +-.042141 +.107666 +-.058692 +-.153071 +.524679 +-.984607 +1.386273 +-1.540262 +1.298864 +-.662481 +-.162689 +.820818 +-.977621 +.520008 +.345651 +-1.180352 +1.551584 +-1.283563 +.559565 +.191146 +-.549983 +.346295 +.266906 +-.929498 +1.291753 +-1.192584 +.705551 +-.056002 +-.512647 +.838948 +-.873778 +.659691 +-.298056 +-.076487 +.322388 +-.332933 +.087266 +.318827 +-.693466 +.825110 +-.584607 +.003382 +.714293 +-1.260571 +1.355893 +-.892221 +.016508 +.905884 +-1.452797 +1.358682 +-.656535 +-.343916 +1.230069 +-1.698018 +1.668538 +-1.257296 +.660019 +-.056693 +-.413272 +.638944 +-.551890 +.179779 +.317480 +-.693525 +.740378 +-.409922 +-.160779 +.739910 +-1.135782 +1.276770 +-1.194292 +.952230 +-.602156 +.199698 +.157287 +-.337902 +.256984 +.034839 +-.342280 +.435485 +-.214728 +-.194769 +.503491 +-.443199 +-.051466 +.795064 +-1.467413 +1.805705 +-1.738391 +1.383420 +-.938925 +.562438 +-.318484 +.201633 +-.182555 +.225507 +-.275199 +.252867 +-.093085 +-.195442 +.501124 +-.655608 +.539298 +-.174496 +-.268018 +.566620 +-.591027 +.391058 +-.164459 +.118832 +-.319473 +.631165 +-.800354 +.626423 +-.105960 +-.549432 +1.033588 +-1.123130 +.796867 +-.229104 +-.323980 +.663244 +-.727965 +.589441 +-.383819 +.236519 +-.213744 +.307188 +-.442945 +.510378 +-.412565 +.125903 +.264752 +-.592264 +.696148 +-.526103 +.187592 +.112097 +-.192435 +.021508 +.253287 +-.395377 +.239489 +.181662 +-.637475 +.840269 +-.641236 +.144391 +.351996 +-.555920 +.382287 +-.003206 +-.292500 +.322847 +-.145073 +-.003942 +-.094445 +.465075 +-.919066 +1.190659 +-1.112645 +.702708 +-.123827 +-.419546 +.765057 +-.824252 +.588258 +-.137555 +-.353844 +.658606 +-.595614 +.146112 +.495840 +-.996934 +1.061342 +-.609151 +-.163003 +.890186 +-1.252739 +1.154771 +-.749618 +.305418 +-.017457 +-.095993 +.152053 +-.267702 +.445544 +-.567511 +.492871 +-.179544 +-.264720 +.639245 +-.775470 +.644821 +-.377846 +.184441 +-.227357 +.526598 +-.946844 +1.269161 +-1.304533 +.991590 +-.432228 +-.152744 +.530911 +-.578899 +.351910 +-.055367 +-.075116 +-.079570 +.440653 +-.773798 +.834856 +-.527030 +-.033801 +.586926 +-.878457 +.794304 +-.396924 +-.136212 +.611455 +-.889992 +.911356 +-.691609 +.319128 +.059035 +-.283130 +.259886 +-.031822 +-.222248 +.280090 +-.018595 +-.484812 +.970095 +-1.137755 +.838009 +-.185517 +-.484037 +.802643 +-.593808 +-.010580 +.642073 +-.918485 +.679836 +-.085652 +-.490704 +.702783 +-.450522 +-.063751 +.475349 +-.496835 +.097988 +.487825 +-.925239 +.990049 +-.691069 +.229101 +.161520 +-.367134 +.438320 +-.506990 +.655280 +-.842584 +.941876 +-.847112 +.561470 +-.198197 +-.099750 +.253195 +-.281949 +.263336 +-.258453 +.270263 +-.264613 +.227998 +-.205108 +.275814 +-.482216 +.761960 +-.948746 +.859564 +-.423182 +-.237126 +.837977 +-1.084894 +.850271 +-.262806 +-.355796 +.669923 +-.513803 +-.028023 +.678364 +-1.117989 +1.144864 +-.767056 +.190151 +.295549 +-.476014 +.334525 +-.052335 +-.123546 +.060749 +.161985 +-.322245 +.239488 +.066768 +-.377229 +.440260 +-.179938 +-.220134 +.430696 +-.211657 +-.401880 +1.099161 +-1.481356 +1.306700 +-.626185 +-.272497 +1.056764 +-1.532891 +1.703019 +-1.685604 +1.590008 +-1.450225 +1.251576 +-.999074 +.751659 +-.592872 +.570670 +-.661521 +.784340 +-.847276 +.793702 +-.624754 +.395422 +-.188732 +.076041 +-.078235 +.148634 +-.193878 +.128063 +.069634 +-.330927 +.528988 +-.552281 +.380358 +-.111646 +-.084649 +.073827 +.145644 +-.421543 +.533912 +-.341913 +-.106166 +.584181 +-.825283 +.697853 +-.295444 +-.129188 +.343264 +-.293646 +.123127 +-.028084 +.071764 +-.110349 +-.096953 +.672567 +-1.471732 +2.127217 +-2.268649 +1.764575 +-.818317 +-.146948 +.734480 +-.791550 +.466879 +-.085512 +-.066848 +-.091375 +.422702 +-.699927 +.777369 +-.678951 +.545515 +-.492973 +.500632 +-.423203 +.119831 +.402918 +-.952409 +1.255764 +-1.138491 +.646300 +-.021306 +-.449774 +.606087 +-.485459 +.260585 +-.098753 +.051870 +-.049265 +-.017332 +.191496 +-.411054 +.552332 +-.518491 +.303105 +.012320 +-.313390 +.509738 +-.554552 +.430904 +-.142198 +-.268818 +.693257 +-.970715 +.966003 +-.663893 +.200561 +.211550 +-.419122 +.419036 +-.333169 +.293256 +-.336486 +.395306 +-.376415 +.249613 +-.071278 +-.064601 +.094845 +-.018014 +-.123064 +.276681 +-.401278 +.462149 +-.425256 +.268336 +-.007373 +-.284155 +.487870 +-.488907 +.237188 +.214939 +-.724245 +1.114072 +-1.247463 +1.079687 +-.668445 +.143902 +.343141 +-.672438 +.788999 +-.712642 +.521862 +-.318731 +.188246 +-.167373 +.234239 +-.320251 +.340674 +-.234493 +.000586 +.286991 +-.498886 +.507261 +-.258596 +-.176049 +.608975 +-.811260 +.625010 +-.055711 +-.709685 +1.376965 +-1.678069 +1.495850 +-.914390 +.172271 +.449362 +-.740694 +.628071 +-.177959 +-.439184 +1.001828 +-1.299571 +1.203483 +-.726349 +.035259 +.611795 +-.987861 +1.012528 +-.787499 +.525478 +-.414851 +.504844 +-.682653 +.753728 +-.572968 +.143710 +.376624 +-.767018 +.871242 +-.681961 +.327780 +.021597 +-.261741 +.395121 +-.485515 +.571934 +-.618799 +.545330 +-.306383 +-.047153 +.383372 +-.568384 +.546251 +-.360416 +.110297 +.112070 +-.255925 +.304517 +-.252906 +.101855 +.127757 +-.380907 +.575692 +-.632521 +.507711 +-.213208 +-.183834 +.577442 +-.850551 +.912473 +-.738560 +.394364 +-.021159 +-.223691 +.246767 +-.071119 +-.176609 +.341156 +-.329085 +.157134 +.068778 +-.224248 +.238042 +-.122263 +-.050680 +.204231 +-.309948 +.403654 +-.553858 +.799248 +-1.094297 +1.304351 +-1.266836 +.893518 +-.254099 +-.420645 +.838802 +-.808506 +.366288 +.219126 +-.590944 +.519612 +-.050719 +-.521752 +.847377 +-.747815 +.322376 +.139777 +-.369560 +.293540 +-.054262 +-.122766 +.103568 +.067303 +-.218329 +.188166 +.056528 +-.400030 +.655727 +-.682480 +.463856 +-.110610 +-.202107 +.318719 +-.166943 +-.217783 +.704735 +-1.109047 +1.254619 +-1.045900 +.522327 +.137393 +-.677320 +.873614 +-.639781 +.072609 +.588547 +-1.070537 +1.188143 +-.917463 +.387968 +.193690 +-.639311 +.845318 +-.809060 +.607426 +-.359307 +.182657 +-.147618 +.237733 +-.346101 +.326832 +-.086225 +-.339711 +.778433 +-.999804 +.840087 +-.299564 +-.442382 +1.104624 +-1.435528 +1.333474 +-.896036 +.369760 +-.020723 +-.009058 +-.220658 +.486261 +-.537915 +.257858 +.257768 +-.747129 +.934097 +-.692285 +.123992 +.489497 +-.834579 +.726984 +-.205863 +-.482520 +1.000323 +-1.079973 +.659661 +.073279 +-.760514 +1.046461 +-.766124 +.044485 +.758809 +-1.241774 +1.185571 +-.677842 +.053293 +.315402 +-.243660 +-.169201 +.633981 +-.883715 +.851505 +-.691320 +.636893 +-.810383 +1.122898 +-1.334710 +1.226537 +-.759385 +.117249 +.390206 +-.501240 +.150885 +.483963 +-1.065073 +1.260714 +-.920106 +.162359 +.679541 +-1.242665 +1.344430 +-1.082819 +.750446 +-.615163 +.724805 +-.884859 +.828427 +-.447219 +-.098370 +.478255 +-.427405 +-.058280 +.705942 +-1.136921 +1.103063 +-.631415 +-.008694 +.482627 +-.590586 +.365262 +-.015654 +-.231635 +.279568 +-.200218 +.153274 +-.255003 +.495613 +-.755644 +.895643 +-.846346 +.639531 +-.371766 +.139807 +.004697 +-.060293 +.053500 +-.016936 +-.017053 +.014144 +.055975 +-.200691 +.387583 +-.550209 +.619669 +-.562084 +.394456 +-.170195 +-.051038 +.225441 +-.329533 +.355329 +-.308160 +.208690 +-.092140 +.000154 +.031525 +.014566 +-.125239 +.246548 +-.289504 +.167160 +.143655 +-.557157 +.899577 +-1.003199 +.815155 +-.437753 +.063697 +.144923 +-.140956 +-.015433 +.229434 +-.434025 +.594764 +-.676748 +.629764 +-.420124 +.080616 +.275004 +-.498144 +.484594 +-.232370 +-.159259 +.544421 +-.801722 +.881948 +-.812515 +.666111 +-.517514 +.412393 +-.358187 +.331538 +-.290909 +.189589 +.006351 +-.290910 +.592946 +-.778379 +.700780 +-.290861 +-.363292 +1.009342 +-1.330902 +1.120311 +-.425864 +-.433602 +1.023895 +-1.046469 +.530795 +.166783 +-.574634 +.402748 +.267660 +-1.029427 +1.403938 +-1.139064 +.356998 +.538016 +-1.120820 +1.196542 +-.881462 +.478702 +-.252774 +.263793 +-.362967 +.330513 +-.044195 +-.437509 +.920241 +-1.198110 +1.166317 +-.856357 +.393663 +.072350 +-.414890 +.543819 +-.414294 +.052387 +.420747 +-.811823 +.945417 +-.775232 +.430189 +-.142588 +.095451 +-.297693 +.580998 +-.720782 +.590511 +-.239198 +-.153828 +.402083 +-.421552 +.260396 +-.047075 +-.095004 +.111466 +-.031608 +-.062013 +.087593 +-.014583 +-.115061 +.211490 +-.200023 +.085780 +.028388 +.005181 +-.280769 +.759307 +-1.265218 +1.571100 +-1.524876 +1.144887 +-.624867 +.238952 +-.192214 +.495694 +-.940165 +1.196515 +-1.000967 +.326516 +.565133 +-1.239869 +1.326115 +-.737893 +-.252895 +1.153075 +-1.524233 +1.234668 +-.530935 +-.118319 +.308997 +.061167 +-.749466 +1.336347 +-1.488065 +1.146434 +-.536195 +.002199 +.209674 +-.089952 +-.155286 +.258453 +-.073425 +-.330048 +.716797 +-.842543 +.609744 +-.122405 +-.386701 +.697454 +-.717205 +.506593 +-.220179 +.013723 +.026222 +.097743 +-.318821 +.550308 +-.719828 +.776928 +-.683287 +.413147 +.016764 +-.505899 +.868157 +-.907025 +.541229 +.108756 +-.758532 +1.121923 +-1.092184 +.805481 +-.529668 +.457129 +-.560060 +.621613 +-.417945 +-.092855 +.721598 +-1.172075 +1.237717 +-.923960 +.419397 +.041772 +-.313089 +.378803 +-.304404 +.159872 +.018150 +-.209435 +.373950 +-.442051 +.345424 +-.064064 +-.349514 +.787935 +-1.134512 +1.304763 +-1.261722 +1.008453 +-.578962 +.042535 +.485608 +-.852876 +.916548 +-.617663 +.037834 +.609542 +-1.066757 +1.156526 +-.871716 +.375047 +.090053 +-.323783 +.262448 +.002903 +-.283038 +.392140 +-.247284 +-.084566 +.423170 +-.582542 +.486398 +-.212631 +-.067713 +.212780 +-.200224 +.118494 +-.075480 +.108136 +-.167980 +.184879 +-.141555 +.089255 +-.095138 +.176433 +-.283004 +.340557 +-.311116 +.217983 +-.120814 +.070547 +-.083027 +.144304 +-.230075 +.315489 +-.369828 +.350894 +-.217147 +-.039697 +.360950 +-.616677 +.652901 +-.380308 +-.143521 +.701951 +-1.011127 +.879366 +-.336152 +-.365975 +.894892 +-1.039647 +.831071 +-.497491 +.290621 +-.312013 +.464265 +-.552808 +.449332 +-.189072 +-.066315 +.161863 +-.069644 +-.094878 +.166570 +-.057720 +-.178558 +.390170 +-.434260 +.269649 +.024645 +-.301767 +.422782 +-.311215 +-.024949 +.493089 +-.933948 +1.168478 +-1.073771 +.654729 +-.058074 +-.496558 +.832195 +-.899386 +.774719 +-.585495 +.427155 +-.331717 +.290699 +-.289262 +.313700 +-.336742 +.314541 +-.214869 +.055339 +.089756 +-.131340 +.028736 +.175177 +-.374043 +.456888 +-.363862 +.107998 +.237373 +-.567988 +.781437 +-.809898 +.648744 +-.365951 +.076746 +.111093 +-.150401 +.071348 +.048417 +-.136956 +.168190 +-.167627 +.187452 +-.269591 +.415015 +-.572649 +.656800 +-.592449 +.367858 +-.056628 +-.219562 +.374073 +-.424523 +.483647 +-.662031 +.951267 +-1.187738 +1.145949 +-.707060 +-.021892 +.738611 +-1.118799 +1.017323 +-.558042 +.050665 +.207296 +-.110218 +-.208534 +.482419 +-.490985 +.193021 +.265465 +-.659757 +.828198 +-.751770 +.529921 +-.288043 +.095331 +.049537 +-.171033 +.264996 +-.295743 +.242881 +-.147241 +.102677 +-.188551 +.395228 +-.607977 +.673207 +-.505434 +.156655 +.207359 +-.414857 +.406903 +-.280915 +.221525 +-.360944 +.665560 +-.933694 +.914789 +-.475009 +-.301188 +1.143704 +-1.743696 +1.919729 +-1.697022 +1.255433 +-.791684 +.396224 +-.028370 +-.403082 +.924023 +-1.436568 +1.762262 +-1.752116 +1.382127 +-.769539 +.109146 +.416184 +-.692521 +.681636 +-.403719 +-.069913 +.610194 +-1.038413 +1.177160 +-.934672 +.372272 +.299618 +-.809755 +.954501 +-.694294 +.166242 +.387199 +-.729359 +.725816 +-.391222 +-.122174 +.585862 +-.789118 +.635952 +-.201816 +-.290666 +.582059 +-.521519 +.158832 +.283714 +-.548624 +.498290 +-.180637 +-.233800 +.581582 +-.792784 +.872410 +-.816175 +.563148 +-.050137 +-.671750 +1.374246 +-1.731444 +1.515503 +-.775253 +-.143006 +.770269 +-.784024 +.200328 +.634393 +-1.244495 +1.291014 +-.742560 +-.137049 +.955234 +-1.398797 +1.367084 +-.976953 +.464038 +-.051968 +-.139854 +.114415 +.048749 +-.259817 +.457275 +-.600147 +.638351 +-.508447 +.177356 +.296685 +-.750849 +.989727 +-.905955 +.557917 +-.134456 +-.175090 +.305421 +-.335070 +.389300 +-.512536 +.621383 +-.576810 +.310276 +.106098 +-.503643 +.734051 +-.758187 +.636825 +-.444293 +.195023 +.142676 +-.557118 +.919588 +-1.016978 +.692810 +.005332 +-.799552 +1.321468 +-1.332928 +.872607 +-.223852 +-.270063 +.411060 +-.237730 +-.037507 +.180055 +-.066810 +-.268708 +.680128 +-.992633 +1.075392 +-.876067 +.421707 +.194238 +-.825173 +1.291410 +-1.425138 +1.144786 +-.525013 +-.197191 +.716654 +-.820991 +.518870 +-.040529 +-.301015 +.298092 +.039308 +-.512632 +.869096 +-.943017 +.724072 +-.336689 +-.034190 +.226228 +-.164384 +-.108909 +.451285 +-.688062 +.703823 +-.506727 +.221306 +-.010412 +-.023538 +-.106671 +.294035 +-.412551 +.392519 +-.250317 +.062651 +.089793 +-.171599 +.206826 +-.252339 +.347853 +-.475000 +.555562 +-.497109 +.261316 +.091436 +-.418464 +.570205 +-.479280 +.203704 +.106423 +-.297355 +.296502 +-.140198 +-.066536 +.222750 +-.284262 +.266560 +-.208160 +.130910 +-.029190 +-.108141 +.266489 +-.395359 +.432225 +-.345126 +.161557 +.041271 +-.180425 +.213776 +-.154461 +.045902 +.077072 +-.206259 +.344429 +-.475245 +.549679 +-.503964 +.298473 +.046476 +-.437727 +.729449 +-.776037 +.503860 +.030531 +-.636214 +1.058141 +-1.096240 +.709501 +-.042567 +-.642518 +1.091638 +-1.175592 +.943685 +-.591170 +.353507 +-.372645 +.604275 +-.830600 +.792981 +-.377008 +-.273712 +.812017 +-.897243 +.430508 +.347904 +-.978336 +1.052350 +-.464393 +-.516390 +1.402293 +-1.776473 +1.535874 +-.934302 +.397842 +-.234679 +.437145 +-.713140 +.721646 +-.335774 +-.263213 +.726099 +-.794027 +.472783 +.000669 +-.352455 +.459401 +-.389422 +.290640 +-.247560 +.229935 +-.159012 +.008998 +.157968 +-.251371 +.242207 +-.195686 +.215380 +-.349701 +.542585 +-.671091 +.639492 +-.456423 +.236215 +-.124546 +.201450 +-.426720 +.659667 +-.735884 +.553899 +-.128356 +-.407934 +.848390 +-.990583 +.728358 +-.124195 +-.583564 +1.068778 +-1.076381 +.568805 +.235872 +-.971496 +1.319531 +-1.174683 +.683392 +-.143907 +-.159125 +.085633 +.322409 +-.891530 +1.407684 +-1.700113 +1.693252 +-1.421341 +1.007470 +-.611422 +.361358 +-.296261 +.348134 +-.377196 +.247821 +.089417 +-.552403 +.950626 +-1.077478 +.830031 +-.286963 +-.312773 +.689058 +-.670164 +.280420 +.285034 +-.773169 +.997181 +-.901848 +.551828 +-.072241 +-.413889 +.821241 +-1.103411 +1.230528 +-1.166144 +.870339 +-.340769 +-.331741 +.946424 +-1.257779 +1.106082 +-.531042 +-.223893 +.839693 +-1.104365 +1.024095 +-.786099 +.607029 +-.582264 +.642494 +-.634908 +.454289 +-.122126 +-.236734 +.488195 +-.573582 +.522142 +-.394647 +.219946 +.011214 +-.288711 +.524190 +-.567779 +.314380 +.177759 +-.667705 +.858077 +-.591891 +-.026109 +.683392 +-1.056460 +1.008331 +-.648872 +.230081 +.029983 +-.064162 +-.051035 +.191065 +-.278460 +.311459 +-.326075 +.338751 +-.319330 +.211403 +.019029 +-.343532 +.669786 +-.883304 +.907869 +-.744900 +.466697 +-.171185 +-.065417 +.206620 +-.243755 +.180319 +-.034295 +-.149582 +.303504 +-.367125 +.322308 +-.197078 +.032130 +.156553 +-.375691 +.610898 +-.788698 +.799451 +-.582142 +.202686 +.155837 +-.308028 +.206951 +.005203 +-.091429 +-.103328 +.528279 +-.955598 +1.142560 +-1.003133 +.658523 +-.333863 +.187624 +-.208013 +.252117 +-.187759 +.018055 +.113998 +-.045032 +-.262332 +.666480 +-.934329 +.905803 +-.610367 +.247816 +-.048797 +.119207 +-.378877 +.629591 +-.692878 +.516026 +-.181633 +-.166989 +.416798 +-.529781 +.528714 +-.457740 +.356929 +-.260136 +.196844 +-.180871 +.194477 +-.191312 +.126430 +.009433 +-.184518 +.356953 +-.511800 +.665309 +-.829253 +.970730 +-1.011592 +.876565 +-.553291 +.115411 +.309924 +-.604981 +.712347 +-.647102 +.474246 +-.271478 +.097522 +.023374 +-.097491 +.143039 +-.169847 +.172973 +-.145486 +.097919 +-.062854 +.075792 +-.146914 +.251119 +-.349260 +.424043 +-.496633 +.604412 +-.755972 +.904367 +-.968012 +.887676 +-.674468 +.409257 +-.195313 +.104016 +-.152529 +.316240 +-.547950 +.781804 +-.932419 +.916908 +-.703367 +.349776 +.011644 +-.248781 +.311200 +-.254292 +.186843 +-.186805 +.253003 +-.324004 +.335932 +-.265300 +.128297 +.045655 +-.229161 +.386284 +-.459123 +.384212 +-.141487 +-.202133 +.502668 +-.612990 +.476541 +-.171169 +-.134955 +.288928 +-.246111 +.084785 +.065127 +-.123461 +.115921 +-.144747 +.297793 +-.565374 +.827897 +-.926115 +.766141 +-.386817 +-.055102 +.369641 +-.431164 +.232878 +.121765 +-.471573 +.662335 +-.602359 +.300264 +.126161 +-.484892 +.591247 +-.366276 +-.103927 +.594905 +-.854295 +.737141 +-.285895 +-.293933 +.747177 +-.903440 +.755140 +-.440406 +.147989 +-.004925 +.012593 +-.066267 +.042819 +.102181 +-.295021 +.395312 +-.307608 +.072871 +.137436 +-.135194 +-.137263 +.539331 +-.807871 +.735022 +-.323116 +-.198750 +.514366 +-.419763 +-.054875 +.677455 +-1.164570 +1.337372 +-1.182510 +.800611 +-.309319 +-.212939 +.708618 +-1.090297 +1.231303 +-1.031481 +.515216 +.127095 +-.610889 +.712606 +-.405117 +-.123941 +.586592 +-.763751 +.617103 +-.279366 +-.053211 +.242394 +-.265928 +.191045 +-.104078 +.055788 +-.054787 +.093017 +-.164515 +.255553 +-.324940 +.311739 +-.181772 +-.023650 +.192314 +-.214894 +.075893 +.119957 +-.221667 +.154152 +.013099 +-.113398 +.012146 +.285660 +-.633919 +.844721 +-.806518 +.536902 +-.151393 +-.205333 +.410783 +-.385917 +.111678 +.343246 +-.809412 +1.064018 +-.945935 +.474813 +.123033 +-.530264 +.538291 +-.194067 +-.223202 +.395890 +-.202800 +-.177666 +.383503 +-.133862 +-.544028 +1.298402 +-1.675196 +1.430798 +-.710305 +-.048000 +.421948 +-.304216 +-.034835 +.169492 +.143535 +-.772204 +1.306676 +-1.365743 +.874580 +-.109973 +-.502307 +.671526 +-.403240 +-.052302 +.392620 +-.444009 +.220309 +.142083 +-.491017 +.721807 +-.774233 +.604865 +-.190757 +-.423951 +1.084718 +-1.549912 +1.598965 +-1.169861 +.428004 +.300208 +-.705453 +.676930 +-.364335 +.072382 +-.054233 +.343892 +-.742083 +.962280 +-.830692 +.399979 +.095297 +-.397827 +.382487 +-.105316 +-.267654 +.580470 +-.764177 +.829020 +-.803144 +.686140 +-.460298 +.143475 +.175111 +-.363608 +.333356 +-.118810 +-.119059 +.186723 +.004847 +-.358199 +.634426 +-.611884 +.255330 +.230192 +-.516468 +.372302 +.165539 +-.798098 +1.150500 +-1.010886 +.457347 +.206975 +-.651983 +.709930 +-.440203 +.054681 +.221769 +-.262717 +.075949 +.227598 +-.496650 +.605119 +-.502570 +.234922 +.077401 +-.301042 +.360804 +-.275997 +.136245 +-.033460 +.000831 +-.003559 +-.017187 +.089401 +-.192263 +.285856 +-.352279 +.402214 +-.439264 +.422619 +-.280038 +-.024054 +.420938 +-.741883 +.812252 +-.573240 +.135162 +.285994 +-.504781 +.473617 +-.285903 +.084937 +.040187 +-.092760 +.127845 +-.186453 +.267027 +-.347967 +.421438 +-.493616 +.550347 +-.532607 +.363113 +-.015525 +-.431247 +.810291 +-.958519 +.823030 +-.503893 +.195714 +-.062607 +.131418 +-.279988 +.333118 +-.198591 +-.059496 +.271368 +-.300950 +.163668 +-.021855 +.054722 +-.306711 +.641430 +-.843777 +.788677 +-.537238 +.281844 +-.188420 +.270020 +-.397368 +.433551 +-.370869 +.343839 +-.499077 +.832847 +-1.145689 +1.171023 +-.784036 +.118457 +.513120 +-.838775 +.811480 +-.611190 +.468458 +-.460336 +.447324 +-.202005 +-.377819 +1.144089 +-1.763934 +1.930178 +-1.563941 +.864810 +-.177358 +-.227781 +.307608 +-.238726 +.267444 +-.529251 +.957359 +-1.329995 +1.414191 +-1.110710 +.515052 +.133771 +-.582050 +.694053 +-.516679 +.241617 +-.087722 +.172828 +-.451845 +.756380 +-.904304 +.803701 +-.484991 +.053737 +.385762 +-.773405 +1.079159 +-1.263176 +1.262932 +-1.031341 +.597945 +-.094381 +-.294062 +.431760 +-.320463 +.101529 +.039359 +-.000894 +-.167741 +.316001 +-.318627 +.177891 +-.017777 +-.024491 +-.081895 +.231452 +-.267745 +.113506 +.160862 +-.384051 +.406080 +-.200913 +-.122441 +.396465 +-.494883 +.390412 +-.150039 +-.108513 +.267614 +-.253566 +.069419 +.195367 +-.396703 +.408205 +-.196616 +-.151561 +.474893 +-.623231 +.528056 +-.220650 +-.194234 +.578348 +-.796041 +.750074 +-.419859 +-.116599 +.704458 +-1.179225 +1.441742 +-1.490619 +1.392925 +-1.222916 +1.019192 +-.787225 +.531602 +-.278705 +.066886 +.083316 +-.185218 +.266576 +-.329011 +.326817 +-.196453 +-.075845 +.404953 +-.632494 +.628411 +-.398605 +.105763 +.031249 +.105905 +-.443369 +.766428 +-.877152 +.733288 +-.459177 +.228565 +-.124671 +.095184 +-.030109 +-.118045 +.283304 +-.349186 +.266211 +-.117270 +.067907 +-.236165 +.585132 +-.928830 +1.056353 +-.887083 +.538389 +-.247220 +.195892 +-.370863 +.565985 +-.535325 +.183629 +.350387 +-.781321 +.867895 +-.564128 +.028345 +.496841 +-.827044 +.898897 +-.736742 +.389792 +.086299 +-.595757 +.978103 +-1.054272 +.736772 +-.122169 +-.522238 +.893255 +-.828386 +.404923 +.109214 +-.422398 +.394933 +-.112581 +-.182362 +.251198 +-.006791 +-.437408 +.838832 +-.968423 +.740050 +-.256251 +-.250476 +.545318 +-.515609 +.223771 +.138273 +-.362070 +.333166 +-.077014 +-.276110 +.571997 +-.706240 +.657295 +-.479146 +.270549 +-.134994 +.136881 +-.265669 +.429256 +-.494376 +.363572 +-.045838 +-.330391 +.580872 +-.571645 +.299931 +.104742 +-.459082 +.630345 +-.598156 +.441226 +-.270043 +.158399 +-.115992 +.107415 +-.091169 +.048199 +.013640 +-.070978 +.097820 +-.071769 +-.022715 +.186954 +-.397422 +.603020 +-.741916 +.774359 +-.709110 +.598714 +-.500018 +.426255 +-.329825 +.134705 +.199713 +-.628038 +1.020664 +-1.224087 +1.147430 +-.823429 +.403073 +-.080864 +-.008198 +-.143317 +.425733 +-.691844 +.847595 +-.890341 +.876028 +-.852870 +.820821 +-.744500 +.596818 +-.388567 +.159996 +.049405 +-.220061 +.344763 +-.408315 +.380236 +-.232482 +-.028735 +.341016 +-.593909 +.672257 +-.519233 +.185282 +.174960 +-.371453 +.282805 +.069618 +-.532058 +.910942 +-1.084286 +1.054526 +-.914506 +.764809 +-.651372 +.561109 +-.458575 +.319426 +-.136333 +-.088964 +.341910 +-.577373 +.714806 +-.670334 +.415176 +-.017145 +-.373700 +.595021 +-.556245 +.284923 +.091559 +-.416991 +.589286 +-.609455 +.568390 +-.577490 +.684584 +-.832072 +.892019 +-.761358 +.450420 +-.094108 +-.133310 +.143626 +-.003302 +-.116445 +.079036 +.095009 +-.225556 +.104186 +.335932 +-.944323 +1.435829 +-1.573616 +1.315969 +-.820282 +.309811 +.085951 +-.390856 +.700756 +-1.038497 +1.279020 +-1.223602 +.776356 +-.077042 +-.538654 +.749460 +-.481107 +-.024851 +.377229 +-.321897 +-.070618 +.468130 +-.546084 +.251563 +.150573 +-.291994 +.009871 +.493366 +-.772108 +.458333 +.452390 +-1.558377 +2.286034 +-2.242105 +1.451461 +-.332909 +-.561327 +.871421 +-.618608 +.148615 +.122483 +.011787 +-.427691 +.784689 +-.785130 +.390435 +.159070 +-.524258 +.503643 +-.151680 +-.292703 +.591033 +-.654633 +.558361 +-.436341 +.362374 +-.310168 +.207364 +-.019803 +-.212294 +.411832 +-.533364 +.595674 +-.648788 +.709802 +-.732894 +.649209 +-.445604 +.208743 +-.083914 +.169954 +-.431366 +.701140 +-.779345 +.558456 +-.090103 +-.444036 +.826889 +-.904912 +.646011 +-.145802 +-.409561 +.813030 +-.921874 +.724448 +-.347159 +-.013315 +.197428 +-.162849 +-.012244 +.196020 +-.285638 +.249923 +-.116715 +-.066561 +.260077 +-.431327 +.543843 +-.560152 +.466241 +-.297666 +.139039 +-.087418 +.199606 +-.458566 +.780674 +-1.055533 +1.190873 +-1.138643 +.899702 +-.517651 +.069137 +.352983 +-.668430 +.840969 +-.891044 +.873888 +-.833384 +.764466 +-.617771 +.350673 +.008216 +-.333684 +.451213 +-.242668 +-.253461 +.822755 +-1.170260 +1.086586 +-.581859 +-.107892 +.657161 +-.844397 +.672537 +-.335994 +.065152 +.033190 +-.023674 +.054422 +-.213868 +.448960 +-.605795 +.553738 +-.291917 +-.042652 +.266962 +-.271807 +.083372 +.169482 +-.348932 +.393049 +-.337300 +.269410 +-.258501 +.309325 +-.366943 +.359284 +-.242448 +.018824 +.277168 +-.605867 +.934520 +-1.222740 +1.397285 +-1.349994 +.984619 +-.298953 +-.553041 +1.284180 +-1.599424 +1.361538 +-.684813 +-.122807 +.742828 +-1.030059 +1.065610 +-1.048001 +1.117333 +-1.253913 +1.321489 +-1.202583 +.904557 +-.554021 +.298279 +-.204028 +.231439 +-.289297 +.313292 +-.304583 +.309149 +-.366714 +.472482 +-.575323 +.607393 +-.524661 +.337756 +-.117629 +-.032663 +.034861 +.107965 +-.298270 +.398408 +-.326630 +.124176 +.067980 +-.115786 +.001689 +.154811 +-.187645 +.014490 +.299248 +-.593316 +.735720 +-.714117 +.625842 +-.582500 +.611804 +-.634932 +.532455 +-.243910 +-.174408 +.571874 +-.785833 +.727246 +-.420783 +-.014042 +.420020 +-.666531 +.697042 +-.548207 +.333932 +-.195274 +.230831 +-.440543 +.718096 +-.903344 +.867993 +-.584258 +.136356 +.326960 +-.665807 +.805651 +-.752553 +.569454 +-.333479 +.098050 +.122222 +-.338051 +.552731 +-.733279 +.809087 +-.705709 +.395848 +.064281 +-.538124 +.853243 +-.867823 +.532091 +.078738 +-.774275 +1.305520 +-1.454832 +1.127094 +-.399946 +-.496123 +1.264434 +-1.658866 +1.580587 +-1.114984 +.494031 +.003444 +-.177831 +.006851 +.338796 +-.585674 +.516700 +-.108424 +-.446182 +.854816 +-.910670 +.619696 +-.181978 +-.154048 +.252819 +-.151385 +-.013002 +.132071 +-.200316 +.279673 +-.402068 +.510167 +-.498701 +.322689 +-.071810 +-.068184 +-.048088 +.396644 +-.772666 +.918786 +-.702929 +.212494 +.304723 +-.603891 +.587191 +-.332134 +.006101 +.248639 +-.373539 +.376222 +-.280517 +.098733 +.157873 +-.454390 +.723312 +-.880386 +.854444 +-.617914 +.209848 +.258217 +-.628286 +.759963 +-.609479 +.272079 +.057558 +-.199261 +.104271 +.114767 +-.273015 +.259308 +-.121754 +.018088 +-.067536 +.229556 +-.319429 +.157687 +.265173 +-.747171 +.999292 +-.846981 +.358899 +.190773 +-.495506 +.400271 +.026059 +-.562862 +.984085 +-1.168999 +1.112985 +-.863329 +.461871 +.046926 +-.563392 +.915502 +-.934007 +.582288 +-.029095 +-.423471 +.528747 +-.265204 +-.146446 +.394742 +-.282135 +-.166060 +.749549 +-1.234421 +1.470784 +-1.418727 +1.105879 +-.586276 +-.059178 +.702309 +-1.176424 +1.334272 +-1.122167 +.615711 +.009702 +-.553062 +.860962 +-.868053 +.602842 +-.171430 +-.274204 +.583257 +-.660537 +.504173 +-.202790 +-.108356 +.306011 +-.319944 +.144191 +.171541 +-.536443 +.838027 +-.974563 +.898298 +-.648025 +.342966 +-.130404 +.112350 +-.294504 +.588717 +-.863370 +1.006823 +-.966715 +.754142 +-.427843 +.077394 +.193694 +-.298384 +.211000 +.000981 +-.195765 +.232756 +-.060441 +-.249283 +.549122 +-.710097 +.688953 +-.525284 +.288314 +-.030597 +-.213777 +.400992 +-.464756 +.345410 +-.042501 +-.355737 +.699266 +-.850647 +.761131 +-.497515 +.199489 +.005545 +-.072498 +.046354 +-.007764 +.004523 +-.024126 +.022645 +.025595 +-.106906 +.190313 +-.263126 +.338984 +-.429959 +.512578 +-.524384 +.399192 +-.115153 +-.277113 +.661914 +-.896212 +.865319 +-.541688 +.023717 +.478949 +-.733478 +.617592 +-.216988 +-.198811 +.336704 +-.082884 +-.398510 +.760219 +-.708416 +.214388 +.457052 +-.927966 +.966351 +-.636089 +.235866 +-.082832 +.303713 +-.774224 +1.226463 +-1.426572 +1.296638 +-.920801 +.465081 +-.082990 +-.141925 +.207727 +-.173516 +.120185 +-.103710 +.121723 +-.117640 +.027134 +.162961 +-.389729 +.546812 +-.553071 +.407168 +-.189672 +.013745 +.040862 +.029325 +-.150972 +.211406 +-.115353 +-.161093 +.543211 +-.877927 +1.005944 +-.857022 +.510280 +-.167011 +.035551 +-.195990 +.539685 +-.834463 +.876386 +-.623633 +.219677 +.106625 +-.190804 +.030223 +.228482 +-.392537 +.343147 +-.098699 +-.207312 +.407725 +-.389580 +.143648 +.237903 +-.603715 +.803362 +-.746655 +.445073 +-.016599 +-.358184 +.518855 +-.408122 +.104569 +.221073 +-.404828 +.382209 +-.215494 +.040728 +.025753 +.043580 +-.184040 +.292584 +-.293940 +.176879 +.010221 +-.186771 +.269245 +-.195552 +-.052146 +.429819 +-.832838 +1.127571 +-1.205635 +1.033749 +-.670242 +.235918 +.147949 +-.422514 +.618832 +-.827253 +1.119515 +-1.470849 +1.742629 +-1.754814 +1.411842 +-.794915 +.143489 +.276717 +-.335425 +.117022 +.139795 +-.199261 +-.027505 +.447383 +-.871224 +1.147093 +-1.241413 +1.218448 +-1.152309 +1.054770 +-.882165 +.609175 +-.294322 +.064346 +-.017876 +.130201 +-.253702 +.232350 +-.042647 +-.164360 +.172812 +.113497 +-.563529 +.887986 +-.844724 +.425793 +.122053 +-.465725 +.420416 +-.076630 +-.273854 +.355138 +-.103835 +-.299641 +.582616 +-.592446 +.404250 +-.242791 +.283353 +-.491667 +.633961 +-.457827 +-.089451 +.774242 +-1.200366 +1.069291 +-.396519 +-.474252 +1.079964 +-1.132748 +.698956 +-.140765 +-.136648 +-.044143 +.526854 +-.943745 +.973093 +-.554454 +-.077018 +.550433 +-.600308 +.232284 +.286622 +-.596833 +.461314 +.104823 +-.857695 +1.469806 +-1.699305 +1.487746 +-.950701 +.291698 +.298118 +-.706925 +.922109 +-1.011777 +1.079269 +-1.201099 +1.369797 +-1.478920 +1.379242 +-.988878 +.384349 +.210164 +-.553631 +.556364 +-.352247 +.201138 +-.282301 +.541253 +-.724430 +.587614 +-.115064 +-.435169 +.710562 +-.535417 +.061283 +.327318 +-.285667 +-.242059 +.979743 +-1.507151 +1.536557 +-1.082441 +.419775 +.116233 +-.332790 +.249621 +-.017873 +-.217449 +.395034 +-.513225 +.560853 +-.490993 +.268958 +.059664 +-.363543 +.508548 +-.466443 +.350530 +-.333953 +.505845 +-.780087 +.938424 +-.786355 +.308738 +.295395 +-.732972 +.810723 +-.563586 +.224435 +-.056700 +.170977 +-.455335 +.663509 +-.590571 +.207668 +.333061 +-.811623 +1.076653 +-1.107238 +.974321 +-.756997 +.493130 +-.195368 +-.103808 +.336996 +-.436278 +.379974 +-.202292 +-.042192 +.315942 +-.593644 +.821831 +-.899547 +.728218 +-.309623 +-.192168 +.502260 +-.392552 +-.155287 +.904304 +-1.481552 +1.592739 +-1.192411 +.499992 +.143355 +-.478651 +.464241 +-.266654 +.127413 +-.199400 +.453812 +-.707188 +.743111 +-.450799 +-.101697 +.700067 +-1.100160 +1.159006 +-.904343 +.505410 +-.169078 +.027391 +-.080740 +.218669 +-.291601 +.188109 +.113998 +-.531385 +.895044 +-1.010906 +.755871 +-.171463 +-.510834 +.958766 +-.916888 +.368753 +.431989 +-1.099102 +1.339032 +-1.116841 +.654243 +-.268389 +.167992 +-.343642 +.612609 +-.767119 +.711080 +-.494627 +.241329 +-.040825 +-.106317 +.258524 +-.458256 +.684336 +-.872875 +.983230 +-1.042392 +1.119494 +-1.246316 +1.355562 +-1.304897 +.985495 +-.434445 +-.148697 +.513830 +-.527293 +.266139 +.038220 +-.167270 +.064875 +.142671 +-.261429 +.181436 +.050384 +-.276101 +.338116 +-.167137 +-.200865 +.661169 +-1.082232 +1.328657 +-1.281357 +.880392 +-.182764 +-.613944 +1.230117 +-1.437793 +1.193433 +-.673756 +.176308 +.057516 +.020609 +-.259516 +.429167 +-.377432 +.116089 +.210618 +-.435148 +.468524 +-.330519 +.107392 +.112610 +-.273500 +.344930 +-.307358 +.163577 +.027164 +-.138512 +.030259 +.349090 +-.884383 +1.317382 +-1.380911 +.966149 +-.209595 +-.563696 +1.009017 +-.940651 +.420112 +.283957 +-.829208 +.952540 +-.574634 +-.179266 +1.040204 +-1.708160 +1.970176 +-1.778017 +1.254962 +-.630995 +.137554 +.087612 +-.041015 +-.175636 +.428720 +-.621434 +.718168 +-.722537 +.641281 +-.472154 +.224625 +.052257 +-.270635 +.344056 +-.241634 +.014677 +.227588 +-.379649 +.398349 +-.320728 +.232112 +-.207326 +.262819 +-.347052 +.371942 +-.266061 +.020672 +.295046 +-.558433 +.647552 +-.499944 +.147025 +.293560 +-.664445 +.832528 +-.742971 +.441139 +-.052874 +-.270326 +.417588 +-.362118 +.156908 +.111821 +-.377011 +.608278 +-.786283 +.867862 +-.787285 +.505306 +-.067124 +-.388895 +.697278 +-.769274 +.658958 +-.533149 +.553902 +-.750419 +.976771 +-.999593 +.667488 +-.044633 +-.596055 +.929614 +-.782215 +.236367 +.436260 +-.958593 +1.206252 +-1.226940 +1.128903 +-.953172 +.648651 +-.167721 +-.414604 +.882150 +-.998403 +.681445 +-.091351 +-.451130 +.666445 +-.495586 +.127042 +.147081 +-.139684 +-.107713 +.371077 +-.417754 +.175854 +.221861 +-.539912 +.599190 +-.373351 +-.032495 +.475859 +-.852983 +1.104836 +-1.180814 +1.027919 +-.636548 +.102792 +.368457 +-.554877 +.355975 +.118584 +-.586738 +.748539 +-.465072 +-.151256 +.793988 +-1.134033 +1.002272 +-.478073 +-.160768 +.588804 +-.596279 +.183212 +.450957 +-1.004832 +1.210884 +-.952549 +.315357 +.452516 +-1.055611 +1.286752 +-1.109673 +.644315 +-.073289 +-.460909 +.899154 +-1.234251 +1.451494 +-1.505015 +1.354489 +-1.027007 +.641242 +-.358974 +.289830 +-.416684 +.599050 +-.656365 +.476845 +-.081566 +-.392227 +.769807 +-.927447 +.843082 +-.593098 +.307194 +-.104090 +.031768 +-.038486 +-.001568 +.206778 +-.590434 +1.016191 +-1.254420 +1.117834 +-.586926 +-.165898 +.871927 +-1.308885 +1.389873 +-1.153656 +.696553 +-.122324 +-.456530 +.901079 +-1.069672 +.892469 +-.439068 +-.093400 +.484761 +-.620796 +.550239 +-.427319 +.387139 +-.451449 +.531462 +-.513785 +.354098 +-.107672 +-.117388 +.239288 +-.254736 +.233182 +-.265527 +.404301 +-.631380 +.868160 +-1.018358 +1.015997 +-.851964 +.568739 +-.234570 +-.083537 +.337794 +-.510295 +.618948 +-.710997 +.835121 +-1.000886 +1.154660 +-1.200789 +1.063750 +-.750670 +.365876 +-.061895 +-.042746 +-.073418 +.326543 +-.572736 +.677005 +-.572283 +.286318 +.071119 +-.356366 +.458000 +-.349645 +.098170 +.181081 +-.393473 +.510122 +-.558388 +.573365 +-.558897 +.494376 +-.376475 +.247515 +-.173721 +.187214 +-.247000 +.263266 +-.171503 +-.006367 +.170048 +-.214417 +.106123 +.100686 +-.316249 +.481072 +-.586011 +.639257 +-.628334 +.527385 +-.345863 +.162978 +-.097848 +.226083 +-.511270 +.815069 +-.984350 +.947452 +-.743955 +.470276 +-.194319 +-.085298 +.403669 +-.756231 +1.061628 +-1.203621 +1.124626 +-.892135 +.674569 +-.634271 +.814002 +-1.102428 +1.304873 +-1.268234 +.971838 +-.527433 +.097975 +.203117 +-.365283 +.458420 +-.556844 +.666117 +-.706475 +.568483 +-.204833 +-.308014 +.787842 +-1.038276 +.954796 +-.577457 +.062516 +.399258 +-.665291 +.685693 +-.502874 +.219781 +.046511 +-.211755 +.255284 +-.219382 +.175098 +-.175696 +.228768 +-.302661 +.354470 +-.351597 +.273580 +-.107139 +-.144423 +.437247 +-.677261 +.754473 +-.613532 +.309695 +.005367 +-.175068 +.145865 +-.006121 +-.083194 +.017699 +.163357 +-.304994 +.258277 +.004108 +-.372743 +.693835 +-.884058 +.968864 +-1.019162 +1.056323 +-1.020721 +.835565 +-.503661 +.140130 +.099707 +-.140655 +.050701 +.014124 +.056816 +-.228202 +.338993 +-.233181 +-.102821 +.509085 +-.756190 +.706726 +-.411171 +.069657 +.105718 +-.023699 +-.247204 +.544862 +-.723801 +.732936 +-.623836 +.502790 +-.465376 +.546341 +-.700258 +.817036 +-.769804 +.481376 +.019475 +-.587307 +1.015380 +-1.140530 +.942529 +-.571469 +.269903 +-.224272 +.439682 +-.733148 +.866395 +-.732516 +.454638 +-.305573 +.493545 +-.974786 +1.448928 +-1.558067 +1.146631 +-.382510 +-.356953 +.748351 +-.733958 +.525814 +-.411141 +.519144 +-.729336 +.782480 +-.497491 +-.076453 +.684381 +-1.039367 +1.010933 +-.693352 +.319998 +-.102576 +.115163 +-.288114 +.486380 +-.596505 +.567562 +-.405359 +.150924 +.136397 +-.395267 +.583686 +-.693597 +.739350 +-.724451 +.620841 +-.392981 +.055168 +.293252 +-.504787 +.481349 +-.257207 +-.010159 +.147925 +-.093710 +-.064355 +.170781 +-.142563 +.048015 +-.053908 +.278683 +-.669881 +1.009300 +-1.052436 +.704791 +-.106579 +-.440126 +.657488 +-.468115 +.043332 +.308744 +-.340733 +.019216 +.462420 +-.811516 +.814658 +-.454757 +-.094761 +.580852 +-.813886 +.762183 +-.550773 +.368905 +-.341901 +.449109 +-.546958 +.485354 +-.231652 +-.098220 +.331437 +-.379363 +.307894 +-.274088 +.381569 +-.580017 +.699453 +-.595495 +.286511 +.035471 +-.139331 +-.062941 +.427566 +-.661372 +.526288 +-.022227 +-.587367 +.934565 +-.786230 +.200288 +.507613 +-.962757 +.961499 +-.585176 +.134217 +.063417 +.154300 +-.698965 +1.291765 +-1.621897 +1.511846 +-1.004433 +.332048 +.212129 +-.431801 +.328764 +-.090199 +-.033166 +-.112021 +.479632 +-.847762 +.958781 +-.690750 +.148758 +.389041 +-.642440 +.506197 +-.111678 +-.272172 +.429265 +-.339717 +.170842 +-.126636 +.275953 +-.493926 +.559586 +-.329369 +-.147710 +.654970 +-.944409 +.880153 +-.496150 +-.050109 +.573222 +-.935337 +1.069887 +-.971514 +.685821 +-.309388 +-.022542 +.184365 +-.132262 +-.052560 +.200655 +-.165116 +-.067951 +.359346 +-.514253 +.428046 +-.165469 +-.092571 +.192655 +-.125201 +.018909 +-.020692 +.164118 +-.337154 +.375503 +-.202418 +-.100837 +.351007 +-.398232 +.232243 +.020661 +-.199686 +.224063 +-.131532 +.021301 +.039653 +-.062635 +.099408 +-.161725 +.180579 +-.055187 +-.241912 +.597903 +-.807850 +.721446 +-.378338 +.013102 +.094985 +.174493 +-.680966 +1.106046 +-1.164263 +.786692 +-.149296 +-.458372 +.812261 +-.852500 +.658526 +-.359167 +.066176 +.134304 +-.169289 +-.002930 +.344962 +-.718546 +.938123 +-.880928 +.573093 +-.178710 +-.104579 +.165255 +-.026586 +-.199876 +.405725 +-.548591 +.649000 +-.741558 +.828517 +-.870237 +.812184 +-.622882 +.316857 +.047396 +-.387962 +.625517 +-.706246 +.619359 +-.406596 +.155238 +.033450 +-.094740 +.041181 +.040704 +-.047001 +-.067560 +.251116 +-.387377 +.377828 +-.210914 +-.033668 +.244066 +-.348628 +.347433 +-.289609 +.227168 +-.186371 +.169712 +-.170468 +.176063 +-.160413 +.085685 +.072978 +-.295699 +.513177 +-.645105 +.656019 +-.580479 +.490806 +-.432865 +.386784 +-.290554 +.106499 +.131249 +-.336403 +.444445 +-.473483 +.510393 +-.625815 +.790799 +-.876478 +.751346 +-.402468 +-.022817 +.301135 +-.287827 +.027068 +.267904 +-.354112 +.122393 +.324636 +-.729684 +.835342 +-.539757 +-.040231 +.635665 +-.980372 +.958733 +-.656213 +.287452 +-.059092 +.063495 +-.265514 +.567264 +-.881000 +1.153212 +-1.343396 +1.405699 +-1.307666 +1.067532 +-.760732 +.473450 +-.240541 +.030201 +.201867 +-.437342 +.578157 +-.519150 +.256585 +.066240 +-.232584 +.102126 +.275678 +-.677148 +.844087 +-.648970 +.172096 +.354053 +-.683752 +.686271 +-.395610 +-.026021 +.375029 +-.499369 +.363498 +-.060344 +-.241729 +.397997 +-.376770 +.275954 +-.249158 +.392394 +-.676578 +.973618 +-1.148106 +1.139326 +-.979662 +.755197 +-.553628 +.433676 +-.413600 +.462819 +-.498412 +.409189 +-.117805 +-.348572 +.835929 +-1.126102 +1.061074 +-.651522 +.090286 +.351060 +-.483176 +.312675 +-.028887 +-.131021 +.046029 +.211927 +-.442817 +.474622 +-.292958 +.048197 +.059658 +.072695 +-.382504 +.691463 +-.828651 +.734110 +-.477251 +.192725 +.009905 +-.099526 +.113510 +-.105994 +.101340 +-.088677 +.054761 +-.017493 +.020132 +-.083275 +.157588 +-.131163 +-.095904 +.519555 +-.998806 +1.319951 +-1.321027 +.991524 +-.479197 +.004008 +.260756 +-.268300 +.102595 +.080286 +-.133983 +-.013116 +.331649 +-.707256 +.988031 +-1.045972 +.832102 +-.405648 +-.078514 +.430049 +-.513818 +.327819 +-.014990 +-.216660 +.229010 +-.055896 +-.109550 +.048260 +.318514 +-.852748 +1.276809 +-1.355407 +1.053625 +-.558078 +.147179 +-.003194 +.097309 +-.224584 +.161108 +.167591 +-.624265 +.947330 +-.929107 +.562915 +-.058957 +-.281303 +.247638 +.156767 +-.723497 +1.160985 +-1.251102 +.954766 +-.421921 +-.087952 +.331529 +-.196000 +-.250547 +.797332 +-1.198730 +1.293157 +-1.068102 +.642681 +-.192333 +-.131057 +.243066 +-.133855 +-.137700 +.448829 +-.630912 +.526321 +-.080811 +-.580813 +1.169602 +-1.369353 +1.035474 +-.322749 +-.372928 +.654424 +-.396838 +-.144588 +.491756 +-.275070 +-.490511 +1.388124 +-1.862942 +1.589231 +-.688917 +-.343177 +.949258 +-.842796 +.155163 +.679189 +-1.202211 +1.189028 +-.734435 +.145895 +.261884 +-.336143 +.132858 +.157712 +-.340566 +.322606 +-.148947 +-.036756 +.080372 +.090905 +-.420291 +.745928 +-.890406 +.765423 +-.425814 +.035837 +.231095 +-.291412 +.185297 +-.031853 +-.053040 +.017061 +.120611 +-.301305 +.465984 +-.578476 +.629734 +-.630453 +.595542 +-.524881 +.392280 +-.158552 +-.190749 +.608367 +-.984982 +1.198673 +-1.185058 +.976056 +-.675371 +.387512 +-.154070 +-.056369 +.301087 +-.598195 +.892489 +-1.075902 +1.049021 +-.785804 +.363936 +.058776 +-.314311 +.307170 +-.065707 +-.268696 +.511317 +-.522643 +.267020 +.184272 +-.694428 +1.115885 +-1.335053 +1.301279 +-1.040574 +.646926 +-.243453 +-.076622 +.294914 +-.463984 +.652532 +-.878827 +1.083746 +-1.165441 +1.050526 +-.751504 +.371590 +-.054137 +-.093267 +.058005 +.068298 +-.138227 +.030819 +.279483 +-.710168 +1.121744 +-1.395691 +1.484542 +-1.405595 +1.197868 +-.888862 +.501318 +-.086564 +-.256635 +.408080 +-.288366 +-.083436 +.579931 +-1.016388 +1.237190 +-1.188313 +.932613 +-.601035 +.313656 +-.123942 +.019343 +.034059 +-.047706 +.007193 +.091327 +-.203018 +.236019 +-.100892 +-.223551 +.654720 +-1.028301 +1.170847 +-.987244 +.520041 +.052174 +-.485879 +.589233 +-.327431 +-.148823 +.584291 +-.771262 +.674733 +-.437935 +.259268 +-.234245 +.289902 +-.265658 +.069964 +.224202 +-.428037 +.387726 +-.108341 +-.249550 +.489172 +-.508328 +.340495 +-.091217 +-.158118 +.392793 +-.628193 +.844683 +-.967824 +.920968 +-.703939 +.419188 +-.207685 +.138614 +-.146523 +.078980 +.174160 +-.573144 +.934967 +-1.057366 +.867144 +-.478455 +.116425 +.035266 +.050688 +-.246672 +.374591 +-.326349 +.113299 +.173726 +-.439512 +.624194 +-.688351 +.584890 +-.272022 +-.228560 +.783389 +-1.172972 +1.199037 +-.808354 +.142546 +.530303 +-.963055 +1.060344 +-.907773 +.685791 +-.533969 +.463821 +-.379992 +.188710 +.092691 +-.313542 +.280784 +.094230 +-.695579 +1.228078 +-1.367952 +.955005 +-.107634 +-.817045 +1.402218 +-1.386624 +.790608 +.114877 +-.966489 +1.492169 +-1.616576 +1.445706 +-1.164857 +.926172 +-.789326 +.731660 +-.697936 +.646419 +-.565034 +.460909 +-.342059 +.206496 +-.043254 +-.156659 +.382194 +-.585841 +.686330 +-.605145 +.328099 +.050322 +-.348631 +.396551 +-.154766 +-.233633 +.516026 +-.493059 +.159616 +.284068 +-.567761 +.538681 +-.263237 +-.030295 +.121197 +.050894 +-.358133 +.589722 +-.600913 +.397305 +-.108141 +-.112428 +.176885 +-.094176 +-.062204 +.210154 +-.301549 +.336408 +-.352354 +.398837 +-.505947 +.661107 +-.808229 +.873882 +-.806509 +.603697 +-.310601 +-.005416 +.283292 +-.482705 +.583087 +-.578563 +.478711 +-.314284 +.138742 +-.017460 +.005318 +-.122364 +.340781 +-.591519 +.788420 +-.859001 +.770275 +-.542135 +.245233 +.019120 +-.156511 +.122749 +.050764 +-.270821 +.433223 +-.479888 +.423793 +-.326674 +.249073 +-.209594 +.177886 +-.101966 +-.048688 +.247637 +-.406566 +.414097 +-.208874 +-.155757 +.510858 +-.659193 +.506462 +-.141427 +-.208283 +.328960 +-.175054 +-.093539 +.225925 +-.065670 +-.328111 +.710228 +-.806002 +.485980 +.151979 +-.834341 +1.254491 +-1.221873 +.745689 +-.023963 +-.647772 +1.005422 +-.928887 +.489509 +.091065 +-.553318 +.728197 +-.613446 +.356089 +-.152122 +.124264 +-.252626 +.401517 +-.424353 +.276269 +-.054866 +-.064867 +-.037505 +.321110 +-.585278 +.591808 +-.231611 +-.381077 +.962298 +-1.232969 +1.098857 +-.710523 +.359287 +-.280882 +.502370 +-.835378 +1.014814 +-.882559 +.491235 +-.063240 +-.160298 +.076209 +.220457 +-.506912 +.582735 +-.398790 +.082514 +.152618 +-.149786 +-.089862 +.408494 +-.589000 +.485193 +-.109368 +-.368982 +.710028 +-.730191 +.401833 +.129838 +-.625648 +.883056 +-.838367 +.576983 +-.252266 +-.020827 +.218070 +-.375208 +.516754 +-.615816 +.619940 +-.512703 +.347988 +-.222060 +.208719 +-.315152 +.493348 +-.687636 +.868208 +-1.021574 +1.117914 +-1.101513 +.926982 +-.612692 +.257611 +.004387 +-.082617 +-.022175 +.236524 +-.478201 +.706061 +-.914315 +1.085615 +-1.158070 +1.048842 +-.722284 +.244822 +.227719 +-.531781 +.591680 +-.460506 +.278055 +-.180389 +.227436 +-.394870 +.620739 +-.856715 +1.079329 +-1.261358 +1.343879 +-1.249579 +.936737 +-.450724 +-.075430 +.480502 +-.655560 +.588172 +-.344301 +.010494 +.352771 +-.712740 +1.031224 +-1.239362 +1.256333 +-1.046696 +.672367 +-.288601 +.071951 +-.120945 +.397472 +-.752920 +1.022852 +-1.121682 +1.069613 +-.939927 +.780576 +-.584065 +.331491 +-.062942 +-.106689 +.061681 +.202262 +-.530640 +.689204 +-.526166 +.093924 +.372651 +-.613172 +.516551 +-.181289 +-.177023 +.388251 +-.429348 +.395726 +-.385255 +.404426 +-.375342 +.227122 +.017712 +-.242168 +.319008 +-.204600 +-.037834 +.297985 +-.496963 +.609855 +-.621243 +.477578 +-.108471 +-.482922 +1.143844 +-1.603352 +1.620183 +-1.149841 +.401964 +.264926 +-.544374 +.344578 +.184988 +-.760577 +1.120898 +-1.140289 +.855141 +-.417531 +.015373 +.206185 +-.199177 +.025546 +.180480 +-.288311 +.245443 +-.103886 +-.021340 +.035527 +.066913 +-.194223 +.214556 +-.041109 +-.306076 +.696649 +-.948010 +.919308 +-.596732 +.121859 +.265678 +-.354691 +.090043 +.384677 +-.810282 +.973356 +-.832391 +.514840 +-.191481 +-.063268 +.303909 +-.612540 +.959645 +-1.164463 +1.009547 +-.426362 +-.404712 +1.135720 +-1.464310 +1.319620 +-.883193 +.437452 +-.166310 +.056821 +.040645 +-.260812 +.603548 +-.924622 +1.027236 +-.783079 +.212387 +.509598 +-1.115595 +1.353067 +-1.097203 +.422654 +.407981 +-1.050055 +1.237973 +-.920551 +.289789 +.325771 +-.650592 +.620012 +-.400566 +.253230 +-.333729 +.577218 +-.757829 +.678677 +-.342232 +-.037935 +.198131 +-.033552 +-.308783 +.526440 +-.373936 +-.167282 +.879608 +-1.452579 +1.662732 +-1.466993 +.973069 +-.347719 +-.251658 +.691662 +-.861168 +.699596 +-.248322 +-.331997 +.821831 +-1.055691 +1.006060 +-.774442 +.500999 +-.269132 +.077361 +.113642 +-.312943 +.473343 +-.525901 +.441610 +-.269205 +.120709 +-.113152 +.299182 +-.623866 +.934010 +-1.047074 +.855299 +-.410175 +-.076327 +.338465 +-.221777 +-.200735 +.652839 +-.818985 +.542797 +.075136 +-.743883 +1.159298 +-1.168871 +.826904 +-.330555 +-.099155 +.314833 +-.280036 +.052266 +.261640 +-.553506 +.750059 +-.829393 +.813465 +-.740518 +.630390 +-.464265 +.198269 +.188477 +-.640163 +1.013270 +-1.138667 +.931924 +-.472550 +-.023647 +.339830 +-.407832 +.351144 +-.377292 +.600266 +-.938332 +1.174409 +-1.131133 +.816794 +-.423993 +.186690 +-.214250 +.430991 +-.656076 +.747066 +-.691549 +.586896 +-.541825 +.587972 +-.667700 +.695895 +-.636998 +.534902 +-.477239 +.527066 +-.674751 +.841625 +-.928565 +.874085 +-.686965 +.438981 +-.227851 +.133083 +-.185166 +.357647 +-.580655 +.768886 +-.854161 +.810658 +-.660672 +.456384 +-.248106 +.061800 +.097083 +-.220493 +.282744 +-.254719 +.137626 +.019454 +-.142958 +.183217 +-.143137 +.057664 +.054884 +-.216578 +.455517 +-.739949 +.947569 +-.917621 +.565064 +.024864 +-.604454 +.891142 +-.745141 +.277427 +.199625 +-.367250 +.121284 +.337803 +-.627728 +.453937 +.159184 +-.851702 +1.156863 +-.824958 +.011947 +.806455 +-1.138310 +.785640 +.047611 +-.907600 +1.379871 +-1.316396 +.869149 +-.344679 +.005143 +.053181 +.107591 +-.359191 +.598889 +-.781884 +.895801 +-.923442 +.837601 +-.632533 +.357144 +-.108576 +-.021463 +.010652 +.073218 +-.118327 +.052389 +.099079 +-.226767 +.216458 +-.034607 +-.243235 +.483206 +-.586133 +.554519 +-.484147 +.486088 +-.596174 +.739848 +-.781488 +.625696 +-.297511 +-.058504 +.262374 +-.208058 +-.077069 +.458825 +-.783073 +.958656 +-.983716 +.910006 +-.782543 +.604293 +-.350721 +.019765 +.324958 +-.558594 +.556322 +-.277456 +-.184722 +.628784 +-.839464 +.697519 +-.241253 +-.353212 +.857138 +-1.092232 +1.001458 +-.660642 +.233190 +.106422 +-.244407 +.164418 +.062108 +-.320323 +.504447 +-.553461 +.459481 +-.254165 +-.012885 +.292053 +-.543608 +.741815 +-.875486 +.943959 +-.947202 +.874526 +-.704216 +.423006 +-.056021 +-.319891 +.602889 +-.724626 +.697385 +-.605220 +.538070 +-.519341 +.491342 +-.376046 +.161745 +.061662 +-.157590 +.051302 +.192221 +-.386623 +.334295 +.042700 +-.638232 +1.207856 +-1.499137 +1.388830 +-.945932 +.384632 +.062535 +-.273110 +.286939 +-.252323 +.305409 +-.465165 +.616304 +-.594282 +.317283 +.124466 +-.488681 +.508843 +-.058512 +-.748893 +1.593156 +-2.104837 +2.060753 +-1.501861 +.700810 +.001138 +-.382859 +.438460 +-.327977 +.236061 +-.250865 +.344065 +-.441184 +.501166 +-.533486 +.554191 +-.543700 +.461019 +-.302661 +.141373 +-.092712 +.225247 +-.487375 +.717828 +-.741654 +.485059 +-.025939 +-.455109 +.785506 +-.893658 +.823566 +-.674540 +.523442 +-.390501 +.262672 +-.137155 +.037372 +.010560 +-.010588 +.001033 +-.024939 +.095242 +-.187600 +.264265 +-.302863 +.303498 +-.273237 +.210916 +-.112368 +-.009194 +.113745 +-.154114 +.112992 +-.023607 +-.049180 +.055578 +.002972 +-.077576 +.110225 +-.072967 +-.021509 +.138668 +-.248438 +.337473 +-.404089 +.447073 +-.459761 +.432719 +-.361590 +.255361 +-.140794 +.058026 +-.044754 +.113315 +-.234625 +.344542 +-.377786 +.312359 +-.191308 +.096811 +-.085243 +.131142 +-.133603 +-.003788 +.272386 +-.522020 +.536708 +-.186649 +-.447598 +1.075735 +-1.341333 +1.029171 +-.209857 +-.771357 +1.464304 +-1.551316 +1.020817 +-.179021 +-.508602 +.659655 +-.170380 +-.735985 +1.625399 +-2.066949 +1.838207 +-1.029683 +.005287 +.764919 +-.930613 +.442039 +.412953 +-1.154100 +1.372887 +-.969108 +.210661 +.429489 +-.561338 +.106179 +.677961 +-1.376148 +1.666833 +-1.476968 +.964983 +-.383920 +-.057717 +.256319 +-.199886 +-.062606 +.432415 +-.767879 +.921516 +-.809808 +.472130 +-.068100 +-.196629 +.174219 +.153039 +-.668048 +1.175947 +-1.487609 +1.490604 +-1.183949 +.670477 +-.113646 +-.326099 +.554406 +-.578741 +.495422 +-.427906 +.448933 +-.537349 +.602251 +-.558132 +.393005 +-.175134 +-.004528 +.103603 +-.153280 +.219335 +-.336039 +.467978 +-.527296 +.429295 +-.145797 +-.273652 +.716994 +-1.047074 +1.145349 +-.950528 +.483375 +.151654 +-.792530 +1.268633 +-1.455229 +1.313725 +-.902295 +.353576 +.173203 +-.548469 +.715599 +-.702517 +.597751 +-.504274 +.494451 +-.584258 +.730945 +-.849991 +.848435 +-.671830 +.349540 +-.008032 +-.174709 +.064544 +.338084 +-.878690 +1.325358 +-1.497566 +1.363439 +-1.043993 +.729011 +-.565377 +.586294 +-.712386 +.809170 +-.760964 +.525621 +-.151532 +-.243852 +.525370 +-.602436 +.477465 +-.252981 +.083667 +-.089112 +.274495 +-.516578 +.639433 +-.542174 +.291136 +-.099752 +.191214 +-.629436 +1.237750 +-1.674642 +1.630701 +-1.026092 +.081940 +.784972 +-1.186173 +.972959 +-.311271 +-.421945 +.854652 +-.816014 +.400343 +.123352 +-.481057 +.531173 +-.300872 +-.068831 +.410479 +-.597974 +.581513 +-.399040 +.165719 +-.029225 +.091912 +-.337261 +.618713 +-.738214 +.575403 +-.179622 +-.245599 +.461010 +-.334131 +-.087133 +.609753 +-1.004659 +1.116296 +-.917490 +.500552 +-.028417 +-.327467 +.448140 +-.313977 +.017168 +.279330 +-.427202 +.377205 +-.205756 +.060317 +-.057797 +.205147 +-.395982 +.481826 +-.367957 +.073051 +.278951 +-.524500 +.544827 +-.325494 +-.037618 +.387649 +-.584664 +.569359 +-.378973 +.113275 +.120127 +-.244560 +.222398 +-.047216 +-.256542 +.621499 +-.932380 +1.052603 +-.882782 +.421543 +.211514 +-.810369 +1.161775 +-1.132873 +.729613 +-.101637 +-.512080 +.881730 +-.890919 +.594851 +-.192492 +-.083369 +.100571 +.094903 +-.309692 +.325345 +-.035271 +-.489318 +1.043468 +-1.410647 +1.483028 +-1.305192 +1.019475 +-.758452 +.564954 +-.396441 +.202961 +-.007278 +-.087351 +-.024589 +.348295 +-.748974 +1.014641 +-.978872 +.615050 +-.039704 +-.564641 +1.041355 +-1.305183 +1.332770 +-1.136253 +.758404 +-.287868 +-.142426 +.401946 +-.434680 +.297871 +-.122332 +.013795 +.027175 +-.094675 +.279423 +-.565711 +.817659 +-.874347 +.677097 +-.320737 +-.015578 +.199918 +-.232959 +.222062 +-.275101 +.407594 +-.537179 +.560960 +-.443923 +.244800 +-.063501 +-.040209 +.086859 +-.144563 +.253582 +-.375074 +.411087 +-.284699 +.017934 +.257759 +-.374064 +.232636 +.128747 +-.556346 +.868079 +-.944955 +.768964 +-.399276 +-.074630 +.559032 +-.953094 +1.147612 +-1.056183 +.672495 +-.106647 +-.443342 +.781747 +-.811212 +.569529 +-.187927 +-.190331 +.469269 +-.607625 +.594678 +-.436141 +.167636 +.127558 +-.334051 +.362327 +-.213557 +-.002850 +.125257 +-.040610 +-.237726 +.572787 +-.791031 +.796116 +-.631046 +.446000 +-.394960 +.532991 +-.782167 +.984422 +-1.002224 +.801731 +-.470154 +.162504 +-.013299 +.065153 +-.251745 +.439947 +-.503136 +.384150 +-.116742 +-.199797 +.453529 +-.569332 +.530187 +-.364470 +.114564 +.185326 +-.502751 +.780731 +-.925236 +.837610 +-.485581 +-.036510 +.516986 +-.721342 +.522914 +.014861 +-.662156 +1.141114 +-1.266091 +1.024149 +-.557297 +.069617 +.279653 +-.438850 +.459007 +-.436871 +.446072 +-.496218 +.538946 +-.511270 +.384624 +-.187446 +-.010810 +.137926 +-.150725 +.043705 +.157602 +-.399237 +.593373 +-.624730 +.392620 +.118019 +-.782826 +1.356060 +-1.574504 +1.297794 +-.599289 +-.255872 +.938541 +-1.215060 +1.046285 +-.577275 +.039700 +.362330 +-.519472 +.421006 +-.124736 +-.271007 +.644222 +-.872744 +.876908 +-.664364 +.339922 +-.058218 +-.060319 +-.002650 +.158853 +-.277606 +.276788 +-.178894 +.092791 +-.130787 +.315447 +-.541128 +.623612 +-.415188 +-.084547 +.697197 +-1.146691 +1.215203 +-.879924 +.336799 +.117206 +-.274378 +.150468 +.037326 +-.040193 +-.225879 +.605649 +-.813036 +.642354 +-.121196 +-.511186 +.977245 +-1.144917 +1.079973 +-.941119 +.824755 +-.700559 +.488937 +-.197869 +-.019446 +-.044246 +.475176 +-1.125145 +1.663525 +-1.770378 +1.336597 +-.532389 +-.298279 +.839008 +-.963234 +.762142 +-.440379 +.167345 +.011263 +-.152318 +.319402 +-.498674 +.595441 +-.510375 +.229039 +.149582 +-.467612 +.601688 +-.526592 +.311322 +-.062794 +-.137129 +.265532 +-.353865 +.455687 +-.603217 +.772305 +-.879429 +.825092 +-.567615 +.177315 +.181018 +-.341803 +.248317 +.005682 +-.240456 +.315775 +-.222633 +.073414 +-.003243 +.061919 +-.176515 +.207236 +-.052080 +-.273052 +.630870 +-.836847 +.765808 +-.426350 +-.042055 +.448459 +-.656869 +.652192 +-.525767 +.396855 +-.329869 +.305239 +-.256196 +.133442 +.055891 +-.259505 +.421814 +-.516921 +.549587 +-.535182 +.484916 +-.409266 +.328063 +-.267156 +.238264 +-.222048 +.177807 +-.080713 +-.041237 +.106280 +-.026020 +-.225298 +.568802 +-.843520 +.889482 +-.643215 +.183811 +.304574 +-.633740 +.712839 +-.585263 +.380257 +-.215856 +.120156 +-.023559 +-.175927 +.518789 +-.925123 +1.214291 +-1.201978 +.824374 +-.212735 +-.342647 +.538291 +-.237198 +-.431637 +1.128945 +-1.493382 +1.347866 +-.793755 +.136507 +.302434 +-.363832 +.112539 +.239313 +-.480019 +.514390 +-.381557 +.184688 +-.001477 +-.154345 +.304035 +-.449634 +.552594 +-.563085 +.466035 +-.294380 +.096671 +.106689 +-.332278 +.596586 +-.867972 +1.055524 +-1.051906 +.803326 +-.357784 +-.142352 +.522101 +-.656082 +.526831 +-.229555 +-.076676 +.243212 +-.195459 +-.039478 +.347344 +-.577972 +.618742 +-.463096 +.231687 +-.112441 +.233748 +-.548221 +.824919 +-.785488 +.307453 +.454623 +-1.136784 +1.391983 +-1.117104 +.514682 +.054507 +-.313146 +.223337 +.044400 +-.277497 +.373673 +-.364330 +.320669 +-.254875 +.116316 +.121882 +-.384624 +.517824 +-.407588 +.093955 +.227966 +-.335368 +.140511 +.237124 +-.546853 +.576664 +-.295788 +-.125989 +.428392 +-.420282 +.086612 +.414595 +-.850080 +1.037155 +-.927093 +.609410 +-.247281 +-.013855 +.113703 +-.088172 +.024422 +.007074 +.003495 +-.015854 +-.004240 +.028951 +.036989 +-.294424 +.756887 +-1.293962 +1.663930 +-1.633714 +1.123425 +-.285869 +-.539027 +.984431 +-.848703 +.209875 +.607798 +-1.200780 +1.293672 +-.871096 +.164275 +.493050 +-.851711 +.869942 +-.706276 +.594294 +-.681386 +.934359 +-1.171023 +1.193409 +-.929462 +.485769 +-.078443 +-.103398 +.003666 +.291637 +-.631540 +.891801 +-1.014382 +.985543 +-.799731 +.460512 +-.020299 +-.391663 +.605587 +-.509729 +.144379 +.289204 +-.529790 +.410208 +.037920 +-.600308 +1.007953 +-1.092950 +.873227 +-.518163 +.226322 +-.102042 +.111467 +-.139485 +.096287 +.010657 +-.092743 +.066889 +.062030 +-.194615 +.214510 +-.087053 +-.105443 +.226208 +-.197223 +.069989 +.009273 +.080731 +-.324555 +.558689 +-.578986 +.292791 +.197479 +-.644851 +.810765 +-.614141 +.175171 +.268387 +-.505768 +.458965 +-.192987 +-.151698 +.441682 +-.597924 +.601769 +-.482645 +.303269 +-.137337 +.033239 +.019360 +-.085015 +.226204 +-.429474 +.581549 +-.535173 +.230051 +.226371 +-.598293 +.670623 +-.402164 +-.038109 +.387512 +-.474005 +.327270 +-.133306 +.074097 +-.183158 +.329488 +-.335514 +.129364 +.189265 +-.417334 +.395136 +-.122554 +-.235975 +.457034 +-.401684 +.103675 +.252151 +-.446865 +.367268 +-.079419 +-.214556 +.312177 +-.149557 +-.154648 +.386936 +-.398936 +.221145 +-.040043 +.049278 +-.285930 +.581862 +-.676423 +.410965 +.142380 +-.720019 +1.048547 +-1.032387 +.807078 +-.621079 +.640875 +-.828159 +.977576 +-.878276 +.472625 +.102571 +-.611404 +.869763 +-.842203 +.630375 +-.383464 +.205908 +-.119194 +.081639 +-.035096 +-.052459 +.161947 +-.222009 +.138901 +.143595 +-.583576 +1.028163 +-1.277948 +1.201036 +-.821358 +.312928 +.102466 +-.284408 +.239825 +-.084978 +-.058794 +.150403 +-.229700 +.340101 +-.447139 +.435238 +-.201005 +-.228063 +.659491 +-.840412 +.640994 +-.175695 +-.247225 +.330158 +-.001312 +-.521192 +.870550 +-.780516 +.266173 +.389038 +-.824520 +.833440 +-.476052 +.010982 +.288707 +-.296914 +.072263 +.223663 +-.439482 +.491810 +-.354568 +.033705 +.422082 +-.887646 +1.168847 +-1.092682 +.638044 +-.001433 +-.481310 +.528714 +-.094376 +-.599405 +1.205552 +-1.473040 +1.387825 +-1.140137 +.954760 +-.918649 +.932806 +-.814383 +.462888 +.037904 +-.456256 +.556868 +-.249897 +-.354196 +1.010552 +-1.473243 +1.609137 +-1.434383 +1.072712 +-.677776 +.365775 +-.182747 +.106368 +-.071772 +.011409 +.104328 +-.245316 +.337699 +-.315900 +.178095 +.000640 +-.116934 +.118180 +-.047495 +.011268 +-.089395 +.261043 +-.410986 +.417513 +-.253099 +.014922 +.144226 +-.133660 +-.001134 +.110445 +-.057457 +-.169724 +.441932 +-.584392 +.509762 +-.283276 +.069401 +-.005892 +.104875 +-.253812 +.306675 +-.191131 +-.043497 +.262403 +-.334069 +.214487 +.021024 +-.216107 +.223241 +.003086 +-.366621 +.674575 +-.747841 +.530482 +-.127701 +-.255111 +.435348 +-.361146 +.137852 +.042218 +-.023001 +-.213688 +.530965 +-.718120 +.625740 +-.272726 +-.147909 +.380257 +-.272220 +-.110779 +.510584 +-.636285 +.357913 +.200639 +-.738590 +.974080 +-.821834 +.431962 +-.073197 +-.047583 +-.094804 +.351093 +-.505887 +.406631 +-.041095 +-.461704 +.892352 +-1.052493 +.845100 +-.329834 +-.287788 +.744011 +-.849600 +.595665 +-.161564 +-.192333 +.285729 +-.126723 +-.108253 +.209192 +-.083663 +-.186277 +.419662 +-.481849 +.384755 +-.265184 +.261715 +-.390200 +.518941 +-.466813 +.150261 +.334158 +-.757906 +.906092 +-.715110 +.307137 +.093282 +-.291443 +.213720 +.083920 +-.466393 +.779205 +-.890153 +.718636 +-.263694 +-.378728 +1.032503 +-1.499581 +1.636328 +-1.408751 +.902265 +-.289490 +-.225040 +.467481 +-.355314 +-.059713 +.593018 +-.992988 +1.056451 +-.736709 +.175578 +.370356 +-.670433 +.642053 +-.380603 +.086019 +.060374 +.008351 +-.226274 +.452450 +-.563866 +.528687 +-.419105 +.356387 +-.421358 +.589990 +-.743567 +.752342 +-.574581 +.295280 +-.072199 +.027447 +-.164716 +.370276 +-.491101 +.430788 +-.200731 +-.097160 +.334271 +-.423617 +.358074 +-.205201 +.066693 +-.025877 +.110808 +-.290009 +.495920 +-.654612 +.703429 +-.597584 +.321736 +.087043 +-.522741 +.829581 +-.866732 +.588890 +-.090736 +-.421778 +.724391 +-.682870 +.318779 +.200691 +-.642795 +.819364 +-.673720 +.300321 +.113429 +-.391440 +.458173 +-.360559 +.214695 +-.120248 +.103171 +-.119564 +.105231 +-.026486 +-.101503 +.230828 +-.308595 +.295352 +-.170267 +-.067806 +.395177 +-.756073 +1.064170 +-1.221944 +1.156738 +-.858068 +.394569 +.103811 +-.493879 +.674415 +-.620817 +.383235 +-.053344 +-.278686 +.552305 +-.735547 +.802286 +-.713480 +.428681 +.049523 +-.629800 +1.131806 +-1.353288 +1.175795 +-.643522 +-.040015 +.600919 +-.819328 +.622432 +-.104732 +-.523829 +1.029976 +-1.248295 +1.137016 +-.779756 +.335535 +.037902 +-.249359 +.296497 +-.238393 +.140551 +-.030240 +-.107768 +.293801 +-.504629 +.658314 +-.657739 +.471310 +-.189594 +-.000508 +-.073034 +.438189 +-.927087 +1.252280 +-1.172791 +.644547 +.144318 +-.876991 +1.283962 +-1.281664 +.992806 +-.645307 +.421277 +-.354107 +.334897 +-.216791 +-.058343 +.399562 +-.615640 +.540615 +-.150636 +-.408527 +.902847 +-1.145835 +1.097769 +-.864574 +.603810 +-.410184 +.264581 +-.080617 +-.193348 +.501452 +-.699430 +.655286 +-.355770 +-.065120 +.402286 +-.509639 +.394146 +-.207728 +.141354 +-.291564 +.589590 +-.842689 +.863555 +-.602210 +.189977 +.136739 +-.182163 +-.092020 +.553077 +-.985954 +1.216770 +-1.192244 +.980267 +-.711974 +.510182 +-.438326 +.481477 +-.558746 +.564238 +-.426147 +.157996 +.133159 +-.299725 +.245304 +.002189 +-.291422 +.432818 +-.319283 +.003225 +.326090 +-.456918 +.291142 +.086746 +-.456325 +.597104 +-.425304 +.039976 +.351674 +-.574238 +.587996 +-.485280 +.393431 +-.369492 +.370603 +-.314538 +.167893 +.018803 +-.156797 +.200741 +-.191360 +.221178 +-.352104 +.554048 +-.717196 +.731482 +-.574178 +.337920 +-.174636 +.193659 +-.387634 +.640136 +-.806837 +.807463 +-.662460 +.456957 +-.271338 +.134319 +-.023949 +-.099978 +.262864 +-.457275 +.639522 +-.740655 +.697555 +-.497470 +.205804 +.055989 +-.179628 +.136546 +.014704 +-.187196 +.334781 +-.466241 +.595721 +-.687472 +.662454 +-.469835 +.155577 +.146152 +-.303707 +.286896 +-.188307 +.149068 +-.252046 +.467528 +-.683502 +.780784 +-.690125 +.404169 +.033649 +-.532809 +.955046 +-1.141758 +.985915 +-.513579 +-.091935 +.562707 +-.683886 +.409087 +.122965 +-.676671 +1.048428 +-1.152812 +1.025341 +-.763304 +.459246 +-.169576 +-.076580 +.252099 +-.318955 +.241134 +-.016246 +-.297337 +.583322 +-.711751 +.607923 +-.304321 +-.064253 +.329178 +-.381166 +.228718 +.015779 +-.210718 +.270260 +-.207630 +.116511 +-.108515 +.244551 +-.494442 +.742858 +-.840179 +.679639 +-.265711 +-.265833 +.699459 +-.847237 +.654204 +-.233772 +-.198442 +.456319 +-.494901 +.424556 +-.417227 +.572098 +-.838498 +1.051804 +-1.054424 +.812443 +-.443816 +.140735 +-.043455 +.153088 +-.339198 +.432207 +-.337425 +.096787 +.140092 +-.215909 +.071581 +.213035 +-.472103 +.563794 +-.459538 +.250272 +-.071508 +.010354 +-.065322 +.180036 +-.308329 +.447500 +-.612996 +.785985 +-.891360 +.836430 +-.585021 +.207713 +.136397 +-.280110 +.140555 +.233298 +-.683171 +1.017136 +-1.095862 +.887044 +-.466640 +-.026535 +.453425 +-.721008 +.795442 +-.691657 +.461320 +-.188306 +-.021756 +.074402 +.065754 +-.346563 +.648309 +-.843911 +.857490 +-.684596 +.375727 +-.012211 +-.306824 +.478687 +-.433661 +.184652 +.153842 +-.414527 +.475844 +-.340441 +.130112 +.002045 +.025839 +-.182857 +.364860 +-.470834 +.454203 +-.323816 +.116225 +.125203 +-.351332 +.503306 +-.522276 +.373459 +-.068924 +-.326621 +.709483 +-.963791 +.995474 +-.769354 +.339270 +.148905 +-.500465 +.557062 +-.285269 +-.187809 +.626846 +-.810348 +.653682 +-.256299 +-.159776 +.383789 +-.338179 +.111944 +.111920 +-.179374 +.051154 +.203504 +-.486153 +.745877 +-.987853 +1.216669 +-1.381790 +1.392177 +-1.199364 +.875268 +-.602156 +.561643 +-.797722 +1.161119 +-1.387718 +1.264932 +-.772970 +.103878 +.451544 +-.669437 +.502501 +-.075327 +-.408899 +.772901 +-.919728 +.831300 +-.547566 +.155293 +.220832 +-.452769 +.473516 +-.332376 +.186325 +-.210825 +.478622 +-.892695 +1.231011 +-1.281837 +.979945 +-.448328 +-.083191 +.422768 +-.520932 +.464682 +-.377238 +.309999 +-.213646 +.007251 +.318663 +-.657074 +.841064 +-.761158 +.451022 +-.073486 +-.184425 +.230973 +-.120925 +.009320 +-.046094 +.281616 +-.636285 +.943336 +-1.035600 +.831548 +-.381011 +-.150819 +.556874 +-.687245 +.524327 +-.191487 +-.114002 +.229678 +-.117608 +-.116909 +.290184 +-.253247 +-.012049 +.373062 +-.621151 +.603128 +-.330376 +-.008418 +.150287 +.079471 +-.646371 +1.308307 +-1.745214 +1.740349 +-1.303517 +.661262 +-.120245 +-.114099 +.052693 +.101233 +-.103584 +-.148246 +.526834 +-.749445 +.574020 +.018236 +-.787687 +1.379617 +-1.546267 +1.288677 +-.822133 +.404110 +-.161649 +.042239 +.093839 +-.330799 +.620093 +-.819042 +.801675 +-.552352 +.179821 +.146182 +-.285680 +.192352 +.075416 +-.391493 +.624450 +-.698279 +.625788 +-.497089 +.425218 +-.476076 +.624387 +-.766043 +.783625 +-.626396 +.355126 +-.121180 +.087564 +-.333038 +.791908 +-1.266955 +1.516895 +-1.379495 +.865671 +-.166856 +-.438376 +.733505 +-.683270 +.447497 +-.275288 +.341761 +-.631034 +.943762 +-1.028175 +.751486 +-.199847 +-.359895 +.633075 +-.467850 +-.061461 +.702762 +-1.166976 +1.271536 +-1.009258 +.521993 +-.013088 +-.346539 +.477999 +-.406232 +.229767 +-.064581 +-.013902 +.003080 +.039504 +-.047040 +-.002440 +.069327 +-.088082 +.027093 +.076551 +-.138789 +.092259 +.057920 +-.229804 +.316243 +-.255085 +.070535 +.139502 +-.260098 +.226092 +-.061199 +-.132465 +.231286 +-.162386 +-.052044 +.308631 +-.487274 +.522515 +-.431628 +.283459 +-.138787 +.014277 +.102157 +-.205940 +.250787 +-.175854 +-.034592 +.315044 +-.546979 +.636187 +-.577397 +.451806 +-.358819 +.338528 +-.347117 +.301158 +-.152076 +-.067292 +.254771 +-.297998 +.142045 +.171729 +-.514748 +.726656 +-.695415 +.424192 +-.044445 +-.243067 +.274532 +-.015594 +-.418291 +.826514 +-1.030408 +.956993 +-.658320 +.272017 +.042628 +-.163689 +.050178 +.235778 +-.541858 +.686968 +-.556504 +.180099 +.266447 +-.551527 +.521916 +-.196031 +-.244504 +.558680 +-.576759 +.279369 +.212614 +-.715545 +1.071079 +-1.196238 +1.083499 +-.773581 +.332027 +.157571 +-.594943 +.878982 +-.942883 +.789935 +-.500197 +.192793 +.040138 +-.186693 +.316967 +-.525621 +.849842 +-1.220129 +1.486080 +-1.509315 +1.262926 +-.861689 +.490332 +-.275102 +.196035 +-.115212 +-.094761 +.424928 +-.715375 +.771190 +-.517722 +.068286 +.350050 +-.549902 +.494361 +-.288112 +.075020 +.063100 +-.130075 +.162149 +-.162902 +.090540 +.094467 +-.370207 +.641430 +-.791148 +.755892 +-.564668 +.313107 +-.098876 +-.026572 +.056439 +.005606 +-.165676 +.419039 +-.710606 +.926622 +-.945208 +.719265 +-.329032 +-.043939 +.213381 +-.096521 +-.235254 +.595817 +-.790110 +.723381 +-.449163 +.127813 +.079045 +-.112680 +.052584 +-.056820 +.243103 +-.589724 +.929113 +-1.048568 +.839023 +-.390596 +-.039742 +.180348 +.078435 +-.604967 +1.104657 +-1.305815 +1.124903 +-.699808 +.279385 +-.060673 +.089956 +-.279935 +.502003 +-.669589 +.759081 +-.778284 +.730090 +-.606209 +.408822 +-.171080 +-.047247 +.188942 +-.230808 +.192116 +-.112281 +.015932 +.102729 +-.259107 +.437256 +-.570006 +.568396 +-.384936 +.059366 +.296047 +-.564084 +.689806 +-.694840 +.634136 +-.539700 +.402372 +-.202375 +-.046946 +.288494 +-.456536 +.527495 +-.539957 +.563428 +-.637725 +.730668 +-.749645 +.603092 +-.270614 +-.168920 +.573925 +-.819778 +.868374 +-.779097 +.653560 +-.554752 +.462429 +-.301507 +.024423 +.316475 +-.569818 +.570244 +-.253863 +-.278699 +.801982 +-1.087561 +1.030005 +-.696142 +.270781 +.059939 +-.209179 +.214262 +-.180682 +.191951 +-.247754 +.267069 +-.148532 +-.152296 +.575585 +-.966974 +1.144116 +-.990940 +.533236 +.052138 +-.514450 +.663476 +-.484666 +.155730 +.060414 +.013904 +-.349642 +.726439 +-.880743 +.687704 +-.252078 +-.154858 +.269028 +-.001527 +-.506376 +.969567 +-1.124826 +.872338 +-.314976 +-.314279 +.781959 +-.961097 +.859561 +-.569413 +.188628 +.221672 +-.618048 +.927370 +-1.036142 +.850694 +-.391479 +-.164123 +.550972 +-.570456 +.224531 +.275071 +-.638899 +.682584 +-.429623 +.065075 +.214604 +-.335067 +.363358 +-.414494 +.536425 +-.671255 +.713894 +-.603914 +.366729 +-.079227 +-.191906 +.414199 +-.562355 +.588431 +-.442972 +.141736 +.189685 +-.358884 +.229717 +.164204 +-.615380 +.867519 +-.782969 +.423835 +.015304 +-.364359 +.592171 +-.786978 +1.030122 +-1.283700 +1.397232 +-1.230692 +.789452 +-.255021 +-.117850 +.162762 +.093382 +-.450435 +.660105 +-.571693 +.210093 +.252799 +-.606630 +.720642 +-.602040 +.366449 +-.148011 +.010566 +.083539 +-.232112 +.510366 +-.904033 +1.302474 +-1.556478 +1.564058 +-1.329352 +.958382 +-.595524 +.341618 +-.204663 +.111379 +.031363 +-.267125 +.557902 +-.808053 +.924643 +-.870830 +.679171 +-.424452 +.184729 +-.018014 +-.042657 +-.007936 +.137918 +-.277466 +.346679 +-.307274 +.199528 +-.125227 +.177868 +-.370085 +.616671 +-.789955 +.806810 +-.683103 +.518187 +-.425140 +.457946 +-.583567 +.710633 +-.747776 +.649590 +-.424726 +.113528 +.235425 +-.570190 +.830281 +-.957288 +.929629 +-.793595 +.648475 +-.578253 +.578050 +-.544442 +.353642 +.026734 +-.484782 +.822586 +-.888388 +.684375 +-.370523 +.163787 +-.205068 +.480949 +-.840847 +1.087946 +-1.085445 +.822225 +-.410980 +.026556 +.182125 +-.161485 +-.031013 +.272144 +-.450182 +.525266 +-.534687 +.543626 +-.580741 +.608963 +-.555130 +.377104 +-.115812 +-.112508 +.187794 +-.075890 +-.129155 +.250651 +-.143744 +-.194798 +.601822 +-.835470 +.723401 +-.272442 +-.334549 +.850241 +-1.103203 +1.075335 +-.877808 +.659044 +-.515132 +.452671 +-.408873 +.301373 +-.078695 +-.245512 +.585287 +-.812458 +.822538 +-.606585 +.278713 +-.025844 +-.001149 +-.214459 +.537674 +-.761119 +.730212 +-.434499 +.011413 +.333601 +-.440126 +.275857 +.051911 +-.358327 +.480133 +-.356339 +.046981 +.315098 +-.603247 +.753922 +-.769956 +.680328 +-.498579 +.218043 +.152838 +-.549968 +.851964 +-.932526 +.737612 +-.334391 +-.106106 +.387428 +-.385315 +.112644 +.281556 +-.580718 +.608108 +-.322987 +-.145204 +.551306 +-.656773 +.356372 +.262060 +-.958951 +1.461461 +-1.591719 +1.337402 +-.833074 +.271650 +.198331 +-.529385 +.756851 +-.926962 +1.031224 +-1.001780 +.774689 +-.369930 +-.080871 +.390352 +-.420967 +.167242 +.240229 +-.607712 +.776278 +-.686918 +.386540 +.011566 +-.380966 +.625258 +-.702929 +.633570 +-.485241 +.344027 +-.277129 +.308142 +-.417343 +.561485 +-.693430 +.767590 +-.736569 +.557881 +-.219227 +-.231795 +.681836 +-.985462 +1.026619 +-.775002 +.307128 +.217994 +-.617115 +.751358 +-.579654 +.176015 +.299534 +-.667512 +.803689 +-.685246 +.386698 +-.035197 +-.244916 +.371453 +-.323017 +.144802 +.058994 +-.160287 +.073652 +.177265 +-.449973 +.561160 +-.414500 +.085339 +.214451 +-.280487 +.067222 +.269543 +-.476723 +.381437 +-.012596 +-.418923 +.661944 +-.582926 +.234113 +.200116 +-.523537 +.627648 +-.518912 +.284478 +-.040356 +-.106018 +.079365 +.140644 +-.499747 +.874210 +-1.115843 +1.120695 +-.878809 +.469442 +-.006586 +-.423003 +.784376 +-1.071726 +1.268857 +-1.333709 +1.219939 +-.913809 +.452876 +.085438 +-.609118 +1.028151 +-1.260244 +1.244411 +-.975063 +.539229 +-.114956 +-.096812 +-.015746 +.390149 +-.800390 +.974056 +-.749293 +.172559 +.524437 +-1.048952 +1.192652 +-.918387 +.359319 +.248116 +-.657691 +.704192 +-.370338 +-.195617 +.735371 +-1.001321 +.884827 +-.471197 +-.021548 +.382916 +-.531400 +.532631 +-.509833 +.525683 +-.532863 +.429256 +-.165007 +-.193790 +.500632 +-.634026 +.583606 +-.445687 +.334865 +-.290578 +.259897 +-.169877 +.022505 +.076601 +.010593 +-.335428 +.792113 +-1.158124 +1.223172 +-.918616 +.360416 +.216717 +-.584369 +.625618 +-.369656 +-.044189 +.436826 +-.656603 +.624897 +-.356288 +-.047541 +.434454 +-.665861 +.685082 +-.550135 +.399103 +-.355469 +.431256 +-.503044 +.395559 +-.026571 +-.492370 +.888266 +-.889548 +.416449 +.334757 +-.980679 +1.163992 +-.759066 +-.054943 +.894558 +-1.382031 +1.343107 +-.883792 +.309853 +.060620 +-.083063 +-.137628 +.327875 +-.234340 +-.200746 +.798325 +-1.267257 +1.407312 +-1.239833 +.968047 +-.800485 +.779777 +-.753203 +.507088 +.041805 +-.746119 +1.294474 +-1.398472 +.974259 +-.203825 +-.557485 +.969052 +-.880660 +.400554 +.176494 +-.535587 +.507121 +-.140747 +-.344584 +.694437 +-.753987 +.533563 +-.182097 +-.103203 +.179536 +-.026417 +-.248391 +.466497 +-.473382 +.222823 +.195323 +-.599897 +.809093 +-.724138 +.365656 +.144268 +-.632277 +.931239 +-.931975 +.621639 +-.096995 +-.462309 +.861499 +-.974187 +.799260 +-.457213 +.124509 +.058976 +-.057482 +-.056604 +.162932 +-.178771 +.113820 +-.057151 +.104807 +-.278858 +.497491 +-.621723 +.549229 +-.289533 +-.033755 +.256617 +-.272952 +.090777 +.187307 +-.437065 +.584649 +-.631996 +.629219 +-.621678 +.608731 +-.537700 +.336322 +.030702 +-.510364 +.951622 +-1.161873 +1.013413 +-.538469 +-.062116 +.523341 +-.676724 +.555446 +-.361450 +.312496 +-.480922 +.744485 +-.882922 +.742953 +-.347678 +-.123219 +.457600 +-.545396 +.434731 +-.283531 +.249461 +-.391610 +.640598 +-.845419 +.860491 +-.618945 +.156798 +.411087 +-.939322 +1.300033 +-1.420596 +1.306491 +-1.039126 +.739791 +-.509949 +.382633 +-.320433 +.261671 +-.176801 +.088904 +-.044896 +.067010 +-.128402 +.170403 +-.142862 +.033431 +.132332 +-.312451 +.470741 +-.584798 +.639832 +-.619172 +.503899 +-.287570 +-.000945 +.286237 +-.465859 +.460840 +-.267612 +-.029607 +.302303 +-.448072 +.433995 +-.283577 +.030803 +.304389 +-.692700 +1.054585 +-1.260655 +1.197031 +-.852718 +.354336 +.089641 +-.300494 +.220128 +.073620 +-.422183 +.665458 +-.701725 +.514632 +-.172151 +-.199561 +.467874 +-.556653 +.484821 +-.347669 +.246647 +-.218332 +.219814 +-.182082 +.082730 +.029252 +-.081111 +.053049 +-.010264 +.052675 +-.219541 +.433295 +-.541790 +.436648 +-.153419 +-.136880 +.251036 +-.138922 +-.069481 +.161628 +-.012372 +-.308020 +.573910 +-.560954 +.200640 +.375128 +-.916163 +1.191186 +-1.089391 +.643444 +.008490 +-.679657 +1.184790 +-1.381772 +1.209072 +-.711304 +.035884 +.608919 +-1.025693 +1.102478 +-.858068 +.433217 +-.025427 +-.205890 +.214019 +-.074740 +-.075981 +.134536 +-.089279 +.010723 +.010799 +.072236 +-.243834 +.447154 +-.621076 +.723366 +-.736322 +.666454 +-.543339 +.409391 +-.294179 +.185848 +-.028050 +-.239688 +.617288 +-1.006185 +1.242832 +-1.197534 +.874145 +-.430967 +.092982 +-.008491 +.152087 +-.348307 +.402149 +-.242233 +-.028948 +.213651 +-.167535 +-.092225 +.397019 +-.544421 +.434609 +-.129319 +-.200413 +.389500 +-.372353 +.199442 +.015730 +-.169662 +.214964 +-.165057 +.071015 +.008565 +-.032417 +-.008512 +.087750 +-.152870 +.146260 +-.031682 +-.182457 +.433876 +-.620310 +.638208 +-.433333 +.037843 +.431354 +-.818314 +.995918 +-.917996 +.628614 +-.229955 +-.163805 +.459019 +-.594753 +.548421 +-.347719 +.081385 +.114512 +-.108282 +-.155278 +.605986 +-1.060993 +1.302852 +-1.186414 +.717879 +-.062224 +-.529746 +.841359 +-.796626 +.495986 +-.158296 +-.001692 +-.107319 +.405290 +-.690974 +.760327 +-.523114 +.053303 +.451323 +-.772248 +.777956 +-.482636 +.032722 +.366896 +-.550743 +.470017 +-.211885 +-.050841 +.153959 +-.025720 +-.288109 +.663962 +-.966184 +1.092294 +-.986163 +.643796 +-.130866 +-.407016 +.780948 +-.848811 +.604970 +-.195042 +-.168730 +.335255 +-.293853 +.154231 +-.054788 +.072683 +-.192372 +.336614 +-.424127 +.414610 +-.322236 +.200211 +-.108567 +.080418 +-.102030 +.118652 +-.066550 +-.083956 +.300291 +-.494558 +.565490 +-.453279 +.176173 +.171218 +-.456962 +.570435 +-.475593 +.235156 +.011331 +-.115559 +.005521 +.265168 +-.546073 +.689189 +-.650642 +.514956 +-.417552 +.426711 +-.484511 +.458333 +-.259220 +-.075358 +.404539 +-.589876 +.590684 +-.470094 +.316210 +-.157942 +-.044228 +.324242 +-.624691 +.787139 +-.644517 +.153176 +.538848 +-1.149337 +1.414635 +-1.236728 +.728859 +-.136680 +-.305731 +.492305 +-.471415 +.383068 +-.357600 +.438263 +-.568307 +.641799 +-.581513 +.391210 +-.148688 +-.051018 +.156268 +-.177498 +.157389 +-.128200 +.095866 +-.055797 +.009689 +.043018 +-.126893 +.286681 +-.540940 +.829342 +-1.015127 +.965177 +-.654854 +.207284 +.179179 +-.366616 +.369209 +-.326585 +.383697 +-.578119 +.823667 +-.993280 +1.022307 +-.944832 +.840340 +-.746074 +.616307 +-.367259 +-.027441 +.471698 +-.775187 +.768264 +-.425358 +-.098230 +.552591 +-.747356 +.662627 +-.436999 +.247989 +-.182893 +.199443 +-.197660 +.133416 +-.076028 +.163061 +-.488397 +1.007258 +-1.526659 +1.790868 +-1.615286 +.997813 +-.146839 +-.597316 +.921105 +-.701641 +.082369 +.598743 +-1.001750 +.986523 +-.690443 +.423513 +-.446927 +.787514 +-1.218600 +1.420742 +-1.207638 +.657852 +-.061112 +-.281041 +.260352 +-.030971 +-.103735 +-.091923 +.614319 +-1.211796 +1.545150 +-1.409416 +.867686 +-.208740 +-.240703 +.321029 +-.125649 +-.084183 +.069705 +.223557 +-.639826 +.930735 +-.926938 +.645996 +-.273449 +.043379 +-.103932 +.447300 +-.929778 +1.351243 +-1.541555 +1.416635 +-.996350 +.393741 +.216075 +-.647093 +.769420 +-.571001 +.177762 +.194410 +-.344882 +.195375 +.170382 +-.566268 +.826782 +-.907186 +.888376 +-.887530 +.952230 +-1.029120 +1.031209 +-.938424 +.834108 +-.839896 +1.007121 +-1.264467 +1.469341 +-1.514674 +1.395953 +-1.187651 +.964441 +-.747230 +.517979 +-.275230 +.067184 +.031198 +.026660 +-.222537 +.483602 +-.724930 +.888937 +-.958656 +.946090 +-.870798 +.742640 +-.556799 +.305501 +-.003824 +-.287808 +.471471 +-.463192 +.262978 +.014704 +-.194764 +.160566 +.049362 +-.257494 +.284366 +-.107256 +-.095655 +.070240 +.304228 +-.885903 +1.332532 +-1.320243 +.763912 +.114675 +-.911129 +1.264610 +-1.041116 +.377441 +.415710 +-1.017273 +1.235756 +-1.066468 +.657056 +-.214565 +-.093398 +.197016 +-.125021 +-.036496 +.193560 +-.276414 +.250761 +-.120136 +-.072753 +.253299 +-.342948 +.304309 +-.175609 +.060419 +-.066184 +.228317 +-.478923 +.692226 +-.777607 +.745713 +-.689555 +.694008 +-.752583 +.769414 +-.649373 +.397532 +-.135154 +.010351 +-.076834 +.245805 +-.355549 +.301924 +-.120623 +-.046324 +.069021 +.068008 +-.263695 +.395589 +-.428004 +.439783 +-.548153 +.791756 +-1.070334 +1.193418 +-1.005038 +.494102 +.187856 +-.809761 +1.183622 +-1.245514 +1.053631 +-.723968 +.360184 +-.022587 +-.259629 +.461281 +-.550862 +.505672 +-.337058 +.101846 +.113915 +-.232965 +.225645 +-.125741 +.012432 +.032033 +.035240 +-.198805 +.396799 +-.552752 +.608910 +-.547998 +.400015 +-.234842 +.140921 +-.191221 +.406754 +-.736900 +1.074286 +-1.303019 +1.354480 +-1.235309 +1.009133 +-.747740 +.490463 +-.241462 +.000863 +.204364 +-.322058 +.309990 +-.173281 +-.030150 +.223876 +-.360985 +.449151 +-.534273 +.654884 +-.800152 +.901157 +-.864065 +.627079 +-.207390 +-.290501 +.711864 +-.914086 +.823363 +-.463007 +-.051008 +.541787 +-.826436 +.788191 +-.443559 +-.037197 +.392093 +-.402325 +.029823 +.535599 +-.967940 +.992723 +-.555348 +-.140639 +.753606 +-1.005780 +.838114 +-.424782 +.049409 +.068285 +.113414 +-.461028 +.764103 +-.858092 +.702675 +-.385974 +.066686 +.109985 +-.082530 +-.101460 +.315945 +-.428425 +.373971 +-.188104 +-.023180 +.156602 +-.178033 +.134427 +-.102424 +.114671 +-.125954 +.052641 +.140817 +-.379804 +.501956 +-.360532 +-.060840 +.608582 +-1.032050 +1.128671 +-.869883 +.425599 +-.066855 +.001525 +-.241764 +.587629 +-.744795 +.509776 +.091154 +-.800962 +1.273745 +-1.271340 +.790492 +-.045807 +-.666919 +1.125660 +-1.257451 +1.109834 +-.774522 +.339264 +.105864 +-.448155 +.573752 +-.436680 +.117167 +.198148 +-.321372 +.183817 +.119344 +-.394739 +.477277 +-.326621 +.035606 +.238543 +-.362902 +.284021 +-.033417 +-.302643 +.625901 +-.863457 +.986064 +-1.001047 +.927313 +-.775491 +.552296 +-.283571 +.024712 +.166027 +-.276288 +.360738 +-.498451 +.708395 +-.897050 +.899577 +-.600132 +.040500 +.577716 +-1.010778 +1.124546 +-.963532 +.689198 +-.447792 +.281049 +-.145302 +.003141 +.110036 +-.108828 +-.057192 +.344819 +-.646991 +.886579 +-1.085025 +1.335110 +-1.692829 +2.081169 +-2.298433 +2.142695 +-1.565917 +.738590 +.032672 +-.482094 +.532389 +-.314264 +.058053 +.053008 +.034654 +-.260998 +.524023 +-.738071 +.848328 +-.822299 +.652150 +-.372156 +.063086 +.179547 +-.299013 +.308297 +-.267821 +.227328 +-.184785 +.101238 +.043862 +-.213636 +.334102 +-.357629 +.306708 +-.250651 +.233066 +-.220305 +.126150 +.102134 +-.411218 +.650010 +-.660475 +.386623 +.074043 +-.508855 +.694464 +-.511574 +.014698 +.578086 +-.979409 +.974250 +-.538529 +-.137791 +.746563 +-1.025484 +.892984 +-.474413 +.013183 +.269713 +-.282443 +.084562 +.170842 +-.330918 +.321065 +-.171566 +-.013898 +.126424 +-.117035 +.020746 +.073284 +-.085352 +.000137 +.123323 +-.193322 +.151536 +-.019249 +-.108723 +.121283 +.036299 +-.323458 +.626825 +-.830239 +.884707 +-.831470 +.765742 +-.769852 +.860688 +-.980148 +1.027150 +-.909758 +.594171 +-.133533 +-.337654 +.651918 +-.690288 +.458101 +-.102363 +-.158922 +.167513 +.064334 +-.344796 +.415430 +-.121375 +-.472613 +1.100675 +-1.441304 +1.298155 +-.705459 +-.097759 +.795669 +-1.142587 +1.051635 +-.598422 +-.037667 +.651185 +-1.074909 +1.216964 +-1.070716 +.701400 +-.217748 +-.259649 +.621768 +-.784403 +.700884 +-.383664 +-.072239 +.491327 +-.671872 +.485626 +.030544 +-.662198 +1.116543 +-1.186167 +.873671 +-.389181 +.019354 +.043383 +.201195 +-.589248 +.910009 +-1.024480 +.916977 +-.669729 +.397890 +-.191235 +.087590 +-.077653 +.125675 +-.189033 +.228119 +-.209529 +.113013 +.053414 +-.241493 +.373807 +-.384758 +.269545 +-.101720 +-.004620 +-.030824 +.195840 +-.389613 +.490689 +-.441416 +.286724 +-.138607 +.092537 +-.156922 +.246536 +-.243713 +.084047 +.192335 +-.457365 +.567398 +-.444614 +.118206 +.295520 +-.656708 +.868848 +-.913433 +.841532 +-.736262 +.669878 +-.673523 +.727681 +-.775017 +.750452 +-.615336 +.376803 +-.080417 +-.216159 +.465770 +-.633865 +.687034 +-.592359 +.342411 +.009346 +-.339651 +.498567 +-.390456 +.043087 +.387553 +-.690917 +.714907 +-.448990 +.024608 +.365486 +-.573141 +.558292 +-.379989 +.138455 +.081609 +-.235133 +.313551 +-.336867 +.348676 +-.402280 +.528887 +-.704142 +.846137 +-.861099 +.711554 +-.454724 +.213870 +-.096708 +.120197 +-.202246 +.232292 +-.168334 +.080007 +-.093602 +.274409 +-.542404 +.704040 +-.594499 +.226649 +.180402 +-.337633 +.099317 +.408503 +-.854363 +.927042 +-.559866 +-.012185 +.405701 +-.343600 +-.164851 +.832937 +-1.273858 +1.223837 +-.678951 +-.115349 +.797833 +-1.071452 +.845514 +-.277573 +-.307286 +.586869 +-.416002 +-.097030 +.663205 +-.992273 +.962039 +-.665831 +.314973 +-.077516 +-.024751 +.093941 +-.242689 +.490487 +-.749203 +.895395 +-.858575 +.655518 +-.359597 +.050166 +.212259 +-.381065 +.419561 +-.318678 +.119436 +.094716 +-.245985 +.318538 +-.374886 +.512158 +-.784895 +1.147555 +-1.457580 +1.540899 +-1.285291 +.711748 +.014562 +-.643227 +.943420 +-.807662 +.304962 +.344977 +-.868580 +1.061837 +-.879334 +.443884 +.026149 +-.329085 +.370076 +-.186901 +-.089838 +.308306 +-.359597 +.211479 +.090072 +-.443684 +.731794 +-.866705 +.827631 +-.669896 +.495574 +-.396885 +.403544 +-.467224 +.494087 +-.403961 +.177396 +.136784 +-.451115 +.681308 +-.777205 +.736525 +-.605366 +.464861 +-.398104 +.444668 +-.571359 +.690163 +-.720081 +.647280 +-.530121 +.442057 +-.404947 +.377673 +-.311894 +.217694 +-.166553 +.218774 +-.342036 +.408864 +-.294111 +-.001866 +.316153 +-.421927 +.198254 +.260842 +-.690783 +.828302 +-.583257 +.083700 +.431402 +-.778653 +.924294 +-.945426 +.913394 +-.813486 +.571266 +-.152192 +-.363853 +.805230 +-1.011455 +.932082 +-.648449 +.313334 +-.062644 +-.042099 +.018712 +.067313 +-.144904 +.170915 +-.142936 +.085617 +-.017944 +-.073078 +.225202 +-.457681 +.725327 +-.915493 +.905934 +-.650532 +.230673 +.172828 +-.378412 +.309042 +-.031648 +-.297229 +.539128 +-.654231 +.697415 +-.742378 +.804181 +-.827611 +.746852 +-.557190 +.328704 +-.145258 +.022431 +.117545 +-.380084 +.787040 +-1.213316 +1.438243 +-1.290024 +.780272 +-.120359 +-.404262 +.615279 +-.545071 +.388152 +-.344474 +.478231 +-.694878 +.838978 +-.823691 +.688980 +-.553455 +.511320 +-.560254 +.611911 +-.567526 +.396832 +-.164134 +-.010138 +.021932 +.156301 +-.460441 +.770433 +-.975859 +1.033993 +-.983832 +.904933 +-.849544 +.802199 +-.704550 +.528273 +-.329249 +.223020 +-.289128 +.483974 +-.648896 +.624766 +-.387112 +.086496 +.050241 +.112180 +-.509058 +.908462 +-1.055950 +.823745 +-.268546 +-.418121 +1.011118 +-1.336555 +1.312289 +-.956748 +.385431 +.207513 +-.598615 +.617043 +-.227817 +-.434290 +1.112815 +-1.545373 +1.587997 +-1.278845 +.806026 +-.399278 +.207903 +-.232214 +.342927 +-.373566 +.229976 +.048219 +-.312237 +.399967 +-.240935 +-.099425 +.464995 +-.708139 +.770669 +-.693284 +.558707 +-.422979 +.288739 +-.131479 +-.055902 +.243763 +-.384793 +.448406 +-.437101 +.373468 +-.276172 +.151532 +-.007824 +-.126614 +.205712 +-.192323 +.086244 +.073368 +-.235881 +.372866 +-.486290 +.583173 +-.640291 +.594425 +-.373930 +-.045787 +.601324 +-1.145943 +1.502812 +-1.541442 +1.240569 +-.707483 +.142246 +.242577 +-.315763 +.091255 +.276354 +-.573499 +.649864 +-.509803 +.308660 +-.244536 +.410798 +-.712734 +.917135 +-.811212 +.362195 +.239735 +-.691481 +.764755 +-.440919 +-.093814 +.574098 +-.803204 +.726799 +-.409218 +-.037538 +.505797 +-.900859 +1.133177 +-1.132614 +.890054 +-.489715 +.089663 +.152890 +-.165060 +-.011019 +.263305 +-.492660 +.664946 +-.793225 +.875298 +-.853705 +.645590 +-.225070 +-.312776 +.769807 +-.945935 +.758419 +-.296432 +-.227637 +.598383 +-.711751 +.614933 +-.455624 +.380907 +-.452414 +.625931 +-.797296 +.873933 +-.818580 +.639519 +-.348026 +-.065768 +.603011 +-1.191061 +1.649785 +-1.748325 +1.341429 +-.497422 +-.485009 +1.204476 +-1.359052 +.898975 +-.042321 +-.842927 +1.411273 +-1.476083 +1.059503 +-.357069 +-.354023 +.826219 +-.936562 +.729371 +-.383631 +.112656 +-.045731 +.161675 +-.320070 +.372624 +-.276474 +.124593 +-.067419 +.185290 +-.412729 +.577412 +-.524998 +.232362 +.177707 +-.526530 +.698580 +-.697349 +.605157 +-.495288 +.378046 +-.223969 +.032370 +.128035 +-.154513 +-.001761 +.271537 +-.490317 +.501681 +-.266151 +-.108625 +.441509 +-.599953 +.579186 +-.481933 +.420851 +-.424049 +.417698 +-.296218 +.021388 +.328686 +-.598684 +.654049 +-.466607 +.130162 +.199872 +-.397484 +.427778 +-.344918 +.236390 +-.156711 +.095458 +.001557 +-.177053 +.415591 +-.641710 +.765277 +-.740032 +.590872 +-.391327 +.213588 +-.094361 +.041441 +-.064799 +.191498 +-.439408 +.769041 +-1.061726 +1.159471 +-.953097 +.461570 +.156142 +-.672337 +.905261 +-.807606 +.476815 +-.086035 +-.214950 +.363569 +-.378540 +.303847 +-.158472 +-.063264 +.347409 +-.623729 +.784170 +-.751588 +.539626 +-.245112 +-.027874 +.246531 +-.456957 +.708812 +-.965129 +1.087451 +-.926020 +.451332 +.182769 +-.707823 +.902504 +-.732552 +.366392 +-.055328 +-.035048 +-.075809 +.216737 +-.199447 +-.042547 +.402757 +-.666728 +.647772 +-.307981 +-.207787 +.645429 +-.781246 +.547375 +-.068379 +-.414464 +.686217 +-.679782 +.500498 +-.342507 +.356211 +-.554761 +.815847 +-.968843 +.905124 +-.641781 +.305427 +-.053217 +-.017740 +-.079954 +.240496 +-.333795 +.283559 +-.107517 +-.102568 +.245386 +-.276344 +.234301 +-.215070 +.311274 +-.554954 +.892439 +-1.201788 +1.344889 +-1.234075 +.886546 +-.436087 +.083275 +.003526 +.214542 +-.615970 +.985459 +-1.141844 +1.041373 +-.783470 +.518470 +-.333029 +.203888 +-.051113 +-.161321 +.367590 +-.436335 +.274121 +.085616 +-.478550 +.697150 +-.611741 +.246341 +.235369 +-.618829 +.743487 +-.564230 +.146234 +.386179 +-.905425 +1.313132 +-1.548455 +1.588158 +-1.448108 +1.179839 +-.851693 +.517150 +-.191348 +-.143609 +.504164 +-.866935 +1.158028 +-1.281995 +1.173709 +-.840588 +.370496 +.098373 +-.429131 +.536928 +-.419871 +.159917 +.107255 +-.244585 +.170768 +.099477 +-.450712 +.705516 +-.698547 +.359626 +.233837 +-.870175 +1.289858 +-1.308691 +.911022 +-.256962 +-.401597 +.843210 +-.964381 +.791383 +-.431721 +.015038 +.340626 +-.539277 +.520992 +-.291773 +-.054718 +.362336 +-.493840 +.421707 +-.254248 +.158295 +-.223979 +.378019 +-.429313 +.226749 +.191872 +-.589578 +.685857 +-.369814 +-.192206 +.644175 +-.668874 +.199909 +.526708 +-1.111917 +1.229297 +-.807966 +.058564 +.657661 +-1.026509 +.929826 +-.476941 +-.076304 +.461046 +-.514629 +.240303 +.206787 +-.598204 +.743916 +-.585963 +.221757 +.161548 +-.403928 +.463162 +-.416285 +.374108 +-.378379 +.365021 +-.223961 +-.093135 +.507165 +-.845914 +.956677 +-.811969 +.527471 +-.278990 +.181599 +-.218859 +.267787 +-.192942 +-.062303 +.446355 +-.838355 +1.115521 +-1.202303 +1.084700 +-.803147 +.440981 +-.106250 +-.105484 +.161125 +-.118020 +.094011 +-.186586 +.399639 +-.641439 +.801624 +-.843237 +.827929 +-.849687 +.934055 +-.992922 +.878517 +-.497810 +-.099071 +.721530 +-1.130376 +1.161027 +-.808136 +.229964 +.324558 +-.628715 +.576786 +-.222695 +-.259285 +.670143 +-.886880 +.915376 +-.868458 +.882430 +-1.019061 +1.211629 +-1.295026 +1.113551 +-.644395 +.048968 +.401141 +-.490904 +.210422 +.227311 +-.522408 +.484669 +-.148220 +-.274599 +.555515 +-.599253 +.471802 +-.304321 +.164957 +-.005717 +-.278924 +.735443 +-1.272189 +1.682156 +-1.757311 +1.421552 +-.794241 +.136974 +.292812 +-.394632 +.284038 +-.210001 +.375429 +-.778794 +1.190712 +-1.292743 +.890981 +-.059671 +-.886543 +1.573920 +-1.779095 +1.524283 +-1.005238 +.427217 +.111357 +-.601223 +1.011857 +-1.219188 +1.067634 +-.529716 +-.185393 +.702198 +-.711521 +.200048 +.507601 +-.945977 +.815224 +-.180416 +-.578080 +1.026837 +-.967269 +.547548 +-.128809 +.015052 +-.251456 +.632947 +-.894984 +.917964 +-.781151 +.642136 +-.569389 +.484687 +-.261352 +-.121783 +.517746 +-.700640 +.532342 +-.070314 +-.464175 +.823766 +-.873382 +.641665 +-.273917 +-.061389 +.248924 +-.255007 +.114714 +.098222 +-.298774 +.409203 +-.374025 +.178363 +.132853 +-.452086 +.643236 +-.612194 +.378177 +-.089275 +-.049033 +-.096933 +.487423 +-.916500 +1.138709 +-1.034494 +.694428 +-.354440 +.224586 +-.339383 +.544457 +-.627952 +.487998 +-.200648 +-.061737 +.183495 +-.195386 +.227889 +-.377715 +.610844 +-.785941 +.773649 +-.566507 +.290346 +-.115524 +.144612 +-.359084 +.650070 +-.894501 +1.017973 +-1.012242 +.914312 +-.772916 +.623434 +-.478046 +.329607 +-.164685 +-.020114 +.207196 +-.359373 +.434618 +-.407648 +.288430 +-.128115 +.007416 +-.006991 +.168306 +-.462196 +.785726 +-.997444 +.980765 +-.703829 +.241164 +.259253 +-.647191 +.838638 +-.842638 +.735162 +-.604347 +.506426 +-.455788 +.441768 +-.446739 +.449946 +-.425256 +.350810 +-.232482 +.119275 +-.085102 +.177718 +-.369858 +.555211 +-.603259 +.442623 +-.118363 +-.217414 +.381735 +-.262934 +-.108437 +.562206 +-.868059 +.851812 +-.484684 +-.104588 +.699686 +-1.104463 +1.226302 +-1.094470 +.816413 +-.505797 +.222725 +.047174 +-.366174 +.782379 +-1.266368 +1.690620 +-1.878891 +1.705913 +-1.185118 +.480949 +.167389 +-.561055 +.621750 +-.396075 +.001848 +.433357 +-.804312 +1.032562 +-1.067628 +.900167 +-.576247 +.190477 +.150039 +-.374159 +.477322 +-.514289 +.557237 +-.642628 +.739714 +-.764258 +.636926 +-.352735 +.008849 +.242720 +-.296097 +.173027 +-.014545 +-.020978 +-.123077 +.362041 +-.542693 +.565964 +-.457097 +.330471 +-.290537 +.360675 +-.495205 +.645686 +-.803111 +.970375 +-1.100291 +1.081377 +-.814041 +.325449 +.187785 +-.457669 +.334483 +.076139 +-.451645 +.460676 +.003188 +-.736408 +1.356241 +-1.553948 +1.286478 +-.774615 +.323849 +-.111388 +.094993 +-.093263 +-.045148 +.322218 +-.604642 +.743171 +-.692241 +.538326 +-.426487 +.451162 +-.594943 +.752249 +-.809954 +.723595 +-.541614 +.371337 +-.314580 +.409269 +-.602412 +.764973 +-.747543 +.461108 +.052294 +-.606040 +.940892 +-.860730 +.357156 +.361582 +-.969758 +1.200718 +-.994570 +.525403 +-.092769 +-.053425 +-.151776 +.569115 +-.953023 +1.098821 +-.948868 +.601259 +-.230317 +-.019641 +.099597 +-.050537 +-.050619 +.146053 +-.217217 +.269275 +-.304362 +.309385 +-.266015 +.172790 +-.060844 +-.009912 +-.023216 +.188031 +-.448686 +.708329 +-.851094 +.805910 +-.594297 +.325843 +-.136370 +.103722 +-.197075 +.297486 +-.279719 +.101281 +.161744 +-.356548 +.345290 +-.088879 +-.324683 +.716767 +-.895646 +.739365 +-.254360 +-.411367 +1.013756 +-1.312974 +1.192617 +-.734000 +.188789 +.151854 +-.121947 +-.224360 +.651966 +-.894457 +.815814 +-.480514 +.093593 +.140858 +-.146296 +.007737 +.099790 +-.034289 +-.219679 +.543393 +-.762952 +.760997 +-.550698 +.266842 +-.081528 +.098090 +-.289724 +.519913 +-.629275 +.531775 +-.260581 +-.058373 +.278382 +-.300881 +.108749 +.237282 +-.623049 +.916500 +-1.012713 +.879328 +-.578119 +.240461 +-.002576 +-.062039 +-.029724 +.196971 +-.351475 +.445029 +-.481361 +.494820 +-.518265 +.563172 +-.621219 +.678408 +-.725407 +.755501 +-.757292 +.717596 +-.638184 +.549899 +-.501249 +.518920 +-.570837 +.571949 +-.442173 +.176353 +.135562 +-.366183 +.445458 +-.411937 +.370293 +-.387500 +.421802 +-.357060 +.120092 +.224669 +-.499458 +.548621 +-.370478 +.123846 +.006274 +.028807 +-.094960 +-.009250 +.370589 +-.867406 +1.243312 +-1.286698 +.971612 +-.458050 +-.030206 +.341365 +-.447336 +.399821 +-.254857 +.034436 +.259970 +-.615300 +.991605 +-1.328648 +1.558442 +-1.617897 +1.471159 +-1.144655 +.748399 +-.445368 +.362643 +-.496817 +.693284 +-.737365 +.508092 +-.083484 +-.290549 +.357966 +-.029622 +-.547157 +1.076638 +-1.296319 +1.124611 +-.679338 +.171060 +.238647 +-.512173 +.706118 +-.878913 +1.014328 +-1.014575 +.762198 +-.208904 +-.559309 +1.317740 +-1.772935 +1.690134 +-1.024262 +-.021719 +1.065720 +-1.726067 +1.815824 +-1.431066 +.874085 +-.461147 +.342879 +-.451526 +.595659 +-.619198 +.505419 +-.358941 +.295358 +-.333842 +.376213 +-.282638 +-.019616 +.476637 +-.936216 +1.236802 +-1.293091 +1.127225 +-.837694 +.538639 +-.311590 +.193055 +-.190426 +.300202 +-.506718 +.762973 +-.977776 +1.035117 +-.848715 +.423352 +.119790 +-.579680 +.763355 +-.581045 +.097577 +.489530 +-.937861 +1.072489 +-.867406 +.452593 +-.040649 +-.187375 +.170471 +.021709 +-.255652 +.423990 +-.491810 +.475003 +-.386659 +.211643 +.064034 +-.402250 +.699874 +-.840370 +.774037 +-.558746 +.322591 +-.175265 +.138655 +-.150546 +.132874 +-.062893 +-.013353 +.033216 +.014386 +-.066585 +.031538 +.134495 +-.379315 +.573713 +-.586151 +.364350 +.027565 +-.439720 +.716055 +-.773247 +.628468 +-.360839 +.041641 +.306011 +-.683690 +1.056117 +-1.317802 +1.333667 +-1.031958 +.476622 +.142330 +-.599480 +.745937 +-.576137 +.218973 +.131487 +-.307540 +.240940 +.014370 +-.322284 +.548728 +-.640088 +.643316 +-.652589 +.722051 +-.811513 +.807340 +-.603584 +.185020 +.344897 +-.807725 +1.036664 +-.955702 +.610439 +-.138171 +-.303942 +.613470 +-.779056 +.858444 +-.914861 +.959583 +-.945777 +.819796 +-.584532 +.313048 +-.090760 +-.068342 +.251321 +-.579120 +1.082873 +-1.623169 +1.931266 +-1.762646 +1.065848 +-.049682 +-.903803 +1.434321 +-1.390574 +.898748 +-.274276 +-.164735 +.265647 +-.091649 +-.163715 +.324189 +-.335258 +.264185 +-.218969 +.261753 +-.378165 +.505422 +-.578634 +.557947 +-.433575 +.227906 +-.001961 +-.150749 +.142787 +.046494 +-.332492 +.552340 +-.555810 +.303751 +.098763 +-.465463 +.648112 +-.627433 +.510638 +-.440075 +.484624 +-.596180 +.661643 +-.603873 +.447079 +-.292992 +.229795 +-.254401 +.276644 +-.202119 +.019772 +.184847 +-.302664 +.294939 +-.224948 +.202119 +-.291127 +.465180 +-.638020 +.738480 +-.758908 +.739597 +-.711214 +.652440 +-.502984 +.222334 +.155003 +-.515103 +.719840 +-.685874 +.433935 +-.075376 +-.254453 +.470777 +-.571931 +.608701 +-.616006 +.564340 +-.378827 +.021074 +.429974 +-.778537 +.819748 +-.490311 +-.055333 +.519841 +-.652788 +.422422 +-.038918 +-.193323 +.088092 +.299829 +-.726182 +.935998 +-.832898 +.518861 +-.188967 +-.025397 +.140807 +-.274219 +.511216 +-.802879 +.978568 +-.868261 +.440773 +.149004 +-.642678 +.833926 +-.689946 +.359400 +-.068346 +-.021792 +-.098951 +.307841 +-.452140 +.460369 +-.385047 +.350786 +-.449604 +.661801 +-.858128 +.878141 +-.628387 +.140047 +.438588 +-.901097 +1.064996 +-.850122 +.326576 +.297667 +-.763027 +.887470 +-.664856 +.262712 +.086215 +-.226214 +.156007 +.005259 +-.124168 +.143529 +-.095807 +.049006 +-.043504 +.069830 +-.090147 +.070104 +.006667 +-.139474 +.308377 +-.463803 +.526759 +-.420049 +.124005 +.281600 +-.631526 +.753737 +-.573964 +.179260 +.212808 +-.376576 +.224267 +.124096 +-.409290 +.407844 +-.093263 +-.342647 +.636387 +-.660618 +.526708 +-.490487 +.729508 +-1.172883 +1.531258 +-1.513673 +1.061777 +-.410113 +-.082001 +.196705 +-.010497 +-.185875 +.130520 +.203980 +-.606695 +.818878 +-.751188 +.545253 +-.436451 +.545259 +-.778334 +.918047 +-.814291 +.510116 +-.198636 +.058204 +-.113049 +.234707 +-.271364 +.183434 +-.066587 +.049359 +-.164132 +.309155 +-.334274 +.172526 +.097969 +-.312544 +.345523 +-.197159 +-.022090 +.183485 +-.224481 +.161665 +-.039205 +-.126026 +.347973 +-.625296 +.897765 +-1.057527 +1.017401 +-.782418 +.461034 +-.199863 +.090886 +-.124657 +.222451 +-.311903 +.376383 +-.439238 +.509544 +-.551059 +.508835 +-.368434 +.188997 +-.074981 +.106213 +-.279594 +.503833 +-.647918 +.610787 +-.374111 +.014511 +.328817 +-.517105 +.476985 +-.235214 +-.095776 +.373450 +-.491110 +.421191 +-.219766 +-.004424 +.141673 +-.133563 +.001735 +.167753 +-.284207 +.321524 +-.343860 +.456846 +-.711313 +1.033522 +-1.248736 +1.196897 +-.862729 +.417561 +-.126231 +.171834 +-.519534 +.921337 +-1.067720 +.786421 +-.154418 +-.549297 +1.012775 +-1.068808 +.774534 +-.358631 +.082527 +-.098918 +.378373 +-.732587 +.917391 +-.764460 +.276038 +.366878 +-.890317 +1.062793 +-.808741 +.242062 +.393344 +-.842054 +.955967 +-.758887 +.426884 +-.191402 +.209716 +-.469749 +.786674 +-.902671 +.639561 +-.016189 +-.743174 +1.320640 +-1.474623 +1.167840 +-.577186 +-.018371 +.400581 +-.522151 +.498167 +-.492570 +.585290 +-.716359 +.744140 +-.569508 +.227669 +.125309 +-.322931 +.310949 +-.186364 +.120661 +-.226098 +.469060 +-.697856 +.759462 +-.609557 +.328266 +-.035996 +-.212303 +.461043 +-.787717 +1.196071 +-1.564078 +1.697893 +-1.459321 +.876267 +-.157359 +-.404336 +.581793 +-.330740 +-.193025 +.723691 +-1.030640 +1.037334 +-.848152 +.669321 +-.671172 +.875203 +-1.137567 +1.243088 +-1.053393 +.611652 +-.129073 +-.145591 +.089639 +.209565 +-.510718 +.577454 +-.329005 +-.119410 +.546108 +-.768427 +.739234 +-.538499 +.287672 +-.063885 +-.125640 +.308076 +-.494132 +.656961 +-.749212 +.733413 +-.597700 +.353323 +-.030567 +-.314165 +.590842 +-.693641 +.554582 +-.205146 +-.207005 +.479864 +-.472690 +.198239 +.180692 +-.455022 +.499860 +-.336328 +.086663 +.129586 +-.270065 +.364380 +-.453463 +.538899 +-.584717 +.557017 +-.456748 +.317712 +-.180351 +.068315 +.017956 +-.097261 +.200822 +-.358029 +.568191 +-.771161 +.849493 +-.684748 +.247559 +.341177 +-.838549 +1.001914 +-.736587 +.169018 +.413895 +-.729497 +.663706 +-.327124 +-.031616 +.192363 +-.095044 +-.148501 +.358834 +-.425459 +.376380 +-.337455 +.421122 +-.631812 +.857064 +-.947506 +.824588 +-.538592 +.237251 +-.069733 +.093739 +-.247926 +.402959 +-.449482 +.359087 +-.179513 +-.021634 +.212169 +-.402700 +.605557 +-.789806 +.881691 +-.816938 +.599089 +-.308139 +.048014 +.119507 +-.193383 +.192417 +-.108321 +-.083595 +.354381 +-.567732 +.525752 +-.112141 +-.575093 +1.229801 +-1.511884 +1.275432 +-.675926 +.065989 +.247591 +-.202264 +-.013254 +.138028 +-.053917 +-.135487 +.218211 +-.077971 +-.184765 +.318091 +-.117490 +-.404169 +1.011640 +-1.404829 +1.408993 +-1.056308 +.524622 +-.013741 +-.337207 +.460941 +-.348336 +.056774 +.275399 +-.463335 +.374284 +-.025668 +-.408485 +.708854 +-.761641 +.630903 +-.496790 +.513052 +-.696142 +.921829 +-1.015607 +.861355 +-.460608 +-.072894 +.557515 +-.800944 +.663497 +-.124022 +-.677437 +1.462906 +-1.924098 +1.873421 +-1.348486 +.594666 +.072929 +-.441899 +.499196 +-.398349 +.335341 +-.424276 +.645209 +-.874005 +.956227 +-.782808 +.344918 +.243450 +-.770558 +1.008230 +-.824934 +.268860 +.437700 +-1.000975 +1.197543 +-.973761 +.452763 +.142011 +-.595837 +.787905 +-.718153 +.473498 +-.160997 +-.147951 +.426860 +-.658505 +.795240 +-.763674 +.524142 +-.139417 +-.215839 +.336209 +-.115118 +-.367963 +.876153 +-1.153650 +1.086434 +-.774528 +.461999 +-.370633 +.552814 +-.867331 +1.092848 +-1.091928 +.901970 +-.687472 +.599176 +-.658177 +.757641 +-.770842 +.664159 +-.515874 +.433196 +-.452414 +.516289 +-.543211 +.515085 +-.496501 +.566754 +-.727699 +.873459 +-.855049 +.595837 +-.170486 +-.217804 +.358738 +-.180687 +-.181468 +.458047 +-.424195 +.068469 +.378987 +-.597092 +.407037 +.084337 +-.547870 +.666492 +-.370171 +-.106404 +.389413 +-.233539 +-.305680 +.917201 +-1.255916 +1.171530 +-.780427 +.342334 +-.052118 +-.087774 +.223386 +-.484454 +.842832 +-1.110016 +1.072149 +-.652988 +-.017116 +.667163 +-1.029576 +.967299 +-.522157 +-.118252 +.702604 +-1.011699 +.940347 +-.538991 +-.007210 +.462405 +-.651900 +.543813 +-.254672 +-.023605 +.131803 +-.025387 +-.212887 +.430976 +-.499190 +.381920 +-.150356 +-.068767 +.174770 +-.153945 +.081072 +-.061100 +.149967 +-.308684 +.424604 +-.389580 +.184716 +.088943 +-.262504 +.207867 +.069099 +-.421233 +.652112 +-.645158 +.432892 +-.152763 +-.071646 +.221456 +-.367238 +.566232 +-.772239 +.849821 +-.690446 +.331819 +.028366 +-.149422 +-.086788 +.583659 +-1.079368 +1.302971 +-1.132772 +.657980 +-.115279 +-.249821 +.309656 +-.100976 +-.221341 +.482550 +-.575073 +.488782 +-.281004 +.020350 +.251320 +-.517433 +.760407 +-.945169 +1.032813 +-1.010915 +.906656 +-.764100 +.605846 +-.420517 +.194064 +.045084 +-.219336 +.252854 +-.138191 +-.048393 +.206249 +-.293273 +.350697 +-.439425 +.545703 +-.553562 +.327163 +.156435 +-.740044 +1.156702 +-1.197290 +.850936 +-.311006 +-.156236 +.377467 +-.350715 +.193856 +-.028099 +-.096588 +.181536 +-.208127 +.105022 +.200381 +-.689794 +1.211790 +-1.541504 +1.505950 +-1.083889 +.412133 +.294903 +-.847642 +1.144008 +-1.176150 +1.005223 +-.731893 +.470169 +-.317986 +.323834 +-.462855 +.639957 +-.727109 +.625156 +-.324332 +-.070525 +.377345 +-.433590 +.203670 +.178161 +-.477096 +.511219 +-.286975 +.011689 +.041612 +.269301 +-.837625 +1.357735 +-1.514820 +1.186513 +-.523230 +-.139920 +.474419 +-.331172 +-.198945 +.851565 +-1.327337 +1.426539 +-1.123383 +.559070 +.035815 +-.452256 +.594112 +-.501994 +.298974 +-.097796 +-.063406 +.212920 +-.379977 +.535447 +-.596872 +.499020 +-.269847 +.040796 +.029709 +.132561 +-.455860 +.760786 +-.873671 +.735851 +-.434466 +.138678 +.010056 +.020497 +-.148550 +.244358 +-.216984 +.064415 +.138752 +-.297529 +.352712 +-.303135 +.192654 +-.084015 +.039331 +-.106609 +.301346 +-.583924 +.853383 +-.980133 +.873155 +-.543566 +.116093 +.230660 +-.364893 +.279042 +-.090020 +-.041731 +.022200 +.113411 +-.231181 +.203390 +-.013322 +-.218638 +.312049 +-.154213 +-.214168 +.619532 +-.868193 +.869039 +-.678200 +.440024 +-.275698 +.204761 +-.151718 +.022326 +.212914 +-.486907 +.670999 +-.647984 +.378210 +.073128 +-.554758 +.883664 +-.915368 +.607285 +-.049706 +-.556233 +.976026 +-1.048088 +.766040 +-.285453 +-.159916 +.389681 +-.375062 +.237832 +-.150932 +.211855 +-.378517 +.507037 +-.454125 +.166253 +.298121 +-.808154 +1.218886 +-1.413154 +1.324777 +-.957693 +.401827 +.175027 +-.578780 +.671559 +-.439348 +-.003115 +.478955 +-.844233 +1.047384 +-1.117884 +1.106830 +-1.037155 +.903690 +-.709936 +.493724 +-.310007 +.188184 +-.111522 +.044144 +.018483 +-.027429 +-.085237 +.338915 +-.659447 +.897968 +-.907112 +.626757 +-.124347 +-.434683 +.867021 +-1.054213 +.982872 +-.728531 +.403678 +-.106628 +-.101990 +.192715 +-.148657 +-.041615 +.368365 +-.773080 +1.137928 +-1.318896 +1.219992 +-.865716 +.413081 +-.077235 +.008391 +-.201446 +.503815 +-.717989 +.728430 +-.567896 +.384123 +-.334441 +.478219 +-.732462 +.916151 +-.857967 +.505336 +.032581 +-.541074 +.826392 +-.831995 +.663199 +-.499553 +.459401 +-.521370 +.565225 +-.496954 +.348527 +-.261135 +.359138 +-.621842 +.869763 +-.889551 +.601187 +-.128874 +-.287357 +.470473 +-.429804 +.329151 +-.329753 +.441869 +-.510313 +.345562 +.108625 +-.708046 +1.194485 +-1.364840 +1.191392 +-.809725 +.400495 +-.068626 +-.191534 +.439589 +-.709134 +.975191 +-1.182596 +1.293193 +-1.305359 +1.238063 +-1.108362 +.929644 +-.728734 +.556948 +-.474500 +.512611 +-.638506 +.751644 +-.722829 +.463260 +.011610 +-.563413 +.978625 +-1.068048 +.770186 +-.201500 +-.381369 +.698404 +-.589018 +.106035 +.497962 +-.896725 +.866601 +-.411212 +-.244642 +.791949 +-1.018682 +.916035 +-.642741 +.382504 +-.206759 +.046756 +.210962 +-.590708 +.970789 +-1.153179 +1.005914 +-.566572 +.028911 +.374171 +-.504859 +.383470 +-.151125 +-.029064 +.064339 +.030596 +-.158861 +.202313 +-.082620 +-.202470 +.576449 +-.912360 +1.082560 +-1.012504 +.713611 +-.273607 +-.194606 +.613214 +-.963296 +1.251564 +-1.449140 +1.465014 +-1.196479 +.633436 +.067070 +-.617759 +.755522 +-.420580 +-.173920 +.654565 +-.723923 +.358044 +.182706 +-.543652 +.526965 +-.216315 +-.112162 +.211830 +-.042220 +-.228037 +.374928 +-.294272 +.064513 +.134537 +-.168136 +.043269 +.106520 +-.125058 +-.053620 +.358753 +-.627436 +.705110 +-.534550 +.179335 +.225362 +-.553601 +.744509 +-.803403 +.763128 +-.646294 +.458024 +-.206383 +-.076196 +.332316 +-.500725 +.541611 +-.449955 +.252913 +.000539 +-.249001 +.425951 +-.472154 +.359340 +-.119037 +-.144027 +.277893 +-.152050 +-.262224 +.851565 +-1.397524 +1.679765 +-1.587225 +1.169032 +-.596025 +.062996 +.302914 +-.475862 +.502990 +-.452507 +.380513 +-.328624 +.333112 +-.423212 +.606856 +-.860885 +1.137269 +-1.377149 +1.517777 +-1.493668 +1.250712 +-.783500 +.173352 +.416050 +-.806884 +.904912 +-.755659 +.507776 +-.303227 +.175024 +-.033402 +-.245405 +.693719 +-1.187788 +1.499229 +-1.434214 +.967716 +-.280247 +-.332588 +.624977 +-.537921 +.222229 +.067557 +-.140887 +-.008087 +.205468 +-.224639 +-.050796 +.538064 +-.998788 +1.183824 +-.983161 +.488815 +.059095 +-.401097 +.385330 +-.032032 +-.484401 +.918032 +-1.061744 +.841562 +-.354926 +-.170090 +.483179 +-.437738 +.066939 +.435145 +-.817379 +.900564 +-.658839 +.214518 +.239116 +-.535760 +.601533 +-.462622 +.204181 +.087355 +-.363027 +.611103 +-.824392 +.967758 +-.981090 +.826037 +-.542323 +.258265 +-.127087 +.222188 +-.469111 +.677183 +-.661271 +.371620 +.063249 +-.415048 +.501941 +-.301358 +-.044313 +.324972 +-.390605 +.226015 +.063753 +-.330197 +.459827 +-.409320 +.194600 +.135931 +-.514927 +.853103 +-1.042258 +.986568 +-.657792 +.138195 +.391628 +-.731434 +.766988 +-.533075 +.185870 +.099408 +-.232317 +.237208 +-.193253 +.141616 +-.043698 +-.170903 +.506885 +-.845020 +.986911 +-.785413 +.268939 +.340310 +-.744265 +.752607 +-.405597 +-.056450 +.361397 +-.391407 +.247941 +-.145242 +.217328 +-.397800 +.478017 +-.302503 +-.061250 +.333702 +-.227494 +-.305161 +.982553 +-1.351145 +1.092384 +-.260125 +-.728289 +1.349944 +-1.308187 +.711337 +.018892 +-.436585 +.353436 +.074052 +-.491238 +.600997 +-.343749 +-.105270 +.486269 +-.624480 +.507043 +-.246557 +-.009508 +.152463 +-.141687 +.004222 +.176483 +-.284838 +.221097 +.037495 +-.401243 +.695799 +-.751448 +.504492 +-.045145 +-.421328 +.678671 +-.608388 +.245091 +.245109 +-.645018 +.783783 +-.608528 +.203617 +.249187 +-.553479 +.589549 +-.371199 +.037174 +.222313 +-.267778 +.086478 +.199847 +-.400059 +.357924 +-.041460 +-.428118 +.825798 +-.931903 +.651381 +-.081789 +-.514891 +.835762 +-.698613 +.151748 +.539268 +-1.030011 +1.083686 +-.693439 +.068099 +.502510 +-.809629 +.814881 +-.627073 +.406613 +-.274006 +.274036 +-.393952 +.597113 +-.838769 +1.060305 +-1.182999 +1.124105 +-.837899 +.360202 +.178445 +-.594446 +.737210 +-.572161 +.203111 +.188906 +-.454328 +.556018 +-.564611 +.575540 +-.617252 +.627076 +-.515797 +.267365 +.012317 +-.146073 +.005605 +.386081 +-.847875 +1.138581 +-1.094324 +.715211 +-.151298 +-.391717 +.758345 +-.896978 +.843657 +-.667911 +.429739 +-.173264 +-.056604 +.209280 +-.253535 +.213042 +-.170773 +.219298 +-.382963 +.573442 +-.626679 +.410706 +.066620 +-.631988 +1.033621 +-1.090774 +.806214 +-.362663 +.005190 +.108061 +.016744 +-.249084 +.448096 +-.556012 +.603652 +-.638700 +.649367 +-.554218 +.268296 +.208120 +-.749293 +1.146667 +-1.210562 +.870824 +-.221170 +-.511815 +1.056967 +-1.204428 +.888326 +-.215131 +-.576861 +1.216305 +-1.515339 +1.445691 +-1.131893 +.766630 +-.503973 +.396918 +-.408059 +.467290 +-.523883 +.560286 +-.573880 +.555130 +-.482660 +.334018 +-.100204 +-.204754 +.541167 +-.847618 +1.051939 +-1.088032 +.915207 +-.536624 +.012394 +.540505 +-.973600 +1.161697 +-1.068471 +.782558 +-.487599 +.367566 +-.496370 +.783553 +-1.019171 +.998576 +-.652735 +.101288 +.407886 +-.638315 +.499857 +-.098016 +-.330114 +.553017 +-.473337 +.174022 +.140906 +-.272427 +.144601 +.152866 +-.419996 +.465806 +-.221640 +-.217744 +.649161 +-.879170 +.832794 +-.586017 +.305054 +-.138320 +.137903 +-.260111 +.429489 +-.601101 +.766228 +-.907478 +.962620 +-.849338 +.540419 +-.120586 +-.238203 +.376618 +-.248208 +-.057829 +.384030 +-.602663 +.669795 +-.609369 +.462536 +-.255501 +.007253 +.244957 +-.437363 +.502501 +-.407397 +.179533 +.097421 +-.317295 +.398459 +-.320922 +.134715 +.065286 +-.183460 +.162227 +.002755 +-.269907 +.568420 +-.813698 +.923990 +-.846009 +.586041 +-.226069 +-.097730 +.255180 +-.190100 +-.048625 +.337049 +-.549160 +.623720 +-.583123 +.499783 +-.443890 +.450885 +-.521642 +.637025 +-.763587 +.848098 +-.822159 +.635803 +-.309146 +-.040030 +.233057 +-.130157 +-.263798 +.766186 +-1.097865 +1.041614 +-.578536 +-.092048 +.667038 +-.912894 +.782573 +-.406736 +-.016760 +.343875 +-.534017 +.616271 +-.625028 +.566823 +-.434406 +.236645 +-.005774 +-.223583 +.435545 +-.628053 +.787404 +-.873030 +.837154 +-.668346 +.421090 +-.197887 +.088291 +-.106103 +.173712 +-.171628 +.023649 +.241081 +-.496799 +.601524 +-.498331 +.265904 +-.076203 +.081212 +-.305260 +.622092 +-.836928 +.815561 +-.565571 +.212830 +.099904 +-.305477 +.424821 +-.503586 +.543032 +-.493327 +.312422 +-.029170 +-.253909 +.425778 +-.445169 +.366043 +-.292519 +.303570 +-.405475 +.537772 +-.612579 +.552543 +-.313581 +-.096280 +.593590 +-1.013139 +1.155152 +-.891634 +.276594 +.429551 +-.871546 +.799195 +-.228864 +-.550361 +1.139949 +-1.259209 +.887587 +-.238252 +-.399177 +.825784 +-1.002046 +.998967 +-.900781 +.748390 +-.558594 +.377995 +-.299552 +.407412 +-.688315 +.991253 +-1.091284 +.833896 +-.263363 +-.366571 +.725941 +-.608409 +.065389 +.617634 +-1.087141 +1.119160 +-.724039 +.107304 +.467260 +-.814345 +.887578 +-.751683 +.507428 +-.224360 +-.084999 +.445261 +-.871444 +1.324693 +-1.701386 +1.871728 +-1.754521 +1.382559 +-.907535 +.527817 +-.379569 +.463892 +-.658961 +.802697 +-.783389 +.582100 +-.259626 +-.079740 +.318371 +-.350616 +.119522 +.339386 +-.882210 +1.302969 +-1.433400 +1.238325 +-.838445 +.437974 +-.202763 +.172215 +-.262163 +.346810 +-.349925 +.276365 +-.172302 +.064094 +.062326 +-.226116 +.402581 +-.516867 +.494689 +-.328015 +.096431 +.078831 +-.115122 +.021974 +.110855 +-.179466 +.135363 +-.007931 +-.133332 +.244121 +-.343466 +.489375 +-.706863 +.927695 +-1.002025 +.792784 +-.294138 +-.317384 +.753752 +-.776719 +.346032 +.347380 +-.987888 +1.309025 +-1.220606 +.816607 +-.279922 +-.232638 +.644437 +-.933376 +1.074226 +-1.016620 +.726674 +-.256154 +-.231392 +.523263 +-.485024 +.166769 +.199127 +-.327950 +.065199 +.500921 +-1.079818 +1.349988 +-1.147206 +.546535 +.203763 +-.833229 +1.175205 +-1.199370 +.966331 +-.570334 +.115702 +.282600 +-.515079 +.526071 +-.361456 +.163722 +-.096205 +.237464 +-.519201 +.757790 +-.767539 +.485426 +-.024340 +-.385392 +.533090 +-.356360 +-.023228 +.378606 +-.514989 +.375423 +-.053727 +-.277902 +.467659 +-.448930 +.247423 +.054352 +-.364383 +.616230 +-.781834 +.863710 +-.876252 +.829378 +-.725026 +.566939 +-.374433 +.187353 +-.054783 +.010525 +-.047083 +.106242 +-.099479 +-.044675 +.331917 +-.687329 +.991533 +-1.146211 +1.121410 +-.951079 +.688795 +-.370660 +.022739 +.298732 +-.484979 +.412029 +-.025717 +-.586383 +1.197955 +-1.534476 +1.405234 +-.804205 +-.073676 +.909734 +-1.396385 +1.368902 +-.873769 +.139436 +.536165 +-.923105 +.948463 +-.694917 +.324662 +.012461 +-.231358 +.311393 +-.271439 +.154261 +-.026182 +-.030140 +-.050867 +.271247 +-.549780 +.758550 +-.801487 +.679937 +-.492114 +.360786 +-.340614 +.376234 +-.345365 +.156089 +.175395 +-.526085 +.746014 +-.757486 +.601745 +-.402670 +.277968 +-.263484 +.301701 +-.296523 +.190240 +-.006580 +-.168554 +.250464 +-.213416 +.100467 +.017041 +-.091929 +.121262 +-.123355 +.104211 +-.052375 +-.032531 +.114615 +-.137854 +.078481 +.016933 +-.054313 +-.031775 +.211912 +-.367188 +.369185 +-.172546 +-.152892 +.471352 +-.666609 +.696771 +-.588592 +.396596 +-.172540 +-.035990 +.179554 +-.221855 +.171626 +-.094813 +.076978 +-.155044 +.278200 +-.344632 +.294038 +-.175766 +.119606 +-.217521 +.413761 +-.513660 +.331336 +.129416 +-.618277 +.782015 +-.422994 +-.322400 +1.038285 +-1.296730 +.949491 +-.228698 +-.418348 +.637454 +-.393484 +-.041260 +.309253 +-.222620 +-.135242 +.514244 +-.701555 +.656365 +-.485700 +.312466 +-.168700 +.004979 +.209960 +-.408169 +.445145 +-.213165 +-.250790 +.754434 +-1.051095 +.983295 +-.574670 +.015771 +.442001 +-.618745 +.489891 +-.179054 +-.128819 +.296989 +-.301626 +.217189 +-.142695 +.128041 +-.153050 +.166353 +-.144201 +.116841 +-.142278 +.251743 +-.413927 +.546707 +-.567079 +.443831 +-.220583 +-.000706 +.105394 +-.021903 +-.234577 +.553744 +-.772347 +.755972 +-.477638 +.039879 +.380779 +-.634035 +.671830 +-.550528 +.365629 +-.176403 +-.020247 +.252096 +-.509404 +.718373 +-.781434 +.659488 +-.430532 +.265871 +-.322588 +.620090 +-.995775 +1.190036 +-1.016975 +.504048 +.106694 +-.507255 +.522086 +-.216658 +-.156947 +.331464 +-.188804 +-.187048 +.583901 +-.794828 +.725351 +-.426833 +.058477 +.192541 +-.198105 +-.050633 +.438004 +-.781029 +.922029 +-.805808 +.499226 +-.149047 +-.090841 +.123968 +.055487 +-.365400 +.671622 +-.848092 +.837759 +-.678712 +.471889 +-.306228 +.197047 +-.090308 +-.066901 +.250688 +-.353361 +.263812 +.025505 +-.378171 +.585594 +-.506033 +.167082 +.247160 +-.515946 +.521689 +-.312297 +.051165 +.099531 +-.078436 +-.051824 +.158045 +-.121512 +-.095350 +.427551 +-.732957 +.853043 +-.689150 +.263397 +.271702 +-.692497 +.808860 +-.557249 +.029186 +.576679 +-1.044952 +1.228019 +-1.094106 +.731395 +-.310475 +.011268 +.065293 +.042387 +-.170757 +.127965 +.177557 +-.662591 +1.106919 +-1.285846 +1.110478 +-.680212 +.212000 +.102916 +-.214188 +.221061 +-.274558 +.450945 +-.693186 +.862077 +-.851290 +.669878 +-.425137 +.225285 +-.091809 +-.037833 +.219857 +-.412205 +.474962 +-.276953 +-.174090 +.689308 +-.990186 +.875057 +-.345815 +-.388707 +1.027502 +-1.332329 +1.232334 +-.831607 +.333052 +.069228 +-.271143 +.278247 +-.165416 +.011324 +.145187 +-.299349 +.438609 +-.510352 +.440212 +-.197495 +-.144480 +.416184 +-.445130 +.180778 +.241781 +-.560143 +.541116 +-.135455 +-.474887 +.973356 +-1.091197 +.763155 +-.163495 +-.397687 +.656365 +-.548394 +.242078 +-.025026 +.111718 +-.495762 +.948853 +-1.171646 +.993155 +-.480320 +-.113760 +.515979 +-.590216 +.382785 +-.046437 +-.280262 +.545029 +-.766532 +.966822 +-1.120063 +1.161694 +-1.046103 +.800992 +-.530795 +.361757 +-.364684 +.506671 +-.664540 +.694428 +-.517722 +.171879 +.207417 +-.465537 +.522288 +-.418011 +.280359 +-.233782 +.316061 +-.460348 +.551238 +-.508665 +.337422 +-.114024 +-.066028 +.134666 +-.065546 +-.131349 +.408753 +-.671929 +.787032 +-.635287 +.197026 +.393917 +-.883906 +1.022471 +-.706082 +.050314 +.658868 +-1.107068 +1.104076 +-.665577 +-.010745 +.652088 +-1.040380 +1.100806 +-.908796 +.619049 +-.363739 +.185224 +-.044644 +-.107066 +.256437 +-.315322 +.182701 +.166220 +-.634127 +1.038309 +-1.208476 +1.081842 +-.735675 +.341004 +-.069890 +.010849 +-.135742 +.329360 +-.461555 +.464303 +-.373545 +.308389 +-.389681 +.639015 +-.927620 +1.028852 +-.762437 +.140865 +.595668 +-1.102082 +1.137463 +-.713578 +.075560 +.466917 +-.727333 +.715235 +-.562867 +.390334 +-.226460 +.035972 +.194783 +-.402655 +.472631 +-.317953 +-.053429 +.536771 +-.989984 +1.308605 +-1.465195 +1.493426 +-1.437045 +1.306417 +-1.076551 +.726301 +-.284940 +-.155753 +.478857 +-.604460 +.532163 +-.335660 +.117785 +.040739 +-.110267 +.110840 +-.090077 +.091785 +-.125733 +.152605 +-.101117 +-.078731 +.353445 +-.585233 +.589927 +-.255666 +-.353782 +.995089 +-1.364783 +1.274377 +-.764466 +.078945 +.481337 +-.721813 +.628807 +-.325038 +-.036555 +.352446 +-.576232 +.678605 +-.619276 +.366824 +.050721 +-.516688 +.856849 +-.923454 +.682429 +-.245460 +-.180164 +.401880 +-.350417 +.119879 +.091458 +-.109616 +-.096415 +.385127 +-.527954 +.359194 +.106369 +-.665914 +1.038711 +-1.026619 +.626968 +-.030573 +-.491414 +.740429 +-.688801 +.465642 +-.248019 +.138356 +-.114879 +.083543 +.017930 +-.150186 +.191641 +-.031940 +-.330459 +.756610 +-1.027135 +.963869 +-.546883 +-.043041 +.494588 +-.528515 +.069555 +.681460 +-1.340385 +1.559492 +-1.241243 +.600678 +-.026314 +-.171698 +-.045051 +.438755 +-.675857 +.560477 +-.158125 +-.267671 +.450039 +-.303105 +-.028923 +.282348 +-.259264 +-.043642 +.447318 +-.725044 +.755489 +-.584404 +.361352 +-.215522 +.174869 +-.186012 +.200685 +-.240027 +.375959 +-.649498 +1.004344 +-1.299937 +1.397777 +-1.253481 +.943941 +-.613243 +.381354 +-.282532 +.271814 +-.284753 +.298187 +-.341159 +.445935 +-.581260 +.631898 +-.459696 +.013380 +.596070 +-1.126748 +1.338117 +-1.137514 +.636452 +-.078601 +-.305611 +.416595 +-.309337 +.131063 +-.029408 +.083680 +-.278377 +.516110 +-.664376 +.625243 +-.396885 +.081473 +.181428 +-.317712 +.376827 +-.486964 +.733213 +-1.056967 +1.268556 +-1.175688 +.733800 +-.102251 +-.438952 +.653706 +-.482705 +.063342 +.362261 +-.580896 +.502811 +-.178006 +-.251630 +.623198 +-.813441 +.776987 +-.560939 +.290481 +-.119356 +.154954 +-.394015 +.712669 +-.928371 +.903005 +-.624209 +.212627 +.149178 +-.319500 +.267431 +-.071258 +-.144320 +.282986 +-.314827 +.263113 +-.166857 +.059806 +.019281 +-.009655 +-.155811 +.492874 +-.905952 +1.189767 +-1.122790 +.612847 +.199963 +-.968933 +1.305603 +-1.000162 +.164308 +.802742 +-1.422321 +1.405494 +-.822746 +.063748 +.397058 +-.288966 +-.293601 +.960757 +-1.281947 +1.057905 +-.431050 +-.232579 +.600329 +-.587510 +.384817 +-.291110 +.482508 +-.887297 +1.251278 +-1.333730 +1.082295 +-.661241 +.325574 +-.244929 +.404092 +-.634759 +.734286 +-.581510 +.186106 +.331831 +-.798199 +1.046797 +-.976503 +.597208 +-.043921 +-.466756 +.736772 +-.695415 +.444632 +-.198848 +.147814 +-.329878 +.601837 +-.728960 +.539042 +-.043263 +-.552838 +.957195 +-.955285 +.533260 +.114106 +-.695439 +.984374 +-.929441 +.648782 +-.327744 +.100394 +.005630 +-.042175 +.076575 +-.147838 +.262023 +-.402518 +.527775 +-.564316 +.427667 +-.084241 +-.384248 +.780847 +-.890412 +.626259 +-.119612 +-.332999 +.449705 +-.152282 +-.377005 +.820243 +-.941834 +.735153 +-.390814 +.125330 +-.020586 +.004649 +.028387 +-.085482 +.059532 +.152938 +-.512811 +.813745 +-.808625 +.392647 +.302723 +-.980375 +1.358298 +-1.324401 +.960489 +-.441992 +-.084528 +.545983 +-.897401 +1.065184 +-.961723 +.572330 +-.027082 +-.433777 +.602445 +-.451928 +.166703 +-.017243 +.164351 +-.538830 +.888290 +-.957699 +.670445 +-.178891 +-.248039 +.412336 +-.311545 +.115666 +-.023476 +.111456 +-.284454 +.355543 +-.186621 +-.214705 +.703873 +-1.094166 +1.262136 +-1.195499 +.969085 +-.685541 +.428815 +-.250320 +.175224 +-.206311 +.318457 +-.455630 +.545164 +-.528667 +.392107 +-.173898 +-.056079 +.233312 +-.326323 +.337401 +-.279884 +.155229 +.045656 +-.313021 +.584598 +-.742950 +.663184 +-.293989 +-.276952 +.826719 +-1.091048 +.912000 +-.354846 +-.292566 +.663005 +-.524354 +-.069745 +.802104 +-1.281968 +1.277894 +-.835703 +.211501 +.312893 +-.588482 +.630691 +-.537709 +.391914 +-.226475 +.058352 +.073609 +-.116903 +.051146 +.080806 +-.193188 +.213904 +-.128364 +-.023534 +.187271 +-.330087 +.444382 +-.523370 +.540475 +-.457883 +.260138 +.015608 +-.282095 +.442093 +-.442972 +.309095 +-.127599 +-.006144 +.047809 +-.025171 +.002414 +-.013570 +.021131 +.057004 +-.263833 +.530577 +-.688479 +.577335 +-.179643 +-.327148 +.657590 +-.596591 +.145447 +.471686 +-.948591 +1.085776 +-.897738 +.574506 +-.339970 +.313113 +-.460575 +.651948 +-.760037 +.733332 +-.604397 +.448227 +-.331294 +.283394 +-.298065 +.346789 +-.392045 +.397279 +-.341368 +.237772 +-.141927 +.126857 +-.229518 +.403988 +-.526810 +.467346 +-.181622 +-.238368 +.601471 +-.720546 +.516664 +-.061502 +-.461415 +.848614 +-.970166 +.820764 +-.507824 +.186349 +.025000 +-.101114 +.108799 +-.148647 +.279314 +-.475686 +.649203 +-.714001 +.648556 +-.506680 +.370472 +-.285240 +.230275 +-.149073 +.010710 +.154180 +-.275508 +.303674 +-.252200 +.186092 +-.170317 +.226710 +-.333130 +.454730 +-.570062 +.669550 +-.739314 +.758631 +-.720284 +.651939 +-.607598 +.623499 +-.669503 +.642246 +-.423256 +-.024070 +.583716 +-1.005694 +1.025350 +-.523534 +-.371885 +1.319048 +-1.924214 +1.943498 +-1.405109 +.580157 +.174926 +-.604880 +.662043 +-.484502 +.280724 +-.203025 +.281003 +-.435524 +.547309 +-.534935 +.402354 +-.233263 +.134936 +-.163442 +.281179 +-.382779 +.375313 +-.249866 +.083364 +.033225 +-.076262 +.103880 +-.186038 +.313027 +-.373083 +.235039 +.122384 +-.545628 +.778999 +-.641445 +.180155 +.327649 +-.549771 +.338620 +.142473 +-.514289 +.445744 +.100062 +-.822764 +1.284665 +-1.212830 +.684104 +-.061837 +-.262818 +.132566 +.293950 +-.679276 +.745388 +-.440376 +-.063877 +.510092 +-.715506 +.652058 +-.421963 +.172986 +-.018814 +.003981 +-.113456 +.301653 +-.514486 +.695856 +-.790659 +.760422 +-.610886 +.405323 +-.236839 +.164533 +-.160187 +.118017 +.064935 +-.393961 +.747052 +-.946120 +.885447 +-.622605 +.358282 +-.309858 +.561181 +-.992419 +1.342496 +-1.368530 +1.000198 +-.388865 +-.180889 +.460482 +-.379297 +.071935 +.222022 +-.316648 +.192397 +.009292 +-.101840 +-.003914 +.232568 +-.399025 +.340539 +-.025601 +-.436457 +.877152 +-1.166335 +1.254292 +-1.151540 +.894600 +-.540171 +.178069 +.079814 +-.153311 +.053906 +.108739 +-.193842 +.124869 +.059360 +-.235273 +.280655 +-.152898 +-.089711 +.328895 +-.457380 +.435962 +-.305480 +.149058 +-.031021 +-.042863 +.111895 +-.203920 +.287317 +-.281285 +.123859 +.159893 +-.455159 +.631010 +-.633281 +.519806 +-.410130 +.392641 +-.463937 +.542675 +-.539015 +.423420 +-.247251 +.107963 +-.087103 +.199606 +-.381005 +.516974 +-.500117 +.286645 +.074414 +-.455687 +.705972 +-.722749 +.508876 +-.182164 +-.075408 +.110743 +.113452 +-.491476 +.830615 +-.960489 +.828457 +-.521776 +.207541 +-.035158 +.063184 +-.245840 +.471197 +-.618459 +.606034 +-.420574 +.125851 +.152831 +-.274490 +.150140 +.199653 +-.638300 +.974965 +-1.065804 +.892227 +-.563526 +.242204 +-.045090 +-.011599 +-.008797 +.034734 +-.047889 +.087953 +-.202053 +.382844 +-.547765 +.581367 +-.416583 +.098603 +.219609 +-.360109 +.236408 +.073498 +-.356103 +.387875 +-.082170 +-.440138 +.908808 +-1.058531 +.783401 +-.197604 +-.429351 +.817978 +-.819581 +.479262 +.003748 +-.391058 +.533558 +-.446987 +.292895 +-.271786 +.486129 +-.857385 +1.156815 +-1.141999 +.717545 +-.013953 +-.672468 +1.043590 +-.962417 +.514646 +.058010 +-.498018 +.656237 +-.539432 +.275151 +-.028305 +-.085950 +.054874 +.036358 +-.066392 +-.036175 +.236978 +-.412059 +.428842 +-.235151 +-.106892 +.462941 +-.709134 +.797508 +-.768147 +.712043 +-.713718 +.803156 +-.937369 +1.021889 +-.967988 +.758726 +-.479930 +.283736 +-.295795 +.523984 +-.835589 +1.027746 +-.950698 +.602967 +-.134684 +-.244980 +.396045 +-.329428 +.191450 +-.164037 +.346104 +-.689019 +1.021374 +-1.143093 +.933289 +-.416270 +-.243019 +.810297 +-1.089188 +1.017204 +-.700169 +.356315 +-.189636 +.262999 +-.455988 +.545283 +-.361582 +-.082445 +.583877 +-.869671 +.765793 +-.304556 +-.296448 +.766073 +-.937214 +.832415 +-.625499 +.503818 +-.522747 +.555613 +-.385312 +-.115872 +.845803 +-1.486157 +1.683488 +-1.286531 +.473796 +.329449 +-.701733 +.480174 +.150950 +-.792608 +1.086420 +-.917749 +.442501 +.053054 +-.340685 +.359820 +-.201339 +.012627 +.094908 +-.085944 +-.007437 +.114045 +-.153954 +.071962 +.126264 +-.355349 +.477614 +-.380335 +.061070 +.343314 +-.620048 +.604448 +-.282812 +-.198677 +.625454 +-.844072 +.845085 +-.750694 +.720403 +-.835014 +1.030363 +-1.125309 +.937265 +-.420654 +-.263770 +.811716 +-.948585 +.605756 +.025066 +-.608248 +.877984 +-.801442 +.576417 +-.468115 +.605697 +-.887208 +1.060078 +-.915964 +.454825 +.103319 +-.467472 +.473811 +-.186551 +-.166199 +.360872 +-.315205 +.098603 +.164588 +-.394089 +.568167 +-.663330 +.606019 +-.308318 +-.231665 +.861406 +-1.320449 +1.390040 +-1.040631 +.463043 +.046250 +-.265486 +.167476 +.096893 +-.324490 +.395523 +-.327261 +.226863 +-.196666 +.265880 +-.385467 +.471361 +-.455130 +.313456 +-.073163 +-.198257 +.412130 +-.490704 +.406908 +-.210714 +.017004 +.049593 +.075272 +-.354622 +.665336 +-.859001 +.830022 +-.554591 +.089876 +.452694 +-.940561 +1.250384 +-1.297049 +1.061193 +-.604967 +.060104 +.417522 +-.711191 +.791568 +-.720332 +.606257 +-.541954 +.562331 +-.645838 +.745278 +-.815215 +.815072 +-.698968 +.421030 +.029912 +-.588046 +1.103864 +-1.399014 +1.363091 +-1.031850 +.586556 +-.259716 +.198125 +-.372055 +.596967 +-.660353 +.469308 +-.115772 +-.185930 +.242222 +-.001010 +-.429021 +.860664 +-1.142110 +1.225065 +-1.156246 +1.017896 +-.866136 +.702559 +-.487390 +.181175 +.208530 +-.603619 +.876252 +-.911985 +.680951 +-.268082 +-.165113 +.466372 +-.568584 +.505088 +-.360884 +.203179 +-.044559 +-.140390 +.367766 +-.607741 +.785929 +-.819075 +.660454 +-.328957 +-.092541 +.488448 +-.756196 +.844093 +-.760988 +.554591 +-.275625 +-.045363 +.394185 +-.750500 +1.069789 +-1.285664 +1.331933 +-1.171652 +.820982 +-.358899 +-.086308 +.378946 +-.435843 +.273159 +-.004289 +-.220580 +.301063 +-.243212 +.146555 +-.127919 +.233223 +-.398200 +.488973 +-.399556 +.139954 +.154097 +-.308324 +.238790 +-.024757 +-.140592 +.094249 +.166409 +-.473585 +.613607 +-.491008 +.203382 +.032409 +-.046025 +-.153215 +.372770 +-.364598 +-.003947 +.647465 +-1.292504 +1.623083 +-1.458886 +.865734 +-.133832 +-.370705 +.404828 +.012439 +-.606105 +1.002543 +-.951026 +.476380 +.135005 +-.509669 +.413203 +.112244 +-.778707 +1.224064 +-1.216043 +.772505 +-.138335 +-.358679 +.489771 +-.244647 +-.176875 +.494469 +-.518694 +.256481 +.114882 +-.383995 +.453478 +-.396307 +.382031 +-.529352 +.795562 +-.988946 +.902140 +-.473850 +-.141757 +.656287 +-.827760 +.613953 +-.190685 +-.172036 +.281374 +-.122051 +-.167451 +.403040 +-.461225 +.322457 +-.048768 +-.268247 +.553080 +-.770257 +.925674 +-1.047524 +1.153564 +-1.222514 +1.193621 +-1.003965 +.643063 +-.183230 +-.243842 +.512951 +-.566480 +.425808 +-.150456 +-.211712 +.632861 +-1.065306 +1.400993 +-1.490765 +1.235345 +-.687391 +.074358 +.301808 +-.238519 +-.233915 +.854816 +-1.276648 +1.259728 +-.796834 +.098025 +.542469 +-.905276 +.935477 +-.723291 +.410136 +-.095226 +-.197488 +.484842 +-.764717 +.984410 +-1.062293 +.946809 +-.670445 +.357847 +-.172421 +.221787 +-.475966 +.758562 +-.836320 +.566316 +-.006559 +-.595337 +.942985 +-.874282 +.462628 +.033033 +-.332406 +.297578 +.008638 +-.392745 +.662350 +-.724337 +.596562 +-.353427 +.066268 +.217991 +-.464935 +.643793 +-.742438 +.787693 +-.834534 +.915555 +-.989510 +.944666 +-.674251 +.176081 +.403526 +-.828788 +.908027 +-.614489 +.112613 +.329026 +-.482872 +.277351 +.181176 +-.681827 +1.026286 +-1.121082 +1.001205 +-.784722 +.594607 +-.494698 +.471501 +-.464488 +.419900 +-.331559 +.243049 +-.213375 +.273134 +-.402939 +.544964 +-.632903 +.616942 +-.475266 +.220893 +.089935 +-.359796 +.482332 +-.402372 +.165216 +.093014 +-.224984 +.172483 +-.010249 +-.108139 +.067816 +.114387 +-.294899 +.304911 +-.073886 +-.314717 +.671908 +-.817361 +.680778 +-.331705 +-.067664 +.349034 +-.415364 +.277016 +-.037676 +-.160395 +.206898 +-.076250 +-.164655 +.398176 +-.522029 +.501732 +-.382355 +.259300 +-.228692 +.342381 +-.583823 +.870041 +-1.079192 +1.098380 +-.877232 +.462727 +.009714 +-.375813 +.526393 +-.465323 +.300404 +-.168825 +.147562 +-.211849 +.268724 +-.234056 +.090274 +.116126 +-.322999 +.495104 +-.621991 +.682232 +-.621648 +.381235 +.040551 +-.546457 +.965535 +-1.136676 +.992973 +-.588681 +.056242 +.466124 +-.883187 +1.146542 +-1.235389 +1.149409 +-.922840 +.634202 +-.381145 +.224906 +-.148744 +.076816 +.049396 +-.198795 +.254269 +-.106215 +-.233135 +.594931 +-.745171 +.547557 +-.078278 +-.399764 +.594454 +-.369107 +-.171189 +.747308 +-1.078661 +1.044943 +-.736298 +.371810 +-.152440 +.146906 +-.274119 +.375146 +-.316269 +.061308 +.315247 +-.667607 +.846563 +-.770630 +.473915 +-.103007 +-.151833 +.168484 +.015732 +-.203701 +.150710 +.269646 +-.957303 +1.620499 +-1.943125 +1.776544 +-1.224591 +.564972 +-.067972 +-.157955 +.192819 +-.204404 +.310121 +-.503839 +.686521 +-.758523 +.695418 +-.555866 +.427238 +-.357939 +.325813 +-.260158 +.095952 +.178699 +-.510259 +.803466 +-.961148 +.919880 +-.674415 +.292548 +.085374 +-.280346 +.152262 +.304187 +-.908301 +1.348752 +-1.345908 +.835354 +-.044684 +-.613470 +.784597 +-.396471 +-.293202 +.864798 +-1.005533 +.692446 +-.172538 +-.225054 +.296113 +-.049262 +-.353883 +.726874 +-.952796 +1.002534 +-.905997 +.723965 +-.535376 +.421048 +-.428049 +.532017 +-.633323 +.606040 +-.376871 +-.017690 +.438451 +-.717163 +.754282 +-.579013 +.329410 +-.159272 +.130172 +-.165379 +.107890 +.148204 +-.545637 +.865841 +-.864697 +.458733 +.175827 +-.682056 +.745442 +-.312574 +-.353671 +.833908 +-.823635 +.330147 +.338811 +-.780200 +.747463 +-.281997 +-.344050 +.808953 +-.915081 +.658755 +-.189381 +-.282460 +.565580 +-.535695 +.161002 +.483501 +-1.222201 +1.823028 +-2.079750 +1.900943 +-1.358343 +.660549 +-.057716 +-.275598 +.315429 +-.179274 +.041615 +-.028520 +.155551 +-.340504 +.471051 +-.477143 +.363990 +-.196255 +.054821 +.003205 +.035754 +-.141350 +.250295 +-.285382 +.184393 +.065609 +-.406324 +.720907 +-.885372 +.832195 +-.584389 +.236499 +.101152 +-.353123 +.493709 +-.530443 +.483259 +-.378421 +.250735 +-.135600 +.046689 +.042131 +-.186813 +.430913 +-.756285 +1.065827 +-1.221369 +1.122298 +-.776645 +.312180 +.088497 +-.291800 +.287801 +-.185363 +.133512 +-.224829 +.443667 +-.684748 +.818383 +-.755620 +.479632 +-.042563 +-.452429 +.869605 +-1.065923 +.938535 +-.490332 +-.127549 +.649560 +-.820028 +.546698 +.024509 +-.586887 +.868276 +-.810711 +.598249 +-.506549 +.685478 +-1.042437 +1.315287 +-1.274890 +.897681 +-.377610 +-.022308 +.156207 +-.078401 +-.026404 +-.004783 +.201602 +-.464357 +.661280 +-.729723 +.703757 +-.659459 +.635481 +-.598174 +.476729 +-.234029 +-.088197 +.387124 +-.565279 +.593176 +-.520747 +.432487 +-.385398 +.378618 +-.373396 +.339821 +-.287882 +.260127 +-.298220 +.413904 +-.583868 +.764389 +-.910643 +.991080 +-.995939 +.938353 +-.843634 +.729294 +-.591084 +.412533 +-.195662 +-.014152 +.138803 +-.115798 +-.048575 +.264345 +-.398977 +.351877 +-.117320 +-.201575 +.437160 +-.440159 +.162852 +.299990 +-.742429 +.946981 +-.804908 +.383837 +.108899 +-.452075 +.543816 +-.449583 +.333070 +-.325667 +.434299 +-.552522 +.556087 +-.401776 +.154498 +.069576 +-.190462 +.213988 +-.213587 +.268513 +-.408479 +.597074 +-.752038 +.781038 +-.617294 +.252076 +.241923 +-.714675 +.988219 +-.939974 +.572736 +-.018680 +-.533081 +.937110 +-1.148392 +1.199075 +-1.127318 +.929391 +-.583060 +.121293 +.318019 +-.530571 +.367861 +.137201 +-.743451 +1.117875 +-1.038082 +.547244 +.057973 +-.417629 +.354232 +.004316 +-.323780 +.318177 +.031494 +-.463090 +.634098 +-.381059 +-.159818 +.653626 +-.801865 +.535048 +-.037088 +-.392450 +.525585 +-.321357 +-.081535 +.461308 +-.626363 +.486934 +-.068853 +-.514176 +1.104118 +-1.541472 +1.703856 +-1.539490 +1.088357 +-.476818 +-.122784 +.556454 +-.746336 +.710451 +-.535718 +.324859 +-.150885 +.039814 +.021298 +-.066393 +.133916 +-.251743 +.421510 +-.607351 +.740110 +-.743496 +.575239 +-.262614 +-.091724 +.346462 +-.391067 +.212338 +.086457 +-.336963 +.405162 +-.275543 +.059075 +.085246 +-.060438 +-.107749 +.302908 +-.413325 +.412524 +-.362404 +.342319 +-.368592 +.375125 +-.273640 +.042828 +.231917 +-.410598 +.407958 +-.271491 +.154977 +-.196953 +.398659 +-.607706 +.632351 +-.398727 +.018429 +.296919 +-.407138 +.356831 +-.331804 +.493193 +-.829247 +1.150139 +-1.232230 +.993381 +-.557500 +.158486 +.037395 +-.048223 +.042492 +-.184272 +.481492 +-.757891 +.771843 +-.392555 +-.299069 +1.057095 +-1.622776 +1.863580 +-1.802245 +1.538050 +-1.150068 +.673553 +-.156897 +-.279139 +.464956 +-.291925 +-.179661 +.717864 +-1.044177 +1.002430 +-.646875 +.186877 +.164603 +-.321143 +.340402 +-.330817 +.334635 +-.284771 +.066534 +.369432 +-.934207 +1.425114 +-1.633702 +1.466718 +-1.005118 +.466411 +-.091678 +.019239 +-.213840 +.491351 +-.626715 +.483173 +-.086203 +-.399821 +.772043 +-.898453 +.769259 +-.470574 +.113197 +.227308 +-.522816 +.761870 +-.911967 +.912760 +-.711685 +.318037 +.167396 +-.578130 +.758145 +-.647155 +.323494 +.025112 +-.192640 +.062103 +.328859 +-.804065 +1.143105 +-1.201954 +.986923 +-.635242 +.320186 +-.150946 +.135843 +-.220193 +.348882 +-.492087 +.620364 +-.671288 +.560808 +-.245815 +-.212894 +.651012 +-.881992 +.809683 +-.491616 +.103814 +.171274 +-.256332 +.212720 +-.174804 +.234793 +-.363382 +.426842 +-.292419 +-.051086 +.447893 +-.649614 +.472887 +.060445 +-.702654 +1.109894 +-1.051974 +.566507 +.053256 +-.440588 +.390456 +.013577 +-.470646 +.679335 +-.540165 +.196371 +.107381 +-.226698 +.214153 +-.237412 +.397398 +-.609735 +.658359 +-.380785 +-.171465 +.737365 +-1.019204 +.886403 +-.449169 +-.048010 +.414029 +-.622641 +.767003 +-.917323 +1.020369 +-.932991 +.557348 +.043830 +-.652925 +1.021454 +-1.015139 +.677923 +-.185416 +-.258960 +.509270 +-.507428 +.274368 +.106328 +-.504876 +.778421 +-.829086 +.661357 +-.393446 +.200094 +-.216229 +.463531 +-.845833 +1.207853 +-1.411359 +1.385119 +-1.137091 +.743853 +-.330227 +.036046 +.034665 +.132813 +-.442835 +.727145 +-.830761 +.697099 +-.397189 +.081834 +.112478 +-.141151 +.061429 +.027112 +-.063556 +.065831 +-.102370 +.223025 +-.408753 +.580718 +-.657643 +.611860 +-.480371 +.329479 +-.208921 +.131882 +-.087791 +.064628 +-.055946 +.050292 +-.022191 +-.055383 +.179105 +-.290191 +.287665 +-.089220 +-.290603 +.703894 +-.920521 +.756935 +-.206994 +-.520813 +1.102300 +-1.280248 +1.012590 +-.486496 +-.009887 +.269167 +-.278967 +.199733 +-.231527 +.466035 +-.822469 +1.103918 +-1.128724 +.843842 +-.347108 +-.186584 +.611273 +-.870073 +.977498 +-.960191 +.821232 +-.561616 +.229428 +.064171 +-.193743 +.101650 +.154460 +-.430964 +.582947 +-.539876 +.322505 +-.005738 +-.327697 +.605253 +-.758735 +.728522 +-.498275 +.137692 +.197715 +-.339267 +.218505 +.061693 +-.269902 +.195884 +.190498 +-.695486 +1.022316 +-.979868 +.622778 +-.209391 +.004113 +-.077119 +.262287 +-.308088 +.098827 +.235889 +-.415915 +.236264 +.256507 +-.779220 +1.009887 +-.817659 +.351740 +.073435 +-.205255 +.020164 +.287477 +-.473480 +.431515 +-.258171 +.157371 +-.270910 +.569326 +-.877963 +1.004543 +-.866005 +.528303 +-.146631 +-.139298 +.282846 +-.338927 +.409856 +-.568131 +.803400 +-1.022807 +1.102714 +-.960617 +.605449 +-.138266 +-.295860 +.576420 +-.658624 +.581421 +-.432117 +.292577 +-.200162 +.144054 +-.090686 +.013143 +.097424 +-.239772 +.411543 +-.603581 +.784364 +-.896072 +.877775 +-.705429 +.416813 +-.095837 +-.177734 +.375119 +-.522831 +.658785 +-.778311 +.820991 +-.717855 +.462154 +-.138722 +-.124513 +.250909 +-.275487 +.312592 +-.450391 +.661169 +-.809331 +.757406 +-.482600 +.102787 +.213546 +-.379953 +.455645 +-.585334 +.863224 +-1.231658 +1.499131 +-1.468996 +1.085010 +-.486830 +-.065876 +.346879 +-.288861 +.001055 +.320290 +-.516056 +.537992 +-.436451 +.292831 +-.158075 +.037818 +.081308 +-.200094 +.300020 +-.362744 +.393094 +-.421835 +.483662 +-.587209 +.700574 +-.764118 +.721762 +-.549461 +.263368 +.092797 +-.467296 +.811430 +-1.078939 +1.223870 +-1.209573 +1.029084 +-.722010 +.368556 +-.056662 +-.158596 +.272910 +-.313411 +.299862 +-.222752 +.059740 +.185796 +-.463108 +.691868 +-.803069 +.765492 +-.580935 +.268328 +.132869 +-.540004 +.823122 +-.854050 +.594708 +-.158815 +-.216647 +.294208 +.018086 +-.594896 +1.150848 +-1.397095 +1.201898 +-.656433 +.007942 +.491897 +-.721935 +.725553 +-.634432 +.550379 +-.477060 +.345108 +-.098769 +-.232398 +.532887 +-.669580 +.576593 +-.297935 +-.037633 +.290205 +-.383500 +.336713 +-.238491 +.185872 +-.229673 +.357319 +-.511791 +.622811 +-.630512 +.502531 +-.251735 +-.053325 +.309504 +-.439118 +.453949 +-.462342 +.590648 +-.865904 +1.157119 +-1.243410 +.977328 +-.423641 +-.143585 +.402605 +-.199191 +-.336373 +.857314 +-1.011917 +.660681 +.038585 +-.726036 +1.051012 +-.870529 +.322591 +.260892 +-.545882 +.383142 +.112243 +-.629079 +.835571 +-.563467 +-.098955 +.852745 +-1.343840 +1.341631 +-.845440 +.068515 +.683183 +-1.164505 +1.294322 +-1.161310 +.943071 +-.794009 +.766678 +-.803710 +.794268 +-.653426 +.375164 +-.031299 +-.274443 +.460885 +-.498260 +.403794 +-.222824 +.016762 +.141391 +-.181168 +.068044 +.161670 +-.399559 +.516530 +-.443783 +.229206 +-.023084 +-.007891 +-.210841 +.600141 +-.957237 +1.067619 +-.835515 +.351153 +.154181 +-.445807 +.432141 +-.221629 +.046556 +-.100284 +.399439 +-.769664 +.967114 +-.849150 +.470702 +-.039311 +-.230609 +.250980 +-.087021 +-.122127 +.265674 +-.301874 +.228088 +-.043791 +-.235586 +.530240 +-.689329 +.573031 +-.174941 +-.328704 +.671255 +-.674567 +.371778 +.029872 +-.315462 +.417024 +-.431095 +.498486 +-.661938 +.824517 +-.831977 +.596165 +-.157388 +-.347275 +.762279 +-.973475 +.928795 +-.642047 +.198050 +.257211 +-.567395 +.646648 +-.532303 +.355630 +-.241062 +.213054 +-.191920 +.085138 +.106525 +-.266095 +.246420 +.007390 +-.405219 +.774314 +-.981939 +1.014471 +-.953470 +.881730 +-.808002 +.672453 +-.417102 +.052516 +.334438 +-.628149 +.740518 +-.636947 +.333598 +.107611 +-.574476 +.911043 +-.964194 +.666060 +-.102183 +-.495601 +.849490 +-.779402 +.302401 +.375032 +-.965648 +1.241794 +-1.128528 +.710478 +-.169993 +-.296237 +.543936 +-.519210 +.270821 +.065814 +-.320007 +.365802 +-.193907 +-.073745 +.248858 +-.188374 +-.117842 +.539897 +-.882088 +.987867 +-.814342 +.445061 +-.046400 +-.207228 +.209744 +.027324 +-.377235 +.657784 +-.722972 +.536797 +-.186879 +-.167581 +.379053 +-.378186 +.193157 +.078004 +-.319989 +.451440 +-.455586 +.381136 +-.314699 +.336027 +-.475623 +.694801 +-.899967 +.986791 +-.893819 +.638309 +-.312419 +.038103 +.097805 +-.090534 +.016148 +.020557 +.043164 +-.185629 +.316320 +-.339484 +.222810 +-.024885 +-.135984 +.151563 +.010785 +-.284654 +.536380 +-.634455 +.520438 +-.244238 +-.054460 +.210736 +-.113600 +-.238112 +.730361 +-1.181175 +1.418503 +-1.351973 +1.006418 +-.504251 +.006869 +.356157 +-.537215 +.576280 +-.560492 +.562447 +-.596162 +.619830 +-.580354 +.461698 +-.296757 +.135403 +-.002412 +-.111488 +.215154 +-.274065 +.208496 +.049800 +-.478443 +.927760 +-1.171876 +1.033227 +-.507583 +-.198389 +.759760 +-.912926 +.612495 +-.059127 +-.425107 +.592353 +-.406783 +.041391 +.248212 +-.278752 +.028247 +.376025 +-.740641 +.903285 +-.798152 +.471325 +-.051529 +-.303573 +.462450 +-.361102 +.026764 +.416503 +-.771119 +.833020 +-.495715 +-.157843 +.850483 +-1.233547 +1.089096 +-.485086 +-.238945 +.670328 +-.583340 +.080428 +.488394 +-.768568 +.628801 +-.216074 +-.180978 +.337458 +-.213484 +-.071802 +.355877 +-.531725 +.569946 +-.484806 +.301600 +-.055627 +-.194978 +.377822 +-.444021 +.405678 +-.335142 +.316722 +-.383306 +.486666 +-.529051 +.439169 +-.239428 +.052209 +-.029788 +.245934 +-.620903 +.939080 +-.962894 +.579585 +.113600 +-.847860 +1.327388 +-1.389843 +1.080298 +-.595846 +.147382 +.161324 +-.356363 +.515210 +-.660815 +.719679 +-.582026 +.215947 +.262122 +-.630837 +.702705 +-.459448 +.079835 +.168219 +-.100243 +-.265058 +.716058 +-.975931 +.861990 +-.382093 +-.279208 +.865957 +-1.183470 +1.188608 +-.994672 +.793383 +-.739729 +.864378 +-1.063315 +1.169858 +-1.065735 +.763057 +-.405353 +.183377 +-.215188 +.464774 +-.754601 +.871274 +-.703540 +.326084 +.030302 +-.113015 +-.191419 +.772242 +-1.347246 +1.628936 +-1.500761 +1.084450 +-.647832 +.413972 +-.407493 +.451985 +-.321244 +-.070658 +.586407 +-.953816 +.958605 +-.597238 +.080273 +.309984 +-.399740 +.216314 +.060672 +-.240184 +.244783 +-.133792 +.020811 +.039337 +-.100023 +.268558 +-.592297 +.979346 +-1.224469 +1.132617 +-.657909 +-.039300 +.663342 +-.944955 +.796843 +-.366273 +-.051540 +.190541 +.025768 +-.440039 +.760812 +-.742417 +.334090 +.289145 +-.823548 +.998907 +-.716511 +.096754 +.581391 +-1.018003 +1.041531 +-.693278 +.197147 +.172945 +-.249184 +.051388 +.252980 +-.470124 +.490892 +-.322522 +.045889 +.244576 +-.470691 +.572703 +-.517093 +.322967 +-.077981 +-.094198 +.111167 +.003005 +-.125438 +.119076 +.068746 +-.370824 +.651074 +-.794253 +.763420 +-.593456 +.346202 +-.075085 +-.179300 +.379026 +-.490627 +.503023 +-.441777 +.359349 +-.304058 +.290961 +-.297284 +.284415 +-.227258 +.127132 +-.000658 +-.140968 +.298071 +-.463803 +.597441 +-.622170 +.465415 +-.122749 +-.304112 +.636828 +-.714275 +.495616 +-.101662 +-.242158 +.333428 +-.114350 +-.289345 +.638169 +-.716838 +.458989 +.014799 +-.466637 +.678450 +-.576518 +.270203 +.020071 +-.103128 +-.063472 +.355573 +-.580935 +.624557 +-.531587 +.461555 +-.547515 +.771930 +-.962173 +.913138 +-.542216 +-.043624 +.616710 +-.974136 +1.047572 +-.905759 +.669878 +-.424481 +.192031 +.029907 +-.224623 +.355472 +-.404634 +.402855 +-.410920 +.465856 +-.545259 +.591018 +-.574035 +.537072 +-.566063 +.706633 +-.899410 +.999944 +-.878243 +.520601 +-.048595 +-.363093 +.604955 +-.693236 +.730564 +-.807567 +.931632 +-1.037221 +1.058263 +-.990893 +.889136 +-.799022 +.694375 +-.478380 +.061269 +.542174 +-1.174582 +1.598527 +-1.627384 +1.240179 +-.604397 +-.007738 +.355218 +-.335017 +.007599 +.455827 +-.861203 +1.069324 +-1.039221 +.833426 +-.587215 +.447884 +-.502421 +.728120 +-1.000147 +1.160302 +-1.109637 +.865773 +-.547208 +.296385 +-.193676 +.217387 +-.269765 +.246517 +-.103983 +-.114660 +.306371 +-.371656 +.278163 +-.087811 +-.071175 +.074901 +.121610 +-.449002 +.750270 +-.858217 +.685237 +-.280168 +-.181764 +.480145 +-.468560 +.167434 +.233210 +-.478267 +.404152 +-.045823 +-.383184 +.628938 +-.558856 +.236681 +.134798 +-.353066 +.336659 +-.151177 +-.061654 +.189555 +-.214759 +.202294 +-.233882 +.343225 +-.498719 +.635576 +-.702437 +.684378 +-.594383 +.454530 +-.288124 +.121397 +.021941 +-.137108 +.246899 +-.383199 +.550844 +-.709584 +.799880 +-.794363 +.725616 +-.657623 +.622340 +-.581403 +.455147 +-.200093 +-.131452 +.405815 +-.492180 +.354843 +-.084344 +-.156349 +.233659 +-.127109 +-.056943 +.149715 +-.026422 +-.305939 +.695588 +-.926839 +.856122 +-.517225 +.115124 +.103480 +-.021940 +-.257338 +.481602 +-.433444 +.098932 +.310416 +-.504209 +.323128 +.141624 +-.606445 +.785514 +-.573624 +.095700 +.397350 +-.696294 +.744467 +-.633522 +.516181 +-.511940 +.658737 +-.913216 +1.177670 +-1.338555 +1.313189 +-1.092398 +.753066 +-.422830 +.213414 +-.167784 +.257111 +-.421414 +.613267 +-.808640 +.985766 +-1.104106 +1.112314 +-.982085 +.737240 +-.449136 +.196742 +-.019099 +-.104307 +.227933 +-.384403 +.539492 +-.598419 +.471942 +-.161399 +-.206758 +.441080 +-.411957 +.150913 +.165774 +-.349841 +.347317 +-.272405 +.291860 +-.454793 +.619404 +-.552370 +.129293 +.527930 +-1.097018 +1.260619 +-.922124 +.275737 +.316869 +-.554308 +.374773 +.023308 +-.319470 +.271964 +.143645 +-.733809 +1.210744 +-1.356718 +1.130444 +-.664314 +.170815 +.174286 +-.305698 +.270543 +-.173378 +.104018 +-.086683 +.074067 +.012175 +-.217469 +.505613 +-.760416 +.843204 +-.672599 +.274898 +.228063 +-.681627 +.965803 +-1.027365 +.871990 +-.543971 +.117783 +.303135 +-.605113 +.709271 +-.616963 +.414059 +-.219829 +.112825 +-.086457 +.064101 +.041474 +-.264354 +.552370 +-.779103 +.799263 +-.530273 +.022539 +.531760 +-.880287 +.850343 +-.459827 +-.085154 +.514849 +-.659536 +.536961 +-.306222 +.132309 +-.070344 +.054754 +.009130 +-.136507 +.233631 +-.176925 +-.062624 +.356518 +-.482216 +.278412 +.221391 +-.784877 +1.122304 +-1.078217 +.734626 +-.348855 +.170218 +-.269915 +.507061 +-.648842 +.548436 +-.247057 +-.066754 +.196705 +-.065859 +-.254765 +.617905 +-.902671 +1.072119 +-1.158356 +1.203397 +-1.207114 +1.117834 +-.869963 +.444212 +.087977 +-.570471 +.829023 +-.770189 +.454676 +-.090286 +-.068130 +-.135592 +.651957 +-1.229414 +1.539236 +-1.357440 +.698437 +.182164 +-.919659 +1.227819 +-1.030947 +.471817 +.188553 +-.701996 +.919239 +-.808181 +.431357 +.081491 +-.559422 +.831900 +-.794390 +.470279 +-.020803 +-.322934 +.377843 +-.107510 +-.360082 +.804891 +-1.029296 +.948129 +-.612597 +.170159 +.207514 +-.393103 +.344986 +-.113026 +-.188711 +.430207 +-.517341 +.429530 +-.229469 +.038575 +.017603 +.125986 +-.432141 +.772666 +-.993766 +.999244 +-.798158 +.486970 +-.182498 +-.044631 +.194062 +-.311045 +.441044 +-.596422 +.749403 +-.845338 +.825050 +-.650723 +.332856 +.052913 +-.377774 +.509869 +-.384823 +.053916 +.328957 +-.583045 +.596511 +-.382320 +.061157 +.214837 +-.347916 +.340375 +-.276723 +.256956 +-.322549 +.423191 +-.450319 +.319935 +-.047868 +-.242736 +.396310 +-.333109 +.110122 +.113780 +-.184727 +.054970 +.191732 +-.400247 +.438862 +-.263600 +-.076575 +.475462 +-.809355 +.964381 +-.861865 +.494144 +.042854 +-.557208 +.831911 +-.734772 +.301352 +.269281 +-.711676 +.828007 +-.580583 +.095551 +.413364 +-.751066 +.823474 +-.665026 +.409385 +-.221707 +.220885 +-.423095 +.733273 +-.992201 +1.058350 +-.880267 +.517341 +-.097557 +-.256994 +.487247 +-.604445 +.654943 +-.678522 +.691946 +-.702386 +.728841 +-.806071 +.961532 +-1.179261 +1.377555 +-1.425967 +1.206538 +-.693501 +.002141 +.638154 +-.989587 +.936126 +-.553986 +.067888 +.285685 +-.399356 +.344945 +-.302640 +.423638 +-.723545 +1.073320 +-1.282982 +1.215685 +-.863013 +.347672 +.137167 +-.418580 +.425840 +-.228016 +.004045 +.051832 +.154658 +-.551297 +.933164 +-1.085710 +.919758 +-.526986 +.118047 +.109863 +-.082584 +-.133186 +.399979 +-.604335 +.708004 +-.733377 +.712126 +-.646192 +.509559 +-.282917 +-.010492 +.296434 +-.475927 +.470628 +-.263016 +-.088755 +.469626 +-.753674 +.858077 +-.776916 +.573123 +-.331690 +.106733 +.096634 +-.292049 +.464497 +-.556480 +.510796 +-.336614 +.135537 +-.051367 +.173717 +-.470226 +.804187 +-1.025538 +1.064251 +-.955526 +.784629 +-.605706 +.405239 +-.138207 +-.199131 +.527263 +-.714192 +.660692 +-.376770 +-.010312 +.326603 +-.452358 +.382400 +-.204830 +.019918 +.132516 +-.277348 +.439878 +-.577627 +.582384 +-.367697 +-.026016 +.408020 +-.538767 +.295587 +.222939 +-.742852 +.987897 +-.856715 +.477298 +-.106145 +-.045783 +-.067890 +.338453 +-.610436 +.792137 +-.886833 +.940159 +-.967386 +.930720 +-.783255 +.533960 +-.271518 +.122133 +-.171698 +.407958 +-.719762 +.949840 +-.969403 +.738450 +-.327372 +-.109823 +.404208 +-.455353 +.286793 +-.037162 +-.115186 +.051961 +.222024 +-.590896 +.901377 +-1.045161 +.999488 +-.814353 +.574119 +-.366237 +.263904 +-.304988 +.459833 +-.614281 +.607852 +-.332310 +-.166685 +.670969 +-.896006 +.671208 +-.075026 +-.578846 +.914351 +-.725363 +.118505 +.535975 +-.828788 +.576920 +.044268 +-.600049 +.672880 +-.137464 +-.750196 +1.509417 +-1.729062 +1.303314 +-.465376 +-.379581 +.892269 +-.955270 +.673517 +-.257859 +-.108071 +.335938 +-.420687 +.391604 +-.277624 +.104855 +.093074 +-.277681 +.423030 +-.525826 +.591304 +-.608069 +.545065 +-.385977 +.173826 +-.014294 +.013449 +-.186147 +.411755 +-.488845 +.266072 +.240406 +-.831694 +1.233515 +-1.258890 +.920416 +-.420890 +.031793 +.060752 +.149961 +-.506990 +.795970 +-.872434 +.736045 +-.513180 +.364395 +-.376064 +.503368 +-.600624 +.519418 +-.210573 +-.238363 +.654517 +-.883339 +.872711 +-.684569 +.437986 +-.235450 +.124967 +-.110663 +.180502 +-.314231 +.467436 +-.563174 +.522411 +-.324329 +.046358 +.164494 +-.185846 +.013776 +.223015 +-.351880 +.286350 +-.094799 +-.051719 +.013728 +.207270 +-.471841 +.611410 +-.550776 +.347359 +-.126712 +-.019203 +.082835 +-.108622 +.121893 +-.092198 +-.034980 +.270855 +-.545253 +.736253 +-.746768 +.568065 +-.280904 +-.003411 +.213314 +-.344128 +.426463 +-.470527 +.440481 +-.284142 +-.007681 +.366505 +-.671306 +.817861 +-.779014 +.611369 +-.408852 +.244497 +-.143067 +.093060 +-.071923 +.055807 +-.012917 +-.095706 +.290063 +-.534598 +.730486 +-.761775 +.573672 +-.224953 +-.133897 +.349520 +-.359820 +.225224 +-.077571 +.030427 +-.119136 +.306249 +-.530392 +.745248 +-.916622 +.993998 +-.901818 +.577671 +-.036010 +-.596967 +1.117211 +-1.335474 +1.174761 +-.713259 +.148734 +.292503 +-.452328 +.298476 +.075899 +-.500626 +.799198 +-.855040 +.654034 +-.291754 +-.061058 +.229938 +-.121200 +-.223032 +.638264 +-.922568 +.946585 +-.717548 +.354685 +.001709 +-.276029 +.474869 +-.634107 +.753930 +-.785985 +.684503 +-.470342 +.242507 +-.119070 +.153364 +-.294584 +.422788 +-.428785 +.278475 +-.024142 +-.232284 +.392164 +-.402846 +.278682 +-.096669 +-.037137 +.042700 +.084808 +-.268104 +.397156 +-.405791 +.318508 +-.227432 +.211942 +-.262662 +.274624 +-.125691 +-.212104 +.614447 +-.856834 +.755322 +-.302211 +-.304875 +.772606 +-.891434 +.660788 +-.272003 +-.034080 +.125620 +-.038562 +-.096615 +.186027 +-.246453 +.363689 +-.580419 +.821924 +-.934693 +.812735 +-.503759 +.195531 +-.079372 +.193803 +-.377023 +.376678 +-.040823 +-.553846 +1.136056 +-1.414718 +1.269006 +-.821840 +.353266 +-.122101 +.217579 +-.528965 +.835646 +-.946150 +.797275 +-.462497 +.081338 +.232803 +-.443348 +.572354 +-.638288 +.608394 +-.414059 +.026838 +.464110 +-.848745 +.896418 +-.509100 +-.177959 +.833837 +-1.104058 +.816493 +-.088857 +-.733481 +1.270613 +-1.311695 +.908816 +-.317387 +-.165839 +.362872 +-.282917 +.074857 +.090131 +-.124225 +.053132 +.035237 +-.073397 +.061662 +-.047791 +.064555 +-.083222 +.023812 +.187060 +-.558316 +1.018560 +-1.446228 +1.718440 +-1.749797 +1.514537 +-1.059083 +.503052 +-.012228 +-.266114 +.281743 +-.121086 +-.034375 +.019070 +.204630 +-.512548 +.691081 +-.569699 +.127057 +.493190 +-1.057756 +1.357201 +-1.294200 +.911213 +-.359191 +-.169335 +.513979 +-.602520 +.470860 +-.240400 +.061872 +-.048877 +.228325 +-.527442 +.804065 +-.910962 +.770201 +-.422467 +.020261 +.242714 +-.235331 +-.032546 +.409639 +-.689621 +.734960 +-.558999 +.310335 +-.167877 +.218071 +-.399812 +.555592 +-.551616 +.379026 +-.161476 +.062113 +-.157855 +.373962 +-.529608 +.463993 +-.153628 +-.262149 +.564939 +-.592484 +.336867 +.052342 +-.355355 +.404295 +-.172772 +-.211596 +.535990 +-.617869 +.408098 +-.022763 +-.321277 +.437074 +-.286517 +.006134 +.186821 +-.152396 +-.059664 +.231694 +-.131379 +-.305862 +.900087 +-1.323114 +1.311621 +-.850375 +.192772 +.301030 +-.397764 +.133836 +.230369 +-.405025 +.269711 +.065347 +-.369060 +.475236 +-.399284 +.304723 +-.359582 +.603175 +-.923221 +1.147516 +-1.168338 +1.004954 +-.769885 +.579814 +-.483769 +.454557 +-.436093 +.401073 +-.373164 +.399469 +-.497002 +.617875 +-.667285 +.569913 +-.339523 +.093297 +.014440 +.096692 +-.356759 +.568989 +-.528726 +.160367 +.423453 +-.981292 +1.277828 +-1.203233 +.808321 +-.253475 +-.277709 +.646198 +-.788191 +.721524 +-.539465 +.384850 +-.391428 +.605113 +-.932475 +1.168672 +-1.111393 +.700041 +-.082781 +-.450900 +.644172 +-.441807 +.032719 +.274328 +-.263013 +-.039120 +.382117 +-.476604 +.206615 +.285079 +-.701593 +.806637 +-.586947 +.244550 +-.034747 +.082175 +-.314290 +.549247 +-.651721 +.626018 +-.579665 +.601924 +-.667497 +.647778 +-.418893 +-.021107 +.521892 +-.865257 +.906688 +-.672394 +.340638 +-.117304 +.091296 +-.171472 +.151901 +.136080 +-.687794 +1.299130 +-1.672886 +1.594214 +-1.066135 +.320076 +.308863 +-.569258 +.430827 +-.087395 +-.177442 +.177007 +.060870 +-.322436 +.361951 +-.074704 +-.428138 +.889870 +-1.070119 +.888201 +-.459120 +.011546 +.249261 +-.247059 +.055165 +.164647 +-.258975 +.160546 +.087039 +-.362103 +.534091 +-.534958 +.396629 +-.232114 +.166019 +-.253509 +.441923 +-.606159 +.636929 +-.516935 +.326028 +-.173325 +.115168 +-.127749 +.151269 +-.156929 +.170556 +-.232575 +.338042 +-.420735 +.403365 +-.273220 +.115590 +-.070295 +.237548 +-.600630 +1.021675 +-1.316410 +1.360638 +-1.160723 +.844257 +-.578461 +.468622 +-.499512 +.553869 +-.493002 +.248782 +.126808 +-.481226 +.637633 +-.487211 +.051414 +.516849 +-.995500 +1.192077 +-1.034205 +.608463 +-.126133 +-.171629 +.127356 +.254487 +-.805010 +1.269203 +-1.428095 +1.202515 +-.684956 +.085395 +.374433 +-.559482 +.465999 +-.201628 +-.076263 +.230176 +-.193478 +-.009607 +.277964 +-.476535 +.494028 +-.292372 +-.074260 +.481632 +-.788459 +.895297 +-.781065 +.501899 +-.157334 +-.154966 +.371977 +-.474249 +.474994 +-.402247 +.283695 +-.136077 +-.040876 +.261584 +-.538347 +.856006 +-1.155960 +1.349360 +-1.362259 +1.188650 +-.913874 +.684810 +-.636592 +.814753 +-1.136593 +1.415371 +-1.440243 +1.079168 +-.361212 +-.503318 +1.187317 +-1.383429 +.958325 +-.045153 +-.988839 +1.700161 +-1.778994 +1.199645 +-.228076 +-.717247 +1.274919 +-1.310068 +.960346 +-.541182 +.363230 +-.558787 +1.010743 +-1.426783 +1.519216 +-1.183139 +.560483 +.051692 +-.385559 +.354309 +-.074321 +-.242180 +.434460 +-.475719 +.447401 +-.444656 +.492230 +-.527993 +.456024 +-.224394 +-.126842 +.479483 +-.704240 +.736840 +-.610996 +.424952 +-.268720 +.170714 +-.105400 +.048077 +-.018858 +.070568 +-.231755 +.462661 +-.668454 +.757805 +-.693352 +.495804 +-.213557 +-.101006 +.388313 +-.574381 +.592490 +-.432740 +.176146 +.030863 +-.059016 +-.117511 +.394313 +-.593286 +.569887 +-.305498 +-.072551 +.359585 +-.394277 +.159442 +.202971 +-.476669 +.501371 +-.260376 +-.130167 +.509541 +-.762848 +.850131 +-.777458 +.564057 +-.248520 +-.082010 +.295058 +-.279548 +.037822 +.278143 +-.437566 +.275170 +.190044 +-.751549 +1.135433 +-1.163354 +.848122 +-.364204 +-.075658 +.345362 +-.451019 +.483289 +-.530103 +.620134 +-.726704 +.805832 +-.821450 +.739293 +-.516441 +.123440 +.400605 +-.910825 +1.193842 +-1.081922 +.573061 +.136821 +-.747606 +1.017612 +-.885616 +.474556 +.009946 +-.401582 +.633367 +-.716573 +.684009 +-.556138 +.350840 +-.110806 +-.090953 +.181807 +-.134387 +-.011995 +.172791 +-.269585 +.275066 +-.220620 +.164293 +-.146024 +.164637 +-.190667 +.198371 +-.185297 +.161506 +-.122420 +.038092 +.120354 +-.334155 +.515705 +-.548636 +.374436 +-.061135 +-.213438 +.272182 +-.071474 +-.247817 +.443845 +-.342253 +-.031966 +.460521 +-.676683 +.546302 +-.155751 +-.252551 +.447762 +-.362738 +.131338 +.006749 +.135880 +-.574587 +1.139436 +-1.567202 +1.640119 +-1.294817 +.650589 +.049230 +-.547986 +.684685 +-.454241 +-.002761 +.470404 +-.753993 +.761304 +-.535167 +.223348 +.003466 +-.047611 +-.058976 +.179743 +-.174767 +.014780 +.180357 +-.222372 +.006393 +.383190 +-.707703 +.738030 +-.424916 +-.060191 +.449121 +-.565520 +.426210 +-.182282 +-.033422 +.209830 +-.423668 +.711164 +-.976765 +1.034759 +-.758038 +.208763 +.363343 +-.664734 +.543161 +-.084991 +-.438811 +.736921 +-.663423 +.282894 +.195403 +-.559181 +.711423 +-.691981 +.605011 +-.522771 +.445261 +-.338095 +.199799 +-.085751 +.060408 +-.120051 +.162726 +-.046902 +-.295722 +.781798 +-1.204306 +1.360173 +-1.188930 +.815751 +-.458384 +.262619 +-.191860 +.061649 +.300416 +-.888737 +1.478596 +-1.751800 +1.508028 +-.816622 +.001258 +.537551 +-.551592 +.084000 +.563353 +-1.007655 +.996135 +-.527030 +-.178223 +.816479 +-1.162296 +1.155781 +-.888943 +.524354 +-.207349 +.014824 +.050930 +-.038092 +.007476 +.006272 +-.019628 +.092356 +-.279191 +.562993 +-.819814 +.860116 +-.541268 +-.115792 +.894376 +-1.475606 +1.608923 +-1.248873 +.565523 +.174100 +-.762979 +1.138530 +-1.347807 +1.443298 +-1.408036 +1.174028 +-.713819 +.119701 +.406479 +-.658880 +.555631 +-.193871 +-.211060 +.459129 +-.475957 +.326329 +-.135827 +-.006525 +.088063 +-.137328 +.163276 +-.132800 +.006462 +.207202 +-.436034 +.586649 +-.607816 +.517725 +-.372401 +.209370 +-.024418 +-.194663 +.414306 +-.545214 +.503088 +-.295733 +.054326 +.036209 +.131501 +-.493348 +.835342 +-.923442 +.653149 +-.117179 +-.449362 +.803451 +-.821495 +.550645 +-.169055 +-.110228 +.139887 +.098454 +-.489906 +.840087 +-.966533 +.789732 +-.379113 +-.074942 +.356673 +-.342441 +.074889 +.253503 +-.406014 +.239083 +.211062 +-.749191 +1.138739 +-1.239479 +1.074218 +-.782808 +.504573 +-.281329 +.054328 +.247877 +-.606874 +.886064 +-.907735 +.582989 +.002060 +-.613076 +.996099 +-1.024563 +.766913 +-.430609 +.220867 +-.207805 +.289270 +-.272854 +.022086 +.430508 +-.880246 +1.062513 +-.810556 +.160450 +.658758 +-1.337894 +1.631839 +-1.456817 +.903139 +-.177538 +-.484290 +.898892 +-.989048 +.799675 +-.469251 +.162889 +.004033 +-.010667 +-.083085 +.196564 +-.289304 +.379581 +-.514161 +.720728 +-.982702 +1.248176 +-1.454025 +1.541665 +-1.463404 +1.196259 +-.769217 +.281825 +.118416 +-.302828 +.232583 +.021147 +-.326403 +.572861 +-.725533 +.815847 +-.888114 +.950430 +-.965839 +.881983 +-.670656 +.349889 +.020121 +-.358682 +.592216 +-.679699 +.630295 +-.506191 +.403162 +-.409895 +.561204 +-.811495 +1.049754 +-1.153224 +1.050314 +-.753173 +.340706 +.092366 +-.482139 +.807722 +-1.070125 +1.262074 +-1.353440 +1.297467 +-1.050103 +.595274 +.025789 +-.690497 +1.202005 +-1.351729 +1.027740 +-.310186 +-.522551 +1.109006 +-1.188754 +.742384 +.007842 +-.739612 +1.218511 +-1.405345 +1.418399 +-1.394341 +1.362262 +-1.227587 +.873072 +-.292317 +-.353880 +.810464 +-.885819 +.583513 +-.110145 +-.253439 +.331404 +-.155675 +-.082083 +.192394 +-.138906 +.060861 +-.149643 +.477918 +-.918330 +1.219635 +-1.186718 +.832168 +-.387297 +.161359 +-.341136 +.862491 +-1.437394 +1.722127 +-1.524245 +.920449 +-.210516 +-.265790 +.332775 +-.072106 +-.253683 +.389932 +-.255404 +-.030183 +.265878 +-.334513 +.281118 +-.248227 +.329890 +-.472613 +.511204 +-.312869 +-.090069 +.493122 +-.652100 +.454611 +.002412 +-.486120 +.788882 +-.849964 +.752288 +-.616453 +.492984 +-.341729 +.103660 +.208786 +-.486869 +.589698 +-.447029 +.119904 +.228504 +-.433116 +.428615 +-.282732 +.139710 +-.116046 +.222065 +-.362461 +.409728 +-.293808 +.044462 +.236058 +-.441804 +.520819 +-.487629 +.394528 +-.293993 +.220359 +-.194509 +.230923 +-.328400 +.449479 +-.517603 +.455529 +-.249632 +-.012698 +.181121 +-.145496 +-.071212 +.313438 +-.400486 +.261360 +.013016 +-.244350 +.305203 +-.206817 +.071348 +-.024809 +.107174 +-.265796 +.417066 +-.508867 +.533945 +-.501339 +.408443 +-.242193 +.000517 +.293344 +-.597351 +.867635 +-1.068203 +1.168985 +-1.142894 +.973183 +-.669503 +.279022 +.121299 +-.452161 +.663813 +-.751272 +.742283 +-.668796 +.546660 +-.380826 +.188836 +-.016438 +-.075036 +.042698 +.111006 +-.342507 +.597846 +-.843035 +1.068334 +-1.267176 +1.413639 +-1.462054 +1.371379 +-1.133335 +.781199 +-.375029 +-.020475 +.346393 +-.547551 +.575880 +-.414541 +.113401 +.198066 +-.350819 +.222599 +.177620 +-.688187 +1.063175 +-1.099006 +.744822 +-.129924 +-.506608 +.937846 +-1.049408 +.869340 +-.527284 +.180725 +.051311 +-.125564 +.078925 +-.001140 +-.017400 +-.059678 +.192859 +-.300175 +.326898 +-.295682 +.288180 +-.365414 +.492514 +-.539918 +.374567 +.023665 +-.514462 +.867519 +-.910903 +.652657 +-.283473 +.050631 +-.087368 +.318234 +-.511201 +.442990 +-.061723 +-.468509 +.871766 +-.936824 +.643131 +-.158061 +-.275308 +.470536 +-.367987 +.024325 +.439697 +-.888788 +1.207579 +-1.330392 +1.264279 +-1.082309 +.873397 +-.676504 +.457448 +-.160803 +-.198142 +.485888 +-.507607 +.144621 +.526515 +-1.232570 +1.638590 +-1.539555 +.983272 +-.242331 +-.348029 +.581627 +-.482001 +.254357 +-.131437 +.222251 +-.463207 +.693102 +-.785517 +.735767 +-.640273 +.592526 +-.586190 +.510694 +-.250664 +-.187812 +.632256 +-.833580 +.640440 +-.133133 +-.391496 +.592425 +-.306678 +-.330844 +.960227 +-1.221703 +.985674 +-.430764 +-.085072 +.272275 +-.102942 +-.186783 +.286063 +-.051796 +-.374457 +.663604 +-.541262 +-.000909 +.678748 +-1.092899 +.982848 +-.381610 +-.425125 +1.090098 +-1.403705 +1.373856 +-1.159319 +.932735 +-.780519 +.696074 +-.640840 +.603062 +-.601620 +.640607 +-.666111 +.575156 +-.281821 +-.206249 +.762532 +-1.195052 +1.347240 +-1.178218 +.770496 +-.268104 +-.200983 +.562331 +-.780519 +.830016 +-.695656 +.407406 +-.067979 +-.173303 +.200989 +-.013982 +-.260797 +.442787 +-.413358 +.190459 +.092037 +-.284434 +.326793 +-.282187 +.274619 +-.380990 +.561079 +-.680653 +.610323 +-.324958 +-.071982 +.416011 +-.589432 +.590750 +-.520899 +.503350 +-.597825 +.763379 +-.887449 +.856465 +-.626128 +.255922 +.107411 +-.291966 +.183498 +.207783 +-.733937 +1.165375 +-1.295434 +1.042058 +-.491810 +-.137596 +.595524 +-.707313 +.444778 +.067550 +-.607956 +.950945 +-.961332 +.649575 +-.160809 +-.298744 +.561321 +-.571374 +.398191 +-.188537 +.089872 +-.180977 +.434916 +-.724516 +.871897 +-.732748 +.286049 +.320836 +-.816371 +.938344 +-.591325 +-.073129 +.722141 +-1.028226 +.863224 +-.369450 +-.142621 +.400474 +-.337675 +.112289 +.026762 +.077915 +-.389377 +.715304 +-.848200 +.703921 +-.369441 +.040424 +.100541 +.013565 +-.307158 +.616403 +-.785929 +.749543 +-.551715 +.305590 +-.121672 +.055055 +-.098749 +.212088 +-.349895 +.468255 +-.514110 +.427399 +-.173370 +-.212417 +.608913 +-.853672 +.831393 +-.549002 +.139387 +.215718 +-.391541 +.378263 +-.254257 +.107813 +.020123 +-.126881 +.196111 +-.168523 +-.024249 +.389655 +-.836606 +1.212297 +-1.388141 +1.326067 +-1.077299 +.726176 +-.333368 +-.076923 +.486013 +-.843893 +1.064573 +-1.063291 +.811704 +-.372746 +-.112492 +.483238 +-.629871 +.534777 +-.262873 +-.081944 +.396769 +-.592958 +.593465 +-.343356 +-.154022 +.799824 +-1.403184 +1.745020 +-1.677330 +1.201099 +-.474589 +-.255854 +.763858 +-.931483 +.776963 +-.420952 +.024787 +.262071 +-.332507 +.142201 +.268437 +-.763015 +1.138921 +-1.211200 +.918318 +-.381575 +-.137575 +.376335 +-.229263 +-.175640 +.543092 +-.590482 +.234854 +.334119 +-.752118 +.700291 +-.116195 +-.739812 +1.416030 +-1.529323 +.998317 +-.102621 +-.675574 +.934419 +-.585176 +-.108965 +.706559 +-.857853 +.499255 +.141065 +-.712737 +.964873 +-.876019 +.620909 +-.416422 +.365650 +-.408443 +.401025 +-.250406 +-.004869 +.224422 +-.272567 +.112806 +.176320 +-.461281 +.632303 +-.645730 +.516769 +-.288746 +.010020 +.270915 +-.502915 +.636792 +-.641522 +.521737 +-.320850 +.101378 +.088831 +-.239488 +.368496 +-.483477 +.547482 +-.487122 +.249073 +.135360 +-.536759 +.791568 +-.806682 +.627773 +-.414762 +.336161 +-.456545 +.696801 +-.892096 +.902382 +-.698565 +.373694 +-.084669 +-.030528 +-.085246 +.386489 +-.740581 +.974786 +-.949050 +.635212 +-.158472 +-.244271 +.352229 +-.106475 +-.331392 +.669380 +-.677464 +.347409 +.104579 +-.401359 +.411624 +-.238504 +.121498 +-.232974 +.534523 +-.805949 +.818738 +-.513201 +.042603 +.339800 +-.455952 +.308374 +-.049205 +-.146779 +.202394 +-.167349 +.149521 +-.213687 +.329148 +-.401377 +.355138 +-.199622 +.026528 +.052756 +.020053 +-.218310 +.455559 +-.643078 +.739791 +-.764359 +.765322 +-.771038 +.756109 +-.653679 +.412953 +-.062460 +-.273521 +.429959 +-.297324 +-.107312 +.645125 +-1.130849 +1.422974 +-1.470471 +1.300057 +-.975984 +.573842 +-.181263 +-.099090 +.173981 +-.011239 +-.317789 +.647510 +-.789535 +.632160 +-.210836 +-.294354 +.638583 +-.633105 +.247287 +.362875 +-.921898 +1.169816 +-.995944 +.495890 +.082716 +-.475263 +.535665 +-.295032 +-.082305 +.406452 +-.561225 +.541572 +-.424684 +.312285 +-.284682 +.380677 +-.589465 +.841535 +-1.009237 +.942883 +-.549694 +-.121854 +.857332 +-1.353380 +1.370825 +-.875203 +.071535 +.697638 +-1.133174 +1.129931 +-.808711 +.419194 +-.183363 +.179342 +-.328752 +.479179 +-.515034 +.423888 +-.286432 +.212005 +-.269677 +.454364 +-.696583 +.900522 +-.988592 +.936240 +-.784325 +.620972 +-.536210 +.571475 +-.695039 +.821241 +-.860899 +.768654 +-.558441 +.285346 +-.013731 +-.205881 +.344641 +-.393011 +.354867 +-.240583 +.063058 +.157051 +-.375158 +.510563 +-.463666 +.173134 +.314344 +-.820687 +1.103948 +-.997062 +.528568 +.073731 +-.519776 +.648797 +-.532932 +.406873 +-.470759 +.718275 +-.929912 +.844817 +-.381542 +-.267309 +.749546 +-.800232 +.437387 +.043923 +-.282240 +.113574 +.306166 +-.613017 +.501318 +.050332 +-.759456 +1.239547 +-1.270303 +.939134 +-.554591 +.405746 +-.554093 +.809290 +-.891333 +.641296 +-.122497 +-.442132 +.821936 +-.898725 +.690381 +-.301969 +-.133869 +.493396 +-.684888 +.674504 +-.505189 +.281362 +-.113426 +.053627 +-.069193 +.072625 +.012871 +-.196515 +.404855 +-.513925 +.412083 +-.066773 +-.434901 +.898757 +-1.099826 +.898874 +-.338918 +-.345848 +.835747 +-.899160 +.529999 +.045979 +-.510274 +.649465 +-.478201 +.204596 +-.068328 +.174172 +-.442308 +.700944 +-.835926 +.871951 +-.922941 +1.060776 +-1.218302 +1.214353 +-.889038 +.248449 +.493712 +-1.019258 +1.093319 +-.716603 +.138681 +.286682 +-.322326 +.006006 +.364678 +-.426967 +.009463 +.723422 +-1.351511 +1.464441 +-.936916 +.021167 +.811296 +-1.168907 +.973648 +-.476341 +.060477 +.016489 +.231010 +-.564844 +.709381 +-.538770 +.145131 +.241641 +-.414625 +.319357 +-.071833 +-.136320 +.173474 +-.051678 +-.093276 +.105129 +.079782 +-.384951 +.641296 +-.697898 +.523710 +-.233939 +.021541 +-.035794 +.287159 +-.641126 +.903180 +-.934079 +.718263 +-.350759 +-.030267 +.307671 +-.411355 +.316776 +-.046833 +-.312902 +.610957 +-.671956 +.384436 +.211569 +-.903315 +1.386690 +-1.422703 +.983227 +-.288972 +-.301209 +.497044 +-.252696 +-.207998 +.542186 +-.517418 +.163448 +.256916 +-.432967 +.214162 +.299302 +-.832212 +1.110240 +-1.015064 +.630757 +-.174694 +-.128670 +.157515 +.062355 +-.387291 +.639668 +-.703853 +.585278 +-.396903 +.278278 +-.296553 +.398182 +-.448212 +.332230 +-.048168 +-.278570 +.468029 +-.396474 +.071666 +.371614 +-.746810 +.911564 +-.829661 +.569267 +-.247080 +-.042531 +.268873 +-.453797 +.623779 +-.768085 +.839252 +-.794566 +.639293 +-.430532 +.236564 +-.087411 +-.039104 +.184278 +-.357352 +.509747 +-.556722 +.433205 +-.148037 +-.198276 +.447631 +-.457812 +.178649 +.314368 +-.854122 +1.266237 +-1.450046 +1.404895 +-1.192906 +.880717 +-.513571 +.137881 +.164652 +-.282952 +.136431 +.254766 +-.752902 +1.165936 +-1.352704 +1.297073 +-1.099805 +.896850 +-.764037 +.673014 +-.526342 +.246628 +.141300 +-.495109 +.628193 +-.434344 +-.015967 +.482785 +-.681791 +.459377 +.096192 +-.689594 +.987170 +-.815394 +.262988 +.375605 +-.773181 +.747394 +-.340206 +-.231262 +.703271 +-.889995 +.743138 +-.338537 +-.177870 +.644923 +-.923796 +.924997 +-.636071 +.144707 +.366768 +-.676972 +.621648 +-.185087 +-.469397 +1.058794 +-1.308605 +1.088575 +-.485864 +-.228709 +.734972 +-.836567 +.577496 +-.221494 +.089475 +-.346718 +.882097 +-1.371540 +1.491233 +-1.133991 +.476404 +.144330 +-.446087 +.353949 +.002874 +-.416994 +.738360 +-.925847 +1.006799 +-1.010120 +.940728 +-.807567 +.660359 +-.583012 +.635045 +-.786054 +.903598 +-.817987 +.430016 +.208314 +-.896048 +1.373910 +-1.455515 +1.126337 +-.553151 +-.005729 +.341168 +-.401645 +.300965 +-.220702 +.276907 +-.446942 +.605664 +-.635648 +.520920 +-.353162 +.253008 +-.274013 +.365563 +-.420967 +.371822 +-.255775 +.203722 +-.350348 +.729872 +-1.233714 +1.664631 +-1.849876 +1.731918 +-1.375793 +.901327 +-.406005 +-.058192 +.448221 +-.685436 +.661643 +-.306911 +-.327619 +1.040914 +-1.545048 +1.597960 +-1.134256 +.315256 +.539730 +-1.110901 +1.238012 +-.991012 +.611306 +-.362333 +.382096 +-.622909 +.903440 +-1.029081 +.903705 +-.571895 +.178393 +.122671 +-.253257 +.244388 +-.200586 +.220556 +-.327142 +.455553 +-.510328 +.450733 +-.338972 +.308246 +-.467168 +.808905 +-1.195856 +1.438201 +-1.414119 +1.145800 +-.774838 +.454647 +-.239138 +.051722 +.240715 +-.702496 +1.246802 +-1.660547 +1.724866 +-1.351401 +.645710 +.139318 +-.726081 +.937441 +-.761960 +.340471 +.104855 +-.362222 +.310842 +.031400 +-.509574 +.891396 +-.973460 +.691516 +-.170328 +-.332954 +.575591 +-.477978 +.167222 +.125806 +-.244407 +.218743 +-.217586 +.375864 +-.645140 +.804402 +-.636202 +.129406 +.464271 +-.782075 +.607121 +-.038290 +-.558784 +.791159 +-.500391 +-.135689 +.726907 +-.927179 +.643909 +-.066884 +-.482872 +.761808 +-.725488 +.499926 +-.252959 +.074934 +.051746 +-.194488 +.388006 +-.594451 +.728829 +-.721333 +.568968 +-.344417 +.160701 +-.113792 +.232906 +-.462390 +.686178 +-.787312 +.714269 +-.514617 +.307370 +-.202129 +.214652 +-.240895 +.118168 +.259321 +-.845675 +1.434935 +-1.749595 +1.578647 +-.892969 +-.117569 +1.104189 +-1.697451 +1.672624 +-1.067851 +.183690 +.560513 +-.852563 +.664764 +-.258786 +-.001943 +-.086325 +.419039 +-.664531 +.524148 +.019826 +-.659420 +.962829 +-.682125 +-.054314 +.804896 +-1.094282 +.723771 +.090579 +-.840295 +1.030113 +-.476902 +-.580634 +1.625589 +-2.165296 +2.001871 +-1.308256 +.481086 +.113067 +-.326415 +.250686 +-.095359 +.036296 +-.136690 +.360386 +-.625353 +.838617 +-.901628 +.720332 +-.249688 +-.444942 +1.166657 +-1.650604 +1.694987 +-1.280016 +.590181 +.083646 +-.500868 +.584577 +-.425247 +.189781 +-.013956 +-.049257 +.011551 +.095500 +-.242892 +.394256 +-.494478 +.487810 +-.359933 +.165818 +-.010750 +-.009517 +-.132000 +.377262 +-.619464 +.765262 +-.781401 +.698640 +-.574065 +.439044 +-.269758 +.006417 +.385276 +-.851401 +1.239982 +-1.369567 +1.145340 +-.646869 +.117898 +.152075 +.008898 +-.545128 +1.185776 +-1.577917 +1.469109 +-.841890 +-.071078 +.900289 +-1.322860 +1.220058 +-.724480 +.132088 +.267287 +-.338933 +.145080 +.134404 +-.335875 +.404116 +-.387595 +.359573 +-.340873 +.289085 +-.157266 +-.034606 +.182933 +-.160795 +-.085792 +.479429 +-.841866 +1.001438 +-.907308 +.668820 +-.485298 +.507979 +-.727073 +.966474 +-.996865 +.694446 +-.136749 +-.432952 +.751042 +-.691475 +.332257 +.107344 +-.406241 +.458739 +-.298095 +.032066 +.241929 +-.473468 +.635397 +-.686014 +.572557 +-.283374 +-.100477 +.416261 +-.504695 +.313951 +.058352 +-.422589 +.614716 +-.588437 +.419283 +-.228339 +.092660 +-.010100 +-.066063 +.163912 +-.257199 +.282197 +-.187613 +-.022117 +.276815 +-.466583 +.490159 +-.307966 +-.022965 +.356852 +-.522819 +.422687 +-.104004 +-.251545 +.433920 +-.342316 +.058317 +.203127 +-.236130 +-.018054 +.431631 +-.772770 +.850146 +-.624149 +.220296 +.152334 +-.320904 +.237553 +.005085 +-.233637 +.295610 +-.150766 +-.099131 +.266404 +-.194458 +-.135156 +.581644 +-.932180 +1.039343 +-.907174 +.660913 +-.427909 +.230295 +.019651 +-.415859 +.932908 +-1.386443 +1.524382 +-1.193341 +.464554 +.373900 +-.963100 +1.068653 +-.703391 +.103938 +.416214 +-.638011 +.528056 +-.210116 +-.140618 +.396906 +-.513535 +.497425 +-.361844 +.111335 +.234118 +-.607729 +.897357 +-.992287 +.847544 +-.517785 +.131681 +.179452 +-.349546 +.395547 +-.377798 +.340328 +-.279968 +.163437 +.030908 +-.286280 +.554713 +-.783026 +.929507 +-.962063 +.854602 +-.602725 +.254731 +.074761 +-.241217 +.152908 +.151261 +-.495628 +.659545 +-.520277 +.148145 +.224834 +-.353913 +.148086 +.267879 +-.644264 +.784441 +-.677976 +.491464 +-.428329 +.566984 +-.800253 +.920482 +-.784492 +.433757 +-.078953 +-.042051 +-.169225 +.599912 +-.999649 +1.146333 +-.987742 +.663521 +-.399895 +.356097 +-.527826 +.763566 +-.869143 +.722638 +-.330662 +-.190663 +.677115 +-.977245 +.994684 +-.716409 +.229206 +.293756 +-.655524 +.733255 +-.554767 +.290966 +-.152200 +.249781 +-.517985 +.754676 +-.753960 +.439908 +.087335 +-.616984 +.953315 +-1.017136 +.865790 +-.634035 +.446263 +-.357266 +.348688 +-.368025 +.374806 +-.363778 +.357635 +-.382794 +.449264 +-.546144 +.650252 +-.736414 +.781777 +-.767387 +.685830 +-.555890 +.430508 +-.379813 +.447672 +-.606740 +.751069 +-.746283 +.516107 +-.109921 +-.302023 +.517216 +-.427337 +.101821 +.236942 +-.347934 +.138408 +.252035 +-.525853 +.430392 +.043257 +-.616191 +.886952 +-.607658 +-.122143 +.894156 +-1.250664 +.989224 +-.297948 +-.374317 +.617353 +-.314487 +-.317706 +.908676 +-1.178987 +1.071893 +-.705164 +.226836 +.283029 +-.793335 +1.237860 +-1.478828 +1.377439 +-.919525 +.280943 +.242541 +-.407704 +.180070 +.240321 +-.547306 +.527620 +-.195594 +-.228795 +.483194 +-.451183 +.238036 +-.077338 +.139000 +-.387041 +.598961 +-.533897 +.121519 +.470825 +-.940460 +1.043000 +-.739797 +.205964 +.289766 +-.539596 +.487015 +-.215825 +-.127128 +.410995 +-.561607 +.565824 +-.461523 +.323962 +-.241357 +.275312 +-.423280 +.611041 +-.726254 +.673032 +-.414732 +-.012339 +.508307 +-.930401 +1.125956 +-.984270 +.497133 +.206341 +-.886189 +1.283223 +-1.236325 +.765253 +-.073343 +-.536955 +.802020 +-.625687 +.132154 +.394510 +-.661676 +.529418 +-.084764 +-.417456 +.707539 +-.648961 +.293392 +.175300 +-.554382 +.715798 +-.635257 +.364374 +.013748 +-.411314 +.740539 +-.917531 +.885414 +-.651215 +.304520 +.012339 +-.177133 +.157620 +-.024360 +-.107951 +.170163 +-.191507 +.274305 +-.506543 +.873063 +-1.228621 +1.358158 +-1.095456 +.433768 +.441205 +-1.226746 +1.653591 +-1.625944 +1.263367 +-.815349 +.502775 +-.390733 +.375682 +-.288387 +.034198 +.330808 +-.638628 +.728757 +-.558686 +.228408 +.090427 +-.260471 +.241977 +-.078380 +-.166110 +.454676 +-.773086 +1.086020 +-1.304188 +1.302527 +-.986544 +.364708 +.422630 +-1.143314 +1.568579 +-1.578361 +1.220040 +-.682101 +.188725 +.125776 +-.279642 +.394596 +-.566867 +.759212 +-.810273 +.568405 +-.050648 +-.507332 +.769220 +-.513544 +-.205071 +1.065938 +-1.660953 +1.723364 +-1.261653 +.525033 +.161167 +-.576509 +.693779 +-.636172 +.551932 +-.500638 +.426198 +-.223960 +-.156134 +.647882 +-1.090688 +1.315820 +-1.238838 +.903860 +-.462116 +.105226 +.011269 +.173985 +-.603068 +1.112347 +-1.486068 +1.539072 +-1.198825 +.545745 +.215719 +-.845157 +1.166529 +-1.128057 +.798167 +-.315143 +-.172504 +.548341 +-.748265 +.764720 +-.636870 +.426761 +-.190484 +-.037512 +.234986 +-.370124 +.397219 +-.287765 +.077223 +.119461 +-.157396 +-.042052 +.415936 +-.773089 +.904897 +-.724689 +.334105 +.039755 +-.195930 +.089005 +.159656 +-.370124 +.435500 +-.366654 +.223348 +-.012421 +-.333887 +.864735 +-1.487957 +1.950547 +-1.976322 +1.471282 +-.628626 +-.169135 +.591957 +-.567606 +.296283 +-.071980 +.058633 +-.193682 +.278517 +-.165178 +-.116372 +.383944 +-.448602 +.259684 +.057726 +-.291611 +.284644 +-.027779 +-.350590 +.678903 +-.847392 +.856259 +-.787771 +.734829 +-.739916 +.779533 +-.792444 +.722332 +-.544660 +.267744 +.079096 +-.451097 +.783139 +-.989873 +.989471 +-.748798 +.320695 +.161092 +-.537143 +.696389 +-.622170 +.384379 +-.091728 +-.159694 +.314869 +-.364791 +.341314 +-.307084 +.334787 +-.474008 +.722159 +-1.023570 +1.301016 +-1.494088 +1.570024 +-1.501927 +1.248542 +-.775986 +.119511 +.569296 +-1.052436 +1.119387 +-.718466 +.011394 +.695773 +-1.107551 +1.085788 +-.704130 +.186916 +.224220 +-.398068 +.367173 +-.281709 +.295597 +-.457985 +.681550 +-.808458 +.725187 +-.440728 +.070886 +.253547 +-.477495 +.637942 +-.797746 +.958322 +-1.029481 +.886636 +-.474419 +-.122918 +.700810 +-1.037480 +1.016790 +-.693096 +.257830 +.070375 +-.162585 +.033241 +.195821 +-.387524 +.473313 +-.478806 +.487307 +-.576348 +.768675 +-1.018453 +1.230510 +-1.299824 +1.158589 +-.814479 +.359752 +.063053 +-.329795 +.400271 +-.336227 +.254492 +-.243530 +.302148 +-.346238 +.280030 +-.077242 +-.192523 +.415421 +-.522986 +.546853 +-.590812 +.739776 +-.977466 +1.179816 +-1.193311 +.943148 +-.495342 +.031340 +.246632 +-.220093 +-.090066 +.541611 +-.943888 +1.142282 +-1.073073 +.770934 +-.338224 +-.101827 +.447821 +-.649054 +.715462 +-.705584 +.693364 +-.725345 +.789803 +-.817245 +.715080 +-.420544 +-.054222 +.606621 +-1.067479 +1.259645 +-1.072575 +.521955 +.238143 +-.967916 +1.443095 +-1.556231 +1.360727 +-1.028628 +.745216 +-.605175 +.575287 +-.543336 +.412834 +-.173280 +-.101639 +.317158 +-.424165 +.435727 +-.387562 +.288334 +-.112683 +-.152166 +.450510 +-.652580 +.620700 +-.306389 +-.194497 +.677148 +-.938550 +.894275 +-.625830 +.327485 +-.187168 +.276889 +-.519901 +.749963 +-.818654 +.680003 +-.404396 +.125023 +.039891 +-.042127 +-.084661 +.248817 +-.342825 +.288593 +-.073497 +-.238386 +.530210 +-.684632 +.636846 +-.398620 +.044630 +.322406 +-.603751 +.724826 +-.650642 +.402769 +-.068403 +-.218588 +.332108 +-.223233 +-.038211 +.285938 +-.344733 +.139464 +.242417 +-.585948 +.674230 +-.432508 +-.006085 +.368335 +-.407001 +.057141 +.524622 +-1.063494 +1.337712 +-1.298110 +1.062421 +-.804735 +.630697 +-.523841 +.385735 +-.125826 +-.265873 +.703623 +-1.046168 +1.161927 +-.985805 +.546916 +.039363 +-.610078 +1.010653 +-1.148601 +1.025976 +-.737380 +.431414 +-.247757 +.252842 +-.404667 +.570012 +-.594648 +.395484 +-.021865 +-.358336 +.549882 +-.448471 +.109559 +.281779 +-.522813 +.510826 +-.286968 +-.017200 +.279847 +-.455901 +.567779 +-.644133 +.671014 +-.599086 +.395562 +-.090156 +-.225499 +.443267 +-.491843 +.362985 +-.102792 +-.213848 +.505392 +-.697012 +.733684 +-.598854 +.331547 +-.025167 +-.203470 +.267503 +-.158757 +-.040823 +.199745 +-.212564 +.065479 +.153013 +-.308616 +.310013 +-.169735 +-.005227 +.084704 +.002494 +-.229635 +.492970 +-.668999 +.671055 +-.482994 +.167109 +.153090 +-.336659 +.289229 +-.018966 +-.354536 +.655897 +-.747481 +.602171 +-.308028 +.005743 +.194534 +-.260992 +.230062 +-.161116 +.097972 +-.062441 +.068637 +-.129809 +.243180 +-.370287 +.442778 +-.403544 +.255122 +-.073134 +-.034430 +-.002910 +.169424 +-.371050 +.494236 +-.475763 +.338134 +-.170082 +.067034 +-.072259 +.158862 +-.264813 +.352765 +-.443604 +.590321 +-.808586 +1.023573 +-1.088211 +.874899 +-.379509 +-.240411 +.729953 +-.867170 +.578247 +.031580 +-.741719 +1.325480 +-1.636230 +1.630990 +-1.341560 +.835774 +-.202940 +-.438361 +.941399 +-1.168239 +1.054093 +-.655924 +.141969 +.283984 +-.481835 +.435992 +-.241464 +.031178 +.100254 +-.125235 +.057373 +.089561 +-.311423 +.584148 +-.835342 +.964360 +-.911493 +.718320 +-.513168 +.416675 +-.441077 +.475719 +-.381762 +.119946 +.201802 +-.408712 +.402685 +-.244995 +.103547 +-.105936 +.222009 +-.278364 +.098440 +.341031 +-.861570 +1.182987 +-1.098699 +.601634 +.119662 +-.795833 +1.213826 +-1.293380 +1.081764 +-.701099 +.292625 +.024204 +-.181163 +.179325 +-.083856 +-.013939 +.052351 +-.037978 +.038037 +-.127771 +.326558 +-.566620 +.720257 +-.675112 +.413415 +-.041268 +-.260835 +.344712 +-.191350 +-.071372 +.250306 +-.215701 +-.013818 +.291569 +-.450009 +.411582 +-.221949 +-.006290 +.178856 +-.260763 +.255840 +-.171791 +.024165 +.124274 +-.148655 +-.078306 +.577624 +-1.196557 +1.659620 +-1.723200 +1.330657 +-.656338 +.005557 +.360965 +-.363817 +.123631 +.135265 +-.225835 +.097280 +.158144 +-.382427 +.458763 +-.382633 +.257240 +-.218707 +.338143 +-.562259 +.733076 +-.681255 +.340173 +.189626 +-.672599 +.858372 +-.625666 +.064103 +.561795 +-.953655 +.944627 +-.587063 +.106895 +.242709 +-.328322 +.188292 +.030626 +-.188135 +.227054 +-.169109 +.059991 +.073360 +-.219740 +.355337 +-.435384 +.424183 +-.336578 +.244328 +-.229504 +.316272 +-.437986 +.472673 +-.326332 +.003511 +.386379 +-.690047 +.793109 +-.670343 +.380829 +-.027933 +-.279757 +.448334 +-.409755 +.143301 +.293295 +-.751972 +1.034485 +-.985373 +.590389 +-.008949 +-.499986 +.727351 +-.643444 +.413093 +-.277897 +.385762 +-.691812 +1.001414 +-1.116248 +.966933 +-.635692 +.270103 +.023850 +-.219615 +.326904 +-.334027 +.206374 +.057286 +-.377879 +.621672 +-.689523 +.590413 +-.427220 +.302395 +-.230514 +.141443 +.025463 +-.226092 +.312916 +-.146841 +-.269330 +.752160 +-1.036819 +.945426 +-.501559 +-.088739 +.566510 +-.763036 +.665661 +-.384117 +.064277 +.184782 +-.315635 +.327783 +-.241991 +.084518 +.115536 +-.322904 +.494114 +-.581686 +.546809 +-.377920 +.106362 +.193370 +-.426985 +.523168 +-.477376 +.369116 +-.329637 +.461478 +-.749394 +1.029490 +-1.064322 +.701581 +-.014646 +-.692867 +1.054290 +-.882275 +.312398 +.271766 +-.494397 +.245393 +.248906 +-.596851 +.531081 +-.106181 +-.338393 +.422517 +-.002016 +-.718084 +1.312393 +-1.415869 +.963270 +-.226974 +-.366085 +.508861 +-.196584 +-.294056 +.600383 +-.505154 +.055250 +.496361 +-.872160 +.948999 +-.819244 +.701367 +-.767268 +1.007339 +-1.228290 +1.187240 +-.770618 +.092098 +.562090 +-.906927 +.835291 +-.479715 +.121483 +-.013280 +.234445 +-.666585 +1.090294 +-1.325811 +1.324574 +-1.165849 +.979468 +-.855001 +.792206 +-.712308 +.515481 +-.150524 +-.339186 +.817751 +-1.111092 +1.091141 +-.749081 +.216171 +.284848 +-.538660 +.438320 +-.036507 +-.480481 +.882982 +-1.005983 +.820285 +-.434233 +.032108 +.214330 +-.218448 +.008325 +.291783 +-.518369 +.544898 +-.348855 +.035256 +.207203 +-.206638 +-.087634 +.564644 +-1.009398 +1.227136 +-1.153570 +.879381 +-.579364 +.403865 +-.407773 +.552418 +-.754723 +.932359 +-1.017052 +.951655 +-.702160 +.291311 +.175727 +-.531635 +.618593 +-.374049 +-.125228 +.692387 +-1.117631 +1.261120 +-1.099116 +.705388 +-.194091 +-.328987 +.777452 +-1.069598 +1.126444 +-.905779 +.451586 +.090510 +-.524375 +.698240 +-.579537 +.255944 +.134154 +-.485405 +.761137 +-.964578 +1.085126 +-1.078349 +.903449 +-.585582 +.239089 +-.014491 +-.002999 +-.135423 +.267906 +-.237219 +.011602 +.285227 +-.462584 +.402131 +-.139432 +-.171856 +.378195 +-.431369 +.404777 +-.419304 +.541781 +-.729464 +.854038 +-.786394 +.489688 +-.064627 +-.286620 +.368848 +-.118605 +-.333410 +.715465 +-.766669 +.398062 +.244565 +-.864208 +1.190003 +-1.128313 +.787651 +-.372815 +.040430 +.173166 +-.311030 +.400378 +-.402596 +.257585 +.022236 +-.305167 +.400387 +-.191349 +-.259503 +.723241 +-.936135 +.763915 +-.286870 +-.249697 +.583084 +-.579677 +.289495 +.113606 +-.452683 +.642953 +-.704380 +.700160 +-.661634 +.563172 +-.363921 +.075403 +.209259 +-.358482 +.290047 +-.034860 +-.276845 +.499008 +-.558471 +.482168 +-.349123 +.216090 +-.081213 +-.090232 +.311271 +-.543688 +.717393 +-.776066 +.707703 +-.540305 +.318162 +-.086681 +-.104539 +.196023 +-.131688 +-.107060 +.469698 +-.836701 +1.062609 +-1.043528 +.771286 +-.342143 +-.086906 +.370976 +-.440945 +.325554 +-.122913 +-.059696 +.162898 +-.197569 +.221625 +-.288668 +.402450 +-.505717 +.508805 +-.339335 +-.013246 +.477328 +-.910903 +1.146691 +-1.062355 +.648937 +-.035080 +-.564036 +.956105 +-1.072385 +.987239 +-.842117 +.735598 +-.667837 +.577391 +-.427557 +.259762 +-.168466 +.224391 +-.414729 +.646973 +-.806861 +.822311 +-.692661 +.476428 +-.257631 +.113075 +-.089749 +.191334 +-.373566 +.553881 +-.640381 +.575737 +-.376090 +.137181 +.008823 +.028702 +-.231801 +.469212 +-.569925 +.434326 +-.107215 +-.243291 +.432001 +-.375256 +.138999 +.114815 +-.239885 +.192697 +-.037533 +-.120379 +.211376 +-.228454 +.197613 +-.134267 +.032590 +.106179 +-.243932 +.313337 +-.262654 +.098407 +.112944 +-.286188 +.366934 +-.353555 +.282943 +-.199542 +.130478 +-.076275 +.014229 +.088926 +-.255980 +.475343 +-.687067 +.794030 +-.701921 +.374746 +.121838 +-.619774 +.908346 +-.840769 +.436057 +.094764 +-.439893 +.363158 +.139530 +-.815516 +1.295908 +-1.318223 +.884022 +-.246034 +-.260925 +.423203 +-.247689 +-.095496 +.423873 +-.663870 +.857195 +-1.066906 +1.276937 +-1.377144 +1.246310 +-.859514 +.327172 +.166197 +-.470151 +.536776 +-.407156 +.148209 +.192335 +-.575827 +.932675 +-1.147093 +1.096735 +-.726790 +.106303 +.575031 +-1.076039 +1.209766 +-.936583 +.395851 +.149508 +-.438078 +.341818 +.072427 +-.590842 +.979519 +-1.107602 +.991292 +-.744187 +.484588 +-.269969 +.094994 +.064232 +-.207530 +.305063 +-.327735 +.283255 +-.224713 +.222751 +-.320704 +.505288 +-.712958 +.865579 +-.909025 +.830281 +-.649894 +.405368 +-.142421 +-.086061 +.226385 +-.244651 +.150993 +-.005016 +-.109602 +.128641 +-.039337 +-.119631 +.285726 +-.405004 +.450054 +-.421638 +.342915 +-.252050 +.188976 +-.175079 +.196787 +-.210074 +.169728 +-.063553 +-.077359 +.203102 +-.284441 +.334373 +-.395610 +.506110 +-.669074 +.844248 +-.961529 +.949148 +-.768910 +.445804 +-.071083 +-.236063 +.394489 +-.409966 +.365236 +-.353513 +.407612 +-.483334 +.508176 +-.448507 +.335413 +-.231870 +.178268 +-.167291 +.163549 +-.139234 +.087869 +-.009118 +-.107704 +.272948 +-.463978 +.607402 +-.608460 +.418842 +-.092300 +-.224138 +.371179 +-.280929 +.029317 +.205631 +-.257517 +.082929 +.205540 +-.408464 +.366174 +-.059724 +-.378132 +.744530 +-.883304 +.762145 +-.470437 +.153961 +.061898 +-.116789 +.019709 +.168436 +-.356205 +.448119 +-.384248 +.182132 +.052735 +-.177287 +.105867 +.115507 +-.323244 +.346399 +-.139289 +-.166973 +.342843 +-.217576 +-.198644 +.715256 +-1.078834 +1.118734 +-.823486 +.314562 +.239920 +-.701525 +.988756 +-1.066909 +.934979 +-.626614 +.214349 +.201991 +-.523266 +.677693 +-.629767 +.375459 +.058091 +-.600144 +1.125726 +-1.474769 +1.512704 +-1.207564 +.672134 +-.127866 +-.205457 +.235222 +-.054819 +-.113972 +.068826 +.228134 +-.609783 +.805507 +-.623586 +.090968 +.549491 +-.986312 +1.030220 +-.716648 +.255909 +.120616 +-.299531 +.316418 +-.278713 +.262092 +-.265257 +.244012 +-.175209 +.085860 +-.027011 +.024799 +-.055826 +.065042 +-.005651 +-.130152 +.304225 +-.444298 +.468706 +-.324943 +.034947 +.283782 +-.460155 +.376076 +-.073083 +-.236149 +.292688 +.017550 +-.552680 +.987411 +-1.034035 +.650729 +-.074869 +-.349290 +.419584 +-.213776 +.016201 +-.093896 +.493092 +-1.004397 +1.316214 +-1.239958 +.845225 +-.413841 +.250613 +-.482487 +.977370 +-1.428336 +1.542807 +-1.216091 +.587528 +.045847 +-.399019 +.349269 +.014917 +-.463594 +.762818 +-.797183 +.613896 +-.375009 +.252864 +-.328200 +.543632 +-.736283 +.733404 +-.459964 +-.005764 +.467564 +-.723145 +.685415 +-.432806 +.152104 +-.009540 +.038577 +-.122507 +.084292 +.179680 +-.614170 +1.025442 +-1.191693 +.991969 +-.476801 +-.155463 +.656657 +-.845875 +.688148 +-.302670 +-.097374 +.301907 +-.194866 +-.198081 +.722460 +-1.161757 +1.330991 +-1.158031 +.715798 +-.187487 +-.219777 +.369551 +-.249793 +-.038171 +.342501 +-.537408 +.576086 +-.500969 +.412264 +-.409794 +.531626 +-.721133 +.847827 +-.781798 +.483855 +-.049863 +-.333821 +.508212 +-.454927 +.315626 +-.288795 +.471397 +-.768922 +.956426 +-.855904 +.493661 +-.105594 +-.026210 +-.214525 +.681520 +-1.060764 +1.085710 +-.713298 +.139155 +.344417 +-.533090 +.409406 +-.107337 +-.205617 +.431530 +-.566218 +.650922 +-.707888 +.713694 +-.624620 +.425829 +-.161329 +-.082336 +.230931 +-.278269 +.299033 +-.400742 +.640691 +-.966211 +1.228424 +-1.271215 +1.039576 +-.630137 +.241641 +-.052383 +.106062 +-.286006 +.398250 +-.308070 +.035087 +.259520 +-.384171 +.247966 +.079131 +-.413865 +.575794 +-.489476 +.210280 +.128198 +-.394611 +.511115 +-.455279 +.236661 +.114175 +-.532160 +.903619 +-1.087358 +.978685 +-.580610 +.026786 +.473161 +-.741162 +.726117 +-.526524 +.326004 +-.280949 +.427489 +-.661682 +.803651 +-.709292 +.364449 +.094702 +-.450641 +.525215 +-.282024 +-.150345 +.548165 +-.713855 +.578089 +-.225111 +-.168813 +.442480 +-.534398 +.494630 +-.423364 +.385044 +-.361200 +.272003 +-.044993 +-.321843 +.744080 +-1.085865 +1.220845 +-1.086485 +.711146 +-.201578 +-.308443 +.727538 +-1.050457 +1.336284 +-1.626352 +1.865970 +-1.908701 +1.622025 +-1.019544 +.303030 +.241245 +-.425489 +.280966 +-.017109 +-.147859 +.146771 +-.086305 +.123569 +-.307838 +.522581 +-.574208 +.353767 +.057950 +-.424073 +.502072 +-.205730 +-.330948 +.828621 +-1.025862 +.826654 +-.343416 +-.183655 +.532845 +-.620093 +.523057 +-.407439 +.411588 +-.564215 +.780391 +-.928511 +.917817 +-.750053 +.506280 +-.284428 +.134044 +-.033893 +-.072780 +.212806 +-.339153 +.348688 +-.158153 +-.212568 +.617005 +-.850668 +.776719 +-.422595 +-.027863 +.349365 +-.417850 +.277104 +-.083869 +-.018533 +-.005570 +.091702 +-.164631 +.221170 +-.330200 +.551828 +-.852107 +1.094682 +-1.125538 +.885941 +-.463564 +.039521 +.228828 +-.301975 +.262795 +-.235625 +.285698 +-.374046 +.396861 +-.275829 +.030879 +.219247 +-.331398 +.236369 +.010294 +-.264500 +.394668 +-.372991 +.285882 +-.251300 +.305146 +-.349376 +.212819 +.209450 +-.838692 +1.411753 +-1.614675 +1.272446 +-.470890 +-.474291 +1.186617 +-1.429564 +1.213528 +-.750306 +.299954 +-.020156 +-.087947 +.122135 +-.172295 +.247865 +-.282500 +.196853 +.034198 +-.354902 +.652535 +-.811456 +.765900 +-.526974 +.175557 +.170837 +-.398673 +.429638 +-.238003 +-.140428 +.605479 +-1.006010 +1.183645 +-1.041757 +.604773 +-.023037 +-.492528 +.771938 +-.760741 +.524118 +-.188873 +-.126338 +.345383 +-.427536 +.352262 +-.129833 +-.166286 +.389351 +-.373754 +.042693 +.505130 +-1.013842 +1.209969 +-.978315 +.443333 +.115480 +-.456152 +.527787 +-.468133 +.457797 +-.560289 +.680599 +-.666001 +.451487 +-.123072 +-.146117 +.221724 +-.090293 +-.155351 +.392510 +-.532252 +.530732 +-.371161 +.063213 +.329589 +-.674686 +.814726 +-.665127 +.294573 +.089720 +-.262164 +.123995 +.236574 +-.614930 +.831783 +-.833172 +.682113 +-.475805 +.278803 +-.125899 +.061818 +-.143232 +.377175 +-.656070 +.777944 +-.571195 +.037910 +.607318 +-1.053703 +1.091153 +-.745391 +.253927 +.095065 +-.143342 +-.057331 +.305102 +-.392552 +.237685 +.071518 +-.332519 +.344220 +-.021170 +-.550153 +1.143129 +-1.499325 +1.459446 +-1.043286 +.428797 +.156361 +-.558349 +.753299 +-.806789 +.782501 +-.682715 +.470002 +-.145025 +-.196715 +.391523 +-.310142 +-.039455 +.493324 +-.821915 +.872607 +-.665208 +.372085 +-.196538 +.235341 +-.421292 +.582634 +-.572876 +.376910 +-.120649 +-.017601 +-.071657 +.359418 +-.702666 +.940004 +-.990294 +.890361 +-.752536 +.676027 +-.673193 +.659351 +-.512486 +.163733 +.341365 +-.853368 +1.196527 +-1.262547 +1.059011 +-.685359 +.263351 +.121658 +-.431092 +.644959 +-.736182 +.677729 +-.474270 +.183753 +.096780 +-.275384 +.310243 +-.227938 +.106220 +-.031862 +.055044 +-.163290 +.290442 +-.357129 +.319226 +-.191686 +.032542 +.098477 +-.174098 +.203562 +-.211289 +.213781 +-.212428 +.200076 +-.167539 +.103934 +.002303 +-.153102 +.325926 +-.471275 +.533277 +-.483283 +.341684 +-.168699 +.029723 +.040103 +-.047916 +.026917 +-.007946 +-.000057 +.009200 +-.035580 +.079536 +-.117109 +.110113 +-.031106 +-.111060 +.263861 +-.353424 +.328337 +-.197872 +.034891 +.063828 +-.036049 +-.108899 +.298357 +-.439822 +.466616 +-.359772 +.147026 +.105707 +-.304544 +.351937 +-.192591 +-.139694 +.517317 +-.779822 +.829977 +-.695141 +.500892 +-.374126 +.352092 +-.370991 +.338802 +-.224085 +.080666 +.011123 +-.027712 +.027881 +-.093511 +.241443 +-.394823 +.449094 +-.376102 +.267431 +-.268212 +.453347 +-.753770 +.999959 +-1.047721 +.883232 +-.626340 +.438424 +-.412083 +.520896 +-.650183 +.673705 +-.523472 +.219634 +.145839 +-.458506 +.639156 +-.680259 +.638959 +-.589751 +.568721 +-.548511 +.460524 +-.246897 +-.092448 +.482887 +-.794068 +.886749 +-.675237 +.183853 +.434937 +-.949491 +1.158165 +-1.003342 +.613723 +-.234807 +.083900 +-.222720 +.531128 +-.794214 +.838266 +-.625720 +.258204 +.098798 +-.313641 +.353534 +-.290249 +.251216 +-.341708 +.576229 +-.858277 +1.027117 +-.950236 +.605452 +-.098087 +-.396307 +.720162 +-.795124 +.631096 +-.303713 +-.068868 +.346575 +-.408092 +.217372 +.124183 +-.401359 +.402029 +-.063770 +-.458381 +.869686 +-.918902 +.563988 +-.002192 +-.456965 +.587152 +-.374892 +.001960 +.294743 +-.378001 +.271788 +-.100613 +-.028690 +.101963 +-.176548 +.298613 +-.443270 +.532321 +-.506277 +.376982 +-.210535 +.062136 +.068731 +-.217645 +.394015 +-.547145 +.601572 +-.532550 +.407880 +-.348393 +.434189 +-.636285 +.835515 +-.914736 +.846808 +-.704231 +.585528 +-.526121 +.472819 +-.343055 +.113032 +.145939 +-.318362 +.341386 +-.265997 +.228530 +-.349305 +.631377 +-.933301 +1.040476 +-.794521 +.201997 +.546177 +-1.161408 +1.403133 +-1.199970 +.677493 +-.080786 +-.358246 +.531969 +-.490147 +.386570 +-.374892 +.511115 +-.714910 +.813564 +-.648401 +.183763 +.451908 +-1.026044 +1.330875 +-1.299517 +1.033162 +-.725595 +.541337 +-.531832 +.637212 +-.754407 +.808908 +-.779112 +.674027 +-.504999 +.286986 +-.063846 +-.081061 +.058324 +.165302 +-.525841 +.883608 +-1.100022 +1.117405 +-.983698 +.805475 +-.664633 +.559541 +-.410861 +.126626 +.317429 +-.834490 +1.249418 +-1.380756 +1.143123 +-.614295 +.020772 +.366204 +-.376615 +.044265 +.405087 +-.682012 +.600901 +-.181283 +-.375748 +.808440 +-.929367 +.699230 +-.219420 +-.329100 +.762356 +-.960599 +.910709 +-.704476 +.482234 +-.343726 +.283810 +-.207234 +.018869 +.280201 +-.573713 +.710559 +-.622694 +.385697 +-.173270 +.140148 +-.319813 +.606192 +-.825068 +.841759 +-.635040 +.297003 +.031070 +-.239659 +.298092 +-.248155 +.162504 +-.103268 +.102774 +-.162573 +.257096 +-.339061 +.355844 +-.279072 +.129461 +.029377 +-.133087 +.164638 +-.166180 +.199428 +-.284411 +.369447 +-.362619 +.205772 +.063841 +-.312931 +.379920 +-.171763 +-.270160 +.778314 +-1.141919 +1.219203 +-1.012996 +.662332 +-.355418 +.220805 +-.267513 +.407442 +-.532449 +.581969 +-.555109 +.473298 +-.341010 +.145515 +.107672 +-.365307 +.541077 +-.570557 +.461457 +-.293689 +.165561 +-.129568 +.170485 +-.240683 +.316734 +-.425021 +.613810 +-.898522 +1.227932 +-1.497414 +1.596896 +-1.460799 +1.097221 +-.593271 +.098660 +.214798 +-.217887 +-.107858 +.639206 +-1.150395 +1.415943 +-1.323739 +.931081 +-.427495 +.027266 +.141530 +-.085571 +-.088637 +.257534 +-.348825 +.354270 +-.295535 +.186789 +-.030546 +-.156325 +.323646 +-.407096 +.377876 +-.279275 +.209847 +-.255148 +.417662 +-.603166 +.681052 +-.576619 +.323333 +-.033039 +-.190142 +.319646 +-.402483 +.490472 +-.573794 +.580017 +-.439703 +.157745 +.174356 +-.435986 +.555500 +-.547530 +.488555 +-.459448 +.500090 +-.598654 +.708720 +-.776239 +.765462 +-.677845 +.553065 +-.443425 +.372201 +-.310988 +.206687 +-.046504 +-.097634 +.101720 +.109587 +-.475507 +.811376 +-.926637 +.757441 +-.403660 +.042431 +.201810 +-.321038 +.383518 +-.450310 +.534607 +-.625851 +.724823 +-.831253 +.895622 +-.806354 +.461529 +.116250 +-.730501 +1.100464 +-1.047432 +.637889 +-.157701 +-.082670 +-.025427 +.303832 +-.415552 +.116670 +.551935 +-1.272213 +1.648924 +-1.460093 +.790191 +.031909 +-.635668 +.817248 +-.630620 +.321008 +-.156355 +.265073 +-.575779 +.886594 +-1.009372 +.889497 +-.622793 +.366142 +-.213140 +.127724 +.018317 +-.335854 +.820118 +-1.333807 +1.680922 +-1.718261 +1.433474 +-.949622 +.465341 +-.169889 +.171253 +-.457714 +.899744 +-1.294155 +1.444144 +-1.250170 +.767116 +-.187666 +-.253910 +.411171 +-.310860 +.134705 +-.100636 +.316702 +-.705119 +1.051003 +-1.144873 +.922896 +-.512152 +.154580 +-.063007 +.298738 +-.739544 +1.149433 +-1.308745 +1.133830 +-.720633 +.284602 +-.028012 +.014635 +-.134500 +.184960 +-.014004 +-.373176 +.817158 +-1.109956 +1.125890 +-.886570 +.521978 +-.163981 +-.145530 +.463347 +-.865773 +1.343661 +-1.758685 +1.907756 +-1.662336 +1.086819 +-.442188 +.054148 +-.118694 +.568346 +-1.090527 +1.297553 +-.951840 +.112957 +.883080 +-1.602413 +1.745544 +-1.296376 +.504775 +.277032 +-.793404 +.993748 +-.993763 +.936666 +-.867012 +.711068 +-.370973 +-.148999 +.691844 +-1.023439 +.986327 +-.616963 +.132332 +.213457 +-.299847 +.209051 +-.140932 +.241699 +-.484827 +.699859 +-.722433 +.537978 +-.298583 +.200973 +-.329452 +.593128 +-.802408 +.814288 +-.626942 +.357644 +-.139451 +.030331 +-.001500 +-.006914 +.029438 +-.069854 +.136533 +-.262743 +.473275 +-.723086 +.879632 +-.795919 +.437062 +.045291 +-.376442 +.338963 +.058713 +-.563711 +.838987 +-.689946 +.188668 +.392885 +-.780561 +.872330 +-.766502 +.645531 +-.623988 +.679621 +-.702234 +.598749 +-.361024 +.053617 +.245349 +-.485524 +.636464 +-.658707 +.503869 +-.157716 +-.314788 +.777616 +-1.093424 +1.201624 +-1.137567 +.979686 +-.779881 +.547214 +-.296086 +.097832 +-.062889 +.249619 +-.578399 +.842954 +-.833157 +.484046 +.065329 +-.551509 +.747254 +-.589713 +.197528 +.217004 +-.470154 +.489912 +-.328233 +.117195 +-.002768 +.086088 +-.387136 +.834966 +-1.284430 +1.558246 +-1.510564 +1.096655 +-.418815 +-.286951 +.738873 +-.743183 +.304434 +.359257 +-.919129 +1.106523 +-.854029 +.323271 +.196308 +-.454319 +.369834 +-.050292 +-.302750 +.529868 +-.598186 +.583528 +-.577281 +.599572 +-.589823 +.478470 +-.273705 +.082831 +-.041546 +.202684 +-.474219 +.662177 +-.594320 +.237420 +.275472 +-.724734 +.931751 +-.847174 +.550591 +-.180525 +-.143716 +.358598 +-.447052 +.414088 +-.276205 +.066941 +.160993 +-.351335 +.471731 +-.531021 +.568715 +-.618757 +.671681 +-.666054 +.523838 +-.212248 +-.210994 +.607890 +-.829408 +.803159 +-.583084 +.327321 +-.214524 +.343785 +-.672027 +1.025845 +-1.191979 +1.047113 +-.652812 +.243870 +-.095270 +.341445 +-.871173 +1.382410 +-1.567372 +1.299648 +-.693665 +.006421 +.531573 +-.829909 +.931545 +-.921120 +.838248 +-.661560 +.360178 +.041443 +-.441813 +.702640 +-.725732 +.516617 +-.191387 +-.084238 +.190523 +-.122788 +-.015638 +.094544 +-.053456 +-.060898 +.146165 +-.142346 +.093144 +-.115580 +.298595 +-.611667 +.899681 +-.974047 +.737395 +-.255394 +-.273415 +.629958 +-.699367 +.532723 +-.307924 +.211528 +-.313116 +.515934 +-.625150 +.496218 +-.159620 +-.176846 +.263423 +.010203 +-.521877 +.986008 +-1.136861 +.895515 +-.407365 +-.062635 +.293221 +-.220294 +-.055918 +.350223 +-.496230 +.417590 +-.144409 +-.216191 +.531164 +-.691060 +.644476 +-.412625 +.083440 +.215384 +-.363182 +.301889 +-.075862 +-.173127 +.268397 +-.097021 +-.308005 +.758950 +-1.000335 +.854497 +-.341863 +-.306982 +.770707 +-.826335 +.491327 +-.021636 +-.242610 +.090858 +.421701 +-1.005372 +1.314825 +-1.158255 +.603089 +.080029 +-.583653 +.723837 +-.502927 +.065512 +.393255 +-.703149 +.758568 +-.539796 +.127616 +.307385 +-.567630 +.534055 +-.254370 +-.058447 +.141264 +.149332 +-.722928 +1.285011 +-1.507676 +1.238030 +-.604794 +-.055159 +.407212 +-.326436 +-.037283 +.374561 +-.424401 +.129081 +.359924 +-.807841 +1.050278 +-1.068349 +.951053 +-.794349 +.621535 +-.380779 +.013726 +.462306 +-.924404 +1.195591 +-1.148854 +.793803 +-.283885 +-.164661 +.388084 +-.350074 +.136131 +.112984 +-.274535 +.281872 +-.125093 +-.162588 +.513928 +-.833792 +1.015407 +-.972375 +.675255 +-.172786 +-.417456 +.948114 +-1.294376 +1.396192 +-1.273495 +1.011204 +-.722370 +.503234 +-.394930 +.369691 +-.354774 +.289851 +-.182846 +.116028 +-.181268 +.383762 +-.595912 +.619422 +-.330281 +-.198331 +.700303 +-.866595 +.547852 +.129812 +-.820049 +1.152371 +-.946969 +.317500 +.394960 +-.811790 +.717473 +-.160849 +-.589456 +1.197305 +-1.427630 +1.240760 +-.774239 +.239870 +.192432 +-.456271 +.572232 +-.584917 +.513606 +-.355573 +.129728 +.091435 +-.203857 +.139397 +.076055 +-.325920 +.470583 +-.431819 +.237007 +.000185 +-.143646 +.104662 +.115381 +-.425787 +.690795 +-.799225 +.723491 +-.530783 +.333675 +-.209620 +.144862 +-.045605 +-.186507 +.564092 +-.972134 +1.212020 +-1.116057 +.667968 +-.048037 +-.444343 +.561562 +-.268318 +-.224340 +.593069 +-.622077 +.350545 +-.031071 +-.075400 +-.089331 +.333494 +-.375104 +.084683 +.384355 +-.688610 +.547065 +.038405 +-.764836 +1.229977 +-1.207185 +.792644 +-.321882 +.123439 +-.292734 +.646678 +-.881319 +.807123 +-.486970 +.180084 +-.139876 +.417039 +-.810667 +1.000350 +-.763930 +.130216 +.633049 +-1.180027 +1.285479 +-.957744 +.407981 +.087703 +-.340858 +.331577 +-.186924 +.087402 +-.163875 +.437920 +-.823319 +1.171896 +-1.333331 +1.206914 +-.776966 +.128749 +.563958 +-1.089928 +1.284236 +-1.109772 +.685305 +-.229406 +-.055383 +.084546 +.090634 +-.357507 +.640723 +-.936663 +1.254664 +-1.527213 +1.590152 +-1.277924 +.572652 +.318687 +-1.042088 +1.295488 +-1.014871 +.416756 +.132650 +-.330731 +.095345 +.420756 +-.943375 +1.230504 +-1.176969 +.832868 +-.354190 +-.071698 +.291427 +-.227933 +-.100096 +.581129 +-1.039546 +1.292981 +-1.227390 +.857672 +-.333356 +-.128529 +.354786 +-.304875 +.078973 +.158108 +-.280556 +.261054 +-.154693 +.035915 +.054210 +-.114554 +.154318 +-.166496 +.133236 +-.056391 +-.022778 +.044527 +.015148 +-.104673 +.120080 +.007901 +-.225623 +.350676 +-.178418 +-.361251 +1.115020 +-1.764724 +2.006464 +-1.730415 +1.078700 +-.346715 +-.197302 +.450554 +-.488147 +.459630 +-.457609 +.456435 +-.361105 +.121470 +.184114 +-.370344 +.267307 +.141435 +-.670597 +1.021484 +-.958268 +.460125 +.249581 +-.817400 +.950120 +-.571076 +-.144804 +.873599 +-1.320172 +1.366941 +-1.107021 +.748697 +-.461594 +.273238 +-.086290 +-.205262 +.597185 +-.950331 +1.081949 +-.902927 +.494907 +-.066245 +-.184307 +.201368 +-.111502 +.138105 +-.445762 +1.012432 +-1.614091 +1.940238 +-1.779131 +1.160556 +-.360166 +-.251389 +.428314 +-.195980 +-.179450 +.381539 +-.261107 +-.076128 +.372445 +-.427107 +.246919 +-.024736 +-.028145 +-.144943 +.405812 +-.538997 +.425614 +-.133404 +-.141469 +.225508 +-.089581 +-.146842 +.320371 +-.348697 +.282743 +-.255288 +.373378 +-.635350 +.928166 +-1.099102 +1.047212 +-.774198 +.371039 +.038149 +-.351940 +.518238 +-.531471 +.417221 +-.217793 +-.019542 +.253748 +-.457207 +.613619 +-.709703 +.732656 +-.680954 +.578408 +-.470062 +.391735 +-.335014 +.245054 +-.066249 +-.195931 +.454825 +-.593417 +.551375 +-.372597 +.166049 +-.010667 +-.110527 +.284057 +-.568119 +.912047 +-1.169733 +1.202703 +-.989602 +.652019 +-.375986 +.292013 +-.406134 +.626816 +-.851305 +1.029794 +-1.154610 +1.198056 +-1.076325 +.696318 +-.060016 +-.668069 +1.211268 +-1.336859 +1.009583 +-.422523 +-.125712 +.418807 +-.437044 +.320457 +-.223387 +.185664 +-.123479 +-.059928 +.343329 +-.552928 +.464652 +.026287 +-.794200 +1.519392 +-1.858051 +1.638227 +-.956829 +.119668 +.532464 +-.802244 +.716239 +-.471516 +.293313 +-.294204 +.417358 +-.492421 +.363832 +-.006820 +-.446906 +.791568 +-.881038 +.718883 +-.441398 +.210647 +-.101053 +.064487 +.006713 +-.176207 +.404083 +-.574992 +.585948 +-.421692 +.161752 +.079979 +-.231314 +.295775 +-.325279 +.362088 +-.401770 +.407066 +-.355934 +.275893 +-.226755 +.240605 +-.271765 +.209846 +.039073 +-.460298 +.903750 +-1.156762 +1.074525 +-.678942 +.155629 +.250645 +-.372758 +.204069 +.118688 +-.411677 +.552466 +-.532786 +.430502 +-.329541 +.249347 +-.134603 +-.089081 +.435411 +-.812953 +1.052895 +-.999378 +.612665 +-.022978 +-.506578 +.702347 +-.431262 +-.205443 +.903461 +-1.312554 +1.237529 +-.757719 +.177418 +.172247 +-.151919 +-.101860 +.293585 +-.204763 +-.130545 +.452793 +-.493110 +.209555 +.153095 +-.242435 +-.113810 +.738757 +-1.199636 +1.105363 +-.390117 +-.626068 +1.440148 +-1.679610 +1.305511 +-.584783 +-.112821 +.527796 +-.599918 +.420783 +-.134199 +-.130303 +.275121 +-.242414 +.038330 +.248977 +-.480013 +.544436 +-.435685 +.253945 +-.128354 +.118868 +-.176432 +.188947 +-.070396 +-.177731 +.472971 +-.710162 +.824344 +-.819531 +.755477 +-.708186 +.726254 +-.801147 +.864816 +-.820335 +.597822 +-.208774 +-.235664 +.564468 +-.632491 +.406178 +.005956 +-.405233 +.611917 +-.565258 +.349669 +-.130001 +.041537 +-.110974 +.260066 +-.380901 +.420184 +-.408098 +.415170 +-.478064 +.556713 +-.556462 +.397168 +-.077089 +-.312037 +.625815 +-.736358 +.592359 +-.245568 +-.163864 +.459028 +-.501643 +.263223 +.147953 +-.532103 +.702830 +-.590869 +.276626 +.073798 +-.321822 +.434394 +-.472047 +.507133 +-.546991 +.526965 +-.374615 +.086824 +.246503 +-.491381 +.552394 +-.427155 +.198758 +.017984 +-.131975 +.100061 +.075971 +-.354682 +.650300 +-.836734 +.788036 +-.453899 +-.077028 +.587030 +-.832132 +.685564 +-.226446 +-.294662 +.599509 +-.543229 +.188024 +.254467 +-.566089 +.652252 +-.577946 +.496090 +-.523519 +.648169 +-.727190 +.579034 +-.114173 +-.577341 +1.242715 +-1.587144 +1.433307 +-.826320 +.020927 +.643686 +-.911564 +.728424 +-.248841 +-.265264 +.591340 +-.650422 +.512274 +-.311760 +.145275 +-.022621 +-.101573 +.256550 +-.410044 +.484162 +-.413945 +.198390 +.091928 +-.350366 +.484630 +-.454039 +.281752 +-.043651 +-.160602 +.247576 +-.189026 +.031234 +.121918 +-.160957 +.033306 +.220755 +-.484267 +.626924 +-.580369 +.379867 +-.143963 +.001853 +-.012014 +.124643 +-.213517 +.156830 +.087664 +-.461010 +.841965 +-1.111846 +1.201999 +-1.106392 +.871131 +-.577978 +.322543 +-.179228 +.159486 +-.193982 +.168202 +-.002706 +-.275154 +.529176 +-.596204 +.399720 +-.012351 +-.379643 +.583421 +-.502468 +.173073 +.269266 +-.651647 +.815087 +-.651939 +.146515 +.585969 +-1.301756 +1.710530 +-1.621321 +1.070444 +-.335467 +-.197865 +.248138 +.200763 +-.895208 +1.468546 +-1.656685 +1.433379 +-.984046 +.549914 +-.261890 +.082302 +.114978 +-.402643 +.716105 +-.894111 +.804011 +-.443994 +-.060199 +.551273 +-.937918 +1.210833 +-1.377856 +1.397482 +-1.189210 +.721008 +-.093434 +-.467400 +.723169 +-.568840 +.107172 +.401210 +-.680277 +.585373 +-.171671 +-.346274 +.715473 +-.780305 +.563914 +-.251622 +.080348 +-.190749 +.528136 +-.860747 +.916420 +-.560152 +-.101873 +.768001 +-1.116889 +1.002728 +-.540606 +.024456 +.264831 +-.227902 +-.019195 +.254432 +-.309829 +.165590 +.073030 +-.274699 +.370624 +-.375277 +.344465 +-.319548 +.301731 +-.267739 +.204799 +-.133848 +.100682 +-.139376 +.233551 +-.307316 +.261345 +-.038250 +-.324269 +.692798 +-.899079 +.829485 +-.488168 +-.006553 +.488204 +-.825044 +.966497 +-.932240 +.768505 +-.514977 +.206209 +.108126 +-.357567 +.476753 +-.443741 +.295385 +-.103523 +-.068001 +.187888 +-.244348 +.214863 +-.060907 +-.232150 +.598460 +-.879933 +.897461 +-.575257 +.027946 +.471916 +-.646944 +.393344 +.142319 +-.648005 +.836868 +-.613199 +.108153 +.420547 +-.739970 +.744438 +-.468264 +.036653 +.393684 +-.679299 +.725076 +-.515874 +.128204 +.299591 +-.633734 +.806050 +-.825417 +.735791 +-.564152 +.309063 +.022513 +-.371992 +.629940 +-.690405 +.518244 +-.177053 +-.201355 +.481492 +-.581916 +.500746 +-.307575 +.110659 +-.009833 +.049651 +-.196147 +.355218 +-.427024 +.363283 +-.191326 +-.006235 +.136308 +-.135759 +-.006783 +.245616 +-.486448 +.614015 +-.539921 +.252288 +.167200 +-.580417 +.867227 +-.986619 +.977901 +-.899950 +.758616 +-.489542 +.025487 +.593888 +-1.163041 +1.378646 +-1.024107 +.157319 +.846021 +-1.464543 +1.338758 +-.517770 +-.535399 +1.206056 +-1.096714 +.259094 +.862285 +-1.727185 +2.026507 +-1.821755 +1.424443 +-1.128829 +1.000749 +-.865674 +.484529 +.224767 +-1.082986 +1.734356 +-1.860668 +1.383748 +-.527486 +-.297695 +.717548 +-.591963 +.074411 +.495458 +-.794638 +.689651 +-.281890 +-.184008 +.471653 +-.463973 +.182596 +.262884 +-.737404 +1.115777 +-1.296382 +1.218612 +-.891267 +.408437 +.075222 +-.409242 +.515728 +-.416732 +.205662 +.011587 +-.162215 +.215066 +-.165594 +.027317 +.157987 +-.312851 +.349153 +-.225664 +-.004432 +.206237 +-.244998 +.085047 +.170890 +-.341586 +.292040 +-.036896 +-.254084 +.357659 +-.141082 +-.346110 +.890966 +-1.232895 +1.204393 +-.817161 +.254007 +.220630 +-.384466 +.161691 +.335908 +-.853675 +1.114934 +-.965952 +.465704 +.141280 +-.564396 +.635564 +-.397395 +.052718 +.183098 +-.216561 +.104524 +.027496 +-.094821 +.097947 +-.076742 +.032878 +.096939 +-.387270 +.837160 +-1.330270 +1.680931 +-1.734055 +1.445852 +-.895664 +.236220 +.371417 +-.802596 +.992645 +-.953756 +.780343 +-.616963 +.579481 +-.672537 +.775607 +-.730471 +.474827 +-.113104 +-.142861 +.121538 +.190152 +-.648571 +1.060138 +-1.295666 +1.327256 +-1.186638 +.911454 +-.535370 +.112888 +.273400 +-.550668 +.704902 +-.781717 +.824818 +-.810509 +.655164 +-.306848 +-.159010 +.543012 +-.645394 +.416067 +-.000561 +-.363412 +.513457 +-.455451 +.315676 +-.213297 +.174481 +-.152540 +.109288 +-.061208 +.044211 +-.044246 +-.019322 +.223260 +-.540466 +.808920 +-.818109 +.461919 +.156809 +-.757045 +1.035081 +-.841374 +.259239 +.462530 +-1.067345 +1.425797 +-1.562907 +1.580468 +-1.551918 +1.474942 +-1.306676 +1.034127 +-.708249 +.408971 +-.175059 +-.035027 +.310979 +-.708532 +1.181520 +-1.582301 +1.733444 +-1.524370 +.975615 +-.239826 +-.454575 +.888859 +-.937691 +.623416 +-.116785 +-.328117 +.488761 +-.287689 +-.161743 +.614579 +-.832081 +.714725 +-.345073 +-.085067 +.405967 +-.563437 +.613020 +-.635165 +.652532 +-.619890 +.487804 +-.273749 +.070915 +.017567 +.038300 +-.168100 +.255381 +-.229167 +.118074 +-.024960 +.046302 +-.202016 +.428407 +-.631195 +.748583 +-.772713 +.720448 +-.591525 +.362091 +-.024843 +-.362148 +.672078 +-.771438 +.608928 +-.262960 +-.093550 +.289234 +-.243699 +-.007063 +.352315 +-.670448 +.867862 +-.884964 +.696360 +-.327822 +-.123536 +.503926 +-.670200 +.574837 +-.302288 +.017522 +.141910 +-.147807 +.073994 +-.013877 +.001322 +-.004996 +-.009954 +.026152 +.010246 +-.115177 +.214633 +-.183674 +-.042166 +.380183 +-.627803 +.600550 +-.280470 +-.143763 +.385485 +-.248332 +-.235391 +.813230 +-1.165643 +1.104487 +-.687269 +.173081 +.148283 +-.138511 +-.118008 +.396519 +-.503708 +.413436 +-.271968 +.274566 +-.507163 +.868744 +-1.128811 +1.078542 +-.671577 +.061310 +.486147 +-.742509 +.635135 +-.264476 +-.175826 +.513007 +-.668057 +.654422 +-.525451 +.324576 +-.074659 +-.198231 +.441261 +-.581969 +.566599 +-.403204 +.176694 +-.019834 +.048714 +-.293368 +.662522 +-.971657 +1.032181 +-.759754 +.236682 +.318684 +-.666266 +.675872 +-.393258 +.001146 +.293707 +-.371095 +.240403 +-.005233 +-.210815 +.325300 +-.319000 +.224362 +-.099995 +.003516 +.032292 +-.014679 +-.013223 +.001238 +.066866 +-.146865 +.145610 +.029287 +-.408458 +.924839 +-1.427114 +1.740498 +-1.747219 +1.445775 +-.954084 +.448638 +-.069172 +-.153140 +.294384 +-.459299 +.679893 +-.869564 +.876460 +-.605584 +.121939 +.348366 +-.532747 +.274837 +.359146 +-1.100565 +1.615709 +-1.680785 +1.296033 +-.678212 +.139470 +.078868 +.073101 +-.443106 +.777577 +-.870455 +.668105 +-.270481 +-.158876 +.498936 +-.716728 +.834460 +-.869436 +.813680 +-.670290 +.496934 +-.392775 +.420935 +-.532726 +.575555 +-.400483 +-.006920 +.482425 +-.774335 +.711033 +-.321774 +-.179431 +.534639 +-.604973 +.442543 +-.229181 +.136609 +-.211356 +.360631 +-.435995 +.343353 +-.098563 +-.200525 +.448733 +-.590234 +.621538 +-.558143 +.409195 +-.184612 +-.083349 +.339937 +-.539593 +.680059 +-.799403 +.930490 +-1.053634 +1.096979 +-.993047 +.745376 +-.444653 +.215319 +-.134077 +.186983 +-.298142 +.400745 +-.485056 +.580506 +-.690521 +.746229 +-.635272 +.297169 +.190066 +-.615452 +.750363 +-.500152 +-.020325 +.548251 +-.829309 +.756920 +-.402429 +-.066435 +.501163 +-.835196 +1.066117 +-1.198020 +1.206440 +-1.055748 +.747356 +-.351585 +-.009124 +.217764 +-.223522 +.065681 +.152729 +-.323521 +.388340 +-.361337 +.311063 +-.313882 +.403874 +-.546397 +.654740 +-.647850 +.517007 +-.352092 +.295012 +-.439282 +.744414 +-1.036899 +1.111652 +-.870431 +.398232 +.080968 +-.341255 +.291388 +-.021371 +-.264450 +.376338 +-.246418 +-.043998 +.321476 +-.420640 +.271925 +.063934 +-.426109 +.631764 +-.563905 +.226765 +.257089 +-.703584 +.945902 +-.896707 +.571514 +-.074102 +-.441619 +.819542 +-.949294 +.803156 +-.446814 +.013441 +.353510 +-.564107 +.620245 +-.605750 +.630837 +-.759003 +.959988 +-1.122486 +1.126191 +-.928955 +.606910 +-.311066 +.165709 +-.182336 +.256508 +-.251878 +.105457 +.129072 +-.331825 +.415591 +-.390373 +.342951 +-.352977 +.417892 +-.449091 +.344524 +-.084223 +-.223595 +.387222 +-.249470 +-.191158 +.740277 +-1.093033 +1.011172 +-.485948 +-.228237 +.751486 +-.811597 +.420291 +.134449 +-.483632 +.430293 +-.083213 +-.226027 +.186309 +.262136 +-.876663 +1.279000 +-1.219244 +.744008 +-.148546 +-.245280 +.313825 +-.191454 +.130375 +-.280944 +.568238 +-.757510 +.649063 +-.244747 +-.244051 +.550004 +-.544353 +.324123 +-.128677 +.152991 +-.401004 +.689779 +-.797576 +.638121 +-.323840 +.069487 +-.015664 +.115259 +-.173864 +.010077 +.395052 +-.877912 +1.213757 +-1.279736 +1.132638 +-.947932 +.876115 +-.931194 +.993164 +-.914417 +.641436 +-.256756 +-.087100 +.283605 +-.342611 +.362175 +-.433000 +.561404 +-.673812 +.689946 +-.593900 +.444295 +-.325995 +.294232 +-.354241 +.474991 +-.607604 +.692014 +-.665706 +.491631 +-.194405 +-.132894 +.375682 +-.475239 +.474526 +-.484028 +.581606 +-.722370 +.740569 +-.461630 +-.146759 +.899690 +-1.468107 +1.565953 +-1.129136 +.361787 +.383580 +-.808807 +.820469 +-.539477 +.187641 +.052701 +-.112359 +.018670 +.165486 +-.385306 +.597915 +-.758881 +.824064 +-.771059 +.616155 +-.404417 +.179743 +.035119 +-.228192 +.370824 +-.409966 +.302449 +-.069583 +-.181194 +.304571 +-.215291 +-.036423 +.278766 +-.324528 +.097911 +.310845 +-.703960 +.905019 +-.865910 +.680203 +-.502599 +.439726 +-.490061 +.567723 +-.581451 +.502975 +-.373283 +.248463 +-.136624 +-.015087 +.267204 +-.611434 +.941873 +-1.111304 +1.040833 +-.797928 +.570915 +-.543104 +.752473 +-1.045668 +1.173360 +-.967630 +.473734 +.066213 +-.373730 +.324919 +-.031691 +-.247970 +.303301 +-.121344 +-.118774 +.199139 +-.039914 +-.241879 +.436671 +-.422246 +.270990 +-.196646 +.382862 +-.829041 +1.332323 +-1.616767 +1.512543 +-1.061145 +.484627 +-.051708 +-.068607 +-.117445 +.454015 +-.735580 +.819703 +-.691066 +.444740 +-.205116 +.036617 +.089911 +-.251240 +.483030 +-.723255 +.842200 +-.743666 +.458372 +-.146618 +-.005274 +-.076549 +.287380 +-.409597 +.269584 +.127662 +-.588550 +.858098 +-.794840 +.467469 +-.104028 +-.067218 +-.032096 +.294971 +-.523683 +.573475 +-.437434 +.222476 +-.055473 +.001443 +-.047650 +.142321 +-.238497 +.306643 +-.320302 +.244613 +-.049413 +-.258300 +.608811 +-.878425 +.942213 +-.751811 +.392036 +-.065691 +-.008689 +-.261624 +.756911 +-1.188936 +1.265841 +-.874455 +.153300 +.596374 +-1.096583 +1.242230 +-1.117449 +.888561 +-.671246 +.473024 +-.236842 +-.070071 +.402921 +-.661277 +.761471 +-.700306 +.563496 +-.474485 +.518795 +-.690405 +.891434 +-.983459 +.860744 +-.505842 +.001439 +.502710 +-.848051 +.924619 +-.708365 +.268152 +.258955 +-.717348 +.989525 +-1.035701 +.896841 +-.660111 +.408005 +-.181530 +-.022892 +.227326 +-.440874 +.647143 +-.816276 +.925352 +-.966727 +.939301 +-.839673 +.672778 +-.479614 +.351710 +-.400602 +.685654 +-1.148047 +1.610034 +-1.857965 +1.762601 +-1.356638 +.815543 +-.355329 +.117126 +-.110735 +.242131 +-.391365 +.480767 +-.492874 +.441771 +-.335818 +.168065 +.061005 +-.316845 +.534496 +-.657611 +.681654 +-.660236 +.661810 +-.708052 +.744476 +-.672048 +.420544 +-.011319 +-.437318 +.768514 +-.871421 +.737752 +-.457314 +.161120 +.046650 +-.127072 +.101825 +-.022713 +-.058883 +.110805 +-.130405 +.147075 +-.206727 +.332954 +-.486615 +.567085 +-.476994 +.214114 +.089358 +-.233273 +.088688 +.296904 +-.720349 +.962790 +-.941563 +.754264 +-.584741 +.554194 +-.640461 +.724472 +-.712126 +.620745 +-.557306 +.614203 +-.778090 +.930547 +-.936732 +.744301 +-.413656 +.065651 +.199211 +-.343624 +.378585 +-.324746 +.196423 +-.019139 +-.149136 +.229253 +-.165955 +-.029778 +.282195 +-.499831 +.632146 +-.684348 +.679186 +-.606615 +.418458 +-.084862 +-.335702 +.687892 +-.804837 +.635540 +-.310911 +.077829 +-.130298 +.455231 +-.813811 +.887685 +-.498740 +-.248934 +1.008287 +-1.389796 +1.192313 +-.514566 +-.318183 +.952042 +-1.190915 +1.059768 +-.731061 +.393613 +-.162610 +.073560 +-.125353 +.308350 +-.588258 +.877435 +-1.048344 +1.005193 +-.764243 +.465648 +-.286417 +.309557 +-.454453 +.533799 +-.399478 +.060673 +.325002 +-.580002 +.644807 +-.606913 +.600180 +-.669845 +.728677 +-.644097 +.373483 +-.019117 +-.250317 +.338164 +-.287081 +.212169 +-.167897 +.085066 +.151311 +-.550609 +.941172 +-1.062051 +.762529 +-.145081 +-.476586 +.782212 +-.656842 +.249517 +.155616 +-.344691 +.295568 +-.136616 +.000079 +.095419 +-.237689 +.508492 +-.874389 +1.182450 +-1.268380 +1.088002 +-.763361 +.504400 +-.464840 +.639135 +-.872172 +.968250 +-.817665 +.454015 +-.011875 +-.371629 +.632730 +-.782680 +.849326 +-.823194 +.663598 +-.361084 +-.004888 +.275107 +-.293523 +.007560 +.486317 +-.982744 +1.266756 +-1.215098 +.851422 +-.334400 +-.116360 +.327640 +-.262197 +.035446 +.162042 +-.192680 +.060609 +.107752 +-.177073 +.116724 +-.019191 +.009279 +-.124799 +.273726 +-.305850 +.139373 +.161277 +-.417713 +.453463 +-.206922 +-.234423 +.691418 +-.993444 +1.055885 +-.899505 +.619860 +-.337872 +.157089 +-.135402 +.270454 +-.501646 +.733377 +-.875048 +.878693 +-.752202 +.541268 +-.294908 +.040890 +.211533 +-.445449 +.609929 +-.621526 +.406885 +.030291 +-.563446 +.966766 +-1.019219 +.639194 +.039313 +-.716642 +1.089901 +-1.031475 +.663998 +-.276973 +.137029 +-.317900 +.661435 +-.890305 +.791851 +-.351454 +-.243595 +.719950 +-.871760 +.659634 +-.208807 +-.274301 +.607825 +-.704613 +.581421 +-.321089 +.022406 +.232352 +-.385074 +.397928 +-.255364 +-.024572 +.382910 +-.731046 +.980607 +-1.074587 +1.001360 +-.788969 +.492767 +-.189597 +-.025795 +.058859 +.144786 +-.555738 +1.049137 +-1.447578 +1.603358 +-1.472846 +1.135970 +-.749275 +.463096 +-.353451 +.403475 +-.534747 +.659363 +-.719375 +.697656 +-.606883 +.473984 +-.330319 +.204267 +-.108569 +.026102 +.089507 +-.283461 +.550317 +-.803257 +.902125 +-.741490 +.345269 +.109967 +-.383455 +.327542 +-.005404 +-.329413 +.396349 +-.089013 +-.432478 +.834355 +-.830031 +.374195 +.306219 +-.861493 +1.037835 +-.814166 +.377581 +.022306 +-.226964 +.233856 +-.153895 +.113070 +-.169285 +.287214 +-.371736 +.332003 +-.139319 +-.151842 +.431038 +-.593131 +.597557 +-.488296 +.361632 +-.302771 +.331357 +-.389380 +.378075 +-.223436 +-.066241 +.386614 +-.584550 +.549056 +-.291769 +-.043468 +.262464 +-.245317 +.023169 +.253411 +-.429438 +.449645 +-.370153 +.281378 +-.223802 +.174976 +-.107736 +.045356 +-.045464 +.123527 +-.197990 +.128607 +.166854 +-.613011 +.989542 +-1.065118 +.761551 +-.225937 +-.249028 +.406768 +-.186314 +-.250725 +.642160 +-.805600 +.745269 +-.609780 +.541405 +-.543831 +.480371 +-.207855 +-.264839 +.731648 +-.909195 +.639424 +-.022377 +-.625672 +.963907 +-.834862 +.346521 +.218888 +-.595083 +.685207 +-.580539 +.449935 +-.396456 +.392793 +-.337452 +.175059 +.026325 +-.110581 +-.044698 +.419936 +-.849121 +1.124263 +-1.127079 +.889107 +-.544827 +.226651 +.013295 +-.203850 +.394250 +-.591331 +.744691 +-.786263 +.687624 +-.487769 +.267096 +-.084754 +-.071941 +.279399 +-.604350 +1.012364 +-1.333787 +1.334639 +-.867412 +.007856 +.926348 +-1.512889 +1.453679 +-.759909 +-.227922 +1.010835 +-1.200345 +.727413 +.133779 +-.938308 +1.328308 +-1.215128 +.781881 +-.325932 +.062912 +-.023474 +.091642 +-.128436 +.076900 +.018543 +-.067613 +.004164 +.179010 +-.435637 +.686691 +-.839968 +.814434 +-.578476 +.186503 +.222032 +-.481274 +.490636 +-.278246 +-.013988 +.219472 +-.250847 +.146733 +-.030022 +.009373 +-.095946 +.195514 +-.182480 +.002016 +.274729 +-.485313 +.479224 +-.218704 +-.190811 +.560105 +-.724859 +.635567 +-.377068 +.111464 +.018104 +.033567 +-.196127 +.335061 +-.339568 +.192495 +.020247 +-.166046 +.151671 +.015045 +-.227620 +.349555 +-.309540 +.162419 +-.067427 +.183904 +-.544290 +.994287 +-1.258214 +1.105414 +-.512781 +-.292026 +.947387 +-1.163802 +.883366 +-.290193 +-.323676 +.733622 +-.878723 +.831643 +-.692697 +.505702 +-.256139 +-.067059 +.415126 +-.681764 +.758482 +-.593933 +.215360 +.289564 +-.804384 +1.209608 +-1.407082 +1.352009 +-1.080977 +.707086 +-.367256 +.148420 +-.045573 +-.013275 +.093590 +-.191989 +.236783 +-.151495 +-.069763 +.336194 +-.506355 +.475406 +-.242769 +-.086033 +.364085 +-.489995 +.459174 +-.346941 +.240092 +-.169583 +.097919 +.027815 +-.201106 +.327834 +-.282027 +.013024 +.382400 +-.695537 +.740313 +-.490549 +.107082 +.179196 +-.244655 +.168422 +-.161486 +.376698 +-.750169 +1.009428 +-.859519 +.218120 +.675154 +-1.366834 +1.455390 +-.844802 +-.178929 +1.100174 +-1.463997 +1.129672 +-.337219 +-.449160 +.821012 +-.655778 +.157689 +.305069 +-.447720 +.230893 +.162324 +-.494502 +.646172 +-.664284 +.670772 +-.728930 +.788644 +-.749820 +.575722 +-.347326 +.209037 +-.255769 +.461245 +-.705551 +.868586 +-.902337 +.824559 +-.658582 +.396271 +-.032286 +-.363307 +.620879 +-.550466 +.086116 +.616069 +-1.220141 +1.387083 +-.975910 +.133783 +.785017 +-1.414489 +1.557650 +-1.247034 +.670975 +-.040498 +-.507270 +.921540 +-1.190074 +1.291157 +-1.188042 +.863710 +-.360717 +-.207620 +.684295 +-.919734 +.824049 +-.402092 +-.238186 +.908062 +-1.389655 +1.507044 +-1.194849 +.535104 +.261317 +-.930148 +1.259382 +-1.178954 +.789833 +-.314428 +-.011166 +.050171 +.175765 +-.513204 +.772225 +-.833676 +.706675 +-.507887 +.381589 +-.409835 +.561449 +-.705188 +.681696 +-.401421 +-.082686 +.576789 +-.837324 +.710067 +-.233516 +-.368341 +.809871 +-.909490 +.690235 +-.351120 +.133937 +-.177437 +.451589 +-.803329 +1.068877 +-1.170853 +1.137696 +-1.044785 +.932344 +-.769590 +.494463 +-.094502 +-.343630 +.666773 +-.753167 +.600818 +-.335124 +.128621 +-.095423 +.237342 +-.469463 +.689204 +-.831643 +.883745 +-.870956 +.840602 +-.846808 +.927018 +-1.072855 +1.219903 +-1.277897 +1.188638 +-.965568 +.678078 +-.392015 +.122417 +.151870 +-.419507 +.579636 +-.467194 +-.031593 +.848152 +-1.695624 +2.187110 +-2.057549 +1.348272 +-.415814 +-.264992 +.389833 +-.015146 +-.484332 +.669473 +-.332027 +-.369769 +1.026026 +-1.256339 +.959556 +-.362717 +-.154227 +.325276 +-.168101 +-.054618 +.044605 +.303716 +-.814368 +1.139555 +-.993307 +.351394 +.517767 +-1.213331 +1.444746 +-1.191508 +.675860 +-.182964 +-.127229 +.277431 +-.377500 +.479820 +-.521686 +.402366 +-.117559 +-.180628 +.266415 +-.010229 +-.500450 +.993316 +-1.183419 +.961815 +-.463365 +-.031085 +.279003 +-.210950 +-.069059 +.391392 +-.636121 +.771116 +-.809081 +.749206 +-.567484 +.261937 +.099722 +-.386936 +.476413 +-.336286 +.057593 +.196155 +-.287966 +.184497 +.041628 +-.277885 +.448742 +-.545330 +.595751 +-.616263 +.593280 +-.509675 +.382996 +-.272158 +.240902 +-.308958 +.434269 +-.543253 +.585373 +-.569275 +.554030 +-.604475 +.744250 +-.938293 +1.111965 +-1.189407 +1.125696 +-.919519 +.610492 +-.272209 +.002632 +.098273 +.028965 +-.356342 +.753257 +-1.032238 +1.044180 +-.766305 +.320216 +.097587 +-.326162 +.314898 +-.117923 +-.171154 +.481790 +-.779941 +1.040026 +-1.221360 +1.283151 +-1.224412 +1.102565 +-1.001008 +.966256 +-.969505 +.930157 +-.784441 +.541167 +-.278471 +.088025 +-.015863 +.044279 +-.117144 +.177575 +-.189493 +.142643 +-.055567 +-.021480 +.019122 +.113477 +-.365930 +.655560 +-.866139 +.912062 +-.779297 +.515970 +-.189766 +-.144137 +.438582 +-.630578 +.638855 +-.404566 +-.049005 +.590246 +-1.021726 +1.174153 +-.992085 +.553753 +-.015347 +-.476902 +.846340 +-1.085275 +1.211051 +-1.224058 +1.104234 +-.846879 +.506093 +-.204618 +.088955 +-.246220 +.631359 +-1.059688 +1.286871 +-1.141934 +.636640 +.022161 +-.533975 +.664743 +-.371694 +-.179002 +.706461 +-.960641 +.837169 +-.408417 +-.129407 +.553151 +-.706279 +.556191 +-.200242 +-.181405 +.412464 +-.410113 +.226056 +-.004905 +-.121139 +.129506 +-.120357 +.228260 +-.496409 +.814935 +-.980887 +.845154 +-.439691 +-.014921 +.238550 +-.073756 +-.405177 +.934806 +-1.227905 +1.145427 +-.757620 +.263865 +.154446 +-.432394 +.608382 +-.732045 +.785249 +-.685955 +.368836 +.127535 +-.642053 +.963621 +-.950820 +.619988 +-.141106 +-.259774 +.431092 +-.375327 +.227319 +-.150504 +.227000 +-.416205 +.602159 +-.684280 +.641358 +-.529075 +.425140 +-.369763 +.342283 +-.283140 +.141029 +.083571 +-.321971 +.458608 +-.386135 +.071950 +.400551 +-.849407 +1.073958 +-.958939 +.540657 +.010166 +-.482752 +.739708 +-.778510 +.705399 +-.645102 +.651989 +-.684751 +.660031 +-.542469 +.398286 +-.363567 +.542237 +-.909472 +1.301592 +-1.512373 +1.430282 +-1.113029 +.740626 +-.482469 +.382311 +-.348903 +.255528 +-.066630 +-.110694 +.095619 +.221139 +-.758705 +1.246790 +-1.364718 +.944984 +-.112956 +-.742175 +1.172308 +-.941983 +.195625 +.602958 +-.943506 +.591939 +.249761 +-1.063995 +1.348015 +-.935515 +.091753 +.675347 +-.947476 +.640902 +-.013962 +-.534505 +.713950 +-.477733 +-.005841 +.484684 +-.757391 +.748989 +-.520414 +.227066 +-.042952 +.072088 +-.286913 +.536759 +-.634256 +.470854 +-.083193 +-.376934 +.745219 +-.941688 +.992431 +-.968810 +.903750 +-.758753 +.469817 +-.031890 +-.454152 +.819227 +-.926455 +.759096 +-.429205 +.104477 +.085948 +-.097911 +-.046344 +.301251 +-.615571 +.918080 +-1.109855 +1.099537 +-.868276 +.508623 +-.190724 +.067247 +-.180891 +.440653 +-.682578 +.772529 +-.683824 +.504984 +-.378356 +.409624 +-.601366 +.849079 +-1.002809 +.959201 +-.727488 +.427384 +-.218573 +.205987 +-.378639 +.615956 +-.753525 +.669840 +-.351212 +-.092963 +.470941 +-.590684 +.351296 +.197342 +-.859314 +1.367400 +-1.498803 +1.178901 +-.521519 +-.217375 +.752205 +-.892227 +.615601 +-.058798 +-.566301 +1.077088 +-1.389363 +1.519789 +-1.533418 +1.479216 +-1.359508 +1.150741 +-.852784 +.519502 +-.237259 +.062584 +.028870 +-.131956 +.338513 +-.655715 +.984118 +-1.177628 +1.138831 +-.872905 +.461222 +.012002 +-.505756 +.998153 +-1.424154 +1.652670 +-1.548512 +1.080539 +-.382850 +-.294111 +.715080 +-.778713 +.544222 +-.165111 +-.204948 +.469266 +-.594970 +.596726 +-.522035 +.435169 +-.387595 +.383914 +-.373867 +.289402 +-.106203 +-.120503 +.280578 +-.280081 +.105703 +.165614 +-.414553 +.544591 +-.518163 +.351120 +-.090199 +-.195994 +.411188 +-.440016 +.197879 +.292668 +-.857448 +1.217045 +-1.127830 +.544609 +.306559 +-1.017252 +1.218085 +-.804551 +.016142 +.698628 +-.957434 +.681463 +-.132834 +-.275750 +.267230 +.116471 +-.556781 +.687719 +-.347016 +-.319119 +.955100 +-1.219369 +.982905 +-.386972 +-.258202 +.656117 +-.674620 +.384358 +.017924 +-.336668 +.471963 +-.434919 +.298375 +-.134468 +-.017895 +.150417 +-.268541 +.379834 +-.487828 +.584696 +-.645996 +.640303 +-.556975 +.431989 +-.342569 +.360580 +-.491253 +.644830 +-.672915 +.458256 +-.004891 +-.532464 +.909511 +-.918381 +.508095 +.174444 +-.852971 +1.262977 +-1.283098 +.981105 +-.555103 +.214436 +-.076333 +.133017 +-.293571 +.459123 +-.578089 +.652571 +-.706192 +.748578 +-.767012 +.745213 +-.681711 +.582050 +-.431146 +.183677 +.196343 +-.664901 +1.062480 +-1.173181 +.865185 +-.217261 +-.479900 +.878112 +-.790915 +.323402 +.189893 +-.403618 +.185474 +.312708 +-.781616 +.978777 +-.882949 +.671595 +-.554448 +.602594 +-.705554 +.679627 +-.430639 +.039356 +.292221 +-.383965 +.199260 +.138043 +-.429855 +.522440 +-.379190 +.075996 +.257599 +-.504003 +.596547 +-.527501 +.338700 +-.105386 +-.087240 +.176908 +-.156807 +.084569 +-.052066 +.127173 +-.306717 +.517767 +-.669264 +.714374 +-.673416 +.600186 +-.523129 +.415021 +-.220157 +-.081489 +.427256 +-.685573 +.728611 +-.516712 +.135937 +.239949 +-.441226 +.390543 +-.134354 +-.196638 +.466107 +-.597411 +.590696 +-.494481 +.362705 +-.228291 +.103231 +.006882 +-.091209 +.133030 +-.117004 +.037794 +.093914 +-.248816 +.383068 +-.452328 +.433986 +-.345821 +.245902 +-.206767 +.274816 +-.438039 +.623019 +-.726975 +.671974 +-.455633 +.170340 +.027633 +.005590 +-.313641 +.792480 +-1.222448 +1.374395 +-1.134694 +.574730 +.081104 +-.574611 +.753638 +-.652267 +.462885 +-.413284 +.619064 +-1.004308 +1.348361 +-1.435006 +1.202971 +-.785351 +.404459 +-.202938 +.150220 +-.103319 +-.031795 +.185307 +-.166074 +-.165676 +.743386 +-1.298459 +1.534629 +-1.340040 +.869760 +-.433163 +.271194 +-.389714 +.566987 +-.523013 +.125250 +.512131 +-1.097710 +1.347696 +-1.160165 +.666990 +-.135977 +-.205654 +.308088 +-.308717 +.415242 +-.746378 +1.238170 +-1.675673 +1.824798 +-1.577789 +1.022524 +-.395544 +-.051676 +.195515 +-.108728 +.011249 +-.126561 +.526768 +-1.064987 +1.447003 +-1.407959 +.886752 +-.083960 +-.641763 +.979358 +-.844802 +.419599 +-.024861 +-.085804 +-.120933 +.455371 +-.645176 +.517666 +-.102240 +-.404721 +.771930 +-.861522 +.672903 +-.297177 +-.156068 +.594395 +-.930982 +1.072554 +-.953386 +.603035 +-.179388 +-.092401 +.056950 +.255301 +-.630932 +.806306 +-.636816 +.179102 +.366723 +-.797466 +1.017779 +-1.050460 +.967356 +-.820502 +.631013 +-.424967 +.259557 +-.201311 +.275473 +-.438430 +.603536 +-.697820 +.699874 +-.631016 +.520163 +-.384457 +.243632 +-.142331 +.141261 +-.269827 +.480797 +-.658466 +.689624 +-.547587 +.318433 +-.141698 +.108603 +-.197935 +.299799 +-.306285 +.196430 +-.051603 +-.005523 +-.102212 +.357111 +-.664072 +.913615 +-1.041572 +1.046905 +-.965332 +.828645 +-.644908 +.412300 +-.148760 +-.093780 +.247661 +-.269971 +.175756 +-.038300 +-.046347 +.011751 +.139493 +-.331583 +.451699 +-.409019 +.186042 +.147044 +-.464101 +.644315 +-.628962 +.445148 +-.187609 +-.028076 +.117112 +-.059935 +-.093498 +.251884 +-.332596 +.310738 +-.238502 +.217012 +-.329658 +.575171 +-.847383 +.983215 +-.854891 +.448561 +.121661 +-.671055 +1.032291 +-1.118218 +.931563 +-.534997 +.016319 +.528208 +-.997560 +1.294585 +-1.348901 +1.143957 +-.731160 +.222488 +.234115 +-.490326 +.443336 +-.087539 +-.450617 +.933474 +-1.109870 +.856816 +-.278703 +-.320377 +.600219 +-.392581 +-.184795 +.792775 +-1.078590 +.891658 +-.367557 +-.170034 +.419394 +-.285533 +-.074787 +.368568 +-.361877 +.027602 +.447756 +-.797460 +.854092 +-.652135 +.386385 +-.263234 +.356589 +-.571508 +.732772 +-.721256 +.551333 +-.337750 +.191116 +-.133482 +.100760 +-.020266 +-.110220 +.212712 +-.196796 +.045362 +.156907 +-.279767 +.245301 +-.089101 +-.066183 +.106616 +-.018100 +-.099877 +.111920 +.042397 +-.292237 +.480326 +-.476043 +.267466 +.038760 +-.303746 +.453076 +-.506319 +.527063 +-.550350 +.554454 +-.491745 +.336695 +-.102712 +-.177327 +.471471 +-.741389 +.922324 +-.932410 +.727225 +-.359755 +-.019123 +.242438 +-.236658 +.068406 +.116297 +-.211929 +.230169 +-.269737 +.411203 +-.632897 +.818556 +-.842745 +.658198 +-.321148 +-.048441 +.329080 +-.443449 +.378552 +-.186632 +-.034900 +.189858 +-.241721 +.243057 +-.300854 +.489682 +-.775479 +1.016128 +-1.049015 +.804122 +-.356813 +-.119902 +.464739 +-.615523 +.614713 +-.542809 +.443619 +-.302211 +.084996 +.200063 +-.477742 +.636300 +-.592952 +.348453 +.006047 +-.335112 +.530783 +-.567323 +.505148 +-.441857 +.442728 +-.497977 +.536392 +-.483381 +.318797 +-.090035 +-.127046 +.284581 +-.387944 +.469767 +-.538374 +.550338 +-.436701 +.164894 +.215338 +-.582548 +.805996 +-.813474 +.617976 +-.294293 +-.063946 +.369873 +-.544877 +.521180 +-.269659 +-.156295 +.605494 +-.879584 +.838066 +-.491470 +.007104 +.392474 +-.577084 +.597030 +-.640121 +.879739 +-1.321149 +1.763558 +-1.917622 +1.605307 +-.902033 +.112808 +.412062 +-.499753 +.260543 +.000308 +-.002730 +-.313787 +.758592 +-1.037474 +.964641 +-.583793 +.119072 +.193622 +-.261680 +.166991 +-.066193 +.052666 +-.093591 +.085478 +.028234 +-.183966 +.235883 +-.076959 +-.256931 +.589113 +-.715029 +.542159 +-.151910 +-.260258 +.517093 +-.565195 +.481930 +-.389860 +.350917 +-.321095 +.196385 +.086565 +-.470610 +.781732 +-.822329 +.498922 +.100423 +-.736432 +1.144497 +-1.177553 +.874759 +-.416890 +.008950 +.224910 +-.271494 +.186376 +-.033402 +-.142627 +.303418 +-.397961 +.371256 +-.199713 +-.080380 +.384612 +-.630324 +.785291 +-.872267 +.924094 +-.930613 +.831938 +-.574432 +.186338 +.197824 +-.400846 +.318612 +-.002565 +-.359623 +.558760 +-.495273 +.232978 +.061189 +-.244282 +.294561 +-.306064 +.388200 +-.554701 +.698708 +-.682351 +.470628 +-.190903 +.051240 +-.168513 +.446486 +-.619252 +.447666 +.076257 +-.682754 +.986687 +-.746822 +.032943 +.819861 +-1.430199 +1.601105 +-1.406376 +1.093451 +-.894457 +.884043 +-.966489 +.973433 +-.786561 +.404715 +.070410 +-.500904 +.780784 +-.869650 +.785988 +-.578607 +.302014 +-.011123 +-.231001 +.353704 +-.304735 +.093983 +.178901 +-.349406 +.271373 +.082535 +-.571591 +.939897 +-.961386 +.596174 +-.049579 +-.328790 +.264182 +.244481 +-.893598 +1.256184 +-1.066328 +.408357 +.333678 +-.739943 +.644503 +-.239399 +-.081504 +.017250 +.429444 +-.975293 +1.279170 +-1.182942 +.790900 +-.349263 +.042600 +.127054 +-.297638 +.596982 +-1.016283 +1.403607 +-1.570078 +1.418879 +-1.003080 +.484550 +-.039302 +-.220412 +.268987 +-.147325 +-.065253 +.269418 +-.365012 +.286745 +-.047054 +-.248088 +.439217 +-.398620 +.109492 +.317009 +-.704642 +.917838 +-.942138 +.884728 +-.892227 +1.039486 +-1.266476 +1.412328 +-1.328201 +.990279 +-.526580 +.131144 +.075091 +-.131132 +.200092 +-.434227 +.842984 +-1.267725 +1.486807 +-1.375466 +1.001643 +-.584658 +.343675 +-.344882 +.458390 +-.457222 +.186782 +.318442 +-.854283 +1.184754 +-1.195496 +.954817 +-.649206 +.452203 +-.423712 +.500173 +-.563464 +.527689 +-.386045 +.199671 +-.047235 +-.029588 +.055340 +-.108244 +.267085 +-.541176 +.827947 +-.941077 +.715631 +-.137602 +-.592800 +1.131192 +-1.174501 +.654070 +.196114 +-.955824 +1.255439 +-.984026 +.338441 +.309441 +-.632625 +.518479 +-.097479 +-.363495 +.624071 +-.593194 +.351466 +-.072777 +-.099448 +.140831 +-.140958 +.210442 +-.373363 +.534693 +-.553950 +.366431 +-.047867 +-.235360 +.349883 +-.287930 +.154288 +-.067433 +.066396 +-.100643 +.099684 +-.049625 +.005946 +-.036481 +.152300 +-.290223 +.360407 +-.314305 +.174789 +-.008670 +-.126361 +.210641 +-.247277 +.229306 +-.132349 +-.051772 +.272765 +-.420103 +.381625 +-.126843 +-.250682 +.574596 +-.690730 +.564468 +-.299704 +.063945 +.027382 +.015773 +-.078001 +.033452 +.155994 +-.410697 +.588580 +-.581740 +.384892 +-.093447 +-.157950 +.269934 +-.221670 +.067310 +.101174 +-.200713 +.192863 +-.095752 +-.032531 +.130935 +-.171451 +.170920 +-.172133 +.211454 +-.299382 +.424887 +-.570083 +.714338 +-.823432 +.840847 +-.701415 +.368562 +.127648 +-.679308 +1.130396 +-1.337393 +1.232716 +-.858160 +.347636 +.136230 +-.477847 +.652308 +-.711247 +.725318 +-.729276 +.709936 +-.639349 +.516015 +-.372669 +.242367 +-.116681 +-.059282 +.341511 +-.723887 +1.112189 +-1.365362 +1.382046 +-1.170773 +.850665 +-.579469 +.460023 +-.490636 +.589295 +-.663962 +.671532 +-.625278 +.558579 +-.485813 +.393851 +-.262195 +.084371 +.128959 +-.358249 +.574983 +-.730152 +.753200 +-.583117 +.220894 +.238128 +-.629773 +.798572 +-.678981 +.329568 +.094666 +-.407475 +.460399 +-.197181 +-.313873 +.884317 +-1.264595 +1.251707 +-.796271 +.040467 +.747436 +-1.306888 +1.504764 +-1.372095 +1.050466 +-.697221 +.411153 +-.210804 +.058669 +.095863 +-.280922 +.486308 +-.668308 +.767736 +-.732954 +.542389 +-.224265 +-.132728 +.391526 +-.414068 +.134996 +.377008 +-.920700 +1.247958 +-1.197514 +.796021 +-.254103 +-.150464 +.234040 +-.009538 +-.335571 +.568644 +-.559178 +.345278 +-.082191 +-.079176 +.088590 +-.000591 +-.101137 +.182407 +-.268828 +.385890 +-.497759 +.516998 +-.386957 +.159729 +.016202 +-.005015 +-.200274 +.462733 +-.610737 +.579797 +-.460691 +.411156 +-.513520 +.709808 +-.870029 +.922348 +-.916211 +.956948 +-1.075711 +1.162487 +-1.034655 +.590207 +.080894 +-.721112 +1.051775 +-.939286 +.473218 +.083611 +-.433718 +.392823 +.024744 +-.619350 +1.111110 +-1.289300 +1.129395 +-.806238 +.582416 +-.630068 +.898781 +-1.126289 +.999208 +-.367387 +-.628527 +1.605617 +-2.139401 +1.996750 +-1.263662 +.298598 +.454790 +-.688092 +.367209 +.272162 +-.859981 +1.084494 +-.845896 +.296341 +.252938 +-.508119 +.356127 +.079175 +-.521746 +.717289 +-.585942 +.257143 +.031460 +-.097498 +-.071109 +.321014 +-.444796 +.317029 +.033511 +-.454206 +.770412 +-.887238 +.827870 +-.693835 +.586267 +-.548457 +.564912 +-.601539 +.640339 +-.675237 +.681466 +-.602296 +.382424 +-.029613 +-.350551 +.589170 +-.547959 +.213230 +.276604 +-.694714 +.845893 +-.671044 +.274075 +.142313 +-.390337 +.391499 +-.201118 +-.040947 +.195181 +-.192922 +.062268 +.093901 +-.151419 +.028397 +.265111 +-.616233 +.852375 +-.828803 +.518321 +-.046238 +-.363885 +.514360 +-.356118 +.029158 +.213892 +-.158454 +-.241917 +.839875 +-1.386529 +1.675712 +-1.645910 +1.383364 +-1.041906 +.745090 +-.533003 +.374406 +-.220202 +.056074 +.079228 +-.118485 +.016993 +.204222 +-.456256 +.630372 +-.668203 +.603083 +-.536246 +.559854 +-.682772 +.817790 +-.843184 +.693853 +-.413686 +.130638 +.027249 +-.014985 +-.102604 +.195808 +-.154525 +-.042193 +.313235 +-.525537 +.574774 +-.447899 +.229956 +-.053000 +.019497 +-.146202 +.358878 +-.535754 +.571925 +-.430484 +.157833 +.141846 +-.361504 +.449195 +-.436025 +.410583 +-.449008 +.546761 +-.607339 +.506665 +-.190934 +-.268058 +.708183 +-.979820 +1.037242 +-.948868 +.823617 +-.719664 +.613577 +-.453189 +.243409 +-.082397 +.104140 +-.364374 +.762621 +-1.075112 +1.090184 +-.751385 +.198962 +.326129 +-.644562 +.743272 +-.745451 +.778987 +-.857579 +.873957 +-.707063 +.348092 +.064266 +-.331643 +.335839 +-.118388 +-.159010 +.334057 +-.344509 +.238423 +-.105104 +-.000139 +.073667 +-.123613 +.127430 +-.037670 +-.164981 +.422228 +-.604359 +.579752 +-.303480 +-.136613 +.550844 +-.739749 +.594469 +-.150651 +-.429435 +.932541 +-1.188074 +1.138065 +-.856760 +.513395 +-.291600 +.296761 +-.494898 +.722755 +-.778978 +.556862 +-.139401 +-.218504 +.233280 +.214264 +-.964992 +1.640781 +-1.857863 +1.460081 +-.612814 +-.307140 +.944782 +-1.157259 +1.038857 +-.790173 +.551750 +-.329318 +.047578 +.334325 +-.747972 +1.037555 +-1.055065 +.756935 +-.238081 +-.312085 +.699024 +-.804461 +.620069 +-.227833 +-.247692 +.682453 +-.974944 +1.055697 +-.901550 +.555229 +-.127789 +-.239880 +.449830 +-.507389 +.516557 +-.600550 +.799818 +-1.027877 +1.127842 +-.994031 +.667679 +-.329002 +.183187 +-.316889 +.626423 +-.870309 +.816455 +-.392754 +-.251674 +.813412 +-.994219 +.664943 +.058310 +-.869546 +1.430908 +-1.543600 +1.234454 +-.711468 +.223828 +.079570 +-.204294 +.254835 +-.326349 +.432442 +-.519755 +.542803 +-.523013 +.534926 +-.632652 +.786894 +-.893795 +.851401 +-.639942 +.341836 +-.090868 +-.006272 +-.074786 +.265922 +-.434904 +.440552 +-.203348 +-.233902 +.698676 +-.964757 +.885095 +-.498159 +.023808 +.263771 +-.208369 +-.126142 +.492230 +-.609911 +.337297 +.240781 +-.854232 +1.193079 +-1.075493 +.546916 +.144598 +-.683314 +.853317 +-.640801 +.214307 +.194649 +-.426627 +.460295 +-.382039 +.300777 +-.276325 +.303614 +-.345064 +.372889 +-.388450 +.411513 +-.455174 +.507350 +-.531653 +.487423 +-.357281 +.164841 +.031137 +-.166289 +.207269 +-.170575 +.108812 +-.073227 +.080714 +-.111126 +.135690 +-.150214 +.181676 +-.260201 +.380314 +-.485962 +.495044 +-.348131 +.049684 +.323306 +-.648648 +.809093 +-.743639 +.478169 +-.119730 +-.187021 +.322484 +-.242859 +-.007397 +.325619 +-.604141 +.777607 +-.841810 +.838546 +-.817456 +.797615 +-.751928 +.626021 +-.381750 +.037902 +.320692 +-.575070 +.628339 +-.454626 +.114798 +.267323 +-.555997 +.659560 +-.569141 +.363781 +-.176682 +.132858 +-.283326 +.568650 +-.835875 +.909025 +-.683568 +.195386 +.380546 +-.812363 +.934285 +-.737562 +.367939 +-.027865 +-.150371 +.170267 +-.130245 +.114510 +-.109964 +.021591 +.225078 +-.583448 +.879760 +-.917621 +.615586 +-.070870 +-.499637 +.892624 +-1.023964 +.937423 +-.731520 +.480839 +-.216133 +-.037950 +.222935 +-.255791 +.085888 +.251259 +-.633418 +.909860 +-.976560 +.818335 +-.498936 +.119370 +.221914 +-.449744 +.519886 +-.426371 +.209149 +.049930 +-.252211 +.320225 +-.227686 +.005400 +.275529 +-.529254 +.678706 +-.677472 +.531128 +-.307718 +.118432 +-.063847 +.172314 +-.375330 +.546147 +-.580449 +.462220 +-.267175 +.103564 +-.035840 +.044634 +-.046052 +-.047637 +.265731 +-.551196 +.782445 +-.835595 +.656857 +-.303838 +-.073462 +.308997 +-.312407 +.118511 +.139630 +-.316982 +.342924 +-.248159 +.117080 +-.008131 +-.090506 +.232289 +-.435551 +.628396 +-.672003 +.455696 +.006084 +-.554153 +.967716 +-1.097051 +.954152 +-.697603 +.522232 +-.529701 +.667643 +-.776227 +.706216 +-.425355 +.040846 +.270332 +-.366619 +.208192 +.147153 +-.590115 +.997366 +-1.243461 +1.216857 +-.870687 +.288131 +.306380 +-.639853 +.551914 +-.112794 +-.402488 +.681055 +-.566757 +.144952 +.335952 +-.637701 +.671041 +-.513955 +.321762 +-.214422 +.220521 +-.296023 +.377575 +-.421692 +.411746 +-.348244 +.243389 +-.124209 +.033544 +-.019568 +.115058 +-.316436 +.574101 +-.802086 +.908983 +-.840132 +.609396 +-.298232 +.018068 +.142071 +-.150074 +.029760 +.165555 +-.379917 +.566331 +-.687132 +.716606 +-.650911 +.516882 +-.367873 +.264311 +-.248535 +.326752 +-.466381 +.608808 +-.692154 +.674820 +-.550481 +.347511 +-.113927 +-.103560 +.275590 +-.395282 +.473057 +-.524354 +.553172 +-.537018 +.425155 +-.163046 +-.259030 +.761647 +-1.179476 +1.333161 +-1.138974 +.681183 +-.183242 +-.118400 +.116834 +.107203 +-.353329 +.444880 +-.343687 +.159539 +-.057649 +.137452 +-.366759 +.608072 +-.710526 +.604663 +-.344775 +.080877 +.019002 +.144641 +-.546675 +1.037451 +-1.404012 +1.471127 +-1.195478 +.698002 +-.206430 +-.065662 +.032185 +.229213 +-.535098 +.704106 +-.646425 +.390909 +-.050467 +-.243816 +.404742 +-.420386 +.340957 +-.227560 +.096254 +.096738 +-.406518 +.820454 +-1.220350 +1.436267 +-1.365937 +1.065628 +-.726501 +.541861 +-.566992 +.688989 +-.735401 +.632408 +-.477465 +.461499 +-.700276 +1.110424 +-1.432276 +1.388648 +-.869403 +.014048 +.862434 +-1.450600 +1.616216 +-1.452546 +1.189332 +-1.028876 +1.025791 +-1.089695 +1.093555 +-.990279 +.839470 +-.729127 +.672301 +-.581552 +.352223 +.017972 +-.387828 +.559881 +-.432555 +.090784 +.244417 +-.369685 +.234436 +.044443 +-.287027 +.379873 +-.330111 +.219072 +-.113922 +.017323 +.113027 +-.305826 +.535143 +-.727395 +.805284 +-.733058 +.534872 +-.277296 +.027632 +.188655 +-.403848 +.678984 +-1.039957 +1.421427 +-1.671444 +1.634510 +-1.267754 +.702714 +-.189614 +-.055417 +-.002393 +.186632 +-.230580 +-.030640 +.534529 +-1.026074 +1.231405 +-1.047358 +.614039 +-.223272 +.131204 +-.404459 +.894468 +-1.341512 +1.528298 +-1.387611 +1.014453 +-.595170 +.303376 +-.215460 +.280859 +-.359221 +.307483 +-.071212 +-.276581 +.579311 +-.697689 +.597977 +-.365975 +.143438 +-.042910 +.105091 +-.315271 +.639773 +-1.034023 +1.416736 +-1.653901 +1.598419 +-1.180930 +.488725 +.239690 +-.724767 +.802950 +-.529638 +.154500 +.025297 +.152211 +-.609738 +1.075493 +-1.254724 +1.022357 +-.509961 +.022679 +.165122 +.002425 +-.327202 +.505762 +-.356694 +-.043532 +.421903 +-.520429 +.291301 +.077693 +-.322049 +.307307 +-.112292 +-.071774 +.125677 +-.100430 +.142820 +-.324594 +.544016 +-.603461 +.399729 +-.049123 +-.182087 +.097178 +.248947 +-.571615 +.577373 +-.207165 +-.298524 +.568933 +-.374967 +-.204482 +.841166 +-1.184376 +1.080637 +-.634959 +.095995 +.323911 +-.557059 +.661923 +-.727872 +.795273 +-.842871 +.826040 +-.718302 +.527507 +-.290193 +.058699 +.115425 +-.203594 +.219537 +-.217870 +.263906 +-.390638 +.572012 +-.730993 +.775896 +-.643662 +.329837 +.104444 +-.550534 +.890352 +-1.041957 +.992702 +-.802855 +.576521 +-.413117 +.361853 +-.399058 +.440078 +-.384513 +.178662 +.137904 +-.436093 +.562534 +-.433980 +.098361 +.286572 +-.549414 +.610054 +-.518414 +.403177 +-.376943 +.473719 +-.657581 +.876964 +-1.105673 +1.336597 +-1.547170 +1.681360 +-1.670842 +1.476417 +-1.115154 +.657933 +-.209290 +-.117419 +.233243 +-.120655 +-.127425 +.323795 +-.282915 +-.048757 +.527790 +-.886555 +.910360 +-.589894 +.127526 +.209692 +-.273495 +.113123 +.097228 +-.204798 +.175696 +-.081559 +.013918 +-.012168 +.057040 +-.111802 +.157049 +-.184987 +.168835 +-.050747 +-.224367 +.647802 +-1.111846 +1.445241 +-1.512484 +1.312294 +-.995712 +.774576 +-.774576 +.937295 +-1.048806 +.883187 +-.365283 +-.357716 +.984789 +-1.227870 +.976983 +-.368294 +-.283112 +.650112 +-.569186 +.126251 +.399308 +-.702544 +.633597 +-.280262 +-.096718 +.231313 +-.014654 +-.446176 +.899875 +-1.098797 +.931531 +-.469647 +-.083875 +.504933 +-.655393 +.536443 +-.268999 +.017788 +.098817 +-.065266 +-.036700 +.088016 +-.007403 +-.203520 +.467644 +-.681353 +.771676 +-.728284 +.595030 +-.429629 +.259264 +-.065897 +-.183628 +.482004 +-.749496 +.865215 +-.750372 +.439545 +-.072454 +-.199031 +.320031 +-.368848 +.489420 +-.773900 +1.186042 +-1.576903 +1.770854 +-1.657674 +1.239756 +-.625121 +-.016098 +.511305 +-.745067 +.699304 +-.452745 +.135618 +.134946 +-.297336 +.343422 +-.287571 +.144757 +.061235 +-.275421 +.412053 +-.395067 +.213829 +.054220 +-.280990 +.362717 +-.276385 +.076515 +.156723 +-.366908 +.527659 +-.613956 +.585606 +-.416017 +.146361 +.094049 +-.142553 +-.089627 +.534854 +-.982741 +1.195627 +-1.055119 +.638917 +-.171278 +-.122927 +.160367 +-.038110 +-.054832 +-.017120 +.245519 +-.505690 +.667780 +-.691126 +.625475 +-.532786 +.415468 +-.225160 +-.058255 +.362041 +-.545307 +.503789 +-.263781 +-.023322 +.188465 +-.165943 +.028079 +.089971 +-.105661 +.048592 +-.023624 +.120098 +-.344286 +.618832 +-.833962 +.904522 +-.801576 +.557607 +-.256141 +.006345 +.101411 +-.046310 +-.100771 +.213123 +-.189105 +.021132 +.203849 +-.374514 +.437262 +-.421039 +.388263 +-.361602 +.295241 +-.114432 +-.213976 +.639731 +-1.045596 +1.304044 +-1.334299 +1.132662 +-.772618 +.382147 +-.103820 +.043295 +-.220509 +.547175 +-.850092 +.941736 +-.713447 +.206881 +.381309 +-.780010 +.780516 +-.357012 +-.305537 +.902724 +-1.171598 +1.024748 +-.579731 +.076852 +.254265 +-.300720 +.099172 +.202155 +-.421933 +.430138 +-.208329 +-.139771 +.440010 +-.543947 +.416681 +-.157433 +-.066270 +.127663 +-.014575 +-.183159 +.355549 +-.452191 +.498269 +-.545128 +.609670 +-.658111 +.641331 +-.541378 +.385020 +-.218475 +.074925 +.033438 +-.098296 +.101429 +-.028166 +-.100052 +.209697 +-.206007 +.042020 +.224138 +-.439160 +.443854 +-.188898 +-.210058 +.531602 +-.593456 +.382227 +-.070690 +-.096585 +-.028289 +.390966 +-.763683 +.887599 +-.636121 +.099934 +.453705 +-.722728 +.535513 +.048561 +-.760520 +1.259585 +-1.315779 +.933882 +-.341910 +-.151277 +.339377 +-.223829 +-.024048 +.207055 +-.240687 +.186435 +-.167086 +.243384 +-.355624 +.372466 +-.200636 +-.135332 +.501878 +-.740503 +.761844 +-.589337 +.336104 +-.140904 +.101539 +-.233195 +.462682 +-.659324 +.693999 +-.505267 +.139813 +.260177 +-.524032 +.540824 +-.317748 +-.026415 +.327840 +-.462646 +.401880 +-.212667 +.015245 +.074611 +.006984 +-.247659 +.560969 +-.816356 +.892326 +-.734927 +.391619 +.004169 +-.297295 +.391789 +-.300962 +.134360 +-.028216 +.062496 +-.217330 +.395174 +-.490409 +.456864 +-.327521 +.176723 +-.057331 +-.038054 +.162636 +-.359218 +.605807 +-.806557 +.839977 +-.634548 +.221538 +.271379 +-.683395 +.901145 +-.907487 +.771602 +-.592055 +.433661 +-.299185 +.150165 +.044288 +-.269373 +.464524 +-.558450 +.511472 +-.336140 +.087031 +.169066 +-.381905 +.531412 +-.621019 +.655676 +-.619404 +.473427 +-.187967 +-.205553 +.584616 +-.770481 +.628047 +-.171833 +-.406113 +.827059 +-.890010 +.600228 +-.168913 +-.120550 +.088454 +.241413 +-.675830 +.980598 +-1.007804 +.746616 +-.292002 +-.219485 +.656070 +-.907797 +.896740 +-.600722 +.081773 +.512259 +-.994138 +1.217730 +-1.146697 +.868008 +-.540204 +.307900 +-.231947 +.270547 +-.314329 +.252040 +-.034348 +-.292838 +.603831 +-.757051 +.679520 +-.421137 +.134729 +.016475 +.035403 +-.222123 +.396987 +-.445702 +.360968 +-.224004 +.119024 +-.064002 +.019852 +.039233 +-.073452 +.005324 +.190575 +-.422067 +.512814 +-.324478 +-.126471 +.658585 +-1.041671 +1.155456 +-1.066871 +.961460 +-.979489 +1.086900 +-1.090440 +.795684 +-.189312 +-.503020 +.944868 +-.920598 +.498209 +.007272 +-.252429 +.105932 +.270892 +-.563529 +.552346 +-.273774 +-.028555 +.116223 +.043900 +-.253577 +.249248 +.074605 +-.562030 +.891661 +-.798578 +.258114 +.495378 +-1.117008 +1.355720 +-1.179661 +.759140 +-.344062 +.127849 +-.170680 +.398554 +-.651781 +.754965 +-.594040 +.182700 +.319980 +-.677034 +.710496 +-.422204 +-.002264 +.327419 +-.441637 +.424541 +-.445023 +.579341 +-.719497 +.666555 +-.332918 +-.133014 +.427730 +-.326624 +-.123113 +.619347 +-.827241 +.629910 +-.208288 +-.107783 +.090542 +.233688 +-.640503 +.906602 +-.978470 +.978288 +-1.061718 +1.265996 +-1.482101 +1.565241 +-1.473520 +1.304885 +-1.200482 +1.205185 +-1.213799 +1.053697 +-.634354 +.037883 +.524041 +-.850340 +.876708 +-.695770 +.469290 +-.313706 +.249139 +-.236359 +.246680 +-.288525 +.368207 +-.438442 +.408312 +-.226764 +-.034406 +.193474 +-.085309 +-.290974 +.733622 +-.957583 +.788081 +-.278800 +-.334271 +.798268 +-.993703 +.962447 +-.817522 +.632116 +-.405773 +.122327 +.172236 +-.357895 +.317319 +-.041198 +-.328212 +.561312 +-.476237 +.053680 +.547557 +-1.083683 +1.364578 +-1.347118 +1.129428 +-.862428 +.649262 +-.502608 +.378910 +-.248291 +.135653 +-.098563 +.164891 +-.288808 +.368916 +-.318597 +.131077 +.116784 +-.327717 +.460921 +-.555419 +.677213 +-.835676 +.945482 +-.874905 +.549142 +-.028840 +-.499324 +.818356 +-.799350 +.466399 +.028380 +-.496263 +.808330 +-.939018 +.940395 +-.878875 +.788224 +-.671473 +.536699 +-.419069 +.356184 +-.334489 +.264074 +-.024095 +-.440975 +1.048106 +-1.593150 +1.859231 +-1.743845 +1.315218 +-.761191 +.272920 +.053093 +-.233589 +.341162 +-.426890 +.483304 +-.468053 +.359024 +-.190154 +.036595 +.038943 +-.034178 +.007452 +-.027085 +.109639 +-.199945 +.212378 +-.100733 +-.101669 +.304064 +-.420228 +.416458 +-.311238 +.141028 +.065558 +-.281777 +.461812 +-.540180 +.463549 +-.231805 +-.087217 +.382248 +-.545316 +.511490 +-.276672 +-.105287 +.537933 +-.906507 +1.109792 +-1.092792 +.865662 +-.497482 +.085556 +.284444 +-.566441 +.757054 +-.876502 +.941825 +-.948820 +.871531 +-.679231 +.363936 +.034040 +-.419689 +.671911 +-.704964 +.531099 +-.275428 +.114800 +-.168253 +.415054 +-.708425 +.883062 +-.876434 +.766800 +-.696041 +.741046 +-.841571 +.846957 +-.646672 +.279433 +.070237 +-.193319 +.009838 +.359680 +-.662567 +.679836 +-.375691 +-.073140 +.388450 +-.364726 +-.009489 +.556158 +-1.022104 +1.219751 +-1.107271 +.775378 +-.371155 +.019761 +.211905 +-.306204 +.269216 +-.118573 +-.109494 +.352503 +-.533480 +.592335 +-.513439 +.326323 +-.078696 +-.193374 +.470819 +-.727968 +.904608 +-.907490 +.654749 +-.142537 +-.512644 +1.096672 +-1.389518 +1.280702 +-.835753 +.263363 +.204089 +-.440993 +.481709 +-.462536 +.499559 +-.596201 +.648553 +-.539852 +.246524 +.128942 +-.424118 +.529015 +-.454241 +.300243 +-.155831 +.016846 +.197908 +-.541453 +.937810 +-1.187136 +1.093409 +-.623064 +-.034501 +.562736 +-.708124 +.429095 +.098163 +-.611649 +.931981 +-1.050386 +1.087895 +-1.171235 +1.323277 +-1.445542 +1.399649 +-1.124176 +.699236 +-.307701 +.113617 +-.140039 +.235917 +-.167384 +-.217795 +.862059 +-1.500884 +1.807121 +-1.589761 +.918980 +-.096824 +-.507306 +.654183 +-.350303 +-.176186 +.614784 +-.743704 +.540249 +-.173538 +-.112935 +.159110 +.011894 +-.218817 +.257893 +-.053950 +-.283478 +.540964 +-.555065 +.319223 +.034843 +-.354002 +.573219 +-.727711 +.870339 +-.982553 +.967815 +-.736229 +.302530 +.194175 +-.571055 +.716797 +-.648475 +.470118 +-.277540 +.094214 +.112520 +-.359328 +.592404 +-.705358 +.619425 +-.359412 +.058975 +.116921 +-.078936 +-.127938 +.356887 +-.459162 +.379968 +-.184788 +.002120 +.070746 +-.030215 +-.045479 +.067553 +-.009740 +-.072730 +.089127 +.015822 +-.221799 +.448391 +-.604320 +.627672 +-.496311 +.222820 +.143953 +-.513529 +.771873 +-.836168 +.715950 +-.523752 +.407856 +-.445988 +.580437 +-.650621 +.505535 +-.117186 +-.384424 +.779118 +-.883488 +.659056 +-.237047 +-.153784 +.312472 +-.170301 +-.185587 +.576786 +-.838513 +.898707 +-.791738 +.614871 +-.465841 +.398885 +-.414550 +.477292 +-.543497 +.581114 +-.569681 +.485897 +-.296316 +-.022267 +.439908 +-.844876 +1.071553 +-.989480 +.602055 +-.078091 +-.324347 +.406029 +-.151168 +-.258167 +.551580 +-.533194 +.193823 +.293129 +-.679925 +.784391 +-.580506 +.197937 +.156852 +-.308642 +.195122 +.112502 +-.451702 +.648464 +-.597247 +.309069 +.090769 +-.417203 +.514599 +-.342721 +.009963 +.276881 +-.329115 +.091279 +.321563 +-.692145 +.829166 +-.669801 +.296175 +.129787 +-.458393 +.616742 +-.626155 +.582786 +-.613959 +.814157 +-1.172657 +1.531821 +-1.627670 +1.227277 +-.301257 +-.887405 +1.870897 +-2.220026 +1.800018 +-.861099 +-.112366 +.700690 +-.791383 +.601369 +-.476473 +.626760 +-.990800 +1.311815 +-1.347309 +1.046684 +-.574751 +.183179 +-.037147 +.118769 +-.260685 +.272240 +-.069551 +-.268283 +.543614 +-.555273 +.221254 +.355576 +-.917463 +1.170099 +-.935983 +.262319 +.580944 +-1.221012 +1.360304 +-.918893 +.069141 +.847610 +-1.473523 +1.583371 +-1.170311 +.439101 +.288182 +-.715646 +.703820 +-.323274 +-.196012 +.590935 +-.695758 +.507267 +-.158287 +-.172640 +.355540 +-.354878 +.211243 +.013418 +-.277623 +.557085 +-.808118 +.946057 +-.878130 +.578917 +-.146655 +-.220206 +.327428 +-.104054 +-.347952 +.808449 +-1.058382 +.984082 +-.609479 +.058049 +.509106 +-.936502 +1.095704 +-.913502 +.422082 +.201207 +-.667387 +.710621 +-.263321 +-.455571 +1.035126 +-1.117521 +.632867 +.150632 +-.806551 +1.031019 +-.818455 +.414297 +-.102945 +.008983 +-.056771 +.089069 +-.019309 +-.113983 +.217791 +-.255188 +.286005 +-.402933 +.626995 +-.861782 +.953655 +-.811340 +.486332 +-.144919 +-.048147 +.041884 +.083257 +-.202329 +.257419 +-.292462 +.379765 +-.510390 +.561195 +-.387687 +-.028018 +.510429 +-.785625 +.681058 +-.271609 +-.157960 +.318105 +-.130196 +-.219811 +.433587 +-.334605 +-.004690 +.339747 +-.460473 +.350524 +-.172243 +.104460 +-.181969 +.272314 +-.198216 +-.108156 +.548505 +-.934830 +1.123622 +-1.099039 +.952126 +-.791189 +.661101 +-.527305 +.323765 +-.021756 +-.329848 +.617470 +-.720794 +.582059 +-.246050 +-.154919 +.464873 +-.579475 +.485748 +-.243311 +-.072448 +.415975 +-.766311 +1.079204 +-1.250098 +1.144181 +-.696813 +.017003 +.603315 +-.820359 +.451541 +.372532 +-1.243583 +1.704625 +-1.531255 +.869251 +-.124495 +-.320284 +.356580 +-.188065 +.136267 +-.369924 +.766723 +-1.008948 +.834513 +-.249024 +-.461719 +.927534 +-.950728 +.634813 +-.293613 +.212864 +-.442772 +.770302 +-.883739 +.602475 +-.005494 +-.626658 +1.005103 +-1.019210 +.788379 +-.551950 +.483825 +-.568173 +.624304 +-.459278 +.031740 +.497521 +-.869167 +.906483 +-.638983 +.277763 +-.066116 +.121226 +-.381256 +.681520 +-.883193 +.949771 +-.926652 +.867838 +-.789031 +.684491 +-.572566 +.507171 +-.534037 +.636083 +-.731467 +.737994 +-.647131 +.531927 +-.470163 +.448370 +-.342691 +.014691 +.542496 +-1.130957 +1.429007 +-1.192116 +.438731 +.517332 +-1.226123 +1.358262 +-.896331 +.140865 +.470023 +-.613148 +.253723 +.355814 +-.840403 +.926637 +-.594875 +.073878 +.312377 +-.348485 +.055062 +.336602 +-.540264 +.395568 +.041262 +-.543819 +.853344 +-.812762 +.424335 +.176138 +-.785246 +1.195120 +-1.244107 +.868893 +-.155246 +-.649769 +1.208526 +-1.242858 +.689290 +.244410 +-1.173369 +1.731083 +-1.745306 +1.290772 +-.605724 +-.052815 +.519046 +-.745964 +.767870 +-.645483 +.430818 +-.161104 +-.127059 +.380597 +-.527620 +.502152 +-.289377 +-.039187 +.337914 +-.456471 +.330242 +-.027189 +-.290929 +.473653 +-.479653 +.393568 +-.348447 +.414711 +-.545381 +.622697 +-.567896 +.420449 +-.314350 +.363096 +-.544696 +.686849 +-.578047 +.129176 +.536529 +-1.140491 +1.418834 +-1.286731 +.882010 +-.463821 +.244994 +-.275972 +.447836 +-.591036 +.587364 +-.422788 +.165198 +.097214 +-.308148 +.459049 +-.571055 +.662981 +-.727848 +.732754 +-.643570 +.459043 +-.228849 +.036626 +.046792 +-.010565 +-.082454 +.127794 +-.038358 +-.204346 +.534729 +-.829444 +.962831 +-.867647 +.574423 +-.207115 +-.069787 +.130045 +.052198 +-.393189 +.745952 +-.972223 +.999944 +-.844257 +.592818 +-.366365 +.266425 +-.326245 +.489369 +-.635665 +.647894 +-.479557 +.178348 +.148727 +-.398176 +.513335 +-.485176 +.327771 +-.061757 +-.278905 +.633779 +-.921945 +1.072894 +-1.060743 +.914116 +-.694059 +.457597 +-.233314 +.022595 +.178319 +-.352211 +.448710 +-.398232 +.153124 +.262419 +-.728057 +1.059735 +-1.096395 +.793857 +-.262133 +-.284287 +.633111 +-.669559 +.408730 +.035367 +-.506927 +.858414 +-.987024 +.864309 +-.551732 +.182300 +.097889 +-.201232 +.137938 +.002279 +-.110462 +.118194 +-.023187 +-.123967 +.253261 +-.307602 +.263479 +-.139076 +-.008854 +.101321 +-.068647 +-.109004 +.372639 +-.595232 +.644610 +-.471686 +.162581 +.098761 +-.149194 +-.033140 +.303418 +-.451022 +.356789 +-.085310 +-.160291 +.185205 +.062208 +-.464062 +.820413 +-.973511 +.881584 +-.610764 +.275749 +.021457 +-.227232 +.344375 +-.417161 +.495202 +-.587912 +.639433 +-.555100 +.276615 +.143326 +-.531277 +.673729 +-.445252 +-.100045 +.739210 +-1.191064 +1.260005 +-.928353 +.348637 +.250975 +-.687648 +.901270 +-.949685 +.933834 +-.909579 +.851657 +-.697626 +.437545 +-.170975 +.068988 +-.251196 +.665536 +-1.075466 +1.188262 +-.849961 +.169127 +.527993 +-.889455 +.748530 +-.213571 +-.413668 +.822740 +-.856372 +.561795 +-.130217 +-.213025 +.302866 +-.085286 +-.372803 +.907520 +-1.315853 +1.439379 +-1.242903 +.841592 +-.447371 +.252242 +-.313554 +.516181 +-.644911 +.528422 +-.163684 +-.264492 +.487682 +-.318782 +-.225725 +.922100 +-1.455363 +1.585401 +-1.267924 +.665229 +-.045562 +-.367626 +.508748 +-.482162 +.473105 +-.619920 +.930330 +-1.288793 +1.538551 +-1.576051 +1.398451 +-1.086715 +.750336 +-.475283 +.300100 +-.217965 +.190153 +-.162971 +.091201 +.032036 +-.155600 +.187214 +-.053977 +-.226235 +.520181 +-.636640 +.440001 +.055834 +-.680229 +1.190468 +-1.389554 +1.206768 +-.710970 +.073905 +.485989 +-.767909 +.661288 +-.209154 +-.381136 +.815581 +-.861341 +.483399 +.123430 +-.641757 +.818774 +-.614421 +.214816 +.096311 +-.120493 +-.137275 +.485903 +-.679419 +.570360 +-.189817 +-.282898 +.627058 +-.693650 +.469197 +-.072251 +-.304491 +.482109 +-.383703 +.084720 +.211873 +-.281854 +.018323 +.486043 +-.979674 +1.202077 +-1.046812 +.625323 +-.187865 +-.040879 +-.002952 +.202690 +-.358503 +.326272 +-.105805 +-.169961 +.326123 +-.254237 +-.026582 +.385392 +-.656150 +.727959 +-.597697 +.357871 +-.130399 +-.011024 +.080330 +-.154221 +.299209 +-.502161 +.658362 +-.635913 +.378764 +.025061 +-.370243 +.453586 +-.212643 +-.214342 +.558635 +-.582852 +.228550 +.349624 +-.884624 +1.163539 +-1.149835 +.986309 +-.883521 +.969281 +-1.195463 +1.361892 +-1.246334 +.764112 +-.055391 +-.565404 +.779843 +-.455869 +-.263084 +1.030363 +-1.484619 +1.435325 +-.937468 +.229544 +.404798 +-.761292 +.770731 +-.487491 +.044140 +.399866 +-.705703 +.795892 +-.678304 +.438296 +-.196430 +.049091 +-.024415 +.077131 +-.123667 +.094169 +.029409 +-.209111 +.377917 +-.477057 +.478526 +-.381023 +.188175 +.106154 +-.503926 +.963091 +-1.364590 +1.529627 +-1.303895 +.671458 +.180658 +-.914068 +1.202941 +-.920753 +.227744 +.509192 +-.922536 +.846951 +-.391184 +-.158734 +.529293 +-.611905 +.486514 +-.322055 +.241644 +-.251004 +.268479 +-.217274 +.100400 +-.001002 +.012350 +-.153948 +.338891 +-.419489 +.282426 +.070242 +-.509383 +.846531 +-.939375 +.769587 +-.445807 +.134364 +.035481 +-.031243 +-.089888 +.239107 +-.356249 +.428729 +-.464241 +.452480 +-.358759 +.160440 +.107230 +-.345094 +.442898 +-.357316 +.153065 +.030364 +-.066149 +-.081000 +.338572 +-.577305 +.686924 +-.626825 +.431411 +-.181456 +-.036446 +.168298 +-.219357 +.253686 +-.354050 +.554191 +-.789219 +.913815 +-.794331 +.418181 +.063995 +-.407394 +.417096 +-.072653 +-.451854 +.887783 +-1.029272 +.849285 +-.504727 +.230367 +-.191427 +.388722 +-.674394 +.861904 +-.851463 +.685743 +-.504167 +.437116 +-.518306 +.672435 +-.775965 +.740089 +-.558438 +.295834 +-.037611 +-.158481 +.277468 +-.329989 +.328957 +-.285260 +.223102 +-.189490 +.232528 +-.354589 +.482311 +-.495828 +.314270 +.023850 +-.360634 +.518521 +-.433655 +.215646 +-.075375 +.167570 +-.469227 +.791291 +-.916151 +.754124 +-.398846 +.045539 +.155969 +-.195087 +.173997 +-.195248 +.265187 +-.294556 +.190864 +.040969 +-.278410 +.359948 +-.199387 +-.151140 +.530258 +-.757346 +.719047 +-.409212 +-.077331 +.577028 +-.905952 +.926824 +-.622280 +.131628 +.295665 +-.429813 +.203910 +.229554 +-.580920 +.598085 +-.218375 +-.401866 +.989510 +-1.309299 +1.270204 +-.935173 +.456945 +.002355 +-.325965 +.463704 +-.430609 +.290419 +-.126366 +.006522 +.039298 +-.017169 +-.053602 +.160581 +-.295321 +.430123 +-.500182 +.417856 +-.120792 +-.373101 +.943655 +-1.402293 +1.572662 +-1.378583 +.890215 +-.296440 +-.188431 +.432833 +-.443369 +.329753 +-.205747 +.103494 +.028538 +-.244132 +.509940 +-.696574 +.669750 +-.408807 +.047678 +.204486 +-.204151 +-.033954 +.358971 +-.592338 +.634068 +-.497241 +.269619 +-.050669 +-.092563 +.142127 +-.128093 +.112497 +-.152213 +.251781 +-.343129 +.325178 +-.147563 +-.126994 +.344828 +-.363963 +.158853 +.160668 +-.435256 +.577558 +-.629871 +.713482 +-.913141 +1.190346 +-1.393655 +1.359633 +-1.031874 +.513842 +-.016819 +-.263072 +.256614 +-.047203 +-.202463 +.364157 +-.412819 +.404855 +-.396122 +.377929 +-.288544 +.088214 +.172897 +-.359993 +.337258 +-.067939 +-.345794 +.715408 +-.874431 +.768311 +-.469382 +.116580 +.170363 +-.343326 +.420225 +-.442859 +.440537 +-.423408 +.394879 +-.357936 +.308395 +-.233829 +.133378 +-.041670 +.017559 +-.086059 +.181358 +-.164247 +-.066746 +.448683 +-.735559 +.642929 +-.070567 +-.769623 +1.443212 +-1.560892 +1.040860 +-.174584 +-.556573 +.787169 +-.483703 +-.070042 +.490892 +-.550940 +.293865 +.045680 +-.233733 +.190788 +-.011675 +-.133790 +.128250 +.024133 +-.213799 +.297240 +-.176097 +-.151448 +.584461 +-.962635 +1.146777 +-1.098634 +.908375 +-.738960 +.712395 +-.815012 +.898391 +-.788146 +.426413 +.061450 +-.436406 +.509520 +-.282784 +-.037288 +.166295 +.078322 +-.663518 +1.360015 +-1.869860 +1.976438 +-1.635079 +.974527 +-.230375 +-.349302 +.593614 +-.471266 +.104407 +.282763 +-.470816 +.359781 +-.025011 +-.326144 +.476482 +-.328624 +-.035533 +.400068 +-.538612 +.346634 +.091991 +-.545640 +.767393 +-.647683 +.292950 +.028837 +-.052656 +-.310267 +.906733 +-1.430884 +1.609149 +-1.356250 +.804545 +-.203457 +-.227116 +.391160 +-.318633 +.107345 +.136444 +-.327491 +.411412 +-.375459 +.259018 +-.142119 +.101485 +-.157588 +.254094 +-.291458 +.193728 +.038301 +-.322394 +.537370 +-.582911 +.423945 +-.103308 +-.275738 +.585620 +-.717381 +.620242 +-.328728 +-.034011 +.290151 +-.282528 +-.031659 +.524267 +-.934484 +1.008626 +-.667998 +.085750 +.401275 +-.504009 +.173853 +.363349 +-.760249 +.780173 +-.444647 +-.001927 +.274155 +-.238265 +-.016688 +.264381 +-.306997 +.098155 +.253099 +-.578810 +.763218 +-.789315 +.705474 +-.561595 +.375718 +-.151210 +-.087214 +.285969 +-.398223 +.429226 +-.440299 +.494197 +-.583489 +.611905 +-.463680 +.117642 +.289616 +-.521224 +.393759 +.082545 +-.686772 +1.111742 +-1.141540 +.758300 +-.118716 +-.558209 +1.096961 +-1.401595 +1.432762 +-1.182599 +.684763 +-.043792 +-.563794 +.943467 +-.968727 +.645039 +-.109222 +-.435047 +.808086 +-.924619 +.814485 +-.592025 +.393583 +-.312413 +.358747 +-.460405 +.501023 +-.376991 +.047098 +.444385 +-.978387 +1.400272 +-1.574877 +1.439623 +-1.034831 +.493768 +.009360 +-.332123 +.419787 +-.314466 +.116934 +.070132 +-.182699 +.204466 +-.153666 +.064870 +.025649 +-.091961 +.127847 +-.147236 +.172217 +-.215409 +.269918 +-.313501 +.321742 +-.281239 +.199589 +-.111662 +.076564 +-.154961 +.368720 +-.667622 +.935876 +-1.048594 +.946981 +-.679100 +.373685 +-.162579 +.104298 +-.157232 +.214000 +-.168993 +-.024124 +.334513 +-.678510 +.965278 +-1.135132 +1.170877 +-1.082560 +.885464 +-.593441 +.232527 +.143563 +-.461377 +.664090 +-.749364 +.771852 +-.799907 +.858527 +-.907231 +.874318 +-.719032 +.469531 +-.206978 +.013523 +.072839 +-.067091 +.014114 +.042529 +-.081310 +.108155 +-.147270 +.219686 +-.318755 +.400754 +-.405359 +.297958 +-.103232 +-.098477 +.212762 +-.182765 +.018886 +.205460 +-.382963 +.412962 +-.243480 +-.095656 +.487101 +-.764028 +.784227 +-.503115 +.000139 +.558370 +-.994925 +1.188495 +-1.103647 +.784480 +-.334608 +-.106292 +.396015 +-.438811 +.232599 +.119139 +-.450209 +.611074 +-.539131 +.281319 +.035451 +-.261537 +.281087 +-.053319 +-.365781 +.829774 +-1.147632 +1.165384 +-.850340 +.325509 +.180877 +-.455690 +.423903 +-.194841 +-.005026 +-.023078 +.319217 +-.734414 +1.023699 +-1.003068 +.666823 +-.189613 +-.184363 +.286858 +-.108992 +-.225451 +.563362 +-.817745 +.985161 +-1.085132 +1.089725 +-.920303 +.525755 +.025374 +-.533206 +.769369 +-.626417 +.194569 +.301123 +-.655614 +.805972 +-.828695 +.830314 +-.839100 +.792393 +-.619347 +.332933 +-.044431 +-.109877 +.064667 +.131462 +-.348554 +.449005 +-.352110 +.063684 +.328048 +-.683264 +.864160 +-.799609 +.529549 +-.194113 +-.039781 +.075635 +.054175 +-.211116 +.243477 +-.091083 +-.167631 +.361954 +-.345502 +.107517 +.202887 +-.369992 +.266627 +.041626 +-.329124 +.366309 +-.085947 +-.367048 +.739764 +-.847458 +.688202 +-.418044 +.220856 +-.181769 +.254405 +-.327500 +.320841 +-.234024 +.125238 +-.056767 +.056989 +-.116958 +.204939 +-.278406 +.294633 +-.231028 +.110428 +-.004224 +-.007703 +-.098023 +.250010 +-.313438 +.181952 +.131803 +-.477131 +.642655 +-.488842 +.050910 +.461293 +-.779214 +.742161 +-.406667 +.016910 +.155676 +-.000178 +-.350303 +.603855 +-.507660 +.020792 +.657262 +-1.215566 +1.422095 +-1.245541 +.839524 +-.420347 +.133754 +.004133 +-.071098 +.152303 +-.269983 +.372317 +-.379601 +.250200 +-.020538 +-.208383 +.331193 +-.306812 +.187243 +-.081438 +.075825 +-.169702 +.277518 +-.298384 +.196537 +-.024885 +-.127061 +.211512 +-.253686 +.307236 +-.379005 +.400813 +-.285034 +.019624 +.288044 +-.473889 +.450483 +-.303138 +.254798 +-.503505 +1.044711 +-1.622341 +1.869976 +-1.560600 +.787610 +.066129 +-.566301 +.510209 +-.052574 +-.415889 +.544916 +-.253675 +-.244619 +.620194 +-.659613 +.387881 +-.015852 +-.219260 +.196559 +.045557 +-.363719 +.604126 +-.679082 +.597101 +-.443893 +.326007 +-.302684 +.344480 +-.351624 +.230046 +.024023 +-.297229 +.420336 +-.280791 +-.094207 +.547628 +-.888940 +1.005118 +-.905961 +.679592 +-.408306 +.122334 +.173889 +-.442615 +.595504 +-.552177 +.327986 +-.062181 +-.058812 +-.066762 +.376946 +-.691662 +.850825 +-.833262 +.759495 +-.778767 +.935325 +-1.122269 +1.157447 +-.917236 +.425560 +.162110 +-.654618 +.922115 +-.931575 +.720308 +-.357156 +-.066906 +.426547 +-.575606 +.416473 +.008327 +-.484362 +.713995 +-.495005 +-.128507 +.863773 +-1.337098 +1.323233 +-.874961 +.262816 +.220628 +-.440242 +.455326 +-.411910 +.399979 +-.395410 +.316207 +-.121493 +-.142173 +.379813 +-.522804 +.565857 +-.539635 +.458691 +-.304178 +.060408 +.232462 +-.468279 +.529400 +-.371450 +.071703 +.202461 +-.291424 +.143756 +.149546 +-.411668 +.489381 +-.341413 +.048555 +.252989 +-.459293 +.542925 +-.533099 +.466080 +-.359275 +.228647 +-.119022 +.099798 +-.213356 +.416279 +-.572876 +.524762 +-.197860 +-.329151 +.850966 +-1.149361 +1.123869 +-.853517 +.545542 +-.402721 +.496695 +-.731458 +.919081 +-.911815 +.697337 +-.393714 +.153241 +-.049087 +.028989 +.029885 +-.206349 +.450370 +-.600636 +.500772 +-.130724 +-.351457 +.700634 +-.749230 +.525862 +-.238705 +.134691 +-.336501 +.770263 +-1.225584 +1.494648 +-1.489987 +1.269200 +-.968685 +.707903 +-.531269 +.413469 +-.305239 +.178207 +-.043445 +-.055462 +.064447 +.051362 +-.276475 +.529254 +-.684748 +.639686 +-.385357 +.031896 +.247605 +-.324284 +.197277 +.008385 +-.127287 +.058035 +.185825 +-.501732 +.764630 +-.879599 +.797529 +-.510951 +.056948 +.473245 +-.943959 +1.220872 +-1.233044 +1.006179 +-.640977 +.255097 +.065322 +-.276978 +.366729 +-.345451 +.255558 +-.167835 +.146827 +-.203967 +.286835 +-.328084 +.315214 +-.309572 +.383792 +-.529942 +.631728 +-.543161 +.215363 +.240436 +-.615962 +.746941 +-.616745 +.343717 +-.076939 +-.100842 +.186424 +-.197044 +.117551 +.083575 +-.387035 +.683603 +-.823512 +.729279 +-.475274 +.251541 +-.224634 +.403710 +-.627511 +.692539 +-.523421 +.244548 +-.088265 +.207503 +-.540404 +.836024 +-.826675 +.422145 +.214091 +-.758464 +.924801 +-.633561 +.048290 +.532321 +-.846754 +.797117 +-.464905 +.030631 +.330859 +-.512900 +.481161 +-.251377 +-.121481 +.537534 +-.857213 +.941622 +-.718344 +.231827 +.360395 +-.851001 +1.074212 +-.978235 +.644604 +-.246828 +-.031258 +.079424 +.092535 +-.369215 +.597942 +-.675338 +.603548 +-.482821 +.442844 +-.553717 +.774999 +-.980303 +1.045024 +-.934878 +.727199 +-.545187 +.457180 +-.425539 +.349943 +-.165946 +-.091533 +.319807 +-.445523 +.493592 +-.558963 +.703835 +-.877212 +.937149 +-.763539 +.365999 +.107190 +-.468279 +.616224 +-.588801 +.505023 +-.453854 +.425659 +-.340963 +.144320 +.125612 +-.356950 +.459290 +-.443372 +.405844 +-.427101 +.478255 +-.435473 +.204060 +.156009 +-.429438 +.394620 +-.010655 +-.517439 +.864592 +-.815444 +.421104 +.040263 +-.268743 +.156501 +.149311 +-.372907 +.321232 +-.020189 +-.317673 +.457579 +-.310103 +-.016849 +.306878 +-.388084 +.238694 +.018315 +-.210795 +.226866 +-.069226 +-.163699 +.340203 +-.358589 +.186123 +.129617 +-.473528 +.699871 +-.690092 +.413227 +.042550 +-.493288 +.734680 +-.635323 +.199527 +.431909 +-1.042356 +1.430196 +-1.487296 +1.231697 +-.784486 +.306929 +.068809 +-.283316 +.352607 +-.338566 +.309170 +-.308327 +.344274 +-.395469 +.429667 +-.427566 +.397928 +-.370034 +.363567 +-.357284 +.287183 +-.086920 +-.251955 +.645945 +-.945545 +1.012590 +-.802089 +.394972 +.039599 +-.328987 +.378830 +-.207807 +-.077498 +.346909 +-.511675 +.556498 +-.525418 +.473930 +-.419295 +.323822 +-.127332 +-.189216 +.556340 +-.829086 +.866065 +-.627252 +.218635 +.156573 +-.315033 +.201338 +.085303 +-.360443 +.468920 +-.369897 +.145084 +.062669 +-.136232 +.047301 +.132462 +-.273587 +.262715 +-.071417 +-.220450 +.466825 +-.544254 +.431822 +-.226026 +.076885 +-.089266 +.259597 +-.489459 +.658085 +-.694816 +.602833 +-.430559 +.227526 +-.022080 +-.170533 +.329443 +-.421707 +.413507 +-.288104 +.059042 +.225660 +-.488752 +.641248 +-.614364 +.396018 +-.049701 +-.303746 +.537754 +-.576292 +.420681 +-.133556 +-.203660 +.529412 +-.815850 +1.057783 +-1.251207 +1.378625 +-1.410152 +1.319838 +-1.107381 +.811024 +-.499494 +.243966 +-.085868 +.021536 +-.013634 +.019295 +-.013619 +-.006284 +.034355 +-.070265 +.122524 +-.199922 +.301504 +-.414843 +.522664 +-.609557 +.661390 +-.659482 +.581036 +-.414953 +.187352 +.026246 +-.125462 +.045406 +.183619 +-.428043 +.519075 +-.364166 +.025680 +.297319 +-.383750 +.129991 +.379002 +-.914208 +1.232439 +-1.209635 +.900081 +-.494263 +.206403 +-.156185 +.307710 +-.497542 +.536022 +-.323920 +-.085792 +.519818 +-.788894 +.794560 +-.569630 +.234052 +.090039 +-.338602 +.506137 +-.604275 +.625860 +-.545339 +.347871 +-.055644 +-.270452 +.550186 +-.706729 +.683728 +-.460831 +.070608 +.394775 +-.804500 +1.038243 +-1.036181 +.815677 +-.446701 +.014009 +.398366 +-.697272 +.780683 +-.581710 +.140021 +.365259 +-.679183 +.614981 +-.184991 +-.384638 +.780361 +-.789154 +.422002 +.105789 +-.514643 +.622474 +-.428439 +.083502 +.214575 +-.329801 +.243965 +-.045717 +-.127253 +.159529 +-.011944 +-.263800 +.556987 +-.760684 +.828234 +-.785398 +.690214 +-.574804 +.421474 +-.196139 +-.091012 +.357075 +-.484821 +.403082 +-.145127 +-.163470 +.379688 +-.424720 +.315846 +-.132826 +-.049114 +.207846 +-.371793 +.572810 +-.793025 +.949717 +-.934714 +.685424 +-.238333 +-.275543 +.694112 +-.906891 +.904355 +-.765754 +.598991 +-.475772 +.403055 +-.343311 +.260728 +-.154715 +.055467 +.009991 +-.046706 +.086337 +-.151632 +.226382 +-.262625 +.220795 +-.103136 +-.053266 +.216150 +-.387190 +.587239 +-.812097 +1.008039 +-1.100732 +1.056031 +-.913430 +.753075 +-.621446 +.485375 +-.265824 +-.069828 +.438624 +-.668895 +.619246 +-.302831 +-.086213 +.279175 +-.105011 +-.393088 +.979519 +-1.369916 +1.395819 +-1.084083 +.614027 +-.199517 +-.021200 +.031001 +.086841 +-.203516 +.202667 +-.028367 +-.283707 +.606841 +-.771256 +.651006 +-.243614 +-.315933 +.828275 +-1.145180 +1.242888 +-1.198002 +1.092145 +-.933897 +.671324 +-.283531 +-.139723 +.419692 +-.413877 +.148505 +.159790 +-.232522 +-.073002 +.643131 +-1.164588 +1.330693 +-1.053628 +.526187 +-.082336 +-.043508 +-.121032 +.323321 +-.290015 +-.063074 +.574673 +-.967097 +1.047083 +-.823146 +.468387 +-.184968 +.085494 +-.162772 +.334325 +-.502033 +.587149 +-.542746 +.360607 +-.072941 +-.261702 +.586935 +-.868819 +1.088956 +-1.220672 +1.220240 +-1.052740 +.733994 +-.347278 +.010938 +.185067 +-.227024 +.174992 +-.114511 +.100716 +-.134524 +.181463 +-.210437 +.216942 +-.213489 +.200834 +-.151833 +.028536 +.178057 +-.419856 +.604278 +-.645564 +.520789 +-.291205 +.073026 +.024481 +.043026 +-.230822 +.423638 +-.486928 +.331404 +.034114 +-.489375 +.848522 +-.956695 +.786450 +-.465922 +.203736 +-.150470 +.294424 +-.473391 +.496653 +-.283098 +-.090682 +.460769 +-.694583 +.756270 +-.677133 +.481787 +-.157521 +-.296450 +.791267 +-1.134521 +1.123109 +-.689174 +-.014637 +.670361 +-.967380 +.779059 +-.225254 +-.413254 +.858581 +-.963839 +.737022 +-.280149 +-.281668 +.826108 +-1.223408 +1.341679 +-1.097289 +.520125 +.230803 +-.932499 +1.403998 +-1.575410 +1.475505 +-1.168582 +.712234 +-.173115 +-.333556 +.650183 +-.654651 +.356872 +.075763 +-.404900 +.465961 +-.263857 +-.050779 +.299889 +-.395240 +.373009 +-.341621 +.404932 +-.620075 +.994484 +-1.483847 +1.970358 +-2.254605 +2.115260 +-1.441212 +.356464 +.774025 +-1.503301 +1.547304 +-.955216 +.081510 +.628736 +-.897285 +.741389 +-.400340 +.133900 +-.049873 +.077770 +-.080892 +-.004840 +.121050 +-.152303 +.035162 +.185896 +-.393479 +.480654 +-.410580 +.216472 +.037467 +-.291325 +.500862 +-.637317 +.692768 +-.687892 +.662353 +-.641987 +.605077 +-.482782 +.206391 +.225152 +-.707408 +1.058421 +-1.107754 +.799755 +-.246509 +-.312443 +.633695 +-.609136 +.331088 +-.032875 +-.061399 +-.122660 +.475111 +-.791419 +.915004 +-.830180 +.649575 +-.519448 +.516119 +-.598374 +.637466 +-.501932 +.148726 +.331324 +-.747350 +.913171 +-.765462 +.415111 +-.085737 +-.029844 +-.100291 +.323756 +-.406745 +.192101 +.295271 +-.863144 +1.269757 +-1.361743 +1.145534 +-.757081 +.362982 +-.064526 +-.134703 +.287444 +-.430466 +.543006 +-.567761 +.473015 +-.298762 +.143205 +-.095893 +.169213 +-.283389 +.319935 +-.206729 +-.026709 +.265453 +-.388257 +.354297 +-.233079 +.151548 +-.194940 +.336444 +-.453386 +.421101 +-.214554 +-.061663 +.241093 +-.214774 +.017200 +.184095 +-.195232 +-.066587 +.495428 +-.837998 +.839899 +-.409537 +-.307996 +1.002496 +-1.375009 +1.305657 +-.904501 +.417975 +-.061745 +-.103241 +.172810 +-.291097 +.520593 +-.788101 +.940713 +-.862214 +.560158 +-.164278 +-.153537 +.275633 +-.191993 +-.008699 +.192184 +-.244464 +.123627 +.122782 +-.386719 +.564873 +-.622083 +.607625 +-.609858 +.683967 +-.811239 +.920101 +-.944782 +.866932 +-.708809 +.496290 +-.238456 +-.052727 +.327071 +-.494651 +.479850 +-.295185 +.065672 +.036139 +.088239 +-.376168 +.629547 +-.648860 +.382102 +.026640 +-.332918 +.365906 +-.151349 +-.108120 +.180010 +.032278 +-.422675 +.756130 +-.826228 +.589426 +-.192129 +-.121510 +.162012 +.086544 +-.454733 +.694640 +-.640887 +.320380 +.066340 +-.282663 +.216032 +.053277 +-.320636 +.407111 +-.279976 +.062616 +.062086 +.021157 +-.288631 +.599688 +-.786415 +.748250 +-.497607 +.140535 +.183777 +-.365951 +.363945 +-.209950 +-.006947 +.176246 +-.214575 +.110841 +.061710 +-.189249 +.201494 +-.138376 +.136683 +-.326686 +.705724 +-1.091290 +1.210678 +-.882082 +.161972 +.655474 +-1.199224 +1.238239 +-.808413 +.171037 +.355308 +-.567529 +.450152 +-.129540 +-.227183 +.492019 +-.603673 +.561142 +-.412112 +.240303 +-.137205 +.154640 +-.263347 +.353442 +-.289898 +-.005070 +.493262 +-1.025242 +1.408713 +-1.502749 +1.283998 +-.847571 +.344843 +.099724 +-.437068 +.677291 +-.830314 +.860759 +-.703936 +.336581 +.157535 +-.592076 +.766639 +-.586079 +.127020 +.399290 +-.767611 +.865460 +-.744199 +.565094 +-.481426 +.538830 +-.659295 +.712612 +-.617494 +.398328 +-.161764 +.018854 +-.013955 +.107229 +-.211504 +.246738 +-.173925 +-.001797 +.242544 +-.485179 +.645698 +-.637257 +.411194 +-.003215 +-.453806 +.778084 +-.833935 +.616987 +-.266505 +-.014670 +.086201 +.042047 +-.223849 +.284065 +-.143128 +-.130813 +.376642 +-.455603 +.337714 +-.099213 +-.154444 +.367635 +-.551536 +.734790 +-.901541 +.975677 +-.865695 +.533817 +-.037620 +-.483724 +.869289 +-1.008862 +.891217 +-.604108 +.285753 +-.054518 +-.041275 +.024807 +.049241 +-.137226 +.216155 +-.260909 +.223657 +-.048396 +-.282960 +.711551 +-1.108454 +1.331265 +-1.296143 +1.020226 +-.611157 +.212662 +.063829 +-.188817 +.224181 +-.285679 +.472366 +-.795639 +1.150994 +-1.359794 +1.269176 +-.854497 +.255133 +.290216 +-.576563 +.549774 +-.328257 +.113577 +-.053268 +.152942 +-.295232 +.340295 +-.223509 +-.021339 +.313113 +-.584249 +.789726 +-.867957 +.719506 +-.260437 +-.471158 +1.253233 +-1.750957 +1.709049 +-1.139415 +.353943 +.207743 +-.252768 +-.176176 +.731535 +-.989206 +.715941 +.000174 +-.824842 +1.385221 +-1.465985 +1.085701 +-.442001 +-.209243 +.662198 +-.814461 +.668752 +-.307456 +-.138853 +.522917 +-.716684 +.652633 +-.357698 +-.044336 +.379369 +-.507499 +.401663 +-.169281 +-.005420 +-.031733 +.312344 +-.723458 +1.066844 +-1.162717 +.940502 +-.473585 +-.052524 +.420413 +-.474166 +.186762 +.328892 +-.872628 +1.248205 +-1.345258 +1.170487 +-.820997 +.428371 +-.111984 +-.042639 +-.008661 +.258769 +-.639027 +1.029108 +-1.300265 +1.376607 +-1.274350 +1.086604 +-.918133 +.814330 +-.737442 +.609837 +-.390784 +.123472 +.089304 +-.163196 +.098791 +.020503 +-.097237 +.095526 +-.059989 +.066869 +-.155102 +.296218 +-.420547 +.466691 +-.409224 +.250631 +-.001233 +-.322287 +.675777 +-.971821 +1.099841 +-.984112 +.644425 +-.210030 +-.137397 +.267102 +-.184600 +.036451 +-.020695 +.254307 +-.685120 +1.111438 +-1.302244 +1.141528 +-.702416 +.203506 +.121411 +-.153660 +-.061286 +.368201 +-.611512 +.721318 +-.724555 +.690175 +-.662883 +.637203 +-.581823 +.480857 +-.350944 +.223177 +-.114049 +.016644 +.081411 +-.176578 +.250509 +-.293817 +.325387 +-.381059 +.474956 +-.567881 +.577680 +-.434371 +.142621 +.198032 +-.439348 +.472380 +-.298524 +.031048 +.177083 +-.228643 +.131413 +.031257 +-.177321 +.282488 +-.372758 +.472559 +-.566954 +.616468 +-.604934 +.565231 +-.552036 +.585999 +-.625293 +.595113 +-.451580 +.225899 +-.013306 +-.082414 +.007923 +.211695 +-.482550 +.675675 +-.671032 +.404095 +.095060 +-.690697 +1.179437 +-1.375257 +1.203469 +-.747925 +.216811 +.157175 +-.223976 +-.029100 +.495810 +-1.015821 +1.440267 +-1.670642 +1.672353 +-1.476572 +1.171211 +-.869927 +.657560 +-.539873 +.440135 +-.259895 +-.031386 +.349514 +-.540171 +.493384 +-.242362 +-.038892 +.150304 +-.013545 +-.263168 +.461180 +-.417108 +.150400 +.150751 +-.278061 +.169430 +.041005 +-.130525 +-.031596 +.372937 +-.662347 +.675976 +-.361650 +-.115493 +.475072 +-.498167 +.160803 +.358533 +-.793940 +.950424 +-.807615 +.515162 +-.296022 +.320850 +-.619499 +1.066808 +-1.444228 +1.549739 +-1.304715 +.799782 +-.245048 +-.153724 +.316106 +-.321917 +.335067 +-.474318 +.728400 +-.976181 +1.088855 +-1.028682 +.867325 +-.714839 +.621213 +-.533215 +.342775 +.008289 +-.448453 +.787103 +-.818055 +.452411 +.205992 +-.895729 +1.328520 +-1.340958 +.978199 +-.460152 +.052085 +.081105 +.050513 +-.296826 +.478434 +-.493551 +.353922 +-.140701 +-.070227 +.250086 +-.399395 +.499646 +-.489703 +.298819 +.085951 +-.576929 +1.013103 +-1.246775 +1.227181 +-1.017890 +.737705 +-.478383 +.267459 +-.098846 +-.013091 +.021328 +.102767 +-.304595 +.442573 +-.371954 +.060294 +.361427 +-.664829 +.667691 +-.351767 +-.128306 +.545935 +-.736924 +.678686 +-.476827 +.287394 +-.232410 +.350727 +-.593164 +.849034 +-.989480 +.915573 +-.598910 +.098301 +.457442 +-.917206 +1.166216 +-1.169515 +.979626 +-.703316 +.443717 +-.249836 +.104834 +.039744 +-.211673 +.391151 +-.532833 +.613944 +-.658853 +.710106 +-.770395 +.775619 +-.637177 +.326203 +.074452 +-.404712 +.528723 +-.422863 +.179826 +.070378 +-.250659 +.364473 +-.448623 +.508942 +-.507100 +.410428 +-.250480 +.122918 +-.117295 +.236464 +-.383035 +.434597 +-.348274 +.204588 +-.148875 +.273478 +-.534008 +.764446 +-.779539 +.490022 +.045317 +-.657047 +1.158705 +-1.435677 +1.481040 +-1.367132 +1.178665 +-.952302 +.660868 +-.251950 +-.285888 +.877590 +-1.374524 +1.624859 +-1.559304 +1.236832 +-.820267 +.496230 +-.386182 +.494803 +-.716129 +.888439 +-.871257 +.613062 +-.179661 +-.274142 +.581218 +-.647271 +.491202 +-.213042 +-.085809 +.368115 +-.660874 +.994108 +-1.334973 +1.578424 +-1.607906 +1.379689 +-.963124 +.502456 +-.128013 +-.115254 +.268144 +-.390528 +.488478 +-.501935 +.367021 +-.097732 +-.193348 +.367379 +-.373041 +.303582 +-.335896 +.586601 +-.995307 +1.333888 +-1.348039 +.934788 +-.230513 +-.453097 +.801886 +-.670298 +.151542 +.481542 +-.919907 +.967138 +-.625243 +.083390 +.382758 +-.554394 +.383562 +-.014251 +-.305912 +.373384 +-.145236 +-.247714 +.595244 +-.741708 +.668027 +-.471632 +.270841 +-.113662 +-.038620 +.248572 +-.520616 +.772695 +-.882040 +.762449 +-.411010 +-.099032 +.653575 +-1.125166 +1.388943 +-1.350206 +.992764 +-.416136 +-.185014 +.607768 +-.743451 +.625234 +-.389887 +.187598 +-.104454 +.138393 +-.223124 +.269864 +-.204867 +-.000403 +.308449 +-.616844 +.795270 +-.750500 +.483274 +-.096993 +-.252861 +.438814 +-.421116 +.253654 +-.039257 +-.133276 +.232987 +-.290421 +.364115 +-.491411 +.653086 +-.773908 +.761844 +-.564629 +.210063 +.195731 +-.513115 +.633996 +-.534434 +.289227 +-.040145 +-.070839 +-.025900 +.286271 +-.569988 +.713733 +-.622155 +.323044 +.047311 +-.318746 +.375685 +-.209980 +-.082995 +.351060 +-.446140 +.277998 +.148400 +-.719959 +1.241243 +-1.505175 +1.386598 +-.907052 +.224241 +.453788 +-.973078 +1.284823 +-1.415264 +1.394669 +-1.216809 +.865966 +-.380192 +-.120116 +.481846 +-.618665 +.579057 +-.516289 +.570867 +-.753102 +.924231 +-.901905 +.613267 +-.171126 +-.197687 +.323068 +-.225573 +.099633 +-.153643 +.434990 +-.785717 +.967791 +-.854822 +.532878 +-.231058 +.146676 +-.311408 +.597438 +-.835694 +.929975 +-.876708 +.702863 +-.410369 +-.006358 +.492469 +-.898686 +1.039599 +-.814556 +.295968 +.292473 +-.701018 +.796316 +-.622960 +.348089 +-.137222 +.053397 +-.046321 +.025411 +.050455 +-.139380 +.161350 +-.079133 +-.053127 +.113791 +.005911 +-.321104 +.726135 +-1.039400 +1.094950 +-.830382 +.323041 +.244693 +-.669792 +.814458 +-.648914 +.239925 +.289417 +-.794417 +1.127356 +-1.158595 +.820252 +-.161538 +-.628092 +1.268926 +-1.509086 +1.251460 +-.611485 +-.135917 +.693937 +-.888049 +.737893 +-.424180 +.179773 +-.169360 +.416968 +-.807340 +1.150527 +-1.275730 +1.111816 +-.716558 +.237696 +.175028 +-.454197 +.638419 +-.818702 +1.048594 +-1.288534 +1.428032 +-1.366351 +1.087603 +-.675589 +.265058 +.027721 +-.146744 +.094722 +.091339 +-.357099 +.628670 +-.806157 +.779834 +-.480267 +-.059203 +.675404 +-1.125365 +1.207301 +-.887062 +.339580 +.140410 +-.314138 +.145895 +.181862 +-.397174 +.318976 +.037248 +-.494028 +.847222 +-.995280 +.973850 +-.888844 +.816386 +-.752297 +.643266 +-.463719 +.268658 +-.176233 +.288590 +-.604913 +.986744 +-1.205483 +1.055831 +-.480007 +-.366207 +1.155441 +-1.535961 +1.316637 +-.584190 +-.326832 +1.005905 +-1.182191 +.853883 +-.257862 +-.289643 +.572289 +-.566259 +.409135 +-.287800 +.324779 +-.523326 +.786218 +-.983555 +1.028429 +-.921904 +.746071 +-.609524 +.576858 +-.625982 +.663032 +-.588258 +.370854 +-.080808 +-.147076 +.196416 +-.045165 +-.217214 +.442242 +-.506456 +.370329 +-.081256 +-.263153 +.551858 +-.677243 +.549578 +-.135233 +-.489423 +1.118561 +-1.479114 +1.363189 +-.754625 +-.139358 +.980825 +-1.463839 +1.449271 +-1.000844 +.322430 +.347365 +-.820607 +.998707 +-.876702 +.534273 +-.116853 +-.206093 +.307829 +-.168090 +-.110538 +.356124 +-.424615 +.279666 +-.005281 +-.249932 +.352321 +-.237603 +-.076956 +.505815 +-.912995 +1.136575 +-1.035793 +.560629 +.191504 +-.982267 +1.521768 +-1.603245 +1.205737 +-.501512 +-.236376 +.768779 +-.989510 +.940883 +-.754351 +.565553 +-.455177 +.436815 +-.478973 +.534729 +-.561744 +.532419 +-.439947 +.301245 +-.151359 +.027797 +.046660 +-.068910 +.043315 +.035294 +-.182276 +.398545 +-.638634 +.806712 +-.801651 +.589200 +-.244693 +-.079552 +.250261 +-.242553 +.150166 +-.105794 +.174980 +-.306801 +.374508 +-.267277 +-.036005 +.453463 +-.841446 +1.057581 +-1.016692 +.723589 +-.273156 +-.185922 +.511785 +-.625687 +.534568 +-.312198 +.056351 +.150989 +-.264261 +.275208 +-.201805 +.074342 +.074390 +-.211758 +.304148 +-.321506 +.251861 +-.118507 +-.017994 +.083637 +-.030960 +-.130627 +.336033 +-.497616 +.548773 +-.471278 +.293005 +-.063032 +-.176250 +.401946 +-.602210 +.756726 +-.824022 +.750953 +-.503356 +.100286 +.372958 +-.787416 +1.021553 +-1.015669 +.800906 +-.486511 +.209699 +-.071095 +.087421 +-.187837 +.258510 +-.212937 +.045982 +.162479 +-.297053 +.275582 +-.092902 +-.183760 +.454355 +-.627564 +.642807 +-.476961 +.152022 +.255122 +-.620745 +.818243 +-.783571 +.556984 +-.261402 +.025906 +.089450 +-.110053 +.097334 +-.084506 +.057797 +.003877 +-.078430 +.099680 +-.019292 +-.120845 +.179562 +.001951 +-.477835 +1.126844 +-1.694769 +1.930164 +-1.725718 +1.173795 +-.506313 +-.035754 +.320275 +-.365376 +.294679 +-.245478 +.286887 +-.390286 +.460280 +-.401860 +.184830 +.127682 +-.398721 +.476371 +-.269585 +-.189083 +.727988 +-1.092616 +1.065920 +-.596362 +-.149058 +.858891 +-1.247019 +1.210342 +-.865740 +.443246 +-.121919 +-.065669 +.197931 +-.347573 +.496689 +-.557914 +.473197 +-.291537 +.146896 +-.150706 +.290949 +-.427474 +.391914 +-.114180 +-.322663 +.737952 +-.970974 +.971129 +-.802318 +.576122 +-.377402 +.236506 +-.150114 +.110843 +-.110492 +.121541 +-.093204 +-.014206 +.177882 +-.297507 +.249907 +.014006 +-.407242 +.742196 +-.851422 +.704532 +-.424347 +.182256 +-.054949 +-.034708 +.234166 +-.598100 +.987432 +-1.132784 +.833572 +-.142534 +-.619684 +1.052639 +-.940278 +.397943 +.209113 +-.515383 +.388182 +.022550 +-.436889 +.664677 +-.715590 +.726111 +-.786883 +.833712 +-.701617 +.293475 +.290702 +-.786489 +.943599 +-.707650 +.258947 +.119498 +-.235991 +.098766 +.126864 +-.255840 +.200710 +.004293 +-.257700 +.457314 +-.530732 +.435354 +-.162516 +-.240082 +.654302 +-.923153 +.930777 +-.681597 +.313823 +-.023105 +-.059105 +-.051035 +.204616 +-.222994 +.018178 +.349952 +-.713593 +.903547 +-.850963 +.620474 +-.357686 +.190546 +-.154832 +.195513 +-.238054 +.267470 +-.345359 +.546427 +-.867850 +1.193234 +-1.351807 +1.234215 +-.877477 +.453848 +-.168727 +.136072 +-.308914 +.504593 +-.508775 +.203323 +.349636 +-.919695 +1.224511 +-1.097045 +.603587 +-.023902 +-.314094 +.245786 +.120784 +-.484550 +.569174 +-.319074 +-.073208 +.324719 +-.275991 +-.006122 +.305862 +-.437196 +.371539 +-.220120 +.106497 +-.051336 +-.032179 +.237874 +-.555890 +.849231 +-.937912 +.722776 +-.253503 +-.303868 +.765682 +-1.017413 +1.035653 +-.856095 +.539665 +-.171198 +-.128172 +.223263 +-.038392 +-.364422 +.779732 +-.957723 +.755000 +-.232446 +-.371387 +.774123 +-.801919 +.471391 +.032585 +-.455770 +.597527 +-.407522 +.017489 +.315474 +-.343544 +-.019956 +.624054 +-1.144452 +1.268607 +-.892779 +.201203 +.433247 +-.669825 +.403314 +.177934 +-.711417 +.874911 +-.558900 +-.100353 +.825223 +-1.352069 +1.537838 +-1.375537 +.947685 +-.375432 +-.204713 +.650431 +-.839458 +.719515 +-.352348 +-.089718 +.391461 +-.399952 +.110247 +.320380 +-.645289 +.656013 +-.298408 +-.287642 +.832421 +-1.074510 +.898540 +-.395139 +-.191310 +.597134 +-.677556 +.469442 +-.145314 +-.105964 +.191790 +-.149308 +.086605 +-.086807 +.154435 +-.241595 +.319140 +-.417841 +.596028 +-.862837 +1.133410 +-1.267349 +1.167017 +-.856661 +.476356 +-.193488 +.098051 +-.156454 +.249235 +-.257800 +.136282 +.075693 +-.297008 +.464643 +-.562829 +.604257 +-.589218 +.488144 +-.272788 +-.027348 +.301924 +-.409847 +.279995 +.016183 +-.290000 +.354604 +-.152359 +-.207601 +.530360 +-.669193 +.609658 +-.450146 +.311706 +-.258389 +.282487 +-.342858 +.403329 +-.435414 +.399165 +-.243485 +-.056004 +.451449 +-.820899 +1.029704 +-1.017022 +.839869 +-.637260 +.539834 +-.591173 +.731699 +-.845127 +.827038 +-.634315 +.299376 +.086096 +-.407421 +.573600 +-.558015 +.412220 +-.241118 +.150108 +-.192503 +.344536 +-.518932 +.611100 +-.558659 +.385562 +-.200354 +.137315 +-.267860 +.542076 +-.810035 +.916446 +-.802533 +.539787 +-.273551 +.124130 +-.119470 +.197914 +-.260697 +.226160 +-.056512 +-.235820 +.584461 +-.869906 +.947518 +-.714830 +.189995 +.457129 +-.965398 +1.117768 +-.872198 +.395267 +.037321 +-.216321 +.132150 +.030994 +-.039382 +-.212103 +.621368 +-.958966 +1.043271 +-.873251 +.615219 +-.457487 +.451753 +-.471871 +.327321 +.055587 +-.530094 +.795967 +-.603637 +-.044914 +.846674 +-1.348096 +1.207284 +-.402483 +-.743496 +1.734290 +-2.159797 +1.894699 +-1.135714 +.276554 +.296296 +-.376436 +.001322 +.605432 +-1.164451 +1.466832 +-1.437304 +1.122886 +-.639480 +.121173 +.307954 +-.550656 +.561383 +-.375202 +.111477 +.072314 +-.063794 +-.135431 +.407135 +-.588804 +.574962 +-.378880 +.113697 +.089893 +-.167886 +.149250 +-.111722 +.109259 +-.133997 +.141575 +-.110755 +.076575 +-.102664 +.217578 +-.377005 +.491652 +-.499130 +.416091 +-.323044 +.294919 +-.337222 +.382147 +-.345955 +.198624 +.010871 +-.191025 +.273342 +-.254369 +.184797 +-.121132 +.083395 +-.053045 +.008197 +.038597 +-.036793 +-.064430 +.265668 +-.496212 +.646055 +-.634324 +.466405 +-.234238 +.052702 +.025467 +-.050964 +.138771 +-.371846 +.718037 +-1.025371 +1.105787 +-.854101 +.323685 +.290598 +-.751931 +.902507 +-.735651 +.381595 +-.022949 +-.204772 +.269594 +-.232265 +.187426 +-.199587 +.270670 +-.348673 +.363730 +-.268886 +.067650 +.181580 +-.385655 +.456149 +-.354631 +.122991 +.120956 +-.231949 +.114187 +.214070 +-.614933 +.902879 +-.958620 +.808282 +-.604901 +.516375 +-.599506 +.756452 +-.810556 +.646338 +-.307638 +-.021852 +.145134 +.001552 +-.284101 +.438898 +-.240367 +-.332474 +1.041003 +-1.495298 +1.376801 +-.643784 +-.416118 +1.332824 +-1.717909 +1.482291 +-.870774 +.296465 +-.086973 +.304348 +-.743532 +1.091340 +-1.128781 +.847991 +-.427441 +.105460 +-.043896 +.255870 +-.617026 +.934738 +-1.036655 +.846256 +-.419692 +-.074714 +.433146 +-.516345 +.319685 +.027791 +-.333741 +.440290 +-.296858 +-.023056 +.360151 +-.541197 +.456411 +-.113781 +-.354947 +.748056 +-.890677 +.726936 +-.351505 +-.045270 +.290084 +-.325637 +.230379 +-.146871 +.172381 +-.291823 +.399025 +-.383881 +.215029 +.042423 +-.278593 +.410706 +-.418717 +.327703 +-.167478 +-.046897 +.298154 +-.538124 +.686119 +-.669598 +.482362 +-.212861 +.011158 +-.006225 +.225253 +-.569407 +.865117 +-.959332 +.800020 +-.456188 +.073534 +.201631 +-.287577 +.194686 +-.011302 +-.141713 +.170601 +-.060676 +-.104865 +.178544 +-.029647 +-.364306 +.872172 +-1.251350 +1.270663 +-.851556 +.140281 +.546910 +-.888475 +.741040 +-.227370 +-.333804 +.618716 +-.491411 +.074742 +.342885 +-.496415 +.297816 +.141232 +-.612358 +.945309 +-1.074849 +1.013070 +-.785315 +.409257 +.061084 +-.484013 +.652222 +-.409475 +-.211520 +.947065 +-1.419380 +1.357589 +-.777843 +-.008714 +.577582 +-.646160 +.234652 +.368285 +-.800915 +.846376 +-.534583 +.081558 +.267502 +-.376010 +.255563 +-.011230 +-.243071 +.436031 +-.540326 +.551732 +-.479188 +.350461 +-.212066 +.106220 +-.038588 +-.028904 +.141124 +-.293576 +.409811 +-.386540 +.181485 +.127083 +-.369381 +.395002 +-.187838 +-.104843 +.261749 +-.139704 +-.215769 +.581412 +-.687520 +.388284 +.236104 +-.911883 +1.320836 +-1.277247 +.826520 +-.207713 +-.292180 +.497506 +-.417820 +.199048 +-.000405 +-.107665 +.154749 +-.198893 +.247124 +-.243669 +.137577 +.034397 +-.133926 +.004863 +.402277 +-.964250 +1.437587 +-1.600273 +1.385012 +-.914569 +.422174 +-.118648 +.091573 +-.286959 +.564411 +-.780012 +.850513 +-.773423 +.602353 +-.396629 +.177866 +.074962 +-.384427 +.717074 +-.960376 +.966578 +-.645388 +.044480 +.643534 +-1.161816 +1.314652 +-1.064516 +.546186 +.007258 +-.381834 +.478774 +-.343398 +.122677 +.014895 +.047023 +-.333243 +.775360 +-1.237753 +1.562329 +-1.624230 +1.384228 +-.912536 +.362008 +.105448 +-.401117 +.546761 +-.639039 +.764061 +-.925757 +1.042696 +-1.014885 +.805823 +-.474905 +.138919 +.100619 +-.206507 +.201761 +-.130232 +.021304 +.117495 +-.287722 +.487137 +-.705921 +.925018 +-1.108550 +1.196900 +-1.117473 +.821796 +-.332224 +-.237082 +.713199 +-.945452 +.889583 +-.638199 +.368750 +-.235037 +.270654 +-.370818 +.369098 +-.160834 +-.209118 +.554752 +-.652112 +.375080 +.218530 +-.901744 +1.384854 +-1.453247 +1.062153 +-.343734 +-.466980 +1.139496 +-1.531842 +1.618541 +-1.465735 +1.181187 +-.867972 +.597843 +-.404396 +.288492 +-.228224 +.189606 +-.138427 +.053584 +.060708 +-.170929 +.224940 +-.175066 +.003665 +.261843 +-.551414 +.770827 +-.832084 +.689388 +-.370287 +-.017391 +.319730 +-.408130 +.252380 +.054860 +-.347809 +.485089 +-.429095 +.249874 +-.054205 +-.099584 +.229039 +-.375539 +.523153 +-.570027 +.393547 +.032123 +-.564167 +.941238 +-.940901 +.539113 +.049972 +-.495762 +.557529 +-.231064 +-.266261 +.655190 +-.776633 +.666561 +-.486159 +.382248 +-.394498 +.469859 +-.547029 +.621434 +-.732882 +.897166 +-1.054976 +1.093006 +-.923099 +.551363 +-.077626 +-.371933 +.717071 +-.938126 +1.028932 +-.948090 +.634169 +-.087155 +-.558573 +1.057077 +-1.184507 +.896072 +-.379700 +-.051629 +.161600 +.060892 +-.417093 +.661005 +-.677931 +.539688 +-.402640 +.346283 +-.296738 +.102443 +.305698 +-.815161 +1.189744 +-1.246083 +1.004433 +-.684661 +.543584 +-.680778 +.965815 +-1.142178 +1.023421 +-.629520 +.165952 +.127252 +-.136979 +-.062502 +.274172 +-.302980 +.053644 +.441407 +-1.049435 +1.584367 +-1.858641 +1.745705 +-1.248861 +.539569 +.084687 +-.333970 +.091607 +.493190 +-1.064436 +1.254521 +-.902337 +.153496 +.626527 +-1.071720 +1.023925 +-.598484 +.078223 +.276615 +-.369989 +.281707 +-.167477 +.136485 +-.190721 +.250222 +-.226536 +.086626 +.127080 +-.320219 +.394295 +-.298214 +.066691 +.175356 +-.260565 +.073934 +.351880 +-.812237 +1.021109 +-.782394 +.132979 +.653131 +-1.221572 +1.355401 +-1.099096 +.698386 +-.405299 +.302187 +-.278978 +.170066 +.073594 +-.326105 +.390900 +-.176719 +-.205801 +.511827 +-.541998 +.290522 +.054563 +-.254767 +.191713 +.064832 +-.331813 +.457690 +-.419516 +.307322 +-.226764 +.208759 +-.195078 +.098644 +.118417 +-.410121 +.674707 +-.818064 +.807099 +-.681422 +.522142 +-.401067 +.341368 +-.310875 +.249640 +-.113588 +-.092912 +.316651 +-.489017 +.571350 +-.579469 +.565943 +-.571055 +.582217 +-.541724 +.404053 +-.195089 +.014691 +.032389 +.076552 +-.257347 +.388018 +-.416261 +.406640 +-.475731 +.665837 +-.871638 +.897443 +-.611804 +.077653 +.453168 +-.689061 +.488687 +.042799 +-.617130 +.939107 +-.876922 +.520640 +-.103830 +-.150357 +.159429 +-.015199 +-.088904 +-.013600 +.353767 +-.799445 +1.123574 +-1.131973 +.779118 +-.203706 +-.341317 +.626679 +-.570840 +.274529 +.052838 +-.222602 +.166292 +.052750 +-.305197 +.477903 +-.514775 +.407603 +-.173182 +-.148276 +.477787 +-.701936 +.721497 +-.520765 +.199913 +.070737 +-.154928 +.042143 +.142836 +-.223945 +.093055 +.220830 +-.579731 +.836942 +-.931084 +.905052 +-.843002 +.784075 +-.686849 +.473689 +-.117446 +-.301015 +.613845 +-.657235 +.375342 +.128990 +-.631418 +.895512 +-.797651 +.397401 +.090145 +-.409594 +.403031 +-.088152 +-.367444 +.751457 +-.917308 +.831914 +-.548579 +.149417 +.287278 +-.679168 +.924932 +-.927054 +.657980 +-.220998 +-.160265 +.247800 +.061225 +-.641916 +1.185100 +-1.368733 +1.057160 +-.398170 +-.252821 +.540875 +-.323047 +-.248844 +.824347 +-1.066668 +.848924 +-.317721 +-.206737 +.425986 +-.233724 +-.235008 +.695203 +-.880895 +.690053 +-.226371 +-.276190 +.592684 +-.626310 +.442701 +-.209632 +.087979 +-.142324 +.319915 +-.500835 +.580986 +-.535522 +.426314 +-.352133 +.373557 +-.462065 +.511031 +-.408613 +.127603 +.233044 +-.494680 +.511574 +-.275226 +-.066624 +.297144 +-.269270 +.003081 +.325446 +-.499297 +.405147 +-.113471 +-.161006 +.198016 +.076740 +-.528413 +.886123 +-.910447 +.546105 +.042721 +-.574643 +.816094 +-.697591 +.317778 +.142386 +-.519564 +.721762 +-.729258 +.574551 +-.327431 +.082574 +.067071 +-.072858 +-.034388 +.146805 +-.130483 +-.096748 +.503964 +-.943166 +1.216469 +-1.186781 +.870094 +-.444117 +.151487 +-.146471 +.385276 +-.643933 +.662734 +-.320523 +-.285341 +.909222 +-1.319191 +1.427174 +-1.299770 +1.065586 +-.814103 +.568837 +-.335175 +.150308 +-.070088 +.101801 +-.159360 +.106891 +.126569 +-.459043 +.686611 +-.629332 +.280335 +.171519 +-.476583 +.512337 +-.368723 +.259493 +-.337046 +.569800 +-.782427 +.815066 +-.658490 +.454030 +-.371483 +.479495 +-.714424 +.956075 +-1.127589 +1.230895 +-1.300641 +1.335766 +-1.280809 +1.075556 +-.725828 +.327908 +-.019684 +-.105763 +.055588 +.083466 +-.226112 +.363736 +-.567934 +.909702 +-1.352924 +1.714625 +-1.747965 +1.312652 +-.514259 +-.308452 +.770901 +-.690700 +.216371 +.270659 +-.421182 +.157607 +.289672 +-.569711 +.471543 +-.060055 +-.400986 +.657679 +-.635904 +.454405 +-.298071 +.269395 +-.330364 +.359060 +-.257738 +.028121 +.228274 +-.369873 +.291595 +.019828 +-.471999 +.900078 +-1.138149 +1.100207 +-.828955 +.479125 +-.238518 +.229857 +-.449628 +.775712 +-1.033457 +1.079866 +-.865036 +.449133 +.024579 +-.387923 +.517543 +-.391127 +.103155 +.175446 +-.282445 +.151562 +.150343 +-.464163 +.635683 +-.607121 +.442382 +-.272479 +.204521 +-.260867 +.384248 +-.490332 +.517001 +-.437223 +.244510 +.055592 +-.431792 +.810038 +-1.084768 +1.165730 +-1.030533 +.742375 +-.417146 +.163486 +-.037590 +.039427 +-.142104 +.321867 +-.559032 +.810798 +-.988547 +.976878 +-.699620 +.191512 +.384093 +-.800596 +.883986 +-.605983 +.094953 +.437175 +-.800268 +.901029 +-.757409 +.465001 +-.148219 +-.079208 +.139954 +-.010678 +-.267831 +.596797 +-.850068 +.923650 +-.781530 +.472506 +-.108836 +-.179641 +.291169 +-.180480 +-.130871 +.556814 +-.962951 +1.205218 +-1.188712 +.920604 +-.517520 +.147449 +.067159 +-.122300 +.127024 +-.218388 +.454423 +-.760243 +.966500 +-.916038 +.569535 +-.041673 +-.456933 +.737893 +-.740342 +.555348 +-.353725 +.268539 +-.317029 +.416935 +-.475832 +.473936 +-.468920 +.523510 +-.626957 +.686646 +-.601667 +.354244 +-.037251 +-.207446 +.286942 +-.208431 +.045483 +.139866 +-.340307 +.569365 +-.787568 +.873304 +-.689141 +.206161 +.416720 +-.882484 +.923576 +-.480589 +-.234412 +.842441 +-1.009211 +.632032 +.111692 +-.876636 +1.345109 +-1.385173 +1.085776 +-.667172 +.339848 +-.202956 +.232454 +-.342358 +.460149 +-.563079 +.663840 +-.774379 +.885679 +-.977662 +1.042446 +-1.092977 +1.145057 +-1.187610 +1.169056 +-1.018113 +.690849 +-.213375 +-.312845 +.754217 +-1.014146 +1.081120 +-1.017988 +.896194 +-.726895 +.452325 +-.017399 +-.530529 +1.004794 +-1.160395 +.854053 +-.169795 +-.593373 +1.077875 +-1.067276 +.596597 +.090475 +-.691430 +.992577 +-.932550 +.578420 +-.068368 +-.431363 +.755442 +-.781518 +.490782 +-.005445 +-.449043 +.661527 +-.563711 +.274294 +-.018184 +-.023167 +-.181346 +.522482 +-.852313 +1.080965 +-1.191389 +1.182930 +-1.022784 +.668865 +-.146027 +-.405919 +.776427 +-.802154 +.472014 +.060196 +-.561905 +.843142 +-.835846 +.597036 +-.254872 +-.060350 +.268023 +-.358640 +.383109 +-.414902 +.502129 +-.637013 +.764279 +-.822755 +.785985 +-.667580 +.489551 +-.250138 +-.068086 +.448716 +-.797553 +.961067 +-.815578 +.368770 +.209922 +-.666808 +.803704 +-.585337 +.146532 +.292735 +-.537364 +.488630 +-.161399 +-.330331 +.801460 +-1.045075 +.914283 +-.412729 +-.267978 +.816726 +-.963138 +.638729 +-.028368 +-.534902 +.770517 +-.615151 +.242792 +.068285 +-.123723 +-.072591 +.345821 +-.482752 +.368007 +-.037478 +-.365930 +.682980 +-.810878 +.727118 +-.475492 +.139877 +.180327 +-.394638 +.448531 +-.343752 +.136886 +.089703 +-.270212 +.384480 +-.453800 +.506274 +-.539617 +.513582 +-.383682 +.152603 +.106022 +-.281815 +.303716 +-.199074 +.079479 +-.052053 +.122001 +-.172669 +.054348 +.278540 +-.694503 +.950129 +-.858831 +.438609 +.080246 +-.401863 +.360154 +-.019447 +-.386874 +.622730 +-.593405 +.374555 +-.130282 +-.000609 +-.028043 +.171727 +-.338847 +.438001 +-.411153 +.252337 +-.011685 +-.221064 +.354130 +-.337198 +.185413 +.033515 +-.242742 +.402590 +-.527233 +.658541 +-.814741 +.954275 +-.988490 +.842942 +-.526017 +.151116 +.113160 +-.138169 +-.086288 +.442734 +-.751567 +.868357 +-.754568 +.485578 +-.198930 +.015884 +.022981 +.024653 +-.042851 +-.063629 +.296839 +-.549801 +.666346 +-.542949 +.203002 +.210918 +-.523036 +.627165 +-.535611 +.348298 +-.175144 +.071967 +-.028501 +.003529 +.027712 +-.047715 +.004992 +.151435 +-.430210 +.770913 +-1.050734 +1.131380 +-.930067 +.478601 +.068395 +-.492540 +.616552 +-.402092 +-.017308 +.397341 +-.514989 +.298780 +.126142 +-.515994 +.664931 +-.535525 +.271420 +-.084694 +.103685 +-.293614 +.501216 +-.577576 +.481089 +-.290421 +.134852 +-.107695 +.223358 +-.430380 +.647310 +-.788209 +.775369 +-.560412 +.161231 +.313316 +-.692211 +.830633 +-.705155 +.438254 +-.219214 +.171789 +-.269827 +.369253 +-.331181 +.136326 +.100402 +-.222384 +.151959 +.056762 +-.267171 +.363754 +-.325455 +.218794 +-.128540 +.088922 +-.069055 +.016119 +.086162 +-.194541 +.235962 +-.162221 +-.016260 +.241685 +-.449163 +.597653 +-.669446 +.650604 +-.524130 +.290181 +.007758 +-.286232 +.466118 +-.525805 +.514179 +-.502889 +.513341 +-.483799 +.316639 +.022590 +-.436898 +.731306 +-.742566 +.473507 +-.120597 +-.045354 +-.129867 +.562942 +-.979919 +1.105337 +-.857186 +.404947 +-.049390 +.012995 +-.289538 +.653101 +-.812985 +.606260 +-.104314 +-.428749 +.693561 +-.531433 +.015933 +.587963 +-.968408 +.930037 +-.488222 +-.150460 +.702604 +-.952042 +.849556 +-.520783 +.184165 +-.027091 +.110070 +-.350923 +.591933 +-.701719 +.645730 +-.486261 +.324695 +-.234646 +.230525 +-.280786 +.342146 +-.384322 +.393660 +-.365423 +.298792 +-.199050 +.080988 +.032458 +-.115029 +.141483 +-.091005 +-.044938 +.248876 +-.466038 +.611378 +-.603855 +.415960 +-.106725 +-.192687 +.344059 +-.282598 +.059448 +.185491 +-.303108 +.212332 +.072920 +-.470860 +.876392 +-1.185544 +1.299469 +-1.140152 +.699444 +-.094637 +-.432329 +.612808 +-.310130 +-.366452 +1.092893 +-1.511750 +1.452186 +-1.032935 +.567699 +-.337857 +.400402 +-.573287 +.602609 +-.374448 +.002277 +.275020 +-.295226 +.108390 +.062766 +-.002089 +-.326731 +.748467 +-1.005959 +.946844 +-.626390 +.257371 +-.053845 +.087353 +-.254214 +.365519 +-.286115 +.022751 +.292468 +-.500051 +.515877 +-.369367 +.162824 +.004993 +-.091423 +.110178 +-.095992 +.070228 +-.029188 +-.048836 +.190586 +-.412634 +.700428 +-.989504 +1.172639 +-1.149522 +.899881 +-.525790 +.215278 +-.133197 +.308839 +-.605387 +.804640 +-.755361 +.481900 +-.173275 +.055776 +-.235595 +.619499 +-.968867 +1.051843 +-.794244 +.332424 +.065346 +-.160688 +-.108066 +.583707 +-.980056 +1.052585 +-.746724 +.231831 +.201811 +-.318043 +.070890 +.380958 +-.782182 +.934782 +-.800822 +.500728 +-.222563 +.107346 +-.178549 +.350184 +-.499309 +.552609 +-.530193 +.518461 +-.591841 +.742119 +-.872261 +.865600 +-.682432 +.409168 +-.216527 +.250686 +-.533713 +.944326 +-1.291199 +1.426205 +-1.322279 +1.072045 +-.818875 +.669914 +-.641716 +.664451 +-.638202 +.508420 +-.315641 +.183352 +-.241893 +.531680 +-.952489 +1.303642 +-1.398287 +1.178603 +-.752634 +.325959 +-.076504 +.059198 +-.201674 +.381446 +-.516527 +.598332 +-.650547 +.662156 +-.565279 +.287900 +.157752 +-.631028 +.917281 +-.858327 +.468449 +.057157 +-.460825 +.589963 +-.491202 +.358491 +-.372806 +.556710 +-.756819 +.766422 +-.490311 +.021847 +.424913 +-.671115 +.693844 +-.622382 +.619750 +-.745400 +.902218 +-.903571 +.608436 +-.028808 +-.661828 +1.221065 +-1.468611 +1.373474 +-1.048702 +.667825 +-.365540 +.186463 +-.102620 +.066904 +-.052229 +.051601 +-.057923 +.057159 +-.045661 +.047524 +-.102753 +.226830 +-.378704 +.474893 +-.449145 +.311677 +-.153770 +.083799 +-.140348 +.254832 +-.303048 +.213469 +-.045766 +-.033587 +-.125691 +.524902 +-.981784 +1.233509 +-1.110445 +.654857 +-.096928 +-.293092 +.368833 +-.176689 +-.102831 +.281116 +-.261950 +.063635 +.221946 +-.483253 +.622846 +-.575558 +.330442 +.044388 +-.402977 +.576062 +-.467045 +.132530 +.218383 +-.327208 +.042401 +.568006 +-1.228022 +1.596756 +-1.463646 +.876502 +-.118398 +-.456879 +.630014 +-.431739 +.095257 +.120019 +-.110215 +-.014470 +.035527 +.182664 +-.561625 +.842081 +-.763891 +.262800 +.462858 +-1.068164 +1.279286 +-1.058397 +.602755 +-.186304 +-.034960 +.111814 +-.224524 +.503380 +-.888049 +1.139466 +-1.006078 +.427793 +.375023 +-1.004776 +1.122158 +-.656523 +-.152106 +.905308 +-1.285068 +1.218338 +-.869701 +.490299 +-.245541 +.141004 +-.078125 +-.027838 +.170316 +-.269323 +.255459 +-.140513 +.013770 +.029482 +.035042 +-.141610 +.186770 +-.109004 +-.065257 +.238964 +-.304780 +.201551 +.064667 +-.431053 +.797016 +-1.041271 +1.049861 +-.767229 +.251672 +.314791 +-.697856 +.738679 +-.453782 +.025234 +.323789 +-.479930 +.500608 +-.536699 +.680933 +-.868580 +.915180 +-.663798 +.125148 +.498927 +-.925483 +.951223 +-.555658 +-.105534 +.787347 +-1.254518 +1.347831 +-1.017359 +.339377 +.486418 +-1.184376 +1.505006 +-1.343139 +.799010 +-.130575 +-.381262 +.567615 +-.421698 +.049053 +.419152 +-.872333 +1.207403 +-1.307889 +1.076817 +-.520095 +-.194512 +.783535 +-.999157 +.789321 +-.342861 +-.027780 +.092778 +.144480 +-.458787 +.565216 +-.313554 +-.218795 +.787195 +-1.135386 +1.133714 +-.821492 +.353895 +.089729 +-.380516 +.477435 +-.432818 +.369676 +-.426699 +.679121 +-1.074784 +1.436684 +-1.552940 +1.311627 +-.792036 +.238710 +.079503 +-.038088 +-.261800 +.559801 +-.607867 +.330337 +.134760 +-.534258 +.663169 +-.480756 +.112534 +.244983 +-.439324 +.423069 +-.240204 +-.027214 +.300598 +-.511797 +.595036 +-.499035 +.228502 +.117475 +-.359459 +.321554 +.055601 +-.650162 +1.199132 +-1.432243 +1.222916 +-.664045 +.022298 +.401645 +-.425769 +.070311 +.465984 +-.915293 +1.074349 +-.895819 +.497366 +-.090904 +-.128423 +.076458 +.187154 +-.498719 +.677496 +-.615824 +.331819 +.036889 +-.297004 +.297666 +-.019172 +-.398465 +.716886 +-.729646 +.389514 +.151022 +-.621997 +.796712 +-.630447 +.285488 +-.021791 +.020842 +-.258192 +.515180 +-.532803 +.210734 +.290507 +-.633451 +.536148 +.003504 +-.662519 +.983757 +-.685874 +-.125600 +1.008114 +-1.470212 +1.298492 +-.689445 +.093622 +.108845 +.138921 +-.567711 +.813796 +-.696059 +.330340 +-.012531 +-.018172 +-.252821 +.631150 +-.875700 +.867427 +-.662126 +.410670 +-.230855 +.136097 +-.064279 +-.034662 +.135791 +-.156779 +.041397 +.163266 +-.308785 +.239828 +.081433 +-.518244 +.826144 +-.810339 +.465135 +.009480 +-.334865 +.338066 +-.062217 +-.275940 +.447249 +-.369641 +.151303 +.006666 +.031582 +-.237363 +.445932 +-.484138 +.297950 +.013887 +-.279731 +.382141 +-.332796 +.239781 +-.198995 +.203523 +-.149454 +-.064617 +.427691 +-.791568 +.957967 +-.814011 +.413701 +.053741 +-.382194 +.467832 +-.351192 +.165424 +-.037013 +.009651 +-.036034 +.033268 +.042803 +-.156071 +.208243 +-.103757 +-.180497 +.565276 +-.899106 +1.033421 +-.901410 +.557109 +-.153159 +-.131010 +.172594 +.041147 +-.413618 +.788152 +-1.017142 +1.018271 +-.797559 +.438802 +-.069657 +-.184226 +.247702 +-.132397 +-.061316 +.191099 +-.152845 +-.053301 +.320204 +-.502209 +.507002 +-.344804 +.105043 +.109494 +-.233845 +.248017 +-.159538 +-.001445 +.167667 +-.234580 +.108951 +.209458 +-.580986 +.777667 +-.625431 +.143225 +.434469 +-.791249 +.738590 +-.353648 +-.060340 +.170211 +.168984 +-.823131 +1.470557 +-1.804927 +1.711573 +-1.312068 +.867564 +-.617091 +.650952 +-.882222 +1.115399 +-1.161411 +.933733 +-.481197 +-.047267 +.475385 +-.668969 +.577117 +-.244409 +-.197621 +.561625 +-.667589 +.431697 +.062078 +-.568688 +.795186 +-.572649 +-.022181 +.691227 +-1.087561 +1.027850 +-.599253 +.086982 +.220420 +-.206132 +-.036419 +.305671 +-.438275 +.391726 +-.229754 +.056551 +.036278 +.010030 +-.211031 +.521370 +-.828153 +.987963 +-.904474 +.594347 +-.182528 +-.179782 +.415015 +-.559219 +.711837 +-.937375 +1.197549 +-1.365564 +1.309025 +-.978640 +.441667 +.155031 +-.656699 +.958173 +-1.022495 +.871403 +-.570262 +.215289 +.085956 +-.245995 +.227037 +-.047938 +-.235652 +.558588 +-.858697 +1.074137 +-1.145540 +1.036899 +-.762514 +.390465 +-.009499 +-.319333 +.586136 +-.808470 +.979665 +-1.037337 +.890272 +-.497738 +-.053951 +.547664 +-.735395 +.497226 +.047680 +-.575272 +.742131 +-.410443 +-.247649 +.853407 +-1.068319 +.809379 +-.280613 +-.190681 +.379697 +-.285821 +.079962 +.056043 +-.064138 +.026838 +-.075331 +.272887 +-.559976 +.791300 +-.831208 +.642407 +-.314338 +.016870 +.093114 +.040579 +-.340477 +.636923 +-.761680 +.641120 +-.334754 +-.003454 +.216697 +-.233177 +.097449 +.069475 +-.150165 +.097716 +.049309 +-.204970 +.295159 +-.297290 +.239082 +-.163863 +.091807 +-.006322 +-.125506 +.315495 +-.530333 +.700815 +-.758014 +.669380 +-.449762 +.145070 +.190910 +-.503956 +.729094 +-.784239 +.593924 +-.144339 +-.465111 +1.024620 +-1.296483 +1.143874 +-.623171 +-.035351 +.561428 +-.806688 +.815659 +-.751188 +.733902 +-.729336 +.579349 +-.154055 +-.502781 +1.159978 +-1.535150 +1.478706 +-1.068805 +.553795 +-.195870 +.132962 +-.342721 +.702660 +-1.074235 +1.345974 +-1.431930 +1.269996 +-.853991 +.278116 +.264855 +-.564152 +.511165 +-.171099 +-.255115 +.554072 +-.615672 +.459499 +-.171958 +-.171789 +.527725 +-.842474 +1.019106 +-.949902 +.604478 +-.093460 +-.365271 +.570700 +-.466321 +.175227 +.083748 +-.136940 +-.044844 +.349475 +-.614427 +.734891 +-.716511 +.647715 +-.622083 +.670802 +-.748926 +.775756 +-.692062 +.492364 +-.217275 +-.076377 +.340095 +-.540529 +.657509 +-.686435 +.644568 +-.566533 +.479671 +-.372609 +.188554 +.133878 +-.587862 +1.048103 +-1.300551 +1.161042 +-.616853 +-.114527 +.677574 +-.784644 +.402617 +.218125 +-.705480 +.809179 +-.551598 +.179957 +.033441 +.016648 +-.226411 +.404703 +-.442147 +.386266 +-.373274 +.489763 +-.686763 +.812875 +-.730742 +.420967 +-.001055 +-.342390 +.453687 +-.281579 +-.101616 +.532225 +-.823217 +.846957 +-.600547 +.215788 +.106017 +-.207819 +.070894 +.176236 +-.343201 +.298327 +-.040810 +-.317930 +.635028 +-.809761 +.801472 +-.602132 +.212153 +.345427 +-.986228 +1.550565 +-1.849497 +1.756322 +-1.284513 +.594398 +.081678 +-.548868 +.724656 +-.639251 +.379566 +-.032525 +-.329065 +.625296 +-.758726 +.649832 +-.301698 +-.164896 +.550725 +-.677583 +.481033 +-.035315 +-.496847 +.943756 +-1.182659 +1.160833 +-.898564 +.489491 +-.087710 +-.140539 +.096234 +.186660 +-.545780 +.780868 +-.780275 +.595963 +-.407573 +.395002 +-.609512 +.939047 +-1.194065 +1.247741 +-1.120984 +.947244 +-.849297 +.832820 +-.786176 +.585695 +-.215537 +-.201736 +.490704 +-.553160 +.434397 +-.275199 +.197218 +-.221442 +.282284 +-.311536 +.308201 +-.331264 +.426717 +-.559577 +.615541 +-.476932 +.115992 +.366046 +-.786334 +.985423 +-.920428 +.684110 +-.437339 +.303850 +-.301510 +.356354 +-.379968 +.342784 +-.283314 +.253208 +-.256016 +.241604 +-.163186 +.041024 +.035139 +.022220 +-.212267 +.426031 +-.519689 +.423715 +-.195265 +-.031355 +.150661 +-.154529 +.107495 +-.061562 +-.002184 +.147921 +-.401943 +.695278 +-.890570 +.872362 +-.622057 +.216010 +.242488 +-.688530 +1.101358 +-1.458194 +1.697508 +-1.741938 +1.566207 +-1.242438 +.907112 +-.663843 +.500531 +-.294856 +-.087244 +.673115 +-1.335593 +1.852883 +-2.032602 +1.815627 +-1.298176 +.672552 +-.136180 +-.178428 +.231582 +-.072734 +-.179704 +.375268 +-.391213 +.200311 +.096092 +-.311566 +.288198 +-.011835 +-.358965 +.585158 +-.504698 +.142615 +.307903 +-.618942 +.675198 +-.528354 +.328755 +-.199933 +.157392 +-.126275 +.027743 +.145872 +-.325846 +.425045 +-.402629 +.283502 +-.126813 +-.019311 +.136775 +-.222851 +.268016 +-.255906 +.186769 +-.097040 +.046838 +-.077961 +.176466 +-.274939 +.297273 +-.211393 +.048354 +.124890 +-.254248 +.330266 +-.383297 +.453213 +-.560638 +.697910 +-.838132 +.948850 +-1.000838 +.973472 +-.861406 +.682191 +-.476529 +.295267 +-.178546 +.140586 +-.169289 +.236236 +-.305641 +.337708 +-.293406 +.149085 +.083365 +-.347922 +.560614 +-.646547 +.576929 +-.384755 +.150518 +.035476 +-.116532 +.097020 +-.035968 +.006376 +-.043305 +.117093 +-.153854 +.090111 +.078252 +-.287735 +.442841 +-.468941 +.350947 +-.141593 +-.060194 +.152406 +-.080818 +-.124363 +.351305 +-.458348 +.353358 +-.054081 +-.310866 +.567398 +-.593301 +.392301 +-.099708 +-.090041 +.038700 +.243846 +-.592237 +.778355 +-.652806 +.243824 +.255624 +-.606955 +.669690 +-.472255 +.169715 +.068753 +-.155414 +.103937 +.017470 +-.143313 +.232864 +-.258283 +.194487 +-.035128 +-.179260 +.358410 +-.403871 +.272732 +-.015348 +-.244758 +.378406 +-.321441 +.105194 +.166513 +-.373679 +.436370 +-.345797 +.161030 +.025247 +-.138910 +.171050 +-.189648 +.298500 +-.559526 +.928318 +-1.256309 +1.371308 +-1.188757 +.775348 +-.314726 +-.006255 +.113186 +-.080574 +.063127 +-.172147 +.387857 +-.574453 +.588577 +-.399335 +.125397 +.044838 +.006747 +-.233267 +.447437 +-.449645 +.169160 +.280343 +-.666603 +.779905 +-.557303 +.112629 +.341970 +-.628411 +.701343 +-.649697 +.605539 +-.631818 +.676292 +-.628411 +.434430 +-.174909 +.032653 +-.161903 +.551011 +-.987882 +1.170728 +-.901195 +.229860 +.552811 +-1.083335 +1.142086 +-.776168 +.249435 +.139954 +-.246828 +.148288 +-.059998 +.168090 +-.494859 +.884174 +-1.108362 +1.020045 +-.648875 +.182968 +.150013 +-.225244 +.097156 +.036884 +.037999 +-.416443 +1.004582 +-1.558875 +1.808116 +-1.592482 +.950534 +-.114262 +-.586738 +.871811 +-.641343 +.027508 +.669926 +-1.135416 +1.194742 +-.886338 +.409299 +.009707 +-.239173 +.281241 +-.220286 +.137318 +-.057922 +-.039715 +.181663 +-.365566 +.561288 +-.731869 +.845726 +-.870273 +.765837 +-.504733 +.113199 +.301206 +-.578542 +.594010 +-.351683 +.011452 +.186283 +-.059839 +-.399943 +1.018659 +-1.537841 +1.758444 +-1.636221 +1.277521 +-.853383 +.500558 +-.273913 +.166383 +-.160188 +.255551 +-.452891 +.713292 +-.947521 +1.059256 +-1.014090 +.872961 +-.751552 +.731568 +-.795270 +.838591 +-.751984 +.503529 +-.162103 +-.146782 +.310666 +-.277175 +.063795 +.255049 +-.568852 +.761507 +-.754881 +.548558 +-.223878 +-.102877 +.349597 +-.504999 +.601840 +-.654165 +.623651 +-.455422 +.154702 +.172356 +-.366952 +.329264 +-.105092 +-.128622 +.176249 +.047065 +-.460858 +.871918 +-1.089203 +1.023117 +-.716472 +.305629 +.052965 +-.251802 +.271810 +-.182270 +.102831 +-.141030 +.331413 +-.607655 +.827020 +-.841494 +.582846 +-.115576 +-.377610 +.681574 +-.666612 +.371840 +.003969 +-.211887 +.104883 +.263397 +-.664272 +.836320 +-.653697 +.205457 +.271337 +-.556975 +.591465 +-.489625 +.423063 +-.468226 +.544675 +-.492362 +.221154 +.192627 +-.542326 +.630861 +-.405138 +-.011536 +.401025 +-.575961 +.465254 +-.124230 +-.310180 +.681016 +-.869000 +.839616 +-.663548 +.485459 +-.437628 +.544457 +-.692461 +.705850 +-.486231 +.112310 +.188375 +-.190809 +-.155849 +.664391 +-1.011494 +.944379 +-.452203 +-.219075 +.722486 +-.830129 +.566200 +-.164204 +-.114323 +.166148 +-.106938 +.169885 +-.521385 +1.126567 +-1.756107 +2.124573 +-2.061489 +1.601400 +-.943315 +.322850 +.106016 +-.305909 +.308854 +-.150424 +-.149731 +.551211 +-.948814 +1.181306 +-1.108529 +.709974 +-.129066 +-.382624 +.597659 +-.439804 +.021277 +.434368 +-.729199 +.792784 +-.686092 +.521239 +-.371363 +.241344 +-.109900 +-.009034 +.049734 +.056905 +-.310267 +.607184 +-.783920 +.707563 +-.352959 +-.187089 +.757900 +-1.217602 +1.479296 +-1.509238 +1.310947 +-.929862 +.475003 +-.116686 +.024388 +-.262035 +.712055 +-1.102022 +1.142995 +-.704404 +-.087833 +.900686 +-1.367982 +1.286248 +-.719169 +-.044576 +.649477 +-.856012 +.649477 +-.220855 +-.162621 +.318180 +-.242696 +.087434 +-.035080 +.166995 +-.412837 +.613157 +-.644270 +.511442 +-.342864 +.290567 +-.411919 +.618271 +-.730561 +.604528 +-.236920 +-.225635 +.584112 +-.721077 +.670641 +-.571144 +.538499 +-.563896 +.523269 +-.296930 +-.096642 +.469016 +-.572584 +.280439 +.301614 +-.882362 +1.165250 +-1.033054 +.606931 +-.146550 +-.124496 +.138347 +.024370 +-.235778 +.418821 +-.568635 +.703581 +-.812470 +.854009 +-.803463 +.691677 +-.590648 +.553580 +-.562513 +.531370 +-.365030 +.030234 +.412008 +-.831744 +1.094160 +-1.124379 +.941312 +-.647498 +.381789 +-.255095 +.297174 +-.439381 +.544615 +-.473957 +.160886 +.342769 +-.875924 +1.235398 +-1.275173 +.986908 +-.511907 +.067145 +.177133 +-.191787 +.090829 +-.038912 +.131197 +-.332078 +.512539 +-.551905 +.425855 +-.221885 +.080187 +-.106502 +.311203 +-.603926 +.839205 +-.887414 +.698458 +-.328951 +-.083144 +.389237 +-.510396 +.477820 +-.402703 +.391800 +-.468607 +.561669 +-.570983 +.457439 +-.277028 +.126351 +-.045455 +-.031912 +.225985 +-.589391 +1.017413 +-1.276788 +1.150816 +-.602731 +-.167560 +.827658 +-1.114478 +.993047 +-.658058 +.379727 +-.312022 +.406372 +-.485116 +.401255 +-.150620 +-.144025 +.342593 +-.385947 +.305549 +-.159548 +-.025605 +.248196 +-.475945 +.613461 +-.544770 +.227593 +.241388 +-.656338 +.817283 +-.648851 +.237196 +.234873 +-.597897 +.768952 +-.750023 +.579567 +-.294928 +-.064337 +.433488 +-.722838 +.857889 +-.829774 +.707638 +-.593209 +.548692 +-.554623 +.531000 +-.402387 +.153135 +.168397 +-.491008 +.764592 +-.970241 +1.097224 +-1.120197 +1.004642 +-.736721 +.347433 +.093535 +-.509621 +.847267 +-1.079976 +1.190006 +-1.154392 +.959350 +-.637075 +.288014 +-.050699 +.020942 +-.173902 +.358193 +-.385512 +.161937 +.236134 +-.603605 +.739126 +-.573019 +.203792 +.169665 +-.360172 +.273616 +.073909 +-.586041 +1.127899 +-1.560460 +1.769629 +-1.695112 +1.352853 +-.836027 +.286499 +.155465 +-.403198 +.454268 +-.385109 +.309736 +-.318865 +.428967 +-.570846 +.629532 +-.518694 +.247259 +.065901 +-.246826 +.165194 +.181748 +-.657006 +1.058683 +-1.237631 +1.180114 +-.996907 +.827840 +-.735085 +.668570 +-.529304 +.274980 +.023366 +-.223742 +.220768 +-.030367 +-.216173 +.361382 +-.323539 +.139335 +.072759 +-.191500 +.160798 +-.013392 +-.151212 +.218923 +-.121680 +-.120131 +.400670 +-.586404 +.601235 +-.481516 +.354035 +-.342629 +.467495 +-.615938 +.616224 +-.368544 +-.061838 +.465072 +-.618164 +.439565 +-.054775 +-.281873 +.359269 +-.153260 +-.161200 +.334763 +-.211064 +-.181389 +.662692 +-1.017592 +1.104872 +-.901833 +.487739 +-.005120 +-.376827 +.503988 +-.296993 +-.189690 +.757090 +-1.135147 +1.118615 +-.686149 +.020009 +.594526 +-.928035 +.922115 +-.693960 +.441518 +-.322585 +.383631 +-.566596 +.767581 +-.899342 +.924768 +-.857070 +.739547 +-.618435 +.516974 +-.419757 +.278719 +-.046283 +-.278389 +.623332 +-.867033 +.907881 +-.736301 +.453320 +-.212383 +.118359 +-.155572 +.200641 +-.115226 +-.146447 +.494346 +-.758103 +.803359 +-.624363 +.343985 +-.120304 +.031588 +-.030115 +.001624 +.119877 +-.281416 +.349853 +-.231277 +-.032257 +.279544 +-.357278 +.255252 +-.131894 +.197490 +-.540422 +1.035191 +-1.412465 +1.445954 +-1.116928 +.630620 +-.268771 +.187413 +-.310139 +.395291 +-.223547 +-.235918 +.801701 +-1.208234 +1.283840 +-1.049816 +.682864 +-.386972 +.274370 +-.329041 +.454125 +-.550254 +.567475 +-.508969 +.402757 +-.272860 +.130119 +.018584 +-.158859 +.268739 +-.330021 +.339440 +-.309897 +.262999 +-.220792 +.199334 +-.200347 +.201891 +-.161282 +.043534 +.135343 +-.288846 +.300273 +-.111767 +-.202299 +.448912 +-.429283 +.081050 +.455946 +-.908027 +1.032112 +-.767349 +.273242 +.168061 +-.316892 +.101822 +.366419 +-.886275 +1.286653 +-1.494276 +1.514317 +-1.365159 +1.043045 +-.557187 +.000138 +.431617 +-.521370 +.182072 +.441604 +-1.017848 +1.212666 +-.897005 +.230866 +.436019 +-.779118 +.684763 +-.290837 +-.128781 +.345064 +-.299409 +.104966 +.055340 +-.052280 +-.123407 +.377238 +-.577728 +.623523 +-.479805 +.183052 +.175262 +-.480037 +.635531 +-.606287 +.431783 +-.199788 +-.007919 +.158223 +-.264472 +.342724 +-.369158 +.285994 +-.063526 +-.230391 +.424696 +-.334781 +-.100390 +.736590 +-1.277104 +1.443608 +-1.153531 +.576193 +-.023762 +-.247067 +.184234 +.055725 +-.235822 +.197013 +.059251 +-.399308 +.651989 +-.696854 +.504298 +-.131702 +-.301305 +.648431 +-.787493 +.678870 +-.400396 +.122895 +-.023853 +.185045 +-.540115 +.908095 +-1.091901 +.979012 +-.587215 +.041012 +.492078 +-.861838 +.969365 +-.779953 +.331234 +.261008 +-.817081 +1.145174 +-1.121941 +.760964 +-.220865 +-.264737 +.502385 +-.433521 +.152128 +.163735 +-.361567 +.395776 +-.332808 +.282977 +-.309388 +.377181 +-.376186 +.201352 +.163045 +-.610919 +.957553 +-1.035302 +.786269 +-.295862 +-.254195 +.685147 +-.910810 +.961452 +-.932013 +.897357 +-.859564 +.763945 +-.564146 +.277471 +.019108 +-.248487 +.395198 +-.510548 +.652085 +-.810404 +.894975 +-.802956 +.518900 +-.155002 +-.115713 +.189694 +-.120921 +.088653 +-.264596 +.683627 +-1.219214 +1.675253 +-1.911449 +1.901855 +-1.697422 +1.351714 +-.892758 +.364291 +.120261 +-.390149 +.313912 +.087972 +-.613002 +.972315 +-.956042 +.555515 +.040828 +-.568781 +.837834 +-.812175 +.588717 +-.313775 +.108266 +-.041152 +.137574 +-.385479 +.724853 +-1.040485 +1.189222 +-1.066030 +.672492 +-.139094 +-.322677 +.517186 +-.359695 +-.079176 +.601035 +-.966998 +1.006597 +-.699230 +.186319 +.298279 +-.548990 +.495527 +-.232146 +-.050705 +.189967 +-.148667 +.025387 +.028569 +.075447 +-.295899 +.487006 +-.498159 +.278602 +.082267 +-.404050 +.522172 +-.386030 +.089718 +.182817 +-.266016 +.110193 +.190644 +-.458715 +.543581 +-.413856 +.170139 +.028428 +-.073707 +-.019917 +.128939 +-.107628 +-.111588 +.471412 +-.825185 +1.028658 +-1.026494 +.879021 +-.716439 +.653873 +-.722153 +.853958 +-.929882 +.854253 +-.615672 +.295487 +-.016341 +-.139174 +.185454 +-.220469 +.342173 +-.550209 +.711682 +-.633409 +.206133 +.477000 +-1.123807 +1.389232 +-1.083561 +.305754 +.598117 +-1.235708 +1.397765 +-1.158162 +.778147 +-.495694 +.366902 +-.278722 +.105312 +.140895 +-.302070 +.217089 +.117293 +-.514515 +.727544 +-.630792 +.305489 +.032182 +-.188821 +.109172 +.125211 +-.385363 +.585772 +-.712925 +.791335 +-.832335 +.809927 +-.678560 +.418005 +-.073779 +-.238784 +.381774 +-.274042 +-.046160 +.425745 +-.678104 +.694712 +-.511675 +.282511 +-.172931 +.249209 +-.437023 +.579412 +-.552978 +.359841 +-.129334 +.026370 +-.131732 +.380925 +-.606108 +.650937 +-.476237 +.182852 +.061077 +-.135087 +.043957 +.093665 +-.135640 +.022545 +.175097 +-.303373 +.233634 +.045093 +-.416762 +.715318 +-.826195 +.737457 +-.514491 +.237054 +.042785 +-.296536 +.494832 +-.601324 +.594094 +-.487530 +.325107 +-.144898 +-.050571 +.289635 +-.592398 +.927438 +-1.199853 +1.285473 +-1.095957 +.639358 +-.038633 +-.510855 +.829804 +-.843166 +.613684 +-.295751 +.037394 +.102485 +-.164256 +.223000 +-.307575 +.373053 +-.347472 +.206198 +-.002350 +-.176203 +.281790 +-.341091 +.414315 +-.518312 +.590076 +-.531438 +.300735 +.029248 +-.301194 +.371751 +-.203007 +-.120046 +.451884 +-.675136 +.751173 +-.708106 +.592896 +-.433870 +.238626 +-.016599 +-.202871 +.373831 +-.452393 +.413671 +-.257386 +.005767 +.299439 +-.601152 +.836919 +-.955878 +.935253 +-.787595 +.556099 +-.300956 +.081269 +.063971 +-.129717 +.142937 +-.140116 +.134722 +-.100658 +-.007666 +.206048 +-.440299 +.596359 +-.567708 +.337669 +-.011317 +-.238957 +.284984 +-.131593 +-.088362 +.216544 +-.195139 +.117282 +-.156276 +.420741 +-.845151 +1.205048 +-1.256911 +.907195 +-.289150 +-.312741 +.642029 +-.629102 +.417978 +-.245130 +.262045 +-.433521 +.584276 +-.550615 +.313146 +-.005289 +-.203700 +.250176 +-.224335 +.288364 +-.536258 +.910948 +-1.242709 +1.372783 +-1.262479 +1.006281 +-.747379 +.567207 +-.434961 +.252844 +.041543 +-.397949 +.666019 +-.695182 +.450647 +-.056124 +-.275800 +.380117 +-.244568 +.008955 +.135176 +-.066534 +-.205105 +.563467 +-.856855 +.962125 +-.820553 +.455514 +.022935 +-.443980 +.647343 +-.572810 +.304574 +-.023782 +-.106910 +.042493 +.136620 +-.308344 +.410291 +-.477546 +.595769 +-.817677 +1.111059 +-1.369925 +1.470560 +-1.333357 +.962590 +-.455657 +-.021219 +.292512 +-.254458 +-.062765 +.500230 +-.855585 +.999414 +-.937033 +.765572 +-.561327 +.298756 +.117988 +-.727404 +1.399205 +-1.854504 +1.831736 +-1.285127 +.457526 +.247369 +-.517639 +.333923 +.026708 +-.188730 +-.061806 +.634971 +-1.202601 +1.416292 +-1.126119 +.464139 +.241557 +-.651170 +.582252 +-.081925 +-.614373 +1.199770 +-1.429537 +1.217003 +-.658991 +-.014586 +.542144 +-.739594 +.572137 +-.161987 +-.269802 +.503392 +-.420616 +.060363 +.401278 +-.740080 +.797818 +-.559491 +.151258 +.237381 +-.459544 +.483900 +-.394888 +.324654 +-.360523 +.486067 +-.594040 +.564587 +-.358407 +.059109 +.170981 +-.199254 +.022307 +.219721 +-.335175 +.221250 +.050493 +-.276053 +.267720 +-.002699 +-.343720 +.512712 +-.343836 +-.108233 +.605011 +-.877280 +.791458 +-.421909 +-.005682 +.253198 +-.205139 +-.070984 +.364186 +-.435551 +.151362 +.434454 +-1.095716 +1.545084 +-1.584373 +1.209823 +-.609151 +.051114 +.265512 +-.309548 +.202197 +-.105484 +.096261 +-.117415 +.039976 +.213643 +-.583093 +.892489 +-.970134 +.776358 +-.438075 +.156683 +-.055766 +.088014 +-.081536 +-.103602 +.433605 +-.698938 +.671184 +-.303573 +-.192055 +.474622 +-.328761 +-.148108 +.584080 +-.587355 +.037802 +.802151 +-1.445360 +1.497948 +-.912718 +.006243 +.757036 +-1.049885 +.842584 +-.354887 +-.129400 +.435286 +-.548838 +.551920 +-.525066 +.500296 +-.477018 +.455225 +-.440424 +.422532 +-.367393 +.245700 +-.076501 +-.064157 +.090776 +.021713 +-.207281 +.346232 +-.340459 +.166914 +.122664 +-.437688 +.681845 +-.769876 +.647099 +-.326826 +-.078218 +.378818 +-.404831 +.123250 +.312061 +-.634750 +.626682 +-.256159 +-.304905 +.794518 +-1.021907 +.967386 +-.764630 +.592750 +-.558582 +.642407 +-.732003 +.712728 +-.550746 +.313444 +-.115924 +.035377 +-.061082 +.119028 +-.147202 +.153226 +-.201676 +.342641 +-.547423 +.711074 +-.723241 +.550978 +-.269161 +.016914 +.087330 +-.014210 +-.166064 +.332090 +-.383497 +.291460 +-.102019 +-.100402 +.239431 +-.276089 +.214683 +-.094661 +-.023789 +.082040 +-.053467 +-.031474 +.089681 +-.029238 +-.187781 +.506066 +-.793639 +.908948 +-.778317 +.437554 +-.016710 +-.317894 +.431822 +-.272438 +-.112065 +.586273 +-.971317 +1.111497 +-.942481 +.527635 +-.035663 +-.335950 +.451320 +-.289622 +-.063322 +.467484 +-.784239 +.906939 +-.770457 +.361334 +.261235 +-.952284 +1.506910 +-1.737494 +1.571628 +-1.109474 +.587301 +-.248654 +.193654 +-.309945 +.348879 +-.110271 +-.393011 +.922831 +-1.182274 +1.043161 +-.654141 +.332397 +-.316258 +.575788 +-.838635 +.813662 +-.429924 +-.104666 +.471299 +-.494579 +.275400 +-.100019 +.208069 +-.611586 +1.103569 +-1.432151 +1.484881 +-1.333691 +1.121079 +-.903881 +.598395 +-.075126 +-.681115 +1.486548 +-2.029714 +2.057492 +-1.546926 +.742894 +-.032285 +-.269473 +.090991 +.363999 +-.742569 +.749880 +-.317095 +-.366058 +.968506 +-1.211918 +1.025162 +-.571529 +.140455 +.023164 +.151880 +-.545533 +.937670 +-1.140029 +1.086834 +-.840117 +.527316 +-.266416 +.125610 +-.123385 +.241522 +-.427033 +.589599 +-.622614 +.459550 +-.135328 +-.203064 +.367811 +-.251252 +-.085482 +.428624 +-.535435 +.288789 +.222385 +-.754902 +1.063545 +-1.051861 +.821465 +-.589191 +.533203 +-.676244 +.884469 +-.975770 +.853341 +-.566471 +.260314 +-.062577 +-.000838 +-.000732 +-.015889 +.068384 +-.101639 +.055846 +.056532 +-.141340 +.099758 +.069672 +-.236471 +.216340 +.085669 +-.574906 +.996132 +-1.084211 +.737979 +-.097350 +-.529218 +.839217 +-.700815 +.210750 +.378445 +-.806920 +.941426 +-.824442 +.622575 +-.512983 +.574017 +-.738188 +.829730 +-.666352 +.173052 +.551607 +-1.256974 +1.649299 +-1.539692 +.951533 +-.119324 +-.628909 +1.037832 +-1.036312 +.729273 +-.293048 +-.135736 +.498516 +-.776481 +.940120 +-.949872 +.805725 +-.584029 +.406619 +-.356157 +.411978 +-.470595 +.440075 +-.327008 +.235743 +-.274114 +.443223 +-.607223 +.577552 +-.254409 +-.280317 +.793645 +-1.042595 +.931322 +-.573564 +.212927 +-.054918 +.131785 +-.298449 +.358854 +-.221039 +-.039964 +.253889 +-.293636 +.164709 +.018919 +-.137995 +.155336 +-.119603 +.096914 +-.101297 +.086147 +.001863 +-.160825 +.322281 +-.402399 +.372040 +-.285286 +.239874 +-.299430 +.439658 +-.562653 +.570736 +-.443276 +.256290 +-.126916 +.122234 +-.201780 +.240683 +-.122435 +-.163190 +.489685 +-.659727 +.528944 +-.107044 +-.433396 +.851043 +-.975618 +.803457 +-.486684 +.223691 +-.127434 +.163730 +-.200483 +.127151 +.048404 +-.198559 +.169033 +.104980 +-.544296 +.967621 +-1.196151 +1.150035 +-.881131 +.534100 +-.268463 +.185485 +-.289010 +.488478 +-.639391 +.608498 +-.340823 +-.104362 +.575597 +-.905779 +1.000734 +-.882415 +.657995 +-.439670 +.275245 +-.136415 +-.037132 +.281033 +-.579901 +.879816 +-1.115393 +1.227029 +-1.167625 +.917114 +-.510268 +.054634 +.294574 +-.406658 +.252061 +.076457 +-.421540 +.657745 +-.753436 +.754568 +-.714293 +.636029 +-.479003 +.215258 +.118921 +-.424878 +.596264 +-.583021 +.420264 +-.208151 +.061978 +-.061200 +.217448 +-.469206 +.705480 +-.812369 +.726018 +-.465463 +.124734 +.173889 +-.339231 +.348342 +-.242606 +.090303 +.056751 +-.184201 +.302470 +-.411609 +.472202 +-.409493 +.159069 +.270078 +-.760666 +1.119565 +-1.174627 +.881301 +-.362947 +-.153969 +.474014 +-.543059 +.455281 +-.357275 +.331473 +-.353314 +.347552 +-.280044 +.194932 +-.164582 +.206188 +-.250772 +.198047 +-.007740 +-.257317 +.475042 +-.553452 +.485849 +-.329404 +.138366 +.078464 +-.336194 +.615476 +-.832436 +.875921 +-.685913 +.306064 +.137318 +-.514125 +.762082 +-.895309 +.951360 +-.931996 +.794963 +-.503973 +.087840 +.349841 +-.683955 +.840254 +-.825980 +.697519 +-.501118 +.244296 +.078438 +-.436525 +.745892 +-.908331 +.879396 +-.707241 +.506751 +-.384150 +.367364 +-.393639 +.365373 +-.234786 +.056387 +.034701 +.088968 +-.447616 +.911913 +-1.253895 +1.268097 +-.893485 +.262349 +.356750 +-.693901 +.617446 +-.199675 +-.329729 +.716767 +-.822460 +.681893 +-.448319 +.268022 +-.180915 +.119182 +.004390 +-.199443 +.377223 +-.421906 +.290133 +-.051595 +-.163665 +.267168 +-.280252 +.315566 +-.486565 +.812658 +-1.187180 +1.431436 +-1.401375 +1.080965 +-.602412 +.176199 +.031435 +.000676 +-.135072 +.162367 +.064744 +-.535116 +1.080238 +-1.467252 +1.522575 +-1.214651 +.659885 +-.062193 +-.376877 +.539414 +-.435068 +.190582 +.013931 +-.034422 +-.169510 +.525883 +-.898221 +1.151325 +-1.194882 +.997411 +-.590869 +.078799 +.369629 +-.569088 +.409576 +.060265 +-.624122 +.990824 +-.947539 +.486299 +.174484 +-.693791 +.786099 +-.378701 +-.341901 +1.026441 +-1.352787 +1.199320 +-.695975 +.121625 +.282672 +-.455013 +.511004 +-.606809 +.778925 +-.894492 +.760508 +-.309605 +-.290774 +.708922 +-.664648 +.137381 +.590812 +-1.099072 +1.093060 +-.593188 +-.079171 +.506033 +-.432439 +-.083651 +.718996 +-1.089776 +.979734 +-.453553 +-.201380 +.654639 +-.718052 +.430833 +-.009655 +-.291554 +.323086 +-.106117 +-.200799 +.404524 +-.387357 +.165632 +.129703 +-.334999 +.349114 +-.185883 +-.047298 +.228657 +-.304237 +.317116 +-.365811 +.526246 +-.794343 +1.086339 +-1.288117 +1.314691 +-1.143209 +.809898 +-.385485 +-.050112 +.422431 +-.667416 +.735478 +-.602785 +.289316 +.129107 +-.533051 +.802867 +-.874812 +.773682 +-.595235 +.446695 +-.385530 +.397127 +-.419713 +.390069 +-.275814 +.081670 +.159239 +-.395213 +.568504 +-.639090 +.614272 +-.556382 +.546245 +-.616334 +.707218 +-.696816 +.495276 +-.133554 +-.235235 +.437744 +-.411874 +.260814 +-.179302 +.304935 +-.607649 +.901207 +-.966626 +.699266 +-.183241 +-.346909 +.626676 +-.496144 +-.017559 +.705703 +-1.269882 +1.461336 +-1.203367 +.633359 +-.036718 +-.297595 +.224330 +.188811 +-.706982 +1.061023 +-1.090357 +.816920 +-.414032 +.095438 +.007614 +.087988 +-.241504 +.282711 +-.117925 +-.216060 +.579886 +-.819876 +.856208 +-.714508 +.488985 +-.275280 +.127417 +-.060926 +.078894 +-.180638 +.340650 +-.485414 +.507139 +-.322195 +-.062111 +.525275 +-.880934 +.970065 +-.745010 +.295218 +.198028 +-.549607 +.651372 +-.503342 +.183604 +.216943 +-.646440 +1.091373 +-1.524665 +1.850013 +-1.904600 +1.544071 +-.764371 +-.232313 +1.097981 +-1.509271 +1.343241 +-.738578 +-.001319 +.593238 +-.917019 +1.027856 +-1.054153 +1.078605 +-1.093889 +1.048055 +-.917409 +.734757 +-.554957 +.402632 +-.260336 +.110208 +.016003 +-.037975 +-.106854 +.382513 +-.636005 +.675020 +-.396334 +-.128975 +.681723 +-1.018805 +1.010951 +-.705212 +.282199 +.050687 +-.161210 +.041776 +.200969 +-.399344 +.399675 +-.136761 +-.322213 +.795818 +-1.075088 +1.039731 +-.731261 +.326871 +-.022975 +-.093136 +.090083 +-.123448 +.306476 +-.623416 +.951097 +-1.163429 +1.225268 +-1.196992 +1.152231 +-1.089537 +.922369 +-.563148 +.032676 +.500239 +-.793797 +.679940 +-.183420 +-.471120 +.973281 +-1.090863 +.782829 +-.199088 +-.418720 +.863001 +-1.038386 +.964089 +-.725953 +.424162 +-.145292 +-.044813 +.106276 +-.037855 +-.113605 +.264937 +-.334835 +.288905 +-.160304 +.025926 +.049411 +-.061460 +.068804 +-.141855 +.292918 +-.440364 +.440218 +-.172189 +-.372112 +1.056663 +-1.649371 +1.928044 +-1.787778 +1.293270 +-.650159 +.111133 +.137243 +-.052959 +-.254147 +.588836 +-.775065 +.741830 +-.542845 +.304163 +-.140590 +.099686 +-.164315 +.293414 +-.451681 +.599569 +-.666889 +.561192 +-.231579 +-.256876 +.717220 +-.938833 +.832001 +-.502325 +.180709 +-.052609 +.122011 +-.222739 +.165998 +.103361 +-.471462 +.759385 +-.863028 +.805764 +-.673610 +.513752 +-.301635 +.003098 +.341517 +-.606648 +.667047 +-.507094 +.252324 +-.087485 +.122270 +-.310380 +.482854 +-.465740 +.192865 +.260120 +-.728218 +1.047355 +-1.125935 +.971895 +-.679305 +.387190 +-.221136 +.233097 +-.368300 +.485980 +-.433357 +.134712 +.357236 +-.878696 +1.230612 +-1.272714 +.991828 +-.515436 +.062800 +.151356 +-.021342 +-.391225 +.884472 +-1.221167 +1.250265 +-.969567 +.495595 +.026598 +-.501655 +.898507 +-1.208562 +1.399408 +-1.412051 +1.205129 +-.807501 +.332245 +.065538 +-.263244 +.230819 +-.038292 +-.193397 +.365000 +-.447270 +.476020 +-.503777 +.549485 +-.585582 +.568557 +-.483319 +.362714 +-.267342 +.245296 +-.304157 +.411943 +-.517114 +.567136 +-.518709 +.350241 +-.084436 +-.194214 +.359200 +-.311152 +.060496 +.244324 +-.386504 +.217733 +.230448 +-.746283 +1.056609 +-.987641 +.563723 +.012287 +-.474917 +.635096 +-.467191 +.105660 +.240442 +-.405773 +.353537 +-.178260 +.028498 +-.005876 +.111501 +-.270642 +.403716 +-.480493 +.518679 +-.542746 +.550031 +-.515782 +.427894 +-.314317 +.234718 +-.239329 +.325816 +-.428299 +.451633 +-.332966 +.090082 +.179909 +-.356565 +.372272 +-.254656 +.102503 +-.011561 +.005851 +-.027617 +-.006272 +.126309 +-.274325 +.341344 +-.252010 +.029798 +.210664 +-.342238 +.316693 +-.199948 +.124945 +-.199187 +.435414 +-.750449 +1.022316 +-1.156356 +1.117050 +-.921376 +.620537 +-.294115 +.050874 +-.008507 +.236611 +-.686724 +1.165274 +-1.396451 +1.166165 +-.469740 +-.441106 +1.168168 +-1.386624 +1.041409 +-.385983 +-.171694 +.319456 +-.022500 +-.481137 +.858301 +-.902057 +.645260 +-.300530 +.085975 +-.071042 +.150588 +-.152492 +-.014741 +.289440 +-.507839 +.529629 +-.339407 +.054686 +.152949 +-.159981 +-.048662 +.385804 +-.716394 +.923084 +-.953288 +.832871 +-.648169 +.507702 +-.500299 +.663014 +-.965648 +1.313967 +-1.573905 +1.616293 +-1.370226 +.860128 +-.201602 +-.446498 +.945688 +-1.218827 +1.249848 +-1.058117 +.679386 +-.169126 +-.386340 +.876475 +-1.198900 +1.297285 +-1.176790 +.887527 +-.492028 +.041325 +.426836 +-.872657 +1.237631 +-1.444147 +1.421707 +-1.154151 +.720206 +-.288583 +.047054 +-.092827 +.353493 +-.605595 +.598731 +-.215972 +-.435044 +1.068358 +-1.380443 +1.223983 +-.683287 +.008880 +.534511 +-.798965 +.784814 +-.576983 +.259119 +.120367 +-.517210 +.844444 +-.971925 +.788262 +-.283832 +-.408175 +1.047814 +-1.386544 +1.277491 +-.745448 +-.013796 +.705820 +-1.056406 +.929531 +-.391163 +-.317557 +.890773 +-1.097495 +.877325 +-.346581 +-.276062 +.772496 +-1.002734 +.934091 +-.631257 +.225258 +.130041 +-.311885 +.281101 +-.106812 +-.061452 +.072481 +.134784 +-.482231 +.785234 +-.858053 +.633230 +-.218914 +-.149989 +.244010 +.024288 +-.544186 +1.064871 +-1.331277 +1.217831 +-.788814 +.258113 +.126737 +-.216737 +.040505 +.217470 +-.334742 +.198648 +.113813 +-.385837 +.415203 +-.166876 +-.188819 +.387211 +-.255611 +-.156598 +.599134 +-.782966 +.572679 +-.074003 +-.446376 +.750849 +-.790107 +.712085 +-.717444 +.881068 +-1.086974 +1.129437 +-.892978 +.458164 +-.046256 +-.147048 +.089361 +.085964 +-.201406 +.172710 +-.054971 +-.024340 +-.022123 +.174939 +-.330176 +.381741 +-.297059 +.134517 +.000521 +-.021640 +-.097779 +.328400 +-.615237 +.900406 +-1.121860 +1.205006 +-1.077928 +.719241 +-.207326 +-.279484 +.535236 +-.439890 +.042086 +.450087 +-.775184 +.762726 +-.428275 +-.039563 +.394668 +-.480550 +.316585 +-.068663 +-.074902 +.035849 +.104722 +-.173214 +.035751 +.300482 +-.688423 +.941903 +-.962584 +.803981 +-.630035 +.599563 +-.757987 +1.010176 +-1.188820 +1.165757 +-.926047 +.558498 +-.182004 +-.125764 +.343162 +-.465347 +.464640 +-.301352 +-.018576 +.397577 +-.671053 +.702023 +-.477546 +.126935 +.159506 +-.252899 +.159761 +-.000458 +-.078859 +-.011399 +.278165 +-.669169 +1.102782 +-1.475711 +1.662890 +-1.546252 +1.083350 +-.375357 +-.331073 +.740423 +-.663071 +.132026 +.603020 +-1.211987 +1.469404 +-1.369245 +1.096741 +-.880997 +.835342 +-.896927 +.902724 +-.736003 +.426609 +-.128470 +-.003570 +-.064173 +.219608 +-.292130 +.177812 +.094458 +-.397219 +.598579 +-.636533 +.524390 +-.303111 +-.002192 +.379387 +-.790465 +1.145296 +-1.326937 +1.259105 +-.964018 +.561327 +-.204840 +.002975 +.020033 +.096890 +-.301778 +.557667 +-.824880 +1.022837 +-1.024548 +.714153 +-.082143 +-.712776 +1.379719 +-1.633312 +1.360834 +-.711429 +.037479 +.291004 +-.093496 +-.518670 +1.208747 +-1.608613 +1.521348 +-1.012835 +.348277 +.172309 +-.371584 +.256304 +.033706 +-.335026 +.550186 +-.668880 +.727464 +-.752685 +.736375 +-.656365 +.520122 +-.387947 +.346724 +-.443133 +.622376 +-.727047 +.576888 +-.092236 +-.619419 +1.284412 +-1.597761 +1.397646 +-.769930 +.011566 +.528479 +-.634503 +.325861 +.177366 +-.594231 +.741713 +-.623496 +.405701 +-.300229 +.426219 +-.732763 +1.030500 +-1.113399 +.893077 +-.456840 +.010330 +.255594 +-.281571 +.161239 +-.057313 +.077938 +-.204716 +.322117 +-.319271 +.180903 +.004778 +-.124601 +.137130 +-.104051 +.127845 +-.247594 +.383139 +-.381107 +.132848 +.326597 +-.818097 +1.121622 +-1.110177 +.820252 +-.415188 +.076336 +.096551 +-.111687 +.036637 +.071458 +-.197140 +.342763 +-.484523 +.559258 +-.500516 +.294611 +-.006951 +-.245206 +.353561 +-.268688 +.011686 +.345269 +-.704648 +.962095 +-1.027040 +.857353 +-.496898 +.082146 +.208597 +-.247450 +.032421 +.311364 +-.611917 +.755525 +-.742530 +.659807 +-.603253 +.614412 +-.671237 +.721560 +-.720174 +.644046 +-.490236 +.273375 +-.027699 +-.196116 +.346620 +-.393291 +.338847 +-.214523 +.063553 +.074906 +-.174997 +.228155 +-.245809 +.259380 +-.310121 +.424025 +-.580592 +.699516 +-.669190 +.416184 +.023401 +-.487444 +.757435 +-.685371 +.298345 +.195781 +-.516727 +.472404 +-.072316 +-.476100 +.885315 +-.948105 +.647063 +-.153584 +-.277483 +.452444 +-.338426 +.064579 +.166966 +-.201488 +.012894 +.291490 +-.532294 +.545551 +-.256254 +-.285468 +.914533 +-1.406334 +1.563444 +-1.301147 +.690226 +.070095 +-.738188 +1.130471 +-1.185622 +.968727 +-.626623 +.324215 +-.184883 +.245599 +-.434874 +.590571 +-.531254 +.165229 +.421140 +-.968500 +1.170043 +-.859534 +.141489 +.636881 +-1.070942 +.931456 +-.298089 +-.488117 +1.019386 +-1.044446 +.595736 +.040989 +-.490815 +.497747 +-.065392 +-.549867 +.993903 +-1.028664 +.669744 +-.157257 +-.216428 +.295676 +-.132995 +-.096945 +.257735 +-.354163 +.502710 +-.806473 +1.241884 +-1.645734 +1.807723 +-1.598250 +1.046112 +-.324811 +-.332897 +.737472 +-.810708 +.597423 +-.228829 +-.136606 +.368642 +-.400459 +.241009 +.031569 +-.292360 +.409829 +-.300533 +-.020744 +.429667 +-.743186 +.817262 +-.634077 +.315948 +-.049321 +-.032795 +-.071409 +.247484 +-.357641 +.343729 +-.268957 +.271926 +-.463123 +.829768 +-1.212523 +1.379820 +-1.167280 +.600529 +.086540 +-.570077 +.630301 +-.294796 +-.174658 +.453192 +-.367221 +.002852 +.365236 +-.468688 +.224384 +.219717 +-.586744 +.638518 +-.300041 +-.318231 +.986794 +-1.458546 +1.556121 +-1.224543 +.546889 +.277485 +-.993113 +1.377197 +-1.326744 +.902215 +-.300434 +-.235544 +.525439 +-.523269 +.316603 +-.060699 +-.109845 +.142102 +-.072805 +-.008437 +.011496 +.111376 +-.341243 +.588941 +-.719429 +.611977 +-.241235 +-.270512 +.687222 +-.787705 +.517073 +-.046858 +-.320430 +.348986 +-.026504 +-.439932 +.783389 +-.863591 +.736581 +-.566805 +.470589 +-.425134 +.309516 +-.030665 +-.375533 +.747862 +-.901404 +.749898 +-.363140 +-.074977 +.373945 +-.435312 +.281692 +-.009156 +-.287819 +.557175 +-.773199 +.898245 +-.877790 +.687347 +-.390286 +.141064 +-.109731 +.372481 +-.849055 +1.336299 +-1.617867 +1.579067 +-1.259242 +.820112 +-.456802 +.301975 +-.369456 +.560897 +-.729562 +.765843 +-.654430 +.467725 +-.301471 +.201839 +-.140926 +.059484 +.062103 +-.171386 +.185838 +-.077600 +-.075193 +.127537 +.021359 +-.330436 +.618021 +-.675276 +.416112 +.046031 +-.456685 +.579746 +-.351189 +-.079385 +.449914 +-.562569 +.413764 +-.185280 +.102633 +-.264662 +.571389 +-.802977 +.785839 +-.516238 +.150126 +.122448 +-.212307 +.172434 +-.127909 +.164771 +-.268730 +.351099 +-.327655 +.183467 +.018355 +-.178411 +.217294 +-.113006 +-.092081 +.310574 +-.446492 +.438981 +-.298166 +.112165 +-.011178 +.098136 +-.382668 +.762720 +-1.073481 +1.178516 +-1.044890 +.750703 +-.420616 +.139040 +.091172 +-.314264 +.545697 +-.726680 +.755495 +-.573469 +.230644 +.130948 +-.369730 +.440820 +-.417835 +.421280 +-.509824 +.621535 +-.615315 +.385819 +.034787 +-.470753 +.707364 +-.636256 +.334400 +-.012027 +-.137383 +.074325 +.068117 +-.100210 +-.064885 +.337121 +-.524536 +.498650 +-.312311 +.164216 +-.229646 +.495569 +-.746458 +.728152 +-.364347 +-.155186 +.499100 +-.441667 +.038426 +.411382 +-.587123 +.380841 +.032996 +-.335783 +.297184 +.071213 +-.540964 +.833586 +-.799183 +.488001 +-.085751 +-.221426 +.352950 +-.349067 +.305772 +-.290184 +.299603 +-.286844 +.222628 +-.140206 +.121777 +-.233029 +.454876 +-.669506 +.721044 +-.516593 +.100022 +.355212 +-.638002 +.624179 +-.358246 +.036613 +.107109 +.048023 +-.419105 +.754807 +-.789100 +.421659 +.196235 +-.739287 +.909851 +-.635302 +.126690 +.246635 +-.188612 +-.336200 +1.080706 +-1.669659 +1.826062 +-1.523914 +.977707 +-.490159 +.267987 +-.323357 +.508379 +-.636694 +.597825 +-.395937 +.114671 +.140593 +-.278372 +.235892 +-.001093 +-.352378 +.655614 +-.705900 +.390957 +.202925 +-.793863 +1.045835 +-.773116 +.074037 +.703248 +-1.153251 +1.049706 +-.480013 +-.207343 +.610859 +-.511007 +-.012096 +.644234 +-1.034062 +.991462 +-.568745 +-.006010 +.479081 +-.700559 +.664099 +-.460232 +.199786 +.034989 +-.195857 +.255932 +-.209653 +.088081 +.038116 +-.091378 +.042301 +.058730 +-.109745 +.032922 +.159828 +-.366520 +.464622 +-.398364 +.218812 +-.049816 +.008234 +-.134518 +.373623 +-.608245 +.717429 +-.630822 +.359579 +.004006 +-.320794 +.466554 +-.395803 +.167400 +.096688 +-.303009 +.462789 +-.680778 +1.046264 +-1.505721 +1.835543 +-1.771528 +1.219855 +-.383720 +-.321160 +.530839 +-.192537 +-.382335 +.725863 +-.537578 +-.112011 +.843950 +-1.243669 +1.135985 +-.665482 +.144374 +.194341 +-.343144 +.465844 +-.709298 +1.048425 +-1.293392 +1.247383 +-.878764 +.362291 +.044310 +-.186595 +.111441 +-.001710 +.007703 +-.117377 +.171787 +-.010692 +-.372991 +.797791 +-1.009470 +.860998 +-.421486 +-.065043 +.337255 +-.276825 +-.033909 +.382451 +-.564462 +.497774 +-.252109 +-.006853 +.115751 +-.000865 +-.285359 +.593844 +-.762273 +.711569 +-.498725 +.285353 +-.232725 +.390006 +-.656967 +.853174 +-.844856 +.634047 +-.343734 +.114810 +.001274 +-.072273 +.219474 +-.509949 +.885691 +-1.176755 +1.188635 +-.813403 +.105189 +.718603 +-1.355917 +1.550166 +-1.215703 +.494814 +.295807 +-.816383 +.879396 +-.547485 +.088894 +.187274 +-.113801 +-.248782 +.671082 +-.908095 +.840310 +-.519007 +.107220 +.225340 +-.382525 +.361462 +-.222254 +.040643 +.128603 +-.266369 +.382606 +-.495434 +.608564 +-.702127 +.746357 +-.728960 +.673336 +-.627219 +.625591 +-.655757 +.656478 +-.557866 +.336009 +-.040850 +-.227756 +.382835 +-.409007 +.373092 +-.375783 +.476303 +-.643131 +.766124 +-.722555 +.454861 +-.013768 +-.454474 +.769718 +-.802992 +.551127 +-.162832 +-.113987 +.059374 +.375962 +-1.005729 +1.485776 +-1.508603 +.997077 +-.162961 +-.618519 +1.037045 +-1.021076 +.740387 +-.447988 +.290719 +-.231779 +.132118 +.091885 +-.373077 +.539229 +-.456247 +.145893 +.219611 +-.437840 +.411975 +-.198685 +-.056512 +.232291 +-.302589 +.322788 +-.359245 +.426138 +-.474482 +.431605 +-.256492 +-.026030 +.330108 +-.548758 +.608409 +-.510063 +.332036 +-.186936 +.154433 +-.231529 +.336268 +-.365704 +.269208 +-.083340 +-.098640 +.199708 +-.217020 +.217965 +-.277262 +.408214 +-.546606 +.601509 +-.528962 +.365045 +-.192150 +.072081 +-.008338 +-.029829 +.049250 +-.004465 +-.161415 +.433494 +-.677475 +.690589 +-.337511 +-.322692 +1.025186 +-1.434488 +1.346749 +-.821286 +.147759 +.330123 +-.413972 +.143656 +.263798 +-.569982 +.651310 +-.532580 +.318475 +-.094552 +-.123527 +.364750 +-.638115 +.890051 +-1.019311 +.936532 +-.625580 +.168970 +.275749 +-.537930 +.509550 +-.201312 +-.252832 +.655030 +-.841377 +.761703 +-.491157 +.169988 +.080408 +-.206873 +.218755 +-.155948 +.070394 +-.028489 +.103315 +-.330489 +.648002 +-.880576 +.812857 +-.325211 +-.499366 +1.385703 +-2.003012 +2.142513 +-1.816944 +1.221635 +-.597542 +.102533 +.225266 +-.412378 +.477307 +-.415608 +.250339 +-.084191 +.079704 +-.357528 +.884585 +-1.450842 +1.776365 +-1.688638 +1.245550 +-.706705 +.362365 +-.337467 +.513523 +-.627818 +.476970 +-.071192 +-.376660 +.614570 +-.536410 +.245479 +.044207 +-.178673 +.165502 +-.132618 +.194818 +-.350473 +.493506 +-.517195 +.407210 +-.239616 +.094980 +.020040 +-.162089 +.360631 +-.539882 +.542404 +-.250888 +-.290518 +.865716 +-1.209722 +1.176239 +-.822228 +.348092 +.053814 +-.320916 +.523102 +-.756717 +1.026727 +-1.217730 +1.176960 +-.841073 +.303397 +.234908 +-.595536 +.739699 +-.783869 +.901070 +-1.178525 +1.537657 +-1.780612 +1.735190 +-1.391786 +.924836 +-.574989 +.476824 +-.562766 +.618116 +-.445097 +.013554 +.508563 +-.858578 +.837890 +-.423149 +-.226332 +.853040 +-1.223223 +1.228919 +-.930869 +.526550 +-.252291 +.259175 +-.525436 +.860980 +-1.012683 +.814970 +-.293793 +-.343371 +.825596 +-.968199 +.760037 +-.341770 +-.096725 +.424109 +-.613503 +.712308 +-.774916 +.813915 +-.799475 +.694583 +-.490666 +.218289 +.064283 +-.287748 +.385750 +-.315563 +.091581 +.188207 +-.361415 +.283129 +.069120 +-.546970 +.894617 +-.898188 +.521418 +.069555 +-.609145 +.887303 +-.850131 +.592276 +-.269987 +.009525 +.132879 +-.157185 +.088870 +.034719 +-.159181 +.213082 +-.134505 +-.084626 +.371942 +-.596794 +.637308 +-.449899 +.094480 +.297922 +-.586562 +.672236 +-.522515 +.182417 +.222640 +-.508775 +.503252 +-.146371 +-.440072 +.988568 +-1.229712 +1.059059 +-.607658 +.158430 +.037431 +.084399 +-.380287 +.617991 +-.644756 +.485465 +-.308821 +.293437 +-.490183 +.775539 +-.926517 +.767292 +-.289990 +-.329598 +.830958 +-1.016778 +.855794 +-.482669 +.108011 +.095089 +-.061489 +-.163117 +.465922 +-.719887 +.822687 +-.720880 +.427405 +-.029787 +-.325172 +.481998 +-.351531 +-.029379 +.499044 +-.848456 +.936413 +-.767784 +.476806 +-.223465 +.077667 +.020496 +-.192924 +.500415 +-.862324 +1.086798 +-.995462 +.553485 +.090374 +-.683758 +1.014963 +-1.022992 +.805919 +-.536034 +.350697 +-.290927 +.311995 +-.337595 +.310908 +-.215569 +.069392 +.091967 +-.230311 +.317310 +-.344331 +.325399 +-.289469 +.263764 +-.257855 +.258822 +-.241665 +.188609 +-.104074 +.012708 +.059278 +-.104476 +.135140 +-.158226 +.145114 +-.029810 +-.247947 +.678998 +-1.153313 +1.499793 +-1.583258 +1.392782 +-1.051116 +.730170 +-.532291 +.431307 +-.323497 +.145957 +.043476 +-.104573 +-.052753 +.357063 +-.594919 +.562403 +-.232431 +-.200574 +.442269 +-.297563 +-.198723 +.808434 +-1.243824 +1.334377 +-1.098651 +.691516 +-.282091 +-.046074 +.311229 +-.571246 +.843935 +-1.075609 +1.177559 +-1.093135 +.835855 +-.471564 +.069921 +.325297 +-.684950 +.966223 +-1.109789 +1.074700 +-.877989 +.593998 +-.305143 +.046963 +.198244 +-.448081 +.657858 +-.717911 +.531608 +-.117716 +-.353230 +.635865 +-.558209 +.138737 +.411513 +-.804595 +.833673 +-.477611 +-.100198 +.645796 +-.940615 +.893217 +-.557935 +.084087 +.365602 +-.679121 +.814586 +-.781935 +.616185 +-.364482 +.083878 +.169204 +-.365262 +.523820 +-.698971 +.921024 +-1.133323 +1.188042 +-.933283 +.347803 +.380740 +-.919594 +.982833 +-.528071 +-.191456 +.775491 +-.933995 +.672164 +-.269414 +.066805 +-.218587 +.588920 +-.866491 +.808545 +-.430353 +-.002436 +.172680 +.049250 +-.508435 +.882034 +-.915752 +.594824 +-.122978 +-.258750 +.454560 +-.549682 +.684733 +-.893345 +1.050609 +-.974718 +.587504 +.005533 +-.576703 +.916589 +-.937417 +.676754 +-.237005 +-.262677 +.689880 +-.897580 +.770263 +-.309414 +-.316791 +.828919 +-.984166 +.718749 +-.181138 +-.367358 +.710463 +-.784152 +.673261 +-.520983 +.426857 +-.397893 +.367933 +-.255618 +.019873 +.312371 +-.650809 +.873143 +-.874893 +.623687 +-.194769 +-.239329 +.475739 +-.383980 +-.007403 +.497351 +-.796807 +.679052 +-.114642 +-.694980 +1.417776 +-1.773611 +1.686546 +-1.307696 +.894609 +-.633728 +.531200 +-.443237 +.211514 +.204331 +-.692551 +1.065813 +-1.180680 +1.013234 +-.651513 +.229704 +.139747 +-.396474 +.523579 +-.525302 +.415743 +-.224329 +.005316 +.166213 +-.218411 +.116151 +.118057 +-.413278 +.688315 +-.895863 +1.041713 +-1.162875 +1.278976 +-1.355738 +1.315683 +-1.097349 +.722734 +-.317807 +.058242 +-.067536 +.334188 +-.708776 +.988890 +-1.038088 +.858676 +-.569049 +.305736 +-.125609 +-.017191 +.205913 +-.465832 +.721646 +-.844304 +.748601 +-.461907 +.112670 +.147120 +-.225597 +.128665 +.058079 +-.218788 +.259069 +-.143366 +-.090090 +.344226 +-.508528 +.516867 +-.383774 +.191998 +-.036289 +-.037502 +.053290 +-.070303 +.121367 +-.173461 +.143747 +.039088 +-.373462 +.770314 +-1.098383 +1.259027 +-1.239577 +1.110278 +-.970879 +.887116 +-.860512 +.845541 +-.791896 +.675523 +-.500695 +.286327 +-.062075 +-.118249 +.168976 +-.002142 +-.403392 +.937477 +-1.363344 +1.421040 +-.985707 +.178358 +.663029 +-1.158598 +1.108499 +-.614099 +.008983 +.360678 +-.356640 +.116040 +.077602 +-.018378 +-.271426 +.570265 +-.631931 +.364529 +.116882 +-.585838 +.857463 +-.880231 +.717002 +-.460661 +.169704 +.130063 +-.401937 +.574789 +-.574098 +.383458 +-.075931 +-.223834 +.424097 +-.528810 +.621127 +-.775023 +.965371 +-1.055089 +.879512 +-.372129 +-.357740 +1.052827 +-1.428983 +1.321668 +-.778549 +.049165 +.527549 +-.687365 +.374916 +.228458 +-.806929 +1.088697 +-.991346 +.641424 +-.260008 +.002790 +.126220 +-.229887 +.391866 +-.583427 +.685445 +-.605086 +.381750 +-.181216 +.170554 +-.370249 +.607789 +-.623997 +.265491 +.376055 +-.987689 +1.220302 +-.916429 +.225372 +.479089 +-.827849 +.678507 +-.181342 +-.346256 +.636205 +-.619702 +.419358 +-.217832 +.121651 +-.117241 +.125137 +-.082035 +-.020598 +.155369 +-.295893 +.430344 +-.546573 +.617344 +-.609047 +.508826 +-.343433 +.171793 +-.059157 +.054406 +-.181365 +.435241 +-.772827 +1.104517 +-1.311803 +1.300769 +-1.063565 +.696425 +-.346542 +.118369 +-.011623 +-.056692 +.162714 +-.295322 +.357281 +-.253080 +-.007169 +.277918 +-.358538 +.133965 +.325923 +-.785717 +.977200 +-.758443 +.194017 +.491140 +-1.043367 +1.303648 +-1.250709 +.961848 +-.547888 +.117208 +.224121 +-.373676 +.266964 +.070128 +-.503181 +.842427 +-.945008 +.794504 +-.496761 +.196177 +.019261 +-.150056 +.238791 +-.298712 +.289206 +-.161623 +-.069505 +.301910 +-.398966 +.282844 +.009016 +-.350885 +.615968 +-.750026 +.772031 +-.709316 +.535903 +-.182445 +-.378442 +1.043170 +-1.574376 +1.714574 +-1.350856 +.613369 +.174613 +-.674924 +.727833 +-.432973 +.066678 +.102553 +.026335 +-.352125 +.664853 +-.783610 +.640604 +-.276392 +-.213064 +.714287 +-1.098705 +1.225166 +-.985650 +.387205 +.394471 +-1.056040 +1.305314 +-1.020298 +.324171 +.478028 +-1.063059 +1.250482 +-1.066474 +.687207 +-.317405 +.090249 +-.040420 +.138645 +-.335720 +.576596 +-.790298 +.893449 +-.829634 +.619657 +-.369209 +.206177 +-.184847 +.236479 +-.218132 +.030361 +.289882 +-.579373 +.656293 +-.441586 +.005230 +.484571 +-.856885 +1.008674 +-.921266 +.642440 +-.264510 +-.094658 +.322040 +-.355960 +.223994 +-.036210 +-.077723 +.054779 +.052076 +-.104053 +-.024258 +.341481 +-.708958 +.916008 +-.817358 +.437065 +.040609 +-.390209 +.487393 +-.369513 +.177317 +-.036155 +-.022839 +.047083 +-.085294 +.130344 +-.132675 +.061703 +.052827 +-.142963 +.167065 +-.152290 +.169290 +-.256691 +.362762 +-.364192 +.158438 +.239596 +-.678525 +.955064 +-.946540 +.694488 +-.376305 +.184813 +-.202668 +.358330 +-.489324 +.463353 +-.272727 +.039327 +.072068 +.025802 +-.270031 +.477036 +-.462122 +.172884 +.256863 +-.577165 +.575833 +-.215305 +-.337875 +.809239 +-.973540 +.774582 +-.340772 +-.102577 +.364076 +-.383330 +.244025 +-.104834 +.095816 +-.244903 +.474312 +-.659539 +.704550 +-.584813 +.341836 +-.050061 +-.212801 +.378698 +-.396098 +.245373 +.039741 +-.364485 +.598156 +-.629296 +.424952 +-.059430 +-.307575 +.498710 +-.401764 +.026722 +.493044 +-.958680 +1.195645 +-1.131124 +.822219 +-.423885 +.115111 +-.018591 +.147932 +-.403836 +.621419 +-.650908 +.435753 +-.045920 +-.358753 +.620054 +-.673076 +.576294 +-.458232 +.421075 +-.474848 +.550418 +-.572989 +.527698 +-.459466 +.410676 +-.360059 +.226993 +.051794 +-.434290 +.754872 +-.807418 +.481465 +.147044 +-.845020 +1.360778 +-1.576197 +1.559280 +-1.476807 +1.438267 +-1.402302 +1.227804 +-.827915 +.289966 +.152940 +-.286627 +.084007 +.264677 +-.487587 +.426538 +-.142480 +-.140939 +.203452 +.019826 +-.398930 +.694545 +-.702735 +.369313 +.184871 +-.728829 +1.032327 +-.964265 +.540138 +.088859 +-.690628 +1.032282 +-.966644 +.498027 +.205869 +-.875847 +1.257594 +-1.225116 +.829968 +-.263338 +-.240727 +.505726 +-.472726 +.206533 +.141420 +-.394873 +.419704 +-.176335 +-.261570 +.732772 +-1.052532 +1.091609 +-.837822 +.411257 +-.020252 +-.130752 +-.056072 +.510617 +-1.015952 +1.312333 +-1.234451 +.802575 +-.209573 +-.290969 +.525376 +-.480803 +.282703 +-.097683 +.036114 +-.114872 +.285125 +-.484428 +.667998 +-.807132 +.874696 +-.842519 +.695433 +-.446796 +.139665 +.167260 +-.417137 +.566074 +-.588711 +.484261 +-.282545 +.041018 +.173118 +-.309078 +.350262 +-.314097 +.239755 +-.176032 +.172402 +-.263948 +.446653 +-.660075 +.805361 +-.803949 +.661184 +-.477927 +.383953 +-.431313 +.530884 +-.496159 +.179690 +.390421 +-.982097 +1.279813 +-1.087409 +.478058 +.219696 +-.605044 +.446716 +.171015 +-.891926 +1.293613 +-1.127401 +.449631 +.424529 +-1.104797 +1.332183 +-1.093173 +.592452 +-.119470 +-.105324 +.024488 +.254820 +-.534207 +.628339 +-.454521 +.072455 +.345257 +-.604120 +.596896 +-.365578 +.070517 +.118967 +-.138285 +.062385 +-.035852 +.151744 +-.373119 +.558889 +-.575442 +.410113 +-.199071 +.142813 +-.362923 +.798232 +-1.216925 +1.346117 +-1.041030 +.384731 +.350256 +-.857874 +.972095 +-.744852 +.379226 +-.070029 +-.131156 +.327387 +-.657745 +1.141385 +-1.610034 +1.792820 +-1.501849 +.785249 +.071774 +-.710982 +.922181 +-.767003 +.518056 +-.457699 +.681046 +-1.040997 +1.267340 +-1.164776 +.742620 +-.187269 +-.289494 +.601751 +-.822967 +1.083204 +-1.422029 +1.723620 +-1.791730 +1.506216 +-.934338 +.306371 +.125643 +-.235141 +.066712 +.236663 +-.545554 +.798330 +-.972017 +1.028908 +-.915239 +.623118 +-.248154 +-.033731 +.074696 +.133825 +-.444000 +.652237 +-.642813 +.463943 +-.281164 +.249035 +-.401392 +.637105 +-.801290 +.792334 +-.615735 +.355346 +-.098411 +-.118715 +.304038 +-.460250 +.548519 +-.507595 +.314845 +-.031155 +-.218166 +.317682 +-.230877 +.008809 +.261731 +-.517654 +.734501 +-.895941 +.963517 +-.888245 +.657038 +-.324963 +-.005581 +.246998 +-.376019 +.428362 +-.447869 +.441768 +-.383428 +.254463 +-.078565 +-.089024 +.203701 +-.258298 +.265348 +-.216783 +.073012 +.194822 +-.545026 +.852614 +-.972670 +.837339 +-.507186 +.131305 +.152728 +-.298929 +.352983 +-.381381 +.395076 +-.332889 +.118811 +.252738 +-.673449 +.962259 +-.973934 +.702893 +-.302571 +-.006590 +.084230 +.034373 +-.170627 +.142077 +.098064 +-.431137 +.674012 +-.725813 +.640291 +-.567442 +.615738 +-.748887 +.802086 +-.607932 +.138334 +.443783 +-.864986 +.903282 +-.526667 +-.079341 +.610147 +-.804697 +.576613 +-.044280 +-.546099 +.950105 +-1.031987 +.799669 +-.370147 +-.094984 +.444290 +-.570268 +.433807 +-.083335 +-.349892 +.701894 +-.857993 +.813158 +-.658621 +.499565 +-.371113 +.225920 +-.002401 +-.292827 +.567714 +-.708857 +.666969 +-.488043 +.271304 +-.102431 +.021557 +-.036551 +.142852 +-.313077 +.469588 +-.488073 +.260840 +.212707 +-.781762 +1.198631 +-1.253859 +.908983 +-.335643 +-.173382 +.371968 +-.203849 +-.169389 +.472878 +-.486886 +.170791 +.332686 +-.805370 +1.093731 +-1.186471 +1.185210 +-1.199776 +1.247887 +-1.231694 +1.006293 +-.491381 +-.252792 +1.037454 +-1.637222 +1.900681 +-1.812092 +1.476485 +-1.052055 +.678072 +-.433920 +.333595 +-.341457 +.395547 +-.433304 +.415561 +-.340781 +.240955 +-.160519 +.131305 +-.156973 +.212164 +-.252351 +.229528 +-.111866 +-.096459 +.346226 +-.556930 +.653483 +-.605604 +.442445 +-.230686 +.032556 +.123653 +-.241871 +.335520 +-.410175 +.464798 +-.498311 +.501732 +-.439864 +.254018 +.090539 +-.536800 +.914068 +-1.011124 +.716061 +-.121139 +-.502528 +.862071 +-.824761 +.491941 +-.112469 +-.093559 +.068235 +.082400 +-.199250 +.195788 +-.105900 +.035011 +-.068771 +.212086 +-.393517 +.516885 +-.515505 +.377044 +-.136384 +-.145700 +.401895 +-.572697 +.621237 +-.547956 +.394760 +-.227395 +.101336 +-.033881 +.005873 +.008109 +-.009852 +-.021133 +.094651 +-.180267 +.218241 +-.170733 +.068667 +-.004696 +.066634 +-.260477 +.488472 +-.608126 +.533638 +-.305582 +.074610 +-.007258 +.178059 +-.521975 +.877867 +-1.088741 +1.087609 +-.914551 +.666129 +-.426022 +.228249 +-.065961 +-.080037 +.224015 +-.373858 +.528225 +-.664132 +.731893 +-.680185 +.503810 +-.270910 +.090247 +-.030440 +.057559 +-.054546 +-.080093 +.333082 +-.566027 +.613318 +-.413364 +.064130 +.248424 +-.395842 +.410250 +-.459108 +.705703 +-1.160106 +1.636245 +-1.854790 +1.625995 +-.987721 +.202678 +.387383 +-.557529 +.320394 +.102610 +-.433509 +.507854 +-.351278 +.123204 +.017152 +-.020139 +-.042405 +.056854 +.030133 +-.162565 +.210390 +-.062214 +-.285025 +.697361 +-.960811 +.900072 +-.491584 +-.103728 +.621353 +-.844972 +.730719 +-.417778 +.119345 +.022825 +-.012153 +-.047934 +.068610 +-.058539 +.106954 +-.287564 +.569264 +-.812434 +.858795 +-.648508 +.277564 +.049954 +-.146880 +-.034816 +.365116 +-.609378 +.569964 +-.206468 +-.342960 +.849848 +-1.130006 +1.133726 +-.939822 +.673476 +-.416661 +.173566 +.096248 +-.413337 +.735660 +-.969561 +1.027183 +-.890215 +.633835 +-.388287 +.258974 +-.258576 +.301445 +-.267699 +.091413 +.193922 +-.488129 +.709134 +-.859895 +1.019258 +-1.260217 +1.561432 +-1.789521 +1.775283 +-1.430679 +.817116 +-.112626 +-.495279 +.908992 +-1.143305 +1.266583 +-1.317305 +1.263984 +-1.037233 +.609253 +-.063626 +-.399308 +.540723 +-.214694 +-.521573 +1.396719 +-2.041776 +2.180228 +-1.777191 +1.048976 +-.323885 +-.151136 +.326689 +-.318296 +.266722 +-.210316 +.070428 +.246293 +-.721154 +1.183276 +-1.395756 +1.207477 +-.660403 +-.022360 +.556620 +-.745230 +.566852 +-.164383 +-.246595 +.492266 +-.519540 +.405663 +-.300723 +.335595 +-.543852 +.837702 +-1.050630 +1.024682 +-.697975 +.147638 +.435110 +-.828561 +.883298 +-.593030 +.095697 +.397067 +-.703057 +.747689 +-.575529 +.297746 +-.018266 +-.209591 +.374082 +-.466434 +.457731 +-.316481 +.049706 +.276748 +-.564706 +.737887 +-.774630 +.689794 +-.488955 +.151207 +.327536 +-.863108 +1.260628 +-1.293467 +.853538 +-.067518 +-.725303 +1.149856 +-1.025952 +.495753 +.053431 +-.234095 +-.088578 +.709545 +-1.223870 +1.296438 +-.874812 +.205220 +.345749 +-.529534 +.352569 +-.035292 +-.156414 +.079894 +.223907 +-.598141 +.895977 +-1.066009 +1.143990 +-1.177288 +1.158043 +-1.026122 +.736906 +-.329750 +-.069419 +.321527 +-.366803 +.260209 +-.120832 +.038505 +-.016181 +-.007263 +.080783 +-.184316 +.243690 +-.202981 +.088479 +-.005886 +.070040 +-.321253 +.689713 +-1.032035 +1.211903 +-1.173086 +.963010 +-.699090 +.501368 +-.431095 +.467209 +-.530756 +.540761 +-.467960 +.354208 +-.284996 +.330033 +-.489631 +.684331 +-.799335 +.756726 +-.565115 +.310639 +-.095939 +-.026416 +.076812 +-.114806 +.180281 +-.258152 +.292495 +-.234887 +.086882 +.095560 +-.235760 +.280262 +-.221471 +.089150 +.075860 +-.243360 +.399329 +-.538669 +.653831 +-.726120 +.723592 +-.610841 +.374159 +-.052109 +-.254092 +.414160 +-.342623 +.070852 +.241212 +-.383062 +.227721 +.164841 +-.558605 +.680289 +-.404080 +-.147187 +.668126 +-.869883 +.675633 +-.271564 +-.023563 +-.026089 +.427504 +-.976372 +1.405982 +-1.547590 +1.394704 +-1.055017 +.657488 +-.294071 +.020909 +.116481 +-.080961 +-.127114 +.442281 +-.743847 +.905547 +-.852849 +.591903 +-.198769 +-.215159 +.539572 +-.692160 +.637519 +-.399425 +.060156 +.262536 +-.460181 +.481411 +-.354852 +.169431 +-.021269 +-.039819 +.030701 +-.011804 +.040613 +-.134726 +.265772 +-.380627 +.430353 +-.389547 +.263272 +-.087878 +-.071671 +.136547 +-.049721 +-.177789 +.443124 +-.583439 +.462190 +-.060717 +-.491163 +.976399 +-1.209251 +1.133657 +-.838996 +.490511 +-.227895 +.097950 +-.053745 +.004439 +.125797 +-.363456 +.681976 +-1.014671 +1.271137 +-1.357067 +1.202092 +-.790608 +.178448 +.516366 +-1.142339 +1.545966 +-1.601644 +1.252172 +-.562295 +-.249455 +.856754 +-.968473 +.504972 +.314103 +-1.056841 +1.310885 +-.920470 +.075626 +.801296 +-1.293401 +1.202321 +-.621365 +-.146613 +.754148 +-.960414 +.708794 +-.122789 +-.556760 +1.065395 +-1.213739 +.961040 +-.430639 +-.147127 +.542550 +-.629788 +.432380 +-.092077 +-.212917 +.353496 +-.300410 +.126021 +.037425 +-.065040 +-.094371 +.385676 +-.672584 +.814198 +-.749862 +.533838 +-.290136 +.116620 +-.011013 +-.117517 +.353421 +-.670242 +.909779 +-.879578 +.506727 +.072799 +-.573943 +.745087 +-.543018 +.163280 +.105962 +-.099358 +-.107864 +.273405 +-.193438 +-.125673 +.467892 +-.578464 +.366076 +.025499 +-.330051 +.361969 +-.148303 +-.108863 +.199903 +-.065919 +-.175538 +.346435 +-.358640 +.269857 +-.203964 +.215811 +-.228688 +.106193 +.203294 +-.581984 +.803350 +-.698917 +.297958 +.176971 +-.460265 +.426377 +-.168364 +-.081402 +.121927 +.084003 +-.406783 +.664633 +-.758699 +.726316 +-.683937 +.719482 +-.826183 +.924679 +-.941923 +.870956 +-.762163 +.663142 +-.570548 +.441494 +-.253279 +.052519 +.058366 +.004232 +-.225830 +.476908 +-.583302 +.444731 +-.120913 +-.184139 +.246178 +.018222 +-.465394 +.790441 +-.722337 +.224913 +.442579 +-.865129 +.731574 +-.042297 +-.876237 +1.559652 +-1.671557 +1.179979 +-.348128 +-.432687 +.852477 +-.816130 +.448328 +.004543 +-.306732 +.334713 +-.113409 +-.216697 +.481298 +-.564927 +.467946 +-.294573 +.177094 +-.185462 +.283864 +-.362449 +.316952 +-.117487 +-.175210 +.445124 +-.576059 +.497255 +-.209069 +-.211553 +.629257 +-.896141 +.914533 +-.685511 +.310019 +.064251 +-.320117 +.424150 +-.425185 +.406044 +-.426401 +.494651 +-.579642 +.644121 +-.670871 +.664135 +-.631245 +.563988 +-.438329 +.235412 +.030973 +-.304163 +.505428 +-.577522 +.523686 +-.413674 +.347222 +-.392698 +.535963 +-.673604 +.664454 +-.421298 +-.006678 +.419516 +-.551306 +.223740 +.520107 +-1.397142 +2.012874 +-2.071384 +1.539025 +-.659768 +-.183183 +.665691 +-.660314 +.249759 +.357170 +-.930851 +1.289509 +-1.328794 +1.041730 +-.539983 +.046463 +.179587 +.021299 +-.584869 +1.210190 +-1.500839 +1.197523 +-.356983 +-.652869 +1.356766 +-1.450895 +.972625 +-.250481 +-.320701 +.514709 +-.361143 +.052631 +.224795 +-.396972 +.482550 +-.505622 +.444424 +-.265834 +-.000254 +.236199 +-.303143 +.149795 +.132719 +-.364487 +.401162 +-.230916 +-.029590 +.227273 +-.272158 +.169295 +.022851 +-.250010 +.477781 +-.663825 +.737708 +-.633204 +.357674 +-.029250 +-.174097 +.134259 +.110014 +-.375837 +.461427 +-.291412 +-.029703 +.294752 +-.337422 +.134377 +.198017 +-.490743 +.620593 +-.558853 +.358494 +-.106413 +-.123993 +.298083 +-.418058 +.502051 +-.559428 +.578399 +-.532088 +.397830 +-.177519 +-.090978 +.337210 +-.479325 +.460777 +-.289165 +.051998 +.111873 +-.081475 +-.172262 +.556448 +-.897735 +1.036828 +-.918789 +.620301 +-.295765 +.080914 +-.020838 +.069325 +-.148835 +.214976 +-.272330 +.336116 +-.382844 +.341472 +-.138623 +-.236625 +.701042 +-1.105799 +1.309010 +-1.246143 +.957583 +-.562286 +.197878 +.037796 +-.116065 +.070515 +.033585 +-.130830 +.171943 +-.124138 +-.030555 +.285694 +-.593972 +.864920 +-.995936 +.928207 +-.690381 +.391011 +-.156161 +.052715 +-.054125 +.074585 +-.044590 +-.031733 +.082149 +-.028428 +-.145689 +.373721 +-.545727 +.573681 +-.434648 +.169725 +.145740 +-.431101 +.616257 +-.653310 +.533254 +-.297631 +.027108 +.195789 +-.325646 +.366258 +-.349442 +.302547 +-.230799 +.121778 +.038287 +-.247862 +.475728 +-.652505 +.683308 +-.495294 +.106130 +.336221 +-.595367 +.473617 +.045402 +-.743380 +1.264133 +-1.318983 +.871233 +-.168515 +-.410703 +.598514 +-.401183 +.071977 +.081520 +.088535 +-.487608 +.873158 +-1.037489 +.938302 +-.695618 +.485739 +-.428198 +.539450 +-.755495 +.977540 +-1.104311 +1.054257 +-.796500 +.386674 +.027963 +-.266418 +.220052 +.059920 +-.367843 +.459508 +-.214404 +-.265970 +.700872 +-.796876 +.432371 +.261047 +-.970643 +1.375343 +-1.307886 +.817012 +-.116328 +-.528279 +.905216 +-.918193 +.597629 +-.075148 +-.465174 +.846313 +-.953506 +.767196 +-.362276 +-.125812 +.554776 +-.826836 +.914527 +-.848963 +.679720 +-.437494 +.131243 +.215227 +-.521999 +.657590 +-.509791 +.083703 +.451669 +-.825152 +.814166 +-.390427 +-.243919 +.765524 +-.917844 +.653966 +-.142081 +-.361403 +.674444 +-.774964 +.762800 +-.745856 +.747558 +-.704809 +.546904 +-.282271 +.017432 +.110135 +-.033279 +-.190261 +.416178 +-.518396 +.479042 +-.391613 +.374260 +-.465659 +.591701 +-.631436 +.524413 +-.324311 +.150119 +-.076189 +.057397 +.042689 +-.337288 +.804592 +-1.268750 +1.496934 +-1.350030 +.883870 +-.328001 +-.048786 +.099508 +.120157 +-.403812 +.540919 +-.456414 +.251324 +-.124125 +.231150 +-.577582 +1.002227 +-1.260702 +1.158908 +-.666743 +-.048238 +.689791 +-.975248 +.778007 +-.190891 +-.524881 +1.072459 +-1.255379 +1.046624 +-.570903 +.029177 +.388105 +-.566554 +.498761 +-.276881 +.047795 +.056401 +.016828 +-.215977 +.419170 +-.510700 +.455270 +-.322570 +.242288 +-.313185 +.523412 +-.738048 +.771506 +-.506143 +-.018077 +.605822 +-1.005714 +1.046770 +-.726236 +.197193 +.327241 +-.684491 +.821504 +-.782006 +.651295 +-.503172 +.374114 +-.264338 +.154107 +-.026809 +-.109621 +.217786 +-.254179 +.212188 +-.150620 +.173940 +-.364332 +.711337 +-1.096282 +1.352641 +-1.364819 +1.135767 +-.777306 +.434958 +-.205586 +.103502 +-.085770 +.101284 +-.119139 +.121851 +-.087253 +-.009565 +.168981 +-.342259 +.441321 +-.385568 +.154607 +.190080 +-.526625 +.720487 +-.674483 +.367775 +.121754 +-.625073 +.936091 +-.906432 +.532976 +.027879 +-.546481 +.857043 +-.945503 +.919555 +-.887077 +.849961 +-.709366 +.381414 +.080395 +-.474255 +.578220 +-.323050 +-.132760 +.496874 +-.543563 +.270582 +.107195 +-.322376 +.253245 +-.007981 +-.164535 +.067021 +.293372 +-.701319 +.878893 +-.676555 +.178483 +.344921 +-.600520 +.443246 +.050421 +-.640419 +1.063932 +-1.168216 +.963192 +-.580759 +.183783 +.111585 +-.260880 +.268040 +-.151038 +-.068395 +.346125 +-.596982 +.710836 +-.610349 +.316329 +.032088 +-.233853 +.137144 +.260723 +-.793216 +1.206288 +-1.297049 +1.025475 +-.531579 +.052274 +.205602 +-.160244 diff -r f2985e08589c -r 7e08477b0fc1 decoders/libmpg123/dnoise.sh --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/decoders/libmpg123/dnoise.sh Fri Jan 30 02:44:47 2009 -0500 @@ -0,0 +1,31 @@ +#!/bin/sh + +# A script to generate dnoise.c from a plain text file with the noise numbers. +# In future, the plain text file (or a binary version) may be used by mpg123 at runtime instead of compiling it in. + +# copyright 2006-8 by the mpg123 project - free software under the terms of the LGPL 2.1 +# initially written by Thomas Orgis + +echo '/* + dnoise: Noise for dithered output. + + copyright 2006-8 by the mpg123 project - free software under the terms of the LGPL 2.1 + see COPYING and AUTHORS files in distribution or http://mpg123.org + initially written by (in assembler) Adrian Bacon +*/ + +float dithernoise[65536] = +{' + +# If sed is there, use it. +if echo -n | sed ''; then + sed -e 's/$/f,/' < "$1" +else +# Plain sh... very slow, but works. + while read i + do + echo "${i}f," + done < "$1" +fi + +echo '};'; diff -r f2985e08589c -r 7e08477b0fc1 decoders/libmpg123/equalizer.c --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/decoders/libmpg123/equalizer.c Fri Jan 30 02:44:47 2009 -0500 @@ -0,0 +1,17 @@ +/* + equalizer.c: equalizer settings + + copyright ?-2006 by the mpg123 project - free software under the terms of the LGPL 2.1 + see COPYING and AUTHORS files in distribution or http://mpg123.org + initially written by Michael Hipp +*/ + + +#include "mpg123lib_intern.h" + +void do_equalizer(real *bandPtr,int channel, real equalizer[2][32]) +{ + int i; + for(i=0;i<32;i++) + bandPtr[i] = REAL_MUL(bandPtr[i], equalizer[channel][i]); +} diff -r f2985e08589c -r 7e08477b0fc1 decoders/libmpg123/equalizer_3dnow.S --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/decoders/libmpg123/equalizer_3dnow.S Fri Jan 30 02:44:47 2009 -0500 @@ -0,0 +1,73 @@ +/* + equalizer_3dnow: 3DNow! optimized do_equalizer() + + copyright ?-2006 by the mpg123 project - free software under the terms of the LGPL 2.1 + see COPYING and AUTHORS files in distribution or http://mpg123.org + initially written by KIMURA Takuhiro +*/ + +#include "mangle.h" + +.text + ALIGN4 +.globl ASM_NAME(do_equalizer_3dnow) +/* .type ASM_NAME(do_equalizer_3dnow),@function */ +/* void do_equalizer(real *bandPtr,int channel, real equalizer[2][32]); */ +ASM_NAME(do_equalizer_3dnow): + pushl %esi + pushl %ebx + /* bandPtr */ + movl 12(%esp),%ebx + /* channel */ + movl 16(%esp),%ecx + xorl %edx,%edx + /* equalizer */ + movl 20(%esp),%esi + sall $7,%ecx + ALIGN4 +.L9: + movq (%ebx,%edx),%mm0 + pfmul (%esi,%ecx),%mm0 + + movq 8(%ebx,%edx),%mm1 + pfmul 8(%esi,%ecx),%mm1 + movq %mm0,(%ebx,%edx) + + movq 16(%ebx,%edx),%mm0 + pfmul 16(%esi,%ecx),%mm0 + movq %mm1,8(%ebx,%edx) + + movq 24(%ebx,%edx),%mm1 + pfmul 24(%esi,%ecx),%mm1 + movq %mm0,16(%ebx,%edx) + + movq 32(%ebx,%edx),%mm0 + pfmul 32(%esi,%ecx),%mm0 + movq %mm1,24(%ebx,%edx) + + movq 40(%ebx,%edx),%mm1 + pfmul 40(%esi,%ecx),%mm1 + movq %mm0,32(%ebx,%edx) + + movq 48(%ebx,%edx),%mm0 + pfmul 48(%esi,%ecx),%mm0 + movq %mm1,40(%ebx,%edx) + + movq 56(%ebx,%edx),%mm1 + pfmul 56(%esi,%ecx),%mm1 + movq %mm0,48(%ebx,%edx) + movq %mm1,56(%ebx,%edx) + + addl $64,%edx + addl $32,%ecx + cmpl $124,%edx + jle .L9 + ALIGN4 + popl %ebx + popl %esi + ret + +/* Mark non-executable stack. */ +#if defined(__linux__) && defined(__ELF__) +.section .note.GNU-stack,"",%progbits +#endif diff -r f2985e08589c -r 7e08477b0fc1 decoders/libmpg123/format.c --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/decoders/libmpg123/format.c Fri Jan 30 02:44:47 2009 -0500 @@ -0,0 +1,321 @@ +/* + format:routines to deal with audio (output) format + + copyright 2008 by the mpg123 project - free software under the terms of the LGPL 2.1 + see COPYING and AUTHORS files in distribution or http://mpg123.org + initially written by Thomas Orgis, starting with parts of the old audio.c, with only faintly manage to show now +*/ + +#include "mpg123lib_intern.h" +#include "debug.h" + +/* static int chans[NUM_CHANNELS] = { 1 , 2 }; */ +static const long my_rates[MPG123_RATES] = /* only the standard rates */ +{ + 8000, 11025, 12000, + 16000, 22050, 24000, + 32000, 44100, 48000, +}; +static const int my_encodings[MPG123_ENCODINGS] = +{ + MPG123_ENC_SIGNED_16, + MPG123_ENC_UNSIGNED_16, + MPG123_ENC_UNSIGNED_8, + MPG123_ENC_SIGNED_8, + MPG123_ENC_ULAW_8, + MPG123_ENC_ALAW_8, + MPG123_ENC_SIGNED_32, + MPG123_ENC_UNSIGNED_32, + MPG123_ENC_FLOAT_32, + MPG123_ENC_FLOAT_64 +}; + +/* Check if encoding (mask) is a valid one in this build. */ +static int good_enc(int enc) +{ + if(!(enc & MPG123_ENC_ANY)) return FALSE; +#ifdef FLOATOUT +#ifdef REAL_IS_FLOAT /* we know only 32bit*/ + if(enc != MPG123_ENC_FLOAT_32) return FALSE; +#else + if(enc != MPG123_ENC_FLOAT_64) return FALSE; +#endif +#else + if(enc & MPG123_ENC_FLOAT) return FALSE; +#endif + if(enc & MPG123_ENC_32) return FALSE; /* Not supported yet. */ + if(enc == MPG123_ENC_UNSIGNED_16) return FALSE; /* Not supported yet... ever? */ + + return TRUE; +} + +void attribute_align_arg mpg123_rates(const long **list, size_t *number) +{ + if(list != NULL) *list = my_rates; + if(number != NULL) *number = sizeof(my_rates)/sizeof(long); +} + +/* Now that's a bit tricky... One build of the library knows only a subset of the encodings. */ +void attribute_align_arg mpg123_encodings(const int **list, size_t *number) +{ + size_t offset = 0; + size_t n = sizeof(my_encodings)/sizeof(int)-4; /* The last 4 are special. */ +#ifdef FLOATOUT /* Skip integer encodings. */ + n = 1; +#ifdef REAL_IS_FLOAT /* we know only 32bit*/ + offset = 8; /* Only 32bit float */ +#else + offset = 9; /* Only 64bit float */ +#endif +#endif /* There should be a branch for 32bit integer; but that's not anywhere now. */ + if(list != NULL) *list = my_encodings+offset; + if(number != NULL) *number = n; +} + +/* char audio_caps[NUM_CHANNELS][MPG123_RATES+1][MPG123_ENCODINGS]; */ + +static int rate2num(mpg123_pars *mp, long r) +{ + int i; + for(i=0;iforce_rate != 0 && mp->force_rate == r) return MPG123_RATES; + + return -1; +} + +static int enc2num(int encoding) +{ + int i; + for(i=0;ichannels-1; + int rn = rate2num(&fr->p, nf->rate); + if(rn >= 0) for(i=f0;ip.audio_caps[c][rn][i]) + { + nf->encoding = my_encodings[i]; + return 1; + } + } + return 0; +} + +static int freq_fit(mpg123_handle *fr, struct audioformat *nf, int f0, int f2) +{ + nf->rate = frame_freq(fr)>>fr->p.down_sample; + if(cap_fit(fr,nf,f0,f2)) return 1; + nf->rate>>=1; + if(cap_fit(fr,nf,f0,f2)) return 1; + nf->rate>>=1; + if(cap_fit(fr,nf,f0,f2)) return 1; + return 0; +} + +/* match constraints against supported audio formats, store possible setup in frame + return: -1: error; 0: no format change; 1: format change */ +int frame_output_format(mpg123_handle *fr) +{ + struct audioformat nf; + int f0=0; + int f2=MPG123_ENCODINGS-4; /* Omit the 32bit and float encodings. */ + mpg123_pars *p = &fr->p; + /* initialize new format, encoding comes later */ + nf.channels = fr->stereo; + +#ifdef FLOATOUT /* Skip integer encodings. */ +#ifdef REAL_IS_FLOAT /* we know only 32bit*/ + f0 = 8; /* Only 32bit float */ +#else + f0 = 9; /* Only 64bit float */ +#endif + f2 = f0+1; /* Only one encoding to try... */ +#else + if(p->flags & MPG123_FORCE_8BIT) f0 = 2; /* skip the 16bit encodings */ +#endif /* There should be a branch for 32bit integer; but that's not anywhere now. */ + + /* force stereo is stronger */ + if(p->flags & MPG123_FORCE_MONO) nf.channels = 1; + if(p->flags & MPG123_FORCE_STEREO) nf.channels = 2; + + if(p->force_rate) + { + nf.rate = p->force_rate; + if(cap_fit(fr,&nf,f0,2)) goto end; /* 16bit encodings */ + if(cap_fit(fr,&nf,2,f2)) goto end; /* 8bit encodings */ + + /* try again with different stereoness */ + if(nf.channels == 2 && !(p->flags & MPG123_FORCE_STEREO)) nf.channels = 1; + else if(nf.channels == 1 && !(p->flags & MPG123_FORCE_MONO)) nf.channels = 2; + + if(cap_fit(fr,&nf,f0,2)) goto end; /* 16bit encodings */ + if(cap_fit(fr,&nf,2,f2)) goto end; /* 8bit encodings */ + + if(NOQUIET) + error3( "Unable to set up output format! Constraints: %s%s%liHz.", + ( p->flags & MPG123_FORCE_STEREO ? "stereo, " : + (p->flags & MPG123_FORCE_MONO ? "mono, " : "") ), + (p->flags & MPG123_FORCE_8BIT ? "8bit, " : ""), + p->force_rate ); +/* if(NOQUIET && p->verbose <= 1) print_capabilities(fr); */ + + fr->err = MPG123_BAD_OUTFORMAT; + return -1; + } + + if(freq_fit(fr, &nf, f0, 2)) goto end; /* try rates with 16bit */ + if(freq_fit(fr, &nf, 2, f2)) goto end; /* ... 8bit */ + + /* try again with different stereoness */ + if(nf.channels == 2 && !(p->flags & MPG123_FORCE_STEREO)) nf.channels = 1; + else if(nf.channels == 1 && !(p->flags & MPG123_FORCE_MONO)) nf.channels = 2; + + if(freq_fit(fr, &nf, f0, 2)) goto end; /* try rates with 16bit */ + if(freq_fit(fr, &nf, 2, f2)) goto end; /* ... 8bit */ + + /* Here is the _bad_ end. */ + if(NOQUIET) + error5( "Unable to set up output format! Constraints: %s%s%li, %li or %liHz.", + ( p->flags & MPG123_FORCE_STEREO ? "stereo, " : + (p->flags & MPG123_FORCE_MONO ? "mono, " : "") ), + (p->flags & MPG123_FORCE_8BIT ? "8bit, " : ""), + frame_freq(fr), frame_freq(fr)>>1, frame_freq(fr)>>2 ); +/* if(NOQUIET && p->verbose <= 1) print_capabilities(fr); */ + + fr->err = MPG123_BAD_OUTFORMAT; + return -1; + +end: /* Here is the _good_ end. */ + /* we had a successful match, now see if there's a change */ + if(nf.rate == fr->af.rate && nf.channels == fr->af.channels && nf.encoding == fr->af.encoding) + { + debug("Old format!"); + return 0; /* the same format as before */ + } + else /* a new format */ + { + debug("New format!"); + fr->af.rate = nf.rate; + fr->af.channels = nf.channels; + fr->af.encoding = nf.encoding; + return 1; + } +} + +int attribute_align_arg mpg123_format_none(mpg123_handle *mh) +{ + int r; + if(mh == NULL) return MPG123_ERR; + + r = mpg123_fmt_none(&mh->p); + if(r != MPG123_OK){ mh->err = r; r = MPG123_ERR; } + + return r; +} + +int attribute_align_arg mpg123_fmt_none(mpg123_pars *mp) +{ + if(mp == NULL) return MPG123_BAD_PARS; + + if(PVERB(mp,3)) fprintf(stderr, "Note: Disabling all formats.\n"); + + memset(mp->audio_caps,0,sizeof(mp->audio_caps)); + return MPG123_OK; +} + +int attribute_align_arg mpg123_format_all(mpg123_handle *mh) +{ + int r; + if(mh == NULL) return MPG123_ERR; + + r = mpg123_fmt_all(&mh->p); + if(r != MPG123_OK){ mh->err = r; r = MPG123_ERR; } + + return r; +} + +int attribute_align_arg mpg123_fmt_all(mpg123_pars *mp) +{ + size_t rate, ch, enc; + if(mp == NULL) return MPG123_BAD_PARS; + + if(PVERB(mp,3)) fprintf(stderr, "Note: Enabling all formats.\n"); + + for(ch=0; ch < NUM_CHANNELS; ++ch) + for(rate=0; rate < MPG123_RATES+1; ++rate) + for(enc=0; enc < MPG123_ENCODINGS; ++enc) + mp->audio_caps[ch][rate][enc] = good_enc(my_encodings[enc]) ? 1 : 0; + + return MPG123_OK; +} + +int attribute_align_arg mpg123_format(mpg123_handle *mh, long rate, int channels, int encodings) +{ + int r; + if(mh == NULL) return MPG123_ERR; + r = mpg123_fmt(&mh->p, rate, channels, encodings); + if(r != MPG123_OK){ mh->err = r; r = MPG123_ERR; } + + return r; +} + +int attribute_align_arg mpg123_fmt(mpg123_pars *mp, long rate, int channels, int encodings) +{ + int ie, ic, ratei; + int ch[2] = {0, 1}; + if(mp == NULL) return MPG123_BAD_PARS; + if(!(channels & (MPG123_MONO|MPG123_STEREO))) return MPG123_BAD_CHANNEL; + + if(PVERB(mp,3)) fprintf(stderr, "Note: Want to enable format %li/%i for encodings 0x%x.\n", rate, channels, encodings); + + if(!(channels & MPG123_STEREO)) ch[1] = 0; /* {0,0} */ + else if(!(channels & MPG123_MONO)) ch[0] = 1; /* {1,1} */ + ratei = rate2num(mp, rate); + if(ratei < 0) return MPG123_BAD_RATE; + + /* now match the encodings */ + for(ic = 0; ic < 2; ++ic) + { + for(ie = 0; ie < MPG123_ENCODINGS; ++ie) + if(good_enc(my_encodings[ie]) && ((my_encodings[ie] & encodings) == my_encodings[ie])) + mp->audio_caps[ch[ic]][ratei][ie] = 1; + + if(ch[0] == ch[1]) break; /* no need to do it again */ + } + + return MPG123_OK; +} + +int attribute_align_arg mpg123_format_support(mpg123_handle *mh, long rate, int encoding) +{ + if(mh == NULL) return 0; + else return mpg123_fmt_support(&mh->p, rate, encoding); +} + +int attribute_align_arg mpg123_fmt_support(mpg123_pars *mp, long rate, int encoding) +{ + int ch = 0; + int ratei, enci; + ratei = rate2num(mp, rate); + enci = enc2num(encoding); + if(mp == NULL || ratei < 0 || enci < 0) return 0; + if(mp->audio_caps[0][ratei][enci]) ch |= MPG123_MONO; + if(mp->audio_caps[1][ratei][enci]) ch |= MPG123_STEREO; + return ch; +} + +/* Call this one to ensure that any valid format will be something different than this. */ +void invalidate_format(struct audioformat *af) +{ + af->encoding = 0; + af->rate = 0; + af->channels = 0; +} + diff -r f2985e08589c -r 7e08477b0fc1 decoders/libmpg123/frame.c --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/decoders/libmpg123/frame.c Fri Jan 30 02:44:47 2009 -0500 @@ -0,0 +1,1085 @@ +/* + frame: Heap of routines dealing with the core mpg123 data structure. + + copyright 2008 by the mpg123 project - free software under the terms of the LGPL 2.1 + see COPYING and AUTHORS files in distribution or http://mpg123.org + initially written by Thomas Orgis +*/ + +#include "mpg123lib_intern.h" +#include "getcpuflags.h" +#include "debug.h" + +#define IGNORESHIFT 2 + +static void frame_fixed_reset(mpg123_handle *fr); + +/* that's doubled in decode_ntom.c */ +#define NTOM_MUL (32768) +#define aligned_pointer(p,type,alignment) \ + (((char*)(p)-(char*)NULL) % (alignment)) \ + ? (type*)((char*)(p) + (alignment) - (((char*)(p)-(char*)NULL) % (alignment))) \ + : (type*)(p) +void frame_default_pars(mpg123_pars *mp) +{ + mp->outscale = MAXOUTBURST; +#ifdef GAPLESS + mp->flags = MPG123_GAPLESS; +#else + mp->flags = 0; +#endif + mp->force_rate = 0; + mp->down_sample = 0; + mp->rva = 0; + mp->halfspeed = 0; + mp->doublespeed = 0; + mp->verbose = 0; + mp->icy_interval = 0; +#ifndef WIN32 + mp->timeout = 0; +#endif + mp->resync_limit = 1024; +#ifdef FRAME_INDEX + mp->index_size = INDEX_SIZE; +#endif + mpg123_fmt_all(mp); +} + +void frame_init(mpg123_handle *fr) +{ + frame_init_par(fr, NULL); +} + +void frame_init_par(mpg123_handle *fr, mpg123_pars *mp) +{ + fr->own_buffer = FALSE; + fr->buffer.data = NULL; + fr->rawbuffs = NULL; + fr->rawdecwin = NULL; + fr->conv16to8_buf = NULL; + fr->xing_toc = NULL; + fr->cpu_opts.type = defopt; + fr->cpu_opts.class = (defopt == mmx || defopt == sse || defopt == dreidnowext) ? mmxsse : normal; + /* these two look unnecessary, check guarantee for synth_ntom_set_step (in control_generic, even)! */ + fr->ntom_val[0] = NTOM_MUL>>1; + fr->ntom_val[1] = NTOM_MUL>>1; + fr->ntom_step = NTOM_MUL; + /* unnecessary: fr->buffer.size = fr->buffer.fill = 0; */ + mpg123_reset_eq(fr); + init_icy(&fr->icy); + init_id3(fr); + /* frame_outbuffer is missing... */ + /* frame_buffers is missing... that one needs cpu opt setting! */ + /* after these... frame_reset is needed before starting full decode */ + invalidate_format(&fr->af); + fr->rdat.r_read = NULL; + fr->rdat.r_lseek = NULL; + fr->decoder_change = 1; + fr->err = MPG123_OK; + if(mp == NULL) frame_default_pars(&fr->p); + else memcpy(&fr->p, mp, sizeof(struct mpg123_pars_struct)); + + fr->down_sample = 0; /* Initialize to silence harmless errors when debugging. */ + frame_fixed_reset(fr); /* Reset only the fixed data, dynamic buffers are not there yet! */ +#ifdef FRAME_INDEX + fi_init(&fr->index); + frame_index_setup(fr); /* Apply the size setting. */ +#endif +} + +mpg123_pars attribute_align_arg *mpg123_new_pars(int *error) +{ + mpg123_pars *mp = malloc(sizeof(struct mpg123_pars_struct)); + if(mp != NULL){ frame_default_pars(mp); if(error != NULL) *error = MPG123_OK; } + else if(error != NULL) *error = MPG123_OUT_OF_MEM; + return mp; +} + +void attribute_align_arg mpg123_delete_pars(mpg123_pars* mp) +{ + if(mp != NULL) free(mp); +} + +int attribute_align_arg mpg123_reset_eq(mpg123_handle *mh) +{ + int i; + mh->have_eq_settings = 0; + for(i=0; i < 32; ++i) mh->equalizer[0][i] = mh->equalizer[1][i] = DOUBLE_TO_REAL(1.0); + + return MPG123_OK; +} + +int frame_outbuffer(mpg123_handle *fr) +{ + size_t size = mpg123_safe_buffer()*AUDIOBUFSIZE; + if(!fr->own_buffer) fr->buffer.data = NULL; + if(fr->buffer.data != NULL && fr->buffer.size != size) + { + free(fr->buffer.data); + fr->buffer.data = NULL; + } + fr->buffer.size = size; + if(fr->buffer.data == NULL) fr->buffer.data = (unsigned char*) malloc(fr->buffer.size); + if(fr->buffer.data == NULL) + { + fr->err = MPG123_OUT_OF_MEM; + return -1; + } + fr->own_buffer = TRUE; + fr->buffer.fill = 0; + return 0; +} + +int attribute_align_arg mpg123_replace_buffer(mpg123_handle *mh, unsigned char *data, size_t size) +{ + if(data == NULL || size < mpg123_safe_buffer()) + { + mh->err = MPG123_BAD_BUFFER; + return MPG123_ERR; + } + if(mh->own_buffer && mh->buffer.data != NULL) free(mh->buffer.data); + mh->own_buffer = FALSE; + mh->buffer.data = data; + mh->buffer.size = size; + mh->buffer.fill = 0; + return MPG123_OK; +} + +#ifdef FRAME_INDEX +int frame_index_setup(mpg123_handle *fr) +{ + int ret = MPG123_ERR; + if(fr->p.index_size >= 0) + { /* Simple fixed index. */ + fr->index.grow_size = 0; + debug1("resizing index to %li", fr->p.index_size); + ret = fi_resize(&fr->index, (size_t)fr->p.index_size); + debug2("index resized... %lu at %p", (unsigned long)fr->index.size, (void*)fr->index.data); + } + else + { /* A growing index. We give it a start, though. */ + fr->index.grow_size = (size_t)(- fr->p.index_size); + if(fr->index.size < fr->index.grow_size) + ret = fi_resize(&fr->index, fr->index.grow_size); + else + ret = MPG123_OK; /* We have minimal size already... and since growing is OK... */ + } + debug2("set up frame index of size %lu (ret=%i)", (unsigned long)fr->index.size, ret); + + return ret; +} +#endif + +int frame_buffers(mpg123_handle *fr) +{ + int buffssize = 0; + debug1("frame %p buffer", (void*)fr); +/* + the used-to-be-static buffer of the synth functions, has some subtly different types/sizes + + 2to1, 4to1, ntom, generic, i386: real[2][2][0x110] + mmx, sse: short[2][2][0x110] + i586(_dither): 4352 bytes; int/long[2][2][0x110] + i486: int[2][2][17*FIR_BUFFER_SIZE] + altivec: static real __attribute__ ((aligned (16))) buffs[4][4][0x110] + + Huh, altivec looks like fun. Well, let it be large... then, the 16 byte alignment seems to be implicit on MacOSX malloc anyway. + Let's make a reasonable attempt to allocate enough memory... + Keep in mind: biggest ones are i486 and altivec (mutually exclusive!), then follows i586 and normal real. + mmx/sse use short but also real for resampling. + Thus, minimum is 2*2*0x110*sizeof(real). +*/ + if(fr->cpu_opts.type == altivec) buffssize = 4*4*0x110*sizeof(real); +#ifdef OPT_I486 + else if(fr->cpu_opts.type == ivier) buffssize = 2*2*17*FIR_BUFFER_SIZE*sizeof(int); +#endif + else if(fr->cpu_opts.type == ifuenf || fr->cpu_opts.type == ifuenf_dither || fr->cpu_opts.type == dreidnow) + buffssize = 2*2*0x110*4; /* don't rely on type real, we need 4352 bytes */ + + if(2*2*0x110*sizeof(real) > buffssize) + buffssize = 2*2*0x110*sizeof(real); + buffssize += 15; /* For 16-byte alignment (SSE likes that). */ + + if(fr->rawbuffs != NULL && fr->rawbuffss != buffssize) + { + free(fr->rawbuffs); + fr->rawbuffs = NULL; + } + + if(fr->rawbuffs == NULL) fr->rawbuffs = (unsigned char*) malloc(buffssize); + if(fr->rawbuffs == NULL) return -1; + fr->rawbuffss = buffssize; + fr->short_buffs[0][0] = aligned_pointer(fr->rawbuffs,short,16); + fr->short_buffs[0][1] = fr->short_buffs[0][0] + 0x110; + fr->short_buffs[1][0] = fr->short_buffs[0][1] + 0x110; + fr->short_buffs[1][1] = fr->short_buffs[1][0] + 0x110; + fr->real_buffs[0][0] = aligned_pointer(fr->rawbuffs,real,16); + fr->real_buffs[0][1] = fr->real_buffs[0][0] + 0x110; + fr->real_buffs[1][0] = fr->real_buffs[0][1] + 0x110; + fr->real_buffs[1][1] = fr->real_buffs[1][0] + 0x110; +#ifdef OPT_I486 + if(fr->cpu_opts.type == ivier) + { + fr->int_buffs[0][0] = (int*) fr->rawbuffs; + fr->int_buffs[0][1] = fr->int_buffs[0][0] + 17*FIR_BUFFER_SIZE; + fr->int_buffs[1][0] = fr->int_buffs[0][1] + 17*FIR_BUFFER_SIZE; + fr->int_buffs[1][1] = fr->int_buffs[1][0] + 17*FIR_BUFFER_SIZE; + } +#endif +#ifdef OPT_ALTIVEC + if(fr->cpu_opts.type == altivec) + { + int i,j; + fr->areal_buffs[0][0] = (real*) fr->rawbuffs; + for(i=0; i<4; ++i) for(j=0; j<4; ++j) + fr->areal_buffs[i][j] = fr->areal_buffs[0][0] + (i*4+j)*0x110; + } +#endif + /* now the different decwins... all of the same size, actually */ + /* The MMX ones want 32byte alignment, which I'll try to ensure manually */ + { + int decwin_size = (512+32)*sizeof(real); + if(fr->rawdecwin != NULL) free(fr->rawdecwin); +#ifdef OPT_MMXORSSE +#ifdef OPT_MULTI + if(fr->cpu_opts.class == mmxsse) + { +#endif + /* decwin_mmx will share, decwins will be appended ... sizeof(float)==4 */ + if(decwin_size < (512+32)*4) decwin_size = (512+32)*4; + decwin_size += (512+32)*4 + 31; /* the second window + alignment zone */ + /* (512+32)*4/32 == 2176/32 == 68, so one decwin block retains alignment */ +#ifdef OPT_MULTI + } +#endif +#endif + fr->rawdecwin = (unsigned char*) malloc(decwin_size); + if(fr->rawdecwin == NULL) return -1; + fr->decwin = (real*) fr->rawdecwin; +#ifdef OPT_MMXORSSE +#ifdef OPT_MULTI + if(fr->cpu_opts.class == mmxsse) + { +#endif + /* align decwin, assign that to decwin_mmx, append decwins */ + /* I need to add to decwin what is missing to the next full 32 byte -- also I want to make gcc -pedantic happy... */ + fr->decwin = aligned_pointer(fr->rawdecwin,real,32); + debug1("aligned decwin: %p", (void*)fr->decwin); + fr->decwin_mmx = (float*)fr->decwin; + fr->decwins = fr->decwin_mmx+512+32; +#ifdef OPT_MULTI + } + else debug("no decwins/decwin_mmx for that class"); +#endif +#endif + } + frame_buffers_reset(fr); + debug1("frame %p buffer done", (void*)fr); + return 0; +} + +int frame_buffers_reset(mpg123_handle *fr) +{ + fr->buffer.fill = 0; /* hm, reset buffer fill... did we do a flush? */ + fr->bsnum = 0; + /* Wondering: could it be actually _wanted_ to retain buffer contents over different files? (special gapless / cut stuff) */ + fr->bsbuf = fr->bsspace[1]; + fr->bsbufold = fr->bsbuf; + fr->bitreservoir = 0; /* Not entirely sure if this is the right place for that counter. */ + memset(fr->bsspace, 0, 2*(MAXFRAMESIZE+512)); + memset(fr->ssave, 0, 34); + memset(fr->rawbuffs, 0, fr->rawbuffss); + fr->hybrid_blc[0] = fr->hybrid_blc[1] = 0; + memset(fr->hybrid_block, 0, sizeof(real)*2*2*SBLIMIT*SSLIMIT); + /* Not totally, but quite, sure that decwin(s) doesn't need cleaning. */ + return 0; +} + +void frame_icy_reset(mpg123_handle* fr) +{ + if(fr->icy.data != NULL) free(fr->icy.data); + fr->icy.data = NULL; + fr->icy.interval = 0; + fr->icy.next = 0; +} + +void frame_free_toc(mpg123_handle *fr) +{ + if(fr->xing_toc != NULL){ free(fr->xing_toc); fr->xing_toc = NULL; } +} + +/* Just copy the Xing TOC over... */ +int frame_fill_toc(mpg123_handle *fr, unsigned char* in) +{ + if(fr->xing_toc == NULL) fr->xing_toc = malloc(100); + if(fr->xing_toc != NULL) + { + memcpy(fr->xing_toc, in, 100); +#ifdef DEBUG + debug("Got a TOC! Showing the values..."); + { + int i; + for(i=0; i<100; ++i) + debug2("entry %i = %i", i, fr->xing_toc[i]); + } +#endif + return TRUE; + } + return FALSE; +} + +/* Prepare the handle for a new track. + Reset variables, buffers... */ +int frame_reset(mpg123_handle* fr) +{ + frame_buffers_reset(fr); + frame_fixed_reset(fr); + frame_free_toc(fr); +#ifdef FRAME_INDEX + fi_reset(&fr->index); +#endif + + return 0; +} + +/* Reset everythign except dynamic memory. */ +static void frame_fixed_reset(mpg123_handle *fr) +{ + frame_icy_reset(fr); + open_bad(fr); + fr->to_decode = FALSE; + fr->to_ignore = FALSE; + fr->metaflags = 0; + fr->outblock = mpg123_safe_buffer(); + fr->num = -1; + fr->accurate = TRUE; + fr->silent_resync = 0; + fr->audio_start = 0; + fr->clip = 0; + fr->oldhead = 0; + fr->firsthead = 0; + fr->vbr = MPG123_CBR; + fr->abr_rate = 0; + fr->track_frames = 0; + fr->track_samples = -1; + fr->framesize=0; + fr->mean_frames = 0; + fr->mean_framesize = 0; + fr->freesize = 0; + fr->lastscale = -1; + fr->rva.level[0] = -1; + fr->rva.level[1] = -1; + fr->rva.gain[0] = 0; + fr->rva.gain[1] = 0; + fr->rva.peak[0] = 0; + fr->rva.peak[1] = 0; + fr->fsizeold = 0; + fr->firstframe = 0; + fr->ignoreframe = fr->firstframe-IGNORESHIFT; + fr->lastframe = -1; + fr->fresh = 1; + fr->new_format = 0; +#ifdef GAPLESS + frame_gapless_init(fr,0,0); + fr->lastoff = 0; + fr->firstoff = 0; +#endif + fr->bo[0] = 1; /* the usual bo */ + fr->bo[1] = 0; /* ditherindex */ +#ifdef OPT_I486 + fr->bo[0] = fr->bo[1] = FIR_SIZE-1; +#endif + reset_id3(fr); + reset_icy(&fr->icy); + /* ICY stuff should go into icy.c, eh? */ + fr->icy.interval = 0; + fr->icy.next = 0; + fr->halfphase = 0; /* here or indeed only on first-time init? */ +} + +void frame_free_buffers(mpg123_handle *fr) +{ + if(fr->rawbuffs != NULL) free(fr->rawbuffs); + fr->rawbuffs = NULL; + if(fr->rawdecwin != NULL) free(fr->rawdecwin); + fr->rawdecwin = NULL; + if(fr->conv16to8_buf != NULL) free(fr->conv16to8_buf); + fr->conv16to8_buf = NULL; +} + +void frame_exit(mpg123_handle *fr) +{ + if(fr->own_buffer && fr->buffer.data != NULL) + { + debug1("freeing buffer at %p", (void*)fr->buffer.data); + free(fr->buffer.data); + } + fr->buffer.data = NULL; + frame_free_buffers(fr); + frame_free_toc(fr); +#ifdef FRAME_INDEX + fi_exit(&fr->index); +#endif + exit_id3(fr); + clear_icy(&fr->icy); +} + +int attribute_align_arg mpg123_info(mpg123_handle *mh, struct mpg123_frameinfo *mi) +{ + if(mh == NULL) return MPG123_ERR; + if(mi == NULL) + { + mh->err = MPG123_ERR_NULL; + return MPG123_ERR; + } + mi->version = mh->mpeg25 ? MPG123_2_5 : (mh->lsf ? MPG123_2_0 : MPG123_1_0); + mi->layer = mh->lay; + mi->rate = frame_freq(mh); + switch(mh->mode) + { + case 0: mi->mode = MPG123_M_STEREO; break; + case 1: mi->mode = MPG123_M_JOINT; break; + case 2: mi->mode = MPG123_M_DUAL; break; + case 3: mi->mode = MPG123_M_MONO; break; + default: error("That mode cannot be!"); + } + mi->mode_ext = mh->mode_ext; + mi->framesize = mh->framesize+4; /* Include header. */ + mi->flags = 0; + if(mh->error_protection) mi->flags |= MPG123_CRC; + if(mh->copyright) mi->flags |= MPG123_COPYRIGHT; + if(mh->extension) mi->flags |= MPG123_PRIVATE; + if(mh->original) mi->flags |= MPG123_ORIGINAL; + mi->emphasis = mh->emphasis; + mi->bitrate = frame_bitrate(mh); + mi->abr_rate = mh->abr_rate; + mi->vbr = mh->vbr; + return MPG123_OK; +} + + +/* + Fuzzy frame offset searching (guessing). + When we don't have an accurate position, we may use an inaccurate one. + Possibilities: + - use approximate positions from Xing TOC (not yet parsed) + - guess wildly from mean framesize and offset of first frame / beginning of file. +*/ + +off_t frame_fuzzy_find(mpg123_handle *fr, off_t want_frame, off_t* get_frame) +{ + /* Default is to go to the beginning. */ + off_t ret = fr->audio_start; + *get_frame = 0; + + /* But we try to find something better. */ + /* Xing VBR TOC works with relative positions, both in terms of audio frames and stream bytes. + Thus, it only works when whe know the length of things. + Oh... I assume the offsets are relative to the _total_ file length. */ + if(fr->xing_toc != NULL && fr->track_frames > 0 && fr->rdat.filelen > 0) + { + /* One could round... */ + int toc_entry = (int) ((double)want_frame*100./fr->track_frames); + /* It is an index in the 100-entry table. */ + if(toc_entry < 0) toc_entry = 0; + if(toc_entry > 99) toc_entry = 99; + + /* Now estimate back what frame we get. */ + *get_frame = (off_t) ((double)toc_entry/100. * fr->track_frames); + fr->accurate = FALSE; + fr->silent_resync = 1; + /* Question: Is the TOC for whole file size (with/without ID3) or the "real" audio data only? + ID3v1 info could also matter. */ + ret = (off_t) ((double)fr->xing_toc[toc_entry]/256.* fr->rdat.filelen); + } + else if(fr->mean_framesize > 0) + { /* Just guess with mean framesize (may be exact with CBR files). */ + /* Query filelen here or not? */ + fr->accurate = FALSE; /* Fuzzy! */ + fr->silent_resync = 1; + *get_frame = want_frame; + ret = fr->audio_start+fr->mean_framesize*want_frame; + } + debug5("fuzzy: want %li of %li, get %li at %li B of %li B", + (long)want_frame, (long)fr->track_frames, (long)*get_frame, (long)ret, (long)(fr->rdat.filelen-fr->audio_start)); + return ret; +} + +/* + find the best frame in index just before the wanted one, seek to there + then step to just before wanted one with read_frame + do not care tabout the stuff that was in buffer but not played back + everything that left the decoder is counted as played + + Decide if you want low latency reaction and accurate timing info or stable long-time playback with buffer! +*/ + +off_t frame_index_find(mpg123_handle *fr, off_t want_frame, off_t* get_frame) +{ + /* default is file start if no index position */ + off_t gopos = 0; + *get_frame = 0; +#ifdef FRAME_INDEX + /* Possibly use VBRI index, too? I'd need an example for this... */ + if(fr->index.fill) + { + /* find in index */ + size_t fi; + /* at index fi there is frame step*fi... */ + fi = want_frame/fr->index.step; + if(fi >= fr->index.fill) /* If we are beyond the end of frame index...*/ + { + /* When fuzzy seek is allowed, we have some limited tolerance for the frames we want to read rather then jump over. */ + if(fr->p.flags & MPG123_FUZZY && want_frame - (fr->index.fill-1)*fr->index.step > 10) + { + gopos = frame_fuzzy_find(fr, want_frame, get_frame); + if(gopos > fr->audio_start) return gopos; /* Only in that case, we have a useful guess. */ + /* Else... just continue, fuzzyness didn't help. */ + } + /* Use the last available position, slowly advancing from that one. */ + fi = fr->index.fill - 1; + } + /* We have index position, that yields frame and byte offsets. */ + *get_frame = fi*fr->index.step; + gopos = fr->index.data[fi]; + fr->accurate = TRUE; /* When using the frame index, we are accurate. */ + } + else + { +#endif + if(fr->p.flags & MPG123_FUZZY) + return frame_fuzzy_find(fr, want_frame, get_frame); + /* A bit hackish here... but we need to be fresh when looking for the first header again. */ + fr->firsthead = 0; + fr->oldhead = 0; +#ifdef FRAME_INDEX + } +#endif + debug2("index: 0x%lx for frame %li", (unsigned long)gopos, (long) *get_frame); + return gopos; +} + +off_t frame_ins2outs(mpg123_handle *fr, off_t ins) +{ + off_t outs = 0; + switch(fr->down_sample) + { + case 0: + case 1: + case 2: outs = ins>>fr->down_sample; break; + case 3: outs = ntom_ins2outs(fr, ins); break; + default: error1("Bad down_sample (%i) ... should not be possible!!", fr->down_sample); + } + return outs; +} + +off_t frame_outs(mpg123_handle *fr, off_t num) +{ + off_t outs = 0; + switch(fr->down_sample) + { + case 0: + case 1: + case 2: outs = (spf(fr)>>fr->down_sample)*num; break; + case 3: outs = ntom_frmouts(fr, num); break; + default: error1("Bad down_sample (%i) ... should not be possible!!", fr->down_sample); + } + return outs; +} + +off_t frame_offset(mpg123_handle *fr, off_t outs) +{ + off_t num = 0; + switch(fr->down_sample) + { + case 0: + case 1: + case 2: num = outs/(spf(fr)>>fr->down_sample); break; + case 3: num = ntom_frameoff(fr, outs); break; + default: error("Bad down_sample ... should not be possible!!"); + } + return num; +} + +#ifdef GAPLESS +/* input in _input_ samples */ +void frame_gapless_init(mpg123_handle *fr, off_t b, off_t e) +{ + fr->begin_s = b; + fr->end_s = e; + /* These will get proper values later, from above plus resampling info. */ + fr->begin_os = 0; + fr->end_os = 0; + debug2("frame_gapless_init: from %lu to %lu samples", (long unsigned)fr->begin_s, (long unsigned)fr->end_s); +} + +void frame_gapless_realinit(mpg123_handle *fr) +{ + fr->begin_os = frame_ins2outs(fr, fr->begin_s); + fr->end_os = frame_ins2outs(fr, fr->end_s); + debug2("frame_gapless_realinit: from %lu to %lu samples", (long unsigned)fr->begin_os, (long unsigned)fr->end_os); +} +#endif + +/* The frame seek... This is not simply the seek to fe*spf(fr) samples in output because we think of _input_ frames here. + Seek to frame offset 1 may be just seek to 200 samples offset in output since the beginning of first frame is delay/padding. + Hm, is that right? OK for the padding stuff, but actually, should the decoder delay be better totally hidden or not? + With gapless, even the whole frame position could be advanced further than requested (since Homey don't play dat). */ +void frame_set_frameseek(mpg123_handle *fr, off_t fe) +{ + fr->firstframe = fe; +#ifdef GAPLESS + if(fr->p.flags & MPG123_GAPLESS) + { + /* Take care of the beginning... */ + off_t beg_f = frame_offset(fr, fr->begin_os); + if(fe <= beg_f) + { + fr->firstframe = beg_f; + fr->firstoff = fr->begin_os - frame_outs(fr, beg_f); + } + else fr->firstoff = 0; + /* The end is set once for a track at least, on the frame_set_frameseek called in get_next_frame() */ + if(fr->end_os > 0) + { + fr->lastframe = frame_offset(fr,fr->end_os); + fr->lastoff = fr->end_os - frame_outs(fr, fr->lastframe); + } else fr->lastoff = 0; + } else { fr->firstoff = fr->lastoff = 0; fr->lastframe = -1; } +#endif + fr->ignoreframe = fr->lay == 3 ? fr->firstframe-IGNORESHIFT : fr->firstframe; +#ifdef GAPLESS + debug5("frame_set_frameseek: begin at %li frames and %li samples, end at %li and %li; ignore from %li", + (long) fr->firstframe, (long) fr->firstoff, + (long) fr->lastframe, (long) fr->lastoff, (long) fr->ignoreframe); +#else + debug3("frame_set_frameseek: begin at %li frames, end at %li; ignore from %li", + (long) fr->firstframe, (long) fr->lastframe, (long) fr->ignoreframe); +#endif +} + +/* Sample accurate seek prepare for decoder. */ +/* This gets unadjusted output samples and takes resampling into account */ +void frame_set_seek(mpg123_handle *fr, off_t sp) +{ + fr->firstframe = frame_offset(fr, sp); + fr->ignoreframe = fr->lay == 3 ? fr->firstframe-IGNORESHIFT : fr->firstframe; +#ifdef GAPLESS /* The sample offset is used for non-gapless mode, too! */ + fr->firstoff = sp - frame_outs(fr, fr->firstframe); + debug5("frame_set_seek: begin at %li frames and %li samples, end at %li and %li; ignore from %li", + (long) fr->firstframe, (long) fr->firstoff, + (long) fr->lastframe, (long) fr->lastoff, (long) fr->ignoreframe); +#else + debug3("frame_set_seek: begin at %li frames, end at %li; ignore from %li", + (long) fr->firstframe, (long) fr->lastframe, (long) fr->ignoreframe); +#endif +} + +/* to vanish */ +void frame_outformat(mpg123_handle *fr, int format, int channels, long rate) +{ + fr->af.encoding = format; + fr->af.rate = rate; + fr->af.channels = channels; +} + +/* set synth functions for current frame, optimizations handled by opt_* macros */ +int set_synth_functions(mpg123_handle *fr) +{ + int ds = fr->down_sample; + int p8=0; + static func_synth funcs[2][4] = { + { NULL, + synth_2to1, + synth_4to1, + synth_ntom } , + { NULL, + synth_2to1_8bit, + synth_4to1_8bit, + synth_ntom_8bit } + }; + static func_synth_mono funcs_mono[2][2][4] = { + { { NULL , + synth_2to1_mono2stereo , + synth_4to1_mono2stereo , + synth_ntom_mono2stereo } , + { NULL , + synth_2to1_8bit_mono2stereo , + synth_4to1_8bit_mono2stereo , + synth_ntom_8bit_mono2stereo } } , + { { NULL , + synth_2to1_mono , + synth_4to1_mono , + synth_ntom_mono } , + { NULL , + synth_2to1_8bit_mono , + synth_4to1_8bit_mono , + synth_ntom_8bit_mono } } + }; + + /* possibly non-constand entries filled here */ + funcs[0][0] = (func_synth) opt_synth_1to1(fr); + funcs[1][0] = (func_synth) opt_synth_1to1_8bit(fr); + funcs_mono[0][0][0] = (func_synth_mono) opt_synth_1to1_mono2stereo(fr); + funcs_mono[0][1][0] = (func_synth_mono) opt_synth_1to1_8bit_mono2stereo(fr); + funcs_mono[1][0][0] = (func_synth_mono) opt_synth_1to1_mono(fr); + funcs_mono[1][1][0] = (func_synth_mono) opt_synth_1to1_8bit_mono(fr); + + if(fr->af.encoding & MPG123_ENC_8) p8 = 1; + fr->synth = funcs[p8][ds]; + fr->synth_mono = funcs_mono[fr->af.channels==2 ? 0 : 1][p8][ds]; + + if(p8) + { + if(make_conv16to8_table(fr) != 0) + { + /* it's a bit more work to get proper error propagation up */ + return -1; + } + } + return 0; +} + +int attribute_align_arg mpg123_volume_change(mpg123_handle *mh, double change) +{ + if(mh == NULL) return MPG123_ERR; + return mpg123_volume(mh, change + (double) mh->p.outscale / MAXOUTBURST); +} + +int attribute_align_arg mpg123_volume(mpg123_handle *mh, double vol) +{ + if(mh == NULL) return MPG123_ERR; + if(vol >= 0) mh->p.outscale = (double) MAXOUTBURST * vol; + do_rva(mh); + return MPG123_OK; +} + +static int get_rva(mpg123_handle *fr, double *peak, double *gain) +{ + double p = -1; + double g = 0; + int ret = 0; + if(fr->p.rva) + { + int rt = 0; + /* Should one assume a zero RVA as no RVA? */ + if(fr->p.rva == 2 && fr->rva.level[1] != -1) rt = 1; + if(fr->rva.level[rt] != -1) + { + p = fr->rva.peak[rt]; + g = fr->rva.gain[rt]; + ret = 1; /* Success. */ + } + } + if(peak != NULL) *peak = p; + if(gain != NULL) *gain = g; + return ret; +} + +/* adjust the volume, taking both fr->outscale and rva values into account */ +void do_rva(mpg123_handle *fr) +{ + double peak = 0; + double gain = 0; + scale_t newscale; + double rvafact = 1; + if(get_rva(fr, &peak, &gain)) + { + if(NOQUIET && fr->p.verbose > 1) fprintf(stderr, "Note: doing RVA with gain %f\n", gain); + rvafact = pow(10,gain/20); + } + + newscale = fr->p.outscale*rvafact; + + /* if peak is unknown (== 0) this check won't hurt */ + if((peak*newscale) > MAXOUTBURST) + { + newscale = (scale_t) ((double) MAXOUTBURST/peak); +#ifdef FLOATOUT + warning2("limiting scale value to %f to prevent clipping with indicated peak factor of %f", newscale, peak); +#else + warning2("limiting scale value to %li to prevent clipping with indicated peak factor of %f", newscale, peak); +#endif + } + /* first rva setting is forced with fr->lastscale < 0 */ + if(newscale != fr->lastscale) + { +#ifdef FLOATOUT + debug3("changing scale value from %f to %f (peak estimated to %f)", fr->lastscale != -1 ? fr->lastscale : fr->p.outscale, newscale, (double) (newscale*peak)); +#else + debug3("changing scale value from %li to %li (peak estimated to %li)", fr->lastscale != -1 ? fr->lastscale : fr->p.outscale, newscale, (long) (newscale*peak)); +#endif + fr->lastscale = newscale; + opt_make_decode_tables(fr); /* the actual work */ + } +} + +int attribute_align_arg mpg123_getvolume(mpg123_handle *mh, double *base, double *really, double *rva_db) +{ + if(mh == NULL) return MPG123_ERR; + if(base) *base = (double)mh->p.outscale/MAXOUTBURST; + if(really) *really = (double)mh->lastscale/MAXOUTBURST; + get_rva(mh, NULL, rva_db); + return MPG123_OK; +} + +int frame_cpu_opt(mpg123_handle *fr, const char* cpu) +{ + char* chosen = ""; /* the chosed decoder opt as string */ + int auto_choose = 0; + int done = 0; + if( (cpu == NULL) + || (cpu[0] == 0) + || !strcasecmp(cpu, "auto") ) + auto_choose = 1; +#ifndef OPT_MULTI + { + char **sd = mpg123_decoders(); /* this contains _one_ decoder */ + if(!auto_choose && strcasecmp(cpu, sd[0])) done = 0; + else + { + chosen = sd[0]; + done = 1; + } + } +#else + fr->cpu_opts.type = nodec; + /* covers any i386+ cpu; they actually differ only in the synth_1to1 function... */ + #ifdef OPT_X86 + + #ifdef OPT_MMXORSSE + fr->cpu_opts.make_decode_tables = make_decode_tables; + fr->cpu_opts.init_layer3_gainpow2 = init_layer3_gainpow2; + fr->cpu_opts.init_layer2_table = init_layer2_table; + #endif + #ifdef OPT_3DNOW + fr->cpu_opts.dct36 = dct36; + #endif + #ifdef OPT_3DNOWEXT + fr->cpu_opts.dct36 = dct36; + #endif + + if(cpu_i586(cpu_flags)) + { + debug2("standard flags: 0x%08x\textended flags: 0x%08x", cpu_flags.std, cpu_flags.ext); + #ifdef OPT_3DNOWEXT + if( !done && (auto_choose || !strcasecmp(cpu, "3dnowext")) + && cpu_3dnow(cpu_flags) + && cpu_3dnowext(cpu_flags) + && cpu_mmx(cpu_flags) ) + { + int go = 1; + if(fr->p.force_rate) + { + #if defined(K6_FALLBACK) || defined(PENTIUM_FALLBACK) + if(!auto_choose){ if(NOQUIET) error("I refuse to choose 3DNowExt as this will screw up with forced rate!"); } + else if(VERBOSE) fprintf(stderr, "Note: Not choosing 3DNowExt because flexible rate not supported.\n"); + + go = 0; + #else + if(NOQUIET) error("You will hear some awful sound because of flexible rate being chosen with 3DNowExt decoder!"); + #endif + } + if(go){ /* temporary hack for flexible rate bug, not going indent this - fix it instead! */ + chosen = "3DNowExt"; + fr->cpu_opts.type = dreidnowext; + fr->cpu_opts.class = mmxsse; + fr->cpu_opts.dct36 = dct36_3dnowext; + fr->cpu_opts.synth_1to1 = synth_1to1_3dnowext; + fr->cpu_opts.dct64 = dct64_mmx; /* only use the 3dnow version in the synth_1to1_sse */ + fr->cpu_opts.make_decode_tables = make_decode_tables_mmx; + fr->cpu_opts.init_layer3_gainpow2 = init_layer3_gainpow2_mmx; + fr->cpu_opts.init_layer2_table = init_layer2_table_mmx; + fr->cpu_opts.mpl_dct64 = dct64_3dnowext; + done = 1; + } + } + #endif + #ifdef OPT_SSE + if( !done && (auto_choose || !strcasecmp(cpu, "sse")) + && cpu_sse(cpu_flags) && cpu_mmx(cpu_flags) ) + { + int go = 1; + if(fr->p.force_rate) + { + #ifdef PENTIUM_FALLBACK + if(!auto_choose){ if(NOQUIET) error("I refuse to choose SSE as this will screw up with forced rate!"); } + else if(VERBOSE) fprintf(stderr, "Note: Not choosing SSE because flexible rate not supported.\n"); + + go = 0; + #else + if(NOQUIET) error("You will hear some awful sound because of flexible rate being chosen with SSE decoder!"); + #endif + } + if(go){ /* temporary hack for flexible rate bug, not going indent this - fix it instead! */ + chosen = "SSE"; + fr->cpu_opts.type = sse; + fr->cpu_opts.class = mmxsse; + fr->cpu_opts.synth_1to1 = synth_1to1_sse; + fr->cpu_opts.dct64 = dct64_mmx; /* only use the sse version in the synth_1to1_sse */ + fr->cpu_opts.make_decode_tables = make_decode_tables_mmx; + fr->cpu_opts.init_layer3_gainpow2 = init_layer3_gainpow2_mmx; + fr->cpu_opts.init_layer2_table = init_layer2_table_mmx; + fr->cpu_opts.mpl_dct64 = dct64_sse; + done = 1; + } + } + #endif + #ifdef OPT_3DNOW + fr->cpu_opts.dct36 = dct36; + /* TODO: make autodetection for _all_ x86 optimizations (maybe just for i586+ and keep separate 486 build?) */ + /* check cpuflags bit 31 (3DNow!) and 23 (MMX) */ + if( !done && (auto_choose || !strcasecmp(cpu, "3dnow")) + && cpu_3dnow(cpu_flags) && cpu_mmx(cpu_flags) ) + { + chosen = "3DNow"; + fr->cpu_opts.type = dreidnow; + fr->cpu_opts.dct36 = dct36_3dnow; /* 3DNow! optimized dct36() */ + fr->cpu_opts.synth_1to1 = synth_1to1_3dnow; + fr->cpu_opts.dct64 = dct64_i386; /* use the 3dnow one? */ + done = 1; + } + #endif + #ifdef OPT_MMX + if( !done && (auto_choose || !strcasecmp(cpu, "mmx")) + && cpu_mmx(cpu_flags) ) + { + int go = 1; + if(fr->p.force_rate) + { + #ifdef PENTIUM_FALLBACK + if(!auto_choose){ if(NOQUIET) error("I refuse to choose MMX as this will screw up with forced rate!"); } + else if(VERBOSE) fprintf(stderr, "Note: Not choosing MMX because flexible rate not supported.\n"); + + go = 0; + #else + error("You will hear some awful sound because of flexible rate being chosen with MMX decoder!"); + #endif + } + if(go){ /* temporary hack for flexible rate bug, not going indent this - fix it instead! */ + chosen = "MMX"; + fr->cpu_opts.type = mmx; + fr->cpu_opts.class = mmxsse; + fr->cpu_opts.synth_1to1 = synth_1to1_mmx; + fr->cpu_opts.dct64 = dct64_mmx; + fr->cpu_opts.make_decode_tables = make_decode_tables_mmx; + fr->cpu_opts.init_layer3_gainpow2 = init_layer3_gainpow2_mmx; + fr->cpu_opts.init_layer2_table = init_layer2_table_mmx; + done = 1; + } + } + #endif + #ifdef OPT_I586 + if(!done && (auto_choose || !strcasecmp(cpu, "i586"))) + { + chosen = "i586/pentium"; + fr->cpu_opts.type = ifuenf; + fr->cpu_opts.synth_1to1 = synth_1to1_i586; + fr->cpu_opts.synth_1to1_i586_asm = synth_1to1_i586_asm; + fr->cpu_opts.dct64 = dct64_i386; + done = 1; + } + #endif + #ifdef OPT_I586_DITHER + if(!done && (auto_choose || !strcasecmp(cpu, "i586_dither"))) + { + chosen = "dithered i586/pentium"; + fr->cpu_opts.type = ifuenf_dither; + fr->cpu_opts.synth_1to1 = synth_1to1_i586; + fr->cpu_opts.dct64 = dct64_i386; + fr->cpu_opts.synth_1to1_i586_asm = synth_1to1_i586_asm_dither; + done = 1; + } + #endif + } + #ifdef OPT_I486 /* that won't cooperate nicely in multi opt mode - forcing i486 in layer3.c */ + if(!done && (auto_choose || !strcasecmp(cpu, "i486"))) + { + chosen = "i486"; + fr->cpu_opts.type = ivier; + fr->cpu_opts.synth_1to1 = synth_1to1_i386; /* i486 function is special */ + fr->cpu_opts.dct64 = dct64_i386; + done = 1; + } + #endif + #ifdef OPT_I386 + if(!done && (auto_choose || !strcasecmp(cpu, "i386"))) + { + chosen = "i386"; + fr->cpu_opts.type = idrei; + fr->cpu_opts.synth_1to1 = synth_1to1_i386; + fr->cpu_opts.dct64 = dct64_i386; + done = 1; + } + #endif + + if(done) /* set common x86 functions */ + { + fr->cpu_opts.synth_1to1_mono = synth_1to1_mono_i386; + fr->cpu_opts.synth_1to1_mono2stereo = synth_1to1_mono2stereo_i386; + fr->cpu_opts.synth_1to1_8bit = synth_1to1_8bit_i386; + fr->cpu_opts.synth_1to1_8bit_mono = synth_1to1_8bit_mono_i386; + fr->cpu_opts.synth_1to1_8bit_mono2stereo = synth_1to1_8bit_mono2stereo_i386; + } + #endif /* OPT_X86 */ + + #ifdef OPT_ALTIVEC + if(!done && (auto_choose || !strcasecmp(cpu, "altivec"))) + { + chosen = "AltiVec"; + fr->cpu_opts.type = altivec; + fr->cpu_opts.dct64 = dct64_altivec; + fr->cpu_opts.synth_1to1 = synth_1to1_altivec; + fr->cpu_opts.synth_1to1_mono = synth_1to1_mono_altivec; + fr->cpu_opts.synth_1to1_mono2stereo = synth_1to1_mono2stereo_altivec; + fr->cpu_opts.synth_1to1_8bit = synth_1to1_8bit_altivec; + fr->cpu_opts.synth_1to1_8bit_mono = synth_1to1_8bit_mono_altivec; + fr->cpu_opts.synth_1to1_8bit_mono2stereo = synth_1to1_8bit_mono2stereo_altivec; + done = 1; + } + #endif + + #ifdef OPT_GENERIC + if(!done && (auto_choose || !strcasecmp(cpu, "generic"))) + { + chosen = "generic"; + fr->cpu_opts.type = generic; + fr->cpu_opts.dct64 = dct64; + fr->cpu_opts.synth_1to1 = synth_1to1; + fr->cpu_opts.synth_1to1_mono = synth_1to1_mono; + fr->cpu_opts.synth_1to1_mono2stereo = synth_1to1_mono2stereo; + fr->cpu_opts.synth_1to1_8bit = synth_1to1_8bit; + fr->cpu_opts.synth_1to1_8bit_mono = synth_1to1_8bit_mono; + fr->cpu_opts.synth_1to1_8bit_mono2stereo = synth_1to1_8bit_mono2stereo; + done = 1; + } + #endif +#endif + if(done) + { + if(VERBOSE) fprintf(stderr, "Decoder: %s\n", chosen); + return 1; + } + else + { + if(NOQUIET) error("Could not set optimization!"); + return 0; + } +} + +enum optdec dectype(const char* decoder) +{ + if(decoder == NULL) return autodec; + if(!strcasecmp(decoder, "3dnowext")) return dreidnowext; + if(!strcasecmp(decoder, "3dnow")) return dreidnow; + if(!strcasecmp(decoder, "sse")) return sse; + if(!strcasecmp(decoder, "mmx")) return mmx; + if(!strcasecmp(decoder, "generic")) return generic; + if(!strcasecmp(decoder, "altivec")) return altivec; + if(!strcasecmp(decoder, "i386")) return idrei; + if(!strcasecmp(decoder, "i486")) return ivier; + if(!strcasecmp(decoder, "i586")) return ifuenf; + if(!strcasecmp(decoder, "i586_dither")) return ifuenf_dither; + return nodec; +} + diff -r f2985e08589c -r 7e08477b0fc1 decoders/libmpg123/frame.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/decoders/libmpg123/frame.h Fri Jan 30 02:44:47 2009 -0500 @@ -0,0 +1,346 @@ +/* + frame: Central data structures and opmitization hooks. + + copyright 2007 by the mpg123 project - free software under the terms of the LGPL 2.1 + see COPYING and AUTHORS files in distribution or http://mpg123.org + initially written by Thomas Orgis +*/ + +#ifndef MPG123_FRAME_H +#define MPG123_FRAME_H + +#include +#include "config.h" +#include "mpg123.h" +#include "id3.h" +#include "icy.h" +#include "reader.h" +#include "optimize.h" +#ifdef FRAME_INDEX +#include "index.h" +#endif + +/* max = 1728 */ +#define MAXFRAMESIZE 3456 + +struct al_table +{ + short bits; + short d; +}; + +/* the output buffer, used to be pcm_sample, pcm_point and audiobufsize */ +struct outbuffer +{ + unsigned char *data; + unsigned char *p; /* read pointer */ + size_t fill; /* fill from read pointer */ + size_t size; /* that's actually more like a safe size, after we have more than that, flush it */ +}; + +struct audioformat +{ + int encoding; + int channels; + long rate; +}; + +enum optdec { autodec=-1, nodec=0, generic, idrei, ivier, ifuenf, ifuenf_dither, mmx, dreidnow, dreidnowext, altivec, sse }; +enum optcla { nocla=0, normal, mmxsse }; + +void invalidate_format(struct audioformat *af); + +struct mpg123_pars_struct +{ + int verbose; /* verbose level */ + long flags; /* combination of above */ + long force_rate; + int down_sample; + int rva; /* (which) rva to do: 0: nothing, 1: radio/mix/track 2: album/audiophile */ + long halfspeed; + long doublespeed; +#ifndef WIN32 + long timeout; +#endif +#define NUM_CHANNELS 2 + char audio_caps[NUM_CHANNELS][MPG123_RATES+1][MPG123_ENCODINGS]; +/* long start_frame; */ /* frame offset to begin with */ +/* long frame_number;*/ /* number of frames to decode */ + long icy_interval; + scale_t outscale; + long resync_limit; + long index_size; /* Long, because: negative values have a meaning. */ +}; + +/* There is a lot to condense here... many ints can be merged as flags; though the main space is still consumed by buffers. */ +struct mpg123_handle_struct +{ + int fresh; /* to be moved into flags */ + int new_format; + real hybrid_block[2][2][SBLIMIT*SSLIMIT]; + int hybrid_blc[2]; + /* the scratch vars for the decoders, sometimes real, sometimes short... sometimes int/long */ + short *short_buffs[2][2]; + real *real_buffs[2][2]; + unsigned char *rawbuffs; + int rawbuffss; + int bo[2]; /* i486 and dither need a second value */ + unsigned char* rawdecwin; /* the block with all decwins */ + real *decwin; /* _the_ decode table */ +#ifdef OPT_MMXORSSE + /* I am not really sure that I need both of them... used in assembler */ + float *decwin_mmx; + float *decwins; +#endif + int have_eq_settings; + real equalizer[2][32]; + + /* for halfspeed mode */ + unsigned char ssave[34]; + int halfphase; + + /* a raw buffer and a pointer into the middle for signed short conversion, only allocated on demand */ + unsigned char *conv16to8_buf; + unsigned char *conv16to8; + + /* There's some possible memory saving for stuff that is not _really_ dynamic. */ + + /* layer3 */ + int longLimit[9][23]; + int shortLimit[9][14]; + real gainpow2[256+118+4]; /* not really dynamic, just different for mmx */ + + /* layer2 */ + real muls[27][64]; /* also used by layer 1 */ + + /* decode_ntom */ + unsigned long ntom_val[2]; + unsigned long ntom_step; + + /* special i486 fun */ +#ifdef OPT_I486 + int *int_buffs[2][2]; +#endif + /* special altivec... */ +#ifdef OPT_ALTIVEC + real *areal_buffs[4][4]; +#endif + struct + { +#ifdef OPT_MULTI + int (*synth_1to1)(real *,int, mpg123_handle *,int ); + int (*synth_1to1_mono)(real *, mpg123_handle *); + int (*synth_1to1_mono2stereo)(real *, mpg123_handle *); + int (*synth_1to1_8bit)(real *,int, mpg123_handle *,int ); + int (*synth_1to1_8bit_mono)(real *, mpg123_handle *); + int (*synth_1to1_8bit_mono2stereo)(real *, mpg123_handle *); +#ifdef OPT_PENTIUM + int (*synth_1to1_i586_asm)(real *,int,unsigned char *, unsigned char *, int *, real *decwin); +#endif +#ifdef OPT_MMXORSSE + void (*make_decode_tables)(mpg123_handle *fr); + real (*init_layer3_gainpow2)(mpg123_handle*, int); + real* (*init_layer2_table)(mpg123_handle*, real*, double); +#endif +#ifdef OPT_3DNOW + void (*dct36)(real *,real *,real *,real *,real *); +#endif + void (*dct64)(real *,real *,real *); +#ifdef OPT_MPLAYER + void (*mpl_dct64)(real *,real *,real *); +#endif +#endif + enum optdec type; + enum optcla class; + } cpu_opts; + + int verbose; /* 0: nothing, 1: just print chosen decoder, 2: be verbose */ + + /* mpg123_handle */ + const struct al_table *alloc; + /* could use types from optimize.h */ + int (*synth)(real *,int, mpg123_handle*, int); + int (*synth_mono)(real *, mpg123_handle*); + int stereo; /* I _think_ 1 for mono and 2 for stereo */ + int jsbound; +#define SINGLE_STEREO -1 +#define SINGLE_LEFT 0 +#define SINGLE_RIGHT 1 +#define SINGLE_MIX 3 + int single; + int II_sblimit; + int down_sample_sblimit; + int lsf; /* 0: MPEG 1.0; 1: MPEG 2.0/2.5 -- both used as bool and array index! */ + /* Many flags in disguise as integers... wasting bytes. */ + int mpeg25; + int down_sample; + int header_change; + int lay; + int (*do_layer)(mpg123_handle *); + int error_protection; + int bitrate_index; + int sampling_frequency; + int padding; + int extension; + int mode; + int mode_ext; + int copyright; + int original; + int emphasis; + int framesize; /* computed framesize */ + int freesize; /* free format frame size */ + enum mpg123_vbr vbr; /* 1 if variable bitrate was detected */ + off_t num; /* frame offset ... */ + off_t audio_start; /* The byte offset in the file where audio data begins. */ + char accurate; /* Flag to see if we trust the frame number. */ + char silent_resync; /* Do not complain for the next n resyncs. */ + unsigned char* xing_toc; /* The seek TOC from Xing header. */ + + /* bitstream info; bsi */ + int bitindex; + unsigned char *wordpointer; + /* temporary storage for getbits stuff */ + unsigned long ultmp; + unsigned char uctmp; + + /* rva data, used in common.c, set in id3.c */ + + scale_t lastscale; + struct + { + int level[2]; + float gain[2]; + float peak[2]; + } rva; + + /* input data */ + off_t track_frames; + off_t track_samples; + double mean_framesize; + off_t mean_frames; + int fsizeold; + int ssize; + unsigned int bitreservoir; + unsigned char bsspace[2][MAXFRAMESIZE+512]; /* MAXFRAMESIZE */ + unsigned char *bsbuf; + unsigned char *bsbufold; + int bsnum; + unsigned long oldhead; + unsigned long firsthead; + int abr_rate; +#ifdef FRAME_INDEX + struct frame_index index; +#endif + + /* output data */ + struct outbuffer buffer; + struct audioformat af; + int own_buffer; + size_t outblock; /* number of bytes that this frame produces (upper bound) */ + int to_decode; /* this frame holds data to be decoded */ + int to_ignore; /* the same, somehow */ + off_t firstframe; /* start decoding from here */ + off_t lastframe; /* last frame to decode (for gapless or num_frames limit) */ + off_t ignoreframe; /* frames to decode but discard before firstframe */ +#ifdef GAPLESS + off_t firstoff; /* number of samples to ignore from firstframe */ + off_t lastoff; /* number of samples to use from lastframe */ + off_t begin_s; /* overall begin offset in samples */ + off_t begin_os; + off_t end_s; /* overall end offset in samples */ + off_t end_os; +#endif + unsigned int crc; /* Well, I need a safe 16bit type, actually. But wider doesn't hurt. */ + struct reader *rd; /* pointer to the reading functions */ + struct reader_data rdat; /* reader data and state info */ + struct mpg123_pars_struct p; + int err; + int decoder_change; + int delayed_change; + long clip; + /* the meta crap */ + int metaflags; + unsigned char id3buf[128]; + mpg123_id3v2 id3v2; + struct icy_meta icy; +}; + +/* generic init, does not include dynamic buffers */ +void frame_init(mpg123_handle *fr); +void frame_init_par(mpg123_handle *fr, mpg123_pars *mp); +/* output buffer and format */ +int frame_outbuffer(mpg123_handle *fr); +int frame_output_format(mpg123_handle *fr); + +int frame_buffers(mpg123_handle *fr); /* various decoder buffers, needed once */ +int frame_reset(mpg123_handle* fr); /* reset for next track */ +int frame_buffers_reset(mpg123_handle *fr); +void frame_exit(mpg123_handle *fr); /* end, free all buffers */ + +/* Index functions... */ +/* Well... print it... */ +int mpg123_print_index(mpg123_handle *fr, FILE* out); +/* Find a seek position in index. */ +off_t frame_index_find(mpg123_handle *fr, off_t want_frame, off_t* get_frame); +/* Apply index_size setting. */ +int frame_index_setup(mpg123_handle *fr); + +int frame_cpu_opt(mpg123_handle *fr, const char* cpu); +enum optdec dectype(const char* decoder); + +int set_synth_functions(mpg123_handle *fr); + +void do_volume(mpg123_handle *fr, double factor); +void do_rva(mpg123_handle *fr); + +/* samples per frame ... +Layer I +Layer II +Layer III +MPEG-1 +384 +1152 +1152 +MPEG-2 LSF +384 +1152 +576 +MPEG 2.5 +384 +1152 +576 +*/ +#define spf(fr) ((fr)->lay == 1 ? 384 : ((fr)->lay==2 ? 1152 : ((fr)->lsf || (fr)->mpeg25 ? 576 : 1152))) + +#ifdef GAPLESS +/* well, I take that one for granted... at least layer3 */ +#define GAPLESS_DELAY 529 +/* still fine-tuning the "real music" window... see read_frame */ +void frame_gapless_init(mpg123_handle *fr, off_t b, off_t e); +void frame_gapless_realinit(mpg123_handle *fr); +/*void frame_gapless_position(mpg123_handle* fr); +void frame_gapless_bytify(mpg123_handle *fr); +void frame_gapless_ignore(mpg123_handle *fr, off_t frames);*/ +/* void frame_gapless_buffercheck(mpg123_handle *fr); */ +#endif + +/* + Seeking core functions: + - convert input sample offset to output sample offset + - convert frame offset to output sample offset + - get leading frame offset for output sample offset + The offsets are "unadjusted"/internal; resampling is being taken care of. +*/ +off_t frame_ins2outs(mpg123_handle *fr, off_t ins); +off_t frame_outs(mpg123_handle *fr, off_t num); +off_t frame_offset(mpg123_handle *fr, off_t outs); +void frame_set_frameseek(mpg123_handle *fr, off_t fe); +void frame_set_seek(mpg123_handle *fr, off_t sp); +off_t frame_tell_seek(mpg123_handle *fr); +/* Take a copy of the Xing VBR TOC for fuzzy seeking. */ +int frame_fill_toc(mpg123_handle *fr, unsigned char* in); + + +/* adjust volume to current outscale and rva values if wanted */ +void do_rva(mpg123_handle *fr); +#endif diff -r f2985e08589c -r 7e08477b0fc1 decoders/libmpg123/getbits.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/decoders/libmpg123/getbits.h Fri Jan 30 02:44:47 2009 -0500 @@ -0,0 +1,49 @@ +/* + getbits + + copyright ?-2006 by the mpg123 project - free software under the terms of the LGPL 2.1 + see COPYING and AUTHORS files in distribution or http://mpg123.org + initially written by Michael Hipp +*/ + +#ifndef _MPG123_GETBITS_H_ +#define _MPG123_GETBITS_H_ + +/* that's the same file as getits.c but with defines to + force inlining */ + +#define backbits(fr,nob) ((void)( \ + fr->bitindex -= nob, \ + fr->wordpointer += (fr->bitindex>>3), \ + fr->bitindex &= 0x7 )) + +#define getbitoffset(fr) ((-fr->bitindex)&0x7) +#define getbyte(fr) (*fr->wordpointer++) + +#define getbits(fr, nob) ( \ + fr->ultmp = fr->wordpointer[0], fr->ultmp <<= 8, fr->ultmp |= fr->wordpointer[1], \ + fr->ultmp <<= 8, fr->ultmp |= fr->wordpointer[2], fr->ultmp <<= fr->bitindex, \ + fr->ultmp &= 0xffffff, fr->bitindex += nob, \ + fr->ultmp >>= (24-nob), fr->wordpointer += (fr->bitindex>>3), \ + fr->bitindex &= 7,fr->ultmp) + +#define skipbits(fr, nob) fr->ultmp = ( \ + fr->ultmp = fr->wordpointer[0], fr->ultmp <<= 8, fr->ultmp |= fr->wordpointer[1], \ + fr->ultmp <<= 8, fr->ultmp |= fr->wordpointer[2], fr->ultmp <<= fr->bitindex, \ + fr->ultmp &= 0xffffff, fr->bitindex += nob, \ + fr->ultmp >>= (24-nob), fr->wordpointer += (fr->bitindex>>3), \ + fr->bitindex &= 7 ) + +#define getbits_fast(fr, nob) ( \ + fr->ultmp = (unsigned char) (fr->wordpointer[0] << fr->bitindex), \ + fr->ultmp |= ((unsigned long) fr->wordpointer[1]<bitindex)>>8, \ + fr->ultmp <<= nob, fr->ultmp >>= 8, \ + fr->bitindex += nob, fr->wordpointer += (fr->bitindex>>3), \ + fr->bitindex &= 7, fr->ultmp ) + +#define get1bit(fr) ( \ + fr->uctmp = *fr->wordpointer << fr->bitindex, fr->bitindex++, \ + fr->wordpointer += (fr->bitindex>>3), fr->bitindex &= 7, fr->uctmp>>7 ) + + +#endif diff -r f2985e08589c -r 7e08477b0fc1 decoders/libmpg123/getcpuflags.S --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/decoders/libmpg123/getcpuflags.S Fri Jan 30 02:44:47 2009 -0500 @@ -0,0 +1,94 @@ +/* + getcpucpuflags: get cpuflags for ia32 + + copyright ?-2006 by the mpg123 project - free software under the terms of the LGPL 2.1 + see COPYING and AUTHORS files in distribution or http:#mpg123.org + initially written by KIMURA Takuhiro (for 3DNow!) + extended for general use by Thomas Orgis + + extern int getcpuid(struct cpuflags*) + or just + extern int getcpuid(unsigned int*) + where there is memory for 4 ints + -> the first set of idflags (basic cpu family info) + and the idflags, stdflags, std2flags, extflags written to the parameter + -> 0x00000000 (CPUID instruction not supported) +*/ + +#include "mangle.h" + +.text + ALIGN4 + +.globl ASM_NAME(getcpuflags) +/* .type ASM_NAME(getcpuflags),@function */ +ASM_NAME(getcpuflags): + pushl %ebp + movl %esp,%ebp + pushl %edx + pushl %ecx + pushl %ebx + pushl %esi +/* get the int pointer for storing the flags */ + movl 8(%ebp), %esi +/* does that one make sense? */ + movl $0x80000000,%eax +/* now save the flags and do a check for cpuid availability */ + pushfl + pushfl + popl %eax + movl %eax,%ebx +/* set that bit... */ + xorl $0x00200000,%eax + pushl %eax + popfl +/* ...and read back the flags to see if it is understood */ + pushfl + popl %eax + popfl + cmpl %ebx,%eax + je .Lnocpuid +/* In principle, I would have to check the CPU's identify first to be sure how to interpret the extended flags. */ +/* now get the info, first extended */ + movl $0x0, 12(%esi) /* clear value */ +/* only if supported... */ + movl $0x80000000, %eax + cpuid +/* IDT CPUs should not change EAX, generally I hope that non-3DNow cpus do not set a bogus support level here. */ + cmpl $0x80000001, %eax + jb .Lnoextended /* Skip ext check without minimal support level. */ +/* is supported, get flags value */ + movl $0x80000001,%eax + cpuid + movl %edx,12(%esi) +.Lnoextended: +/* then the other ones, called last to get the id flags in %eax for ret */ + movl $0x00000001,%eax + cpuid + movl %eax, (%esi) + movl %ecx, 4(%esi) + movl %edx, 8(%esi) + jmp .Lend + ALIGN4 +.Lnocpuid: +/* error: set everything to zero */ + movl $0, %eax + movl $0, (%esi) + movl $0, 4(%esi) + movl $0, 8(%esi) + movl $0, 12(%esi) + ALIGN4 +.Lend: +/* return value are the id flags, still stored in %eax */ + popl %esi + popl %ebx + popl %ecx + popl %edx + movl %ebp,%esp + popl %ebp + ret + +/* Mark non-executable stack. */ +#if defined(__linux__) && defined(__ELF__) +.section .note.GNU-stack,"",%progbits +#endif diff -r f2985e08589c -r 7e08477b0fc1 decoders/libmpg123/getcpuflags.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/decoders/libmpg123/getcpuflags.h Fri Jan 30 02:44:47 2009 -0500 @@ -0,0 +1,49 @@ +/* + getcpucpuflags: get cpuflags for ia32 + + copyright ?-2007 by the mpg123 project - free software under the terms of the LGPL 2.1 + see COPYING and AUTHORS files in distribution or http:#mpg123.org + initially written by KIMURA Takuhiro (for 3DNow!) + extended for general use by Thomas Orgis +*/ + +#ifndef MPG123_H_GETCPUFLAGS +#define MPG123_H_GETCPUFLAGS + +/* standard level flags part 1 (ECX)*/ +#define FLAG_SSE3 0x00000001 + +/* standard level flags part 2 (EDX) */ +#define FLAG2_MMX 0x00800000 +#define FLAG2_SSE 0x02000000 +#define FLAG2_SSE2 0x04000000 +#define FLAG2_FPU 0x00000001 +/* cpuid extended level 1 (AMD) */ +#define XFLAG_MMX 0x00800000 +#define XFLAG_3DNOW 0x80000000 +#define XFLAG_3DNOWEXT 0x40000000 + +struct cpuflags +{ + unsigned int id; + unsigned int std; + unsigned int std2; + unsigned int ext; +}; + +extern struct cpuflags cpu_flags; + +unsigned int getcpuflags(struct cpuflags* cf); + +/* checks the family */ +#define cpu_i586(s) ( ((s.id & 0xf00)>>8) == 0 || ((s.id & 0xf00)>>8) > 4 ) +/* checking some flags... */ +#define cpu_fpu(s) (FLAG2_FPU & s.std2) +#define cpu_mmx(s) (FLAG2_MMX & s.std2 || XFLAG_MMX & s.ext) +#define cpu_3dnow(s) (XFLAG_3DNOW & s.ext) +#define cpu_3dnowext(s) (XFLAG_3DNOWEXT & s.ext) +#define cpu_sse(s) (FLAG2_SSE & s.std2) +#define cpu_sse2(s) (FLAG2_SSE2 & s.std2) +#define cpu_sse3(s) (FLAG_SSE3 & s.std) + +#endif diff -r f2985e08589c -r 7e08477b0fc1 decoders/libmpg123/huffman.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/decoders/libmpg123/huffman.h Fri Jan 30 02:44:47 2009 -0500 @@ -0,0 +1,340 @@ +/* + huffman.h: huffman tables ... recalcualted to work with optimzed decoder scheme (MH) + + copyright ?-2006 by the mpg123 project - free software under the terms of the LGPL 2.1 + see COPYING and AUTHORS files in distribution or http://mpg123.org + initially written by Michael Hipp + + probably we could save a few bytes of memory, because the + smaller tables are often the part of a bigger table +*/ + + +#ifndef _MPG123_HUFFMAN_H_ +#define _MPG123_HUFFMAN_H_ + +struct newhuff +{ + unsigned int linbits; + short *table; +}; + +static short tab0[] = +{ + 0 +}; + +static short tab1[] = +{ + -5, -3, -1, 17, 1, 16, 0 +}; + +static short tab2[] = +{ + -15, -11, -9, -5, -3, -1, 34, 2, 18, -1, 33, 32, 17, -1, 1, + 16, 0 +}; + +static short tab3[] = +{ + -13, -11, -9, -5, -3, -1, 34, 2, 18, -1, 33, 32, 16, 17, -1, + 1, 0 +}; + +static short tab5[] = +{ + -29, -25, -23, -15, -7, -5, -3, -1, 51, 35, 50, 49, -3, -1, 19, + 3, -1, 48, 34, -3, -1, 18, 33, -1, 2, 32, 17, -1, 1, 16, + 0 +}; + +static short tab6[] = +{ + -25, -19, -13, -9, -5, -3, -1, 51, 3, 35, -1, 50, 48, -1, 19, + 49, -3, -1, 34, 2, 18, -3, -1, 33, 32, 1, -1, 17, -1, 16, + 0 +}; + +static short tab7[] = +{ + -69, -65, -57, -39, -29, -17, -11, -7, -3, -1, 85, 69, -1, 84, 83, + -1, 53, 68, -3, -1, 37, 82, 21, -5, -1, 81, -1, 5, 52, -1, + 80, -1, 67, 51, -5, -3, -1, 36, 66, 20, -1, 65, 64, -11, -7, + -3, -1, 4, 35, -1, 50, 3, -1, 19, 49, -3, -1, 48, 34, 18, + -5, -1, 33, -1, 2, 32, 17, -1, 1, 16, 0 +}; + +static short tab8[] = +{ + -65, -63, -59, -45, -31, -19, -13, -7, -5, -3, -1, 85, 84, 69, 83, + -3, -1, 53, 68, 37, -3, -1, 82, 5, 21, -5, -1, 81, -1, 52, + 67, -3, -1, 80, 51, 36, -5, -3, -1, 66, 20, 65, -3, -1, 4, + 64, -1, 35, 50, -9, -7, -3, -1, 19, 49, -1, 3, 48, 34, -1, + 2, 32, -1, 18, 33, 17, -3, -1, 1, 16, 0 +}; + +static short tab9[] = +{ + -63, -53, -41, -29, -19, -11, -5, -3, -1, 85, 69, 53, -1, 83, -1, + 84, 5, -3, -1, 68, 37, -1, 82, 21, -3, -1, 81, 52, -1, 67, + -1, 80, 4, -7, -3, -1, 36, 66, -1, 51, 64, -1, 20, 65, -5, + -3, -1, 35, 50, 19, -1, 49, -1, 3, 48, -5, -3, -1, 34, 2, + 18, -1, 33, 32, -3, -1, 17, 1, -1, 16, 0 +}; + +static short tab10[] = +{ +-125,-121,-111, -83, -55, -35, -21, -13, -7, -3, -1, 119, 103, -1, 118, + 87, -3, -1, 117, 102, 71, -3, -1, 116, 86, -1, 101, 55, -9, -3, + -1, 115, 70, -3, -1, 85, 84, 99, -1, 39, 114, -11, -5, -3, -1, + 100, 7, 112, -1, 98, -1, 69, 53, -5, -1, 6, -1, 83, 68, 23, + -17, -5, -1, 113, -1, 54, 38, -5, -3, -1, 37, 82, 21, -1, 81, + -1, 52, 67, -3, -1, 22, 97, -1, 96, -1, 5, 80, -19, -11, -7, + -3, -1, 36, 66, -1, 51, 4, -1, 20, 65, -3, -1, 64, 35, -1, + 50, 3, -3, -1, 19, 49, -1, 48, 34, -7, -3, -1, 18, 33, -1, + 2, 32, 17, -1, 1, 16, 0 +}; + +static short tab11[] = +{ +-121,-113, -89, -59, -43, -27, -17, -7, -3, -1, 119, 103, -1, 118, 117, + -3, -1, 102, 71, -1, 116, -1, 87, 85, -5, -3, -1, 86, 101, 55, + -1, 115, 70, -9, -7, -3, -1, 69, 84, -1, 53, 83, 39, -1, 114, + -1, 100, 7, -5, -1, 113, -1, 23, 112, -3, -1, 54, 99, -1, 96, + -1, 68, 37, -13, -7, -5, -3, -1, 82, 5, 21, 98, -3, -1, 38, + 6, 22, -5, -1, 97, -1, 81, 52, -5, -1, 80, -1, 67, 51, -1, + 36, 66, -15, -11, -7, -3, -1, 20, 65, -1, 4, 64, -1, 35, 50, + -1, 19, 49, -5, -3, -1, 3, 48, 34, 33, -5, -1, 18, -1, 2, + 32, 17, -3, -1, 1, 16, 0 +}; + +static short tab12[] = +{ +-115, -99, -73, -45, -27, -17, -9, -5, -3, -1, 119, 103, 118, -1, 87, + 117, -3, -1, 102, 71, -1, 116, 101, -3, -1, 86, 55, -3, -1, 115, + 85, 39, -7, -3, -1, 114, 70, -1, 100, 23, -5, -1, 113, -1, 7, + 112, -1, 54, 99, -13, -9, -3, -1, 69, 84, -1, 68, -1, 6, 5, + -1, 38, 98, -5, -1, 97, -1, 22, 96, -3, -1, 53, 83, -1, 37, + 82, -17, -7, -3, -1, 21, 81, -1, 52, 67, -5, -3, -1, 80, 4, + 36, -1, 66, 20, -3, -1, 51, 65, -1, 35, 50, -11, -7, -5, -3, + -1, 64, 3, 48, 19, -1, 49, 34, -1, 18, 33, -7, -5, -3, -1, + 2, 32, 0, 17, -1, 1, 16 +}; + +static short tab13[] = +{ +-509,-503,-475,-405,-333,-265,-205,-153,-115, -83, -53, -35, -21, -13, -9, + -7, -5, -3, -1, 254, 252, 253, 237, 255, -1, 239, 223, -3, -1, 238, + 207, -1, 222, 191, -9, -3, -1, 251, 206, -1, 220, -1, 175, 233, -1, + 236, 221, -9, -5, -3, -1, 250, 205, 190, -1, 235, 159, -3, -1, 249, + 234, -1, 189, 219, -17, -9, -3, -1, 143, 248, -1, 204, -1, 174, 158, + -5, -1, 142, -1, 127, 126, 247, -5, -1, 218, -1, 173, 188, -3, -1, + 203, 246, 111, -15, -7, -3, -1, 232, 95, -1, 157, 217, -3, -1, 245, + 231, -1, 172, 187, -9, -3, -1, 79, 244, -3, -1, 202, 230, 243, -1, + 63, -1, 141, 216, -21, -9, -3, -1, 47, 242, -3, -1, 110, 156, 15, + -5, -3, -1, 201, 94, 171, -3, -1, 125, 215, 78, -11, -5, -3, -1, + 200, 214, 62, -1, 185, -1, 155, 170, -1, 31, 241, -23, -13, -5, -1, + 240, -1, 186, 229, -3, -1, 228, 140, -1, 109, 227, -5, -1, 226, -1, + 46, 14, -1, 30, 225, -15, -7, -3, -1, 224, 93, -1, 213, 124, -3, + -1, 199, 77, -1, 139, 184, -7, -3, -1, 212, 154, -1, 169, 108, -1, + 198, 61, -37, -21, -9, -5, -3, -1, 211, 123, 45, -1, 210, 29, -5, + -1, 183, -1, 92, 197, -3, -1, 153, 122, 195, -7, -5, -3, -1, 167, + 151, 75, 209, -3, -1, 13, 208, -1, 138, 168, -11, -7, -3, -1, 76, + 196, -1, 107, 182, -1, 60, 44, -3, -1, 194, 91, -3, -1, 181, 137, + 28, -43, -23, -11, -5, -1, 193, -1, 152, 12, -1, 192, -1, 180, 106, + -5, -3, -1, 166, 121, 59, -1, 179, -1, 136, 90, -11, -5, -1, 43, + -1, 165, 105, -1, 164, -1, 120, 135, -5, -1, 148, -1, 119, 118, 178, + -11, -3, -1, 27, 177, -3, -1, 11, 176, -1, 150, 74, -7, -3, -1, + 58, 163, -1, 89, 149, -1, 42, 162, -47, -23, -9, -3, -1, 26, 161, + -3, -1, 10, 104, 160, -5, -3, -1, 134, 73, 147, -3, -1, 57, 88, + -1, 133, 103, -9, -3, -1, 41, 146, -3, -1, 87, 117, 56, -5, -1, + 131, -1, 102, 71, -3, -1, 116, 86, -1, 101, 115, -11, -3, -1, 25, + 145, -3, -1, 9, 144, -1, 72, 132, -7, -5, -1, 114, -1, 70, 100, + 40, -1, 130, 24, -41, -27, -11, -5, -3, -1, 55, 39, 23, -1, 113, + -1, 85, 7, -7, -3, -1, 112, 54, -1, 99, 69, -3, -1, 84, 38, + -1, 98, 53, -5, -1, 129, -1, 8, 128, -3, -1, 22, 97, -1, 6, + 96, -13, -9, -5, -3, -1, 83, 68, 37, -1, 82, 5, -1, 21, 81, + -7, -3, -1, 52, 67, -1, 80, 36, -3, -1, 66, 51, 20, -19, -11, + -5, -1, 65, -1, 4, 64, -3, -1, 35, 50, 19, -3, -1, 49, 3, + -1, 48, 34, -3, -1, 18, 33, -1, 2, 32, -3, -1, 17, 1, 16, + 0 +}; + +static short tab15[] = +{ +-495,-445,-355,-263,-183,-115, -77, -43, -27, -13, -7, -3, -1, 255, 239, + -1, 254, 223, -1, 238, -1, 253, 207, -7, -3, -1, 252, 222, -1, 237, + 191, -1, 251, -1, 206, 236, -7, -3, -1, 221, 175, -1, 250, 190, -3, + -1, 235, 205, -1, 220, 159, -15, -7, -3, -1, 249, 234, -1, 189, 219, + -3, -1, 143, 248, -1, 204, 158, -7, -3, -1, 233, 127, -1, 247, 173, + -3, -1, 218, 188, -1, 111, -1, 174, 15, -19, -11, -3, -1, 203, 246, + -3, -1, 142, 232, -1, 95, 157, -3, -1, 245, 126, -1, 231, 172, -9, + -3, -1, 202, 187, -3, -1, 217, 141, 79, -3, -1, 244, 63, -1, 243, + 216, -33, -17, -9, -3, -1, 230, 47, -1, 242, -1, 110, 240, -3, -1, + 31, 241, -1, 156, 201, -7, -3, -1, 94, 171, -1, 186, 229, -3, -1, + 125, 215, -1, 78, 228, -15, -7, -3, -1, 140, 200, -1, 62, 109, -3, + -1, 214, 227, -1, 155, 185, -7, -3, -1, 46, 170, -1, 226, 30, -5, + -1, 225, -1, 14, 224, -1, 93, 213, -45, -25, -13, -7, -3, -1, 124, + 199, -1, 77, 139, -1, 212, -1, 184, 154, -7, -3, -1, 169, 108, -1, + 198, 61, -1, 211, 210, -9, -5, -3, -1, 45, 13, 29, -1, 123, 183, + -5, -1, 209, -1, 92, 208, -1, 197, 138, -17, -7, -3, -1, 168, 76, + -1, 196, 107, -5, -1, 182, -1, 153, 12, -1, 60, 195, -9, -3, -1, + 122, 167, -1, 166, -1, 192, 11, -1, 194, -1, 44, 91, -55, -29, -15, + -7, -3, -1, 181, 28, -1, 137, 152, -3, -1, 193, 75, -1, 180, 106, + -5, -3, -1, 59, 121, 179, -3, -1, 151, 136, -1, 43, 90, -11, -5, + -1, 178, -1, 165, 27, -1, 177, -1, 176, 105, -7, -3, -1, 150, 74, + -1, 164, 120, -3, -1, 135, 58, 163, -17, -7, -3, -1, 89, 149, -1, + 42, 162, -3, -1, 26, 161, -3, -1, 10, 160, 104, -7, -3, -1, 134, + 73, -1, 148, 57, -5, -1, 147, -1, 119, 9, -1, 88, 133, -53, -29, + -13, -7, -3, -1, 41, 103, -1, 118, 146, -1, 145, -1, 25, 144, -7, + -3, -1, 72, 132, -1, 87, 117, -3, -1, 56, 131, -1, 102, 71, -7, + -3, -1, 40, 130, -1, 24, 129, -7, -3, -1, 116, 8, -1, 128, 86, + -3, -1, 101, 55, -1, 115, 70, -17, -7, -3, -1, 39, 114, -1, 100, + 23, -3, -1, 85, 113, -3, -1, 7, 112, 54, -7, -3, -1, 99, 69, + -1, 84, 38, -3, -1, 98, 22, -3, -1, 6, 96, 53, -33, -19, -9, + -5, -1, 97, -1, 83, 68, -1, 37, 82, -3, -1, 21, 81, -3, -1, + 5, 80, 52, -7, -3, -1, 67, 36, -1, 66, 51, -1, 65, -1, 20, + 4, -9, -3, -1, 35, 50, -3, -1, 64, 3, 19, -3, -1, 49, 48, + 34, -9, -7, -3, -1, 18, 33, -1, 2, 32, 17, -3, -1, 1, 16, + 0 +}; + +static short tab16[] = +{ +-509,-503,-461,-323,-103, -37, -27, -15, -7, -3, -1, 239, 254, -1, 223, + 253, -3, -1, 207, 252, -1, 191, 251, -5, -1, 175, -1, 250, 159, -3, + -1, 249, 248, 143, -7, -3, -1, 127, 247, -1, 111, 246, 255, -9, -5, + -3, -1, 95, 245, 79, -1, 244, 243, -53, -1, 240, -1, 63, -29, -19, + -13, -7, -5, -1, 206, -1, 236, 221, 222, -1, 233, -1, 234, 217, -1, + 238, -1, 237, 235, -3, -1, 190, 205, -3, -1, 220, 219, 174, -11, -5, + -1, 204, -1, 173, 218, -3, -1, 126, 172, 202, -5, -3, -1, 201, 125, + 94, 189, 242, -93, -5, -3, -1, 47, 15, 31, -1, 241, -49, -25, -13, + -5, -1, 158, -1, 188, 203, -3, -1, 142, 232, -1, 157, 231, -7, -3, + -1, 187, 141, -1, 216, 110, -1, 230, 156, -13, -7, -3, -1, 171, 186, + -1, 229, 215, -1, 78, -1, 228, 140, -3, -1, 200, 62, -1, 109, -1, + 214, 155, -19, -11, -5, -3, -1, 185, 170, 225, -1, 212, -1, 184, 169, + -5, -1, 123, -1, 183, 208, 227, -7, -3, -1, 14, 224, -1, 93, 213, + -3, -1, 124, 199, -1, 77, 139, -75, -45, -27, -13, -7, -3, -1, 154, + 108, -1, 198, 61, -3, -1, 92, 197, 13, -7, -3, -1, 138, 168, -1, + 153, 76, -3, -1, 182, 122, 60, -11, -5, -3, -1, 91, 137, 28, -1, + 192, -1, 152, 121, -1, 226, -1, 46, 30, -15, -7, -3, -1, 211, 45, + -1, 210, 209, -5, -1, 59, -1, 151, 136, 29, -7, -3, -1, 196, 107, + -1, 195, 167, -1, 44, -1, 194, 181, -23, -13, -7, -3, -1, 193, 12, + -1, 75, 180, -3, -1, 106, 166, 179, -5, -3, -1, 90, 165, 43, -1, + 178, 27, -13, -5, -1, 177, -1, 11, 176, -3, -1, 105, 150, -1, 74, + 164, -5, -3, -1, 120, 135, 163, -3, -1, 58, 89, 42, -97, -57, -33, + -19, -11, -5, -3, -1, 149, 104, 161, -3, -1, 134, 119, 148, -5, -3, + -1, 73, 87, 103, 162, -5, -1, 26, -1, 10, 160, -3, -1, 57, 147, + -1, 88, 133, -9, -3, -1, 41, 146, -3, -1, 118, 9, 25, -5, -1, + 145, -1, 144, 72, -3, -1, 132, 117, -1, 56, 131, -21, -11, -5, -3, + -1, 102, 40, 130, -3, -1, 71, 116, 24, -3, -1, 129, 128, -3, -1, + 8, 86, 55, -9, -5, -1, 115, -1, 101, 70, -1, 39, 114, -5, -3, + -1, 100, 85, 7, 23, -23, -13, -5, -1, 113, -1, 112, 54, -3, -1, + 99, 69, -1, 84, 38, -3, -1, 98, 22, -1, 97, -1, 6, 96, -9, + -5, -1, 83, -1, 53, 68, -1, 37, 82, -1, 81, -1, 21, 5, -33, + -23, -13, -7, -3, -1, 52, 67, -1, 80, 36, -3, -1, 66, 51, 20, + -5, -1, 65, -1, 4, 64, -1, 35, 50, -3, -1, 19, 49, -3, -1, + 3, 48, 34, -3, -1, 18, 33, -1, 2, 32, -3, -1, 17, 1, 16, + 0 +}; + +static short tab24[] = +{ +-451,-117, -43, -25, -15, -7, -3, -1, 239, 254, -1, 223, 253, -3, -1, + 207, 252, -1, 191, 251, -5, -1, 250, -1, 175, 159, -1, 249, 248, -9, + -5, -3, -1, 143, 127, 247, -1, 111, 246, -3, -1, 95, 245, -1, 79, + 244, -71, -7, -3, -1, 63, 243, -1, 47, 242, -5, -1, 241, -1, 31, + 240, -25, -9, -1, 15, -3, -1, 238, 222, -1, 237, 206, -7, -3, -1, + 236, 221, -1, 190, 235, -3, -1, 205, 220, -1, 174, 234, -15, -7, -3, + -1, 189, 219, -1, 204, 158, -3, -1, 233, 173, -1, 218, 188, -7, -3, + -1, 203, 142, -1, 232, 157, -3, -1, 217, 126, -1, 231, 172, 255,-235, +-143, -77, -45, -25, -15, -7, -3, -1, 202, 187, -1, 141, 216, -5, -3, + -1, 14, 224, 13, 230, -5, -3, -1, 110, 156, 201, -1, 94, 186, -9, + -5, -1, 229, -1, 171, 125, -1, 215, 228, -3, -1, 140, 200, -3, -1, + 78, 46, 62, -15, -7, -3, -1, 109, 214, -1, 227, 155, -3, -1, 185, + 170, -1, 226, 30, -7, -3, -1, 225, 93, -1, 213, 124, -3, -1, 199, + 77, -1, 139, 184, -31, -15, -7, -3, -1, 212, 154, -1, 169, 108, -3, + -1, 198, 61, -1, 211, 45, -7, -3, -1, 210, 29, -1, 123, 183, -3, + -1, 209, 92, -1, 197, 138, -17, -7, -3, -1, 168, 153, -1, 76, 196, + -3, -1, 107, 182, -3, -1, 208, 12, 60, -7, -3, -1, 195, 122, -1, + 167, 44, -3, -1, 194, 91, -1, 181, 28, -57, -35, -19, -7, -3, -1, + 137, 152, -1, 193, 75, -5, -3, -1, 192, 11, 59, -3, -1, 176, 10, + 26, -5, -1, 180, -1, 106, 166, -3, -1, 121, 151, -3, -1, 160, 9, + 144, -9, -3, -1, 179, 136, -3, -1, 43, 90, 178, -7, -3, -1, 165, + 27, -1, 177, 105, -1, 150, 164, -17, -9, -5, -3, -1, 74, 120, 135, + -1, 58, 163, -3, -1, 89, 149, -1, 42, 162, -7, -3, -1, 161, 104, + -1, 134, 119, -3, -1, 73, 148, -1, 57, 147, -63, -31, -15, -7, -3, + -1, 88, 133, -1, 41, 103, -3, -1, 118, 146, -1, 25, 145, -7, -3, + -1, 72, 132, -1, 87, 117, -3, -1, 56, 131, -1, 102, 40, -17, -7, + -3, -1, 130, 24, -1, 71, 116, -5, -1, 129, -1, 8, 128, -1, 86, + 101, -7, -5, -1, 23, -1, 7, 112, 115, -3, -1, 55, 39, 114, -15, + -7, -3, -1, 70, 100, -1, 85, 113, -3, -1, 54, 99, -1, 69, 84, + -7, -3, -1, 38, 98, -1, 22, 97, -5, -3, -1, 6, 96, 53, -1, + 83, 68, -51, -37, -23, -15, -9, -3, -1, 37, 82, -1, 21, -1, 5, + 80, -1, 81, -1, 52, 67, -3, -1, 36, 66, -1, 51, 20, -9, -5, + -1, 65, -1, 4, 64, -1, 35, 50, -1, 19, 49, -7, -5, -3, -1, + 3, 48, 34, 18, -1, 33, -1, 2, 32, -3, -1, 17, 1, -1, 16, + 0 +}; + +static short tab_c0[] = +{ + -29, -21, -13, -7, -3, -1, 11, 15, -1, 13, 14, -3, -1, 7, 5, + 9, -3, -1, 6, 3, -1, 10, 12, -3, -1, 2, 1, -1, 4, 8, + 0 +}; + +static short tab_c1[] = +{ + -15, -7, -3, -1, 15, 14, -1, 13, 12, -3, -1, 11, 10, -1, 9, + 8, -7, -3, -1, 7, 6, -1, 5, 4, -3, -1, 3, 2, -1, 1, + 0 +}; + + + +static struct newhuff ht[] = +{ + { /* 0 */ 0 , tab0 } , + { /* 2 */ 0 , tab1 } , + { /* 3 */ 0 , tab2 } , + { /* 3 */ 0 , tab3 } , + { /* 0 */ 0 , tab0 } , + { /* 4 */ 0 , tab5 } , + { /* 4 */ 0 , tab6 } , + { /* 6 */ 0 , tab7 } , + { /* 6 */ 0 , tab8 } , + { /* 6 */ 0 , tab9 } , + { /* 8 */ 0 , tab10 } , + { /* 8 */ 0 , tab11 } , + { /* 8 */ 0 , tab12 } , + { /* 16 */ 0 , tab13 } , + { /* 0 */ 0 , tab0 } , + { /* 16 */ 0 , tab15 } , + + { /* 16 */ 1 , tab16 } , + { /* 16 */ 2 , tab16 } , + { /* 16 */ 3 , tab16 } , + { /* 16 */ 4 , tab16 } , + { /* 16 */ 6 , tab16 } , + { /* 16 */ 8 , tab16 } , + { /* 16 */ 10, tab16 } , + { /* 16 */ 13, tab16 } , + { /* 16 */ 4 , tab24 } , + { /* 16 */ 5 , tab24 } , + { /* 16 */ 6 , tab24 } , + { /* 16 */ 7 , tab24 } , + { /* 16 */ 8 , tab24 } , + { /* 16 */ 9 , tab24 } , + { /* 16 */ 11, tab24 } , + { /* 16 */ 13, tab24 } +}; + +static struct newhuff htc[] = +{ + { /* 1 , 1 , */ 0 , tab_c0 } , + { /* 1 , 1 , */ 0 , tab_c1 } +}; + + +#endif diff -r f2985e08589c -r 7e08477b0fc1 decoders/libmpg123/icy.c --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/decoders/libmpg123/icy.c Fri Jan 30 02:44:47 2009 -0500 @@ -0,0 +1,32 @@ +/* + icy: Puny code to pretend for a serious ICY data structure. + + copyright 2007 by the mpg123 project - free software under the terms of the LGPL 2.1 + see COPYING and AUTHORS files in distribution or http://mpg123.org + initially written by Thomas Orgis +*/ + +#include "icy.h" + +void init_icy(struct icy_meta *icy) +{ + icy->data = NULL; +} + +void clear_icy(struct icy_meta *icy) +{ + if(icy->data != NULL) free(icy->data); + init_icy(icy); +} + +void reset_icy(struct icy_meta *icy) +{ + clear_icy(icy); + init_icy(icy); +} +/*void set_icy(struct icy_meta *icy, char* new_data) +{ + if(icy->data) free(icy->data); + icy->data = new_data; + icy->changed = 1; +}*/ diff -r f2985e08589c -r 7e08477b0fc1 decoders/libmpg123/icy.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/decoders/libmpg123/icy.h Fri Jan 30 02:44:47 2009 -0500 @@ -0,0 +1,25 @@ +/* + icy: support for SHOUTcast ICY meta info, an attempt to keep it organized + + copyright 2006-7 by the mpg123 project - free software under the terms of the LGPL 2.1 + see COPYING and AUTHORS files in distribution or http://mpg123.org + initially written by Thomas Orgis and modelled after patch by Honza +*/ +#ifndef MPG123_ICY_H +#define MPG123_ICY_H + +#include "compat.h" +#include "mpg123.h" + +struct icy_meta +{ + char* data; + off_t interval; + off_t next; +}; + +void init_icy(struct icy_meta *); +void clear_icy(struct icy_meta *); +void reset_icy(struct icy_meta *); + +#endif diff -r f2985e08589c -r 7e08477b0fc1 decoders/libmpg123/icy2utf8.c --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/decoders/libmpg123/icy2utf8.c Fri Jan 30 02:44:47 2009 -0500 @@ -0,0 +1,437 @@ +/* mpg123 note: This is BSD-licensed code that is no problem for mpg123 usage under LGPL. + It's Free, understood? ;-) */ + +/* Another note: This code is basically written by Thorsten Glaser, + Thomas Orgis did just some rearrangements and comments. */ + +/*- + * Copyright (c) 2008 + * Thorsten Glaser + * + * Provided that these terms and disclaimer and all copyright notices + * are retained or reproduced in an accompanying document, permission + * is granted to deal in this work without restriction, including un- + * limited rights to use, publicly perform, distribute, sell, modify, + * merge, give away, or sublicence. + * + * This work is provided "AS IS" and WITHOUT WARRANTY of any kind, to + * the utmost extent permitted by applicable law, neither express nor + * implied; without malicious intent or gross negligence. In no event + * may a licensor, author or contributor be held liable for indirect, + * direct, other damage, loss, or other issues arising in any way out + * of dealing in the work, even if advised of the possibility of such + * damage or existence of a defect, except proven that it results out + * of said person's immediate fault when using the work as intended. + *- + * Convert from ICY encoding (windows-1252 codepage) to UTF-8 + */ + +/* Includes string and stdlib headers... */ +#include "compat.h" + +/* ThOr: too lazy for this type check; also we use char/short all around anyway. + Of cource, it would be the proper way to use _these_ kind of types all around. */ +#define uint8_t unsigned char +#define uint16_t unsigned short + +static const uint8_t cp1252_utf8[] = { + /* 0x00 @ 0 */ 0x00, + /* 0x01 @ 1 */ 0x01, + /* 0x02 @ 2 */ 0x02, + /* 0x03 @ 3 */ 0x03, + /* 0x04 @ 4 */ 0x04, + /* 0x05 @ 5 */ 0x05, + /* 0x06 @ 6 */ 0x06, + /* 0x07 @ 7 */ 0x07, + /* 0x08 @ 8 */ 0x08, + /* 0x09 @ 9 */ 0x09, + /* 0x0A @ 10 */ 0x0A, + /* 0x0B @ 11 */ 0x0B, + /* 0x0C @ 12 */ 0x0C, + /* 0x0D @ 13 */ 0x0D, + /* 0x0E @ 14 */ 0x0E, + /* 0x0F @ 15 */ 0x0F, + /* 0x10 @ 16 */ 0x10, + /* 0x11 @ 17 */ 0x11, + /* 0x12 @ 18 */ 0x12, + /* 0x13 @ 19 */ 0x13, + /* 0x14 @ 20 */ 0x14, + /* 0x15 @ 21 */ 0x15, + /* 0x16 @ 22 */ 0x16, + /* 0x17 @ 23 */ 0x17, + /* 0x18 @ 24 */ 0x18, + /* 0x19 @ 25 */ 0x19, + /* 0x1A @ 26 */ 0x1A, + /* 0x1B @ 27 */ 0x1B, + /* 0x1C @ 28 */ 0x1C, + /* 0x1D @ 29 */ 0x1D, + /* 0x1E @ 30 */ 0x1E, + /* 0x1F @ 31 */ 0x1F, + /* 0x20 @ 32 */ 0x20, + /* 0x21 @ 33 */ 0x21, + /* 0x22 @ 34 */ 0x22, + /* 0x23 @ 35 */ 0x23, + /* 0x24 @ 36 */ 0x24, + /* 0x25 @ 37 */ 0x25, + /* 0x26 @ 38 */ 0x26, + /* 0x27 @ 39 */ 0x27, + /* 0x28 @ 40 */ 0x28, + /* 0x29 @ 41 */ 0x29, + /* 0x2A @ 42 */ 0x2A, + /* 0x2B @ 43 */ 0x2B, + /* 0x2C @ 44 */ 0x2C, + /* 0x2D @ 45 */ 0x2D, + /* 0x2E @ 46 */ 0x2E, + /* 0x2F @ 47 */ 0x2F, + /* 0x30 @ 48 */ 0x30, + /* 0x31 @ 49 */ 0x31, + /* 0x32 @ 50 */ 0x32, + /* 0x33 @ 51 */ 0x33, + /* 0x34 @ 52 */ 0x34, + /* 0x35 @ 53 */ 0x35, + /* 0x36 @ 54 */ 0x36, + /* 0x37 @ 55 */ 0x37, + /* 0x38 @ 56 */ 0x38, + /* 0x39 @ 57 */ 0x39, + /* 0x3A @ 58 */ 0x3A, + /* 0x3B @ 59 */ 0x3B, + /* 0x3C @ 60 */ 0x3C, + /* 0x3D @ 61 */ 0x3D, + /* 0x3E @ 62 */ 0x3E, + /* 0x3F @ 63 */ 0x3F, + /* 0x40 @ 64 */ 0x40, + /* 0x41 @ 65 */ 0x41, + /* 0x42 @ 66 */ 0x42, + /* 0x43 @ 67 */ 0x43, + /* 0x44 @ 68 */ 0x44, + /* 0x45 @ 69 */ 0x45, + /* 0x46 @ 70 */ 0x46, + /* 0x47 @ 71 */ 0x47, + /* 0x48 @ 72 */ 0x48, + /* 0x49 @ 73 */ 0x49, + /* 0x4A @ 74 */ 0x4A, + /* 0x4B @ 75 */ 0x4B, + /* 0x4C @ 76 */ 0x4C, + /* 0x4D @ 77 */ 0x4D, + /* 0x4E @ 78 */ 0x4E, + /* 0x4F @ 79 */ 0x4F, + /* 0x50 @ 80 */ 0x50, + /* 0x51 @ 81 */ 0x51, + /* 0x52 @ 82 */ 0x52, + /* 0x53 @ 83 */ 0x53, + /* 0x54 @ 84 */ 0x54, + /* 0x55 @ 85 */ 0x55, + /* 0x56 @ 86 */ 0x56, + /* 0x57 @ 87 */ 0x57, + /* 0x58 @ 88 */ 0x58, + /* 0x59 @ 89 */ 0x59, + /* 0x5A @ 90 */ 0x5A, + /* 0x5B @ 91 */ 0x5B, + /* 0x5C @ 92 */ 0x5C, + /* 0x5D @ 93 */ 0x5D, + /* 0x5E @ 94 */ 0x5E, + /* 0x5F @ 95 */ 0x5F, + /* 0x60 @ 96 */ 0x60, + /* 0x61 @ 97 */ 0x61, + /* 0x62 @ 98 */ 0x62, + /* 0x63 @ 99 */ 0x63, + /* 0x64 @ 100 */ 0x64, + /* 0x65 @ 101 */ 0x65, + /* 0x66 @ 102 */ 0x66, + /* 0x67 @ 103 */ 0x67, + /* 0x68 @ 104 */ 0x68, + /* 0x69 @ 105 */ 0x69, + /* 0x6A @ 106 */ 0x6A, + /* 0x6B @ 107 */ 0x6B, + /* 0x6C @ 108 */ 0x6C, + /* 0x6D @ 109 */ 0x6D, + /* 0x6E @ 110 */ 0x6E, + /* 0x6F @ 111 */ 0x6F, + /* 0x70 @ 112 */ 0x70, + /* 0x71 @ 113 */ 0x71, + /* 0x72 @ 114 */ 0x72, + /* 0x73 @ 115 */ 0x73, + /* 0x74 @ 116 */ 0x74, + /* 0x75 @ 117 */ 0x75, + /* 0x76 @ 118 */ 0x76, + /* 0x77 @ 119 */ 0x77, + /* 0x78 @ 120 */ 0x78, + /* 0x79 @ 121 */ 0x79, + /* 0x7A @ 122 */ 0x7A, + /* 0x7B @ 123 */ 0x7B, + /* 0x7C @ 124 */ 0x7C, + /* 0x7D @ 125 */ 0x7D, + /* 0x7E @ 126 */ 0x7E, + /* 0x7F @ 127 */ 0x7F, + /* 0x80 @ 128 */ 0xE2, 0x82, 0xAC, + /* 0x81 @ 131 */ 0xEF, 0xBF, 0xBD, + /* 0x82 @ 134 */ 0xE2, 0x80, 0x9A, + /* 0x83 @ 137 */ 0xC6, 0x92, + /* 0x84 @ 139 */ 0xE2, 0x80, 0x9E, + /* 0x85 @ 142 */ 0xE2, 0x80, 0xA6, + /* 0x86 @ 145 */ 0xE2, 0x80, 0xA0, + /* 0x87 @ 148 */ 0xE2, 0x80, 0xA1, + /* 0x88 @ 151 */ 0xCB, 0x86, + /* 0x89 @ 153 */ 0xE2, 0x80, 0xB0, + /* 0x8A @ 156 */ 0xC5, 0xA0, + /* 0x8B @ 158 */ 0xE2, 0x80, 0xB9, + /* 0x8C @ 161 */ 0xC5, 0x92, + /* 0x8D @ 163 */ 0xEF, 0xBF, 0xBD, + /* 0x8E @ 166 */ 0xC5, 0xBD, + /* 0x8F @ 168 */ 0xEF, 0xBF, 0xBD, + /* 0x90 @ 171 */ 0xEF, 0xBF, 0xBD, + /* 0x91 @ 174 */ 0xE2, 0x80, 0x98, + /* 0x92 @ 177 */ 0xE2, 0x80, 0x99, + /* 0x93 @ 180 */ 0xE2, 0x80, 0x9C, + /* 0x94 @ 183 */ 0xE2, 0x80, 0x9D, + /* 0x95 @ 186 */ 0xE2, 0x80, 0xA2, + /* 0x96 @ 189 */ 0xE2, 0x80, 0x93, + /* 0x97 @ 192 */ 0xE2, 0x80, 0x94, + /* 0x98 @ 195 */ 0xCB, 0x9C, + /* 0x99 @ 197 */ 0xE2, 0x84, 0xA2, + /* 0x9A @ 200 */ 0xC5, 0xA1, + /* 0x9B @ 202 */ 0xE2, 0x80, 0xBA, + /* 0x9C @ 205 */ 0xC5, 0x93, + /* 0x9D @ 207 */ 0xEF, 0xBF, 0xBD, + /* 0x9E @ 210 */ 0xC5, 0xBE, + /* 0x9F @ 212 */ 0xC5, 0xB8, + /* 0xA0 @ 214 */ 0xC2, 0xA0, + /* 0xA1 @ 216 */ 0xC2, 0xA1, + /* 0xA2 @ 218 */ 0xC2, 0xA2, + /* 0xA3 @ 220 */ 0xC2, 0xA3, + /* 0xA4 @ 222 */ 0xC2, 0xA4, + /* 0xA5 @ 224 */ 0xC2, 0xA5, + /* 0xA6 @ 226 */ 0xC2, 0xA6, + /* 0xA7 @ 228 */ 0xC2, 0xA7, + /* 0xA8 @ 230 */ 0xC2, 0xA8, + /* 0xA9 @ 232 */ 0xC2, 0xA9, + /* 0xAA @ 234 */ 0xC2, 0xAA, + /* 0xAB @ 236 */ 0xC2, 0xAB, + /* 0xAC @ 238 */ 0xC2, 0xAC, + /* 0xAD @ 240 */ 0xC2, 0xAD, + /* 0xAE @ 242 */ 0xC2, 0xAE, + /* 0xAF @ 244 */ 0xC2, 0xAF, + /* 0xB0 @ 246 */ 0xC2, 0xB0, + /* 0xB1 @ 248 */ 0xC2, 0xB1, + /* 0xB2 @ 250 */ 0xC2, 0xB2, + /* 0xB3 @ 252 */ 0xC2, 0xB3, + /* 0xB4 @ 254 */ 0xC2, 0xB4, + /* 0xB5 @ 256 */ 0xC2, 0xB5, + /* 0xB6 @ 258 */ 0xC2, 0xB6, + /* 0xB7 @ 260 */ 0xC2, 0xB7, + /* 0xB8 @ 262 */ 0xC2, 0xB8, + /* 0xB9 @ 264 */ 0xC2, 0xB9, + /* 0xBA @ 266 */ 0xC2, 0xBA, + /* 0xBB @ 268 */ 0xC2, 0xBB, + /* 0xBC @ 270 */ 0xC2, 0xBC, + /* 0xBD @ 272 */ 0xC2, 0xBD, + /* 0xBE @ 274 */ 0xC2, 0xBE, + /* 0xBF @ 276 */ 0xC2, 0xBF, + /* 0xC0 @ 278 */ 0xC3, 0x80, + /* 0xC1 @ 280 */ 0xC3, 0x81, + /* 0xC2 @ 282 */ 0xC3, 0x82, + /* 0xC3 @ 284 */ 0xC3, 0x83, + /* 0xC4 @ 286 */ 0xC3, 0x84, + /* 0xC5 @ 288 */ 0xC3, 0x85, + /* 0xC6 @ 290 */ 0xC3, 0x86, + /* 0xC7 @ 292 */ 0xC3, 0x87, + /* 0xC8 @ 294 */ 0xC3, 0x88, + /* 0xC9 @ 296 */ 0xC3, 0x89, + /* 0xCA @ 298 */ 0xC3, 0x8A, + /* 0xCB @ 300 */ 0xC3, 0x8B, + /* 0xCC @ 302 */ 0xC3, 0x8C, + /* 0xCD @ 304 */ 0xC3, 0x8D, + /* 0xCE @ 306 */ 0xC3, 0x8E, + /* 0xCF @ 308 */ 0xC3, 0x8F, + /* 0xD0 @ 310 */ 0xC3, 0x90, + /* 0xD1 @ 312 */ 0xC3, 0x91, + /* 0xD2 @ 314 */ 0xC3, 0x92, + /* 0xD3 @ 316 */ 0xC3, 0x93, + /* 0xD4 @ 318 */ 0xC3, 0x94, + /* 0xD5 @ 320 */ 0xC3, 0x95, + /* 0xD6 @ 322 */ 0xC3, 0x96, + /* 0xD7 @ 324 */ 0xC3, 0x97, + /* 0xD8 @ 326 */ 0xC3, 0x98, + /* 0xD9 @ 328 */ 0xC3, 0x99, + /* 0xDA @ 330 */ 0xC3, 0x9A, + /* 0xDB @ 332 */ 0xC3, 0x9B, + /* 0xDC @ 334 */ 0xC3, 0x9C, + /* 0xDD @ 336 */ 0xC3, 0x9D, + /* 0xDE @ 338 */ 0xC3, 0x9E, + /* 0xDF @ 340 */ 0xC3, 0x9F, + /* 0xE0 @ 342 */ 0xC3, 0xA0, + /* 0xE1 @ 344 */ 0xC3, 0xA1, + /* 0xE2 @ 346 */ 0xC3, 0xA2, + /* 0xE3 @ 348 */ 0xC3, 0xA3, + /* 0xE4 @ 350 */ 0xC3, 0xA4, + /* 0xE5 @ 352 */ 0xC3, 0xA5, + /* 0xE6 @ 354 */ 0xC3, 0xA6, + /* 0xE7 @ 356 */ 0xC3, 0xA7, + /* 0xE8 @ 358 */ 0xC3, 0xA8, + /* 0xE9 @ 360 */ 0xC3, 0xA9, + /* 0xEA @ 362 */ 0xC3, 0xAA, + /* 0xEB @ 364 */ 0xC3, 0xAB, + /* 0xEC @ 366 */ 0xC3, 0xAC, + /* 0xED @ 368 */ 0xC3, 0xAD, + /* 0xEE @ 370 */ 0xC3, 0xAE, + /* 0xEF @ 372 */ 0xC3, 0xAF, + /* 0xF0 @ 374 */ 0xC3, 0xB0, + /* 0xF1 @ 376 */ 0xC3, 0xB1, + /* 0xF2 @ 378 */ 0xC3, 0xB2, + /* 0xF3 @ 380 */ 0xC3, 0xB3, + /* 0xF4 @ 382 */ 0xC3, 0xB4, + /* 0xF5 @ 384 */ 0xC3, 0xB5, + /* 0xF6 @ 386 */ 0xC3, 0xB6, + /* 0xF7 @ 388 */ 0xC3, 0xB7, + /* 0xF8 @ 390 */ 0xC3, 0xB8, + /* 0xF9 @ 392 */ 0xC3, 0xB9, + /* 0xFA @ 394 */ 0xC3, 0xBA, + /* 0xFB @ 396 */ 0xC3, 0xBB, + /* 0xFC @ 398 */ 0xC3, 0xBC, + /* 0xFD @ 400 */ 0xC3, 0xBD, + /* 0xFE @ 402 */ 0xC3, 0xBE, + /* 0xFF @ 404 */ 0xC3, 0xBF, +}; + +static const uint16_t tblofs[257] = { + /* 0x00 */ 0, 1, 2, 3, 4, 5, 6, 7, + /* 0x08 */ 8, 9, 10, 11, 12, 13, 14, 15, + /* 0x10 */ 16, 17, 18, 19, 20, 21, 22, 23, + /* 0x18 */ 24, 25, 26, 27, 28, 29, 30, 31, + /* 0x20 */ 32, 33, 34, 35, 36, 37, 38, 39, + /* 0x28 */ 40, 41, 42, 43, 44, 45, 46, 47, + /* 0x30 */ 48, 49, 50, 51, 52, 53, 54, 55, + /* 0x38 */ 56, 57, 58, 59, 60, 61, 62, 63, + /* 0x40 */ 64, 65, 66, 67, 68, 69, 70, 71, + /* 0x48 */ 72, 73, 74, 75, 76, 77, 78, 79, + /* 0x50 */ 80, 81, 82, 83, 84, 85, 86, 87, + /* 0x58 */ 88, 89, 90, 91, 92, 93, 94, 95, + /* 0x60 */ 96, 97, 98, 99, 100, 101, 102, 103, + /* 0x68 */ 104, 105, 106, 107, 108, 109, 110, 111, + /* 0x70 */ 112, 113, 114, 115, 116, 117, 118, 119, + /* 0x78 */ 120, 121, 122, 123, 124, 125, 126, 127, + /* 0x80 */ 128, 131, 134, 137, 139, 142, 145, 148, + /* 0x88 */ 151, 153, 156, 158, 161, 163, 166, 168, + /* 0x90 */ 171, 174, 177, 180, 183, 186, 189, 192, + /* 0x98 */ 195, 197, 200, 202, 205, 207, 210, 212, + /* 0xA0 */ 214, 216, 218, 220, 222, 224, 226, 228, + /* 0xA8 */ 230, 232, 234, 236, 238, 240, 242, 244, + /* 0xB0 */ 246, 248, 250, 252, 254, 256, 258, 260, + /* 0xB8 */ 262, 264, 266, 268, 270, 272, 274, 276, + /* 0xC0 */ 278, 280, 282, 284, 286, 288, 290, 292, + /* 0xC8 */ 294, 296, 298, 300, 302, 304, 306, 308, + /* 0xD0 */ 310, 312, 314, 316, 318, 320, 322, 324, + /* 0xD8 */ 326, 328, 330, 332, 334, 336, 338, 340, + /* 0xE0 */ 342, 344, 346, 348, 350, 352, 354, 356, + /* 0xE8 */ 358, 360, 362, 364, 366, 368, 370, 372, + /* 0xF0 */ 374, 376, 378, 380, 382, 384, 386, 388, + /* 0xF8 */ 390, 392, 394, 396, 398, 400, 402, 404, + /* sizeof (cp1252_utf8) */ 406 +}; + +/* Check if a string qualifies as UTF-8. */ +static int +is_utf8(const char* src) +{ + uint8_t ch; + size_t i; + const uint8_t* s = (const uint8_t*) src; + + /* We make a loop over every character, until we find a null one. + Remember: The string is supposed to end with a NUL, so ahead checks are safe. */ + while ((ch = *s++)) { + /* Ye olde 7bit ASCII chars 'rr fine for anything */ + if(ch < 0x80) continue; + + /* Now, we watch out for non-UTF conform sequences. */ + else if ((ch < 0xC2) || (ch > 0xFD)) + return 0; + /* check for some misformed sequences */ + if (((ch == 0xC2) && (s[0] < 0xA0)) || + ((ch == 0xEF) && (s[0] == 0xBF) && (s[1] > 0xBD))) + /* XXX add more for outside the BMP */ + return 0; + + /* Check the continuation bytes. */ + if (ch < 0xE0) i = 1; + else if (ch < 0xF0) i = 2; + else if (ch < 0xF8) i = 3; + else if (ch < 0xFC) i = 4; + else + i = 5; + + while (i--) + if ((*s++ & 0xC0) != 0x80) + return 0; + } + + /* If no check failed, the string indeed looks like valid UTF-8. */ + return 1; +} + +/* The main conversion routine. + ICY in CP-1252 (or UTF-8 alreay) to UTF-8 encoded string. */ +char * +icy2utf8(const char *src) +{ + const uint8_t *s = (const uint8_t *)src; + size_t srclen, dstlen, i, k; + uint8_t ch, *d; + char *dst; + + /* Some funny streams from Apple/iTunes give ICY info in UTF-8 already. + So, be prepared and don't try to re-encode such. */ + if(is_utf8(src)) return (strdup(src)); + + srclen = strlen(src) + 1; + /* allocate conservatively */ + if ((d = malloc(srclen * 3)) == NULL) + return (NULL); + + i = 0; + dstlen = 0; + while (i < srclen) { + ch = s[i++]; + k = tblofs[ch]; + while (k < tblofs[ch + 1]) + d[dstlen++] = cp1252_utf8[k++]; + } + + /* dstlen includes trailing NUL since srclen also does */ + if ((dst = realloc(d, dstlen)) == NULL) { + free(d); + return (NULL); + } + return (dst); +} + +/* This stuff is for testing only. */ +#ifdef TEST +static const char intext[] = "\225 Gr\374\337e kosten 0,55 \200\205"; + +#include + +int +main(void) +{ + char *t, *t2; + + if ((t = icy2utf8(intext)) == NULL) { + fprintf(stderr, "out of memory\n"); + return (1); + } + + /* make sure it won't be converted twice */ + if ((t2 = icy2utf8(t)) == NULL) { + fprintf(stderr, "out of memory\n"); + return (1); + } + + printf("Result is:\t\343\200\214%s\343\200\215\n" + "\t\t\343\200\214%s\343\200\215\n", t, t2); + + free(t); + free(t2); + return (0); +} +#endif diff -r f2985e08589c -r 7e08477b0fc1 decoders/libmpg123/icy2utf8.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/decoders/libmpg123/icy2utf8.h Fri Jan 30 02:44:47 2009 -0500 @@ -0,0 +1,7 @@ +/* You expect a license plate for _this_ file? */ +#ifndef MPG123_ICY2UTF_H +#define MPG123_ICY2UTF_H + +char *icy2utf8(const char *); + +#endif diff -r f2985e08589c -r 7e08477b0fc1 decoders/libmpg123/id3.c --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/decoders/libmpg123/id3.c Fri Jan 30 02:44:47 2009 -0500 @@ -0,0 +1,888 @@ +/* + id3: ID3v2.3 and ID3v2.4 parsing (a relevant subset) + + copyright 2006-2008 by the mpg123 project - free software under the terms of the LGPL 2.1 + see COPYING and AUTHORS files in distribution or http://mpg123.org + initially written by Thomas Orgis +*/ + +#include "mpg123lib_intern.h" +#include "id3.h" +#include "debug.h" + +/* UTF support definitions */ + +typedef void (*text_converter)(mpg123_string *sb, unsigned char* source, size_t len); + +static void convert_latin1 (mpg123_string *sb, unsigned char* source, size_t len); +static void convert_utf16 (mpg123_string *sb, unsigned char* source, size_t len, int str_be); +static void convert_utf16bom(mpg123_string *sb, unsigned char* source, size_t len); +static void convert_utf16be (mpg123_string *sb, unsigned char* source, size_t len); +static void convert_utf8 (mpg123_string *sb, unsigned char* source, size_t len); + +static const text_converter text_converters[4] = +{ + convert_latin1, + convert_utf16bom, + convert_utf16be, + convert_utf8 +}; + +const int encoding_widths[4] = { 1, 2, 2, 1 }; + +/* the code starts here... */ + +static void null_id3_links(mpg123_handle *fr) +{ + fr->id3v2.title = NULL; + fr->id3v2.artist = NULL; + fr->id3v2.album = NULL; + fr->id3v2.year = NULL; + fr->id3v2.genre = NULL; + fr->id3v2.comment = NULL; +} + +void init_id3(mpg123_handle *fr) +{ + fr->id3v2.version = 0; /* nothing there */ + null_id3_links(fr); + fr->id3v2.comments = 0; + fr->id3v2.comment_list = NULL; + fr->id3v2.texts = 0; + fr->id3v2.text = NULL; + fr->id3v2.extras = 0; + fr->id3v2.extra = NULL; +} + +/* Managing of the text, comment and extra lists. */ + +/* Initialize one element. */ +static void init_mpg123_text(mpg123_text *txt) +{ + mpg123_init_string(&txt->text); + mpg123_init_string(&txt->description); + txt->id[0] = 0; + txt->id[1] = 0; + txt->id[2] = 0; + txt->id[3] = 0; + txt->lang[0] = 0; + txt->lang[1] = 0; + txt->lang[2] = 0; +} + +/* Free memory of one element. */ +static void free_mpg123_text(mpg123_text *txt) +{ + mpg123_free_string(&txt->text); + mpg123_free_string(&txt->description); +} + +/* Free memory of whole list. */ +#define free_comment(mh) free_id3_text(&((mh)->id3v2.comment_list), &((mh)->id3v2.comments)) +#define free_text(mh) free_id3_text(&((mh)->id3v2.text), &((mh)->id3v2.texts)) +#define free_extra(mh) free_id3_text(&((mh)->id3v2.extra), &((mh)->id3v2.extras)) +static void free_id3_text(mpg123_text **list, size_t *size) +{ + size_t i; + for(i=0; i<*size; ++i) free_mpg123_text(&((*list)[i])); + + free(*list); + *list = NULL; + *size = 0; +} + +/* Add items to the list. */ +#define add_comment(mh) add_id3_text(&((mh)->id3v2.comment_list), &((mh)->id3v2.comments)) +#define add_text(mh) add_id3_text(&((mh)->id3v2.text), &((mh)->id3v2.texts)) +#define add_extra(mh) add_id3_text(&((mh)->id3v2.extra), &((mh)->id3v2.extras)) +static mpg123_text *add_id3_text(mpg123_text **list, size_t *size) +{ + mpg123_text *x = safe_realloc(*list, sizeof(mpg123_text)*(*size+1)); + if(x == NULL) return NULL; /* bad */ + + *list = x; + *size += 1; + init_mpg123_text(&((*list)[*size-1])); + + return &((*list)[*size-1]); /* Return pointer to the added text. */ +} + +/* Remove the last item. */ +#define pop_comment(mh) pop_id3_text(&((mh)->id3v2.comment_list), &((mh)->id3v2.comments)) +#define pop_text(mh) pop_id3_text(&((mh)->id3v2.text), &((mh)->id3v2.texts)) +#define pop_extra(mh) pop_id3_text(&((mh)->id3v2.extra), &((mh)->id3v2.extras)) +static void pop_id3_text(mpg123_text **list, size_t *size) +{ + mpg123_text *x; + if(*size < 1) return; + + free_mpg123_text(&((*list)[*size-1])); + if(*size > 1) + { + x = safe_realloc(*list, sizeof(mpg123_text)*(*size-1)); + if(x != NULL){ *list = x; *size -= 1; } + } + else + { + free(*list); + *list = NULL; + *size = 0; + } +} + +/* OK, back t the higher level functions. */ + +void exit_id3(mpg123_handle *fr) +{ + free_comment(fr); + free_extra(fr); + free_text(fr); +} + +void reset_id3(mpg123_handle *fr) +{ + exit_id3(fr); + init_id3(fr); +} + +/* Set the id3v2.artist id3v2.title ... links to elements of the array. */ +void id3_link(mpg123_handle *fr) +{ + size_t i; + mpg123_id3v2 *v2 = &fr->id3v2; + debug("linking ID3v2"); + null_id3_links(fr); + for(i=0; itexts; ++i) + { + mpg123_text *entry = &v2->text[i]; + if (!strncmp("TIT2", entry->id, 4)) v2->title = &entry->text; + else if(!strncmp("TALB", entry->id, 4)) v2->album = &entry->text; + else if(!strncmp("TPE1", entry->id, 4)) v2->artist = &entry->text; + else if(!strncmp("TYER", entry->id, 4)) v2->year = &entry->text; + else if(!strncmp("TCON", entry->id, 4)) v2->genre = &entry->text; + } + for(i=0; icomments; ++i) + { + mpg123_text *entry = &v2->comment_list[i]; + if(entry->description.fill == 0 || entry->description.p[0] == 0) + v2->comment = &entry->text; + } + /* When no generic comment found, use the last non-generic one. */ + if(v2->comment == NULL && v2->comments > 0) + v2->comment = &v2->comment_list[v2->comments-1].text; +} + +/* + Store any text in UTF8 encoding; preserve the zero string separator (I don't need strlen for the total size). + ID3v2 standard says that there should be one text frame of specific type per tag, and subsequent tags overwrite old values. + So, I always replace the text that may be stored already (perhaps with a list of zero-separated strings, though). +*/ +void store_id3_text(mpg123_string *sb, char *source, size_t source_size, const int noquiet) +{ + int encoding; + int bwidth; + if(!source_size) + { + debug("Empty id3 data!"); + return; + } + encoding = source[0]; + ++source; + --source_size; + debug1("encoding: %i", encoding); + /* A note: ID3v2.3 uses UCS-2 non-variable 16bit encoding, v2.4 uses UTF16. + UTF-16 uses a reserved/private range in UCS-2 to add the magic, so we just always treat it as UTF. */ + if(encoding > 3) + { + if(noquiet) warning1("Unknown text encoding %d, assuming ISO8859-1 - I will probably screw a bit up!", encoding); + encoding = 0; + } + bwidth = encoding_widths[encoding]; + /* Hack! I've seen a stray zero byte before BOM. Is that supposed to happen? */ + while(source_size > bwidth && source[0] == 0) + { + --source_size; + ++source; + debug("skipped leading zero"); + } + if(source_size % bwidth) + { + /* When we need two bytes for a character, it's strange to have an uneven bytestream length. */ + if(noquiet) warning2("Weird tag size %d for encoding %d - I will probably trim too early or something but I think the MP3 is broken.", (int)source_size, encoding); + source_size -= source_size % bwidth; + } + text_converters[encoding](sb, (unsigned char*)source, source_size); + if(sb->size) debug1("UTF-8 string (the first one): %s", sb->p); + else if(noquiet) error("unable to convert string to UTF-8 (out of memory, junk input?)!"); +} + +char *next_text(char* prev, int encoding, size_t limit) +{ + char *text = prev; + unsigned long neednull = encoding_widths[encoding]; + /* So I go lengths to find zero or double zero... */ + while(text-prev < limit) + { + if(text[0] == 0) + { + if(neednull <= limit-(text-prev)) + { + unsigned long i = 1; + for(; iid, id, 4); + store_id3_text(&t->text, realdata, realsize, NOQUIET); + if(VERBOSE4) fprintf(stderr, "Note: ID3v2 %c%c%c%c text frame: %s\n", id[0], id[1], id[2], id[3], t->text.p); +} + +/* Store a new comment that perhaps is a RVA / RVA_ALBUM/AUDIOPHILE / RVA_MIX/RADIO one */ +static void process_comment(mpg123_handle *fr, char *realdata, size_t realsize, int rva_level, char *id) +{ + /* Text encoding $xx */ + /* Language $xx xx xx */ + /* Short description (encoded!) $00 (00) */ + /* Then the comment text (encoded) ... */ + char encoding = realdata[0]; + char *lang = realdata+1; /* I'll only use the 3 bytes! */ + char *descr = realdata+4; + char *text = NULL; + mpg123_text *xcom = NULL; + if(realsize < descr-realdata) + { + if(NOQUIET) error1("Invalid frame size of %lu (too small for anything).", (unsigned long)realsize); + return; + } + xcom = add_comment(fr); + if(VERBOSE4) fprintf(stderr, "Note: Storing comment from %s encoding\n", enc_name(realdata[0])); + if(xcom == NULL) + { + if(NOQUIET) error("Unable to attach new comment!"); + return; + } + memcpy(xcom->lang, lang, 3); + memcpy(xcom->id, id, 4); + /* Now I can abuse a byte from lang for the encoding. */ + descr[-1] = encoding; + /* Be careful with finding the end of description, I have to honor encoding here. */ + text = next_text(descr, encoding, realsize-(descr-realdata)); + if(text == NULL) + { + if(NOQUIET) error("No comment text / valid description?"); + pop_comment(fr); + return; + } + store_id3_text(&xcom->description, descr-1, text-descr+1, NOQUIET); + text[-1] = encoding; + store_id3_text(&xcom->text, text-1, realsize+1-(text-realdata), NOQUIET); + + if(VERBOSE4) + { + fprintf(stderr, "Note: ID3 comment desc: %s\n", xcom->description.fill > 0 ? xcom->description.p : ""); + fprintf(stderr, "Note: ID3 comment text: %s\n", xcom->text.fill > 0 ? xcom->text.p : ""); + } + if(xcom->description.fill > 0 && xcom->text.fill > 0) + { + int rva_mode = -1; /* mix / album */ + if( !strcasecmp(xcom->description.p, "rva") + || !strcasecmp(xcom->description.p, "rva_mix") + || !strcasecmp(xcom->description.p, "rva_track") + || !strcasecmp(xcom->description.p, "rva_radio")) + rva_mode = 0; + else if( !strcasecmp(xcom->description.p, "rva_album") + || !strcasecmp(xcom->description.p, "rva_audiophile") + || !strcasecmp(xcom->description.p, "rva_user")) + rva_mode = 1; + if((rva_mode > -1) && (fr->rva.level[rva_mode] <= rva_level)) + { + fr->rva.gain[rva_mode] = atof(xcom->text.p); + if(VERBOSE3) fprintf(stderr, "Note: RVA value %fdB\n", fr->rva.gain[rva_mode]); + fr->rva.peak[rva_mode] = 0; + fr->rva.level[rva_mode] = rva_level; + } + } +} + +void process_extra(mpg123_handle *fr, char* realdata, size_t realsize, int rva_level, char *id) +{ + /* Text encoding $xx */ + /* Description ... $00 (00) */ + /* Text ... */ + char encoding = realdata[0]; + char *descr = realdata+1; /* remember, the encoding is descr[-1] */ + char *text; + mpg123_text *xex; + if(realsize < descr-realdata) + { + if(NOQUIET) error1("Invalid frame size of %lu (too small for anything).", (unsigned long)realsize); + return; + } + text = next_text(descr, encoding, realsize-(descr-realdata)); + if(VERBOSE4) fprintf(stderr, "Note: Storing extra from %s encoding\n", enc_name(realdata[0])); + if(text == NULL) + { + if(NOQUIET) error("No extra frame text / valid description?"); + return; + } + xex = add_extra(fr); + if(xex == NULL) + { + if(NOQUIET) error("Unable to attach new extra text!"); + return; + } + memcpy(xex->id, id, 4); + store_id3_text(&xex->description, descr-1, text-descr+1, NOQUIET); + text[-1] = encoding; + store_id3_text(&xex->text, text-1, realsize-(text-realdata)+1, NOQUIET); + if(xex->description.fill > 0) + { + int is_peak = 0; + int rva_mode = -1; /* mix / album */ + + if(!strncasecmp(xex->description.p, "replaygain_track_",17)) + { + if(VERBOSE3) fprintf(stderr, "Note: RVA ReplayGain track gain/peak\n"); + + rva_mode = 0; + if(!strcasecmp(xex->description.p, "replaygain_track_peak")) is_peak = 1; + else if(strcasecmp(xex->description.p, "replaygain_track_gain")) rva_mode = -1; + } + else + if(!strncasecmp(xex->description.p, "replaygain_album_",17)) + { + if(VERBOSE3) fprintf(stderr, "Note: RVA ReplayGain album gain/peak\n"); + + rva_mode = 1; + if(!strcasecmp(xex->description.p, "replaygain_album_peak")) is_peak = 1; + else if(strcasecmp(xex->description.p, "replaygain_album_gain")) rva_mode = -1; + } + if((rva_mode > -1) && (fr->rva.level[rva_mode] <= rva_level)) + { + if(xex->text.fill > 0) + { + if(is_peak) + { + fr->rva.peak[rva_mode] = atof(xex->text.p); + if(VERBOSE3) fprintf(stderr, "Note: RVA peak %f\n", fr->rva.peak[rva_mode]); + } + else + { + fr->rva.gain[rva_mode] = atof(xex->text.p); + if(VERBOSE3) fprintf(stderr, "Note: RVA gain %fdB\n", fr->rva.gain[rva_mode]); + } + fr->rva.level[rva_mode] = rva_level; + } + } + } +} + +/* Make a ID3v2.3+ 4-byte ID from a ID3v2.2 3-byte ID + Note that not all frames survived to 2.4; the mapping goes to 2.3 . + A notable miss is the old RVA frame, which is very unspecific anyway. + This function returns -1 when a not known 3 char ID was encountered, 0 otherwise. */ +int promote_framename(mpg123_handle *fr, char *id) /* fr because of VERBOSE macros */ +{ + size_t i; + char *old[] = + { + "COM", "TAL", "TBP", "TCM", "TCO", "TCR", "TDA", "TDY", "TEN", "TFT", + "TIM", "TKE", "TLA", "TLE", "TMT", "TOA", "TOF", "TOL", "TOR", "TOT", + "TP1", "TP2", "TP3", "TP4", "TPA", "TPB", "TRC", "TDA", "TRK", "TSI", + "TSS", "TT1", "TT2", "TT3", "TXT", "TXX", "TYE" + }; + char *new[] = + { + "COMM", "TALB", "TBPM", "TCOM", "TCON", "TCOP", "TDAT", "TDLY", "TENC", "TFLT", + "TIME", "TKEY", "TLAN", "TLEN", "TMED", "TOPE", "TOFN", "TOLY", "TORY", "TOAL", + "TPE1", "TPE2", "TPE3", "TPE4", "TPOS", "TPUB", "TSRC", "TRDA", "TRCK", "TSIZ", + "TSSE", "TIT1", "TIT2", "TIT3", "TEXT", "TXXX", "TYER" + }; + for(i=0; ird->read_frame_body(fr, buf, 6)) < 0) /* read more header information */ + return ret2; + + if(buf[0] == 0xff) return 0; /* Revision, will never be 0xff. */ + + /* second new byte are some nice flags, if these are invalid skip the whole thing */ + flags = buf[1]; + debug1("ID3v2: flags 0x%08x", flags); + /* use 4 bytes from buf to construct 28bit uint value and return 1; return 0 if bytes are not synchsafe */ + #define synchsafe_to_long(buf,res) \ + ( \ + (((buf)[0]|(buf)[1]|(buf)[2]|(buf)[3]) & 0x80) ? 0 : \ + (res = (((unsigned long) (buf)[0]) << 21) \ + | (((unsigned long) (buf)[1]) << 14) \ + | (((unsigned long) (buf)[2]) << 7) \ + | ((unsigned long) (buf)[3]) \ + ,1) \ + ) + /* id3v2.3 does not store synchsafe frame sizes, but synchsafe tag size - doh! */ + #define bytes_to_long(buf,res) \ + ( \ + major == 3 ? \ + (res = (((unsigned long) (buf)[0]) << 24) \ + | (((unsigned long) (buf)[1]) << 16) \ + | (((unsigned long) (buf)[2]) << 8) \ + | ((unsigned long) (buf)[3]) \ + ,1) : synchsafe_to_long(buf,res) \ + ) + /* for id3v2.2 only */ + #define threebytes_to_long(buf,res) \ + ( \ + res = (((unsigned long) (buf)[0]) << 16) \ + | (((unsigned long) (buf)[1]) << 8) \ + | ((unsigned long) (buf)[2]) \ + ,1 \ + ) + + /* length-10 or length-20 (footer present); 4 synchsafe integers == 28 bit number */ + /* we have already read 10 bytes, so left are length or length+10 bytes belonging to tag */ + if(!synchsafe_to_long(buf+2,length)) + { + if(NOQUIET) error4("Bad tag length (not synchsafe): 0x%02x%02x%02x%02x; You got a bad ID3 tag here.", buf[2],buf[3],buf[4],buf[5]); + return 0; + } + debug1("ID3v2: tag data length %lu", length); + if(VERBOSE2) fprintf(stderr,"Note: ID3v2.%i rev %i tag of %lu bytes\n", major, buf[0], length); + /* skip if unknown version/scary flags, parse otherwise */ + if((flags & UNKNOWN_FLAGS) || (major > 4) || (major < 2)) + { + /* going to skip because there are unknown flags set */ + if(NOQUIET) warning2("ID3v2: Won't parse the ID3v2 tag with major version %u and flags 0x%xu - some extra code may be needed", major, flags); + if((ret2 = fr->rd->skip_bytes(fr,length)) < 0) /* will not store data in backbuff! */ + ret = ret2; + } + else + { + fr->id3v2.version = major; + /* try to interpret that beast */ + if((tagdata = (unsigned char*) malloc(length+1)) != NULL) + { + debug("ID3v2: analysing frames..."); + if((ret2 = fr->rd->read_frame_body(fr,tagdata,length)) > 0) + { + unsigned long tagpos = 0; + debug1("ID3v2: have read at all %lu bytes for the tag now", (unsigned long)length+6); + /* going to apply strlen for strings inside frames, make sure that it doesn't overflow! */ + tagdata[length] = 0; + if(flags & EXTHEAD_FLAG) + { + debug("ID3v2: skipping extended header"); + if(!bytes_to_long(tagdata, tagpos)) + { + ret = 0; + if(NOQUIET) error4("Bad (non-synchsafe) tag offset: 0x%02x%02x%02x%02x", tagdata[0], tagdata[1], tagdata[2], tagdata[3]); + } + } + if(ret > 0) + { + char id[5]; + unsigned long framesize; + unsigned long fflags; /* need 16 bits, actually */ + id[4] = 0; + /* pos now advanced after ext head, now a frame has to follow */ + while(tagpos < length-10) /* I want to read at least a full header */ + { + int i = 0; + unsigned long pos = tagpos; + int head_part = fr->id3v2.version == 2 ? 3 : 4; /* bytes of frame title and of framesize value */ + /* level 1,2,3 - 0 is info from lame/info tag! */ + /* rva tags with ascending significance, then general frames */ + #define KNOWN_FRAMES 3 + const char frame_type[KNOWN_FRAMES][5] = { "COMM", "TXXX", "RVA2" }; /* plus all text frames... */ + enum { unknown = -2, text = -1, comment, extra, rva2 } tt = unknown; + /* we may have entered the padding zone or any other strangeness: check if we have valid frame id characters */ + for(i=0; i< head_part; ++i) + if( !( ((tagdata[tagpos+i] > 47) && (tagdata[tagpos+i] < 58)) + || ((tagdata[tagpos+i] > 64) && (tagdata[tagpos+i] < 91)) ) ) + { + debug5("ID3v2: real tag data apparently ended after %lu bytes with 0x%02x%02x%02x%02x", tagpos, tagdata[tagpos], tagdata[tagpos+1], tagdata[tagpos+2], tagdata[tagpos+3]); + /* This is no hard error... let's just hope that we got something meaningful already (ret==1 in that case). */ + goto tagparse_cleanup; /* Need to escape two loops here. */ + } + if(ret > 0) + { + /* 4 or 3 bytes id */ + strncpy(id, (char*) tagdata+pos, head_part); + pos += head_part; + tagpos += head_part; + /* size as 32 bits or 28 bits */ + if(fr->id3v2.version == 2) threebytes_to_long(tagdata+pos, framesize); + else + if(!bytes_to_long(tagdata+pos, framesize)) + { + /* Just assume that up to now there was some good data. */ + if(NOQUIET) error1("ID3v2: non-syncsafe size of %s frame, skipping the remainder of tag", id); + break; + } + if(VERBOSE3) fprintf(stderr, "Note: ID3v2 %s frame of size %lu\n", id, framesize); + tagpos += head_part + framesize; /* the important advancement in whole tag */ + if(tagpos > length) + { + if(NOQUIET) error("Whoa! ID3v2 frame claims to be larger than the whole rest of the tag."); + break; + } + pos += head_part; + if(fr->id3v2.version > 2) + { + fflags = (((unsigned long) tagdata[pos]) << 8) | ((unsigned long) tagdata[pos+1]); + pos += 2; + tagpos += 2; + } + else fflags = 0; + /* for sanity, after full parsing tagpos should be == pos */ + /* debug4("ID3v2: found %s frame, size %lu (as bytes: 0x%08lx), flags 0x%016lx", id, framesize, framesize, fflags); */ + /* %0abc0000 %0h00kmnp */ + #define BAD_FFLAGS (unsigned long) 36784 + #define PRES_TAG_FFLAG 16384 + #define PRES_FILE_FFLAG 8192 + #define READ_ONLY_FFLAG 4096 + #define GROUP_FFLAG 64 + #define COMPR_FFLAG 8 + #define ENCR_FFLAG 4 + #define UNSYNC_FFLAG 2 + #define DATLEN_FFLAG 1 + if(head_part < 4 && promote_framename(fr, id) != 0) continue; + + /* shall not or want not handle these */ + if(fflags & (BAD_FFLAGS | COMPR_FFLAG | ENCR_FFLAG)) + { + if(NOQUIET) warning("ID3v2: skipping invalid/unsupported frame"); + continue; + } + + for(i = 0; i < KNOWN_FRAMES; ++i) + if(!strncmp(frame_type[i], id, 4)){ tt = i; break; } + + if(id[0] == 'T' && tt != extra) tt = text; + + if(tt != unknown) + { + int rva_mode = -1; /* mix / album */ + unsigned long realsize = framesize; + unsigned char* realdata = tagdata+pos; + if((flags & UNSYNC_FLAG) || (fflags & UNSYNC_FFLAG)) + { + unsigned long ipos = 0; + unsigned long opos = 0; + debug("Id3v2: going to de-unsync the frame data"); + /* de-unsync: FF00 -> FF; real FF00 is simply represented as FF0000 ... */ + /* damn, that means I have to delete bytes from withing the data block... thus need temporal storage */ + /* standard mandates that de-unsync should always be safe if flag is set */ + realdata = (unsigned char*) malloc(framesize); /* will need <= bytes */ + if(realdata == NULL) + { + if(NOQUIET) error("ID3v2: unable to allocate working buffer for de-unsync"); + continue; + } + /* now going byte per byte through the data... */ + realdata[0] = tagdata[pos]; + opos = 1; + for(ipos = pos+1; ipos < pos+framesize; ++ipos) + { + if(!((tagdata[ipos] == 0) && (tagdata[ipos-1] == 0xff))) + { + realdata[opos++] = tagdata[ipos]; + } + } + realsize = opos; + debug2("ID3v2: de-unsync made %lu out of %lu bytes", realsize, framesize); + } + pos = 0; /* now at the beginning again... */ + switch(tt) + { + case comment: + process_comment(fr, (char*)realdata, realsize, comment+1, id); + break; + case extra: /* perhaps foobar2000's work */ + process_extra(fr, (char*)realdata, realsize, extra+1, id); + break; + case rva2: /* "the" RVA tag */ + { + #ifdef HAVE_INTTYPES_H + /* starts with null-terminated identification */ + if(VERBOSE3) fprintf(stderr, "Note: RVA2 identification \"%s\"\n", realdata); + /* default: some individual value, mix mode */ + rva_mode = 0; + if( !strncasecmp((char*)realdata, "album", 5) + || !strncasecmp((char*)realdata, "audiophile", 10) + || !strncasecmp((char*)realdata, "user", 4)) + rva_mode = 1; + if(fr->rva.level[rva_mode] <= rva2+1) + { + pos += strlen((char*) realdata) + 1; + if(realdata[pos] == 1) + { + ++pos; + /* only handle master channel */ + debug("ID3v2: it is for the master channel"); + /* two bytes adjustment, one byte for bits representing peak - n bytes for peak */ + /* 16 bit signed integer = dB * 512 */ + /* we already assume short being 16 bit */ + fr->rva.gain[rva_mode] = (float) ((((short) realdata[pos]) << 8) | ((short) realdata[pos+1])) / 512; + pos += 2; + if(VERBOSE3) fprintf(stderr, "Note: RVA value %fdB\n", fr->rva.gain[rva_mode]); + /* heh, the peak value is represented by a number of bits - but in what manner? Skipping that part */ + fr->rva.peak[rva_mode] = 0; + fr->rva.level[rva_mode] = rva2+1; + } + } + #else + if(NOQUIET) warning("ID3v2: Cannot parse RVA2 value because I don't have a guaranteed 16 bit signed integer type"); + #endif + } + break; + /* non-rva metainfo, simply store... */ + case text: + process_text(fr, (char*)realdata, realsize, id); + break; + default: if(NOQUIET) error1("ID3v2: unknown frame type %i", tt); + } + if((flags & UNSYNC_FLAG) || (fflags & UNSYNC_FFLAG)) free(realdata); + } + #undef BAD_FFLAGS + #undef PRES_TAG_FFLAG + #undef PRES_FILE_FFLAG + #undef READ_ONLY_FFLAG + #undef GROUP_FFLAG + #undef COMPR_FFLAG + #undef ENCR_FFLAG + #undef UNSYNC_FFLAG + #undef DATLEN_FFLAG + } + else break; + #undef KNOWN_FRAMES + } + } + } + else + { + if(NOQUIET) error("ID3v2: Duh, not able to read ID3v2 tag data."); + ret = ret2; + } +tagparse_cleanup: + free(tagdata); + } + else + { + if(NOQUIET) error1("ID3v2: Arrg! Unable to allocate %lu bytes for interpreting ID3v2 data - trying to skip instead.", length); + if((ret2 = fr->rd->skip_bytes(fr,length)) < 0) ret = ret2; /* will not store data in backbuff! */ + else ret = 0; + } + } + /* skip footer if present */ + if((ret > 0) && (flags & FOOTER_FLAG) && ((ret2 = fr->rd->skip_bytes(fr,length)) < 0)) ret = ret2; + + return ret; + #undef UNSYNC_FLAG + #undef EXTHEAD_FLAG + #undef EXP_FLAG + #undef FOOTER_FLAG + #undef UNKOWN_FLAGS +} + +static void convert_latin1(mpg123_string *sb, unsigned char* s, size_t l) +{ + size_t length = l; + size_t i; + unsigned char *p; + /* determine real length, a latin1 character can at most take 2 in UTF8 */ + for(i=0; i= 0x80) ++length; + + debug1("UTF-8 length: %lu", (unsigned long)length); + /* one extra zero byte for paranoia */ + if(!mpg123_resize_string(sb, length+1)){ mpg123_free_string(sb); return ; } + + p = (unsigned char*) sb->p; /* Signedness doesn't matter but it shows I thought about the non-issue */ + for(i=0; i>6); + *(p+1) = 0x80 | (s[i] & 0x3f); + p+=2; + } + + sb->p[length] = 0; + sb->fill = length+1; +} + +#define FULLPOINT(f,s) ( (((f)&0x3ff)<<10) + ((s)&0x3ff) + 0x10000 ) +/* Remember: There's a limit at 0x1ffff. */ +#define UTF8LEN(x) ( (x)<0x80 ? 1 : ((x)<0x800 ? 2 : ((x)<0x10000 ? 3 : 4))) +static void convert_utf16(mpg123_string *sb, unsigned char* s, size_t l, int str_be) +{ + size_t i; + unsigned char *p; + size_t length = 0; /* the resulting UTF-8 length */ + /* Determine real length... extreme case can be more than utf-16 length. */ + size_t high = 0; + size_t low = 1; + debug1("convert_utf16 with length %lu", (unsigned long)l); + if(!str_be) /* little-endian */ + { + high = 1; /* The second byte is the high byte. */ + low = 0; /* The first byte is the low byte. */ + } + /* first: get length, check for errors -- stop at first one */ + for(i=0; i < l-1; i+=2) + { + unsigned long point = ((unsigned long) s[i+high]<<8) + s[i+low]; + if((point & 0xd800) == 0xd800) /* lead surrogate */ + { + unsigned short second = (i+3 < l) ? (s[i+2+high]<<8) + s[i+2+low] : 0; + if((second & 0xdc00) == 0xdc00) /* good... */ + { + point = FULLPOINT(point,second); + length += UTF8LEN(point); /* possibly 4 bytes */ + i+=2; /* We overstepped one word. */ + } + else /* if no valid pair, break here */ + { + debug1("Invalid UTF16 surrogate pair at %li.", (unsigned long)i); + l = i; /* Forget the half pair, END! */ + break; + } + } + else length += UTF8LEN(point); /* 1,2 or 3 bytes */ + } + + if(l < 1){ mpg123_set_string(sb, ""); return; } + + if(!mpg123_resize_string(sb, length+1)){ mpg123_free_string(sb); return ; } + + /* Now really convert, skip checks as these have been done just before. */ + p = (unsigned char*) sb->p; /* Signedness doesn't matter but it shows I thought about the non-issue */ + for(i=0; i < l-1; i+=2) + { + unsigned long codepoint = ((unsigned long) s[i+high]<<8) + s[i+low]; + if((codepoint & 0xd800) == 0xd800) /* lead surrogate */ + { + unsigned short second = (s[i+2+high]<<8) + s[i+2+low]; + codepoint = FULLPOINT(codepoint,second); + i+=2; /* We overstepped one word. */ + } + if(codepoint < 0x80) *p++ = (unsigned char) codepoint; + else if(codepoint < 0x800) + { + *p++ = 0xc0 | (codepoint>>6); + *p++ = 0x80 | (codepoint & 0x3f); + } + else if(codepoint < 0x10000) + { + *p++ = 0xe0 | (codepoint>>12); + *p++ = 0x80 | ((codepoint>>6) & 0x3f); + *p++ = 0x80 | (codepoint & 0x3f); + } + else if (codepoint < 0x200000) + { + *p++ = 0xf0 | codepoint>>18; + *p++ = 0x80 | ((codepoint>>12) & 0x3f); + *p++ = 0x80 | ((codepoint>>6) & 0x3f); + *p++ = 0x80 | (codepoint & 0x3f); + } /* ignore bigger ones (that are not possible here anyway) */ + } + sb->p[sb->size-1] = 0; /* paranoia... */ + sb->fill = sb->size; +} +#undef UTF8LEN +#undef FULLPOINT + +static void convert_utf16be(mpg123_string *sb, unsigned char* source, size_t len) +{ + convert_utf16(sb, source, len, 1); +} + +static void convert_utf16bom(mpg123_string *sb, unsigned char* source, size_t len) +{ + if(len < 2){ mpg123_free_string(sb); return; } + + if(source[0] == 0xff && source[1] == 0xfe) /* Little-endian */ + convert_utf16(sb, source + 2, len - 2, 0); + else /* Big-endian */ + convert_utf16(sb, source + 2, len - 2, 1); +} + +static void convert_utf8(mpg123_string *sb, unsigned char* source, size_t len) +{ + if(mpg123_resize_string(sb, len+1)) + { + memcpy(sb->p, source, len); + sb->p[len] = 0; + sb->fill = len+1; + } + else mpg123_free_string(sb); +} diff -r f2985e08589c -r 7e08477b0fc1 decoders/libmpg123/id3.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/decoders/libmpg123/id3.h Fri Jan 30 02:44:47 2009 -0500 @@ -0,0 +1,21 @@ +/* + id3: ID3v2.3 and ID3v2.4 parsing (a relevant subset) + + copyright 2006-2007 by the mpg123 project - free software under the terms of the LGPL 2.1 + see COPYING and AUTHORS files in distribution or http://mpg123.org + initially written by Thomas Orgis +*/ + +#ifndef MPG123_ID3_H +#define MPG123_ID3_H + +/* really need it _here_! */ +#include "frame.h" + +void init_id3(mpg123_handle *fr); +void exit_id3(mpg123_handle *fr); +void reset_id3(mpg123_handle *fr); +int parse_new_id3(mpg123_handle *fr, unsigned long first4bytes); +void id3_link(mpg123_handle *fr); + +#endif diff -r f2985e08589c -r 7e08477b0fc1 decoders/libmpg123/index.c --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/decoders/libmpg123/index.c Fri Jan 30 02:44:47 2009 -0500 @@ -0,0 +1,114 @@ +/* + index: frame index data structure and functions + + copyright 2007-8 by the mpg123 project - free software under the terms of the LGPL 2.1 + see COPYING and AUTHORS files in distribution or http://mpg123.org + initially written by Thomas Orgis +*/ + +#include "index.h" +#include "debug.h" + +/* The next expected frame offset, one step ahead. */ +static off_t fi_next(struct frame_index *fi) +{ + return (off_t)fi->fill*fi->step; +} + +/* Shrink down the used index to the half. + Be careful with size = 1 ... there's no shrinking possible there. */ +static void fi_shrink(struct frame_index *fi) +{ + if(fi->fill < 2) return; /* Won't shrink below 1. */ + else + { /* Double the step, half the fill. Should work as well for fill%2 = 1 */ + size_t c; + debug2("shrink index with fill %lu and step %lu", (unsigned long)fi->fill, (unsigned long)fi->step); + fi->step *= 2; + fi->fill /= 2; + /* Move the data down. */ + for(c = 0; c < fi->fill; ++c) + fi->data[c] = fi->data[2*c]; + } + + fi->next = fi_next(fi); +} + +void fi_init(struct frame_index *fi) +{ + fi->data = NULL; + fi->step = 1; + fi->fill = 0; + fi->size = 0; + fi->grow_size = 0; + fi->next = fi_next(fi); +} + +void fi_exit(struct frame_index *fi) +{ + debug2("fi_exit: %p and %lu", (void*)fi->data, (unsigned long)fi->size); + if(fi->size && fi->data != NULL) free(fi->data); + + fi_init(fi); /* Be prepared for further fun, still. */ +} + +int fi_resize(struct frame_index *fi, size_t newsize) +{ + off_t *newdata = NULL; + if(newsize == fi->size) return 0; + + if(newsize > 0 && newsize < fi->size) + { /* When we reduce buffer size a bit, shrink stuff. */ + while(fi->fill > newsize){ fi_shrink(fi); } + } + + newdata = safe_realloc(fi->data, newsize*sizeof(off_t)); + if(newsize == 0 || newdata != NULL) + { + fi->data = newdata; + fi->size = newsize; + if(fi->fill > fi->size) fi->fill = fi->size; + + fi->next = fi_next(fi); + debug2("new index of size %lu at %p", (unsigned long)fi->size, (void*)fi->data); + return 0; + } + else + { + error("failed to resize index!"); + return -1; + } +} + +void fi_add(struct frame_index *fi, off_t pos) +{ + debug3("wanting to add to fill %lu, step %lu, size %lu", (unsigned long)fi->fill, (unsigned long)fi->step, (unsigned long)fi->size); + if(fi->fill == fi->size) + { /* Index is full, we need to shrink... or grow. */ + /* Store the current frame number to check later if we still want it. */ + off_t framenum = fi->fill*fi->step; + /* If we want not / cannot grow, we shrink. */ + if( !(fi->grow_size && fi_resize(fi, fi->size+fi->grow_size)==0) ) + fi_shrink(fi); + + /* Now check if we still want to add this frame (could be that not, because of changed step). */ + if(fi->next != framenum) return; + } + /* When we are here, we want that frame. */ + if(fi->fill < fi->size) /* safeguard for size=1, or just generally */ + { + debug1("adding to index at %p", (void*)(fi->data+fi->fill)); + fi->data[fi->fill] = pos; + ++fi->fill; + fi->next = fi_next(fi); + debug3("added pos %li to index with fill %lu and step %lu", (long) pos, (unsigned long)fi->fill, (unsigned long)fi->step); + } +} + +void fi_reset(struct frame_index *fi) +{ + debug1("reset with size %zu", fi->size); + fi->fill = 0; + fi->step = 1; + fi->next = fi_next(fi); +} diff -r f2985e08589c -r 7e08477b0fc1 decoders/libmpg123/index.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/decoders/libmpg123/index.h Fri Jan 30 02:44:47 2009 -0500 @@ -0,0 +1,56 @@ +#ifndef MPG123_H_INDEX +#define MPG123_H_INDEX + +/* + index: frame index data structure and functions + + This is for keeping track of frame positions for accurate seeking. + Now in it's own file, with initial code from frame.c and parse.c . + + The idea of the index with a certain amount of entries is to cover + all yet-encountered frame positions with minimal coarseness. + Meaning: At first every frame position is recorded, then, when + the index is full, every second position is trown away to make + space. Next time it is full, the same happens. And so on. + In this manner we maintain a good resolution with the given + maximum index size while covering the whole stream. + + copyright 2007-8 by the mpg123 project - free software under the terms of the LGPL 2.1 + see COPYING and AUTHORS files in distribution or http://mpg123.org + initially written by Thomas Orgis +*/ + +#include "config.h" +#include "compat.h" + +struct frame_index +{ + off_t *data; /* actual data, the frame positions */ + off_t step; /* advancement in frame number per index point */ + off_t next; /* frame offset supposed to come next into the index */ + size_t size; /* total number of possible entries */ + size_t fill; /* number of used entries */ + size_t grow_size; /* if > 0: index allowed to grow on need with these steps, instead of lowering resolution */ +}; + +/* The condition for a framenum to be appended to the index. + if(FI_NEXT(fr->index, fr->num)) fi_add(offset); */ +#define FI_NEXT(fi, framenum) ((fi).size && framenum == (fi).next) + +/* Initialize stuff, set things to zero and NULL... */ +void fi_init(struct frame_index *fi); +/* Deallocate/zero things. */ +void fi_exit(struct frame_index *fi); + +/* Prepare a given size, preserving current fill, if possible. + If the new size is smaller than fill, the entry density is reduced. + Return 0 on success. */ +int fi_resize(struct frame_index *fi, size_t newsize); + +/* Append a frame position, reducing index density if needed. */ +void fi_add(struct frame_index *fi, off_t pos); + +/* Empty the index (setting fill=0 and step=1), but keep current size. */ +void fi_reset(struct frame_index *fi); + +#endif diff -r f2985e08589c -r 7e08477b0fc1 decoders/libmpg123/l2tables.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/decoders/libmpg123/l2tables.h Fri Jan 30 02:44:47 2009 -0500 @@ -0,0 +1,164 @@ +/* + l2tables.h: Layer 2 Alloc tables + + copyright ?-2006 by the mpg123 project - free software under the terms of the LGPL 2.1 + see COPYING and AUTHORS files in distribution or http://mpg123.org + initially written by Michael Hipp + + most other tables are calculated on program start (which is (of course) not ISO-conform) + Layer-3 huffman table is in huffman.h +*/ + + +#ifndef _MPG123_L2TABLES_H_ +#define _MPG123_L2TABLES_H_ + +const struct al_table alloc_0[] = { + {4,0},{5,3},{3,-3},{4,-7},{5,-15},{6,-31},{7,-63},{8,-127},{9,-255},{10,-511}, + {11,-1023},{12,-2047},{13,-4095},{14,-8191},{15,-16383},{16,-32767}, + {4,0},{5,3},{3,-3},{4,-7},{5,-15},{6,-31},{7,-63},{8,-127},{9,-255},{10,-511}, + {11,-1023},{12,-2047},{13,-4095},{14,-8191},{15,-16383},{16,-32767}, + {4,0},{5,3},{3,-3},{4,-7},{5,-15},{6,-31},{7,-63},{8,-127},{9,-255},{10,-511}, + {11,-1023},{12,-2047},{13,-4095},{14,-8191},{15,-16383},{16,-32767}, + {4,0},{5,3},{7,5},{3,-3},{10,9},{4,-7},{5,-15},{6,-31},{7,-63},{8,-127}, + {9,-255},{10,-511},{11,-1023},{12,-2047},{13,-4095},{16,-32767}, + {4,0},{5,3},{7,5},{3,-3},{10,9},{4,-7},{5,-15},{6,-31},{7,-63},{8,-127}, + {9,-255},{10,-511},{11,-1023},{12,-2047},{13,-4095},{16,-32767}, + {4,0},{5,3},{7,5},{3,-3},{10,9},{4,-7},{5,-15},{6,-31},{7,-63},{8,-127}, + {9,-255},{10,-511},{11,-1023},{12,-2047},{13,-4095},{16,-32767}, + {4,0},{5,3},{7,5},{3,-3},{10,9},{4,-7},{5,-15},{6,-31},{7,-63},{8,-127}, + {9,-255},{10,-511},{11,-1023},{12,-2047},{13,-4095},{16,-32767}, + {4,0},{5,3},{7,5},{3,-3},{10,9},{4,-7},{5,-15},{6,-31},{7,-63},{8,-127}, + {9,-255},{10,-511},{11,-1023},{12,-2047},{13,-4095},{16,-32767}, + {4,0},{5,3},{7,5},{3,-3},{10,9},{4,-7},{5,-15},{6,-31},{7,-63},{8,-127}, + {9,-255},{10,-511},{11,-1023},{12,-2047},{13,-4095},{16,-32767}, + {4,0},{5,3},{7,5},{3,-3},{10,9},{4,-7},{5,-15},{6,-31},{7,-63},{8,-127}, + {9,-255},{10,-511},{11,-1023},{12,-2047},{13,-4095},{16,-32767}, + {4,0},{5,3},{7,5},{3,-3},{10,9},{4,-7},{5,-15},{6,-31},{7,-63},{8,-127}, + {9,-255},{10,-511},{11,-1023},{12,-2047},{13,-4095},{16,-32767}, + {3,0},{5,3},{7,5},{3,-3},{10,9},{4,-7},{5,-15},{16,-32767}, + {3,0},{5,3},{7,5},{3,-3},{10,9},{4,-7},{5,-15},{16,-32767}, + {3,0},{5,3},{7,5},{3,-3},{10,9},{4,-7},{5,-15},{16,-32767}, + {3,0},{5,3},{7,5},{3,-3},{10,9},{4,-7},{5,-15},{16,-32767}, + {3,0},{5,3},{7,5},{3,-3},{10,9},{4,-7},{5,-15},{16,-32767}, + {3,0},{5,3},{7,5},{3,-3},{10,9},{4,-7},{5,-15},{16,-32767}, + {3,0},{5,3},{7,5},{3,-3},{10,9},{4,-7},{5,-15},{16,-32767}, + {3,0},{5,3},{7,5},{3,-3},{10,9},{4,-7},{5,-15},{16,-32767}, + {3,0},{5,3},{7,5},{3,-3},{10,9},{4,-7},{5,-15},{16,-32767}, + {3,0},{5,3},{7,5},{3,-3},{10,9},{4,-7},{5,-15},{16,-32767}, + {3,0},{5,3},{7,5},{3,-3},{10,9},{4,-7},{5,-15},{16,-32767}, + {3,0},{5,3},{7,5},{3,-3},{10,9},{4,-7},{5,-15},{16,-32767}, + {2,0},{5,3},{7,5},{16,-32767}, + {2,0},{5,3},{7,5},{16,-32767}, + {2,0},{5,3},{7,5},{16,-32767}, + {2,0},{5,3},{7,5},{16,-32767} }; + +const struct al_table alloc_1[] = { + {4,0},{5,3},{3,-3},{4,-7},{5,-15},{6,-31},{7,-63},{8,-127},{9,-255},{10,-511}, + {11,-1023},{12,-2047},{13,-4095},{14,-8191},{15,-16383},{16,-32767}, + {4,0},{5,3},{3,-3},{4,-7},{5,-15},{6,-31},{7,-63},{8,-127},{9,-255},{10,-511}, + {11,-1023},{12,-2047},{13,-4095},{14,-8191},{15,-16383},{16,-32767}, + {4,0},{5,3},{3,-3},{4,-7},{5,-15},{6,-31},{7,-63},{8,-127},{9,-255},{10,-511}, + {11,-1023},{12,-2047},{13,-4095},{14,-8191},{15,-16383},{16,-32767}, + {4,0},{5,3},{7,5},{3,-3},{10,9},{4,-7},{5,-15},{6,-31},{7,-63},{8,-127}, + {9,-255},{10,-511},{11,-1023},{12,-2047},{13,-4095},{16,-32767}, + {4,0},{5,3},{7,5},{3,-3},{10,9},{4,-7},{5,-15},{6,-31},{7,-63},{8,-127}, + {9,-255},{10,-511},{11,-1023},{12,-2047},{13,-4095},{16,-32767}, + {4,0},{5,3},{7,5},{3,-3},{10,9},{4,-7},{5,-15},{6,-31},{7,-63},{8,-127}, + {9,-255},{10,-511},{11,-1023},{12,-2047},{13,-4095},{16,-32767}, + {4,0},{5,3},{7,5},{3,-3},{10,9},{4,-7},{5,-15},{6,-31},{7,-63},{8,-127}, + {9,-255},{10,-511},{11,-1023},{12,-2047},{13,-4095},{16,-32767}, + {4,0},{5,3},{7,5},{3,-3},{10,9},{4,-7},{5,-15},{6,-31},{7,-63},{8,-127}, + {9,-255},{10,-511},{11,-1023},{12,-2047},{13,-4095},{16,-32767}, + {4,0},{5,3},{7,5},{3,-3},{10,9},{4,-7},{5,-15},{6,-31},{7,-63},{8,-127}, + {9,-255},{10,-511},{11,-1023},{12,-2047},{13,-4095},{16,-32767}, + {4,0},{5,3},{7,5},{3,-3},{10,9},{4,-7},{5,-15},{6,-31},{7,-63},{8,-127}, + {9,-255},{10,-511},{11,-1023},{12,-2047},{13,-4095},{16,-32767}, + {4,0},{5,3},{7,5},{3,-3},{10,9},{4,-7},{5,-15},{6,-31},{7,-63},{8,-127}, + {9,-255},{10,-511},{11,-1023},{12,-2047},{13,-4095},{16,-32767}, + {3,0},{5,3},{7,5},{3,-3},{10,9},{4,-7},{5,-15},{16,-32767}, + {3,0},{5,3},{7,5},{3,-3},{10,9},{4,-7},{5,-15},{16,-32767}, + {3,0},{5,3},{7,5},{3,-3},{10,9},{4,-7},{5,-15},{16,-32767}, + {3,0},{5,3},{7,5},{3,-3},{10,9},{4,-7},{5,-15},{16,-32767}, + {3,0},{5,3},{7,5},{3,-3},{10,9},{4,-7},{5,-15},{16,-32767}, + {3,0},{5,3},{7,5},{3,-3},{10,9},{4,-7},{5,-15},{16,-32767}, + {3,0},{5,3},{7,5},{3,-3},{10,9},{4,-7},{5,-15},{16,-32767}, + {3,0},{5,3},{7,5},{3,-3},{10,9},{4,-7},{5,-15},{16,-32767}, + {3,0},{5,3},{7,5},{3,-3},{10,9},{4,-7},{5,-15},{16,-32767}, + {3,0},{5,3},{7,5},{3,-3},{10,9},{4,-7},{5,-15},{16,-32767}, + {3,0},{5,3},{7,5},{3,-3},{10,9},{4,-7},{5,-15},{16,-32767}, + {3,0},{5,3},{7,5},{3,-3},{10,9},{4,-7},{5,-15},{16,-32767}, + {2,0},{5,3},{7,5},{16,-32767}, + {2,0},{5,3},{7,5},{16,-32767}, + {2,0},{5,3},{7,5},{16,-32767}, + {2,0},{5,3},{7,5},{16,-32767}, + {2,0},{5,3},{7,5},{16,-32767}, + {2,0},{5,3},{7,5},{16,-32767}, + {2,0},{5,3},{7,5},{16,-32767} }; + +const struct al_table alloc_2[] = { + {4,0},{5,3},{7,5},{10,9},{4,-7},{5,-15},{6,-31},{7,-63},{8,-127},{9,-255}, + {10,-511},{11,-1023},{12,-2047},{13,-4095},{14,-8191},{15,-16383}, + {4,0},{5,3},{7,5},{10,9},{4,-7},{5,-15},{6,-31},{7,-63},{8,-127},{9,-255}, + {10,-511},{11,-1023},{12,-2047},{13,-4095},{14,-8191},{15,-16383}, + {3,0},{5,3},{7,5},{10,9},{4,-7},{5,-15},{6,-31},{7,-63}, + {3,0},{5,3},{7,5},{10,9},{4,-7},{5,-15},{6,-31},{7,-63}, + {3,0},{5,3},{7,5},{10,9},{4,-7},{5,-15},{6,-31},{7,-63}, + {3,0},{5,3},{7,5},{10,9},{4,-7},{5,-15},{6,-31},{7,-63}, + {3,0},{5,3},{7,5},{10,9},{4,-7},{5,-15},{6,-31},{7,-63}, + {3,0},{5,3},{7,5},{10,9},{4,-7},{5,-15},{6,-31},{7,-63} }; + +const struct al_table alloc_3[] = { + {4,0},{5,3},{7,5},{10,9},{4,-7},{5,-15},{6,-31},{7,-63},{8,-127},{9,-255}, + {10,-511},{11,-1023},{12,-2047},{13,-4095},{14,-8191},{15,-16383}, + {4,0},{5,3},{7,5},{10,9},{4,-7},{5,-15},{6,-31},{7,-63},{8,-127},{9,-255}, + {10,-511},{11,-1023},{12,-2047},{13,-4095},{14,-8191},{15,-16383}, + {3,0},{5,3},{7,5},{10,9},{4,-7},{5,-15},{6,-31},{7,-63}, + {3,0},{5,3},{7,5},{10,9},{4,-7},{5,-15},{6,-31},{7,-63}, + {3,0},{5,3},{7,5},{10,9},{4,-7},{5,-15},{6,-31},{7,-63}, + {3,0},{5,3},{7,5},{10,9},{4,-7},{5,-15},{6,-31},{7,-63}, + {3,0},{5,3},{7,5},{10,9},{4,-7},{5,-15},{6,-31},{7,-63}, + {3,0},{5,3},{7,5},{10,9},{4,-7},{5,-15},{6,-31},{7,-63}, + {3,0},{5,3},{7,5},{10,9},{4,-7},{5,-15},{6,-31},{7,-63}, + {3,0},{5,3},{7,5},{10,9},{4,-7},{5,-15},{6,-31},{7,-63}, + {3,0},{5,3},{7,5},{10,9},{4,-7},{5,-15},{6,-31},{7,-63}, + {3,0},{5,3},{7,5},{10,9},{4,-7},{5,-15},{6,-31},{7,-63} }; + +const struct al_table alloc_4[] = { + {4,0},{5,3},{7,5},{3,-3},{10,9},{4,-7},{5,-15},{6,-31},{7,-63},{8,-127}, + {9,-255},{10,-511},{11,-1023},{12,-2047},{13,-4095},{14,-8191}, + {4,0},{5,3},{7,5},{3,-3},{10,9},{4,-7},{5,-15},{6,-31},{7,-63},{8,-127}, + {9,-255},{10,-511},{11,-1023},{12,-2047},{13,-4095},{14,-8191}, + {4,0},{5,3},{7,5},{3,-3},{10,9},{4,-7},{5,-15},{6,-31},{7,-63},{8,-127}, + {9,-255},{10,-511},{11,-1023},{12,-2047},{13,-4095},{14,-8191}, + {4,0},{5,3},{7,5},{3,-3},{10,9},{4,-7},{5,-15},{6,-31},{7,-63},{8,-127}, + {9,-255},{10,-511},{11,-1023},{12,-2047},{13,-4095},{14,-8191}, + {3,0},{5,3},{7,5},{10,9},{4,-7},{5,-15},{6,-31},{7,-63}, + {3,0},{5,3},{7,5},{10,9},{4,-7},{5,-15},{6,-31},{7,-63}, + {3,0},{5,3},{7,5},{10,9},{4,-7},{5,-15},{6,-31},{7,-63}, + {3,0},{5,3},{7,5},{10,9},{4,-7},{5,-15},{6,-31},{7,-63}, + {3,0},{5,3},{7,5},{10,9},{4,-7},{5,-15},{6,-31},{7,-63}, + {3,0},{5,3},{7,5},{10,9},{4,-7},{5,-15},{6,-31},{7,-63}, + {3,0},{5,3},{7,5},{10,9},{4,-7},{5,-15},{6,-31},{7,-63}, + {2,0},{5,3},{7,5},{10,9}, + {2,0},{5,3},{7,5},{10,9}, + {2,0},{5,3},{7,5},{10,9}, + {2,0},{5,3},{7,5},{10,9}, + {2,0},{5,3},{7,5},{10,9}, + {2,0},{5,3},{7,5},{10,9}, + {2,0},{5,3},{7,5},{10,9}, + {2,0},{5,3},{7,5},{10,9}, + {2,0},{5,3},{7,5},{10,9}, + {2,0},{5,3},{7,5},{10,9}, + {2,0},{5,3},{7,5},{10,9}, + {2,0},{5,3},{7,5},{10,9}, + {2,0},{5,3},{7,5},{10,9}, + {2,0},{5,3},{7,5},{10,9}, + {2,0},{5,3},{7,5},{10,9}, + {2,0},{5,3},{7,5},{10,9}, + {2,0},{5,3},{7,5},{10,9}, + {2,0},{5,3},{7,5},{10,9}, + {2,0},{5,3},{7,5},{10,9} }; + +#endif + diff -r f2985e08589c -r 7e08477b0fc1 decoders/libmpg123/layer1.c --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/decoders/libmpg123/layer1.c Fri Jan 30 02:44:47 2009 -0500 @@ -0,0 +1,153 @@ +/* + layer1.c: the layer 1 decoder + + copyright 1995-2007 by the mpg123 project - free software under the terms of the LGPL 2.1 + see COPYING and AUTHORS files in distribution or http://mpg123.org + initially written by Michael Hipp + + may have a few bugs after last optimization ... +*/ + +#include "mpg123lib_intern.h" +#include "getbits.h" + +void I_step_one(unsigned int balloc[], unsigned int scale_index[2][SBLIMIT],mpg123_handle *fr) +{ + unsigned int *ba=balloc; + unsigned int *sca = (unsigned int *) scale_index; + + if(fr->stereo == 2) { + int i; + int jsbound = fr->jsbound; + for (i=0;istereo == 2) { + int jsbound = fr->jsbound; + register real *f0 = fraction[0]; + register real *f1 = fraction[1]; + ba = balloc; + for (sample=smpb,i=0;imuls[n+1][*sca++]; + else + *f0++ = 0.0; + if((n=*ba++)) + *f1++ = (real) ( ((-1)<muls[n+1][*sca++]; + else + *f1++ = 0.0; + } + for (i=jsbound;imuls[n+1][*sca++]; + *f1++ = samp * fr->muls[n+1][*sca++]; + } + else + *f0++ = *f1++ = 0.0; + } + for(i=fr->down_sample_sblimit;i<32;i++) + fraction[0][i] = fraction[1][i] = 0.0; + } + else { + register real *f0 = fraction[0]; + ba = balloc; + for (sample=smpb,i=0;imuls[n+1][*sca++]; + else + *f0++ = 0.0; + } + for(i=fr->down_sample_sblimit;i<32;i++) + fraction[0][i] = 0.0; + } +} + +int do_layer1(mpg123_handle *fr) +{ + int clip=0; + int i,stereo = fr->stereo; + unsigned int balloc[2*SBLIMIT]; + unsigned int scale_index[2][SBLIMIT]; + ALIGNED(16) real fraction[2][SBLIMIT]; + int single = fr->single; + + fr->jsbound = (fr->mode == MPG_MD_JOINT_STEREO) ? (fr->mode_ext<<2)+4 : 32; + + if(stereo == 1 || single == SINGLE_MIX) /* I don't see mixing handled here */ + single = SINGLE_LEFT; + + I_step_one(balloc,scale_index,fr); + + for (i=0;isynth_mono)( (real *) fraction[single], fr); + } + else + { + clip += (fr->synth)( (real *) fraction[0], 0, fr, 0); + clip += (fr->synth)( (real *) fraction[1], 1, fr, 1); + } + } + + return clip; +} + + diff -r f2985e08589c -r 7e08477b0fc1 decoders/libmpg123/layer2.c --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/decoders/libmpg123/layer2.c Fri Jan 30 02:44:47 2009 -0500 @@ -0,0 +1,335 @@ +/* + layer2.c: the layer 2 decoder, root of mpg123 + + copyright 1994-2007 by the mpg123 project - free software under the terms of the LGPL 2.1 + see COPYING and AUTHORS files in distribution or http://mpg123.org + initially written by Michael Hipp + + mpg123 started as mp2 decoder a long time ago... +*/ + + +#include "mpg123lib_intern.h" +#include "l2tables.h" +#include "getbits.h" + +static int grp_3tab[32 * 3] = { 0, }; /* used: 27 */ +static int grp_5tab[128 * 3] = { 0, }; /* used: 125 */ +static int grp_9tab[1024 * 3] = { 0, }; /* used: 729 */ + +static const double mulmul[27] = +{ + 0.0 , -2.0/3.0 , 2.0/3.0 , + 2.0/7.0 , 2.0/15.0 , 2.0/31.0, 2.0/63.0 , 2.0/127.0 , 2.0/255.0 , + 2.0/511.0 , 2.0/1023.0 , 2.0/2047.0 , 2.0/4095.0 , 2.0/8191.0 , + 2.0/16383.0 , 2.0/32767.0 , 2.0/65535.0 , + -4.0/5.0 , -2.0/5.0 , 2.0/5.0, 4.0/5.0 , + -8.0/9.0 , -4.0/9.0 , -2.0/9.0 , 2.0/9.0 , 4.0/9.0 , 8.0/9.0 +}; + +void init_layer2(void) +{ + const int base[3][9] = { + { 1 , 0, 2 , } , + { 17, 18, 0 , 19, 20 , } , + { 21, 1, 22, 23, 0, 24, 25, 2, 26 } }; + int i,j,k,l,len; + const int tablen[3] = { 3 , 5 , 9 }; + int *itable; + int *tables[3] = { grp_3tab , grp_5tab , grp_9tab }; + + for(i=0;i<3;i++) + { + itable = tables[i]; + len = tablen[i]; + for(j=0;jmuls[k], mulmul[k]); + *table++ = 0.0; + } +} + +real* init_layer2_table(mpg123_handle *fr, real *table, double m) +{ + int i,j; + for(j=3,i=0;i<63;i++,j--) + *table++ = m * pow(2.0,(double) j / 3.0); + + return table; +} + +#ifdef OPT_MMXORSSE +real* init_layer2_table_mmx(mpg123_handle *fr, real *table, double m) +{ + int i,j; + if(!fr->p.down_sample) + for(j=3,i=0;i<63;i++,j--) + *table++ = 16384 * m * pow(2.0,(double) j / 3.0); + else + for(j=3,i=0;i<63;i++,j--) + *table++ = m * pow(2.0,(double) j / 3.0); + + return table; +} +#endif + +void II_step_one(unsigned int *bit_alloc,int *scale,mpg123_handle *fr) +{ + int stereo = fr->stereo-1; + int sblimit = fr->II_sblimit; + int jsbound = fr->jsbound; + int sblimit2 = fr->II_sblimit<alloc; + int i; + /* static unsigned int scfsi_buf[64]; */ + unsigned int scfsi_buf[64]; + unsigned int *scfsi,*bita; + int sc,step; + + bita = bit_alloc; + if(stereo) + { + for (i=jsbound;i;i--,alloc1+=(1<bits; + *bita++ = (char) getbits(fr, step); + *bita++ = (char) getbits(fr, step); + } + for (i=sblimit-jsbound;i;i--,alloc1+=(1<bits; + bita[0] = (char) getbits(fr, step); + bita[1] = bita[0]; + bita+=2; + } + bita = bit_alloc; + scfsi=scfsi_buf; + for (i=sblimit2;i;i--) + if (*bita++) + *scfsi++ = (char) getbits_fast(fr, 2); + } + else /* mono */ + { + for (i=sblimit;i;i--,alloc1+=(1<bits; + *bita++ = (char) getbits(fr, step); + } + bita = bit_alloc; + scfsi=scfsi_buf; + for (i=sblimit;i;i--) + if (*bita++) + *scfsi++ = (char) getbits_fast(fr, 2); + } + + bita = bit_alloc; + scfsi=scfsi_buf; + for (i=sblimit2;i;i--) + if (*bita++) + switch (*scfsi++) + { + case 0: + *scale++ = getbits_fast(fr, 6); + *scale++ = getbits_fast(fr, 6); + *scale++ = getbits_fast(fr, 6); + break; + case 1 : + *scale++ = sc = getbits_fast(fr, 6); + *scale++ = sc; + *scale++ = getbits_fast(fr, 6); + break; + case 2: + *scale++ = sc = getbits_fast(fr, 6); + *scale++ = sc; + *scale++ = sc; + break; + default: /* case 3 */ + *scale++ = getbits_fast(fr, 6); + *scale++ = sc = getbits_fast(fr, 6); + *scale++ = sc; + break; + } + +} + +void II_step_two(unsigned int *bit_alloc,real fraction[2][4][SBLIMIT],int *scale,mpg123_handle *fr,int x1) +{ + int i,j,k,ba; + int stereo = fr->stereo; + int sblimit = fr->II_sblimit; + int jsbound = fr->jsbound; + const struct al_table *alloc2,*alloc1 = fr->alloc; + unsigned int *bita=bit_alloc; + int d1,step; + + for (i=0;ibits; + for (j=0;jbits; + if( (d1=alloc2->d) < 0) + { + real cm=fr->muls[k][scale[x1]]; + fraction[j][0][i] = ((real) ((int)getbits(fr, k) + d1)) * cm; + fraction[j][1][i] = ((real) ((int)getbits(fr, k) + d1)) * cm; + fraction[j][2][i] = ((real) ((int)getbits(fr, k) + d1)) * cm; + } + else + { + const int *table[] = { 0,0,0,grp_3tab,0,grp_5tab,0,0,0,grp_9tab }; + unsigned int idx,*tab,m=scale[x1]; + idx = (unsigned int) getbits(fr, k); + tab = (unsigned int *) (table[d1] + idx + idx + idx); + fraction[j][0][i] = fr->muls[*tab++][m]; + fraction[j][1][i] = fr->muls[*tab++][m]; + fraction[j][2][i] = fr->muls[*tab][m]; + } + scale+=3; + } + else + fraction[j][0][i] = fraction[j][1][i] = fraction[j][2][i] = 0.0; + } + } + + for (i=jsbound;ibits; + bita++; /* channel 1 and channel 2 bitalloc are the same */ + if ( (ba=*bita++) ) + { + k=(alloc2 = alloc1+ba)->bits; + if( (d1=alloc2->d) < 0) + { + real cm; + cm=fr->muls[k][scale[x1+3]]; + fraction[1][0][i] = (fraction[0][0][i] = (real) ((int)getbits(fr, k) + d1) ) * cm; + fraction[1][1][i] = (fraction[0][1][i] = (real) ((int)getbits(fr, k) + d1) ) * cm; + fraction[1][2][i] = (fraction[0][2][i] = (real) ((int)getbits(fr, k) + d1) ) * cm; + cm=fr->muls[k][scale[x1]]; + fraction[0][0][i] *= cm; fraction[0][1][i] *= cm; fraction[0][2][i] *= cm; + } + else + { + const int *table[] = { 0,0,0,grp_3tab,0,grp_5tab,0,0,0,grp_9tab }; + unsigned int idx,*tab,m1,m2; + m1 = scale[x1]; m2 = scale[x1+3]; + idx = (unsigned int) getbits(fr, k); + tab = (unsigned int *) (table[d1] + idx + idx + idx); + fraction[0][0][i] = fr->muls[*tab][m1]; fraction[1][0][i] = fr->muls[*tab++][m2]; + fraction[0][1][i] = fr->muls[*tab][m1]; fraction[1][1][i] = fr->muls[*tab++][m2]; + fraction[0][2][i] = fr->muls[*tab][m1]; fraction[1][2][i] = fr->muls[*tab][m2]; + } + scale+=6; + } + else { + fraction[0][0][i] = fraction[0][1][i] = fraction[0][2][i] = + fraction[1][0][i] = fraction[1][1][i] = fraction[1][2][i] = 0.0; + } +/* + should we use individual scalefac for channel 2 or + is the current way the right one , where we just copy channel 1 to + channel 2 ?? + The current 'strange' thing is, that we throw away the scalefac + values for the second channel ...!! +-> changed .. now we use the scalefac values of channel one !! +*/ + } + + if(sblimit > (fr->down_sample_sblimit) ) + sblimit = fr->down_sample_sblimit; + + for(i=sblimit;isampling_frequency >= 3) /* Or equivalent: (fr->lsf == 1) */ + table = 4; + else + table = translate[fr->sampling_frequency][2-fr->stereo][fr->bitrate_index]; + sblim = sblims[table]; + + fr->alloc = tables[table]; + fr->II_sblimit = sblim; +} + + +int do_layer2(mpg123_handle *fr) +{ + int clip=0; + int i,j; + int stereo = fr->stereo; + ALIGNED(16) real fraction[2][4][SBLIMIT]; /* pick_table clears unused subbands */ + unsigned int bit_alloc[64]; + int scale[192]; + int single = fr->single; + + II_select_table(fr); + fr->jsbound = (fr->mode == MPG_MD_JOINT_STEREO) ? + (fr->mode_ext<<2)+4 : fr->II_sblimit; + + if (fr->jsbound > fr->II_sblimit) { + fprintf(stderr, "Truncating stereo boundary to sideband limit.\n"); + fr->jsbound=fr->II_sblimit; + } + + if(stereo == 1 || single == SINGLE_MIX) /* also, mix not really handled */ + single = SINGLE_LEFT; + + II_step_one(bit_alloc, scale, fr); + + for (i=0;i>2); + for (j=0;j<3;j++) + { + if(single != SINGLE_STEREO) + { + clip += (fr->synth_mono) (fraction[single][j], fr); + } + else + { + clip += (fr->synth) (fraction[0][j], 0, fr, 0); + clip += (fr->synth) (fraction[1][j], 1, fr, 1); + } + } + } + + return clip; +} + + diff -r f2985e08589c -r 7e08477b0fc1 decoders/libmpg123/layer3.c --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/decoders/libmpg123/layer3.c Fri Jan 30 02:44:47 2009 -0500 @@ -0,0 +1,1908 @@ +/* + leyer3.c: the layer 3 decoder + + copyright 1995-2008 by the mpg123 project - free software under the terms of the LGPL 2.1 + see COPYING and AUTHORS files in distribution or http://mpg123.org + initially written by Michael Hipp + + Optimize-TODO: put short bands into the band-field without the stride of 3 reals + Length-optimze: unify long and short band code where it is possible + + The int-vs-pointer situation has to be cleaned up. +*/ + +#include "mpg123lib_intern.h" +#include "huffman.h" +#include "getbits.h" +#include "debug.h" + +/* static one-time calculated tables... or so */ +static real ispow[8207]; +static real aa_ca[8],aa_cs[8]; +static real COS1[12][6]; +static real win[4][36]; +static real win1[4][36]; +real COS9[9]; /* dct36_3dnow wants to use that */ +static real COS6_1,COS6_2; +real tfcos36[9]; /* dct36_3dnow wants to use that */ +static real tfcos12[3]; +#define NEW_DCT9 +#ifdef NEW_DCT9 +static real cos9[3],cos18[3]; +#endif + +struct gr_info_s { + int scfsi; + unsigned part2_3_length; + unsigned big_values; + unsigned scalefac_compress; + unsigned block_type; + unsigned mixed_block_flag; + unsigned table_select[3]; + unsigned subblock_gain[3]; + unsigned maxband[3]; + unsigned maxbandl; + unsigned maxb; + unsigned region1start; + unsigned region2start; + unsigned preflag; + unsigned scalefac_scale; + unsigned count1table_select; + real *full_gain[3]; + real *pow2gain; +}; + +struct III_sideinfo +{ + unsigned main_data_begin; + unsigned private_bits; + struct { + struct gr_info_s gr[2]; + } ch[2]; +}; + + +struct bandInfoStruct { + int longIdx[23]; + int longDiff[22]; + int shortIdx[14]; + int shortDiff[13]; +}; + + +const struct bandInfoStruct bandInfo[9] = { + +/* MPEG 1.0 */ + { {0,4,8,12,16,20,24,30,36,44,52,62,74, 90,110,134,162,196,238,288,342,418,576}, + {4,4,4,4,4,4,6,6,8, 8,10,12,16,20,24,28,34,42,50,54, 76,158}, + {0,4*3,8*3,12*3,16*3,22*3,30*3,40*3,52*3,66*3, 84*3,106*3,136*3,192*3}, + {4,4,4,4,6,8,10,12,14,18,22,30,56} } , + + { {0,4,8,12,16,20,24,30,36,42,50,60,72, 88,106,128,156,190,230,276,330,384,576}, + {4,4,4,4,4,4,6,6,6, 8,10,12,16,18,22,28,34,40,46,54, 54,192}, + {0,4*3,8*3,12*3,16*3,22*3,28*3,38*3,50*3,64*3, 80*3,100*3,126*3,192*3}, + {4,4,4,4,6,6,10,12,14,16,20,26,66} } , + + { {0,4,8,12,16,20,24,30,36,44,54,66,82,102,126,156,194,240,296,364,448,550,576} , + {4,4,4,4,4,4,6,6,8,10,12,16,20,24,30,38,46,56,68,84,102, 26} , + {0,4*3,8*3,12*3,16*3,22*3,30*3,42*3,58*3,78*3,104*3,138*3,180*3,192*3} , + {4,4,4,4,6,8,12,16,20,26,34,42,12} } , + +/* MPEG 2.0 */ + { {0,6,12,18,24,30,36,44,54,66,80,96,116,140,168,200,238,284,336,396,464,522,576}, + {6,6,6,6,6,6,8,10,12,14,16,20,24,28,32,38,46,52,60,68,58,54 } , + {0,4*3,8*3,12*3,18*3,24*3,32*3,42*3,56*3,74*3,100*3,132*3,174*3,192*3} , + {4,4,4,6,6,8,10,14,18,26,32,42,18 } } , + +/* Twiddling 3 values here (not just 330->332!) fixed bug 1895025. */ + { {0,6,12,18,24,30,36,44,54,66,80,96,114,136,162,194,232,278,332,394,464,540,576}, + {6,6,6,6,6,6,8,10,12,14,16,18,22,26,32,38,46,54,62,70,76,36 } , + {0,4*3,8*3,12*3,18*3,26*3,36*3,48*3,62*3,80*3,104*3,136*3,180*3,192*3} , + {4,4,4,6,8,10,12,14,18,24,32,44,12 } } , + + { {0,6,12,18,24,30,36,44,54,66,80,96,116,140,168,200,238,284,336,396,464,522,576}, + {6,6,6,6,6,6,8,10,12,14,16,20,24,28,32,38,46,52,60,68,58,54 }, + {0,4*3,8*3,12*3,18*3,26*3,36*3,48*3,62*3,80*3,104*3,134*3,174*3,192*3}, + {4,4,4,6,8,10,12,14,18,24,30,40,18 } } , +/* MPEG 2.5 */ + { {0,6,12,18,24,30,36,44,54,66,80,96,116,140,168,200,238,284,336,396,464,522,576} , + {6,6,6,6,6,6,8,10,12,14,16,20,24,28,32,38,46,52,60,68,58,54}, + {0,12,24,36,54,78,108,144,186,240,312,402,522,576}, + {4,4,4,6,8,10,12,14,18,24,30,40,18} }, + { {0,6,12,18,24,30,36,44,54,66,80,96,116,140,168,200,238,284,336,396,464,522,576} , + {6,6,6,6,6,6,8,10,12,14,16,20,24,28,32,38,46,52,60,68,58,54}, + {0,12,24,36,54,78,108,144,186,240,312,402,522,576}, + {4,4,4,6,8,10,12,14,18,24,30,40,18} }, + { {0,12,24,36,48,60,72,88,108,132,160,192,232,280,336,400,476,566,568,570,572,574,576}, + {12,12,12,12,12,12,16,20,24,28,32,40,48,56,64,76,90,2,2,2,2,2}, + {0, 24, 48, 72,108,156,216,288,372,480,486,492,498,576}, + {8,8,8,12,16,20,24,28,36,2,2,2,26} } , +}; + +static int mapbuf0[9][152]; +static int mapbuf1[9][156]; +static int mapbuf2[9][44]; +static int *map[9][3]; +static int *mapend[9][3]; + +static unsigned int n_slen2[512]; /* MPEG 2.0 slen for 'normal' mode */ +static unsigned int i_slen2[256]; /* MPEG 2.0 slen for intensity stereo */ + +static real tan1_1[16],tan2_1[16],tan1_2[16],tan2_2[16]; +static real pow1_1[2][16],pow2_1[2][16],pow1_2[2][16],pow2_2[2][16]; + +#ifdef OPT_MMXORSSE +real init_layer3_gainpow2_mmx(mpg123_handle *fr, int i) +{ + if(!fr->p.down_sample) return 16384.0 * pow((double)2.0,-0.25 * (double) (i+210) ); + else return DOUBLE_TO_REAL(pow((double)2.0,-0.25 * (double) (i+210))); +} +#endif + +real init_layer3_gainpow2(mpg123_handle *fr, int i) +{ + return DOUBLE_TO_REAL(pow((double)2.0,-0.25 * (double) (i+210))); +} + +/* + * init tables for layer-3 ... specific with the downsampling... + */ +void init_layer3(void) +{ + int i,j,k,l; + + for(i=0;i<8207;i++) + ispow[i] = DOUBLE_TO_REAL(pow((double)i,(double)4.0/3.0)); + + for (i=0;i<8;i++) { + const double Ci[8]={-0.6,-0.535,-0.33,-0.185,-0.095,-0.041,-0.0142,-0.0037}; + double sq=sqrt(1.0+Ci[i]*Ci[i]); + aa_cs[i] = DOUBLE_TO_REAL(1.0/sq); + aa_ca[i] = DOUBLE_TO_REAL(Ci[i]/sq); + } + + for(i=0;i<18;i++) { + win[0][i] = win[1][i] = DOUBLE_TO_REAL(0.5 * sin( M_PI / 72.0 * (double) (2*(i+0) +1) ) / cos ( M_PI * (double) (2*(i+0) +19) / 72.0 )); + win[0][i+18] = win[3][i+18] = DOUBLE_TO_REAL(0.5 * sin( M_PI / 72.0 * (double) (2*(i+18)+1) ) / cos ( M_PI * (double) (2*(i+18)+19) / 72.0 )); + } + for(i=0;i<6;i++) { + win[1][i+18] = DOUBLE_TO_REAL(0.5 / cos ( M_PI * (double) (2*(i+18)+19) / 72.0 )); + win[3][i+12] = DOUBLE_TO_REAL(0.5 / cos ( M_PI * (double) (2*(i+12)+19) / 72.0 )); + win[1][i+24] = DOUBLE_TO_REAL(0.5 * sin( M_PI / 24.0 * (double) (2*i+13) ) / cos ( M_PI * (double) (2*(i+24)+19) / 72.0 )); + win[1][i+30] = win[3][i] = DOUBLE_TO_REAL(0.0); + win[3][i+6 ] = DOUBLE_TO_REAL(0.5 * sin( M_PI / 24.0 * (double) (2*i+1) ) / cos ( M_PI * (double) (2*(i+6 )+19) / 72.0 )); + } + + for(i=0;i<9;i++) + COS9[i] = DOUBLE_TO_REAL(cos( M_PI / 18.0 * (double) i)); + + for(i=0;i<9;i++) + tfcos36[i] = DOUBLE_TO_REAL(0.5 / cos ( M_PI * (double) (i*2+1) / 36.0 )); + for(i=0;i<3;i++) + tfcos12[i] = DOUBLE_TO_REAL(0.5 / cos ( M_PI * (double) (i*2+1) / 12.0 )); + + COS6_1 = DOUBLE_TO_REAL(cos( M_PI / 6.0 * (double) 1)); + COS6_2 = DOUBLE_TO_REAL(cos( M_PI / 6.0 * (double) 2)); + +#ifdef NEW_DCT9 + cos9[0] = DOUBLE_TO_REAL(cos(1.0*M_PI/9.0)); + cos9[1] = DOUBLE_TO_REAL(cos(5.0*M_PI/9.0)); + cos9[2] = DOUBLE_TO_REAL(cos(7.0*M_PI/9.0)); + cos18[0] = DOUBLE_TO_REAL(cos(1.0*M_PI/18.0)); + cos18[1] = DOUBLE_TO_REAL(cos(11.0*M_PI/18.0)); + cos18[2] = DOUBLE_TO_REAL(cos(13.0*M_PI/18.0)); +#endif + + for(i=0;i<12;i++) { + win[2][i] = DOUBLE_TO_REAL(0.5 * sin( M_PI / 24.0 * (double) (2*i+1) ) / cos ( M_PI * (double) (2*i+7) / 24.0 )); + for(j=0;j<6;j++) + COS1[i][j] = DOUBLE_TO_REAL(cos( M_PI / 24.0 * (double) ((2*i+7)*(2*j+1)) )); + } + + for(j=0;j<4;j++) { + const int len[4] = { 36,36,12,36 }; + for(i=0;i 0) { + if( i & 1 ) + p1 = pow(base,(i+1.0)*0.5); + else + p2 = pow(base,i*0.5); + } + pow1_1[j][i] = DOUBLE_TO_REAL(p1); + pow2_1[j][i] = DOUBLE_TO_REAL(p2); + pow1_2[j][i] = DOUBLE_TO_REAL(M_SQRT2 * p1); + pow2_2[j][i] = DOUBLE_TO_REAL(M_SQRT2 * p2); + } + } + + for(j=0;j<9;j++) { + const struct bandInfoStruct *bi = &bandInfo[j]; + int *mp; + int cb,lwin; + const int *bdf; + + mp = map[j][0] = mapbuf0[j]; + bdf = bi->longDiff; + for(i=0,cb = 0; cb < 8 ; cb++,i+=*bdf++) { + *mp++ = (*bdf) >> 1; + *mp++ = i; + *mp++ = 3; + *mp++ = cb; + } + bdf = bi->shortDiff+3; + for(cb=3;cb<13;cb++) { + int l = (*bdf++) >> 1; + for(lwin=0;lwin<3;lwin++) { + *mp++ = l; + *mp++ = i + lwin; + *mp++ = lwin; + *mp++ = cb; + } + i += 6*l; + } + mapend[j][0] = mp; + + mp = map[j][1] = mapbuf1[j]; + bdf = bi->shortDiff+0; + for(i=0,cb=0;cb<13;cb++) { + int l = (*bdf++) >> 1; + for(lwin=0;lwin<3;lwin++) { + *mp++ = l; + *mp++ = i + lwin; + *mp++ = lwin; + *mp++ = cb; + } + i += 6*l; + } + mapend[j][1] = mp; + + mp = map[j][2] = mapbuf2[j]; + bdf = bi->longDiff; + for(cb = 0; cb < 22 ; cb++) { + *mp++ = (*bdf++) >> 1; + *mp++ = cb; + } + mapend[j][2] = mp; + + } + + for(i=0;i<5;i++) { + for(j=0;j<6;j++) { + for(k=0;k<6;k++) { + int n = k + j * 6 + i * 36; + i_slen2[n] = i|(j<<3)|(k<<6)|(3<<12); + } + } + } + for(i=0;i<4;i++) { + for(j=0;j<4;j++) { + for(k=0;k<4;k++) { + int n = k + j * 4 + i * 16; + i_slen2[n+180] = i|(j<<3)|(k<<6)|(4<<12); + } + } + } + for(i=0;i<4;i++) { + for(j=0;j<3;j++) { + int n = j + i * 3; + i_slen2[n+244] = i|(j<<3) | (5<<12); + n_slen2[n+500] = i|(j<<3) | (2<<12) | (1<<15); + } + } + + for(i=0;i<5;i++) { + for(j=0;j<5;j++) { + for(k=0;k<4;k++) { + for(l=0;l<4;l++) { + int n = l + k * 4 + j * 16 + i * 80; + n_slen2[n] = i|(j<<3)|(k<<6)|(l<<9)|(0<<12); + } + } + } + } + for(i=0;i<5;i++) { + for(j=0;j<5;j++) { + for(k=0;k<4;k++) { + int n = k + j * 4 + i * 20; + n_slen2[n+400] = i|(j<<3)|(k<<6)|(1<<12); + } + } + } +} + +void init_layer3_stuff(mpg123_handle *fr) +{ + int i,j; + + for(i=-256;i<118+4;i++) fr->gainpow2[i+256] = opt_init_layer3_gainpow2(fr)(fr,i); + + for(j=0;j<9;j++) + { + for(i=0;i<23;i++) + { + fr->longLimit[j][i] = (bandInfo[j].longIdx[i] - 1 + 8) / 18 + 1; + if(fr->longLimit[j][i] > (fr->down_sample_sblimit) ) + fr->longLimit[j][i] = fr->down_sample_sblimit; + } + for(i=0;i<14;i++) + { + fr->shortLimit[j][i] = (bandInfo[j].shortIdx[i] - 1) / 18 + 1; + if(fr->shortLimit[j][i] > (fr->down_sample_sblimit) ) + fr->shortLimit[j][i] = fr->down_sample_sblimit; + } + } +} + + +/* + * read additional side information (for MPEG 1 and MPEG 2) + */ +static int III_get_side_info(mpg123_handle *fr, struct III_sideinfo *si,int stereo, + int ms_stereo,long sfreq,int single) +{ + int ch, gr; + int powdiff = (single == SINGLE_MIX) ? 4 : 0; + + const int tabs[2][5] = { { 2,9,5,3,4 } , { 1,8,1,2,9 } }; + const int *tab = tabs[fr->lsf]; + + si->main_data_begin = getbits(fr, tab[1]); + + if(si->main_data_begin > fr->bitreservoir) + { + if(NOQUIET) error2("missing %d bytes in bit reservoir for frame %li", (int)(si->main_data_begin - fr->bitreservoir), (long)fr->num); + + /* overwrite main_data_begin for the really available bit reservoir */ + backbits(fr, tab[1]); + if(fr->lsf == 0) + { + fr->wordpointer[0] = (unsigned char) (fr->bitreservoir >> 1); + fr->wordpointer[1] = (unsigned char) ((fr->bitreservoir & 1) << 7); + } + else fr->wordpointer[0] = (unsigned char) fr->bitreservoir; + + /* zero "side-info" data for a silence-frame + without touching audio data used as bit reservoir for following frame */ + memset(fr->wordpointer+2, 0, fr->ssize-2); + + /* reread the new bit reservoir offset */ + si->main_data_begin = getbits(fr, tab[1]); + } + + /* Keep track of the available data bytes for the bit reservoir. + Think: Substract the 2 crc bytes in parser already? */ + fr->bitreservoir = fr->bitreservoir + fr->framesize - fr->ssize - (fr->error_protection ? 2 : 0); + /* Limit the reservoir to the max for MPEG 1.0 or 2.x . */ + if(fr->bitreservoir > (fr->lsf == 0 ? 511 : 255)) + fr->bitreservoir = (fr->lsf == 0 ? 511 : 255); + + if (stereo == 1) + si->private_bits = getbits_fast(fr, tab[2]); + else + si->private_bits = getbits_fast(fr, tab[3]); + + if(!fr->lsf) { + for (ch=0; chch[ch].gr[0].scfsi = -1; + si->ch[ch].gr[1].scfsi = getbits_fast(fr, 4); + } + } + + for (gr=0; grch[ch].gr[gr]); + + gr_info->part2_3_length = getbits(fr, 12); + gr_info->big_values = getbits(fr, 9); + if(gr_info->big_values > 288) { + error("big_values too large!"); + gr_info->big_values = 288; + } + gr_info->pow2gain = fr->gainpow2+256 - getbits_fast(fr, 8) + powdiff; + if(ms_stereo) + gr_info->pow2gain += 2; + gr_info->scalefac_compress = getbits(fr, tab[4]); + + if(get1bit(fr)) { /* window switch flag */ + int i; + gr_info->block_type = getbits_fast(fr, 2); + gr_info->mixed_block_flag = get1bit(fr); + gr_info->table_select[0] = getbits_fast(fr, 5); + gr_info->table_select[1] = getbits_fast(fr, 5); + /* + * table_select[2] not needed, because there is no region2, + * but to satisfy some verifications tools we set it either. + */ + gr_info->table_select[2] = 0; + for(i=0;i<3;i++) + gr_info->full_gain[i] = gr_info->pow2gain + (getbits_fast(fr, 3)<<3); + + if(gr_info->block_type == 0) { + error("Blocktype == 0 and window-switching == 1 not allowed."); + /* exit(1); */ + return 1; + } + + /* region_count/start parameters are implicit in this case. */ + if( (!fr->lsf || (gr_info->block_type == 2)) && !fr->mpeg25) + { + gr_info->region1start = 36>>1; + gr_info->region2start = 576>>1; + } + else { + if(fr->mpeg25) { + int r0c,r1c; + if((gr_info->block_type == 2) && (!gr_info->mixed_block_flag) ) + r0c = 5; + else + r0c = 7; + r1c = 20 - r0c; + gr_info->region1start = bandInfo[sfreq].longIdx[r0c+1] >> 1 ; + gr_info->region2start = bandInfo[sfreq].longIdx[r0c+1+r1c+1] >> 1; + } + else { + gr_info->region1start = 54>>1; + gr_info->region2start = 576>>1; + } + } + + } + else { + int i,r0c,r1c; + for (i=0; i<3; i++) + gr_info->table_select[i] = getbits_fast(fr, 5); + r0c = getbits_fast(fr, 4); + r1c = getbits_fast(fr, 3); + gr_info->region1start = bandInfo[sfreq].longIdx[r0c+1] >> 1 ; + gr_info->region2start = bandInfo[sfreq].longIdx[r0c+1+r1c+1] >> 1; + if(r0c + r1c + 2 > 22) + gr_info->region2start = 576>>1; + else + gr_info->region2start = bandInfo[sfreq].longIdx[r0c+1+r1c+1] >> 1; + gr_info->block_type = 0; + gr_info->mixed_block_flag = 0; + } + if(!fr->lsf) + gr_info->preflag = get1bit(fr); + gr_info->scalefac_scale = get1bit(fr); + gr_info->count1table_select = get1bit(fr); + } + } + return 0; +} + +/* + * read scalefactors + */ +static int III_get_scale_factors_1(mpg123_handle *fr, int *scf,struct gr_info_s *gr_info,int ch,int gr) +{ + const unsigned char slen[2][16] = { + {0, 0, 0, 0, 3, 1, 1, 1, 2, 2, 2, 3, 3, 3, 4, 4}, + {0, 1, 2, 3, 0, 1, 2, 3, 1, 2, 3, 1, 2, 3, 2, 3} + }; + int numbits; + int num0 = slen[0][gr_info->scalefac_compress]; + int num1 = slen[1][gr_info->scalefac_compress]; + + if (gr_info->block_type == 2) { + int i=18; + numbits = (num0 + num1) * 18; + + if (gr_info->mixed_block_flag) { + for (i=8;i;i--) + *scf++ = getbits_fast(fr, num0); + i = 9; + numbits -= num0; /* num0 * 17 + num1 * 18 */ + } + + for (;i;i--) + *scf++ = getbits_fast(fr, num0); + for (i = 18; i; i--) + *scf++ = getbits_fast(fr, num1); + *scf++ = 0; *scf++ = 0; *scf++ = 0; /* short[13][0..2] = 0 */ + } + else { + int i; + int scfsi = gr_info->scfsi; + + if(scfsi < 0) { /* scfsi < 0 => granule == 0 */ + for(i=11;i;i--) + *scf++ = getbits_fast(fr, num0); + for(i=10;i;i--) + *scf++ = getbits_fast(fr, num1); + numbits = (num0 + num1) * 10 + num0; + *scf++ = 0; + } + else { + numbits = 0; + if(!(scfsi & 0x8)) { + for (i=0;i<6;i++) + *scf++ = getbits_fast(fr, num0); + numbits += num0 * 6; + } + else { + scf += 6; + } + + if(!(scfsi & 0x4)) { + for (i=0;i<5;i++) + *scf++ = getbits_fast(fr, num0); + numbits += num0 * 5; + } + else { + scf += 5; + } + + if(!(scfsi & 0x2)) { + for(i=0;i<5;i++) + *scf++ = getbits_fast(fr, num1); + numbits += num1 * 5; + } + else { + scf += 5; + } + + if(!(scfsi & 0x1)) { + for (i=0;i<5;i++) + *scf++ = getbits_fast(fr, num1); + numbits += num1 * 5; + } + else { + scf += 5; + } + *scf++ = 0; /* no l[21] in original sources */ + } + } + return numbits; +} + +static int III_get_scale_factors_2(mpg123_handle *fr, int *scf,struct gr_info_s *gr_info,int i_stereo) +{ + const unsigned char *pnt; + int i,j,n=0,numbits=0; + unsigned int slen; + + const unsigned char stab[3][6][4] = { + { { 6, 5, 5,5 } , { 6, 5, 7,3 } , { 11,10,0,0} , + { 7, 7, 7,0 } , { 6, 6, 6,3 } , { 8, 8,5,0} } , + { { 9, 9, 9,9 } , { 9, 9,12,6 } , { 18,18,0,0} , + {12,12,12,0 } , {12, 9, 9,6 } , { 15,12,9,0} } , + { { 6, 9, 9,9 } , { 6, 9,12,6 } , { 15,18,0,0} , + { 6,15,12,0 } , { 6,12, 9,6 } , { 6,18,9,0} } }; + + if(i_stereo) /* i_stereo AND second channel -> do_layer3() checks this */ + slen = i_slen2[gr_info->scalefac_compress>>1]; + else + slen = n_slen2[gr_info->scalefac_compress]; + + gr_info->preflag = (slen>>15) & 0x1; + + n = 0; + if( gr_info->block_type == 2 ) { + n++; + if(gr_info->mixed_block_flag) + n++; + } + + pnt = stab[n][(slen>>12)&0x7]; + + for(i=0;i<4;i++) { + int num = slen & 0x7; + slen >>= 3; + if(num) { + for(j=0;j<(int)(pnt[i]);j++) + *scf++ = getbits_fast(fr, num); + numbits += pnt[i] * num; + } + else { + for(j=0;j<(int)(pnt[i]);j++) + *scf++ = 0; + } + } + + n = (n << 1) + 1; + for(i=0;iscalefac_scale; + real *xrpnt = (real *) xr; + int l[3],l3; + int part2remain = gr_info->part2_3_length - part2bits; + int *me; + + /* mhipp tree has this split up a bit... */ + int num=getbitoffset(fr); + long mask; + /* We must split this, because for num==0 the shift is undefined if you do it in one step. */ + mask = ((unsigned long) getbits(fr, num))<big_values; + int region1 = gr_info->region1start; + int region2 = gr_info->region2start; +if(region1 > region2) +{ + /* That's not optimal: it fixes a segfault with fuzzed data, but also apparently triggers where it shouldn't, see bug 1641196. + The benefit of not crashing / having this security risk is bigger than these few frames of a lame-3.70 file that aren't audible anyway + But still, I want to know if indeed this check or the old lame is at fault. */ + error("You got some really nasty file there... region1>region2!"); + return 1; +} + l3 = ((576>>1)-bv)>>1; +/* + * we may lose the 'odd' bit here !! + * check this later again + */ + if(bv <= region1) { + l[0] = bv; l[1] = 0; l[2] = 0; + } + else { + l[0] = region1; + if(bv <= region2) { + l[1] = bv - l[0]; l[2] = 0; + } + else { + l[1] = region2 - l[0]; l[2] = bv - region2; + } + } + } + + if(gr_info->block_type == 2) { + /* + * decoding with short or mixed mode BandIndex table + */ + int i,max[4]; + int step=0,lwin=3,cb=0; + register real v = 0.0; + register int *m,mc; + + if(gr_info->mixed_block_flag) { + max[3] = -1; + max[0] = max[1] = max[2] = 2; + m = map[sfreq][0]; + me = mapend[sfreq][0]; + } + else { + max[0] = max[1] = max[2] = max[3] = -1; + /* max[3] not really needed in this case */ + m = map[sfreq][1]; + me = mapend[sfreq][1]; + } + + mc = 0; + for(i=0;i<2;i++) { + int lp = l[i]; + struct newhuff *h = ht+gr_info->table_select[i]; + for(;lp;lp--,mc--) { + register int x,y; + if( (!mc) ) { + mc = *m++; + xrpnt = ((real *) xr) + (*m++); + lwin = *m++; + cb = *m++; + if(lwin == 3) { + v = gr_info->pow2gain[(*scf++) << shift]; + step = 1; + } + else { + v = gr_info->full_gain[lwin][(*scf++) << shift]; + step = 3; + } + } + { + register short *val = h->table; + REFRESH_MASK; + while((y=*val++)<0) { + if (mask < 0) + val -= y; + num--; + mask <<= 1; + } + x = y >> 4; + y &= 0xf; + } + if(x == 15 && h->linbits) { + max[lwin] = cb; + REFRESH_MASK; + x += ((unsigned long) mask) >> (BITSHIFT+8-h->linbits); + num -= h->linbits+1; + mask <<= h->linbits; + if(mask < 0) + *xrpnt = REAL_MUL(-ispow[x], v); + else + *xrpnt = REAL_MUL(ispow[x], v); + mask <<= 1; + } + else if(x) { + max[lwin] = cb; + if(mask < 0) + *xrpnt = REAL_MUL(-ispow[x], v); + else + *xrpnt = REAL_MUL(ispow[x], v); + num--; + mask <<= 1; + } + else + *xrpnt = DOUBLE_TO_REAL(0.0); + xrpnt += step; + if(y == 15 && h->linbits) { + max[lwin] = cb; + REFRESH_MASK; + y += ((unsigned long) mask) >> (BITSHIFT+8-h->linbits); + num -= h->linbits+1; + mask <<= h->linbits; + if(mask < 0) + *xrpnt = REAL_MUL(-ispow[y], v); + else + *xrpnt = REAL_MUL(ispow[y], v); + mask <<= 1; + } + else if(y) { + max[lwin] = cb; + if(mask < 0) + *xrpnt = REAL_MUL(-ispow[y], v); + else + *xrpnt = REAL_MUL(ispow[y], v); + num--; + mask <<= 1; + } + else + *xrpnt = DOUBLE_TO_REAL(0.0); + xrpnt += step; + } + } + + for(;l3 && (part2remain+num > 0);l3--) { + /* not mixing code and declarations to keep C89 happy */ + struct newhuff* h; + register short* val; + register short a; + /* This is only a humble hack to prevent a special segfault. */ + /* More insight into the real workings is still needed. */ + /* especially why there are (valid?) files that make xrpnt exceed the array with 4 bytes without segfaulting, more seems to be really bad, though. */ + #ifdef DEBUG + if(!(xrpnt < &xr[SBLIMIT][0])) + { + if(VERBOSE) debug2("attempted soft xrpnt overflow (%p !< %p) ?", (void*) xrpnt, (void*) &xr[SBLIMIT][0]); + } + #endif + if(!(xrpnt < &xr[SBLIMIT][0]+5)) + { + error2("attempted xrpnt overflow (%p !< %p)", (void*) xrpnt, (void*) &xr[SBLIMIT][0]); + return 2; + } + h = htc+gr_info->count1table_select; + val = h->table; + + REFRESH_MASK; + while((a=*val++)<0) { + if (mask < 0) + val -= a; + num--; + mask <<= 1; + } + if(part2remain+num <= 0) { + num -= part2remain+num; + break; + } + + for(i=0;i<4;i++) { + if(!(i & 1)) { + if(!mc) { + mc = *m++; + xrpnt = ((real *) xr) + (*m++); + lwin = *m++; + cb = *m++; + if(lwin == 3) { + v = gr_info->pow2gain[(*scf++) << shift]; + step = 1; + } + else { + v = gr_info->full_gain[lwin][(*scf++) << shift]; + step = 3; + } + } + mc--; + } + if( (a & (0x8>>i)) ) { + max[lwin] = cb; + if(part2remain+num <= 0) { + break; + } + if(mask < 0) + *xrpnt = -v; + else + *xrpnt = v; + num--; + mask <<= 1; + } + else + *xrpnt = DOUBLE_TO_REAL(0.0); + xrpnt += step; + } + } + + if(lwin < 3) { /* short band? */ + while(1) { + for(;mc > 0;mc--) { + *xrpnt = DOUBLE_TO_REAL(0.0); xrpnt += 3; /* short band -> step=3 */ + *xrpnt = DOUBLE_TO_REAL(0.0); xrpnt += 3; + } + if(m >= me) + break; + mc = *m++; + xrpnt = ((real *) xr) + *m++; + if(*m++ == 0) + break; /* optimize: field will be set to zero at the end of the function */ + m++; /* cb */ + } + } + + gr_info->maxband[0] = max[0]+1; + gr_info->maxband[1] = max[1]+1; + gr_info->maxband[2] = max[2]+1; + gr_info->maxbandl = max[3]+1; + + { + int rmax = max[0] > max[1] ? max[0] : max[1]; + rmax = (rmax > max[2] ? rmax : max[2]) + 1; + gr_info->maxb = rmax ? fr->shortLimit[sfreq][rmax] : fr->longLimit[sfreq][max[3]+1]; + } + + } + else { + /* + * decoding with 'long' BandIndex table (block_type != 2) + */ + const int *pretab = gr_info->preflag ? pretab1 : pretab2; + int i,max = -1; + int cb = 0; + int *m = map[sfreq][2]; + register real v = 0.0; + int mc = 0; + + /* + * long hash table values + */ + for(i=0;i<3;i++) { + int lp = l[i]; + struct newhuff *h = ht+gr_info->table_select[i]; + + for(;lp;lp--,mc--) { + int x,y; + if(!mc) { + mc = *m++; + cb = *m++; + if(cb == 21) + v = 0.0; + else + v = gr_info->pow2gain[((*scf++) + (*pretab++)) << shift]; + + } + { + register short *val = h->table; + REFRESH_MASK; + while((y=*val++)<0) { + if (mask < 0) + val -= y; + num--; + mask <<= 1; + } + x = y >> 4; + y &= 0xf; + } + + if (x == 15 && h->linbits) { + max = cb; + REFRESH_MASK; + x += ((unsigned long) mask) >> (BITSHIFT+8-h->linbits); + num -= h->linbits+1; + mask <<= h->linbits; + if(mask < 0) + *xrpnt++ = REAL_MUL(-ispow[x], v); + else + *xrpnt++ = REAL_MUL(ispow[x], v); + mask <<= 1; + } + else if(x) { + max = cb; + if(mask < 0) + *xrpnt++ = REAL_MUL(-ispow[x], v); + else + *xrpnt++ = REAL_MUL(ispow[x], v); + num--; + mask <<= 1; + } + else + *xrpnt++ = DOUBLE_TO_REAL(0.0); + + if (y == 15 && h->linbits) { + max = cb; + REFRESH_MASK; + y += ((unsigned long) mask) >> (BITSHIFT+8-h->linbits); + num -= h->linbits+1; + mask <<= h->linbits; + if(mask < 0) + *xrpnt++ = REAL_MUL(-ispow[y], v); + else + *xrpnt++ = REAL_MUL(ispow[y], v); + mask <<= 1; + } + else if(y) { + max = cb; + if(mask < 0) + *xrpnt++ = REAL_MUL(-ispow[y], v); + else + *xrpnt++ = REAL_MUL(ispow[y], v); + num--; + mask <<= 1; + } + else + *xrpnt++ = DOUBLE_TO_REAL(0.0); + } + } + + /* + * short (count1table) values + */ + for(;l3 && (part2remain+num > 0);l3--) { + struct newhuff *h = htc+gr_info->count1table_select; + register short *val = h->table,a; + + REFRESH_MASK; + while((a=*val++)<0) { + if (mask < 0) + val -= a; + num--; + mask <<= 1; + } + if(part2remain+num <= 0) { + num -= part2remain+num; + break; + } + + for(i=0;i<4;i++) { + if(!(i & 1)) { + if(!mc) { + mc = *m++; + cb = *m++; + if(cb == 21) + v = 0.0; + else + v = gr_info->pow2gain[((*scf++) + (*pretab++)) << shift]; + } + mc--; + } + if ( (a & (0x8>>i)) ) { + max = cb; + if(part2remain+num <= 0) { + break; + } + if(mask < 0) + *xrpnt++ = -v; + else + *xrpnt++ = v; + num--; + mask <<= 1; + } + else + *xrpnt++ = DOUBLE_TO_REAL(0.0); + } + } + + gr_info->maxbandl = max+1; + gr_info->maxb = fr->longLimit[sfreq][gr_info->maxbandl]; + } + + part2remain += num; + backbits(fr, num); + num = 0; + + while(xrpnt < &xr[SBLIMIT][0]) + *xrpnt++ = DOUBLE_TO_REAL(0.0); + + while( part2remain > 16 ) { + skipbits(fr, 16); /* Dismiss stuffing Bits */ + part2remain -= 16; + } + if(part2remain > 0) + skipbits(fr, part2remain); + else if(part2remain < 0) { + debug1("Can't rewind stream by %d bits!",-part2remain); + return 1; /* -> error */ + } + return 0; +} + +/* + * III_stereo: calculate real channel values for Joint-I-Stereo-mode + */ +static void III_i_stereo(real xr_buf[2][SBLIMIT][SSLIMIT],int *scalefac, + struct gr_info_s *gr_info,int sfreq,int ms_stereo,int lsf) +{ + real (*xr)[SBLIMIT*SSLIMIT] = (real (*)[SBLIMIT*SSLIMIT] ) xr_buf; + const struct bandInfoStruct *bi = &bandInfo[sfreq]; + + const real *tab1,*tab2; + +#if 1 + int tab; +/* TODO: optimize as static */ + const real *tabs[3][2][2] = { + { { tan1_1,tan2_1 } , { tan1_2,tan2_2 } }, + { { pow1_1[0],pow2_1[0] } , { pow1_2[0],pow2_2[0] } } , + { { pow1_1[1],pow2_1[1] } , { pow1_2[1],pow2_2[1] } } + }; + + tab = lsf + (gr_info->scalefac_compress & lsf); + tab1 = tabs[tab][ms_stereo][0]; + tab2 = tabs[tab][ms_stereo][1]; +#else + if(lsf) { + int p = gr_info->scalefac_compress & 0x1; + if(ms_stereo) { + tab1 = pow1_2[p]; tab2 = pow2_2[p]; + } + else { + tab1 = pow1_1[p]; tab2 = pow2_1[p]; + } + } + else { + if(ms_stereo) { + tab1 = tan1_2; tab2 = tan2_2; + } + else { + tab1 = tan1_1; tab2 = tan2_1; + } + } +#endif + + if (gr_info->block_type == 2) { + int lwin,do_l = 0; + if( gr_info->mixed_block_flag ) + do_l = 1; + + for (lwin=0;lwin<3;lwin++) { /* process each window */ + /* get first band with zero values */ + int is_p,sb,idx,sfb = gr_info->maxband[lwin]; /* sfb is minimal 3 for mixed mode */ + if(sfb > 3) + do_l = 0; + + for(;sfb<12;sfb++) { + is_p = scalefac[sfb*3+lwin-gr_info->mixed_block_flag]; /* scale: 0-15 */ + if(is_p != 7) { + real t1,t2; + sb = bi->shortDiff[sfb]; + idx = bi->shortIdx[sfb] + lwin; + t1 = tab1[is_p]; t2 = tab2[is_p]; + for (; sb > 0; sb--,idx+=3) { + real v = xr[0][idx]; + xr[0][idx] = REAL_MUL(v, t1); + xr[1][idx] = REAL_MUL(v, t2); + } + } + } + +#if 1 +/* in the original: copy 10 to 11 , here: copy 11 to 12 +maybe still wrong??? (copy 12 to 13?) */ + is_p = scalefac[11*3+lwin-gr_info->mixed_block_flag]; /* scale: 0-15 */ + sb = bi->shortDiff[12]; + idx = bi->shortIdx[12] + lwin; +#else + is_p = scalefac[10*3+lwin-gr_info->mixed_block_flag]; /* scale: 0-15 */ + sb = bi->shortDiff[11]; + idx = bi->shortIdx[11] + lwin; +#endif + if(is_p != 7) { + real t1,t2; + t1 = tab1[is_p]; t2 = tab2[is_p]; + for ( ; sb > 0; sb--,idx+=3 ) { + real v = xr[0][idx]; + xr[0][idx] = REAL_MUL(v, t1); + xr[1][idx] = REAL_MUL(v, t2); + } + } + } /* end for(lwin; .. ; . ) */ + +/* also check l-part, if ALL bands in the three windows are 'empty' + * and mode = mixed_mode + */ + if (do_l) { + int sfb = gr_info->maxbandl; + int idx; + if(sfb > 21) return; /* similarity fix related to CVE-2006-1655 */ + idx = bi->longIdx[sfb]; + for ( ; sfb<8; sfb++ ) { + int sb = bi->longDiff[sfb]; + int is_p = scalefac[sfb]; /* scale: 0-15 */ + if(is_p != 7) { + real t1,t2; + t1 = tab1[is_p]; t2 = tab2[is_p]; + for ( ; sb > 0; sb--,idx++) { + real v = xr[0][idx]; + xr[0][idx] = REAL_MUL(v, t1); + xr[1][idx] = REAL_MUL(v, t2); + } + } + else + idx += sb; + } + } + } + else { /* ((gr_info->block_type != 2)) */ + int sfb = gr_info->maxbandl; + int is_p,idx; + if(sfb > 21) return; /* tightened fix for CVE-2006-1655 */ + idx = bi->longIdx[sfb]; + for ( ; sfb<21; sfb++) { + int sb = bi->longDiff[sfb]; + is_p = scalefac[sfb]; /* scale: 0-15 */ + if(is_p != 7) { + real t1,t2; + t1 = tab1[is_p]; t2 = tab2[is_p]; + for ( ; sb > 0; sb--,idx++) { + real v = xr[0][idx]; + xr[0][idx] = REAL_MUL(v, t1); + xr[1][idx] = REAL_MUL(v, t2); + } + } + else + idx += sb; + } + + is_p = scalefac[20]; + if(is_p != 7) { /* copy l-band 20 to l-band 21 */ + int sb; + real t1 = tab1[is_p],t2 = tab2[is_p]; + + for ( sb = bi->longDiff[21]; sb > 0; sb--,idx++ ) { + real v = xr[0][idx]; + xr[0][idx] = REAL_MUL(v, t1); + xr[1][idx] = REAL_MUL(v, t2); + } + } + } /* ... */ +} + +static void III_antialias(real xr[SBLIMIT][SSLIMIT],struct gr_info_s *gr_info) { + int sblim; + + if(gr_info->block_type == 2) { + if(!gr_info->mixed_block_flag) + return; + sblim = 1; + } + else { + sblim = gr_info->maxb-1; + } + + /* 31 alias-reduction operations between each pair of sub-bands */ + /* with 8 butterflies between each pair */ + + { + int sb; + real *xr1=(real *) xr[1]; + + for(sb=sblim;sb;sb--,xr1+=10) { + int ss; + real *cs=aa_cs,*ca=aa_ca; + real *xr2 = xr1; + + for(ss=7;ss>=0;ss--) + { /* upper and lower butterfly inputs */ + register real bu = *--xr2,bd = *xr1; + *xr2 = REAL_MUL(bu, *cs) - REAL_MUL(bd, *ca); + *xr1++ = REAL_MUL(bd, *cs++) + REAL_MUL(bu, *ca++); + } + } + } +} + +/* +// This is an optimized DCT from Jeff Tsay's maplay 1.2+ package. +// Saved one multiplication by doing the 'twiddle factor' stuff +// together with the window mul. (MH) +// +// This uses Byeong Gi Lee's Fast Cosine Transform algorithm, but the +// 9 point IDCT needs to be reduced further. Unfortunately, I don't +// know how to do that, because 9 is not an even number. - Jeff. +// +////////////////////////////////////////////////////////////////// +// +// 9 Point Inverse Discrete Cosine Transform +// +// This piece of code is Copyright 1997 Mikko Tommila and is freely usable +// by anybody. The algorithm itself is of course in the public domain. +// +// Again derived heuristically from the 9-point WFTA. +// +// The algorithm is optimized (?) for speed, not for small rounding errors or +// good readability. +// +// 36 additions, 11 multiplications +// +// Again this is very likely sub-optimal. +// +// The code is optimized to use a minimum number of temporary variables, +// so it should compile quite well even on 8-register Intel x86 processors. +// This makes the code quite obfuscated and very difficult to understand. +// +// References: +// [1] S. Winograd: "On Computing the Discrete Fourier Transform", +// Mathematics of Computation, Volume 32, Number 141, January 1978, +// Pages 175-199 +*/ + +/*------------------------------------------------------------------*/ +/* */ +/* Function: Calculation of the inverse MDCT */ +/* */ +/*------------------------------------------------------------------*/ +/* used to be static without 3dnow - does that really matter? */ +void dct36(real *inbuf,real *o1,real *o2,real *wintab,real *tsbuf) +{ +#ifdef NEW_DCT9 + real tmp[18]; +#endif + + { + register real *in = inbuf; + + in[17]+=in[16]; in[16]+=in[15]; in[15]+=in[14]; + in[14]+=in[13]; in[13]+=in[12]; in[12]+=in[11]; + in[11]+=in[10]; in[10]+=in[9]; in[9] +=in[8]; + in[8] +=in[7]; in[7] +=in[6]; in[6] +=in[5]; + in[5] +=in[4]; in[4] +=in[3]; in[3] +=in[2]; + in[2] +=in[1]; in[1] +=in[0]; + + in[17]+=in[15]; in[15]+=in[13]; in[13]+=in[11]; in[11]+=in[9]; + in[9] +=in[7]; in[7] +=in[5]; in[5] +=in[3]; in[3] +=in[1]; + + +#ifdef NEW_DCT9 +#if 1 + { + real t3; + { + real t0, t1, t2; + + t0 = REAL_MUL(COS6_2, (in[8] + in[16] - in[4])); + t1 = REAL_MUL(COS6_2, in[12]); + + t3 = in[0]; + t2 = t3 - t1 - t1; + tmp[1] = tmp[7] = t2 - t0; + tmp[4] = t2 + t0 + t0; + t3 += t1; + + t2 = REAL_MUL(COS6_1, (in[10] + in[14] - in[2])); + tmp[1] -= t2; + tmp[7] += t2; + } + { + real t0, t1, t2; + + t0 = REAL_MUL(cos9[0], (in[4] + in[8] )); + t1 = REAL_MUL(cos9[1], (in[8] - in[16])); + t2 = REAL_MUL(cos9[2], (in[4] + in[16])); + + tmp[2] = tmp[6] = t3 - t0 - t2; + tmp[0] = tmp[8] = t3 + t0 + t1; + tmp[3] = tmp[5] = t3 - t1 + t2; + } + } + { + real t1, t2, t3; + + t1 = REAL_MUL(cos18[0], (in[2] + in[10])); + t2 = REAL_MUL(cos18[1], (in[10] - in[14])); + t3 = REAL_MUL(COS6_1, in[6]); + + { + real t0 = t1 + t2 + t3; + tmp[0] += t0; + tmp[8] -= t0; + } + + t2 -= t3; + t1 -= t3; + + t3 = REAL_MUL(cos18[2], (in[2] + in[14])); + + t1 += t3; + tmp[3] += t1; + tmp[5] -= t1; + + t2 -= t3; + tmp[2] += t2; + tmp[6] -= t2; + } + +#else + { + real t0, t1, t2, t3, t4, t5, t6, t7; + + t1 = REAL_MUL(COS6_2, in[12]); + t2 = REAL_MUL(COS6_2, (in[8] + in[16] - in[4])); + + t3 = in[0] + t1; + t4 = in[0] - t1 - t1; + t5 = t4 - t2; + tmp[4] = t4 + t2 + t2; + + t0 = REAL_MUL(cos9[0], (in[4] + in[8])); + t1 = REAL_MUL(cos9[1], (in[8] - in[16])); + + t2 = REAL_MUL(cos9[2], (in[4] + in[16])); + + t6 = t3 - t0 - t2; + t0 += t3 + t1; + t3 += t2 - t1; + + t2 = REAL_MUL(cos18[0], (in[2] + in[10])); + t4 = REAL_MUL(cos18[1], (in[10] - in[14])); + t7 = REAL_MUL(COS6_1, in[6]); + + t1 = t2 + t4 + t7; + tmp[0] = t0 + t1; + tmp[8] = t0 - t1; + t1 = REAL_MUL(cos18[2], (in[2] + in[14])); + t2 += t1 - t7; + + tmp[3] = t3 + t2; + t0 = REAL_MUL(COS6_1, (in[10] + in[14] - in[2])); + tmp[5] = t3 - t2; + + t4 -= t1 + t7; + + tmp[1] = t5 - t0; + tmp[7] = t5 + t0; + tmp[2] = t6 + t4; + tmp[6] = t6 - t4; + } +#endif + + { + real t0, t1, t2, t3, t4, t5, t6, t7; + + t1 = REAL_MUL(COS6_2, in[13]); + t2 = REAL_MUL(COS6_2, (in[9] + in[17] - in[5])); + + t3 = in[1] + t1; + t4 = in[1] - t1 - t1; + t5 = t4 - t2; + + t0 = REAL_MUL(cos9[0], (in[5] + in[9])); + t1 = REAL_MUL(cos9[1], (in[9] - in[17])); + + tmp[13] = REAL_MUL((t4 + t2 + t2), tfcos36[17-13]); + t2 = REAL_MUL(cos9[2], (in[5] + in[17])); + + t6 = t3 - t0 - t2; + t0 += t3 + t1; + t3 += t2 - t1; + + t2 = REAL_MUL(cos18[0], (in[3] + in[11])); + t4 = REAL_MUL(cos18[1], (in[11] - in[15])); + t7 = REAL_MUL(COS6_1, in[7]); + + t1 = t2 + t4 + t7; + tmp[17] = REAL_MUL((t0 + t1), tfcos36[17-17]); + tmp[9] = REAL_MUL((t0 - t1), tfcos36[17-9]); + t1 = REAL_MUL(cos18[2], (in[3] + in[15])); + t2 += t1 - t7; + + tmp[14] = REAL_MUL((t3 + t2), tfcos36[17-14]); + t0 = REAL_MUL(COS6_1, (in[11] + in[15] - in[3])); + tmp[12] = REAL_MUL((t3 - t2), tfcos36[17-12]); + + t4 -= t1 + t7; + + tmp[16] = REAL_MUL((t5 - t0), tfcos36[17-16]); + tmp[10] = REAL_MUL((t5 + t0), tfcos36[17-10]); + tmp[15] = REAL_MUL((t6 + t4), tfcos36[17-15]); + tmp[11] = REAL_MUL((t6 - t4), tfcos36[17-11]); + } + +#define MACRO(v) { \ + real tmpval; \ + tmpval = tmp[(v)] + tmp[17-(v)]; \ + out2[9+(v)] = REAL_MUL(tmpval, w[27+(v)]); \ + out2[8-(v)] = REAL_MUL(tmpval, w[26-(v)]); \ + tmpval = tmp[(v)] - tmp[17-(v)]; \ + ts[SBLIMIT*(8-(v))] = out1[8-(v)] + REAL_MUL(tmpval, w[8-(v)]); \ + ts[SBLIMIT*(9+(v))] = out1[9+(v)] + REAL_MUL(tmpval, w[9+(v)]); } + +{ + register real *out2 = o2; + register real *w = wintab; + register real *out1 = o1; + register real *ts = tsbuf; + + MACRO(0); + MACRO(1); + MACRO(2); + MACRO(3); + MACRO(4); + MACRO(5); + MACRO(6); + MACRO(7); + MACRO(8); +} + +#else + + { + +#define MACRO0(v) { \ + real tmp; \ + out2[9+(v)] = REAL_MUL((tmp = sum0 + sum1), w[27+(v)]); \ + out2[8-(v)] = REAL_MUL(tmp, w[26-(v)]); } \ + sum0 -= sum1; \ + ts[SBLIMIT*(8-(v))] = out1[8-(v)] + REAL_MUL(sum0, w[8-(v)]); \ + ts[SBLIMIT*(9+(v))] = out1[9+(v)] + REAL_MUL(sum0, w[9+(v)]); +#define MACRO1(v) { \ + real sum0,sum1; \ + sum0 = tmp1a + tmp2a; \ + sum1 = REAL_MUL((tmp1b + tmp2b), tfcos36[(v)]); \ + MACRO0(v); } +#define MACRO2(v) { \ + real sum0,sum1; \ + sum0 = tmp2a - tmp1a; \ + sum1 = REAL_MUL((tmp2b - tmp1b), tfcos36[(v)]); \ + MACRO0(v); } + + register const real *c = COS9; + register real *out2 = o2; + register real *w = wintab; + register real *out1 = o1; + register real *ts = tsbuf; + + real ta33,ta66,tb33,tb66; + + ta33 = REAL_MUL(in[2*3+0], c[3]); + ta66 = REAL_MUL(in[2*6+0], c[6]); + tb33 = REAL_MUL(in[2*3+1], c[3]); + tb66 = REAL_MUL(in[2*6+1], c[6]); + + { + real tmp1a,tmp2a,tmp1b,tmp2b; + tmp1a = REAL_MUL(in[2*1+0], c[1]) + ta33 + REAL_MUL(in[2*5+0], c[5]) + REAL_MUL(in[2*7+0], c[7]); + tmp1b = REAL_MUL(in[2*1+1], c[1]) + tb33 + REAL_MUL(in[2*5+1], c[5]) + REAL_MUL(in[2*7+1], c[7]); + tmp2a = REAL_MUL(in[2*2+0], c[2]) + REAL_MUL(in[2*4+0], c[4]) + ta66 + REAL_MUL(in[2*8+0], c[8]); + tmp2b = REAL_MUL(in[2*2+1], c[2]) + REAL_MUL(in[2*4+1], c[4]) + tb66 + REAL_MUL(in[2*8+1], c[8]); + + MACRO1(0); + MACRO2(8); + } + + { + real tmp1a,tmp2a,tmp1b,tmp2b; + tmp1a = REAL_MUL(( in[2*1+0] - in[2*5+0] - in[2*7+0] ), c[3]); + tmp1b = REAL_MUL(( in[2*1+1] - in[2*5+1] - in[2*7+1] ), c[3]); + tmp2a = REAL_MUL(( in[2*2+0] - in[2*4+0] - in[2*8+0] ), c[6]) - in[2*6+0] + in[2*0+0]; + tmp2b = REAL_MUL(( in[2*2+1] - in[2*4+1] - in[2*8+1] ), c[6]) - in[2*6+1] + in[2*0+1]; + + MACRO1(1); + MACRO2(7); + } + + { + real tmp1a,tmp2a,tmp1b,tmp2b; + tmp1a = REAL_MUL(in[2*1+0], c[5]) - ta33 - REAL_MUL(in[2*5+0], c[7]) + REAL_MUL(in[2*7+0], c[1]); + tmp1b = REAL_MUL(in[2*1+1], c[5]) - tb33 - REAL_MUL(in[2*5+1], c[7]) + REAL_MUL(in[2*7+1], c[1]); + tmp2a = - REAL_MUL(in[2*2+0], c[8]) - REAL_MUL(in[2*4+0], c[2]) + ta66 + REAL_MUL(in[2*8+0], c[4]); + tmp2b = - REAL_MUL(in[2*2+1], c[8]) - REAL_MUL(in[2*4+1], c[2]) + tb66 + REAL_MUL(in[2*8+1], c[4]); + + MACRO1(2); + MACRO2(6); + } + + { + real tmp1a,tmp2a,tmp1b,tmp2b; + tmp1a = REAL_MUL(in[2*1+0], c[7]) - ta33 + REAL_MUL(in[2*5+0], c[1]) - REAL_MUL(in[2*7+0], c[5]); + tmp1b = REAL_MUL(in[2*1+1], c[7]) - tb33 + REAL_MUL(in[2*5+1], c[1]) - REAL_MUL(in[2*7+1], c[5]); + tmp2a = - REAL_MUL(in[2*2+0], c[4]) + REAL_MUL(in[2*4+0], c[8]) + ta66 - REAL_MUL(in[2*8+0], c[2]); + tmp2b = - REAL_MUL(in[2*2+1], c[4]) + REAL_MUL(in[2*4+1], c[8]) + tb66 - REAL_MUL(in[2*8+1], c[2]); + + MACRO1(3); + MACRO2(5); + } + + { + real sum0,sum1; + sum0 = in[2*0+0] - in[2*2+0] + in[2*4+0] - in[2*6+0] + in[2*8+0]; + sum1 = REAL_MUL((in[2*0+1] - in[2*2+1] + in[2*4+1] - in[2*6+1] + in[2*8+1] ), tfcos36[4]); + MACRO0(4); + } + } +#endif + + } +} + +/* + * new DCT12 + */ +static void dct12(real *in,real *rawout1,real *rawout2,register real *wi,register real *ts) +{ +#define DCT12_PART1 \ + in5 = in[5*3]; \ + in5 += (in4 = in[4*3]); \ + in4 += (in3 = in[3*3]); \ + in3 += (in2 = in[2*3]); \ + in2 += (in1 = in[1*3]); \ + in1 += (in0 = in[0*3]); \ + \ + in5 += in3; in3 += in1; \ + \ + in2 = REAL_MUL(in2, COS6_1); \ + in3 = REAL_MUL(in3, COS6_1); \ + +#define DCT12_PART2 \ + in0 += REAL_MUL(in4, COS6_2); \ + \ + in4 = in0 + in2; \ + in0 -= in2; \ + \ + in1 += REAL_MUL(in5, COS6_2); \ + \ + in5 = REAL_MUL((in1 + in3), tfcos12[0]); \ + in1 = REAL_MUL((in1 - in3), tfcos12[2]); \ + \ + in3 = in4 + in5; \ + in4 -= in5; \ + \ + in2 = in0 + in1; \ + in0 -= in1; + + + { + real in0,in1,in2,in3,in4,in5; + register real *out1 = rawout1; + ts[SBLIMIT*0] = out1[0]; ts[SBLIMIT*1] = out1[1]; ts[SBLIMIT*2] = out1[2]; + ts[SBLIMIT*3] = out1[3]; ts[SBLIMIT*4] = out1[4]; ts[SBLIMIT*5] = out1[5]; + + DCT12_PART1 + + { + real tmp0,tmp1 = (in0 - in4); + { + real tmp2 = REAL_MUL((in1 - in5), tfcos12[1]); + tmp0 = tmp1 + tmp2; + tmp1 -= tmp2; + } + ts[(17-1)*SBLIMIT] = out1[17-1] + REAL_MUL(tmp0, wi[11-1]); + ts[(12+1)*SBLIMIT] = out1[12+1] + REAL_MUL(tmp0, wi[6+1]); + ts[(6 +1)*SBLIMIT] = out1[6 +1] + REAL_MUL(tmp1, wi[1]); + ts[(11-1)*SBLIMIT] = out1[11-1] + REAL_MUL(tmp1, wi[5-1]); + } + + DCT12_PART2 + + ts[(17-0)*SBLIMIT] = out1[17-0] + REAL_MUL(in2, wi[11-0]); + ts[(12+0)*SBLIMIT] = out1[12+0] + REAL_MUL(in2, wi[6+0]); + ts[(12+2)*SBLIMIT] = out1[12+2] + REAL_MUL(in3, wi[6+2]); + ts[(17-2)*SBLIMIT] = out1[17-2] + REAL_MUL(in3, wi[11-2]); + + ts[(6 +0)*SBLIMIT] = out1[6+0] + REAL_MUL(in0, wi[0]); + ts[(11-0)*SBLIMIT] = out1[11-0] + REAL_MUL(in0, wi[5-0]); + ts[(6 +2)*SBLIMIT] = out1[6+2] + REAL_MUL(in4, wi[2]); + ts[(11-2)*SBLIMIT] = out1[11-2] + REAL_MUL(in4, wi[5-2]); + } + + in++; + + { + real in0,in1,in2,in3,in4,in5; + register real *out2 = rawout2; + + DCT12_PART1 + + { + real tmp0,tmp1 = (in0 - in4); + { + real tmp2 = REAL_MUL((in1 - in5), tfcos12[1]); + tmp0 = tmp1 + tmp2; + tmp1 -= tmp2; + } + out2[5-1] = REAL_MUL(tmp0, wi[11-1]); + out2[0+1] = REAL_MUL(tmp0, wi[6+1]); + ts[(12+1)*SBLIMIT] += REAL_MUL(tmp1, wi[1]); + ts[(17-1)*SBLIMIT] += REAL_MUL(tmp1, wi[5-1]); + } + + DCT12_PART2 + + out2[5-0] = REAL_MUL(in2, wi[11-0]); + out2[0+0] = REAL_MUL(in2, wi[6+0]); + out2[0+2] = REAL_MUL(in3, wi[6+2]); + out2[5-2] = REAL_MUL(in3, wi[11-2]); + + ts[(12+0)*SBLIMIT] += REAL_MUL(in0, wi[0]); + ts[(17-0)*SBLIMIT] += REAL_MUL(in0, wi[5-0]); + ts[(12+2)*SBLIMIT] += REAL_MUL(in4, wi[2]); + ts[(17-2)*SBLIMIT] += REAL_MUL(in4, wi[5-2]); + } + + in++; + + { + real in0,in1,in2,in3,in4,in5; + register real *out2 = rawout2; + out2[12]=out2[13]=out2[14]=out2[15]=out2[16]=out2[17]=0.0; + + DCT12_PART1 + + { + real tmp0,tmp1 = (in0 - in4); + { + real tmp2 = REAL_MUL((in1 - in5), tfcos12[1]); + tmp0 = tmp1 + tmp2; + tmp1 -= tmp2; + } + out2[11-1] = REAL_MUL(tmp0, wi[11-1]); + out2[6 +1] = REAL_MUL(tmp0, wi[6+1]); + out2[0+1] += REAL_MUL(tmp1, wi[1]); + out2[5-1] += REAL_MUL(tmp1, wi[5-1]); + } + + DCT12_PART2 + + out2[11-0] = REAL_MUL(in2, wi[11-0]); + out2[6 +0] = REAL_MUL(in2, wi[6+0]); + out2[6 +2] = REAL_MUL(in3, wi[6+2]); + out2[11-2] = REAL_MUL(in3, wi[11-2]); + + out2[0+0] += REAL_MUL(in0, wi[0]); + out2[5-0] += REAL_MUL(in0, wi[5-0]); + out2[0+2] += REAL_MUL(in4, wi[2]); + out2[5-2] += REAL_MUL(in4, wi[5-2]); + } +} + +/* + * III_hybrid + */ +static void III_hybrid(real fsIn[SBLIMIT][SSLIMIT], real tsOut[SSLIMIT][SBLIMIT], int ch,struct gr_info_s *gr_info, mpg123_handle *fr) +{ + real (*block)[2][SBLIMIT*SSLIMIT] = fr->hybrid_block; + int *blc = fr->hybrid_blc; + + real *tspnt = (real *) tsOut; + real *rawout1,*rawout2; + int bt,sb = 0; + + { + int b = blc[ch]; + rawout1=block[b][ch]; + b=-b+1; + rawout2=block[b][ch]; + blc[ch] = b; + } + + if(gr_info->mixed_block_flag) { + sb = 2; + opt_dct36(fr)(fsIn[0],rawout1,rawout2,win[0],tspnt); + opt_dct36(fr)(fsIn[1],rawout1+18,rawout2+18,win1[0],tspnt+1); + rawout1 += 36; rawout2 += 36; tspnt += 2; + } + + bt = gr_info->block_type; + if(bt == 2) { + for (; sbmaxb; sb+=2,tspnt+=2,rawout1+=36,rawout2+=36) { + dct12(fsIn[sb] ,rawout1 ,rawout2 ,win[2] ,tspnt); + dct12(fsIn[sb+1],rawout1+18,rawout2+18,win1[2],tspnt+1); + } + } + else { + for (; sbmaxb; sb+=2,tspnt+=2,rawout1+=36,rawout2+=36) { + opt_dct36(fr)(fsIn[sb],rawout1,rawout2,win[bt],tspnt); + opt_dct36(fr)(fsIn[sb+1],rawout1+18,rawout2+18,win1[bt],tspnt+1); + } + } + + for(;sbstereo; + int single = fr->single; + int ms_stereo,i_stereo; + int sfreq = fr->sampling_frequency; + int stereo1,granules; + + if(stereo == 1) { /* stream is mono */ + stereo1 = 1; + single = SINGLE_LEFT; + } + else if(single != SINGLE_STEREO) /* stream is stereo, but force to mono */ + stereo1 = 1; + else + stereo1 = 2; + + if(fr->mode == MPG_MD_JOINT_STEREO) { + ms_stereo = (fr->mode_ext & 0x2)>>1; + i_stereo = fr->mode_ext & 0x1; + } + else + ms_stereo = i_stereo = 0; + + if(fr->lsf) { + granules = 1; + } + else { + granules = 2; + } + /* quick hack to keep the music playing */ + /* after having seen this nasty test file... */ + if(III_get_side_info(fr, &sideinfo,stereo,ms_stereo,sfreq,single)) + { + error("bad frame - unable to get valid sideinfo"); + return clip; + } + + set_pointer(fr,sideinfo.main_data_begin); + + for (gr=0;grlsf) + part2bits = III_get_scale_factors_2(fr, scalefacs[0],gr_info,0); + else + part2bits = III_get_scale_factors_1(fr, scalefacs[0],gr_info,0,gr); + + if(III_dequantize_sample(fr, hybridIn[0], scalefacs[0],gr_info,sfreq,part2bits)) + return clip; + } + + if(stereo == 2) { + struct gr_info_s *gr_info = &(sideinfo.ch[1].gr[gr]); + long part2bits; + if(fr->lsf) + part2bits = III_get_scale_factors_2(fr, scalefacs[1],gr_info,i_stereo); + else + part2bits = III_get_scale_factors_1(fr, scalefacs[1],gr_info,1,gr); + + if(III_dequantize_sample(fr, hybridIn[1],scalefacs[1],gr_info,sfreq,part2bits)) + return clip; + + if(ms_stereo) { + int i; + int maxb = sideinfo.ch[0].gr[gr].maxb; + if(sideinfo.ch[1].gr[gr].maxb > maxb) + maxb = sideinfo.ch[1].gr[gr].maxb; + for(i=0;ilsf); + + if(ms_stereo || i_stereo || (single == SINGLE_MIX) ) { + if(gr_info->maxb > sideinfo.ch[0].gr[gr].maxb) + sideinfo.ch[0].gr[gr].maxb = gr_info->maxb; + else + gr_info->maxb = sideinfo.ch[0].gr[gr].maxb; + } + + switch(single) { + case SINGLE_MIX: + { + register int i; + register real *in0 = (real *) hybridIn[0],*in1 = (real *) hybridIn[1]; + for(i=0;imaxb;i++,in0++) + *in0 = (*in0 + *in1++); /* *0.5 done by pow-scale */ + } + break; + case SINGLE_RIGHT: + { + register int i; + register real *in0 = (real *) hybridIn[0],*in1 = (real *) hybridIn[1]; + for(i=0;imaxb;i++) + *in0++ = *in1++; + } + break; + } + } + + for(ch=0;chsynth != opt_synth_1to1(fr) || single != SINGLE_STEREO) { +#endif + for(ss=0;sssynth_mono)(hybridOut[0][ss], fr); + } + else + { + clip += (fr->synth)(hybridOut[0][ss], 0, fr, 0); + clip += (fr->synth)(hybridOut[1][ss], 1, fr, 1); + } + + } +#ifdef OPT_I486 + } else { + /* Only stereo, 16 bits benefit from the 486 optimization. */ + ss=0; + while (ss < SSLIMIT) { + int n; + n=(fr->buffer.size - fr->buffer.fill) / (2*2*32); + if (n > (SSLIMIT-ss)) n=SSLIMIT-ss; + + synth_1to1_486(hybridOut[0][ss], 0, fr, n); + synth_1to1_486(hybridOut[1][ss], 1, fr, n); + ss+=n; + fr->buffer.fill+=(2*2*32)*n; + } + } +#endif + } + + return clip; +} diff -r f2985e08589c -r 7e08477b0fc1 decoders/libmpg123/libmpg123.c --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/decoders/libmpg123/libmpg123.c Fri Jan 30 02:44:47 2009 -0500 @@ -0,0 +1,1309 @@ +/* + libmpg123: MPEG Audio Decoder library + + copyright 1995-2008 by the mpg123 project - free software under the terms of the LGPL 2.1 + see COPYING and AUTHORS files in distribution or http://mpg123.org + +*/ + +#include "mpg123lib_intern.h" +#include "icy2utf8.h" +#include "getbits.h" +#include "debug.h" + +#ifdef GAPLESS +#define SAMPLE_ADJUST(x) ((x) - ((mh->p.flags & MPG123_GAPLESS) ? mh->begin_os : 0)) +#define SAMPLE_UNADJUST(x) ((x) + ((mh->p.flags & MPG123_GAPLESS) ? mh->begin_os : 0)) +#else +#define SAMPLE_ADJUST(x) (x) +#define SAMPLE_UNADJUST(x) (x) +#endif + +#define SEEKFRAME(mh) ((mh)->ignoreframe < 0 ? 0 : (mh)->ignoreframe) + +static int initialized = 0; + +#define ALIGNCHECK(mh) +#define ALIGNCHECKK +/* On compilers that support data alignment but not the automatic stack realignment. + We check for properly aligned stack before risking a crash because of badly compiled + client program. */ +#if (defined CCALIGN) && (defined NEED_ALIGNCHECK) && ((defined DEBUG) || (defined CHECK_ALIGN)) + +/* Common building block. */ +#define ALIGNMAINPART \ + /* minimum size of 16 bytes, not all compilers would align a smaller piece of data */ \ + double ALIGNED(16) altest[2]; \ + debug2("testing alignment, with %lu %% 16 = %lu", \ + (unsigned long)altest, (unsigned long)((size_t)altest % 16)); \ + if((size_t)altest % 16 != 0) + +#undef ALIGNCHECK +#define ALIGNCHECK(mh) \ + ALIGNMAINPART \ + { \ + error("Stack variable is not aligned! Your combination of compiler/library is dangerous!"); \ + if(mh != NULL) mh->err = MPG123_BAD_ALIGN; \ +\ + return MPG123_ERR; \ + } +#undef ALIGNCHECKK +#define ALIGNCHECKK \ + ALIGNMAINPART \ + { \ + error("Stack variable is not aligned! Your combination of compiler/library is dangerous!"); \ + return MPG123_BAD_ALIGN; \ + } + +#endif + + +#ifdef GAPLESS +/* + Take the buffer after a frame decode (strictly: it is the data from frame fr->num!) and cut samples out. + fr->buffer.fill may then be smaller than before... +*/ +static void frame_buffercheck(mpg123_handle *fr) +{ + /* When we have no accurate position, gapless code does not make sense. */ + if(!fr->accurate) return; + + /* The first interesting frame: Skip some leading samples. */ + if(fr->firstoff && fr->num == fr->firstframe) + { + off_t byteoff = samples_to_bytes(fr, fr->firstoff); + if(fr->buffer.fill > byteoff) + { + fr->buffer.fill -= byteoff; + /* buffer.p != buffer.data only for own buffer */ + debug6("cutting %li samples/%li bytes on begin, own_buffer=%i at %p=%p, buf[1]=%i", + (long)fr->firstoff, (long)byteoff, fr->own_buffer, (void*)fr->buffer.p, (void*)fr->buffer.data, ((short*)fr->buffer.p)[2]); + if(fr->own_buffer) fr->buffer.p = fr->buffer.data + byteoff; + else memmove(fr->buffer.data, fr->buffer.data + byteoff, fr->buffer.fill); + debug3("done cutting, buffer at %p =? %p, buf[1]=%i", + (void*)fr->buffer.p, (void*)fr->buffer.data, ((short*)fr->buffer.p)[2]); + } + else fr->buffer.fill = 0; + fr->firstoff = 0; /* Only enter here once... when you seek, firstoff should be reset. */ + } + /* The last interesting (planned) frame: Only use some leading samples. */ + if(fr->lastoff && fr->num == fr->lastframe) + { + off_t byteoff = samples_to_bytes(fr, fr->lastoff); + if(fr->buffer.fill > byteoff) + { + fr->buffer.fill = byteoff; + } + fr->lastoff = 0; /* Only enter here once... when you seek, lastoff should be reset. */ + } +} +#endif + + +int attribute_align_arg mpg123_init(void) +{ + ALIGNCHECKK + if((sizeof(short) != 2) || (sizeof(long) < 4)) return MPG123_BAD_TYPES; + + init_layer2(); /* inits also shared tables with layer1 */ + init_layer3(); +#ifndef OPT_MMX_ONLY + prepare_decode_tables(); +#endif + check_decoders(); + initialized = 1; + return MPG123_OK; +} + +void attribute_align_arg mpg123_exit(void) +{ + /* nothing yet, but something later perhaps */ + if(initialized) return; +} + +/* create a new handle with specified decoder, decoder can be "", "auto" or NULL for auto-detection */ +mpg123_handle attribute_align_arg *mpg123_new(const char* decoder, int *error) +{ + return mpg123_parnew(NULL, decoder, error); +} + +/* ...the full routine with optional initial parameters to override defaults. */ +mpg123_handle attribute_align_arg *mpg123_parnew(mpg123_pars *mp, const char* decoder, int *error) +{ + mpg123_handle *fr = NULL; + int err = MPG123_OK; +#ifdef DEBUG +#ifdef CCALIGN + double ALIGNED(16) altest[4]; + if(((size_t)altest) % 16 != 0) + { + error("Stack variable is not aligned! Your combination of compiler/library is dangerous!"); + *error = MPG123_BAD_ALIGN; + return NULL; + } +#endif +#endif + if(initialized) fr = (mpg123_handle*) malloc(sizeof(mpg123_handle)); + else err = MPG123_NOT_INITIALIZED; + if(fr != NULL) + { + frame_init_par(fr, mp); + debug("cpu opt setting"); + if(frame_cpu_opt(fr, decoder) != 1) + { + err = MPG123_BAD_DECODER; + frame_exit(fr); + free(fr); + fr = NULL; + } + } + if(fr != NULL) + { + if((frame_outbuffer(fr) != 0) || (frame_buffers(fr) != 0)) + { + err = MPG123_NO_BUFFERS; + frame_exit(fr); + free(fr); + fr = NULL; + } + else + { + opt_make_decode_tables(fr); + fr->decoder_change = 1; + /* happening on frame change instead: + init_layer3_stuff(fr); + init_layer2_stuff(fr); */ + } + } + else if(err == MPG123_OK) err = MPG123_OUT_OF_MEM; + + if(error != NULL) *error = err; + return fr; +} + +int attribute_align_arg mpg123_decoder(mpg123_handle *mh, const char* decoder) +{ + enum optdec dt = dectype(decoder); + ALIGNCHECK(mh); + if(mh == NULL) return MPG123_ERR; + + if(dt == nodec) + { + mh->err = MPG123_BAD_DECODER; + return MPG123_ERR; + } + if(dt == mh->cpu_opts.type) return MPG123_OK; + + /* Now really change. */ + /* frame_exit(mh); + frame_init(mh); */ + debug("cpu opt setting"); + if(frame_cpu_opt(mh, decoder) != 1) + { + mh->err = MPG123_BAD_DECODER; + frame_exit(mh); + return MPG123_ERR; + } + /* New buffers for decoder are created in frame_buffers() */ + if((frame_outbuffer(mh) != 0) || (frame_buffers(mh) != 0)) + { + mh->err = MPG123_NO_BUFFERS; + frame_exit(mh); + return MPG123_ERR; + } + opt_make_decode_tables(mh); + mh->decoder_change = 1; + return MPG123_OK; +} + +int attribute_align_arg mpg123_param(mpg123_handle *mh, enum mpg123_parms key, long val, double fval) +{ + int r; + ALIGNCHECK(mh); + if(mh == NULL) return MPG123_ERR; + r = mpg123_par(&mh->p, key, val, fval); + if(r != MPG123_OK){ mh->err = r; r = MPG123_ERR; } + else + { /* Special treatment for some settings. */ +#ifdef FRAME_INDEX + if(key == MPG123_INDEX_SIZE) + { /* Apply frame index size and grow property on the fly. */ + r = frame_index_setup(mh); + if(r != MPG123_OK) mh->err = MPG123_INDEX_FAIL; + } +#endif + } + return r; +} + +int attribute_align_arg mpg123_par(mpg123_pars *mp, enum mpg123_parms key, long val, double fval) +{ + int ret = MPG123_OK; + ALIGNCHECKK + if(mp == NULL) return MPG123_BAD_PARS; + switch(key) + { + case MPG123_VERBOSE: + mp->verbose = val; + break; + case MPG123_FLAGS: +#ifndef GAPLESS + if(val & MPG123_GAPLESS) ret = MPG123_NO_GAPLESS; +#endif +#ifdef FLOATOUT + if(val & MPG123_FORCE_8BIT) ret = MPG123_NO_8BIT; +#endif + if(ret == MPG123_OK) mp->flags = val; + debug1("set flags to 0x%lx", (unsigned long) mp->flags); + break; + case MPG123_ADD_FLAGS: +#ifndef GAPLESS + /* Enabling of gapless mode doesn't work when it's not there, but disabling (below) is no problem. */ + if(val & MPG123_GAPLESS) ret = MPG123_NO_GAPLESS; + else +#endif + mp->flags |= val; + debug1("set flags to 0x%lx", (unsigned long) mp->flags); + break; + case MPG123_REMOVE_FLAGS: + mp->flags &= ~val; + debug1("set flags to 0x%lx", (unsigned long) mp->flags); + break; + case MPG123_FORCE_RATE: /* should this trigger something? */ + if(val > 96000) ret = MPG123_BAD_RATE; + else mp->force_rate = val < 0 ? 0 : val; /* >0 means enable, 0 disable */ + break; + case MPG123_DOWN_SAMPLE: + if(val < 0 || val > 2) ret = MPG123_BAD_RATE; + else mp->down_sample = (int)val; + break; + case MPG123_RVA: + if(val < 0 || val > MPG123_RVA_MAX) ret = MPG123_BAD_RVA; + else mp->rva = (int)val; + break; + case MPG123_DOWNSPEED: + mp->halfspeed = val < 0 ? 0 : val; + break; + case MPG123_UPSPEED: + mp->doublespeed = val < 0 ? 0 : val; + break; + case MPG123_ICY_INTERVAL: + mp->icy_interval = val > 0 ? val : 0; + break; + case MPG123_OUTSCALE: +#ifdef FLOATOUT + mp->outscale = fval; +#else + mp->outscale = val; +#endif + break; + case MPG123_TIMEOUT: +#ifndef WIN32 + mp->timeout = val >= 0 ? val : 0; +#else + ret = MPG123_NO_TIMEOUT; +#endif + break; + case MPG123_RESYNC_LIMIT: + mp->resync_limit = val; + break; + case MPG123_INDEX_SIZE: +#ifdef FRAME_INDEX + mp->index_size = val; +#else + ret = MPG123_NO_INDEX; +#endif + break; + default: + ret = MPG123_BAD_PARAM; + } + return ret; +} + +int attribute_align_arg mpg123_getparam(mpg123_handle *mh, enum mpg123_parms key, long *val, double *fval) +{ + int r; + ALIGNCHECK(mh); + if(mh == NULL) return MPG123_ERR; + r = mpg123_getpar(&mh->p, key, val, fval); + if(r != MPG123_OK){ mh->err = r; r = MPG123_ERR; } + return r; +} + +int attribute_align_arg mpg123_getpar(mpg123_pars *mp, enum mpg123_parms key, long *val, double *fval) +{ + int ret = 0; + ALIGNCHECKK + if(mp == NULL) return MPG123_BAD_PARS; + switch(key) + { + case MPG123_VERBOSE: + if(val) *val = mp->verbose; + break; + case MPG123_FLAGS: + case MPG123_ADD_FLAGS: + if(val) *val = mp->flags; + break; + case MPG123_FORCE_RATE: + if(val) *val = mp->force_rate; + break; + case MPG123_DOWN_SAMPLE: + if(val) *val = mp->down_sample; + break; + case MPG123_RVA: + if(val) *val = mp->rva; + break; + case MPG123_DOWNSPEED: + if(val) *val = mp->halfspeed; + break; + case MPG123_UPSPEED: + if(val) *val = mp->doublespeed; + break; + case MPG123_ICY_INTERVAL: + if(val) *val = (long)mp->icy_interval; + break; + case MPG123_OUTSCALE: +#ifdef FLOATOUT + if(fval) *fval = mp->outscale; +#else + if(val) *val = mp->outscale; +#endif + break; + case MPG123_RESYNC_LIMIT: + if(val) *val = mp->resync_limit; + break; + default: + ret = MPG123_BAD_PARAM; + } + return ret; +} + +int attribute_align_arg mpg123_getstate(mpg123_handle *mh, enum mpg123_state key, long *val, double *fval) +{ + int ret = MPG123_OK; + long theval = 0; + double thefval = 0.; + ALIGNCHECK(mh); + if(mh == NULL) return MPG123_ERR; + + switch(key) + { + case MPG123_ACCURATE: + theval = mh->accurate; + break; + default: + mh->err = MPG123_BAD_KEY; + ret = MPG123_ERR; + } + + if(val != NULL) *val = theval; + if(fval != NULL) *fval = thefval; + + return ret; +} + +int attribute_align_arg mpg123_eq(mpg123_handle *mh, enum mpg123_channels channel, int band, double val) +{ + ALIGNCHECK(mh); + if(mh == NULL) return MPG123_ERR; + if(band < 0 || band > 31){ mh->err = MPG123_BAD_BAND; return MPG123_ERR; } + switch(channel) + { + case MPG123_LEFT|MPG123_RIGHT: + mh->equalizer[0][band] = mh->equalizer[1][band] = DOUBLE_TO_REAL(val); + break; + case MPG123_LEFT: mh->equalizer[0][band] = DOUBLE_TO_REAL(val); break; + case MPG123_RIGHT: mh->equalizer[1][band] = DOUBLE_TO_REAL(val); break; + default: + mh->err=MPG123_BAD_CHANNEL; + return MPG123_ERR; + } + mh->have_eq_settings = TRUE; + return MPG123_OK; +} + +double attribute_align_arg mpg123_geteq(mpg123_handle *mh, enum mpg123_channels channel, int band) +{ + double ret = 0.; + ALIGNCHECK(mh); + if(mh == NULL) return MPG123_ERR; + + /* Handle this gracefully. When there is no band, it has no volume. */ + if(band > -1 && band < 32) + switch(channel) + { + case MPG123_LEFT|MPG123_RIGHT: + ret = 0.5*(REAL_TO_DOUBLE(mh->equalizer[0][band])+REAL_TO_DOUBLE(mh->equalizer[1][band])); + break; + case MPG123_LEFT: ret = REAL_TO_DOUBLE(mh->equalizer[0][band]); break; + case MPG123_RIGHT: ret = REAL_TO_DOUBLE(mh->equalizer[1][band]); break; + /* Default case is already handled: ret = 0 */ + } + + return ret; +} + + +/* plain file access, no http! */ +int attribute_align_arg mpg123_open(mpg123_handle *mh, const char *path) +{ + ALIGNCHECK(mh); + if(mh == NULL) return MPG123_ERR; + + mpg123_close(mh); + frame_reset(mh); + return open_stream(mh, path, -1); +} + +int attribute_align_arg mpg123_open_fd(mpg123_handle *mh, int fd) +{ + ALIGNCHECK(mh); + if(mh == NULL) return MPG123_ERR; + + mpg123_close(mh); + frame_reset(mh); + return open_stream(mh, NULL, fd); +} + +int attribute_align_arg mpg123_open_feed(mpg123_handle *mh) +{ + ALIGNCHECK(mh); + if(mh == NULL) return MPG123_ERR; + + mpg123_close(mh); + frame_reset(mh); + return open_feed(mh); +} + +int attribute_align_arg mpg123_replace_reader( mpg123_handle *mh, + ssize_t (*r_read) (int, void *, size_t), + off_t (*r_lseek)(int, off_t, int) ) +{ + ALIGNCHECK(mh); + if(mh == NULL) return MPG123_ERR; + mh->rdat.r_read = r_read; + mh->rdat.r_lseek = r_lseek; + return MPG123_OK; +} + + +int decode_update(mpg123_handle *mh) +{ + long native_rate; + ALIGNCHECK(mh); + native_rate = frame_freq(mh); + debug2("updating decoder structure with native rate %li and af.rate %li", native_rate, mh->af.rate); + if(mh->af.rate == native_rate) mh->down_sample = 0; + else if(mh->af.rate == native_rate>>1) mh->down_sample = 1; + else if(mh->af.rate == native_rate>>2) mh->down_sample = 2; + else mh->down_sample = 3; /* flexible (fixed) rate */ + switch(mh->down_sample) + { + case 0: + case 1: + case 2: + mh->down_sample_sblimit = SBLIMIT>>(mh->down_sample); + /* With downsampling I get less samples per frame */ + mh->outblock = sizeof(sample_t)*mh->af.channels*(spf(mh)>>mh->down_sample); + break; + case 3: + { + if(synth_ntom_set_step(mh) != 0) return -1; + if(frame_freq(mh) > mh->af.rate) + { + mh->down_sample_sblimit = SBLIMIT * mh->af.rate; + mh->down_sample_sblimit /= frame_freq(mh); + } + else mh->down_sample_sblimit = SBLIMIT; + mh->outblock = sizeof(sample_t) * mh->af.channels * + ( ( NTOM_MUL-1+spf(mh) + * (((size_t)NTOM_MUL*mh->af.rate)/frame_freq(mh)) + )/NTOM_MUL ); + } + break; + } + + if(!(mh->p.flags & MPG123_FORCE_MONO)) + { + if(mh->af.channels == 1) mh->single = SINGLE_MIX; + else mh->single = SINGLE_STEREO; + } + else mh->single = (mh->p.flags & MPG123_FORCE_MONO)-1; + if(set_synth_functions(mh) != 0) return -1;; + init_layer3_stuff(mh); + init_layer2_stuff(mh); + do_rva(mh); + debug3("done updating decoder structure with native rate %li and af.rate %li and down_sample %i", frame_freq(mh), mh->af.rate, mh->down_sample); + + return 0; +} + +size_t attribute_align_arg mpg123_safe_buffer() +{ + return sizeof(sample_t)*2*1152*NTOM_MAX; +} + +size_t attribute_align_arg mpg123_outblock(mpg123_handle *mh) +{ + if(mh != NULL) return mh->outblock; + else return mpg123_safe_buffer(); +} + +static int get_next_frame(mpg123_handle *mh) +{ + int change = mh->decoder_change; + do + { + int b; + /* Decode & discard some frame(s) before beginning. */ + if(mh->to_ignore && mh->num < mh->firstframe && mh->num >= mh->ignoreframe) + { + debug1("ignoring frame %li", (long)mh->num); + /* Decoder structure must be current! decode_update has been called before... */ + (mh->do_layer)(mh); mh->buffer.fill = 0; + /* The ignored decoding may have failed. Make sure ntom stays consistent. */ + if(mh->down_sample == 3) ntom_set_ntom(mh, mh->num+1); + + mh->to_ignore = mh->to_decode = FALSE; + } + /* Read new frame data; possibly breaking out here for MPG123_NEED_MORE. */ + debug("read frame"); + mh->to_decode = FALSE; + b = read_frame(mh); /* That sets to_decode only if a full frame was read. */ + debug4("read of frame %li returned %i (to_decode=%i) at sample %li", (long)mh->num, b, mh->to_decode, (long)mpg123_tell(mh)); + if(b == MPG123_NEED_MORE) return MPG123_NEED_MORE; /* need another call with data */ + else if(b <= 0) + { + /* More sophisticated error control? */ + if(b==0 || mh->rdat.filepos == mh->rdat.filelen) + { /* We simply reached the end. */ + mh->track_frames = mh->num + 1; + return MPG123_DONE; + } + else return MPG123_ERR; /* Some real error. */ + } + /* Now, there should be new data to decode ... and also possibly new stream properties */ + if(mh->header_change > 1) + { + debug("big header change"); + change = 1; + } + } while(mh->num < mh->firstframe); + /* When we start actually using the CRC, this could move into the loop... */ + /* A question of semantics ... should I fold start_frame and frame_number into firstframe/lastframe? */ + if(mh->lastframe >= 0 && mh->num > mh->lastframe) + { + mh->to_decode = mh->to_ignore = FALSE; + return MPG123_DONE; + } + if(change) + { + int b = frame_output_format(mh); /* Select the new output format based on given constraints. */ + if(b < 0) return MPG123_ERR; /* not nice to fail here... perhaps once should add possibility to repeat this step */ + if(decode_update(mh) < 0) return MPG123_ERR; /* dito... */ + mh->decoder_change = 0; + if(b == 1) mh->new_format = 1; /* Store for later... */ +#ifdef GAPLESS + if(mh->fresh) + { + b=0; + /* Prepare offsets for gapless decoding. */ + debug1("preparing gapless stuff with native rate %li", frame_freq(mh)); + frame_gapless_realinit(mh); + frame_set_frameseek(mh, mh->num); + mh->fresh = 0; + /* Could this possibly happen? With a real big gapless offset... */ + if(mh->num < mh->firstframe) b = get_next_frame(mh); + if(b < 0) return b; /* Could be error, need for more, new format... */ + } +#endif + } + return MPG123_OK; +} + +/* + Not part of the api. This just decodes the frame and fills missing bits with zeroes. + There can be frames that are broken and thus make do_layer() fail. +*/ +void decode_the_frame(mpg123_handle *fr) +{ + size_t needed_bytes = samples_to_bytes(fr, frame_outs(fr, fr->num+1)-frame_outs(fr, fr->num)); + + fr->clip += (fr->do_layer)(fr); + /* There could be less data than promised. */ + if(fr->buffer.fill < needed_bytes) + { + if(NOQUIET) fprintf(stderr, "Note: broken frame %li, filling up with zeroes\n", (long)fr->num); + + /* One could do a loop with individual samples instead... but zero is zero. */ + memset(fr->buffer.data + fr->buffer.fill, 0, needed_bytes - fr->buffer.fill); + fr->buffer.fill = needed_bytes; + /* ntom_val will be wrong when the decoding wasn't carried out completely */ + if(fr->down_sample == 3) ntom_set_ntom(fr, fr->num+1); + } +} + +/* + Put _one_ decoded frame into the frame structure's buffer, accessible at the location stored in