annotate libfaad2/sine_win.h @ 11213:b45214b33cb7

minimum slice size fix (fixes 422P 1 line per slice, used by huffyuv)
author michael
date Wed, 22 Oct 2003 00:19:20 +0000
parents 3185f64f6350
children 4a370c80fe5c
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
10725
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
1 /*
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
2 ** FAAD2 - Freeware Advanced Audio (AAC) Decoder including SBR decoding
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
3 ** Copyright (C) 2003 M. Bakker, Ahead Software AG, http://www.nero.com
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
4 **
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
5 ** This program is free software; you can redistribute it and/or modify
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
6 ** it under the terms of the GNU General Public License as published by
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
7 ** the Free Software Foundation; either version 2 of the License, or
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
8 ** (at your option) any later version.
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
9 **
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
10 ** This program is distributed in the hope that it will be useful,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
11 ** but WITHOUT ANY WARRANTY; without even the implied warranty of
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
12 ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
13 ** GNU General Public License for more details.
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
14 **
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
15 ** You should have received a copy of the GNU General Public License
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
16 ** along with this program; if not, write to the Free Software
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
17 ** Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
18 **
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
19 ** Any non-GPL usage of this software or parts of this software is strictly
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
20 ** forbidden.
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
21 **
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
22 ** Commercial non-GPL licensing of this software is possible.
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
23 ** For more info contact Ahead Software through Mpeg4AAClicense@nero.com.
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
24 **
10989
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
25 ** $Id: sine_win.h,v 1.3 2003/09/09 18:09:52 menno Exp $
10725
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
26 **/
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
27
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
28 #ifndef __SINE_WIN_H__
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
29 #define __SINE_WIN_H__
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
30
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
31 #ifdef __cplusplus
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
32 extern "C" {
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
33 #endif
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
34
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
35 #ifdef _MSC_VER
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
36 #pragma warning(disable:4305)
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
37 #pragma warning(disable:4244)
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
38 #endif
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
39
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
40 real_t sine_long_1024[] =
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
41 {
10989
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
42 COEF_CONST(0.0007669903),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
43 COEF_CONST(0.0023009692),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
44 COEF_CONST(0.0038349427),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
45 COEF_CONST(0.0053689071),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
46 COEF_CONST(0.0069028589),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
47 COEF_CONST(0.0084367945),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
48 COEF_CONST(0.0099707102),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
49 COEF_CONST(0.0115046024),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
50 COEF_CONST(0.0130384676),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
51 COEF_CONST(0.0145723021),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
52 COEF_CONST(0.0161061023),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
53 COEF_CONST(0.0176398646),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
54 COEF_CONST(0.0191735854),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
55 COEF_CONST(0.0207072611),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
56 COEF_CONST(0.0222408880),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
57 COEF_CONST(0.0237744627),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
58 COEF_CONST(0.0253079813),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
59 COEF_CONST(0.0268414404),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
60 COEF_CONST(0.0283748364),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
61 COEF_CONST(0.0299081656),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
62 COEF_CONST(0.0314414244),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
63 COEF_CONST(0.0329746092),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
64 COEF_CONST(0.0345077165),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
65 COEF_CONST(0.0360407425),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
66 COEF_CONST(0.0375736838),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
67 COEF_CONST(0.0391065366),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
68 COEF_CONST(0.0406392974),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
69 COEF_CONST(0.0421719625),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
70 COEF_CONST(0.0437045285),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
71 COEF_CONST(0.0452369916),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
72 COEF_CONST(0.0467693482),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
73 COEF_CONST(0.0483015948),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
74 COEF_CONST(0.0498337277),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
75 COEF_CONST(0.0513657434),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
76 COEF_CONST(0.0528976382),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
77 COEF_CONST(0.0544294085),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
78 COEF_CONST(0.0559610508),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
79 COEF_CONST(0.0574925613),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
80 COEF_CONST(0.0590239366),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
81 COEF_CONST(0.0605551730),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
82 COEF_CONST(0.0620862669),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
83 COEF_CONST(0.0636172147),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
84 COEF_CONST(0.0651480128),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
85 COEF_CONST(0.0666786576),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
86 COEF_CONST(0.0682091456),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
87 COEF_CONST(0.0697394730),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
88 COEF_CONST(0.0712696363),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
89 COEF_CONST(0.0727996319),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
90 COEF_CONST(0.0743294562),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
91 COEF_CONST(0.0758591055),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
92 COEF_CONST(0.0773885764),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
93 COEF_CONST(0.0789178652),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
94 COEF_CONST(0.0804469683),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
95 COEF_CONST(0.0819758821),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
96 COEF_CONST(0.0835046030),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
97 COEF_CONST(0.0850331273),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
98 COEF_CONST(0.0865614516),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
99 COEF_CONST(0.0880895722),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
100 COEF_CONST(0.0896174856),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
101 COEF_CONST(0.0911451880),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
102 COEF_CONST(0.0926726760),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
103 COEF_CONST(0.0941999459),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
104 COEF_CONST(0.0957269942),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
105 COEF_CONST(0.0972538171),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
106 COEF_CONST(0.0987804113),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
107 COEF_CONST(0.1003067730),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
108 COEF_CONST(0.1018328987),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
109 COEF_CONST(0.1033587847),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
110 COEF_CONST(0.1048844276),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
111 COEF_CONST(0.1064098236),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
112 COEF_CONST(0.1079349692),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
113 COEF_CONST(0.1094598609),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
114 COEF_CONST(0.1109844950),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
115 COEF_CONST(0.1125088679),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
116 COEF_CONST(0.1140329761),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
117 COEF_CONST(0.1155568160),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
118 COEF_CONST(0.1170803839),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
119 COEF_CONST(0.1186036763),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
120 COEF_CONST(0.1201266897),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
121 COEF_CONST(0.1216494204),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
122 COEF_CONST(0.1231718648),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
123 COEF_CONST(0.1246940194),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
124 COEF_CONST(0.1262158806),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
125 COEF_CONST(0.1277374448),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
126 COEF_CONST(0.1292587084),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
127 COEF_CONST(0.1307796678),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
128 COEF_CONST(0.1323003195),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
129 COEF_CONST(0.1338206599),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
130 COEF_CONST(0.1353406854),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
131 COEF_CONST(0.1368603924),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
132 COEF_CONST(0.1383797774),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
133 COEF_CONST(0.1398988368),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
134 COEF_CONST(0.1414175669),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
135 COEF_CONST(0.1429359643),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
136 COEF_CONST(0.1444540254),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
137 COEF_CONST(0.1459717465),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
138 COEF_CONST(0.1474891242),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
139 COEF_CONST(0.1490061548),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
140 COEF_CONST(0.1505228347),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
141 COEF_CONST(0.1520391605),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
142 COEF_CONST(0.1535551285),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
143 COEF_CONST(0.1550707352),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
144 COEF_CONST(0.1565859770),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
145 COEF_CONST(0.1581008503),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
146 COEF_CONST(0.1596153516),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
147 COEF_CONST(0.1611294774),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
148 COEF_CONST(0.1626432239),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
149 COEF_CONST(0.1641565877),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
150 COEF_CONST(0.1656695653),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
151 COEF_CONST(0.1671821530),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
152 COEF_CONST(0.1686943474),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
153 COEF_CONST(0.1702061448),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
154 COEF_CONST(0.1717175416),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
155 COEF_CONST(0.1732285344),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
156 COEF_CONST(0.1747391196),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
157 COEF_CONST(0.1762492936),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
158 COEF_CONST(0.1777590529),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
159 COEF_CONST(0.1792683938),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
160 COEF_CONST(0.1807773130),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
161 COEF_CONST(0.1822858067),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
162 COEF_CONST(0.1837938716),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
163 COEF_CONST(0.1853015039),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
164 COEF_CONST(0.1868087002),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
165 COEF_CONST(0.1883154569),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
166 COEF_CONST(0.1898217705),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
167 COEF_CONST(0.1913276375),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
168 COEF_CONST(0.1928330542),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
169 COEF_CONST(0.1943380172),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
170 COEF_CONST(0.1958425228),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
171 COEF_CONST(0.1973465677),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
172 COEF_CONST(0.1988501481),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
173 COEF_CONST(0.2003532607),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
174 COEF_CONST(0.2018559018),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
175 COEF_CONST(0.2033580679),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
176 COEF_CONST(0.2048597554),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
177 COEF_CONST(0.2063609610),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
178 COEF_CONST(0.2078616809),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
179 COEF_CONST(0.2093619117),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
180 COEF_CONST(0.2108616499),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
181 COEF_CONST(0.2123608919),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
182 COEF_CONST(0.2138596342),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
183 COEF_CONST(0.2153578733),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
184 COEF_CONST(0.2168556056),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
185 COEF_CONST(0.2183528276),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
186 COEF_CONST(0.2198495358),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
187 COEF_CONST(0.2213457267),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
188 COEF_CONST(0.2228413967),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
189 COEF_CONST(0.2243365424),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
190 COEF_CONST(0.2258311602),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
191 COEF_CONST(0.2273252466),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
192 COEF_CONST(0.2288187981),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
193 COEF_CONST(0.2303118111),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
194 COEF_CONST(0.2318042822),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
195 COEF_CONST(0.2332962078),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
196 COEF_CONST(0.2347875845),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
197 COEF_CONST(0.2362784086),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
198 COEF_CONST(0.2377686768),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
199 COEF_CONST(0.2392583855),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
200 COEF_CONST(0.2407475313),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
201 COEF_CONST(0.2422361105),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
202 COEF_CONST(0.2437241197),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
203 COEF_CONST(0.2452115554),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
204 COEF_CONST(0.2466984140),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
205 COEF_CONST(0.2481846922),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
206 COEF_CONST(0.2496703864),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
207 COEF_CONST(0.2511554931),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
208 COEF_CONST(0.2526400088),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
209 COEF_CONST(0.2541239300),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
210 COEF_CONST(0.2556072532),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
211 COEF_CONST(0.2570899749),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
212 COEF_CONST(0.2585720917),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
213 COEF_CONST(0.2600536001),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
214 COEF_CONST(0.2615344965),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
215 COEF_CONST(0.2630147775),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
216 COEF_CONST(0.2644944396),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
217 COEF_CONST(0.2659734793),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
218 COEF_CONST(0.2674518932),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
219 COEF_CONST(0.2689296777),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
220 COEF_CONST(0.2704068294),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
221 COEF_CONST(0.2718833448),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
222 COEF_CONST(0.2733592205),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
223 COEF_CONST(0.2748344529),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
224 COEF_CONST(0.2763090386),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
225 COEF_CONST(0.2777829741),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
226 COEF_CONST(0.2792562559),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
227 COEF_CONST(0.2807288807),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
228 COEF_CONST(0.2822008448),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
229 COEF_CONST(0.2836721449),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
230 COEF_CONST(0.2851427776),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
231 COEF_CONST(0.2866127392),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
232 COEF_CONST(0.2880820264),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
233 COEF_CONST(0.2895506357),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
234 COEF_CONST(0.2910185637),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
235 COEF_CONST(0.2924858069),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
236 COEF_CONST(0.2939523618),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
237 COEF_CONST(0.2954182251),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
238 COEF_CONST(0.2968833932),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
239 COEF_CONST(0.2983478627),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
240 COEF_CONST(0.2998116301),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
241 COEF_CONST(0.3012746921),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
242 COEF_CONST(0.3027370451),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
243 COEF_CONST(0.3041986858),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
244 COEF_CONST(0.3056596107),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
245 COEF_CONST(0.3071198163),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
246 COEF_CONST(0.3085792992),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
247 COEF_CONST(0.3100380561),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
248 COEF_CONST(0.3114960833),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
249 COEF_CONST(0.3129533776),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
250 COEF_CONST(0.3144099355),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
251 COEF_CONST(0.3158657535),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
252 COEF_CONST(0.3173208283),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
253 COEF_CONST(0.3187751564),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
254 COEF_CONST(0.3202287344),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
255 COEF_CONST(0.3216815589),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
256 COEF_CONST(0.3231336264),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
257 COEF_CONST(0.3245849335),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
258 COEF_CONST(0.3260354769),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
259 COEF_CONST(0.3274852530),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
260 COEF_CONST(0.3289342586),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
261 COEF_CONST(0.3303824902),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
262 COEF_CONST(0.3318299443),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
263 COEF_CONST(0.3332766176),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
264 COEF_CONST(0.3347225067),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
265 COEF_CONST(0.3361676081),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
266 COEF_CONST(0.3376119185),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
267 COEF_CONST(0.3390554345),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
268 COEF_CONST(0.3404981526),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
269 COEF_CONST(0.3419400695),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
270 COEF_CONST(0.3433811818),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
271 COEF_CONST(0.3448214861),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
272 COEF_CONST(0.3462609790),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
273 COEF_CONST(0.3476996571),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
274 COEF_CONST(0.3491375170),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
275 COEF_CONST(0.3505745554),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
276 COEF_CONST(0.3520107688),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
277 COEF_CONST(0.3534461540),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
278 COEF_CONST(0.3548807074),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
279 COEF_CONST(0.3563144257),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
280 COEF_CONST(0.3577473057),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
281 COEF_CONST(0.3591793438),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
282 COEF_CONST(0.3606105367),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
283 COEF_CONST(0.3620408811),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
284 COEF_CONST(0.3634703735),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
285 COEF_CONST(0.3648990107),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
286 COEF_CONST(0.3663267892),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
287 COEF_CONST(0.3677537058),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
288 COEF_CONST(0.3691797569),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
289 COEF_CONST(0.3706049394),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
290 COEF_CONST(0.3720292498),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
291 COEF_CONST(0.3734526847),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
292 COEF_CONST(0.3748752409),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
293 COEF_CONST(0.3762969150),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
294 COEF_CONST(0.3777177036),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
295 COEF_CONST(0.3791376034),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
296 COEF_CONST(0.3805566111),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
297 COEF_CONST(0.3819747232),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
298 COEF_CONST(0.3833919366),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
299 COEF_CONST(0.3848082478),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
300 COEF_CONST(0.3862236535),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
301 COEF_CONST(0.3876381503),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
302 COEF_CONST(0.3890517351),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
303 COEF_CONST(0.3904644043),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
304 COEF_CONST(0.3918761548),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
305 COEF_CONST(0.3932869831),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
306 COEF_CONST(0.3946968860),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
307 COEF_CONST(0.3961058601),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
308 COEF_CONST(0.3975139021),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
309 COEF_CONST(0.3989210088),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
310 COEF_CONST(0.4003271768),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
311 COEF_CONST(0.4017324027),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
312 COEF_CONST(0.4031366834),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
313 COEF_CONST(0.4045400154),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
314 COEF_CONST(0.4059423955),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
315 COEF_CONST(0.4073438203),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
316 COEF_CONST(0.4087442867),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
317 COEF_CONST(0.4101437912),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
318 COEF_CONST(0.4115423307),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
319 COEF_CONST(0.4129399017),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
320 COEF_CONST(0.4143365010),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
321 COEF_CONST(0.4157321254),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
322 COEF_CONST(0.4171267715),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
323 COEF_CONST(0.4185204361),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
324 COEF_CONST(0.4199131159),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
325 COEF_CONST(0.4213048075),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
326 COEF_CONST(0.4226955078),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
327 COEF_CONST(0.4240852135),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
328 COEF_CONST(0.4254739212),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
329 COEF_CONST(0.4268616277),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
330 COEF_CONST(0.4282483298),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
331 COEF_CONST(0.4296340242),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
332 COEF_CONST(0.4310187077),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
333 COEF_CONST(0.4324023768),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
334 COEF_CONST(0.4337850286),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
335 COEF_CONST(0.4351666595),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
336 COEF_CONST(0.4365472665),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
337 COEF_CONST(0.4379268463),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
338 COEF_CONST(0.4393053955),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
339 COEF_CONST(0.4406829110),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
340 COEF_CONST(0.4420593896),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
341 COEF_CONST(0.4434348280),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
342 COEF_CONST(0.4448092229),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
343 COEF_CONST(0.4461825711),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
344 COEF_CONST(0.4475548694),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
345 COEF_CONST(0.4489261146),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
346 COEF_CONST(0.4502963034),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
347 COEF_CONST(0.4516654326),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
348 COEF_CONST(0.4530334990),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
349 COEF_CONST(0.4544004994),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
350 COEF_CONST(0.4557664305),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
351 COEF_CONST(0.4571312892),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
352 COEF_CONST(0.4584950722),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
353 COEF_CONST(0.4598577763),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
354 COEF_CONST(0.4612193983),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
355 COEF_CONST(0.4625799351),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
356 COEF_CONST(0.4639393833),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
357 COEF_CONST(0.4652977398),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
358 COEF_CONST(0.4666550015),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
359 COEF_CONST(0.4680111650),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
360 COEF_CONST(0.4693662273),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
361 COEF_CONST(0.4707201851),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
362 COEF_CONST(0.4720730353),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
363 COEF_CONST(0.4734247746),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
364 COEF_CONST(0.4747754000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
365 COEF_CONST(0.4761249081),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
366 COEF_CONST(0.4774732959),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
367 COEF_CONST(0.4788205601),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
368 COEF_CONST(0.4801666976),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
369 COEF_CONST(0.4815117052),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
370 COEF_CONST(0.4828555798),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
371 COEF_CONST(0.4841983182),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
372 COEF_CONST(0.4855399172),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
373 COEF_CONST(0.4868803737),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
374 COEF_CONST(0.4882196845),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
375 COEF_CONST(0.4895578465),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
376 COEF_CONST(0.4908948565),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
377 COEF_CONST(0.4922307114),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
378 COEF_CONST(0.4935654080),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
379 COEF_CONST(0.4948989433),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
380 COEF_CONST(0.4962313139),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
381 COEF_CONST(0.4975625169),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
382 COEF_CONST(0.4988925491),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
383 COEF_CONST(0.5002214073),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
384 COEF_CONST(0.5015490885),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
385 COEF_CONST(0.5028755895),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
386 COEF_CONST(0.5042009071),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
387 COEF_CONST(0.5055250384),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
388 COEF_CONST(0.5068479800),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
389 COEF_CONST(0.5081697290),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
390 COEF_CONST(0.5094902823),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
391 COEF_CONST(0.5108096366),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
392 COEF_CONST(0.5121277890),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
393 COEF_CONST(0.5134447363),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
394 COEF_CONST(0.5147604754),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
395 COEF_CONST(0.5160750032),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
396 COEF_CONST(0.5173883167),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
397 COEF_CONST(0.5187004127),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
398 COEF_CONST(0.5200112881),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
399 COEF_CONST(0.5213209399),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
400 COEF_CONST(0.5226293650),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
401 COEF_CONST(0.5239365603),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
402 COEF_CONST(0.5252425227),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
403 COEF_CONST(0.5265472491),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
404 COEF_CONST(0.5278507366),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
405 COEF_CONST(0.5291529819),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
406 COEF_CONST(0.5304539821),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
407 COEF_CONST(0.5317537341),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
408 COEF_CONST(0.5330522349),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
409 COEF_CONST(0.5343494813),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
410 COEF_CONST(0.5356454703),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
411 COEF_CONST(0.5369401989),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
412 COEF_CONST(0.5382336641),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
413 COEF_CONST(0.5395258627),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
414 COEF_CONST(0.5408167917),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
415 COEF_CONST(0.5421064482),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
416 COEF_CONST(0.5433948291),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
417 COEF_CONST(0.5446819312),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
418 COEF_CONST(0.5459677517),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
419 COEF_CONST(0.5472522875),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
420 COEF_CONST(0.5485355355),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
421 COEF_CONST(0.5498174928),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
422 COEF_CONST(0.5510981563),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
423 COEF_CONST(0.5523775230),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
424 COEF_CONST(0.5536555900),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
425 COEF_CONST(0.5549323541),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
426 COEF_CONST(0.5562078124),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
427 COEF_CONST(0.5574819619),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
428 COEF_CONST(0.5587547996),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
429 COEF_CONST(0.5600263225),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
430 COEF_CONST(0.5612965275),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
431 COEF_CONST(0.5625654118),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
432 COEF_CONST(0.5638329724),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
433 COEF_CONST(0.5650992062),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
434 COEF_CONST(0.5663641102),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
435 COEF_CONST(0.5676276815),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
436 COEF_CONST(0.5688899172),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
437 COEF_CONST(0.5701508142),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
438 COEF_CONST(0.5714103696),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
439 COEF_CONST(0.5726685804),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
440 COEF_CONST(0.5739254436),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
441 COEF_CONST(0.5751809564),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
442 COEF_CONST(0.5764351157),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
443 COEF_CONST(0.5776879185),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
444 COEF_CONST(0.5789393621),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
445 COEF_CONST(0.5801894433),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
446 COEF_CONST(0.5814381593),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
447 COEF_CONST(0.5826855071),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
448 COEF_CONST(0.5839314838),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
449 COEF_CONST(0.5851760864),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
450 COEF_CONST(0.5864193121),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
451 COEF_CONST(0.5876611579),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
452 COEF_CONST(0.5889016208),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
453 COEF_CONST(0.5901406980),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
454 COEF_CONST(0.5913783866),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
455 COEF_CONST(0.5926146835),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
456 COEF_CONST(0.5938495860),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
457 COEF_CONST(0.5950830911),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
458 COEF_CONST(0.5963151959),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
459 COEF_CONST(0.5975458976),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
460 COEF_CONST(0.5987751931),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
461 COEF_CONST(0.6000030797),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
462 COEF_CONST(0.6012295544),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
463 COEF_CONST(0.6024546144),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
464 COEF_CONST(0.6036782567),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
465 COEF_CONST(0.6049004785),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
466 COEF_CONST(0.6061212769),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
467 COEF_CONST(0.6073406491),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
468 COEF_CONST(0.6085585921),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
469 COEF_CONST(0.6097751031),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
470 COEF_CONST(0.6109901793),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
471 COEF_CONST(0.6122038177),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
472 COEF_CONST(0.6134160156),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
473 COEF_CONST(0.6146267701),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
474 COEF_CONST(0.6158360782),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
475 COEF_CONST(0.6170439373),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
476 COEF_CONST(0.6182503444),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
477 COEF_CONST(0.6194552967),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
478 COEF_CONST(0.6206587913),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
479 COEF_CONST(0.6218608255),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
480 COEF_CONST(0.6230613964),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
481 COEF_CONST(0.6242605011),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
482 COEF_CONST(0.6254581369),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
483 COEF_CONST(0.6266543010),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
484 COEF_CONST(0.6278489904),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
485 COEF_CONST(0.6290422025),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
486 COEF_CONST(0.6302339344),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
487 COEF_CONST(0.6314241833),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
488 COEF_CONST(0.6326129463),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
489 COEF_CONST(0.6338002208),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
490 COEF_CONST(0.6349860039),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
491 COEF_CONST(0.6361702928),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
492 COEF_CONST(0.6373530847),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
493 COEF_CONST(0.6385343769),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
494 COEF_CONST(0.6397141665),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
495 COEF_CONST(0.6408924509),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
496 COEF_CONST(0.6420692271),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
497 COEF_CONST(0.6432444925),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
498 COEF_CONST(0.6444182443),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
499 COEF_CONST(0.6455904797),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
500 COEF_CONST(0.6467611960),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
501 COEF_CONST(0.6479303904),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
502 COEF_CONST(0.6490980601),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
503 COEF_CONST(0.6502642024),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
504 COEF_CONST(0.6514288146),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
505 COEF_CONST(0.6525918940),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
506 COEF_CONST(0.6537534377),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
507 COEF_CONST(0.6549134431),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
508 COEF_CONST(0.6560719074),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
509 COEF_CONST(0.6572288279),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
510 COEF_CONST(0.6583842018),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
511 COEF_CONST(0.6595380266),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
512 COEF_CONST(0.6606902994),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
513 COEF_CONST(0.6618410175),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
514 COEF_CONST(0.6629901782),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
515 COEF_CONST(0.6641377789),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
516 COEF_CONST(0.6652838167),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
517 COEF_CONST(0.6664282891),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
518 COEF_CONST(0.6675711934),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
519 COEF_CONST(0.6687125267),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
520 COEF_CONST(0.6698522866),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
521 COEF_CONST(0.6709904702),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
522 COEF_CONST(0.6721270748),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
523 COEF_CONST(0.6732620980),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
524 COEF_CONST(0.6743955368),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
525 COEF_CONST(0.6755273888),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
526 COEF_CONST(0.6766576511),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
527 COEF_CONST(0.6777863212),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
528 COEF_CONST(0.6789133965),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
529 COEF_CONST(0.6800388741),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
530 COEF_CONST(0.6811627516),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
531 COEF_CONST(0.6822850262),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
532 COEF_CONST(0.6834056954),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
533 COEF_CONST(0.6845247564),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
534 COEF_CONST(0.6856422067),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
535 COEF_CONST(0.6867580436),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
536 COEF_CONST(0.6878722645),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
537 COEF_CONST(0.6889848667),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
538 COEF_CONST(0.6900958478),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
539 COEF_CONST(0.6912052049),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
540 COEF_CONST(0.6923129356),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
541 COEF_CONST(0.6934190372),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
542 COEF_CONST(0.6945235071),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
543 COEF_CONST(0.6956263427),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
544 COEF_CONST(0.6967275415),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
545 COEF_CONST(0.6978271008),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
546 COEF_CONST(0.6989250180),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
547 COEF_CONST(0.7000212906),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
548 COEF_CONST(0.7011159160),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
549 COEF_CONST(0.7022088916),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
550 COEF_CONST(0.7033002148),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
551 COEF_CONST(0.7043898831),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
552 COEF_CONST(0.7054778939),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
553 COEF_CONST(0.7065642446),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
554 COEF_CONST(0.7076489327),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
555 COEF_CONST(0.7087319557),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
556 COEF_CONST(0.7098133109),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
557 COEF_CONST(0.7108929959),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
558 COEF_CONST(0.7119710081),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
559 COEF_CONST(0.7130473449),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
560 COEF_CONST(0.7141220039),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
561 COEF_CONST(0.7151949824),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
562 COEF_CONST(0.7162662781),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
563 COEF_CONST(0.7173358883),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
564 COEF_CONST(0.7184038105),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
565 COEF_CONST(0.7194700423),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
566 COEF_CONST(0.7205345811),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
567 COEF_CONST(0.7215974244),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
568 COEF_CONST(0.7226585697),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
569 COEF_CONST(0.7237180145),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
570 COEF_CONST(0.7247757564),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
571 COEF_CONST(0.7258317928),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
572 COEF_CONST(0.7268861212),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
573 COEF_CONST(0.7279387392),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
574 COEF_CONST(0.7289896443),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
575 COEF_CONST(0.7300388340),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
576 COEF_CONST(0.7310863058),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
577 COEF_CONST(0.7321320574),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
578 COEF_CONST(0.7331760861),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
579 COEF_CONST(0.7342183896),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
580 COEF_CONST(0.7352589655),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
581 COEF_CONST(0.7362978112),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
582 COEF_CONST(0.7373349243),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
583 COEF_CONST(0.7383703024),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
584 COEF_CONST(0.7394039430),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
585 COEF_CONST(0.7404358438),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
586 COEF_CONST(0.7414660022),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
587 COEF_CONST(0.7424944159),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
588 COEF_CONST(0.7435210825),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
589 COEF_CONST(0.7445459994),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
590 COEF_CONST(0.7455691644),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
591 COEF_CONST(0.7465905750),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
592 COEF_CONST(0.7476102287),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
593 COEF_CONST(0.7486281233),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
594 COEF_CONST(0.7496442563),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
595 COEF_CONST(0.7506586253),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
596 COEF_CONST(0.7516712279),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
597 COEF_CONST(0.7526820618),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
598 COEF_CONST(0.7536911245),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
599 COEF_CONST(0.7546984137),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
600 COEF_CONST(0.7557039270),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
601 COEF_CONST(0.7567076622),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
602 COEF_CONST(0.7577096166),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
603 COEF_CONST(0.7587097882),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
604 COEF_CONST(0.7597081744),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
605 COEF_CONST(0.7607047729),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
606 COEF_CONST(0.7616995815),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
607 COEF_CONST(0.7626925976),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
608 COEF_CONST(0.7636838191),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
609 COEF_CONST(0.7646732436),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
610 COEF_CONST(0.7656608687),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
611 COEF_CONST(0.7666466922),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
612 COEF_CONST(0.7676307116),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
613 COEF_CONST(0.7686129248),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
614 COEF_CONST(0.7695933293),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
615 COEF_CONST(0.7705719229),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
616 COEF_CONST(0.7715487032),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
617 COEF_CONST(0.7725236681),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
618 COEF_CONST(0.7734968151),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
619 COEF_CONST(0.7744681420),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
620 COEF_CONST(0.7754376465),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
621 COEF_CONST(0.7764053263),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
622 COEF_CONST(0.7773711792),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
623 COEF_CONST(0.7783352028),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
624 COEF_CONST(0.7792973950),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
625 COEF_CONST(0.7802577533),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
626 COEF_CONST(0.7812162757),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
627 COEF_CONST(0.7821729598),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
628 COEF_CONST(0.7831278033),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
629 COEF_CONST(0.7840808041),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
630 COEF_CONST(0.7850319598),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
631 COEF_CONST(0.7859812683),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
632 COEF_CONST(0.7869287273),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
633 COEF_CONST(0.7878743346),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
634 COEF_CONST(0.7888180880),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
635 COEF_CONST(0.7897599851),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
636 COEF_CONST(0.7907000239),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
637 COEF_CONST(0.7916382021),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
638 COEF_CONST(0.7925745175),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
639 COEF_CONST(0.7935089679),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
640 COEF_CONST(0.7944415511),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
641 COEF_CONST(0.7953722649),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
642 COEF_CONST(0.7963011071),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
643 COEF_CONST(0.7972280756),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
644 COEF_CONST(0.7981531680),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
645 COEF_CONST(0.7990763824),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
646 COEF_CONST(0.7999977164),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
647 COEF_CONST(0.8009171680),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
648 COEF_CONST(0.8018347350),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
649 COEF_CONST(0.8027504151),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
650 COEF_CONST(0.8036642063),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
651 COEF_CONST(0.8045761064),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
652 COEF_CONST(0.8054861132),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
653 COEF_CONST(0.8063942247),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
654 COEF_CONST(0.8073004386),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
655 COEF_CONST(0.8082047529),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
656 COEF_CONST(0.8091071654),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
657 COEF_CONST(0.8100076740),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
658 COEF_CONST(0.8109062766),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
659 COEF_CONST(0.8118029710),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
660 COEF_CONST(0.8126977551),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
661 COEF_CONST(0.8135906270),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
662 COEF_CONST(0.8144815843),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
663 COEF_CONST(0.8153706251),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
664 COEF_CONST(0.8162577473),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
665 COEF_CONST(0.8171429487),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
666 COEF_CONST(0.8180262273),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
667 COEF_CONST(0.8189075810),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
668 COEF_CONST(0.8197870078),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
669 COEF_CONST(0.8206645055),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
670 COEF_CONST(0.8215400721),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
671 COEF_CONST(0.8224137055),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
672 COEF_CONST(0.8232854037),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
673 COEF_CONST(0.8241551647),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
674 COEF_CONST(0.8250229863),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
675 COEF_CONST(0.8258888666),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
676 COEF_CONST(0.8267528035),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
677 COEF_CONST(0.8276147949),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
678 COEF_CONST(0.8284748389),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
679 COEF_CONST(0.8293329334),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
680 COEF_CONST(0.8301890764),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
681 COEF_CONST(0.8310432659),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
682 COEF_CONST(0.8318954999),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
683 COEF_CONST(0.8327457763),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
684 COEF_CONST(0.8335940932),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
685 COEF_CONST(0.8344404486),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
686 COEF_CONST(0.8352848405),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
687 COEF_CONST(0.8361272668),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
688 COEF_CONST(0.8369677257),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
689 COEF_CONST(0.8378062151),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
690 COEF_CONST(0.8386427331),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
691 COEF_CONST(0.8394772776),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
692 COEF_CONST(0.8403098468),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
693 COEF_CONST(0.8411404387),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
694 COEF_CONST(0.8419690512),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
695 COEF_CONST(0.8427956826),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
696 COEF_CONST(0.8436203307),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
697 COEF_CONST(0.8444429937),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
698 COEF_CONST(0.8452636697),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
699 COEF_CONST(0.8460823567),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
700 COEF_CONST(0.8468990528),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
701 COEF_CONST(0.8477137560),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
702 COEF_CONST(0.8485264645),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
703 COEF_CONST(0.8493371763),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
704 COEF_CONST(0.8501458896),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
705 COEF_CONST(0.8509526024),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
706 COEF_CONST(0.8517573128),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
707 COEF_CONST(0.8525600189),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
708 COEF_CONST(0.8533607189),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
709 COEF_CONST(0.8541594108),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
710 COEF_CONST(0.8549560928),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
711 COEF_CONST(0.8557507630),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
712 COEF_CONST(0.8565434196),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
713 COEF_CONST(0.8573340606),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
714 COEF_CONST(0.8581226843),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
715 COEF_CONST(0.8589092887),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
716 COEF_CONST(0.8596938720),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
717 COEF_CONST(0.8604764323),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
718 COEF_CONST(0.8612569679),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
719 COEF_CONST(0.8620354768),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
720 COEF_CONST(0.8628119573),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
721 COEF_CONST(0.8635864076),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
722 COEF_CONST(0.8643588257),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
723 COEF_CONST(0.8651292099),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
724 COEF_CONST(0.8658975583),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
725 COEF_CONST(0.8666638692),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
726 COEF_CONST(0.8674281408),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
727 COEF_CONST(0.8681903713),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
728 COEF_CONST(0.8689505588),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
729 COEF_CONST(0.8697087015),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
730 COEF_CONST(0.8704647978),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
731 COEF_CONST(0.8712188458),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
732 COEF_CONST(0.8719708437),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
733 COEF_CONST(0.8727207898),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
734 COEF_CONST(0.8734686823),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
735 COEF_CONST(0.8742145194),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
736 COEF_CONST(0.8749582994),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
737 COEF_CONST(0.8757000206),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
738 COEF_CONST(0.8764396811),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
739 COEF_CONST(0.8771772793),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
740 COEF_CONST(0.8779128134),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
741 COEF_CONST(0.8786462817),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
742 COEF_CONST(0.8793776825),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
743 COEF_CONST(0.8801070140),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
744 COEF_CONST(0.8808342745),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
745 COEF_CONST(0.8815594624),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
746 COEF_CONST(0.8822825758),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
747 COEF_CONST(0.8830036132),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
748 COEF_CONST(0.8837225727),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
749 COEF_CONST(0.8844394528),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
750 COEF_CONST(0.8851542517),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
751 COEF_CONST(0.8858669678),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
752 COEF_CONST(0.8865775993),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
753 COEF_CONST(0.8872861446),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
754 COEF_CONST(0.8879926020),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
755 COEF_CONST(0.8886969699),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
756 COEF_CONST(0.8893992467),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
757 COEF_CONST(0.8900994305),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
758 COEF_CONST(0.8907975199),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
759 COEF_CONST(0.8914935132),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
760 COEF_CONST(0.8921874087),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
761 COEF_CONST(0.8928792048),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
762 COEF_CONST(0.8935688998),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
763 COEF_CONST(0.8942564922),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
764 COEF_CONST(0.8949419803),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
765 COEF_CONST(0.8956253626),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
766 COEF_CONST(0.8963066373),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
767 COEF_CONST(0.8969858030),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
768 COEF_CONST(0.8976628579),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
769 COEF_CONST(0.8983378006),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
770 COEF_CONST(0.8990106294),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
771 COEF_CONST(0.8996813427),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
772 COEF_CONST(0.9003499390),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
773 COEF_CONST(0.9010164167),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
774 COEF_CONST(0.9016807742),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
775 COEF_CONST(0.9023430100),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
776 COEF_CONST(0.9030031224),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
777 COEF_CONST(0.9036611101),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
778 COEF_CONST(0.9043169713),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
779 COEF_CONST(0.9049707045),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
780 COEF_CONST(0.9056223083),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
781 COEF_CONST(0.9062717811),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
782 COEF_CONST(0.9069191213),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
783 COEF_CONST(0.9075643274),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
784 COEF_CONST(0.9082073980),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
785 COEF_CONST(0.9088483315),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
786 COEF_CONST(0.9094871263),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
787 COEF_CONST(0.9101237811),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
788 COEF_CONST(0.9107582942),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
789 COEF_CONST(0.9113906642),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
790 COEF_CONST(0.9120208897),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
791 COEF_CONST(0.9126489690),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
792 COEF_CONST(0.9132749009),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
793 COEF_CONST(0.9138986837),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
794 COEF_CONST(0.9145203160),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
795 COEF_CONST(0.9151397963),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
796 COEF_CONST(0.9157571232),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
797 COEF_CONST(0.9163722953),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
798 COEF_CONST(0.9169853111),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
799 COEF_CONST(0.9175961691),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
800 COEF_CONST(0.9182048679),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
801 COEF_CONST(0.9188114061),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
802 COEF_CONST(0.9194157822),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
803 COEF_CONST(0.9200179948),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
804 COEF_CONST(0.9206180426),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
805 COEF_CONST(0.9212159241),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
806 COEF_CONST(0.9218116378),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
807 COEF_CONST(0.9224051825),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
808 COEF_CONST(0.9229965566),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
809 COEF_CONST(0.9235857588),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
810 COEF_CONST(0.9241727878),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
811 COEF_CONST(0.9247576421),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
812 COEF_CONST(0.9253403203),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
813 COEF_CONST(0.9259208211),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
814 COEF_CONST(0.9264991431),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
815 COEF_CONST(0.9270752850),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
816 COEF_CONST(0.9276492454),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
817 COEF_CONST(0.9282210230),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
818 COEF_CONST(0.9287906163),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
819 COEF_CONST(0.9293580242),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
820 COEF_CONST(0.9299232451),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
821 COEF_CONST(0.9304862779),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
822 COEF_CONST(0.9310471211),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
823 COEF_CONST(0.9316057735),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
824 COEF_CONST(0.9321622337),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
825 COEF_CONST(0.9327165005),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
826 COEF_CONST(0.9332685724),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
827 COEF_CONST(0.9338184484),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
828 COEF_CONST(0.9343661269),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
829 COEF_CONST(0.9349116068),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
830 COEF_CONST(0.9354548868),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
831 COEF_CONST(0.9359959655),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
832 COEF_CONST(0.9365348418),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
833 COEF_CONST(0.9370715142),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
834 COEF_CONST(0.9376059817),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
835 COEF_CONST(0.9381382429),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
836 COEF_CONST(0.9386682966),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
837 COEF_CONST(0.9391961415),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
838 COEF_CONST(0.9397217764),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
839 COEF_CONST(0.9402452000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
840 COEF_CONST(0.9407664111),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
841 COEF_CONST(0.9412854085),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
842 COEF_CONST(0.9418021910),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
843 COEF_CONST(0.9423167573),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
844 COEF_CONST(0.9428291063),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
845 COEF_CONST(0.9433392367),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
846 COEF_CONST(0.9438471473),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
847 COEF_CONST(0.9443528370),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
848 COEF_CONST(0.9448563045),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
849 COEF_CONST(0.9453575486),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
850 COEF_CONST(0.9458565683),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
851 COEF_CONST(0.9463533623),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
852 COEF_CONST(0.9468479294),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
853 COEF_CONST(0.9473402684),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
854 COEF_CONST(0.9478303783),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
855 COEF_CONST(0.9483182579),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
856 COEF_CONST(0.9488039059),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
857 COEF_CONST(0.9492873214),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
858 COEF_CONST(0.9497685031),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
859 COEF_CONST(0.9502474498),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
860 COEF_CONST(0.9507241606),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
861 COEF_CONST(0.9511986342),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
862 COEF_CONST(0.9516708696),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
863 COEF_CONST(0.9521408655),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
864 COEF_CONST(0.9526086210),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
865 COEF_CONST(0.9530741350),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
866 COEF_CONST(0.9535374062),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
867 COEF_CONST(0.9539984337),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
868 COEF_CONST(0.9544572163),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
869 COEF_CONST(0.9549137530),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
870 COEF_CONST(0.9553680427),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
871 COEF_CONST(0.9558200843),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
872 COEF_CONST(0.9562698768),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
873 COEF_CONST(0.9567174191),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
874 COEF_CONST(0.9571627101),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
875 COEF_CONST(0.9576057488),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
876 COEF_CONST(0.9580465342),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
877 COEF_CONST(0.9584850652),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
878 COEF_CONST(0.9589213409),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
879 COEF_CONST(0.9593553600),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
880 COEF_CONST(0.9597871218),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
881 COEF_CONST(0.9602166250),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
882 COEF_CONST(0.9606438688),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
883 COEF_CONST(0.9610688521),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
884 COEF_CONST(0.9614915739),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
885 COEF_CONST(0.9619120332),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
886 COEF_CONST(0.9623302290),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
887 COEF_CONST(0.9627461604),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
888 COEF_CONST(0.9631598263),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
889 COEF_CONST(0.9635712259),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
890 COEF_CONST(0.9639803580),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
891 COEF_CONST(0.9643872219),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
892 COEF_CONST(0.9647918164),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
893 COEF_CONST(0.9651941407),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
894 COEF_CONST(0.9655941938),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
895 COEF_CONST(0.9659919747),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
896 COEF_CONST(0.9663874826),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
897 COEF_CONST(0.9667807165),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
898 COEF_CONST(0.9671716754),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
899 COEF_CONST(0.9675603585),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
900 COEF_CONST(0.9679467648),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
901 COEF_CONST(0.9683308935),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
902 COEF_CONST(0.9687127436),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
903 COEF_CONST(0.9690923142),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
904 COEF_CONST(0.9694696044),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
905 COEF_CONST(0.9698446134),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
906 COEF_CONST(0.9702173403),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
907 COEF_CONST(0.9705877841),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
908 COEF_CONST(0.9709559440),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
909 COEF_CONST(0.9713218192),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
910 COEF_CONST(0.9716854088),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
911 COEF_CONST(0.9720467119),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
912 COEF_CONST(0.9724057277),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
913 COEF_CONST(0.9727624553),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
914 COEF_CONST(0.9731168939),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
915 COEF_CONST(0.9734690427),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
916 COEF_CONST(0.9738189008),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
917 COEF_CONST(0.9741664675),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
918 COEF_CONST(0.9745117418),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
919 COEF_CONST(0.9748547230),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
920 COEF_CONST(0.9751954102),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
921 COEF_CONST(0.9755338028),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
922 COEF_CONST(0.9758698998),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
923 COEF_CONST(0.9762037005),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
924 COEF_CONST(0.9765352041),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
925 COEF_CONST(0.9768644098),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
926 COEF_CONST(0.9771913168),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
927 COEF_CONST(0.9775159245),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
928 COEF_CONST(0.9778382319),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
929 COEF_CONST(0.9781582384),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
930 COEF_CONST(0.9784759432),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
931 COEF_CONST(0.9787913456),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
932 COEF_CONST(0.9791044447),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
933 COEF_CONST(0.9794152399),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
934 COEF_CONST(0.9797237305),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
935 COEF_CONST(0.9800299157),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
936 COEF_CONST(0.9803337948),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
937 COEF_CONST(0.9806353670),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
938 COEF_CONST(0.9809346317),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
939 COEF_CONST(0.9812315882),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
940 COEF_CONST(0.9815262358),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
941 COEF_CONST(0.9818185737),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
942 COEF_CONST(0.9821086014),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
943 COEF_CONST(0.9823963180),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
944 COEF_CONST(0.9826817229),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
945 COEF_CONST(0.9829648155),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
946 COEF_CONST(0.9832455951),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
947 COEF_CONST(0.9835240610),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
948 COEF_CONST(0.9838002126),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
949 COEF_CONST(0.9840740493),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
950 COEF_CONST(0.9843455703),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
951 COEF_CONST(0.9846147750),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
952 COEF_CONST(0.9848816628),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
953 COEF_CONST(0.9851462332),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
954 COEF_CONST(0.9854084853),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
955 COEF_CONST(0.9856684187),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
956 COEF_CONST(0.9859260328),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
957 COEF_CONST(0.9861813268),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
958 COEF_CONST(0.9864343003),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
959 COEF_CONST(0.9866849526),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
960 COEF_CONST(0.9869332832),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
961 COEF_CONST(0.9871792914),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
962 COEF_CONST(0.9874229766),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
963 COEF_CONST(0.9876643384),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
964 COEF_CONST(0.9879033761),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
965 COEF_CONST(0.9881400891),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
966 COEF_CONST(0.9883744770),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
967 COEF_CONST(0.9886065391),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
968 COEF_CONST(0.9888362750),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
969 COEF_CONST(0.9890636840),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
970 COEF_CONST(0.9892887657),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
971 COEF_CONST(0.9895115194),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
972 COEF_CONST(0.9897319448),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
973 COEF_CONST(0.9899500412),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
974 COEF_CONST(0.9901658081),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
975 COEF_CONST(0.9903792451),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
976 COEF_CONST(0.9905903517),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
977 COEF_CONST(0.9907991273),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
978 COEF_CONST(0.9910055714),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
979 COEF_CONST(0.9912096836),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
980 COEF_CONST(0.9914114634),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
981 COEF_CONST(0.9916109103),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
982 COEF_CONST(0.9918080239),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
983 COEF_CONST(0.9920028036),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
984 COEF_CONST(0.9921952491),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
985 COEF_CONST(0.9923853598),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
986 COEF_CONST(0.9925731354),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
987 COEF_CONST(0.9927585753),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
988 COEF_CONST(0.9929416792),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
989 COEF_CONST(0.9931224466),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
990 COEF_CONST(0.9933008770),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
991 COEF_CONST(0.9934769702),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
992 COEF_CONST(0.9936507256),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
993 COEF_CONST(0.9938221428),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
994 COEF_CONST(0.9939912215),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
995 COEF_CONST(0.9941579612),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
996 COEF_CONST(0.9943223616),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
997 COEF_CONST(0.9944844222),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
998 COEF_CONST(0.9946441427),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
999 COEF_CONST(0.9948015227),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1000 COEF_CONST(0.9949565619),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1001 COEF_CONST(0.9951092598),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1002 COEF_CONST(0.9952596161),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1003 COEF_CONST(0.9954076305),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1004 COEF_CONST(0.9955533026),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1005 COEF_CONST(0.9956966321),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1006 COEF_CONST(0.9958376186),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1007 COEF_CONST(0.9959762618),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1008 COEF_CONST(0.9961125614),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1009 COEF_CONST(0.9962465170),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1010 COEF_CONST(0.9963781284),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1011 COEF_CONST(0.9965073951),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1012 COEF_CONST(0.9966343170),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1013 COEF_CONST(0.9967588938),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1014 COEF_CONST(0.9968811250),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1015 COEF_CONST(0.9970010105),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1016 COEF_CONST(0.9971185500),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1017 COEF_CONST(0.9972337431),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1018 COEF_CONST(0.9973465897),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1019 COEF_CONST(0.9974570894),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1020 COEF_CONST(0.9975652420),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1021 COEF_CONST(0.9976710472),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1022 COEF_CONST(0.9977745048),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1023 COEF_CONST(0.9978756145),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1024 COEF_CONST(0.9979743762),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1025 COEF_CONST(0.9980707895),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1026 COEF_CONST(0.9981648543),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1027 COEF_CONST(0.9982565703),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1028 COEF_CONST(0.9983459372),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1029 COEF_CONST(0.9984329550),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1030 COEF_CONST(0.9985176234),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1031 COEF_CONST(0.9985999422),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1032 COEF_CONST(0.9986799111),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1033 COEF_CONST(0.9987575301),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1034 COEF_CONST(0.9988327989),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1035 COEF_CONST(0.9989057173),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1036 COEF_CONST(0.9989762853),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1037 COEF_CONST(0.9990445025),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1038 COEF_CONST(0.9991103689),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1039 COEF_CONST(0.9991738843),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1040 COEF_CONST(0.9992350485),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1041 COEF_CONST(0.9992938615),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1042 COEF_CONST(0.9993503230),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1043 COEF_CONST(0.9994044329),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1044 COEF_CONST(0.9994561911),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1045 COEF_CONST(0.9995055976),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1046 COEF_CONST(0.9995526521),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1047 COEF_CONST(0.9995973545),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1048 COEF_CONST(0.9996397048),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1049 COEF_CONST(0.9996797029),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1050 COEF_CONST(0.9997173486),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1051 COEF_CONST(0.9997526418),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1052 COEF_CONST(0.9997855826),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1053 COEF_CONST(0.9998161708),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1054 COEF_CONST(0.9998444063),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1055 COEF_CONST(0.9998702890),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1056 COEF_CONST(0.9998938190),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1057 COEF_CONST(0.9999149961),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1058 COEF_CONST(0.9999338204),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1059 COEF_CONST(0.9999502917),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1060 COEF_CONST(0.9999644100),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1061 COEF_CONST(0.9999761753),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1062 COEF_CONST(0.9999855875),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1063 COEF_CONST(0.9999926467),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1064 COEF_CONST(0.9999973529),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1065 COEF_CONST(0.9999997059)
10725
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
1066 };
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
1067
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
1068 real_t sine_long_960[] =
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
1069 {
10989
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1070 COEF_CONST(0.0008181230),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1071 COEF_CONST(0.0024543669),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1072 COEF_CONST(0.0040906041),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1073 COEF_CONST(0.0057268305),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1074 COEF_CONST(0.0073630415),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1075 COEF_CONST(0.0089992327),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1076 COEF_CONST(0.0106353999),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1077 COEF_CONST(0.0122715386),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1078 COEF_CONST(0.0139076445),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1079 COEF_CONST(0.0155437131),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1080 COEF_CONST(0.0171797401),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1081 COEF_CONST(0.0188157211),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1082 COEF_CONST(0.0204516518),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1083 COEF_CONST(0.0220875276),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1084 COEF_CONST(0.0237233444),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1085 COEF_CONST(0.0253590976),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1086 COEF_CONST(0.0269947829),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1087 COEF_CONST(0.0286303960),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1088 COEF_CONST(0.0302659324),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1089 COEF_CONST(0.0319013878),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1090 COEF_CONST(0.0335367578),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1091 COEF_CONST(0.0351720379),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1092 COEF_CONST(0.0368072240),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1093 COEF_CONST(0.0384423114),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1094 COEF_CONST(0.0400772960),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1095 COEF_CONST(0.0417121732),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1096 COEF_CONST(0.0433469388),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1097 COEF_CONST(0.0449815883),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1098 COEF_CONST(0.0466161174),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1099 COEF_CONST(0.0482505217),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1100 COEF_CONST(0.0498847968),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1101 COEF_CONST(0.0515189384),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1102 COEF_CONST(0.0531529420),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1103 COEF_CONST(0.0547868033),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1104 COEF_CONST(0.0564205179),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1105 COEF_CONST(0.0580540815),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1106 COEF_CONST(0.0596874897),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1107 COEF_CONST(0.0613207380),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1108 COEF_CONST(0.0629538222),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1109 COEF_CONST(0.0645867378),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1110 COEF_CONST(0.0662194805),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1111 COEF_CONST(0.0678520459),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1112 COEF_CONST(0.0694844297),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1113 COEF_CONST(0.0711166274),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1114 COEF_CONST(0.0727486347),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1115 COEF_CONST(0.0743804473),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1116 COEF_CONST(0.0760120607),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1117 COEF_CONST(0.0776434706),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1118 COEF_CONST(0.0792746727),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1119 COEF_CONST(0.0809056625),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1120 COEF_CONST(0.0825364356),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1121 COEF_CONST(0.0841669879),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1122 COEF_CONST(0.0857973147),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1123 COEF_CONST(0.0874274119),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1124 COEF_CONST(0.0890572750),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1125 COEF_CONST(0.0906868996),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1126 COEF_CONST(0.0923162815),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1127 COEF_CONST(0.0939454162),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1128 COEF_CONST(0.0955742994),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1129 COEF_CONST(0.0972029267),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1130 COEF_CONST(0.0988312938),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1131 COEF_CONST(0.1004593962),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1132 COEF_CONST(0.1020872297),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1133 COEF_CONST(0.1037147899),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1134 COEF_CONST(0.1053420724),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1135 COEF_CONST(0.1069690729),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1136 COEF_CONST(0.1085957870),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1137 COEF_CONST(0.1102222103),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1138 COEF_CONST(0.1118483386),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1139 COEF_CONST(0.1134741674),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1140 COEF_CONST(0.1150996924),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1141 COEF_CONST(0.1167249092),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1142 COEF_CONST(0.1183498135),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1143 COEF_CONST(0.1199744010),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1144 COEF_CONST(0.1215986673),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1145 COEF_CONST(0.1232226080),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1146 COEF_CONST(0.1248462188),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1147 COEF_CONST(0.1264694953),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1148 COEF_CONST(0.1280924333),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1149 COEF_CONST(0.1297150283),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1150 COEF_CONST(0.1313372760),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1151 COEF_CONST(0.1329591721),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1152 COEF_CONST(0.1345807122),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1153 COEF_CONST(0.1362018920),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1154 COEF_CONST(0.1378227072),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1155 COEF_CONST(0.1394431534),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1156 COEF_CONST(0.1410632262),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1157 COEF_CONST(0.1426829214),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1158 COEF_CONST(0.1443022345),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1159 COEF_CONST(0.1459211613),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1160 COEF_CONST(0.1475396975),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1161 COEF_CONST(0.1491578386),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1162 COEF_CONST(0.1507755804),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1163 COEF_CONST(0.1523929185),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1164 COEF_CONST(0.1540098486),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1165 COEF_CONST(0.1556263664),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1166 COEF_CONST(0.1572424676),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1167 COEF_CONST(0.1588581477),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1168 COEF_CONST(0.1604734026),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1169 COEF_CONST(0.1620882278),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1170 COEF_CONST(0.1637026190),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1171 COEF_CONST(0.1653165720),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1172 COEF_CONST(0.1669300823),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1173 COEF_CONST(0.1685431457),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1174 COEF_CONST(0.1701557579),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1175 COEF_CONST(0.1717679146),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1176 COEF_CONST(0.1733796113),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1177 COEF_CONST(0.1749908439),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1178 COEF_CONST(0.1766016080),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1179 COEF_CONST(0.1782118992),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1180 COEF_CONST(0.1798217134),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1181 COEF_CONST(0.1814310460),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1182 COEF_CONST(0.1830398930),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1183 COEF_CONST(0.1846482499),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1184 COEF_CONST(0.1862561124),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1185 COEF_CONST(0.1878634763),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1186 COEF_CONST(0.1894703372),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1187 COEF_CONST(0.1910766908),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1188 COEF_CONST(0.1926825329),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1189 COEF_CONST(0.1942878591),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1190 COEF_CONST(0.1958926651),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1191 COEF_CONST(0.1974969467),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1192 COEF_CONST(0.1991006995),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1193 COEF_CONST(0.2007039192),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1194 COEF_CONST(0.2023066016),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1195 COEF_CONST(0.2039087424),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1196 COEF_CONST(0.2055103372),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1197 COEF_CONST(0.2071113819),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1198 COEF_CONST(0.2087118720),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1199 COEF_CONST(0.2103118034),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1200 COEF_CONST(0.2119111716),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1201 COEF_CONST(0.2135099726),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1202 COEF_CONST(0.2151082019),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1203 COEF_CONST(0.2167058553),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1204 COEF_CONST(0.2183029285),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1205 COEF_CONST(0.2198994172),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1206 COEF_CONST(0.2214953172),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1207 COEF_CONST(0.2230906242),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1208 COEF_CONST(0.2246853339),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1209 COEF_CONST(0.2262794421),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1210 COEF_CONST(0.2278729444),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1211 COEF_CONST(0.2294658367),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1212 COEF_CONST(0.2310581146),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1213 COEF_CONST(0.2326497739),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1214 COEF_CONST(0.2342408103),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1215 COEF_CONST(0.2358312196),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1216 COEF_CONST(0.2374209975),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1217 COEF_CONST(0.2390101398),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1218 COEF_CONST(0.2405986421),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1219 COEF_CONST(0.2421865003),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1220 COEF_CONST(0.2437737101),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1221 COEF_CONST(0.2453602672),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1222 COEF_CONST(0.2469461675),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1223 COEF_CONST(0.2485314066),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1224 COEF_CONST(0.2501159802),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1225 COEF_CONST(0.2516998843),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1226 COEF_CONST(0.2532831145),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1227 COEF_CONST(0.2548656665),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1228 COEF_CONST(0.2564475362),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1229 COEF_CONST(0.2580287194),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1230 COEF_CONST(0.2596092117),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1231 COEF_CONST(0.2611890089),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1232 COEF_CONST(0.2627681069),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1233 COEF_CONST(0.2643465014),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1234 COEF_CONST(0.2659241881),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1235 COEF_CONST(0.2675011628),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1236 COEF_CONST(0.2690774214),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1237 COEF_CONST(0.2706529596),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1238 COEF_CONST(0.2722277732),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1239 COEF_CONST(0.2738018579),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1240 COEF_CONST(0.2753752096),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1241 COEF_CONST(0.2769478240),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1242 COEF_CONST(0.2785196969),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1243 COEF_CONST(0.2800908242),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1244 COEF_CONST(0.2816612016),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1245 COEF_CONST(0.2832308248),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1246 COEF_CONST(0.2847996898),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1247 COEF_CONST(0.2863677923),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1248 COEF_CONST(0.2879351281),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1249 COEF_CONST(0.2895016930),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1250 COEF_CONST(0.2910674829),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1251 COEF_CONST(0.2926324934),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1252 COEF_CONST(0.2941967205),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1253 COEF_CONST(0.2957601599),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1254 COEF_CONST(0.2973228075),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1255 COEF_CONST(0.2988846591),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1256 COEF_CONST(0.3004457105),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1257 COEF_CONST(0.3020059575),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1258 COEF_CONST(0.3035653959),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1259 COEF_CONST(0.3051240216),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1260 COEF_CONST(0.3066818303),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1261 COEF_CONST(0.3082388180),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1262 COEF_CONST(0.3097949805),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1263 COEF_CONST(0.3113503135),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1264 COEF_CONST(0.3129048130),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1265 COEF_CONST(0.3144584747),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1266 COEF_CONST(0.3160112945),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1267 COEF_CONST(0.3175632683),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1268 COEF_CONST(0.3191143918),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1269 COEF_CONST(0.3206646610),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1270 COEF_CONST(0.3222140717),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1271 COEF_CONST(0.3237626197),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1272 COEF_CONST(0.3253103009),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1273 COEF_CONST(0.3268571111),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1274 COEF_CONST(0.3284030463),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1275 COEF_CONST(0.3299481022),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1276 COEF_CONST(0.3314922747),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1277 COEF_CONST(0.3330355597),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1278 COEF_CONST(0.3345779531),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1279 COEF_CONST(0.3361194508),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1280 COEF_CONST(0.3376600485),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1281 COEF_CONST(0.3391997422),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1282 COEF_CONST(0.3407385278),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1283 COEF_CONST(0.3422764011),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1284 COEF_CONST(0.3438133581),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1285 COEF_CONST(0.3453493945),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1286 COEF_CONST(0.3468845064),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1287 COEF_CONST(0.3484186895),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1288 COEF_CONST(0.3499519398),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1289 COEF_CONST(0.3514842532),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1290 COEF_CONST(0.3530156256),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1291 COEF_CONST(0.3545460528),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1292 COEF_CONST(0.3560755308),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1293 COEF_CONST(0.3576040555),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1294 COEF_CONST(0.3591316228),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1295 COEF_CONST(0.3606582285),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1296 COEF_CONST(0.3621838687),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1297 COEF_CONST(0.3637085392),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1298 COEF_CONST(0.3652322359),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1299 COEF_CONST(0.3667549548),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1300 COEF_CONST(0.3682766918),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1301 COEF_CONST(0.3697974428),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1302 COEF_CONST(0.3713172038),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1303 COEF_CONST(0.3728359706),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1304 COEF_CONST(0.3743537392),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1305 COEF_CONST(0.3758705056),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1306 COEF_CONST(0.3773862656),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1307 COEF_CONST(0.3789010153),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1308 COEF_CONST(0.3804147505),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1309 COEF_CONST(0.3819274673),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1310 COEF_CONST(0.3834391615),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1311 COEF_CONST(0.3849498291),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1312 COEF_CONST(0.3864594661),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1313 COEF_CONST(0.3879680685),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1314 COEF_CONST(0.3894756321),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1315 COEF_CONST(0.3909821530),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1316 COEF_CONST(0.3924876271),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1317 COEF_CONST(0.3939920504),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1318 COEF_CONST(0.3954954189),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1319 COEF_CONST(0.3969977285),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1320 COEF_CONST(0.3984989752),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1321 COEF_CONST(0.3999991550),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1322 COEF_CONST(0.4014982640),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1323 COEF_CONST(0.4029962979),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1324 COEF_CONST(0.4044932530),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1325 COEF_CONST(0.4059891250),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1326 COEF_CONST(0.4074839102),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1327 COEF_CONST(0.4089776043),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1328 COEF_CONST(0.4104702036),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1329 COEF_CONST(0.4119617038),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1330 COEF_CONST(0.4134521011),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1331 COEF_CONST(0.4149413915),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1332 COEF_CONST(0.4164295710),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1333 COEF_CONST(0.4179166355),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1334 COEF_CONST(0.4194025812),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1335 COEF_CONST(0.4208874040),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1336 COEF_CONST(0.4223710999),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1337 COEF_CONST(0.4238536651),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1338 COEF_CONST(0.4253350954),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1339 COEF_CONST(0.4268153870),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1340 COEF_CONST(0.4282945359),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1341 COEF_CONST(0.4297725381),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1342 COEF_CONST(0.4312493897),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1343 COEF_CONST(0.4327250867),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1344 COEF_CONST(0.4341996252),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1345 COEF_CONST(0.4356730012),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1346 COEF_CONST(0.4371452107),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1347 COEF_CONST(0.4386162499),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1348 COEF_CONST(0.4400861148),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1349 COEF_CONST(0.4415548014),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1350 COEF_CONST(0.4430223059),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1351 COEF_CONST(0.4444886242),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1352 COEF_CONST(0.4459537525),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1353 COEF_CONST(0.4474176869),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1354 COEF_CONST(0.4488804234),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1355 COEF_CONST(0.4503419581),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1356 COEF_CONST(0.4518022871),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1357 COEF_CONST(0.4532614065),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1358 COEF_CONST(0.4547193124),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1359 COEF_CONST(0.4561760009),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1360 COEF_CONST(0.4576314680),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1361 COEF_CONST(0.4590857100),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1362 COEF_CONST(0.4605387228),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1363 COEF_CONST(0.4619905026),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1364 COEF_CONST(0.4634410455),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1365 COEF_CONST(0.4648903477),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1366 COEF_CONST(0.4663384052),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1367 COEF_CONST(0.4677852142),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1368 COEF_CONST(0.4692307707),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1369 COEF_CONST(0.4706750710),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1370 COEF_CONST(0.4721181112),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1371 COEF_CONST(0.4735598874),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1372 COEF_CONST(0.4750003957),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1373 COEF_CONST(0.4764396322),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1374 COEF_CONST(0.4778775932),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1375 COEF_CONST(0.4793142748),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1376 COEF_CONST(0.4807496731),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1377 COEF_CONST(0.4821837843),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1378 COEF_CONST(0.4836166046),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1379 COEF_CONST(0.4850481301),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1380 COEF_CONST(0.4864783569),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1381 COEF_CONST(0.4879072813),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1382 COEF_CONST(0.4893348994),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1383 COEF_CONST(0.4907612075),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1384 COEF_CONST(0.4921862016),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1385 COEF_CONST(0.4936098779),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1386 COEF_CONST(0.4950322328),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1387 COEF_CONST(0.4964532623),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1388 COEF_CONST(0.4978729626),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1389 COEF_CONST(0.4992913300),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1390 COEF_CONST(0.5007083606),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1391 COEF_CONST(0.5021240507),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1392 COEF_CONST(0.5035383964),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1393 COEF_CONST(0.5049513940),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1394 COEF_CONST(0.5063630397),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1395 COEF_CONST(0.5077733298),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1396 COEF_CONST(0.5091822603),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1397 COEF_CONST(0.5105898276),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1398 COEF_CONST(0.5119960280),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1399 COEF_CONST(0.5134008575),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1400 COEF_CONST(0.5148043125),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1401 COEF_CONST(0.5162063893),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1402 COEF_CONST(0.5176070840),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1403 COEF_CONST(0.5190063929),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1404 COEF_CONST(0.5204043123),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1405 COEF_CONST(0.5218008384),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1406 COEF_CONST(0.5231959674),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1407 COEF_CONST(0.5245896958),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1408 COEF_CONST(0.5259820196),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1409 COEF_CONST(0.5273729352),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1410 COEF_CONST(0.5287624389),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1411 COEF_CONST(0.5301505270),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1412 COEF_CONST(0.5315371956),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1413 COEF_CONST(0.5329224412),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1414 COEF_CONST(0.5343062600),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1415 COEF_CONST(0.5356886483),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1416 COEF_CONST(0.5370696023),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1417 COEF_CONST(0.5384491185),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1418 COEF_CONST(0.5398271931),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1419 COEF_CONST(0.5412038224),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1420 COEF_CONST(0.5425790028),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1421 COEF_CONST(0.5439527305),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1422 COEF_CONST(0.5453250019),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1423 COEF_CONST(0.5466958133),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1424 COEF_CONST(0.5480651610),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1425 COEF_CONST(0.5494330413),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1426 COEF_CONST(0.5507994507),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1427 COEF_CONST(0.5521643854),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1428 COEF_CONST(0.5535278418),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1429 COEF_CONST(0.5548898163),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1430 COEF_CONST(0.5562503051),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1431 COEF_CONST(0.5576093047),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1432 COEF_CONST(0.5589668114),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1433 COEF_CONST(0.5603228216),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1434 COEF_CONST(0.5616773317),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1435 COEF_CONST(0.5630303379),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1436 COEF_CONST(0.5643818368),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1437 COEF_CONST(0.5657318246),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1438 COEF_CONST(0.5670802978),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1439 COEF_CONST(0.5684272527),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1440 COEF_CONST(0.5697726858),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1441 COEF_CONST(0.5711165935),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1442 COEF_CONST(0.5724589721),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1443 COEF_CONST(0.5737998180),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1444 COEF_CONST(0.5751391277),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1445 COEF_CONST(0.5764768976),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1446 COEF_CONST(0.5778131241),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1447 COEF_CONST(0.5791478036),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1448 COEF_CONST(0.5804809326),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1449 COEF_CONST(0.5818125074),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1450 COEF_CONST(0.5831425246),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1451 COEF_CONST(0.5844709805),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1452 COEF_CONST(0.5857978716),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1453 COEF_CONST(0.5871231943),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1454 COEF_CONST(0.5884469451),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1455 COEF_CONST(0.5897691205),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1456 COEF_CONST(0.5910897169),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1457 COEF_CONST(0.5924087308),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1458 COEF_CONST(0.5937261586),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1459 COEF_CONST(0.5950419968),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1460 COEF_CONST(0.5963562420),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1461 COEF_CONST(0.5976688905),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1462 COEF_CONST(0.5989799388),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1463 COEF_CONST(0.6002893835),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1464 COEF_CONST(0.6015972211),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1465 COEF_CONST(0.6029034480),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1466 COEF_CONST(0.6042080607),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1467 COEF_CONST(0.6055110558),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1468 COEF_CONST(0.6068124298),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1469 COEF_CONST(0.6081121791),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1470 COEF_CONST(0.6094103003),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1471 COEF_CONST(0.6107067900),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1472 COEF_CONST(0.6120016446),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1473 COEF_CONST(0.6132948607),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1474 COEF_CONST(0.6145864349),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1475 COEF_CONST(0.6158763636),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1476 COEF_CONST(0.6171646434),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1477 COEF_CONST(0.6184512709),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1478 COEF_CONST(0.6197362426),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1479 COEF_CONST(0.6210195550),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1480 COEF_CONST(0.6223012049),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1481 COEF_CONST(0.6235811886),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1482 COEF_CONST(0.6248595028),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1483 COEF_CONST(0.6261361441),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1484 COEF_CONST(0.6274111090),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1485 COEF_CONST(0.6286843942),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1486 COEF_CONST(0.6299559962),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1487 COEF_CONST(0.6312259115),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1488 COEF_CONST(0.6324941370),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1489 COEF_CONST(0.6337606690),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1490 COEF_CONST(0.6350255043),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1491 COEF_CONST(0.6362886394),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1492 COEF_CONST(0.6375500710),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1493 COEF_CONST(0.6388097956),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1494 COEF_CONST(0.6400678100),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1495 COEF_CONST(0.6413241107),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1496 COEF_CONST(0.6425786945),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1497 COEF_CONST(0.6438315578),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1498 COEF_CONST(0.6450826974),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1499 COEF_CONST(0.6463321099),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1500 COEF_CONST(0.6475797920),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1501 COEF_CONST(0.6488257403),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1502 COEF_CONST(0.6500699516),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1503 COEF_CONST(0.6513124223),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1504 COEF_CONST(0.6525531494),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1505 COEF_CONST(0.6537921293),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1506 COEF_CONST(0.6550293589),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1507 COEF_CONST(0.6562648347),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1508 COEF_CONST(0.6574985536),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1509 COEF_CONST(0.6587305121),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1510 COEF_CONST(0.6599607069),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1511 COEF_CONST(0.6611891349),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1512 COEF_CONST(0.6624157927),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1513 COEF_CONST(0.6636406770),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1514 COEF_CONST(0.6648637845),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1515 COEF_CONST(0.6660851120),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1516 COEF_CONST(0.6673046561),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1517 COEF_CONST(0.6685224137),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1518 COEF_CONST(0.6697383815),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1519 COEF_CONST(0.6709525561),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1520 COEF_CONST(0.6721649344),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1521 COEF_CONST(0.6733755132),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1522 COEF_CONST(0.6745842891),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1523 COEF_CONST(0.6757912589),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1524 COEF_CONST(0.6769964195),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1525 COEF_CONST(0.6781997675),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1526 COEF_CONST(0.6794012997),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1527 COEF_CONST(0.6806010131),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1528 COEF_CONST(0.6817989042),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1529 COEF_CONST(0.6829949700),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1530 COEF_CONST(0.6841892071),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1531 COEF_CONST(0.6853816125),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1532 COEF_CONST(0.6865721829),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1533 COEF_CONST(0.6877609152),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1534 COEF_CONST(0.6889478061),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1535 COEF_CONST(0.6901328525),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1536 COEF_CONST(0.6913160512),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1537 COEF_CONST(0.6924973990),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1538 COEF_CONST(0.6936768929),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1539 COEF_CONST(0.6948545295),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1540 COEF_CONST(0.6960303058),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1541 COEF_CONST(0.6972042186),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1542 COEF_CONST(0.6983762648),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1543 COEF_CONST(0.6995464412),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1544 COEF_CONST(0.7007147448),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1545 COEF_CONST(0.7018811723),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1546 COEF_CONST(0.7030457206),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1547 COEF_CONST(0.7042083867),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1548 COEF_CONST(0.7053691674),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1549 COEF_CONST(0.7065280597),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1550 COEF_CONST(0.7076850603),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1551 COEF_CONST(0.7088401663),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1552 COEF_CONST(0.7099933745),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1553 COEF_CONST(0.7111446818),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1554 COEF_CONST(0.7122940851),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1555 COEF_CONST(0.7134415815),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1556 COEF_CONST(0.7145871677),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1557 COEF_CONST(0.7157308408),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1558 COEF_CONST(0.7168725976),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1559 COEF_CONST(0.7180124352),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1560 COEF_CONST(0.7191503504),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1561 COEF_CONST(0.7202863403),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1562 COEF_CONST(0.7214204017),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1563 COEF_CONST(0.7225525317),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1564 COEF_CONST(0.7236827271),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1565 COEF_CONST(0.7248109851),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1566 COEF_CONST(0.7259373025),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1567 COEF_CONST(0.7270616764),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1568 COEF_CONST(0.7281841037),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1569 COEF_CONST(0.7293045814),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1570 COEF_CONST(0.7304231066),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1571 COEF_CONST(0.7315396762),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1572 COEF_CONST(0.7326542872),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1573 COEF_CONST(0.7337669368),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1574 COEF_CONST(0.7348776218),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1575 COEF_CONST(0.7359863393),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1576 COEF_CONST(0.7370930863),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1577 COEF_CONST(0.7381978600),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1578 COEF_CONST(0.7393006572),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1579 COEF_CONST(0.7404014752),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1580 COEF_CONST(0.7415003108),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1581 COEF_CONST(0.7425971612),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1582 COEF_CONST(0.7436920235),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1583 COEF_CONST(0.7447848947),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1584 COEF_CONST(0.7458757719),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1585 COEF_CONST(0.7469646521),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1586 COEF_CONST(0.7480515325),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1587 COEF_CONST(0.7491364101),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1588 COEF_CONST(0.7502192821),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1589 COEF_CONST(0.7513001455),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1590 COEF_CONST(0.7523789975),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1591 COEF_CONST(0.7534558351),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1592 COEF_CONST(0.7545306554),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1593 COEF_CONST(0.7556034557),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1594 COEF_CONST(0.7566742330),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1595 COEF_CONST(0.7577429844),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1596 COEF_CONST(0.7588097072),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1597 COEF_CONST(0.7598743984),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1598 COEF_CONST(0.7609370551),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1599 COEF_CONST(0.7619976746),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1600 COEF_CONST(0.7630562540),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1601 COEF_CONST(0.7641127905),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1602 COEF_CONST(0.7651672812),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1603 COEF_CONST(0.7662197234),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1604 COEF_CONST(0.7672701141),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1605 COEF_CONST(0.7683184506),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1606 COEF_CONST(0.7693647301),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1607 COEF_CONST(0.7704089498),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1608 COEF_CONST(0.7714511069),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1609 COEF_CONST(0.7724911985),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1610 COEF_CONST(0.7735292220),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1611 COEF_CONST(0.7745651745),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1612 COEF_CONST(0.7755990532),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1613 COEF_CONST(0.7766308555),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1614 COEF_CONST(0.7776605784),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1615 COEF_CONST(0.7786882194),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1616 COEF_CONST(0.7797137755),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1617 COEF_CONST(0.7807372441),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1618 COEF_CONST(0.7817586225),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1619 COEF_CONST(0.7827779079),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1620 COEF_CONST(0.7837950975),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1621 COEF_CONST(0.7848101886),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1622 COEF_CONST(0.7858231786),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1623 COEF_CONST(0.7868340647),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1624 COEF_CONST(0.7878428442),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1625 COEF_CONST(0.7888495145),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1626 COEF_CONST(0.7898540727),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1627 COEF_CONST(0.7908565162),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1628 COEF_CONST(0.7918568424),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1629 COEF_CONST(0.7928550486),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1630 COEF_CONST(0.7938511320),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1631 COEF_CONST(0.7948450901),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1632 COEF_CONST(0.7958369201),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1633 COEF_CONST(0.7968266194),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1634 COEF_CONST(0.7978141854),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1635 COEF_CONST(0.7987996154),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1636 COEF_CONST(0.7997829068),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1637 COEF_CONST(0.8007640569),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1638 COEF_CONST(0.8017430631),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1639 COEF_CONST(0.8027199228),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1640 COEF_CONST(0.8036946334),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1641 COEF_CONST(0.8046671923),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1642 COEF_CONST(0.8056375968),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1643 COEF_CONST(0.8066058444),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1644 COEF_CONST(0.8075719325),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1645 COEF_CONST(0.8085358584),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1646 COEF_CONST(0.8094976197),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1647 COEF_CONST(0.8104572137),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1648 COEF_CONST(0.8114146378),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1649 COEF_CONST(0.8123698896),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1650 COEF_CONST(0.8133229663),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1651 COEF_CONST(0.8142738656),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1652 COEF_CONST(0.8152225848),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1653 COEF_CONST(0.8161691215),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1654 COEF_CONST(0.8171134730),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1655 COEF_CONST(0.8180556368),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1656 COEF_CONST(0.8189956104),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1657 COEF_CONST(0.8199333914),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1658 COEF_CONST(0.8208689772),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1659 COEF_CONST(0.8218023652),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1660 COEF_CONST(0.8227335530),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1661 COEF_CONST(0.8236625381),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1662 COEF_CONST(0.8245893180),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1663 COEF_CONST(0.8255138903),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1664 COEF_CONST(0.8264362524),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1665 COEF_CONST(0.8273564019),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1666 COEF_CONST(0.8282743363),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1667 COEF_CONST(0.8291900531),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1668 COEF_CONST(0.8301035500),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1669 COEF_CONST(0.8310148244),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1670 COEF_CONST(0.8319238740),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1671 COEF_CONST(0.8328306962),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1672 COEF_CONST(0.8337352887),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1673 COEF_CONST(0.8346376491),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1674 COEF_CONST(0.8355377749),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1675 COEF_CONST(0.8364356636),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1676 COEF_CONST(0.8373313130),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1677 COEF_CONST(0.8382247206),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1678 COEF_CONST(0.8391158841),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1679 COEF_CONST(0.8400048009),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1680 COEF_CONST(0.8408914688),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1681 COEF_CONST(0.8417758854),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1682 COEF_CONST(0.8426580483),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1683 COEF_CONST(0.8435379552),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1684 COEF_CONST(0.8444156036),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1685 COEF_CONST(0.8452909913),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1686 COEF_CONST(0.8461641159),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1687 COEF_CONST(0.8470349751),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1688 COEF_CONST(0.8479035665),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1689 COEF_CONST(0.8487698878),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1690 COEF_CONST(0.8496339367),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1691 COEF_CONST(0.8504957108),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1692 COEF_CONST(0.8513552080),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1693 COEF_CONST(0.8522124258),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1694 COEF_CONST(0.8530673619),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1695 COEF_CONST(0.8539200142),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1696 COEF_CONST(0.8547703802),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1697 COEF_CONST(0.8556184578),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1698 COEF_CONST(0.8564642446),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1699 COEF_CONST(0.8573077384),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1700 COEF_CONST(0.8581489370),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1701 COEF_CONST(0.8589878380),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1702 COEF_CONST(0.8598244392),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1703 COEF_CONST(0.8606587385),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1704 COEF_CONST(0.8614907335),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1705 COEF_CONST(0.8623204220),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1706 COEF_CONST(0.8631478018),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1707 COEF_CONST(0.8639728707),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1708 COEF_CONST(0.8647956265),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1709 COEF_CONST(0.8656160670),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1710 COEF_CONST(0.8664341900),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1711 COEF_CONST(0.8672499933),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1712 COEF_CONST(0.8680634747),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1713 COEF_CONST(0.8688746320),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1714 COEF_CONST(0.8696834631),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1715 COEF_CONST(0.8704899657),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1716 COEF_CONST(0.8712941378),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1717 COEF_CONST(0.8720959772),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1718 COEF_CONST(0.8728954818),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1719 COEF_CONST(0.8736926493),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1720 COEF_CONST(0.8744874777),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1721 COEF_CONST(0.8752799648),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1722 COEF_CONST(0.8760701085),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1723 COEF_CONST(0.8768579067),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1724 COEF_CONST(0.8776433574),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1725 COEF_CONST(0.8784264583),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1726 COEF_CONST(0.8792072074),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1727 COEF_CONST(0.8799856025),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1728 COEF_CONST(0.8807616417),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1729 COEF_CONST(0.8815353229),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1730 COEF_CONST(0.8823066439),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1731 COEF_CONST(0.8830756027),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1732 COEF_CONST(0.8838421972),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1733 COEF_CONST(0.8846064254),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1734 COEF_CONST(0.8853682853),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1735 COEF_CONST(0.8861277748),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1736 COEF_CONST(0.8868848918),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1737 COEF_CONST(0.8876396344),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1738 COEF_CONST(0.8883920005),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1739 COEF_CONST(0.8891419881),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1740 COEF_CONST(0.8898895952),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1741 COEF_CONST(0.8906348198),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1742 COEF_CONST(0.8913776599),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1743 COEF_CONST(0.8921181136),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1744 COEF_CONST(0.8928561787),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1745 COEF_CONST(0.8935918534),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1746 COEF_CONST(0.8943251357),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1747 COEF_CONST(0.8950560237),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1748 COEF_CONST(0.8957845152),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1749 COEF_CONST(0.8965106085),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1750 COEF_CONST(0.8972343016),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1751 COEF_CONST(0.8979555925),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1752 COEF_CONST(0.8986744793),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1753 COEF_CONST(0.8993909601),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1754 COEF_CONST(0.9001050330),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1755 COEF_CONST(0.9008166959),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1756 COEF_CONST(0.9015259472),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1757 COEF_CONST(0.9022327848),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1758 COEF_CONST(0.9029372068),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1759 COEF_CONST(0.9036392114),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1760 COEF_CONST(0.9043387967),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1761 COEF_CONST(0.9050359608),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1762 COEF_CONST(0.9057307018),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1763 COEF_CONST(0.9064230179),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1764 COEF_CONST(0.9071129073),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1765 COEF_CONST(0.9078003680),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1766 COEF_CONST(0.9084853983),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1767 COEF_CONST(0.9091679963),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1768 COEF_CONST(0.9098481602),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1769 COEF_CONST(0.9105258881),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1770 COEF_CONST(0.9112011783),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1771 COEF_CONST(0.9118740290),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1772 COEF_CONST(0.9125444382),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1773 COEF_CONST(0.9132124044),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1774 COEF_CONST(0.9138779255),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1775 COEF_CONST(0.9145410000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1776 COEF_CONST(0.9152016259),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1777 COEF_CONST(0.9158598016),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1778 COEF_CONST(0.9165155252),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1779 COEF_CONST(0.9171687951),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1780 COEF_CONST(0.9178196094),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1781 COEF_CONST(0.9184679665),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1782 COEF_CONST(0.9191138645),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1783 COEF_CONST(0.9197573017),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1784 COEF_CONST(0.9203982766),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1785 COEF_CONST(0.9210367872),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1786 COEF_CONST(0.9216728319),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1787 COEF_CONST(0.9223064091),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1788 COEF_CONST(0.9229375169),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1789 COEF_CONST(0.9235661538),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1790 COEF_CONST(0.9241923180),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1791 COEF_CONST(0.9248160078),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1792 COEF_CONST(0.9254372217),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1793 COEF_CONST(0.9260559578),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1794 COEF_CONST(0.9266722147),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1795 COEF_CONST(0.9272859906),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1796 COEF_CONST(0.9278972838),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1797 COEF_CONST(0.9285060928),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1798 COEF_CONST(0.9291124159),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1799 COEF_CONST(0.9297162514),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1800 COEF_CONST(0.9303175979),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1801 COEF_CONST(0.9309164536),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1802 COEF_CONST(0.9315128169),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1803 COEF_CONST(0.9321066864),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1804 COEF_CONST(0.9326980603),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1805 COEF_CONST(0.9332869370),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1806 COEF_CONST(0.9338733151),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1807 COEF_CONST(0.9344571929),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1808 COEF_CONST(0.9350385689),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1809 COEF_CONST(0.9356174416),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1810 COEF_CONST(0.9361938093),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1811 COEF_CONST(0.9367676705),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1812 COEF_CONST(0.9373390237),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1813 COEF_CONST(0.9379078674),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1814 COEF_CONST(0.9384742000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1815 COEF_CONST(0.9390380200),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1816 COEF_CONST(0.9395993260),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1817 COEF_CONST(0.9401581163),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1818 COEF_CONST(0.9407143896),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1819 COEF_CONST(0.9412681443),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1820 COEF_CONST(0.9418193789),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1821 COEF_CONST(0.9423680920),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1822 COEF_CONST(0.9429142821),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1823 COEF_CONST(0.9434579477),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1824 COEF_CONST(0.9439990874),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1825 COEF_CONST(0.9445376998),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1826 COEF_CONST(0.9450737833),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1827 COEF_CONST(0.9456073366),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1828 COEF_CONST(0.9461383582),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1829 COEF_CONST(0.9466668467),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1830 COEF_CONST(0.9471928007),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1831 COEF_CONST(0.9477162188),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1832 COEF_CONST(0.9482370995),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1833 COEF_CONST(0.9487554416),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1834 COEF_CONST(0.9492712435),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1835 COEF_CONST(0.9497845040),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1836 COEF_CONST(0.9502952216),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1837 COEF_CONST(0.9508033949),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1838 COEF_CONST(0.9513090227),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1839 COEF_CONST(0.9518121035),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1840 COEF_CONST(0.9523126361),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1841 COEF_CONST(0.9528106190),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1842 COEF_CONST(0.9533060510),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1843 COEF_CONST(0.9537989307),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1844 COEF_CONST(0.9542892567),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1845 COEF_CONST(0.9547770279),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1846 COEF_CONST(0.9552622428),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1847 COEF_CONST(0.9557449002),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1848 COEF_CONST(0.9562249988),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1849 COEF_CONST(0.9567025372),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1850 COEF_CONST(0.9571775143),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1851 COEF_CONST(0.9576499288),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1852 COEF_CONST(0.9581197793),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1853 COEF_CONST(0.9585870647),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1854 COEF_CONST(0.9590517836),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1855 COEF_CONST(0.9595139348),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1856 COEF_CONST(0.9599735172),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1857 COEF_CONST(0.9604305294),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1858 COEF_CONST(0.9608849703),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1859 COEF_CONST(0.9613368385),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1860 COEF_CONST(0.9617861330),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1861 COEF_CONST(0.9622328525),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1862 COEF_CONST(0.9626769958),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1863 COEF_CONST(0.9631185617),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1864 COEF_CONST(0.9635575491),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1865 COEF_CONST(0.9639939567),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1866 COEF_CONST(0.9644277835),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1867 COEF_CONST(0.9648590281),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1868 COEF_CONST(0.9652876896),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1869 COEF_CONST(0.9657137667),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1870 COEF_CONST(0.9661372582),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1871 COEF_CONST(0.9665581632),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1872 COEF_CONST(0.9669764804),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1873 COEF_CONST(0.9673922086),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1874 COEF_CONST(0.9678053469),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1875 COEF_CONST(0.9682158941),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1876 COEF_CONST(0.9686238491),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1877 COEF_CONST(0.9690292108),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1878 COEF_CONST(0.9694319780),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1879 COEF_CONST(0.9698321499),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1880 COEF_CONST(0.9702297252),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1881 COEF_CONST(0.9706247029),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1882 COEF_CONST(0.9710170819),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1883 COEF_CONST(0.9714068613),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1884 COEF_CONST(0.9717940399),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1885 COEF_CONST(0.9721786167),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1886 COEF_CONST(0.9725605907),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1887 COEF_CONST(0.9729399608),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1888 COEF_CONST(0.9733167261),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1889 COEF_CONST(0.9736908855),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1890 COEF_CONST(0.9740624381),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1891 COEF_CONST(0.9744313828),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1892 COEF_CONST(0.9747977187),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1893 COEF_CONST(0.9751614448),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1894 COEF_CONST(0.9755225600),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1895 COEF_CONST(0.9758810635),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1896 COEF_CONST(0.9762369542),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1897 COEF_CONST(0.9765902313),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1898 COEF_CONST(0.9769408937),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1899 COEF_CONST(0.9772889406),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1900 COEF_CONST(0.9776343710),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1901 COEF_CONST(0.9779771840),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1902 COEF_CONST(0.9783173786),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1903 COEF_CONST(0.9786549539),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1904 COEF_CONST(0.9789899092),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1905 COEF_CONST(0.9793222433),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1906 COEF_CONST(0.9796519555),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1907 COEF_CONST(0.9799790449),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1908 COEF_CONST(0.9803035106),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1909 COEF_CONST(0.9806253518),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1910 COEF_CONST(0.9809445675),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1911 COEF_CONST(0.9812611569),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1912 COEF_CONST(0.9815751192),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1913 COEF_CONST(0.9818864535),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1914 COEF_CONST(0.9821951590),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1915 COEF_CONST(0.9825012349),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1916 COEF_CONST(0.9828046803),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1917 COEF_CONST(0.9831054945),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1918 COEF_CONST(0.9834036766),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1919 COEF_CONST(0.9836992258),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1920 COEF_CONST(0.9839921414),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1921 COEF_CONST(0.9842824225),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1922 COEF_CONST(0.9845700684),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1923 COEF_CONST(0.9848550783),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1924 COEF_CONST(0.9851374515),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1925 COEF_CONST(0.9854171871),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1926 COEF_CONST(0.9856942845),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1927 COEF_CONST(0.9859687429),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1928 COEF_CONST(0.9862405616),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1929 COEF_CONST(0.9865097398),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1930 COEF_CONST(0.9867762768),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1931 COEF_CONST(0.9870401719),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1932 COEF_CONST(0.9873014244),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1933 COEF_CONST(0.9875600336),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1934 COEF_CONST(0.9878159988),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1935 COEF_CONST(0.9880693193),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1936 COEF_CONST(0.9883199945),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1937 COEF_CONST(0.9885680237),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1938 COEF_CONST(0.9888134061),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1939 COEF_CONST(0.9890561412),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1940 COEF_CONST(0.9892962283),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1941 COEF_CONST(0.9895336667),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1942 COEF_CONST(0.9897684559),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1943 COEF_CONST(0.9900005952),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1944 COEF_CONST(0.9902300839),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1945 COEF_CONST(0.9904569215),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1946 COEF_CONST(0.9906811073),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1947 COEF_CONST(0.9909026408),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1948 COEF_CONST(0.9911215213),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1949 COEF_CONST(0.9913377484),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1950 COEF_CONST(0.9915513213),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1951 COEF_CONST(0.9917622395),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1952 COEF_CONST(0.9919705024),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1953 COEF_CONST(0.9921761096),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1954 COEF_CONST(0.9923790604),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1955 COEF_CONST(0.9925793543),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1956 COEF_CONST(0.9927769908),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1957 COEF_CONST(0.9929719693),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1958 COEF_CONST(0.9931642894),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1959 COEF_CONST(0.9933539504),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1960 COEF_CONST(0.9935409519),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1961 COEF_CONST(0.9937252935),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1962 COEF_CONST(0.9939069745),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1963 COEF_CONST(0.9940859945),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1964 COEF_CONST(0.9942623531),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1965 COEF_CONST(0.9944360497),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1966 COEF_CONST(0.9946070839),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1967 COEF_CONST(0.9947754553),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1968 COEF_CONST(0.9949411633),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1969 COEF_CONST(0.9951042076),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1970 COEF_CONST(0.9952645877),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1971 COEF_CONST(0.9954223032),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1972 COEF_CONST(0.9955773536),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1973 COEF_CONST(0.9957297385),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1974 COEF_CONST(0.9958794576),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1975 COEF_CONST(0.9960265105),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1976 COEF_CONST(0.9961708966),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1977 COEF_CONST(0.9963126157),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1978 COEF_CONST(0.9964516674),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1979 COEF_CONST(0.9965880513),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1980 COEF_CONST(0.9967217670),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1981 COEF_CONST(0.9968528142),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1982 COEF_CONST(0.9969811925),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1983 COEF_CONST(0.9971069016),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1984 COEF_CONST(0.9972299412),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1985 COEF_CONST(0.9973503108),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1986 COEF_CONST(0.9974680103),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1987 COEF_CONST(0.9975830392),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1988 COEF_CONST(0.9976953973),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1989 COEF_CONST(0.9978050843),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1990 COEF_CONST(0.9979120998),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1991 COEF_CONST(0.9980164436),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1992 COEF_CONST(0.9981181155),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1993 COEF_CONST(0.9982171151),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1994 COEF_CONST(0.9983134421),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1995 COEF_CONST(0.9984070964),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1996 COEF_CONST(0.9984980776),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1997 COEF_CONST(0.9985863855),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1998 COEF_CONST(0.9986720200),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1999 COEF_CONST(0.9987549807),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2000 COEF_CONST(0.9988352674),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2001 COEF_CONST(0.9989128799),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2002 COEF_CONST(0.9989878181),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2003 COEF_CONST(0.9990600816),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2004 COEF_CONST(0.9991296704),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2005 COEF_CONST(0.9991965842),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2006 COEF_CONST(0.9992608228),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2007 COEF_CONST(0.9993223862),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2008 COEF_CONST(0.9993812740),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2009 COEF_CONST(0.9994374862),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2010 COEF_CONST(0.9994910226),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2011 COEF_CONST(0.9995418831),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2012 COEF_CONST(0.9995900674),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2013 COEF_CONST(0.9996355756),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2014 COEF_CONST(0.9996784075),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2015 COEF_CONST(0.9997185629),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2016 COEF_CONST(0.9997560418),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2017 COEF_CONST(0.9997908440),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2018 COEF_CONST(0.9998229695),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2019 COEF_CONST(0.9998524181),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2020 COEF_CONST(0.9998791899),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2021 COEF_CONST(0.9999032846),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2022 COEF_CONST(0.9999247024),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2023 COEF_CONST(0.9999434430),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2024 COEF_CONST(0.9999595065),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2025 COEF_CONST(0.9999728928),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2026 COEF_CONST(0.9999836018),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2027 COEF_CONST(0.9999916336),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2028 COEF_CONST(0.9999969881),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2029 COEF_CONST(0.9999996654)
10725
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
2030 };
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
2031
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
2032 real_t sine_short_128[] =
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
2033 {
10989
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2034 COEF_CONST(0.0061358848),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2035 COEF_CONST(0.0184067304),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2036 COEF_CONST(0.0306748040),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2037 COEF_CONST(0.0429382581),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2038 COEF_CONST(0.0551952459),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2039 COEF_CONST(0.0674439214),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2040 COEF_CONST(0.0796824402),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2041 COEF_CONST(0.0919089590),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2042 COEF_CONST(0.1041216368),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2043 COEF_CONST(0.1163186341),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2044 COEF_CONST(0.1284981143),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2045 COEF_CONST(0.1406582432),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2046 COEF_CONST(0.1527971895),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2047 COEF_CONST(0.1649131250),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2048 COEF_CONST(0.1770042253),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2049 COEF_CONST(0.1890686693),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2050 COEF_CONST(0.2011046404),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2051 COEF_CONST(0.2131103258),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2052 COEF_CONST(0.2250839175),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2053 COEF_CONST(0.2370236125),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2054 COEF_CONST(0.2489276125),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2055 COEF_CONST(0.2607941250),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2056 COEF_CONST(0.2726213628),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2057 COEF_CONST(0.2844075449),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2058 COEF_CONST(0.2961508962),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2059 COEF_CONST(0.3078496483),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2060 COEF_CONST(0.3195020394),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2061 COEF_CONST(0.3311063146),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2062 COEF_CONST(0.3426607265),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2063 COEF_CONST(0.3541635348),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2064 COEF_CONST(0.3656130075),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2065 COEF_CONST(0.3770074202),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2066 COEF_CONST(0.3883450569),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2067 COEF_CONST(0.3996242103),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2068 COEF_CONST(0.4108431818),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2069 COEF_CONST(0.4220002818),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2070 COEF_CONST(0.4330938301),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2071 COEF_CONST(0.4441221560),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2072 COEF_CONST(0.4550835988),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2073 COEF_CONST(0.4659765077),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2074 COEF_CONST(0.4767992422),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2075 COEF_CONST(0.4875501725),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2076 COEF_CONST(0.4982276796),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2077 COEF_CONST(0.5088301553),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2078 COEF_CONST(0.5193560032),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2079 COEF_CONST(0.5298036379),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2080 COEF_CONST(0.5401714861),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2081 COEF_CONST(0.5504579865),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2082 COEF_CONST(0.5606615899),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2083 COEF_CONST(0.5707807598),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2084 COEF_CONST(0.5808139721),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2085 COEF_CONST(0.5907597160),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2086 COEF_CONST(0.6006164937),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2087 COEF_CONST(0.6103828207),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2088 COEF_CONST(0.6200572264),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2089 COEF_CONST(0.6296382536),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2090 COEF_CONST(0.6391244597),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2091 COEF_CONST(0.6485144160),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2092 COEF_CONST(0.6578067083),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2093 COEF_CONST(0.6669999374),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2094 COEF_CONST(0.6760927188),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2095 COEF_CONST(0.6850836831),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2096 COEF_CONST(0.6939714763),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2097 COEF_CONST(0.7027547599),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2098 COEF_CONST(0.7114322112),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2099 COEF_CONST(0.7200025235),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2100 COEF_CONST(0.7284644060),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2101 COEF_CONST(0.7368165845),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2102 COEF_CONST(0.7450578010),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2103 COEF_CONST(0.7531868147),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2104 COEF_CONST(0.7612024011),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2105 COEF_CONST(0.7691033533),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2106 COEF_CONST(0.7768884813),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2107 COEF_CONST(0.7845566127),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2108 COEF_CONST(0.7921065928),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2109 COEF_CONST(0.7995372846),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2110 COEF_CONST(0.8068475690),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2111 COEF_CONST(0.8140363451),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2112 COEF_CONST(0.8211025303),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2113 COEF_CONST(0.8280450605),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2114 COEF_CONST(0.8348628901),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2115 COEF_CONST(0.8415549925),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2116 COEF_CONST(0.8481203597),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2117 COEF_CONST(0.8545580032),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2118 COEF_CONST(0.8608669533),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2119 COEF_CONST(0.8670462601),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2120 COEF_CONST(0.8730949928),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2121 COEF_CONST(0.8790122407),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2122 COEF_CONST(0.8847971125),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2123 COEF_CONST(0.8904487372),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2124 COEF_CONST(0.8959662635),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2125 COEF_CONST(0.9013488606),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2126 COEF_CONST(0.9065957178),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2127 COEF_CONST(0.9117060451),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2128 COEF_CONST(0.9166790728),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2129 COEF_CONST(0.9215140520),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2130 COEF_CONST(0.9262102546),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2131 COEF_CONST(0.9307669733),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2132 COEF_CONST(0.9351835219),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2133 COEF_CONST(0.9394592352),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2134 COEF_CONST(0.9435934695),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2135 COEF_CONST(0.9475856021),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2136 COEF_CONST(0.9514350317),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2137 COEF_CONST(0.9551411788),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2138 COEF_CONST(0.9587034850),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2139 COEF_CONST(0.9621214141),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2140 COEF_CONST(0.9653944512),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2141 COEF_CONST(0.9685221034),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2142 COEF_CONST(0.9715038998),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2143 COEF_CONST(0.9743393912),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2144 COEF_CONST(0.9770281507),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2145 COEF_CONST(0.9795697733),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2146 COEF_CONST(0.9819638764),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2147 COEF_CONST(0.9842100992),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2148 COEF_CONST(0.9863081037),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2149 COEF_CONST(0.9882575738),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2150 COEF_CONST(0.9900582159),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2151 COEF_CONST(0.9917097588),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2152 COEF_CONST(0.9932119539),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2153 COEF_CONST(0.9945645750),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2154 COEF_CONST(0.9957674182),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2155 COEF_CONST(0.9968203026),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2156 COEF_CONST(0.9977230695),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2157 COEF_CONST(0.9984755829),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2158 COEF_CONST(0.9990777296),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2159 COEF_CONST(0.9995294188),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2160 COEF_CONST(0.9998305826),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2161 COEF_CONST(0.9999811755)
10725
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
2162 };
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
2163
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
2164 real_t sine_short_120[] =
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
2165 {
10989
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2166 COEF_CONST(0.0065449381),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2167 COEF_CONST(0.0196336930),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2168 COEF_CONST(0.0327190837),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2169 COEF_CONST(0.0457988682),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2170 COEF_CONST(0.0588708053),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2171 COEF_CONST(0.0719326552),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2172 COEF_CONST(0.0849821797),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2173 COEF_CONST(0.0980171430),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2174 COEF_CONST(0.1110353116),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2175 COEF_CONST(0.1240344549),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2176 COEF_CONST(0.1370123455),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2177 COEF_CONST(0.1499667597),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2178 COEF_CONST(0.1628954779),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2179 COEF_CONST(0.1757962848),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2180 COEF_CONST(0.1886669699),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2181 COEF_CONST(0.2015053279),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2182 COEF_CONST(0.2143091589),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2183 COEF_CONST(0.2270762692),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2184 COEF_CONST(0.2398044712),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2185 COEF_CONST(0.2524915839),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2186 COEF_CONST(0.2651354334),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2187 COEF_CONST(0.2777338534),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2188 COEF_CONST(0.2902846851),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2189 COEF_CONST(0.3027857780),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2190 COEF_CONST(0.3152349901),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2191 COEF_CONST(0.3276301883),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2192 COEF_CONST(0.3399692488),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2193 COEF_CONST(0.3522500573),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2194 COEF_CONST(0.3644705095),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2195 COEF_CONST(0.3766285116),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2196 COEF_CONST(0.3887219804),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2197 COEF_CONST(0.4007488436),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2198 COEF_CONST(0.4127070406),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2199 COEF_CONST(0.4245945223),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2200 COEF_CONST(0.4364092520),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2201 COEF_CONST(0.4481492051),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2202 COEF_CONST(0.4598123703),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2203 COEF_CONST(0.4713967489),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2204 COEF_CONST(0.4829003561),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2205 COEF_CONST(0.4943212208),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2206 COEF_CONST(0.5056573861),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2207 COEF_CONST(0.5169069096),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2208 COEF_CONST(0.5280678638),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2209 COEF_CONST(0.5391383363),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2210 COEF_CONST(0.5501164301),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2211 COEF_CONST(0.5610002644),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2212 COEF_CONST(0.5717879741),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2213 COEF_CONST(0.5824777109),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2214 COEF_CONST(0.5930676432),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2215 COEF_CONST(0.6035559563),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2216 COEF_CONST(0.6139408533),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2217 COEF_CONST(0.6242205546),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2218 COEF_CONST(0.6343932989),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2219 COEF_CONST(0.6444573433),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2220 COEF_CONST(0.6544109631),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2221 COEF_CONST(0.6642524530),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2222 COEF_CONST(0.6739801267),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2223 COEF_CONST(0.6835923173),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2224 COEF_CONST(0.6930873779),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2225 COEF_CONST(0.7024636815),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2226 COEF_CONST(0.7117196216),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2227 COEF_CONST(0.7208536122),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2228 COEF_CONST(0.7298640883),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2229 COEF_CONST(0.7387495058),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2230 COEF_CONST(0.7475083425),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2231 COEF_CONST(0.7561390974),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2232 COEF_CONST(0.7646402918),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2233 COEF_CONST(0.7730104690),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2234 COEF_CONST(0.7812481948),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2235 COEF_CONST(0.7893520577),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2236 COEF_CONST(0.7973206693),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2237 COEF_CONST(0.8051526640),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2238 COEF_CONST(0.8128467000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2239 COEF_CONST(0.8204014588),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2240 COEF_CONST(0.8278156461),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2241 COEF_CONST(0.8350879914),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2242 COEF_CONST(0.8422172487),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2243 COEF_CONST(0.8492021964),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2244 COEF_CONST(0.8560416377),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2245 COEF_CONST(0.8627344006),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2246 COEF_CONST(0.8692793384),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2247 COEF_CONST(0.8756753297),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2248 COEF_CONST(0.8819212785),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2249 COEF_CONST(0.8880161146),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2250 COEF_CONST(0.8939587938),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2251 COEF_CONST(0.8997482976),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2252 COEF_CONST(0.9053836343),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2253 COEF_CONST(0.9108638381),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2254 COEF_CONST(0.9161879700),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2255 COEF_CONST(0.9213551179),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2256 COEF_CONST(0.9263643963),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2257 COEF_CONST(0.9312149469),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2258 COEF_CONST(0.9359059386),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2259 COEF_CONST(0.9404365677),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2260 COEF_CONST(0.9448060577),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2261 COEF_CONST(0.9490136602),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2262 COEF_CONST(0.9530586539),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2263 COEF_CONST(0.9569403460),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2264 COEF_CONST(0.9606580713),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2265 COEF_CONST(0.9642111928),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2266 COEF_CONST(0.9675991016),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2267 COEF_CONST(0.9708212173),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2268 COEF_CONST(0.9738769878),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2269 COEF_CONST(0.9767658894),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2270 COEF_CONST(0.9794874272),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2271 COEF_CONST(0.9820411349),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2272 COEF_CONST(0.9844265749),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2273 COEF_CONST(0.9866433385),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2274 COEF_CONST(0.9886910458),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2275 COEF_CONST(0.9905693459),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2276 COEF_CONST(0.9922779171),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2277 COEF_CONST(0.9938164666),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2278 COEF_CONST(0.9951847307),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2279 COEF_CONST(0.9963824750),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2280 COEF_CONST(0.9974094943),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2281 COEF_CONST(0.9982656127),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2282 COEF_CONST(0.9989506833),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2283 COEF_CONST(0.9994645889),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2284 COEF_CONST(0.9998072413),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2285 COEF_CONST(0.9999785819)
10725
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
2286 };
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
2287
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
2288 #ifdef LD_DEC
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
2289 real_t sine_mid_512[] =
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
2290 {
10989
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2291 COEF_CONST(0.0015339802),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2292 COEF_CONST(0.0046019262),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2293 COEF_CONST(0.0076698290),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2294 COEF_CONST(0.0107376595),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2295 COEF_CONST(0.0138053889),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2296 COEF_CONST(0.0168729884),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2297 COEF_CONST(0.0199404291),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2298 COEF_CONST(0.0230076821),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2299 COEF_CONST(0.0260747186),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2300 COEF_CONST(0.0291415096),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2301 COEF_CONST(0.0322080263),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2302 COEF_CONST(0.0352742399),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2303 COEF_CONST(0.0383401214),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2304 COEF_CONST(0.0414056421),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2305 COEF_CONST(0.0444707731),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2306 COEF_CONST(0.0475354855),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2307 COEF_CONST(0.0505997504),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2308 COEF_CONST(0.0536635391),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2309 COEF_CONST(0.0567268227),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2310 COEF_CONST(0.0597895724),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2311 COEF_CONST(0.0628517593),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2312 COEF_CONST(0.0659133546),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2313 COEF_CONST(0.0689743295),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2314 COEF_CONST(0.0720346552),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2315 COEF_CONST(0.0750943029),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2316 COEF_CONST(0.0781532438),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2317 COEF_CONST(0.0812114491),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2318 COEF_CONST(0.0842688899),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2319 COEF_CONST(0.0873255376),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2320 COEF_CONST(0.0903813634),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2321 COEF_CONST(0.0934363384),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2322 COEF_CONST(0.0964904340),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2323 COEF_CONST(0.0995436214),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2324 COEF_CONST(0.1025958719),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2325 COEF_CONST(0.1056471566),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2326 COEF_CONST(0.1086974470),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2327 COEF_CONST(0.1117467143),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2328 COEF_CONST(0.1147949298),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2329 COEF_CONST(0.1178420648),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2330 COEF_CONST(0.1208880906),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2331 COEF_CONST(0.1239329785),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2332 COEF_CONST(0.1269767000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2333 COEF_CONST(0.1300192263),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2334 COEF_CONST(0.1330605288),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2335 COEF_CONST(0.1361005789),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2336 COEF_CONST(0.1391393480),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2337 COEF_CONST(0.1421768074),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2338 COEF_CONST(0.1452129287),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2339 COEF_CONST(0.1482476831),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2340 COEF_CONST(0.1512810421),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2341 COEF_CONST(0.1543129773),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2342 COEF_CONST(0.1573434600),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2343 COEF_CONST(0.1603724617),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2344 COEF_CONST(0.1633999539),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2345 COEF_CONST(0.1664259081),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2346 COEF_CONST(0.1694502959),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2347 COEF_CONST(0.1724730887),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2348 COEF_CONST(0.1754942582),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2349 COEF_CONST(0.1785137759),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2350 COEF_CONST(0.1815316133),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2351 COEF_CONST(0.1845477420),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2352 COEF_CONST(0.1875621337),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2353 COEF_CONST(0.1905747601),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2354 COEF_CONST(0.1935855926),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2355 COEF_CONST(0.1965946031),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2356 COEF_CONST(0.1996017631),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2357 COEF_CONST(0.2026070444),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2358 COEF_CONST(0.2056104187),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2359 COEF_CONST(0.2086118577),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2360 COEF_CONST(0.2116113332),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2361 COEF_CONST(0.2146088169),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2362 COEF_CONST(0.2176042806),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2363 COEF_CONST(0.2205976961),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2364 COEF_CONST(0.2235890353),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2365 COEF_CONST(0.2265782700),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2366 COEF_CONST(0.2295653721),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2367 COEF_CONST(0.2325503134),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2368 COEF_CONST(0.2355330658),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2369 COEF_CONST(0.2385136014),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2370 COEF_CONST(0.2414918919),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2371 COEF_CONST(0.2444679094),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2372 COEF_CONST(0.2474416259),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2373 COEF_CONST(0.2504130134),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2374 COEF_CONST(0.2533820439),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2375 COEF_CONST(0.2563486895),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2376 COEF_CONST(0.2593129222),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2377 COEF_CONST(0.2622747142),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2378 COEF_CONST(0.2652340375),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2379 COEF_CONST(0.2681908643),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2380 COEF_CONST(0.2711451669),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2381 COEF_CONST(0.2740969173),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2382 COEF_CONST(0.2770460878),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2383 COEF_CONST(0.2799926507),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2384 COEF_CONST(0.2829365781),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2385 COEF_CONST(0.2858778425),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2386 COEF_CONST(0.2888164160),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2387 COEF_CONST(0.2917522711),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2388 COEF_CONST(0.2946853801),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2389 COEF_CONST(0.2976157155),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2390 COEF_CONST(0.3005432495),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2391 COEF_CONST(0.3034679547),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2392 COEF_CONST(0.3063898036),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2393 COEF_CONST(0.3093087686),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2394 COEF_CONST(0.3122248223),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2395 COEF_CONST(0.3151379372),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2396 COEF_CONST(0.3180480859),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2397 COEF_CONST(0.3209552410),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2398 COEF_CONST(0.3238593752),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2399 COEF_CONST(0.3267604611),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2400 COEF_CONST(0.3296584714),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2401 COEF_CONST(0.3325533788),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2402 COEF_CONST(0.3354451561),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2403 COEF_CONST(0.3383337760),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2404 COEF_CONST(0.3412192114),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2405 COEF_CONST(0.3441014352),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2406 COEF_CONST(0.3469804201),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2407 COEF_CONST(0.3498561391),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2408 COEF_CONST(0.3527285651),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2409 COEF_CONST(0.3555976712),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2410 COEF_CONST(0.3584634302),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2411 COEF_CONST(0.3613258152),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2412 COEF_CONST(0.3641847992),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2413 COEF_CONST(0.3670403554),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2414 COEF_CONST(0.3698924569),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2415 COEF_CONST(0.3727410769),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2416 COEF_CONST(0.3755861884),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2417 COEF_CONST(0.3784277648),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2418 COEF_CONST(0.3812657793),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2419 COEF_CONST(0.3841002051),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2420 COEF_CONST(0.3869310157),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2421 COEF_CONST(0.3897581843),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2422 COEF_CONST(0.3925816844),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2423 COEF_CONST(0.3954014893),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2424 COEF_CONST(0.3982175726),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2425 COEF_CONST(0.4010299077),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2426 COEF_CONST(0.4038384682),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2427 COEF_CONST(0.4066432275),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2428 COEF_CONST(0.4094441594),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2429 COEF_CONST(0.4122412374),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2430 COEF_CONST(0.4150344353),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2431 COEF_CONST(0.4178237267),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2432 COEF_CONST(0.4206090854),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2433 COEF_CONST(0.4233904852),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2434 COEF_CONST(0.4261678998),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2435 COEF_CONST(0.4289413032),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2436 COEF_CONST(0.4317106692),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2437 COEF_CONST(0.4344759718),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2438 COEF_CONST(0.4372371850),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2439 COEF_CONST(0.4399942827),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2440 COEF_CONST(0.4427472390),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2441 COEF_CONST(0.4454960280),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2442 COEF_CONST(0.4482406238),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2443 COEF_CONST(0.4509810007),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2444 COEF_CONST(0.4537171327),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2445 COEF_CONST(0.4564489941),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2446 COEF_CONST(0.4591765593),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2447 COEF_CONST(0.4618998026),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2448 COEF_CONST(0.4646186982),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2449 COEF_CONST(0.4673332207),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2450 COEF_CONST(0.4700433445),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2451 COEF_CONST(0.4727490440),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2452 COEF_CONST(0.4754502939),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2453 COEF_CONST(0.4781470686),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2454 COEF_CONST(0.4808393428),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2455 COEF_CONST(0.4835270912),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2456 COEF_CONST(0.4862102885),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2457 COEF_CONST(0.4888889093),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2458 COEF_CONST(0.4915629286),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2459 COEF_CONST(0.4942323210),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2460 COEF_CONST(0.4968970616),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2461 COEF_CONST(0.4995571252),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2462 COEF_CONST(0.5022124867),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2463 COEF_CONST(0.5048631212),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2464 COEF_CONST(0.5075090038),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2465 COEF_CONST(0.5101501095),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2466 COEF_CONST(0.5127864135),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2467 COEF_CONST(0.5154178909),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2468 COEF_CONST(0.5180445171),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2469 COEF_CONST(0.5206662672),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2470 COEF_CONST(0.5232831165),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2471 COEF_CONST(0.5258950406),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2472 COEF_CONST(0.5285020147),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2473 COEF_CONST(0.5311040144),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2474 COEF_CONST(0.5337010151),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2475 COEF_CONST(0.5362929924),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2476 COEF_CONST(0.5388799219),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2477 COEF_CONST(0.5414617792),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2478 COEF_CONST(0.5440385402),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2479 COEF_CONST(0.5466101804),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2480 COEF_CONST(0.5491766757),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2481 COEF_CONST(0.5517380020),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2482 COEF_CONST(0.5542941351),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2483 COEF_CONST(0.5568450509),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2484 COEF_CONST(0.5593907256),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2485 COEF_CONST(0.5619311350),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2486 COEF_CONST(0.5644662553),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2487 COEF_CONST(0.5669960626),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2488 COEF_CONST(0.5695205332),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2489 COEF_CONST(0.5720396432),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2490 COEF_CONST(0.5745533690),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2491 COEF_CONST(0.5770616868),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2492 COEF_CONST(0.5795645732),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2493 COEF_CONST(0.5820620044),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2494 COEF_CONST(0.5845539570),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2495 COEF_CONST(0.5870404077),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2496 COEF_CONST(0.5895213328),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2497 COEF_CONST(0.5919967092),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2498 COEF_CONST(0.5944665134),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2499 COEF_CONST(0.5969307223),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2500 COEF_CONST(0.5993893127),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2501 COEF_CONST(0.6018422614),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2502 COEF_CONST(0.6042895453),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2503 COEF_CONST(0.6067311415),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2504 COEF_CONST(0.6091670268),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2505 COEF_CONST(0.6115971784),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2506 COEF_CONST(0.6140215735),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2507 COEF_CONST(0.6164401891),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2508 COEF_CONST(0.6188530025),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2509 COEF_CONST(0.6212599911),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2510 COEF_CONST(0.6236611322),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2511 COEF_CONST(0.6260564031),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2512 COEF_CONST(0.6284457813),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2513 COEF_CONST(0.6308292444),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2514 COEF_CONST(0.6332067698),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2515 COEF_CONST(0.6355783353),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2516 COEF_CONST(0.6379439184),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2517 COEF_CONST(0.6403034970),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2518 COEF_CONST(0.6426570488),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2519 COEF_CONST(0.6450045517),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2520 COEF_CONST(0.6473459836),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2521 COEF_CONST(0.6496813224),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2522 COEF_CONST(0.6520105461),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2523 COEF_CONST(0.6543336328),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2524 COEF_CONST(0.6566505608),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2525 COEF_CONST(0.6589613080),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2526 COEF_CONST(0.6612658529),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2527 COEF_CONST(0.6635641737),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2528 COEF_CONST(0.6658562488),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2529 COEF_CONST(0.6681420566),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2530 COEF_CONST(0.6704215756),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2531 COEF_CONST(0.6726947843),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2532 COEF_CONST(0.6749616613),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2533 COEF_CONST(0.6772221854),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2534 COEF_CONST(0.6794763352),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2535 COEF_CONST(0.6817240894),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2536 COEF_CONST(0.6839654271),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2537 COEF_CONST(0.6862003270),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2538 COEF_CONST(0.6884287681),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2539 COEF_CONST(0.6906507295),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2540 COEF_CONST(0.6928661902),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2541 COEF_CONST(0.6950751294),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2542 COEF_CONST(0.6972775262),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2543 COEF_CONST(0.6994733600),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2544 COEF_CONST(0.7016626102),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2545 COEF_CONST(0.7038452560),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2546 COEF_CONST(0.7060212769),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2547 COEF_CONST(0.7081906525),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2548 COEF_CONST(0.7103533623),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2549 COEF_CONST(0.7125093860),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2550 COEF_CONST(0.7146587034),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2551 COEF_CONST(0.7168012940),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2552 COEF_CONST(0.7189371379),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2553 COEF_CONST(0.7210662148),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2554 COEF_CONST(0.7231885048),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2555 COEF_CONST(0.7253039879),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2556 COEF_CONST(0.7274126442),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2557 COEF_CONST(0.7295144537),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2558 COEF_CONST(0.7316093968),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2559 COEF_CONST(0.7336974537),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2560 COEF_CONST(0.7357786047),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2561 COEF_CONST(0.7378528304),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2562 COEF_CONST(0.7399201111),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2563 COEF_CONST(0.7419804273),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2564 COEF_CONST(0.7440337598),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2565 COEF_CONST(0.7460800891),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2566 COEF_CONST(0.7481193961),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2567 COEF_CONST(0.7501516614),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2568 COEF_CONST(0.7521768661),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2569 COEF_CONST(0.7541949909),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2570 COEF_CONST(0.7562060170),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2571 COEF_CONST(0.7582099254),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2572 COEF_CONST(0.7602066973),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2573 COEF_CONST(0.7621963137),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2574 COEF_CONST(0.7641787561),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2575 COEF_CONST(0.7661540058),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2576 COEF_CONST(0.7681220441),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2577 COEF_CONST(0.7700828526),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2578 COEF_CONST(0.7720364128),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2579 COEF_CONST(0.7739827062),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2580 COEF_CONST(0.7759217146),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2581 COEF_CONST(0.7778534198),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2582 COEF_CONST(0.7797778035),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2583 COEF_CONST(0.7816948476),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2584 COEF_CONST(0.7836045342),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2585 COEF_CONST(0.7855068451),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2586 COEF_CONST(0.7874017626),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2587 COEF_CONST(0.7892892687),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2588 COEF_CONST(0.7911693458),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2589 COEF_CONST(0.7930419760),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2590 COEF_CONST(0.7949071418),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2591 COEF_CONST(0.7967648257),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2592 COEF_CONST(0.7986150101),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2593 COEF_CONST(0.8004576777),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2594 COEF_CONST(0.8022928110),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2595 COEF_CONST(0.8041203929),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2596 COEF_CONST(0.8059404060),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2597 COEF_CONST(0.8077528334),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2598 COEF_CONST(0.8095576578),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2599 COEF_CONST(0.8113548624),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2600 COEF_CONST(0.8131444302),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2601 COEF_CONST(0.8149263444),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2602 COEF_CONST(0.8167005882),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2603 COEF_CONST(0.8184671449),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2604 COEF_CONST(0.8202259979),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2605 COEF_CONST(0.8219771306),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2606 COEF_CONST(0.8237205265),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2607 COEF_CONST(0.8254561693),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2608 COEF_CONST(0.8271840425),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2609 COEF_CONST(0.8289041300),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2610 COEF_CONST(0.8306164155),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2611 COEF_CONST(0.8323208829),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2612 COEF_CONST(0.8340175162),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2613 COEF_CONST(0.8357062995),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2614 COEF_CONST(0.8373872167),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2615 COEF_CONST(0.8390602521),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2616 COEF_CONST(0.8407253900),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2617 COEF_CONST(0.8423826147),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2618 COEF_CONST(0.8440319105),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2619 COEF_CONST(0.8456732620),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2620 COEF_CONST(0.8473066536),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2621 COEF_CONST(0.8489320701),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2622 COEF_CONST(0.8505494961),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2623 COEF_CONST(0.8521589165),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2624 COEF_CONST(0.8537603160),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2625 COEF_CONST(0.8553536795),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2626 COEF_CONST(0.8569389922),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2627 COEF_CONST(0.8585162390),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2628 COEF_CONST(0.8600854051),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2629 COEF_CONST(0.8616464758),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2630 COEF_CONST(0.8631994363),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2631 COEF_CONST(0.8647442721),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2632 COEF_CONST(0.8662809686),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2633 COEF_CONST(0.8678095113),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2634 COEF_CONST(0.8693298858),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2635 COEF_CONST(0.8708420779),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2636 COEF_CONST(0.8723460733),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2637 COEF_CONST(0.8738418578),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2638 COEF_CONST(0.8753294174),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2639 COEF_CONST(0.8768087381),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2640 COEF_CONST(0.8782798059),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2641 COEF_CONST(0.8797426070),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2642 COEF_CONST(0.8811971277),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2643 COEF_CONST(0.8826433541),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2644 COEF_CONST(0.8840812728),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2645 COEF_CONST(0.8855108702),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2646 COEF_CONST(0.8869321328),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2647 COEF_CONST(0.8883450473),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2648 COEF_CONST(0.8897496003),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2649 COEF_CONST(0.8911457787),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2650 COEF_CONST(0.8925335692),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2651 COEF_CONST(0.8939129589),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2652 COEF_CONST(0.8952839348),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2653 COEF_CONST(0.8966464839),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2654 COEF_CONST(0.8980005934),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2655 COEF_CONST(0.8993462506),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2656 COEF_CONST(0.9006834428),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2657 COEF_CONST(0.9020121574),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2658 COEF_CONST(0.9033323820),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2659 COEF_CONST(0.9046441040),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2660 COEF_CONST(0.9059473112),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2661 COEF_CONST(0.9072419912),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2662 COEF_CONST(0.9085281320),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2663 COEF_CONST(0.9098057213),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2664 COEF_CONST(0.9110747472),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2665 COEF_CONST(0.9123351977),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2666 COEF_CONST(0.9135870610),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2667 COEF_CONST(0.9148303252),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2668 COEF_CONST(0.9160649787),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2669 COEF_CONST(0.9172910099),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2670 COEF_CONST(0.9185084071),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2671 COEF_CONST(0.9197171590),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2672 COEF_CONST(0.9209172542),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2673 COEF_CONST(0.9221086814),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2674 COEF_CONST(0.9232914293),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2675 COEF_CONST(0.9244654868),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2676 COEF_CONST(0.9256308430),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2677 COEF_CONST(0.9267874867),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2678 COEF_CONST(0.9279354072),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2679 COEF_CONST(0.9290745935),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2680 COEF_CONST(0.9302050351),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2681 COEF_CONST(0.9313267212),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2682 COEF_CONST(0.9324396413),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2683 COEF_CONST(0.9335437850),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2684 COEF_CONST(0.9346391418),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2685 COEF_CONST(0.9357257014),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2686 COEF_CONST(0.9368034535),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2687 COEF_CONST(0.9378723882),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2688 COEF_CONST(0.9389324952),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2689 COEF_CONST(0.9399837646),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2690 COEF_CONST(0.9410261866),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2691 COEF_CONST(0.9420597512),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2692 COEF_CONST(0.9430844489),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2693 COEF_CONST(0.9441002698),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2694 COEF_CONST(0.9451072045),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2695 COEF_CONST(0.9461052436),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2696 COEF_CONST(0.9470943775),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2697 COEF_CONST(0.9480745970),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2698 COEF_CONST(0.9490458928),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2699 COEF_CONST(0.9500082559),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2700 COEF_CONST(0.9509616771),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2701 COEF_CONST(0.9519061475),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2702 COEF_CONST(0.9528416583),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2703 COEF_CONST(0.9537682005),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2704 COEF_CONST(0.9546857654),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2705 COEF_CONST(0.9555943446),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2706 COEF_CONST(0.9564939293),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2707 COEF_CONST(0.9573845111),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2708 COEF_CONST(0.9582660816),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2709 COEF_CONST(0.9591386326),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2710 COEF_CONST(0.9600021558),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2711 COEF_CONST(0.9608566431),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2712 COEF_CONST(0.9617020864),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2713 COEF_CONST(0.9625384778),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2714 COEF_CONST(0.9633658095),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2715 COEF_CONST(0.9641840736),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2716 COEF_CONST(0.9649932624),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2717 COEF_CONST(0.9657933683),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2718 COEF_CONST(0.9665843838),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2719 COEF_CONST(0.9673663015),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2720 COEF_CONST(0.9681391139),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2721 COEF_CONST(0.9689028139),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2722 COEF_CONST(0.9696573941),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2723 COEF_CONST(0.9704028476),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2724 COEF_CONST(0.9711391673),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2725 COEF_CONST(0.9718663462),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2726 COEF_CONST(0.9725843776),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2727 COEF_CONST(0.9732932546),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2728 COEF_CONST(0.9739929706),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2729 COEF_CONST(0.9746835191),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2730 COEF_CONST(0.9753648934),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2731 COEF_CONST(0.9760370872),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2732 COEF_CONST(0.9767000942),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2733 COEF_CONST(0.9773539081),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2734 COEF_CONST(0.9779985228),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2735 COEF_CONST(0.9786339322),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2736 COEF_CONST(0.9792601304),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2737 COEF_CONST(0.9798771113),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2738 COEF_CONST(0.9804848693),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2739 COEF_CONST(0.9810833986),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2740 COEF_CONST(0.9816726935),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2741 COEF_CONST(0.9822527486),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2742 COEF_CONST(0.9828235583),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2743 COEF_CONST(0.9833851173),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2744 COEF_CONST(0.9839374204),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2745 COEF_CONST(0.9844804622),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2746 COEF_CONST(0.9850142377),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2747 COEF_CONST(0.9855387419),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2748 COEF_CONST(0.9860539698),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2749 COEF_CONST(0.9865599167),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2750 COEF_CONST(0.9870565776),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2751 COEF_CONST(0.9875439480),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2752 COEF_CONST(0.9880220232),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2753 COEF_CONST(0.9884907988),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2754 COEF_CONST(0.9889502704),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2755 COEF_CONST(0.9894004335),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2756 COEF_CONST(0.9898412841),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2757 COEF_CONST(0.9902728179),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2758 COEF_CONST(0.9906950309),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2759 COEF_CONST(0.9911079190),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2760 COEF_CONST(0.9915114785),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2761 COEF_CONST(0.9919057055),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2762 COEF_CONST(0.9922905963),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2763 COEF_CONST(0.9926661473),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2764 COEF_CONST(0.9930323550),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2765 COEF_CONST(0.9933892158),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2766 COEF_CONST(0.9937367265),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2767 COEF_CONST(0.9940748837),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2768 COEF_CONST(0.9944036844),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2769 COEF_CONST(0.9947231253),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2770 COEF_CONST(0.9950332035),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2771 COEF_CONST(0.9953339161),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2772 COEF_CONST(0.9956252602),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2773 COEF_CONST(0.9959072331),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2774 COEF_CONST(0.9961798322),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2775 COEF_CONST(0.9964430548),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2776 COEF_CONST(0.9966968986),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2777 COEF_CONST(0.9969413610),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2778 COEF_CONST(0.9971764399),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2779 COEF_CONST(0.9974021329),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2780 COEF_CONST(0.9976184380),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2781 COEF_CONST(0.9978253532),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2782 COEF_CONST(0.9980228764),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2783 COEF_CONST(0.9982110059),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2784 COEF_CONST(0.9983897398),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2785 COEF_CONST(0.9985590765),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2786 COEF_CONST(0.9987190144),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2787 COEF_CONST(0.9988695519),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2788 COEF_CONST(0.9990106877),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2789 COEF_CONST(0.9991424205),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2790 COEF_CONST(0.9992647489),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2791 COEF_CONST(0.9993776719),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2792 COEF_CONST(0.9994811883),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2793 COEF_CONST(0.9995752973),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2794 COEF_CONST(0.9996599979),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2795 COEF_CONST(0.9997352893),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2796 COEF_CONST(0.9998011707),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2797 COEF_CONST(0.9998576417),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2798 COEF_CONST(0.9999047017),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2799 COEF_CONST(0.9999423501),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2800 COEF_CONST(0.9999705868),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2801 COEF_CONST(0.9999894113),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2802 COEF_CONST(0.9999988235)
10725
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
2803 };
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
2804
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
2805 real_t sine_mid_480[] =
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
2806 {
10989
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2807 COEF_CONST(0.0016362455),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2808 COEF_CONST(0.0049087189),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2809 COEF_CONST(0.0081811398),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2810 COEF_CONST(0.0114534731),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2811 COEF_CONST(0.0147256837),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2812 COEF_CONST(0.0179977366),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2813 COEF_CONST(0.0212695968),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2814 COEF_CONST(0.0245412292),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2815 COEF_CONST(0.0278125988),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2816 COEF_CONST(0.0310836705),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2817 COEF_CONST(0.0343544094),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2818 COEF_CONST(0.0376247803),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2819 COEF_CONST(0.0408947483),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2820 COEF_CONST(0.0441642784),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2821 COEF_CONST(0.0474333354),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2822 COEF_CONST(0.0507018846),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2823 COEF_CONST(0.0539698907),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2824 COEF_CONST(0.0572373189),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2825 COEF_CONST(0.0605041341),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2826 COEF_CONST(0.0637703013),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2827 COEF_CONST(0.0670357857),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2828 COEF_CONST(0.0703005521),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2829 COEF_CONST(0.0735645656),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2830 COEF_CONST(0.0768277914),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2831 COEF_CONST(0.0800901944),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2832 COEF_CONST(0.0833517396),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2833 COEF_CONST(0.0866123923),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2834 COEF_CONST(0.0898721174),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2835 COEF_CONST(0.0931308800),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2836 COEF_CONST(0.0963886453),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2837 COEF_CONST(0.0996453784),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2838 COEF_CONST(0.1029010443),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2839 COEF_CONST(0.1061556082),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2840 COEF_CONST(0.1094090353),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2841 COEF_CONST(0.1126612907),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2842 COEF_CONST(0.1159123396),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2843 COEF_CONST(0.1191621472),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2844 COEF_CONST(0.1224106786),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2845 COEF_CONST(0.1256578991),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2846 COEF_CONST(0.1289037739),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2847 COEF_CONST(0.1321482683),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2848 COEF_CONST(0.1353913474),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2849 COEF_CONST(0.1386329767),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2850 COEF_CONST(0.1418731213),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2851 COEF_CONST(0.1451117465),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2852 COEF_CONST(0.1483488177),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2853 COEF_CONST(0.1515843002),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2854 COEF_CONST(0.1548181594),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2855 COEF_CONST(0.1580503605),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2856 COEF_CONST(0.1612808691),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2857 COEF_CONST(0.1645096505),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2858 COEF_CONST(0.1677366702),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2859 COEF_CONST(0.1709618935),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2860 COEF_CONST(0.1741852859),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2861 COEF_CONST(0.1774068130),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2862 COEF_CONST(0.1806264402),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2863 COEF_CONST(0.1838441330),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2864 COEF_CONST(0.1870598570),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2865 COEF_CONST(0.1902735777),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2866 COEF_CONST(0.1934852607),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2867 COEF_CONST(0.1966948717),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2868 COEF_CONST(0.1999023762),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2869 COEF_CONST(0.2031077400),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2870 COEF_CONST(0.2063109286),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2871 COEF_CONST(0.2095119078),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2872 COEF_CONST(0.2127106433),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2873 COEF_CONST(0.2159071008),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2874 COEF_CONST(0.2191012462),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2875 COEF_CONST(0.2222930451),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2876 COEF_CONST(0.2254824635),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2877 COEF_CONST(0.2286694671),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2878 COEF_CONST(0.2318540218),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2879 COEF_CONST(0.2350360936),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2880 COEF_CONST(0.2382156484),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2881 COEF_CONST(0.2413926520),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2882 COEF_CONST(0.2445670705),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2883 COEF_CONST(0.2477388699),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2884 COEF_CONST(0.2509080162),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2885 COEF_CONST(0.2540744755),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2886 COEF_CONST(0.2572382139),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2887 COEF_CONST(0.2603991974),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2888 COEF_CONST(0.2635573923),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2889 COEF_CONST(0.2667127647),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2890 COEF_CONST(0.2698652808),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2891 COEF_CONST(0.2730149069),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2892 COEF_CONST(0.2761616092),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2893 COEF_CONST(0.2793053540),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2894 COEF_CONST(0.2824461077),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2895 COEF_CONST(0.2855838367),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2896 COEF_CONST(0.2887185072),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2897 COEF_CONST(0.2918500858),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2898 COEF_CONST(0.2949785389),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2899 COEF_CONST(0.2981038331),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2900 COEF_CONST(0.3012259348),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2901 COEF_CONST(0.3043448106),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2902 COEF_CONST(0.3074604271),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2903 COEF_CONST(0.3105727510),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2904 COEF_CONST(0.3136817488),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2905 COEF_CONST(0.3167873874),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2906 COEF_CONST(0.3198896335),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2907 COEF_CONST(0.3229884538),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2908 COEF_CONST(0.3260838151),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2909 COEF_CONST(0.3291756844),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2910 COEF_CONST(0.3322640284),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2911 COEF_CONST(0.3353488142),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2912 COEF_CONST(0.3384300086),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2913 COEF_CONST(0.3415075788),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2914 COEF_CONST(0.3445814916),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2915 COEF_CONST(0.3476517143),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2916 COEF_CONST(0.3507182139),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2917 COEF_CONST(0.3537809576),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2918 COEF_CONST(0.3568399126),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2919 COEF_CONST(0.3598950461),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2920 COEF_CONST(0.3629463254),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2921 COEF_CONST(0.3659937179),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2922 COEF_CONST(0.3690371908),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2923 COEF_CONST(0.3720767117),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2924 COEF_CONST(0.3751122479),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2925 COEF_CONST(0.3781437670),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2926 COEF_CONST(0.3811712365),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2927 COEF_CONST(0.3841946239),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2928 COEF_CONST(0.3872138969),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2929 COEF_CONST(0.3902290232),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2930 COEF_CONST(0.3932399704),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2931 COEF_CONST(0.3962467063),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2932 COEF_CONST(0.3992491987),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2933 COEF_CONST(0.4022474156),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2934 COEF_CONST(0.4052413246),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2935 COEF_CONST(0.4082308939),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2936 COEF_CONST(0.4112160913),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2937 COEF_CONST(0.4141968849),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2938 COEF_CONST(0.4171732429),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2939 COEF_CONST(0.4201451332),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2940 COEF_CONST(0.4231125241),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2941 COEF_CONST(0.4260753838),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2942 COEF_CONST(0.4290336806),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2943 COEF_CONST(0.4319873828),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2944 COEF_CONST(0.4349364587),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2945 COEF_CONST(0.4378808768),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2946 COEF_CONST(0.4408206056),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2947 COEF_CONST(0.4437556136),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2948 COEF_CONST(0.4466858692),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2949 COEF_CONST(0.4496113412),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2950 COEF_CONST(0.4525319983),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2951 COEF_CONST(0.4554478091),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2952 COEF_CONST(0.4583587424),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2953 COEF_CONST(0.4612647671),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2954 COEF_CONST(0.4641658519),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2955 COEF_CONST(0.4670619660),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2956 COEF_CONST(0.4699530782),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2957 COEF_CONST(0.4728391575),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2958 COEF_CONST(0.4757201731),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2959 COEF_CONST(0.4785960942),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2960 COEF_CONST(0.4814668899),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2961 COEF_CONST(0.4843325294),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2962 COEF_CONST(0.4871929822),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2963 COEF_CONST(0.4900482174),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2964 COEF_CONST(0.4928982047),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2965 COEF_CONST(0.4957429134),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2966 COEF_CONST(0.4985823131),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2967 COEF_CONST(0.5014163734),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2968 COEF_CONST(0.5042450640),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2969 COEF_CONST(0.5070683544),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2970 COEF_CONST(0.5098862146),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2971 COEF_CONST(0.5126986143),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2972 COEF_CONST(0.5155055234),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2973 COEF_CONST(0.5183069119),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2974 COEF_CONST(0.5211027497),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2975 COEF_CONST(0.5238930069),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2976 COEF_CONST(0.5266776537),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2977 COEF_CONST(0.5294566601),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2978 COEF_CONST(0.5322299965),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2979 COEF_CONST(0.5349976332),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2980 COEF_CONST(0.5377595404),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2981 COEF_CONST(0.5405156887),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2982 COEF_CONST(0.5432660485),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2983 COEF_CONST(0.5460105903),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2984 COEF_CONST(0.5487492848),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2985 COEF_CONST(0.5514821026),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2986 COEF_CONST(0.5542090145),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2987 COEF_CONST(0.5569299913),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2988 COEF_CONST(0.5596450038),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2989 COEF_CONST(0.5623540230),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2990 COEF_CONST(0.5650570198),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2991 COEF_CONST(0.5677539653),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2992 COEF_CONST(0.5704448306),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2993 COEF_CONST(0.5731295868),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2994 COEF_CONST(0.5758082054),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2995 COEF_CONST(0.5784806575),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2996 COEF_CONST(0.5811469145),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2997 COEF_CONST(0.5838069479),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2998 COEF_CONST(0.5864607292),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2999 COEF_CONST(0.5891082300),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3000 COEF_CONST(0.5917494219),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3001 COEF_CONST(0.5943842766),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3002 COEF_CONST(0.5970127660),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3003 COEF_CONST(0.5996348618),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3004 COEF_CONST(0.6022505361),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3005 COEF_CONST(0.6048597607),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3006 COEF_CONST(0.6074625077),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3007 COEF_CONST(0.6100587493),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3008 COEF_CONST(0.6126484577),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3009 COEF_CONST(0.6152316051),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3010 COEF_CONST(0.6178081639),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3011 COEF_CONST(0.6203781064),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3012 COEF_CONST(0.6229414052),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3013 COEF_CONST(0.6254980328),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3014 COEF_CONST(0.6280479618),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3015 COEF_CONST(0.6305911649),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3016 COEF_CONST(0.6331276149),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3017 COEF_CONST(0.6356572846),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3018 COEF_CONST(0.6381801469),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3019 COEF_CONST(0.6406961748),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3020 COEF_CONST(0.6432053414),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3021 COEF_CONST(0.6457076197),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3022 COEF_CONST(0.6482029831),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3023 COEF_CONST(0.6506914047),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3024 COEF_CONST(0.6531728580),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3025 COEF_CONST(0.6556473162),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3026 COEF_CONST(0.6581147531),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3027 COEF_CONST(0.6605751420),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3028 COEF_CONST(0.6630284567),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3029 COEF_CONST(0.6654746709),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3030 COEF_CONST(0.6679137584),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3031 COEF_CONST(0.6703456931),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3032 COEF_CONST(0.6727704490),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3033 COEF_CONST(0.6751880000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3034 COEF_CONST(0.6775983202),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3035 COEF_CONST(0.6800013840),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3036 COEF_CONST(0.6823971654),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3037 COEF_CONST(0.6847856390),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3038 COEF_CONST(0.6871667790),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3039 COEF_CONST(0.6895405601),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3040 COEF_CONST(0.6919069567),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3041 COEF_CONST(0.6942659435),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3042 COEF_CONST(0.6966174953),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3043 COEF_CONST(0.6989615869),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3044 COEF_CONST(0.7012981932),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3045 COEF_CONST(0.7036272892),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3046 COEF_CONST(0.7059488498),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3047 COEF_CONST(0.7082628503),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3048 COEF_CONST(0.7105692659),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3049 COEF_CONST(0.7128680719),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3050 COEF_CONST(0.7151592436),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3051 COEF_CONST(0.7174427565),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3052 COEF_CONST(0.7197185862),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3053 COEF_CONST(0.7219867083),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3054 COEF_CONST(0.7242470985),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3055 COEF_CONST(0.7264997326),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3056 COEF_CONST(0.7287445864),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3057 COEF_CONST(0.7309816360),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3058 COEF_CONST(0.7332108574),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3059 COEF_CONST(0.7354322266),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3060 COEF_CONST(0.7376457200),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3061 COEF_CONST(0.7398513138),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3062 COEF_CONST(0.7420489844),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3063 COEF_CONST(0.7442387082),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3064 COEF_CONST(0.7464204618),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3065 COEF_CONST(0.7485942218),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3066 COEF_CONST(0.7507599651),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3067 COEF_CONST(0.7529176682),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3068 COEF_CONST(0.7550673083),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3069 COEF_CONST(0.7572088621),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3070 COEF_CONST(0.7593423069),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3071 COEF_CONST(0.7614676197),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3072 COEF_CONST(0.7635847778),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3073 COEF_CONST(0.7656937585),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3074 COEF_CONST(0.7677945393),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3075 COEF_CONST(0.7698870976),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3076 COEF_CONST(0.7719714111),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3077 COEF_CONST(0.7740474573),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3078 COEF_CONST(0.7761152141),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3079 COEF_CONST(0.7781746593),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3080 COEF_CONST(0.7802257710),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3081 COEF_CONST(0.7822685270),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3082 COEF_CONST(0.7843029055),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3083 COEF_CONST(0.7863288848),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3084 COEF_CONST(0.7883464432),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3085 COEF_CONST(0.7903555590),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3086 COEF_CONST(0.7923562107),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3087 COEF_CONST(0.7943483769),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3088 COEF_CONST(0.7963320363),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3089 COEF_CONST(0.7983071676),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3090 COEF_CONST(0.8002737497),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3091 COEF_CONST(0.8022317615),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3092 COEF_CONST(0.8041811820),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3093 COEF_CONST(0.8061219904),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3094 COEF_CONST(0.8080541659),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3095 COEF_CONST(0.8099776877),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3096 COEF_CONST(0.8118925354),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3097 COEF_CONST(0.8137986883),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3098 COEF_CONST(0.8156961261),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3099 COEF_CONST(0.8175848285),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3100 COEF_CONST(0.8194647752),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3101 COEF_CONST(0.8213359460),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3102 COEF_CONST(0.8231983211),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3103 COEF_CONST(0.8250518803),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3104 COEF_CONST(0.8268966039),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3105 COEF_CONST(0.8287324721),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3106 COEF_CONST(0.8305594652),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3107 COEF_CONST(0.8323775637),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3108 COEF_CONST(0.8341867481),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3109 COEF_CONST(0.8359869990),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3110 COEF_CONST(0.8377782972),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3111 COEF_CONST(0.8395606235),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3112 COEF_CONST(0.8413339587),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3113 COEF_CONST(0.8430982839),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3114 COEF_CONST(0.8448535802),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3115 COEF_CONST(0.8465998288),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3116 COEF_CONST(0.8483370110),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3117 COEF_CONST(0.8500651082),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3118 COEF_CONST(0.8517841019),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3119 COEF_CONST(0.8534939737),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3120 COEF_CONST(0.8551947052),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3121 COEF_CONST(0.8568862783),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3122 COEF_CONST(0.8585686748),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3123 COEF_CONST(0.8602418767),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3124 COEF_CONST(0.8619058662),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3125 COEF_CONST(0.8635606253),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3126 COEF_CONST(0.8652061363),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3127 COEF_CONST(0.8668423818),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3128 COEF_CONST(0.8684693440),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3129 COEF_CONST(0.8700870056),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3130 COEF_CONST(0.8716953493),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3131 COEF_CONST(0.8732943578),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3132 COEF_CONST(0.8748840140),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3133 COEF_CONST(0.8764643010),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3134 COEF_CONST(0.8780352017),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3135 COEF_CONST(0.8795966993),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3136 COEF_CONST(0.8811487772),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3137 COEF_CONST(0.8826914187),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3138 COEF_CONST(0.8842246072),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3139 COEF_CONST(0.8857483265),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3140 COEF_CONST(0.8872625600),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3141 COEF_CONST(0.8887672917),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3142 COEF_CONST(0.8902625055),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3143 COEF_CONST(0.8917481852),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3144 COEF_CONST(0.8932243150),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3145 COEF_CONST(0.8946908791),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3146 COEF_CONST(0.8961478618),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3147 COEF_CONST(0.8975952475),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3148 COEF_CONST(0.8990330206),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3149 COEF_CONST(0.9004611658),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3150 COEF_CONST(0.9018796678),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3151 COEF_CONST(0.9032885114),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3152 COEF_CONST(0.9046876815),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3153 COEF_CONST(0.9060771631),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3154 COEF_CONST(0.9074569413),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3155 COEF_CONST(0.9088270015),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3156 COEF_CONST(0.9101873288),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3157 COEF_CONST(0.9115379087),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3158 COEF_CONST(0.9128787268),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3159 COEF_CONST(0.9142097687),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3160 COEF_CONST(0.9155310202),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3161 COEF_CONST(0.9168424670),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3162 COEF_CONST(0.9181440952),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3163 COEF_CONST(0.9194358908),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3164 COEF_CONST(0.9207178400),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3165 COEF_CONST(0.9219899290),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3166 COEF_CONST(0.9232521443),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3167 COEF_CONST(0.9245044723),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3168 COEF_CONST(0.9257468996),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3169 COEF_CONST(0.9269794128),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3170 COEF_CONST(0.9282019989),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3171 COEF_CONST(0.9294146447),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3172 COEF_CONST(0.9306173372),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3173 COEF_CONST(0.9318100635),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3174 COEF_CONST(0.9329928109),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3175 COEF_CONST(0.9341655667),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3176 COEF_CONST(0.9353283183),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3177 COEF_CONST(0.9364810533),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3178 COEF_CONST(0.9376237593),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3179 COEF_CONST(0.9387564242),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3180 COEF_CONST(0.9398790357),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3181 COEF_CONST(0.9409915818),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3182 COEF_CONST(0.9420940507),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3183 COEF_CONST(0.9431864306),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3184 COEF_CONST(0.9442687096),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3185 COEF_CONST(0.9453408763),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3186 COEF_CONST(0.9464029192),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3187 COEF_CONST(0.9474548268),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3188 COEF_CONST(0.9484965880),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3189 COEF_CONST(0.9495281915),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3190 COEF_CONST(0.9505496264),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3191 COEF_CONST(0.9515608816),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3192 COEF_CONST(0.9525619463),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3193 COEF_CONST(0.9535528099),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3194 COEF_CONST(0.9545334617),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3195 COEF_CONST(0.9555038913),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3196 COEF_CONST(0.9564640881),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3197 COEF_CONST(0.9574140420),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3198 COEF_CONST(0.9583537427),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3199 COEF_CONST(0.9592831803),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3200 COEF_CONST(0.9602023446),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3201 COEF_CONST(0.9611112260),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3202 COEF_CONST(0.9620098147),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3203 COEF_CONST(0.9628981010),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3204 COEF_CONST(0.9637760755),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3205 COEF_CONST(0.9646437286),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3206 COEF_CONST(0.9655010512),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3207 COEF_CONST(0.9663480341),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3208 COEF_CONST(0.9671846682),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3209 COEF_CONST(0.9680109445),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3210 COEF_CONST(0.9688268541),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3211 COEF_CONST(0.9696323885),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3212 COEF_CONST(0.9704275388),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3213 COEF_CONST(0.9712122966),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3214 COEF_CONST(0.9719866535),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3215 COEF_CONST(0.9727506013),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3216 COEF_CONST(0.9735041316),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3217 COEF_CONST(0.9742472365),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3218 COEF_CONST(0.9749799080),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3219 COEF_CONST(0.9757021383),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3220 COEF_CONST(0.9764139195),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3221 COEF_CONST(0.9771152442),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3222 COEF_CONST(0.9778061047),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3223 COEF_CONST(0.9784864937),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3224 COEF_CONST(0.9791564039),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3225 COEF_CONST(0.9798158282),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3226 COEF_CONST(0.9804647593),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3227 COEF_CONST(0.9811031905),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3228 COEF_CONST(0.9817311149),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3229 COEF_CONST(0.9823485257),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3230 COEF_CONST(0.9829554164),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3231 COEF_CONST(0.9835517804),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3232 COEF_CONST(0.9841376113),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3233 COEF_CONST(0.9847129029),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3234 COEF_CONST(0.9852776490),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3235 COEF_CONST(0.9858318436),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3236 COEF_CONST(0.9863754808),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3237 COEF_CONST(0.9869085546),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3238 COEF_CONST(0.9874310595),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3239 COEF_CONST(0.9879429897),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3240 COEF_CONST(0.9884443399),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3241 COEF_CONST(0.9889351046),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3242 COEF_CONST(0.9894152786),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3243 COEF_CONST(0.9898848568),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3244 COEF_CONST(0.9903438341),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3245 COEF_CONST(0.9907922056),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3246 COEF_CONST(0.9912299666),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3247 COEF_CONST(0.9916571122),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3248 COEF_CONST(0.9920736380),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3249 COEF_CONST(0.9924795395),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3250 COEF_CONST(0.9928748124),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3251 COEF_CONST(0.9932594523),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3252 COEF_CONST(0.9936334552),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3253 COEF_CONST(0.9939968171),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3254 COEF_CONST(0.9943495342),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3255 COEF_CONST(0.9946916025),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3256 COEF_CONST(0.9950230184),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3257 COEF_CONST(0.9953437785),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3258 COEF_CONST(0.9956538793),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3259 COEF_CONST(0.9959533173),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3260 COEF_CONST(0.9962420896),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3261 COEF_CONST(0.9965201929),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3262 COEF_CONST(0.9967876242),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3263 COEF_CONST(0.9970443807),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3264 COEF_CONST(0.9972904597),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3265 COEF_CONST(0.9975258586),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3266 COEF_CONST(0.9977505747),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3267 COEF_CONST(0.9979646057),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3268 COEF_CONST(0.9981679493),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3269 COEF_CONST(0.9983606034),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3270 COEF_CONST(0.9985425657),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3271 COEF_CONST(0.9987138346),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3272 COEF_CONST(0.9988744079),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3273 COEF_CONST(0.9990242842),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3274 COEF_CONST(0.9991634617),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3275 COEF_CONST(0.9992919389),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3276 COEF_CONST(0.9994097146),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3277 COEF_CONST(0.9995167873),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3278 COEF_CONST(0.9996131561),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3279 COEF_CONST(0.9996988198),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3280 COEF_CONST(0.9997737775),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3281 COEF_CONST(0.9998380284),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3282 COEF_CONST(0.9998915719),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3283 COEF_CONST(0.9999344073),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3284 COEF_CONST(0.9999665343),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3285 COEF_CONST(0.9999879524),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3286 COEF_CONST(0.9999986614)
10725
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
3287 };
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
3288
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
3289 real_t ld_mid_512[] =
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
3290 {
10989
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3291 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3292 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3293 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3294 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3295 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3296 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3297 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3298 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3299 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3300 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3301 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3302 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3303 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3304 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3305 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3306 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3307 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3308 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3309 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3310 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3311 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3312 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3313 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3314 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3315 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3316 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3317 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3318 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3319 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3320 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3321 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3322 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3323 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3324 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3325 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3326 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3327 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3328 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3329 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3330 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3331 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3332 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3333 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3334 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3335 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3336 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3337 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3338 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3339 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3340 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3341 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3342 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3343 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3344 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3345 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3346 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3347 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3348 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3349 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3350 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3351 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3352 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3353 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3354 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3355 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3356 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3357 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3358 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3359 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3360 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3361 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3362 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3363 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3364 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3365 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3366 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3367 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3368 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3369 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3370 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3371 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3372 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3373 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3374 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3375 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3376 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3377 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3378 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3379 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3380 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3381 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3382 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3383 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3384 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3385 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3386 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3387 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3388 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3389 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3390 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3391 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3392 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3393 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3394 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3395 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3396 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3397 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3398 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3399 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3400 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3401 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3402 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3403 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3404 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3405 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3406 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3407 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3408 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3409 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3410 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3411 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3412 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3413 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3414 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3415 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3416 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3417 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3418 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3419 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3420 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3421 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3422 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3423 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3424 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3425 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3426 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3427 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3428 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3429 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3430 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3431 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3432 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3433 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3434 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3435 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3436 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3437 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3438 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3439 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3440 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3441 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3442 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3443 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3444 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3445 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3446 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3447 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3448 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3449 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3450 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3451 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3452 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3453 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3454 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3455 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3456 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3457 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3458 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3459 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3460 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3461 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3462 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3463 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3464 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3465 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3466 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3467 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3468 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3469 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3470 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3471 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3472 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3473 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3474 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3475 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3476 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3477 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3478 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3479 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3480 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3481 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3482 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3483 COEF_CONST(0.0061358848),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3484 COEF_CONST(0.0184067304),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3485 COEF_CONST(0.0306748040),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3486 COEF_CONST(0.0429382581),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3487 COEF_CONST(0.0551952459),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3488 COEF_CONST(0.0674439214),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3489 COEF_CONST(0.0796824402),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3490 COEF_CONST(0.0919089590),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3491 COEF_CONST(0.1041216368),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3492 COEF_CONST(0.1163186341),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3493 COEF_CONST(0.1284981143),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3494 COEF_CONST(0.1406582432),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3495 COEF_CONST(0.1527971895),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3496 COEF_CONST(0.1649131250),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3497 COEF_CONST(0.1770042253),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3498 COEF_CONST(0.1890686693),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3499 COEF_CONST(0.2011046404),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3500 COEF_CONST(0.2131103258),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3501 COEF_CONST(0.2250839175),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3502 COEF_CONST(0.2370236125),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3503 COEF_CONST(0.2489276125),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3504 COEF_CONST(0.2607941250),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3505 COEF_CONST(0.2726213628),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3506 COEF_CONST(0.2844075449),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3507 COEF_CONST(0.2961508962),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3508 COEF_CONST(0.3078496483),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3509 COEF_CONST(0.3195020394),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3510 COEF_CONST(0.3311063146),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3511 COEF_CONST(0.3426607265),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3512 COEF_CONST(0.3541635348),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3513 COEF_CONST(0.3656130075),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3514 COEF_CONST(0.3770074202),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3515 COEF_CONST(0.3883450569),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3516 COEF_CONST(0.3996242103),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3517 COEF_CONST(0.4108431818),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3518 COEF_CONST(0.4220002818),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3519 COEF_CONST(0.4330938301),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3520 COEF_CONST(0.4441221560),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3521 COEF_CONST(0.4550835988),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3522 COEF_CONST(0.4659765077),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3523 COEF_CONST(0.4767992422),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3524 COEF_CONST(0.4875501725),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3525 COEF_CONST(0.4982276796),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3526 COEF_CONST(0.5088301553),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3527 COEF_CONST(0.5193560032),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3528 COEF_CONST(0.5298036379),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3529 COEF_CONST(0.5401714861),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3530 COEF_CONST(0.5504579865),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3531 COEF_CONST(0.5606615899),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3532 COEF_CONST(0.5707807598),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3533 COEF_CONST(0.5808139721),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3534 COEF_CONST(0.5907597160),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3535 COEF_CONST(0.6006164937),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3536 COEF_CONST(0.6103828207),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3537 COEF_CONST(0.6200572264),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3538 COEF_CONST(0.6296382536),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3539 COEF_CONST(0.6391244597),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3540 COEF_CONST(0.6485144160),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3541 COEF_CONST(0.6578067083),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3542 COEF_CONST(0.6669999374),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3543 COEF_CONST(0.6760927188),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3544 COEF_CONST(0.6850836831),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3545 COEF_CONST(0.6939714763),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3546 COEF_CONST(0.7027547599),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3547 COEF_CONST(0.7114322112),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3548 COEF_CONST(0.7200025235),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3549 COEF_CONST(0.7284644060),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3550 COEF_CONST(0.7368165845),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3551 COEF_CONST(0.7450578010),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3552 COEF_CONST(0.7531868147),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3553 COEF_CONST(0.7612024011),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3554 COEF_CONST(0.7691033533),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3555 COEF_CONST(0.7768884813),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3556 COEF_CONST(0.7845566127),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3557 COEF_CONST(0.7921065928),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3558 COEF_CONST(0.7995372846),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3559 COEF_CONST(0.8068475690),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3560 COEF_CONST(0.8140363451),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3561 COEF_CONST(0.8211025303),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3562 COEF_CONST(0.8280450605),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3563 COEF_CONST(0.8348628901),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3564 COEF_CONST(0.8415549925),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3565 COEF_CONST(0.8481203597),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3566 COEF_CONST(0.8545580032),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3567 COEF_CONST(0.8608669533),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3568 COEF_CONST(0.8670462601),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3569 COEF_CONST(0.8730949928),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3570 COEF_CONST(0.8790122407),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3571 COEF_CONST(0.8847971125),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3572 COEF_CONST(0.8904487372),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3573 COEF_CONST(0.8959662635),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3574 COEF_CONST(0.9013488606),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3575 COEF_CONST(0.9065957178),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3576 COEF_CONST(0.9117060451),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3577 COEF_CONST(0.9166790728),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3578 COEF_CONST(0.9215140520),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3579 COEF_CONST(0.9262102546),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3580 COEF_CONST(0.9307669733),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3581 COEF_CONST(0.9351835219),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3582 COEF_CONST(0.9394592352),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3583 COEF_CONST(0.9435934695),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3584 COEF_CONST(0.9475856021),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3585 COEF_CONST(0.9514350317),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3586 COEF_CONST(0.9551411788),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3587 COEF_CONST(0.9587034850),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3588 COEF_CONST(0.9621214141),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3589 COEF_CONST(0.9653944512),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3590 COEF_CONST(0.9685221034),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3591 COEF_CONST(0.9715038998),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3592 COEF_CONST(0.9743393912),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3593 COEF_CONST(0.9770281507),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3594 COEF_CONST(0.9795697733),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3595 COEF_CONST(0.9819638764),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3596 COEF_CONST(0.9842100992),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3597 COEF_CONST(0.9863081037),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3598 COEF_CONST(0.9882575738),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3599 COEF_CONST(0.9900582159),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3600 COEF_CONST(0.9917097588),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3601 COEF_CONST(0.9932119539),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3602 COEF_CONST(0.9945645750),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3603 COEF_CONST(0.9957674182),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3604 COEF_CONST(0.9968203026),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3605 COEF_CONST(0.9977230695),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3606 COEF_CONST(0.9984755829),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3607 COEF_CONST(0.9990777296),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3608 COEF_CONST(0.9995294188),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3609 COEF_CONST(0.9998305826),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3610 COEF_CONST(0.9999811755),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3611 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3612 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3613 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3614 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3615 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3616 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3617 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3618 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3619 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3620 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3621 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3622 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3623 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3624 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3625 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3626 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3627 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3628 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3629 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3630 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3631 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3632 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3633 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3634 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3635 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3636 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3637 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3638 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3639 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3640 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3641 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3642 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3643 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3644 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3645 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3646 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3647 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3648 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3649 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3650 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3651 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3652 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3653 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3654 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3655 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3656 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3657 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3658 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3659 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3660 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3661 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3662 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3663 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3664 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3665 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3666 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3667 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3668 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3669 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3670 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3671 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3672 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3673 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3674 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3675 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3676 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3677 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3678 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3679 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3680 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3681 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3682 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3683 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3684 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3685 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3686 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3687 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3688 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3689 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3690 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3691 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3692 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3693 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3694 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3695 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3696 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3697 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3698 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3699 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3700 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3701 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3702 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3703 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3704 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3705 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3706 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3707 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3708 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3709 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3710 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3711 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3712 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3713 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3714 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3715 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3716 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3717 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3718 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3719 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3720 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3721 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3722 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3723 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3724 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3725 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3726 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3727 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3728 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3729 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3730 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3731 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3732 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3733 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3734 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3735 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3736 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3737 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3738 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3739 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3740 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3741 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3742 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3743 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3744 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3745 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3746 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3747 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3748 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3749 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3750 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3751 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3752 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3753 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3754 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3755 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3756 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3757 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3758 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3759 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3760 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3761 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3762 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3763 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3764 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3765 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3766 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3767 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3768 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3769 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3770 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3771 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3772 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3773 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3774 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3775 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3776 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3777 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3778 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3779 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3780 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3781 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3782 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3783 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3784 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3785 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3786 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3787 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3788 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3789 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3790 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3791 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3792 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3793 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3794 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3795 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3796 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3797 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3798 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3799 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3800 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3801 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3802 COEF_CONST(1.0000000000)
10725
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
3803 };
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
3804
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
3805 real_t ld_mid_480[] =
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
3806 {
10989
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3807 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3808 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3809 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3810 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3811 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3812 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3813 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3814 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3815 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3816 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3817 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3818 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3819 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3820 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3821 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3822 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3823 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3824 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3825 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3826 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3827 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3828 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3829 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3830 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3831 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3832 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3833 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3834 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3835 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3836 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3837 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3838 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3839 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3840 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3841 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3842 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3843 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3844 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3845 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3846 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3847 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3848 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3849 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3850 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3851 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3852 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3853 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3854 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3855 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3856 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3857 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3858 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3859 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3860 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3861 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3862 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3863 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3864 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3865 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3866 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3867 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3868 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3869 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3870 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3871 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3872 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3873 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3874 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3875 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3876 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3877 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3878 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3879 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3880 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3881 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3882 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3883 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3884 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3885 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3886 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3887 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3888 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3889 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3890 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3891 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3892 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3893 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3894 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3895 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3896 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3897 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3898 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3899 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3900 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3901 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3902 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3903 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3904 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3905 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3906 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3907 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3908 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3909 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3910 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3911 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3912 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3913 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3914 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3915 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3916 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3917 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3918 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3919 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3920 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3921 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3922 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3923 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3924 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3925 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3926 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3927 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3928 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3929 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3930 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3931 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3932 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3933 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3934 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3935 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3936 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3937 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3938 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3939 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3940 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3941 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3942 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3943 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3944 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3945 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3946 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3947 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3948 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3949 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3950 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3951 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3952 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3953 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3954 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3955 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3956 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3957 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3958 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3959 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3960 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3961 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3962 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3963 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3964 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3965 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3966 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3967 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3968 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3969 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3970 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3971 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3972 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3973 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3974 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3975 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3976 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3977 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3978 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3979 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3980 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3981 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3982 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3983 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3984 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3985 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3986 COEF_CONST(0.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3987 COEF_CONST(0.0065449381),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3988 COEF_CONST(0.0196336930),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3989 COEF_CONST(0.0327190837),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3990 COEF_CONST(0.0457988682),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3991 COEF_CONST(0.0588708053),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3992 COEF_CONST(0.0719326552),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3993 COEF_CONST(0.0849821797),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3994 COEF_CONST(0.0980171430),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3995 COEF_CONST(0.1110353116),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3996 COEF_CONST(0.1240344549),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3997 COEF_CONST(0.1370123455),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3998 COEF_CONST(0.1499667597),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3999 COEF_CONST(0.1628954779),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4000 COEF_CONST(0.1757962848),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4001 COEF_CONST(0.1886669699),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4002 COEF_CONST(0.2015053279),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4003 COEF_CONST(0.2143091589),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4004 COEF_CONST(0.2270762692),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4005 COEF_CONST(0.2398044712),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4006 COEF_CONST(0.2524915839),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4007 COEF_CONST(0.2651354334),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4008 COEF_CONST(0.2777338534),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4009 COEF_CONST(0.2902846851),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4010 COEF_CONST(0.3027857780),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4011 COEF_CONST(0.3152349901),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4012 COEF_CONST(0.3276301883),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4013 COEF_CONST(0.3399692488),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4014 COEF_CONST(0.3522500573),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4015 COEF_CONST(0.3644705095),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4016 COEF_CONST(0.3766285116),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4017 COEF_CONST(0.3887219804),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4018 COEF_CONST(0.4007488436),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4019 COEF_CONST(0.4127070406),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4020 COEF_CONST(0.4245945223),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4021 COEF_CONST(0.4364092520),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4022 COEF_CONST(0.4481492051),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4023 COEF_CONST(0.4598123703),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4024 COEF_CONST(0.4713967489),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4025 COEF_CONST(0.4829003561),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4026 COEF_CONST(0.4943212208),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4027 COEF_CONST(0.5056573861),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4028 COEF_CONST(0.5169069096),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4029 COEF_CONST(0.5280678638),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4030 COEF_CONST(0.5391383363),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4031 COEF_CONST(0.5501164301),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4032 COEF_CONST(0.5610002644),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4033 COEF_CONST(0.5717879741),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4034 COEF_CONST(0.5824777109),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4035 COEF_CONST(0.5930676432),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4036 COEF_CONST(0.6035559563),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4037 COEF_CONST(0.6139408533),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4038 COEF_CONST(0.6242205546),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4039 COEF_CONST(0.6343932989),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4040 COEF_CONST(0.6444573433),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4041 COEF_CONST(0.6544109631),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4042 COEF_CONST(0.6642524530),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4043 COEF_CONST(0.6739801267),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4044 COEF_CONST(0.6835923173),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4045 COEF_CONST(0.6930873779),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4046 COEF_CONST(0.7024636815),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4047 COEF_CONST(0.7117196216),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4048 COEF_CONST(0.7208536122),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4049 COEF_CONST(0.7298640883),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4050 COEF_CONST(0.7387495058),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4051 COEF_CONST(0.7475083425),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4052 COEF_CONST(0.7561390974),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4053 COEF_CONST(0.7646402918),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4054 COEF_CONST(0.7730104690),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4055 COEF_CONST(0.7812481948),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4056 COEF_CONST(0.7893520577),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4057 COEF_CONST(0.7973206693),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4058 COEF_CONST(0.8051526640),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4059 COEF_CONST(0.8128467000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4060 COEF_CONST(0.8204014588),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4061 COEF_CONST(0.8278156461),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4062 COEF_CONST(0.8350879914),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4063 COEF_CONST(0.8422172487),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4064 COEF_CONST(0.8492021964),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4065 COEF_CONST(0.8560416377),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4066 COEF_CONST(0.8627344006),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4067 COEF_CONST(0.8692793384),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4068 COEF_CONST(0.8756753297),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4069 COEF_CONST(0.8819212785),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4070 COEF_CONST(0.8880161146),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4071 COEF_CONST(0.8939587938),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4072 COEF_CONST(0.8997482976),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4073 COEF_CONST(0.9053836343),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4074 COEF_CONST(0.9108638381),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4075 COEF_CONST(0.9161879700),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4076 COEF_CONST(0.9213551179),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4077 COEF_CONST(0.9263643963),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4078 COEF_CONST(0.9312149469),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4079 COEF_CONST(0.9359059386),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4080 COEF_CONST(0.9404365677),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4081 COEF_CONST(0.9448060577),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4082 COEF_CONST(0.9490136602),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4083 COEF_CONST(0.9530586539),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4084 COEF_CONST(0.9569403460),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4085 COEF_CONST(0.9606580713),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4086 COEF_CONST(0.9642111928),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4087 COEF_CONST(0.9675991016),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4088 COEF_CONST(0.9708212173),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4089 COEF_CONST(0.9738769878),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4090 COEF_CONST(0.9767658894),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4091 COEF_CONST(0.9794874272),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4092 COEF_CONST(0.9820411349),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4093 COEF_CONST(0.9844265749),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4094 COEF_CONST(0.9866433385),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4095 COEF_CONST(0.9886910458),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4096 COEF_CONST(0.9905693459),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4097 COEF_CONST(0.9922779171),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4098 COEF_CONST(0.9938164666),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4099 COEF_CONST(0.9951847307),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4100 COEF_CONST(0.9963824750),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4101 COEF_CONST(0.9974094943),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4102 COEF_CONST(0.9982656127),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4103 COEF_CONST(0.9989506833),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4104 COEF_CONST(0.9994645889),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4105 COEF_CONST(0.9998072413),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4106 COEF_CONST(0.9999785819),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4107 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4108 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4109 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4110 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4111 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4112 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4113 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4114 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4115 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4116 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4117 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4118 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4119 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4120 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4121 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4122 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4123 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4124 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4125 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4126 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4127 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4128 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4129 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4130 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4131 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4132 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4133 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4134 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4135 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4136 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4137 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4138 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4139 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4140 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4141 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4142 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4143 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4144 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4145 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4146 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4147 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4148 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4149 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4150 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4151 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4152 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4153 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4154 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4155 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4156 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4157 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4158 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4159 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4160 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4161 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4162 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4163 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4164 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4165 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4166 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4167 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4168 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4169 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4170 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4171 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4172 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4173 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4174 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4175 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4176 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4177 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4178 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4179 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4180 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4181 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4182 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4183 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4184 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4185 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4186 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4187 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4188 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4189 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4190 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4191 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4192 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4193 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4194 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4195 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4196 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4197 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4198 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4199 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4200 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4201 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4202 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4203 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4204 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4205 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4206 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4207 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4208 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4209 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4210 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4211 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4212 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4213 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4214 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4215 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4216 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4217 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4218 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4219 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4220 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4221 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4222 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4223 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4224 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4225 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4226 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4227 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4228 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4229 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4230 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4231 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4232 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4233 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4234 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4235 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4236 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4237 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4238 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4239 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4240 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4241 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4242 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4243 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4244 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4245 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4246 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4247 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4248 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4249 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4250 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4251 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4252 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4253 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4254 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4255 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4256 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4257 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4258 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4259 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4260 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4261 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4262 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4263 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4264 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4265 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4266 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4267 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4268 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4269 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4270 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4271 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4272 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4273 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4274 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4275 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4276 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4277 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4278 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4279 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4280 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4281 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4282 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4283 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4284 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4285 COEF_CONST(1.0000000000),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4286 COEF_CONST(1.0000000000)
10725
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
4287 };
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
4288 #endif
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
4289
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
4290 #ifdef __cplusplus
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
4291 }
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
4292 #endif
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
4293 #endif