/* ---------------------------------------------------------------------- * Project: CMSIS DSP Library * Title: arm_common_tables.c * Description: common tables like fft twiddle factors, Bitreverse, reciprocal etc * * $Date: 23 April 2021 * $Revision: V1.9.0 * * Target Processor: Cortex-M and Cortex-A cores * -------------------------------------------------------------------- */ /* * Copyright (C) 2010-2021 ARM Limited or its affiliates. All rights reserved. * * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the License); you may * not use this file except in compliance with the License. * You may obtain a copy of the License at * * www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an AS IS BASIS, WITHOUT * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include "arm_compiler_specific.h" #include "arm_math_types.h" #include "arm_common_tables.h" /** @ingroup ComplexFFT */ /** @addtogroup CFFT_CIFFT Complex FFT Tables @{ */ /** @par Pseudo code for Generation of Bit reversal Table is @par
for (l = 1; l <= N/4; l++)
  {
    for (i = 0; i< logN2; i++)
    {
      a[i] = l & (1 << i);
    }
    for (j = 0; j < logN2; j++)
    {
      if (a[j] != 0)
      y[l] += (1 << ((logN2 - 1) - j));
    }
    y[l] = y[l] >> 1;
   } 
@par where N = 4096, logN2 = 12 @par N is the maximum FFT Size supported */ /** @brief Table for bit reversal process */ const uint16_t armBitRevTable[1024] ARM_DSP_TABLE_ATTRIBUTE = { 0x400, 0x200, 0x600, 0x100, 0x500, 0x300, 0x700, 0x080, 0x480, 0x280, 0x680, 0x180, 0x580, 0x380, 0x780, 0x040, 0x440, 0x240, 0x640, 0x140, 0x540, 0x340, 0x740, 0x0c0, 0x4c0, 0x2c0, 0x6c0, 0x1c0, 0x5c0, 0x3c0, 0x7c0, 0x020, 0x420, 0x220, 0x620, 0x120, 0x520, 0x320, 0x720, 0x0a0, 0x4a0, 0x2a0, 0x6a0, 0x1a0, 0x5a0, 0x3a0, 0x7a0, 0x060, 0x460, 0x260, 0x660, 0x160, 0x560, 0x360, 0x760, 0x0e0, 0x4e0, 0x2e0, 0x6e0, 0x1e0, 0x5e0, 0x3e0, 0x7e0, 0x010, 0x410, 0x210, 0x610, 0x110, 0x510, 0x310, 0x710, 0x090, 0x490, 0x290, 0x690, 0x190, 0x590, 0x390, 0x790, 0x050, 0x450, 0x250, 0x650, 0x150, 0x550, 0x350, 0x750, 0x0d0, 0x4d0, 0x2d0, 0x6d0, 0x1d0, 0x5d0, 0x3d0, 0x7d0, 0x030, 0x430, 0x230, 0x630, 0x130, 0x530, 0x330, 0x730, 0x0b0, 0x4b0, 0x2b0, 0x6b0, 0x1b0, 0x5b0, 0x3b0, 0x7b0, 0x070, 0x470, 0x270, 0x670, 0x170, 0x570, 0x370, 0x770, 0x0f0, 0x4f0, 0x2f0, 0x6f0, 0x1f0, 0x5f0, 0x3f0, 0x7f0, 0x008, 0x408, 0x208, 0x608, 0x108, 0x508, 0x308, 0x708, 0x088, 0x488, 0x288, 0x688, 0x188, 0x588, 0x388, 0x788, 0x048, 0x448, 0x248, 0x648, 0x148, 0x548, 0x348, 0x748, 0x0c8, 0x4c8, 0x2c8, 0x6c8, 0x1c8, 0x5c8, 0x3c8, 0x7c8, 0x028, 0x428, 0x228, 0x628, 0x128, 0x528, 0x328, 0x728, 0x0a8, 0x4a8, 0x2a8, 0x6a8, 0x1a8, 0x5a8, 0x3a8, 0x7a8, 0x068, 0x468, 0x268, 0x668, 0x168, 0x568, 0x368, 0x768, 0x0e8, 0x4e8, 0x2e8, 0x6e8, 0x1e8, 0x5e8, 0x3e8, 0x7e8, 0x018, 0x418, 0x218, 0x618, 0x118, 0x518, 0x318, 0x718, 0x098, 0x498, 0x298, 0x698, 0x198, 0x598, 0x398, 0x798, 0x058, 0x458, 0x258, 0x658, 0x158, 0x558, 0x358, 0x758, 0x0d8, 0x4d8, 0x2d8, 0x6d8, 0x1d8, 0x5d8, 0x3d8, 0x7d8, 0x038, 0x438, 0x238, 0x638, 0x138, 0x538, 0x338, 0x738, 0x0b8, 0x4b8, 0x2b8, 0x6b8, 0x1b8, 0x5b8, 0x3b8, 0x7b8, 0x078, 0x478, 0x278, 0x678, 0x178, 0x578, 0x378, 0x778, 0x0f8, 0x4f8, 0x2f8, 0x6f8, 0x1f8, 0x5f8, 0x3f8, 0x7f8, 0x004, 0x404, 0x204, 0x604, 0x104, 0x504, 0x304, 0x704, 0x084, 0x484, 0x284, 0x684, 0x184, 0x584, 0x384, 0x784, 0x044, 0x444, 0x244, 0x644, 0x144, 0x544, 0x344, 0x744, 0x0c4, 0x4c4, 0x2c4, 0x6c4, 0x1c4, 0x5c4, 0x3c4, 0x7c4, 0x024, 0x424, 0x224, 0x624, 0x124, 0x524, 0x324, 0x724, 0x0a4, 0x4a4, 0x2a4, 0x6a4, 0x1a4, 0x5a4, 0x3a4, 0x7a4, 0x064, 0x464, 0x264, 0x664, 0x164, 0x564, 0x364, 0x764, 0x0e4, 0x4e4, 0x2e4, 0x6e4, 0x1e4, 0x5e4, 0x3e4, 0x7e4, 0x014, 0x414, 0x214, 0x614, 0x114, 0x514, 0x314, 0x714, 0x094, 0x494, 0x294, 0x694, 0x194, 0x594, 0x394, 0x794, 0x054, 0x454, 0x254, 0x654, 0x154, 0x554, 0x354, 0x754, 0x0d4, 0x4d4, 0x2d4, 0x6d4, 0x1d4, 0x5d4, 0x3d4, 0x7d4, 0x034, 0x434, 0x234, 0x634, 0x134, 0x534, 0x334, 0x734, 0x0b4, 0x4b4, 0x2b4, 0x6b4, 0x1b4, 0x5b4, 0x3b4, 0x7b4, 0x074, 0x474, 0x274, 0x674, 0x174, 0x574, 0x374, 0x774, 0x0f4, 0x4f4, 0x2f4, 0x6f4, 0x1f4, 0x5f4, 0x3f4, 0x7f4, 0x00c, 0x40c, 0x20c, 0x60c, 0x10c, 0x50c, 0x30c, 0x70c, 0x08c, 0x48c, 0x28c, 0x68c, 0x18c, 0x58c, 0x38c, 0x78c, 0x04c, 0x44c, 0x24c, 0x64c, 0x14c, 0x54c, 0x34c, 0x74c, 0x0cc, 0x4cc, 0x2cc, 0x6cc, 0x1cc, 0x5cc, 0x3cc, 0x7cc, 0x02c, 0x42c, 0x22c, 0x62c, 0x12c, 0x52c, 0x32c, 0x72c, 0x0ac, 0x4ac, 0x2ac, 0x6ac, 0x1ac, 0x5ac, 0x3ac, 0x7ac, 0x06c, 0x46c, 0x26c, 0x66c, 0x16c, 0x56c, 0x36c, 0x76c, 0x0ec, 0x4ec, 0x2ec, 0x6ec, 0x1ec, 0x5ec, 0x3ec, 0x7ec, 0x01c, 0x41c, 0x21c, 0x61c, 0x11c, 0x51c, 0x31c, 0x71c, 0x09c, 0x49c, 0x29c, 0x69c, 0x19c, 0x59c, 0x39c, 0x79c, 0x05c, 0x45c, 0x25c, 0x65c, 0x15c, 0x55c, 0x35c, 0x75c, 0x0dc, 0x4dc, 0x2dc, 0x6dc, 0x1dc, 0x5dc, 0x3dc, 0x7dc, 0x03c, 0x43c, 0x23c, 0x63c, 0x13c, 0x53c, 0x33c, 0x73c, 0x0bc, 0x4bc, 0x2bc, 0x6bc, 0x1bc, 0x5bc, 0x3bc, 0x7bc, 0x07c, 0x47c, 0x27c, 0x67c, 0x17c, 0x57c, 0x37c, 0x77c, 0x0fc, 0x4fc, 0x2fc, 0x6fc, 0x1fc, 0x5fc, 0x3fc, 0x7fc, 0x002, 0x402, 0x202, 0x602, 0x102, 0x502, 0x302, 0x702, 0x082, 0x482, 0x282, 0x682, 0x182, 0x582, 0x382, 0x782, 0x042, 0x442, 0x242, 0x642, 0x142, 0x542, 0x342, 0x742, 0x0c2, 0x4c2, 0x2c2, 0x6c2, 0x1c2, 0x5c2, 0x3c2, 0x7c2, 0x022, 0x422, 0x222, 0x622, 0x122, 0x522, 0x322, 0x722, 0x0a2, 0x4a2, 0x2a2, 0x6a2, 0x1a2, 0x5a2, 0x3a2, 0x7a2, 0x062, 0x462, 0x262, 0x662, 0x162, 0x562, 0x362, 0x762, 0x0e2, 0x4e2, 0x2e2, 0x6e2, 0x1e2, 0x5e2, 0x3e2, 0x7e2, 0x012, 0x412, 0x212, 0x612, 0x112, 0x512, 0x312, 0x712, 0x092, 0x492, 0x292, 0x692, 0x192, 0x592, 0x392, 0x792, 0x052, 0x452, 0x252, 0x652, 0x152, 0x552, 0x352, 0x752, 0x0d2, 0x4d2, 0x2d2, 0x6d2, 0x1d2, 0x5d2, 0x3d2, 0x7d2, 0x032, 0x432, 0x232, 0x632, 0x132, 0x532, 0x332, 0x732, 0x0b2, 0x4b2, 0x2b2, 0x6b2, 0x1b2, 0x5b2, 0x3b2, 0x7b2, 0x072, 0x472, 0x272, 0x672, 0x172, 0x572, 0x372, 0x772, 0x0f2, 0x4f2, 0x2f2, 0x6f2, 0x1f2, 0x5f2, 0x3f2, 0x7f2, 0x00a, 0x40a, 0x20a, 0x60a, 0x10a, 0x50a, 0x30a, 0x70a, 0x08a, 0x48a, 0x28a, 0x68a, 0x18a, 0x58a, 0x38a, 0x78a, 0x04a, 0x44a, 0x24a, 0x64a, 0x14a, 0x54a, 0x34a, 0x74a, 0x0ca, 0x4ca, 0x2ca, 0x6ca, 0x1ca, 0x5ca, 0x3ca, 0x7ca, 0x02a, 0x42a, 0x22a, 0x62a, 0x12a, 0x52a, 0x32a, 0x72a, 0x0aa, 0x4aa, 0x2aa, 0x6aa, 0x1aa, 0x5aa, 0x3aa, 0x7aa, 0x06a, 0x46a, 0x26a, 0x66a, 0x16a, 0x56a, 0x36a, 0x76a, 0x0ea, 0x4ea, 0x2ea, 0x6ea, 0x1ea, 0x5ea, 0x3ea, 0x7ea, 0x01a, 0x41a, 0x21a, 0x61a, 0x11a, 0x51a, 0x31a, 0x71a, 0x09a, 0x49a, 0x29a, 0x69a, 0x19a, 0x59a, 0x39a, 0x79a, 0x5a, 0x45a, 0x25a, 0x65a, 0x15a, 0x55a, 0x35a, 0x75a, 0x0da, 0x4da, 0x2da, 0x6da, 0x1da, 0x5da, 0x3da, 0x7da, 0x03a, 0x43a, 0x23a, 0x63a, 0x13a, 0x53a, 0x33a, 0x73a, 0x0ba, 0x4ba, 0x2ba, 0x6ba, 0x1ba, 0x5ba, 0x3ba, 0x7ba, 0x07a, 0x47a, 0x27a, 0x67a, 0x17a, 0x57a, 0x37a, 0x77a, 0x0fa, 0x4fa, 0x2fa, 0x6fa, 0x1fa, 0x5fa, 0x3fa, 0x7fa, 0x006, 0x406, 0x206, 0x606, 0x106, 0x506, 0x306, 0x706, 0x086, 0x486, 0x286, 0x686, 0x186, 0x586, 0x386, 0x786, 0x046, 0x446, 0x246, 0x646, 0x146, 0x546, 0x346, 0x746, 0x0c6, 0x4c6, 0x2c6, 0x6c6, 0x1c6, 0x5c6, 0x3c6, 0x7c6, 0x026, 0x426, 0x226, 0x626, 0x126, 0x526, 0x326, 0x726, 0x0a6, 0x4a6, 0x2a6, 0x6a6, 0x1a6, 0x5a6, 0x3a6, 0x7a6, 0x066, 0x466, 0x266, 0x666, 0x166, 0x566, 0x366, 0x766, 0x0e6, 0x4e6, 0x2e6, 0x6e6, 0x1e6, 0x5e6, 0x3e6, 0x7e6, 0x016, 0x416, 0x216, 0x616, 0x116, 0x516, 0x316, 0x716, 0x096, 0x496, 0x296, 0x696, 0x196, 0x596, 0x396, 0x796, 0x056, 0x456, 0x256, 0x656, 0x156, 0x556, 0x356, 0x756, 0x0d6, 0x4d6, 0x2d6, 0x6d6, 0x1d6, 0x5d6, 0x3d6, 0x7d6, 0x036, 0x436, 0x236, 0x636, 0x136, 0x536, 0x336, 0x736, 0x0b6, 0x4b6, 0x2b6, 0x6b6, 0x1b6, 0x5b6, 0x3b6, 0x7b6, 0x076, 0x476, 0x276, 0x676, 0x176, 0x576, 0x376, 0x776, 0x0f6, 0x4f6, 0x2f6, 0x6f6, 0x1f6, 0x5f6, 0x3f6, 0x7f6, 0x00e, 0x40e, 0x20e, 0x60e, 0x10e, 0x50e, 0x30e, 0x70e, 0x08e, 0x48e, 0x28e, 0x68e, 0x18e, 0x58e, 0x38e, 0x78e, 0x04e, 0x44e, 0x24e, 0x64e, 0x14e, 0x54e, 0x34e, 0x74e, 0x0ce, 0x4ce, 0x2ce, 0x6ce, 0x1ce, 0x5ce, 0x3ce, 0x7ce, 0x02e, 0x42e, 0x22e, 0x62e, 0x12e, 0x52e, 0x32e, 0x72e, 0x0ae, 0x4ae, 0x2ae, 0x6ae, 0x1ae, 0x5ae, 0x3ae, 0x7ae, 0x06e, 0x46e, 0x26e, 0x66e, 0x16e, 0x56e, 0x36e, 0x76e, 0x0ee, 0x4ee, 0x2ee, 0x6ee, 0x1ee, 0x5ee, 0x3ee, 0x7ee, 0x01e, 0x41e, 0x21e, 0x61e, 0x11e, 0x51e, 0x31e, 0x71e, 0x09e, 0x49e, 0x29e, 0x69e, 0x19e, 0x59e, 0x39e, 0x79e, 0x05e, 0x45e, 0x25e, 0x65e, 0x15e, 0x55e, 0x35e, 0x75e, 0x0de, 0x4de, 0x2de, 0x6de, 0x1de, 0x5de, 0x3de, 0x7de, 0x03e, 0x43e, 0x23e, 0x63e, 0x13e, 0x53e, 0x33e, 0x73e, 0x0be, 0x4be, 0x2be, 0x6be, 0x1be, 0x5be, 0x3be, 0x7be, 0x07e, 0x47e, 0x27e, 0x67e, 0x17e, 0x57e, 0x37e, 0x77e, 0x0fe, 0x4fe, 0x2fe, 0x6fe, 0x1fe, 0x5fe, 0x3fe, 0x7fe, 0x001 }; /** @brief Double Precision Floating-point Twiddle factors Table Generation */ /** @par Example code for Double Precision Floating-point Twiddle factors Generation: @par
for (i = 0; i < N/; i++)
  {
 	twiddleCoef[2*i]   = cos(i * 2*PI/(double)N);
 	twiddleCoef[2*i+1] = sin(i * 2*PI/(double)N);
  } 
@par where N = 16, PI = 3.14159265358979 @par Cos and Sin values are in interleaved fashion */ const uint64_t twiddleCoefF64_16[32] ARM_DSP_TABLE_ATTRIBUTE = { 0x3ff0000000000000, 0x0000000000000000, // 1, 0' 0x3fed906bcf328d46, 0x3fd87de2a6aea963, // 0.92388, 0.38268' 0x3fe6a09e667f3bcc, 0x3fe6a09e667f3bcc, // 0.70711, 0.70711' 0x3fd87de2a6aea963, 0x3fed906bcf328d46, // 0.38268, 0.92388' 0x0000000000000000, 0x3ff0000000000000, // 0, 1' 0xbfd87de2a6aea963, 0x3fed906bcf328d46, //-0.38268, 0.92388' 0xbfe6a09e667f3bcc, 0x3fe6a09e667f3bcc, //-0.70711, 0.70711' 0xbfed906bcf328d46, 0x3fd87de2a6aea963, //-0.92388, 0.38268' 0xbff0000000000000, 0x0000000000000000, // -1, 0' 0xbfed906bcf328d46, 0xbfd87de2a6aea963, //-0.92388,-0.38268' 0xbfe6a09e667f3bcc, 0xbfe6a09e667f3bcc, //-0.70711,-0.70711' 0xbfd87de2a6aea963, 0xbfed906bcf328d46, //-0.38268,-0.92388' 0x0000000000000000, 0xbff0000000000000, // 0, -1' 0x3fd87de2a6aea963, 0xbfed906bcf328d46, // 0.38268,-0.92388' 0x3fe6a09e667f3bcc, 0xbfe6a09e667f3bcc, // 0.70711,-0.70711' 0x3fed906bcf328d46, 0xbfd87de2a6aea963, // 0.92388,-0.38268' }; /** @par Example code for Double Precision Floating-point Twiddle factors Generation: @par
for (i = 0; i< N/; i++)
  {
 	twiddleCoef[2*i]   = cos(i * 2*PI/N);
 	twiddleCoef[2*i+1] = sin(i * 2*PI/N);
  } 
@par where N = 32, PI = 3.14159265358979 @par Cos and Sin values are in interleaved fashion */ const uint64_t twiddleCoefF64_32[64] ARM_DSP_TABLE_ATTRIBUTE = { 0x3ff0000000000000, 0x0000000000000000, // 1, 0' 0x3fef6297cff75cb0, 0x3fc8f8b83c69a60a, // 0.98079, 0.19509' 0x3fed906bcf328d46, 0x3fd87de2a6aea963, // 0.92388, 0.38268' 0x3fea9b66290ea1a3, 0x3fe1c73b39ae68c8, // 0.83147, 0.55557' 0x3fe6a09e667f3bcc, 0x3fe6a09e667f3bcc, // 0.70711, 0.70711' 0x3fe1c73b39ae68c8, 0x3fea9b66290ea1a3, // 0.55557, 0.83147' 0x3fd87de2a6aea963, 0x3fed906bcf328d46, // 0.38268, 0.92388' 0x3fc8f8b83c69a60a, 0x3fef6297cff75cb0, // 0.19509, 0.98079' 0x0000000000000000, 0x3ff0000000000000, // 0, 1' 0xbfc8f8b83c69a60a, 0x3fef6297cff75cb0, //-0.19509, 0.98079' 0xbfd87de2a6aea963, 0x3fed906bcf328d46, //-0.38268, 0.92388' 0xbfe1c73b39ae68c8, 0x3fea9b66290ea1a3, //-0.55557, 0.83147' 0xbfe6a09e667f3bcc, 0x3fe6a09e667f3bcc, //-0.70711, 0.70711' 0xbfea9b66290ea1a3, 0x3fe1c73b39ae68c8, //-0.83147, 0.55557' 0xbfed906bcf328d46, 0x3fd87de2a6aea963, //-0.92388, 0.38268' 0xbfef6297cff75cb0, 0x3fc8f8b83c69a60a, //-0.98079, 0.19509' 0xbff0000000000000, 0x0000000000000000, // -1, 0' 0xbfef6297cff75cb0, 0xbfc8f8b83c69a60a, //-0.98079,-0.19509' 0xbfed906bcf328d46, 0xbfd87de2a6aea963, //-0.92388,-0.38268' 0xbfea9b66290ea1a3, 0xbfe1c73b39ae68c8, //-0.83147,-0.55557' 0xbfe6a09e667f3bcc, 0xbfe6a09e667f3bcc, //-0.70711,-0.70711' 0xbfe1c73b39ae68c8, 0xbfea9b66290ea1a3, //-0.55557,-0.83147' 0xbfd87de2a6aea963, 0xbfed906bcf328d46, //-0.38268,-0.92388' 0xbfc8f8b83c69a60a, 0xbfef6297cff75cb0, //-0.19509,-0.98079' 0x0000000000000000, 0xbff0000000000000, // 0, -1' 0x3fc8f8b83c69a60a, 0xbfef6297cff75cb0, // 0.19509,-0.98079' 0x3fd87de2a6aea963, 0xbfed906bcf328d46, // 0.38268,-0.92388' 0x3fe1c73b39ae68c8, 0xbfea9b66290ea1a3, // 0.55557,-0.83147' 0x3fe6a09e667f3bcc, 0xbfe6a09e667f3bcc, // 0.70711,-0.70711' 0x3fea9b66290ea1a3, 0xbfe1c73b39ae68c8, // 0.83147,-0.55557' 0x3fed906bcf328d46, 0xbfd87de2a6aea963, // 0.92388,-0.38268' 0x3fef6297cff75cb0, 0xbfc8f8b83c69a60a, // 0.98079,-0.19509' }; /** @par Example code for Double Precision Floating-point Twiddle factors Generation: @par
for(i = 0; i < N/; i++)
  {
 	twiddleCoef[2*i]   = cos(i * 2*PI/(float)N);
 	twiddleCoef[2*i+1] = sin(i * 2*PI/(float)N);
  } 
@par where N = 64, PI = 3.14159265358979 @par Cos and Sin values are in interleaved fashion */ const uint64_t twiddleCoefF64_64[128] ARM_DSP_TABLE_ATTRIBUTE = { 0x3ff0000000000000, 0x0000000000000000, // 1, 0' 0x3fefd88da3d12526, 0x3fb917a6bc29b42c, // 0.99518, 0.098017' 0x3fef6297cff75cb0, 0x3fc8f8b83c69a60a, // 0.98079, 0.19509' 0x3fee9f4156c62dda, 0x3fd294062ed59f05, // 0.95694, 0.29028' 0x3fed906bcf328d46, 0x3fd87de2a6aea963, // 0.92388, 0.38268' 0x3fec38b2f180bdb1, 0x3fde2b5d3806f63b, // 0.88192, 0.4714' 0x3fea9b66290ea1a3, 0x3fe1c73b39ae68c8, // 0.83147, 0.55557' 0x3fe8bc806b151741, 0x3fe44cf325091dd6, // 0.77301, 0.63439' 0x3fe6a09e667f3bcc, 0x3fe6a09e667f3bcc, // 0.70711, 0.70711' 0x3fe44cf325091dd6, 0x3fe8bc806b151741, // 0.63439, 0.77301' 0x3fe1c73b39ae68c8, 0x3fea9b66290ea1a3, // 0.55557, 0.83147' 0x3fde2b5d3806f63b, 0x3fec38b2f180bdb1, // 0.4714, 0.88192' 0x3fd87de2a6aea963, 0x3fed906bcf328d46, // 0.38268, 0.92388' 0x3fd294062ed59f05, 0x3fee9f4156c62dda, // 0.29028, 0.95694' 0x3fc8f8b83c69a60a, 0x3fef6297cff75cb0, // 0.19509, 0.98079' 0x3fb917a6bc29b42c, 0x3fefd88da3d12526, // 0.098017, 0.99518' 0x0000000000000000, 0x3ff0000000000000, // 0, 1' 0xbfb917a6bc29b42c, 0x3fefd88da3d12526, //-0.098017, 0.99518' 0xbfc8f8b83c69a60a, 0x3fef6297cff75cb0, // -0.19509, 0.98079' 0xbfd294062ed59f05, 0x3fee9f4156c62dda, // -0.29028, 0.95694' 0xbfd87de2a6aea963, 0x3fed906bcf328d46, // -0.38268, 0.92388' 0xbfde2b5d3806f63b, 0x3fec38b2f180bdb1, // -0.4714, 0.88192' 0xbfe1c73b39ae68c8, 0x3fea9b66290ea1a3, // -0.55557, 0.83147' 0xbfe44cf325091dd6, 0x3fe8bc806b151741, // -0.63439, 0.77301' 0xbfe6a09e667f3bcc, 0x3fe6a09e667f3bcc, // -0.70711, 0.70711' 0xbfe8bc806b151741, 0x3fe44cf325091dd6, // -0.77301, 0.63439' 0xbfea9b66290ea1a3, 0x3fe1c73b39ae68c8, // -0.83147, 0.55557' 0xbfec38b2f180bdb1, 0x3fde2b5d3806f63b, // -0.88192, 0.4714' 0xbfed906bcf328d46, 0x3fd87de2a6aea963, // -0.92388, 0.38268' 0xbfee9f4156c62dda, 0x3fd294062ed59f05, // -0.95694, 0.29028' 0xbfef6297cff75cb0, 0x3fc8f8b83c69a60a, // -0.98079, 0.19509' 0xbfefd88da3d12526, 0x3fb917a6bc29b42c, // -0.99518, 0.098017' 0xbff0000000000000, 0x0000000000000000, // -1, 0' 0xbfefd88da3d12526, 0xbfb917a6bc29b42c, // -0.99518,-0.098017' 0xbfef6297cff75cb0, 0xbfc8f8b83c69a60a, // -0.98079, -0.19509' 0xbfee9f4156c62dda, 0xbfd294062ed59f05, // -0.95694, -0.29028' 0xbfed906bcf328d46, 0xbfd87de2a6aea963, // -0.92388, -0.38268' 0xbfec38b2f180bdb1, 0xbfde2b5d3806f63b, // -0.88192, -0.4714' 0xbfea9b66290ea1a3, 0xbfe1c73b39ae68c8, // -0.83147, -0.55557' 0xbfe8bc806b151741, 0xbfe44cf325091dd6, // -0.77301, -0.63439' 0xbfe6a09e667f3bcc, 0xbfe6a09e667f3bcc, // -0.70711, -0.70711' 0xbfe44cf325091dd6, 0xbfe8bc806b151741, // -0.63439, -0.77301' 0xbfe1c73b39ae68c8, 0xbfea9b66290ea1a3, // -0.55557, -0.83147' 0xbfde2b5d3806f63b, 0xbfec38b2f180bdb1, // -0.4714, -0.88192' 0xbfd87de2a6aea963, 0xbfed906bcf328d46, // -0.38268, -0.92388' 0xbfd294062ed59f05, 0xbfee9f4156c62dda, // -0.29028, -0.95694' 0xbfc8f8b83c69a60a, 0xbfef6297cff75cb0, // -0.19509, -0.98079' 0xbfb917a6bc29b42c, 0xbfefd88da3d12526, //-0.098017, -0.99518' 0x0000000000000000, 0xbff0000000000000, // 0, -1' 0x3fb917a6bc29b42c, 0xbfefd88da3d12526, // 0.098017, -0.99518' 0x3fc8f8b83c69a60a, 0xbfef6297cff75cb0, // 0.19509, -0.98079' 0x3fd294062ed59f05, 0xbfee9f4156c62dda, // 0.29028, -0.95694' 0x3fd87de2a6aea963, 0xbfed906bcf328d46, // 0.38268, -0.92388' 0x3fde2b5d3806f63b, 0xbfec38b2f180bdb1, // 0.4714, -0.88192' 0x3fe1c73b39ae68c8, 0xbfea9b66290ea1a3, // 0.55557, -0.83147' 0x3fe44cf325091dd6, 0xbfe8bc806b151741, // 0.63439, -0.77301' 0x3fe6a09e667f3bcc, 0xbfe6a09e667f3bcc, // 0.70711, -0.70711' 0x3fe8bc806b151741, 0xbfe44cf325091dd6, // 0.77301, -0.63439' 0x3fea9b66290ea1a3, 0xbfe1c73b39ae68c8, // 0.83147, -0.55557' 0x3fec38b2f180bdb1, 0xbfde2b5d3806f63b, // 0.88192, -0.4714' 0x3fed906bcf328d46, 0xbfd87de2a6aea963, // 0.92388, -0.38268' 0x3fee9f4156c62dda, 0xbfd294062ed59f05, // 0.95694, -0.29028' 0x3fef6297cff75cb0, 0xbfc8f8b83c69a60a, // 0.98079, -0.19509' 0x3fefd88da3d12526, 0xbfb917a6bc29b42c, // 0.99518,-0.098017' }; /** @par Example code for Double Precision Floating-point Twiddle factors Generation: @par
for (i = 0; i< N/; i++)
  {
 	twiddleCoef[2*i]   = cos(i * 2*PI/(float)N);
 	twiddleCoef[2*i+1] = sin(i * 2*PI/(float)N);
  } 
@par where N = 128, PI = 3.14159265358979 @par Cos and Sin values are in interleaved fashion */ const uint64_t twiddleCoefF64_128[256] ARM_DSP_TABLE_ATTRIBUTE = { 0x3ff0000000000000, 0x0000000000000000, // 1, 0' 0x3feff621e3796d7e, 0x3fa91f65f10dd814, // 0.9988, 0.049068' 0x3fefd88da3d12526, 0x3fb917a6bc29b42c, // 0.99518, 0.098017' 0x3fefa7557f08a517, 0x3fc2c8106e8e613a, // 0.98918, 0.14673' 0x3fef6297cff75cb0, 0x3fc8f8b83c69a60a, // 0.98079, 0.19509' 0x3fef0a7efb9230d7, 0x3fcf19f97b215f1a, // 0.97003, 0.24298' 0x3fee9f4156c62dda, 0x3fd294062ed59f05, // 0.95694, 0.29028' 0x3fee212104f686e5, 0x3fd58f9a75ab1fdd, // 0.94154, 0.33689' 0x3fed906bcf328d46, 0x3fd87de2a6aea963, // 0.92388, 0.38268' 0x3feced7af43cc773, 0x3fdb5d1009e15cc0, // 0.90399, 0.42756' 0x3fec38b2f180bdb1, 0x3fde2b5d3806f63b, // 0.88192, 0.4714' 0x3feb728345196e3e, 0x3fe073879922ffed, // 0.85773, 0.5141' 0x3fea9b66290ea1a3, 0x3fe1c73b39ae68c8, // 0.83147, 0.55557' 0x3fe9b3e047f38741, 0x3fe30ff7fce17035, // 0.80321, 0.5957' 0x3fe8bc806b151741, 0x3fe44cf325091dd6, // 0.77301, 0.63439' 0x3fe7b5df226aafb0, 0x3fe57d69348cec9f, // 0.74095, 0.67156' 0x3fe6a09e667f3bcc, 0x3fe6a09e667f3bcc, // 0.70711, 0.70711' 0x3fe57d69348cec9f, 0x3fe7b5df226aafb0, // 0.67156, 0.74095' 0x3fe44cf325091dd6, 0x3fe8bc806b151741, // 0.63439, 0.77301' 0x3fe30ff7fce17035, 0x3fe9b3e047f38741, // 0.5957, 0.80321' 0x3fe1c73b39ae68c8, 0x3fea9b66290ea1a3, // 0.55557, 0.83147' 0x3fe073879922ffed, 0x3feb728345196e3e, // 0.5141, 0.85773' 0x3fde2b5d3806f63b, 0x3fec38b2f180bdb1, // 0.4714, 0.88192' 0x3fdb5d1009e15cc0, 0x3feced7af43cc773, // 0.42756, 0.90399' 0x3fd87de2a6aea963, 0x3fed906bcf328d46, // 0.38268, 0.92388' 0x3fd58f9a75ab1fdd, 0x3fee212104f686e5, // 0.33689, 0.94154' 0x3fd294062ed59f05, 0x3fee9f4156c62dda, // 0.29028, 0.95694' 0x3fcf19f97b215f1a, 0x3fef0a7efb9230d7, // 0.24298, 0.97003' 0x3fc8f8b83c69a60a, 0x3fef6297cff75cb0, // 0.19509, 0.98079' 0x3fc2c8106e8e613a, 0x3fefa7557f08a517, // 0.14673, 0.98918' 0x3fb917a6bc29b42c, 0x3fefd88da3d12526, // 0.098017, 0.99518' 0x3fa91f65f10dd814, 0x3feff621e3796d7e, // 0.049068, 0.9988' 0x0000000000000000, 0x3ff0000000000000, // 0, 1' 0xbfa91f65f10dd814, 0x3feff621e3796d7e, //-0.049068, 0.9988' 0xbfb917a6bc29b42c, 0x3fefd88da3d12526, //-0.098017, 0.99518' 0xbfc2c8106e8e613a, 0x3fefa7557f08a517, // -0.14673, 0.98918' 0xbfc8f8b83c69a60a, 0x3fef6297cff75cb0, // -0.19509, 0.98079' 0xbfcf19f97b215f1a, 0x3fef0a7efb9230d7, // -0.24298, 0.97003' 0xbfd294062ed59f05, 0x3fee9f4156c62dda, // -0.29028, 0.95694' 0xbfd58f9a75ab1fdd, 0x3fee212104f686e5, // -0.33689, 0.94154' 0xbfd87de2a6aea963, 0x3fed906bcf328d46, // -0.38268, 0.92388' 0xbfdb5d1009e15cc0, 0x3feced7af43cc773, // -0.42756, 0.90399' 0xbfde2b5d3806f63b, 0x3fec38b2f180bdb1, // -0.4714, 0.88192' 0xbfe073879922ffed, 0x3feb728345196e3e, // -0.5141, 0.85773' 0xbfe1c73b39ae68c8, 0x3fea9b66290ea1a3, // -0.55557, 0.83147' 0xbfe30ff7fce17035, 0x3fe9b3e047f38741, // -0.5957, 0.80321' 0xbfe44cf325091dd6, 0x3fe8bc806b151741, // -0.63439, 0.77301' 0xbfe57d69348cec9f, 0x3fe7b5df226aafb0, // -0.67156, 0.74095' 0xbfe6a09e667f3bcc, 0x3fe6a09e667f3bcc, // -0.70711, 0.70711' 0xbfe7b5df226aafb0, 0x3fe57d69348cec9f, // -0.74095, 0.67156' 0xbfe8bc806b151741, 0x3fe44cf325091dd6, // -0.77301, 0.63439' 0xbfe9b3e047f38741, 0x3fe30ff7fce17035, // -0.80321, 0.5957' 0xbfea9b66290ea1a3, 0x3fe1c73b39ae68c8, // -0.83147, 0.55557' 0xbfeb728345196e3e, 0x3fe073879922ffed, // -0.85773, 0.5141' 0xbfec38b2f180bdb1, 0x3fde2b5d3806f63b, // -0.88192, 0.4714' 0xbfeced7af43cc773, 0x3fdb5d1009e15cc0, // -0.90399, 0.42756' 0xbfed906bcf328d46, 0x3fd87de2a6aea963, // -0.92388, 0.38268' 0xbfee212104f686e5, 0x3fd58f9a75ab1fdd, // -0.94154, 0.33689' 0xbfee9f4156c62dda, 0x3fd294062ed59f05, // -0.95694, 0.29028' 0xbfef0a7efb9230d7, 0x3fcf19f97b215f1a, // -0.97003, 0.24298' 0xbfef6297cff75cb0, 0x3fc8f8b83c69a60a, // -0.98079, 0.19509' 0xbfefa7557f08a517, 0x3fc2c8106e8e613a, // -0.98918, 0.14673' 0xbfefd88da3d12526, 0x3fb917a6bc29b42c, // -0.99518, 0.098017' 0xbfeff621e3796d7e, 0x3fa91f65f10dd814, // -0.9988, 0.049068' 0xbff0000000000000, 0x0000000000000000, // -1, 0' 0xbfeff621e3796d7e, 0xbfa91f65f10dd814, // -0.9988,-0.049068' 0xbfefd88da3d12526, 0xbfb917a6bc29b42c, // -0.99518,-0.098017' 0xbfefa7557f08a517, 0xbfc2c8106e8e613a, // -0.98918, -0.14673' 0xbfef6297cff75cb0, 0xbfc8f8b83c69a60a, // -0.98079, -0.19509' 0xbfef0a7efb9230d7, 0xbfcf19f97b215f1a, // -0.97003, -0.24298' 0xbfee9f4156c62dda, 0xbfd294062ed59f05, // -0.95694, -0.29028' 0xbfee212104f686e5, 0xbfd58f9a75ab1fdd, // -0.94154, -0.33689' 0xbfed906bcf328d46, 0xbfd87de2a6aea963, // -0.92388, -0.38268' 0xbfeced7af43cc773, 0xbfdb5d1009e15cc0, // -0.90399, -0.42756' 0xbfec38b2f180bdb1, 0xbfde2b5d3806f63b, // -0.88192, -0.4714' 0xbfeb728345196e3e, 0xbfe073879922ffed, // -0.85773, -0.5141' 0xbfea9b66290ea1a3, 0xbfe1c73b39ae68c8, // -0.83147, -0.55557' 0xbfe9b3e047f38741, 0xbfe30ff7fce17035, // -0.80321, -0.5957' 0xbfe8bc806b151741, 0xbfe44cf325091dd6, // -0.77301, -0.63439' 0xbfe7b5df226aafb0, 0xbfe57d69348cec9f, // -0.74095, -0.67156' 0xbfe6a09e667f3bcc, 0xbfe6a09e667f3bcc, // -0.70711, -0.70711' 0xbfe57d69348cec9f, 0xbfe7b5df226aafb0, // -0.67156, -0.74095' 0xbfe44cf325091dd6, 0xbfe8bc806b151741, // -0.63439, -0.77301' 0xbfe30ff7fce17035, 0xbfe9b3e047f38741, // -0.5957, -0.80321' 0xbfe1c73b39ae68c8, 0xbfea9b66290ea1a3, // -0.55557, -0.83147' 0xbfe073879922ffed, 0xbfeb728345196e3e, // -0.5141, -0.85773' 0xbfde2b5d3806f63b, 0xbfec38b2f180bdb1, // -0.4714, -0.88192' 0xbfdb5d1009e15cc0, 0xbfeced7af43cc773, // -0.42756, -0.90399' 0xbfd87de2a6aea963, 0xbfed906bcf328d46, // -0.38268, -0.92388' 0xbfd58f9a75ab1fdd, 0xbfee212104f686e5, // -0.33689, -0.94154' 0xbfd294062ed59f05, 0xbfee9f4156c62dda, // -0.29028, -0.95694' 0xbfcf19f97b215f1a, 0xbfef0a7efb9230d7, // -0.24298, -0.97003' 0xbfc8f8b83c69a60a, 0xbfef6297cff75cb0, // -0.19509, -0.98079' 0xbfc2c8106e8e613a, 0xbfefa7557f08a517, // -0.14673, -0.98918' 0xbfb917a6bc29b42c, 0xbfefd88da3d12526, //-0.098017, -0.99518' 0xbfa91f65f10dd814, 0xbfeff621e3796d7e, //-0.049068, -0.9988' 0x0000000000000000, 0xbff0000000000000, // 0, -1' 0x3fa91f65f10dd814, 0xbfeff621e3796d7e, // 0.049068, -0.9988' 0x3fb917a6bc29b42c, 0xbfefd88da3d12526, // 0.098017, -0.99518' 0x3fc2c8106e8e613a, 0xbfefa7557f08a517, // 0.14673, -0.98918' 0x3fc8f8b83c69a60a, 0xbfef6297cff75cb0, // 0.19509, -0.98079' 0x3fcf19f97b215f1a, 0xbfef0a7efb9230d7, // 0.24298, -0.97003' 0x3fd294062ed59f05, 0xbfee9f4156c62dda, // 0.29028, -0.95694' 0x3fd58f9a75ab1fdd, 0xbfee212104f686e5, // 0.33689, -0.94154' 0x3fd87de2a6aea963, 0xbfed906bcf328d46, // 0.38268, -0.92388' 0x3fdb5d1009e15cc0, 0xbfeced7af43cc773, // 0.42756, -0.90399' 0x3fde2b5d3806f63b, 0xbfec38b2f180bdb1, // 0.4714, -0.88192' 0x3fe073879922ffed, 0xbfeb728345196e3e, // 0.5141, -0.85773' 0x3fe1c73b39ae68c8, 0xbfea9b66290ea1a3, // 0.55557, -0.83147' 0x3fe30ff7fce17035, 0xbfe9b3e047f38741, // 0.5957, -0.80321' 0x3fe44cf325091dd6, 0xbfe8bc806b151741, // 0.63439, -0.77301' 0x3fe57d69348cec9f, 0xbfe7b5df226aafb0, // 0.67156, -0.74095' 0x3fe6a09e667f3bcc, 0xbfe6a09e667f3bcc, // 0.70711, -0.70711' 0x3fe7b5df226aafb0, 0xbfe57d69348cec9f, // 0.74095, -0.67156' 0x3fe8bc806b151741, 0xbfe44cf325091dd6, // 0.77301, -0.63439' 0x3fe9b3e047f38741, 0xbfe30ff7fce17035, // 0.80321, -0.5957' 0x3fea9b66290ea1a3, 0xbfe1c73b39ae68c8, // 0.83147, -0.55557' 0x3feb728345196e3e, 0xbfe073879922ffed, // 0.85773, -0.5141' 0x3fec38b2f180bdb1, 0xbfde2b5d3806f63b, // 0.88192, -0.4714' 0x3feced7af43cc773, 0xbfdb5d1009e15cc0, // 0.90399, -0.42756' 0x3fed906bcf328d46, 0xbfd87de2a6aea963, // 0.92388, -0.38268' 0x3fee212104f686e5, 0xbfd58f9a75ab1fdd, // 0.94154, -0.33689' 0x3fee9f4156c62dda, 0xbfd294062ed59f05, // 0.95694, -0.29028' 0x3fef0a7efb9230d7, 0xbfcf19f97b215f1a, // 0.97003, -0.24298' 0x3fef6297cff75cb0, 0xbfc8f8b83c69a60a, // 0.98079, -0.19509' 0x3fefa7557f08a517, 0xbfc2c8106e8e613a, // 0.98918, -0.14673' 0x3fefd88da3d12526, 0xbfb917a6bc29b42c, // 0.99518,-0.098017' 0x3feff621e3796d7e, 0xbfa91f65f10dd814, // 0.9988,-0.049068' }; /** @par Example code for Double Precision Floating-point Twiddle factors Generation: @par
for(i = 0; i< N/; i++)
  {
 	twiddleCoef[2*i]   = cos(i * 2*PI/(float)N);
 	twiddleCoef[2*i+1] = sin(i * 2*PI/(float)N);
  } 
@par where N = 256, PI = 3.14159265358979 @par Cos and Sin values are in interleaved fashion */ const uint64_t twiddleCoefF64_256[512] ARM_DSP_TABLE_ATTRIBUTE = { 0x3ff0000000000000, 0x0000000000000000, // 1, 0 0x3feffd886084cd0d, 0x3f992155f7a3667e, // 0.9997, 0.024541 0x3feff621e3796d7e, 0x3fa91f65f10dd814, // 0.9988, 0.049068 0x3fefe9cdad01883a, 0x3fb2d52092ce19f6, // 0.99729, 0.073565 0x3fefd88da3d12526, 0x3fb917a6bc29b42c, // 0.99518, 0.098017 0x3fefc26470e19fd3, 0x3fbf564e56a9730e, // 0.99248, 0.12241 0x3fefa7557f08a517, 0x3fc2c8106e8e613a, // 0.98918, 0.14673 0x3fef8764fa714ba9, 0x3fc5e214448b3fc6, // 0.98528, 0.17096 0x3fef6297cff75cb0, 0x3fc8f8b83c69a60a, // 0.98079, 0.19509 0x3fef38f3ac64e589, 0x3fcc0b826a7e4f63, // 0.9757, 0.2191 0x3fef0a7efb9230d7, 0x3fcf19f97b215f1a, // 0.97003, 0.24298 0x3feed740e7684963, 0x3fd111d262b1f677, // 0.96378, 0.26671 0x3fee9f4156c62dda, 0x3fd294062ed59f05, // 0.95694, 0.29028 0x3fee6288ec48e112, 0x3fd4135c94176602, // 0.94953, 0.31368 0x3fee212104f686e5, 0x3fd58f9a75ab1fdd, // 0.94154, 0.33689 0x3feddb13b6ccc23d, 0x3fd7088530fa459e, // 0.93299, 0.3599 0x3fed906bcf328d46, 0x3fd87de2a6aea963, // 0.92388, 0.38268 0x3fed4134d14dc93a, 0x3fd9ef7943a8ed8a, // 0.91421, 0.40524 0x3feced7af43cc773, 0x3fdb5d1009e15cc0, // 0.90399, 0.42756 0x3fec954b213411f5, 0x3fdcc66e9931c45d, // 0.89322, 0.44961 0x3fec38b2f180bdb1, 0x3fde2b5d3806f63b, // 0.88192, 0.4714 0x3febd7c0ac6f952a, 0x3fdf8ba4dbf89aba, // 0.87009, 0.4929 0x3feb728345196e3e, 0x3fe073879922ffed, // 0.85773, 0.5141 0x3feb090a58150200, 0x3fe11eb3541b4b22, // 0.84485, 0.535 0x3fea9b66290ea1a3, 0x3fe1c73b39ae68c8, // 0.83147, 0.55557 0x3fea29a7a0462782, 0x3fe26d054cdd12df, // 0.81758, 0.57581 0x3fe9b3e047f38741, 0x3fe30ff7fce17035, // 0.80321, 0.5957 0x3fe93a22499263fc, 0x3fe3affa292050b9, // 0.78835, 0.61523 0x3fe8bc806b151741, 0x3fe44cf325091dd6, // 0.77301, 0.63439 0x3fe83b0e0bff976e, 0x3fe4e6cabbe3e5e9, // 0.75721, 0.65317 0x3fe7b5df226aafb0, 0x3fe57d69348cec9f, // 0.74095, 0.67156 0x3fe72d0837efff97, 0x3fe610b7551d2cde, // 0.72425, 0.68954 0x3fe6a09e667f3bcc, 0x3fe6a09e667f3bcc, // 0.70711, 0.70711 0x3fe610b7551d2cde, 0x3fe72d0837efff97, // 0.68954, 0.72425 0x3fe57d69348cec9f, 0x3fe7b5df226aafb0, // 0.67156, 0.74095 0x3fe4e6cabbe3e5e9, 0x3fe83b0e0bff976e, // 0.65317, 0.75721 0x3fe44cf325091dd6, 0x3fe8bc806b151741, // 0.63439, 0.77301 0x3fe3affa292050b9, 0x3fe93a22499263fc, // 0.61523, 0.78835 0x3fe30ff7fce17035, 0x3fe9b3e047f38741, // 0.5957, 0.80321 0x3fe26d054cdd12df, 0x3fea29a7a0462782, // 0.57581, 0.81758 0x3fe1c73b39ae68c8, 0x3fea9b66290ea1a3, // 0.55557, 0.83147 0x3fe11eb3541b4b22, 0x3feb090a58150200, // 0.535, 0.84485 0x3fe073879922ffed, 0x3feb728345196e3e, // 0.5141, 0.85773 0x3fdf8ba4dbf89aba, 0x3febd7c0ac6f952a, // 0.4929, 0.87009 0x3fde2b5d3806f63b, 0x3fec38b2f180bdb1, // 0.4714, 0.88192 0x3fdcc66e9931c45d, 0x3fec954b213411f5, // 0.44961, 0.89322 0x3fdb5d1009e15cc0, 0x3feced7af43cc773, // 0.42756, 0.90399 0x3fd9ef7943a8ed8a, 0x3fed4134d14dc93a, // 0.40524, 0.91421 0x3fd87de2a6aea963, 0x3fed906bcf328d46, // 0.38268, 0.92388 0x3fd7088530fa459e, 0x3feddb13b6ccc23d, // 0.3599, 0.93299 0x3fd58f9a75ab1fdd, 0x3fee212104f686e5, // 0.33689, 0.94154 0x3fd4135c94176602, 0x3fee6288ec48e112, // 0.31368, 0.94953 0x3fd294062ed59f05, 0x3fee9f4156c62dda, // 0.29028, 0.95694 0x3fd111d262b1f677, 0x3feed740e7684963, // 0.26671, 0.96378 0x3fcf19f97b215f1a, 0x3fef0a7efb9230d7, // 0.24298, 0.97003 0x3fcc0b826a7e4f63, 0x3fef38f3ac64e589, // 0.2191, 0.9757 0x3fc8f8b83c69a60a, 0x3fef6297cff75cb0, // 0.19509, 0.98079 0x3fc5e214448b3fc6, 0x3fef8764fa714ba9, // 0.17096, 0.98528 0x3fc2c8106e8e613a, 0x3fefa7557f08a517, // 0.14673, 0.98918 0x3fbf564e56a9730e, 0x3fefc26470e19fd3, // 0.12241, 0.99248 0x3fb917a6bc29b42c, 0x3fefd88da3d12526, // 0.098017, 0.99518 0x3fb2d52092ce19f6, 0x3fefe9cdad01883a, // 0.073565, 0.99729 0x3fa91f65f10dd814, 0x3feff621e3796d7e, // 0.049068, 0.9988 0x3f992155f7a3667e, 0x3feffd886084cd0d, // 0.024541, 0.9997 0x0000000000000000, 0x3ff0000000000000, // 0, 1 0xbf992155f7a3667e, 0x3feffd886084cd0d, //-0.024541, 0.9997 0xbfa91f65f10dd814, 0x3feff621e3796d7e, //-0.049068, 0.9988 0xbfb2d52092ce19f6, 0x3fefe9cdad01883a, //-0.073565, 0.99729 0xbfb917a6bc29b42c, 0x3fefd88da3d12526, //-0.098017, 0.99518 0xbfbf564e56a9730e, 0x3fefc26470e19fd3, // -0.12241, 0.99248 0xbfc2c8106e8e613a, 0x3fefa7557f08a517, // -0.14673, 0.98918 0xbfc5e214448b3fc6, 0x3fef8764fa714ba9, // -0.17096, 0.98528 0xbfc8f8b83c69a60a, 0x3fef6297cff75cb0, // -0.19509, 0.98079 0xbfcc0b826a7e4f63, 0x3fef38f3ac64e589, // -0.2191, 0.9757 0xbfcf19f97b215f1a, 0x3fef0a7efb9230d7, // -0.24298, 0.97003 0xbfd111d262b1f677, 0x3feed740e7684963, // -0.26671, 0.96378 0xbfd294062ed59f05, 0x3fee9f4156c62dda, // -0.29028, 0.95694 0xbfd4135c94176602, 0x3fee6288ec48e112, // -0.31368, 0.94953 0xbfd58f9a75ab1fdd, 0x3fee212104f686e5, // -0.33689, 0.94154 0xbfd7088530fa459e, 0x3feddb13b6ccc23d, // -0.3599, 0.93299 0xbfd87de2a6aea963, 0x3fed906bcf328d46, // -0.38268, 0.92388 0xbfd9ef7943a8ed8a, 0x3fed4134d14dc93a, // -0.40524, 0.91421 0xbfdb5d1009e15cc0, 0x3feced7af43cc773, // -0.42756, 0.90399 0xbfdcc66e9931c45d, 0x3fec954b213411f5, // -0.44961, 0.89322 0xbfde2b5d3806f63b, 0x3fec38b2f180bdb1, // -0.4714, 0.88192 0xbfdf8ba4dbf89aba, 0x3febd7c0ac6f952a, // -0.4929, 0.87009 0xbfe073879922ffed, 0x3feb728345196e3e, // -0.5141, 0.85773 0xbfe11eb3541b4b22, 0x3feb090a58150200, // -0.535, 0.84485 0xbfe1c73b39ae68c8, 0x3fea9b66290ea1a3, // -0.55557, 0.83147 0xbfe26d054cdd12df, 0x3fea29a7a0462782, // -0.57581, 0.81758 0xbfe30ff7fce17035, 0x3fe9b3e047f38741, // -0.5957, 0.80321 0xbfe3affa292050b9, 0x3fe93a22499263fc, // -0.61523, 0.78835 0xbfe44cf325091dd6, 0x3fe8bc806b151741, // -0.63439, 0.77301 0xbfe4e6cabbe3e5e9, 0x3fe83b0e0bff976e, // -0.65317, 0.75721 0xbfe57d69348cec9f, 0x3fe7b5df226aafb0, // -0.67156, 0.74095 0xbfe610b7551d2cde, 0x3fe72d0837efff97, // -0.68954, 0.72425 0xbfe6a09e667f3bcc, 0x3fe6a09e667f3bcc, // -0.70711, 0.70711 0xbfe72d0837efff97, 0x3fe610b7551d2cde, // -0.72425, 0.68954 0xbfe7b5df226aafb0, 0x3fe57d69348cec9f, // -0.74095, 0.67156 0xbfe83b0e0bff976e, 0x3fe4e6cabbe3e5e9, // -0.75721, 0.65317 0xbfe8bc806b151741, 0x3fe44cf325091dd6, // -0.77301, 0.63439 0xbfe93a22499263fc, 0x3fe3affa292050b9, // -0.78835, 0.61523 0xbfe9b3e047f38741, 0x3fe30ff7fce17035, // -0.80321, 0.5957 0xbfea29a7a0462782, 0x3fe26d054cdd12df, // -0.81758, 0.57581 0xbfea9b66290ea1a3, 0x3fe1c73b39ae68c8, // -0.83147, 0.55557 0xbfeb090a58150200, 0x3fe11eb3541b4b22, // -0.84485, 0.535 0xbfeb728345196e3e, 0x3fe073879922ffed, // -0.85773, 0.5141 0xbfebd7c0ac6f952a, 0x3fdf8ba4dbf89aba, // -0.87009, 0.4929 0xbfec38b2f180bdb1, 0x3fde2b5d3806f63b, // -0.88192, 0.4714 0xbfec954b213411f5, 0x3fdcc66e9931c45d, // -0.89322, 0.44961 0xbfeced7af43cc773, 0x3fdb5d1009e15cc0, // -0.90399, 0.42756 0xbfed4134d14dc93a, 0x3fd9ef7943a8ed8a, // -0.91421, 0.40524 0xbfed906bcf328d46, 0x3fd87de2a6aea963, // -0.92388, 0.38268 0xbfeddb13b6ccc23d, 0x3fd7088530fa459e, // -0.93299, 0.3599 0xbfee212104f686e5, 0x3fd58f9a75ab1fdd, // -0.94154, 0.33689 0xbfee6288ec48e112, 0x3fd4135c94176602, // -0.94953, 0.31368 0xbfee9f4156c62dda, 0x3fd294062ed59f05, // -0.95694, 0.29028 0xbfeed740e7684963, 0x3fd111d262b1f677, // -0.96378, 0.26671 0xbfef0a7efb9230d7, 0x3fcf19f97b215f1a, // -0.97003, 0.24298 0xbfef38f3ac64e589, 0x3fcc0b826a7e4f63, // -0.9757, 0.2191 0xbfef6297cff75cb0, 0x3fc8f8b83c69a60a, // -0.98079, 0.19509 0xbfef8764fa714ba9, 0x3fc5e214448b3fc6, // -0.98528, 0.17096 0xbfefa7557f08a517, 0x3fc2c8106e8e613a, // -0.98918, 0.14673 0xbfefc26470e19fd3, 0x3fbf564e56a9730e, // -0.99248, 0.12241 0xbfefd88da3d12526, 0x3fb917a6bc29b42c, // -0.99518, 0.098017 0xbfefe9cdad01883a, 0x3fb2d52092ce19f6, // -0.99729, 0.073565 0xbfeff621e3796d7e, 0x3fa91f65f10dd814, // -0.9988, 0.049068 0xbfeffd886084cd0d, 0x3f992155f7a3667e, // -0.9997, 0.024541 0xbff0000000000000, 0x0000000000000000, // -1, 0 0xbfeffd886084cd0d, 0xbf992155f7a3667e, // -0.9997,-0.024541 0xbfeff621e3796d7e, 0xbfa91f65f10dd814, // -0.9988,-0.049068 0xbfefe9cdad01883a, 0xbfb2d52092ce19f6, // -0.99729,-0.073565 0xbfefd88da3d12526, 0xbfb917a6bc29b42c, // -0.99518,-0.098017 0xbfefc26470e19fd3, 0xbfbf564e56a9730e, // -0.99248, -0.12241 0xbfefa7557f08a517, 0xbfc2c8106e8e613a, // -0.98918, -0.14673 0xbfef8764fa714ba9, 0xbfc5e214448b3fc6, // -0.98528, -0.17096 0xbfef6297cff75cb0, 0xbfc8f8b83c69a60a, // -0.98079, -0.19509 0xbfef38f3ac64e589, 0xbfcc0b826a7e4f63, // -0.9757, -0.2191 0xbfef0a7efb9230d7, 0xbfcf19f97b215f1a, // -0.97003, -0.24298 0xbfeed740e7684963, 0xbfd111d262b1f677, // -0.96378, -0.26671 0xbfee9f4156c62dda, 0xbfd294062ed59f05, // -0.95694, -0.29028 0xbfee6288ec48e112, 0xbfd4135c94176602, // -0.94953, -0.31368 0xbfee212104f686e5, 0xbfd58f9a75ab1fdd, // -0.94154, -0.33689 0xbfeddb13b6ccc23d, 0xbfd7088530fa459e, // -0.93299, -0.3599 0xbfed906bcf328d46, 0xbfd87de2a6aea963, // -0.92388, -0.38268 0xbfed4134d14dc93a, 0xbfd9ef7943a8ed8a, // -0.91421, -0.40524 0xbfeced7af43cc773, 0xbfdb5d1009e15cc0, // -0.90399, -0.42756 0xbfec954b213411f5, 0xbfdcc66e9931c45d, // -0.89322, -0.44961 0xbfec38b2f180bdb1, 0xbfde2b5d3806f63b, // -0.88192, -0.4714 0xbfebd7c0ac6f952a, 0xbfdf8ba4dbf89aba, // -0.87009, -0.4929 0xbfeb728345196e3e, 0xbfe073879922ffed, // -0.85773, -0.5141 0xbfeb090a58150200, 0xbfe11eb3541b4b22, // -0.84485, -0.535 0xbfea9b66290ea1a3, 0xbfe1c73b39ae68c8, // -0.83147, -0.55557 0xbfea29a7a0462782, 0xbfe26d054cdd12df, // -0.81758, -0.57581 0xbfe9b3e047f38741, 0xbfe30ff7fce17035, // -0.80321, -0.5957 0xbfe93a22499263fc, 0xbfe3affa292050b9, // -0.78835, -0.61523 0xbfe8bc806b151741, 0xbfe44cf325091dd6, // -0.77301, -0.63439 0xbfe83b0e0bff976e, 0xbfe4e6cabbe3e5e9, // -0.75721, -0.65317 0xbfe7b5df226aafb0, 0xbfe57d69348cec9f, // -0.74095, -0.67156 0xbfe72d0837efff97, 0xbfe610b7551d2cde, // -0.72425, -0.68954 0xbfe6a09e667f3bcc, 0xbfe6a09e667f3bcc, // -0.70711, -0.70711 0xbfe610b7551d2cde, 0xbfe72d0837efff97, // -0.68954, -0.72425 0xbfe57d69348cec9f, 0xbfe7b5df226aafb0, // -0.67156, -0.74095 0xbfe4e6cabbe3e5e9, 0xbfe83b0e0bff976e, // -0.65317, -0.75721 0xbfe44cf325091dd6, 0xbfe8bc806b151741, // -0.63439, -0.77301 0xbfe3affa292050b9, 0xbfe93a22499263fc, // -0.61523, -0.78835 0xbfe30ff7fce17035, 0xbfe9b3e047f38741, // -0.5957, -0.80321 0xbfe26d054cdd12df, 0xbfea29a7a0462782, // -0.57581, -0.81758 0xbfe1c73b39ae68c8, 0xbfea9b66290ea1a3, // -0.55557, -0.83147 0xbfe11eb3541b4b22, 0xbfeb090a58150200, // -0.535, -0.84485 0xbfe073879922ffed, 0xbfeb728345196e3e, // -0.5141, -0.85773 0xbfdf8ba4dbf89aba, 0xbfebd7c0ac6f952a, // -0.4929, -0.87009 0xbfde2b5d3806f63b, 0xbfec38b2f180bdb1, // -0.4714, -0.88192 0xbfdcc66e9931c45d, 0xbfec954b213411f5, // -0.44961, -0.89322 0xbfdb5d1009e15cc0, 0xbfeced7af43cc773, // -0.42756, -0.90399 0xbfd9ef7943a8ed8a, 0xbfed4134d14dc93a, // -0.40524, -0.91421 0xbfd87de2a6aea963, 0xbfed906bcf328d46, // -0.38268, -0.92388 0xbfd7088530fa459e, 0xbfeddb13b6ccc23d, // -0.3599, -0.93299 0xbfd58f9a75ab1fdd, 0xbfee212104f686e5, // -0.33689, -0.94154 0xbfd4135c94176602, 0xbfee6288ec48e112, // -0.31368, -0.94953 0xbfd294062ed59f05, 0xbfee9f4156c62dda, // -0.29028, -0.95694 0xbfd111d262b1f677, 0xbfeed740e7684963, // -0.26671, -0.96378 0xbfcf19f97b215f1a, 0xbfef0a7efb9230d7, // -0.24298, -0.97003 0xbfcc0b826a7e4f63, 0xbfef38f3ac64e589, // -0.2191, -0.9757 0xbfc8f8b83c69a60a, 0xbfef6297cff75cb0, // -0.19509, -0.98079 0xbfc5e214448b3fc6, 0xbfef8764fa714ba9, // -0.17096, -0.98528 0xbfc2c8106e8e613a, 0xbfefa7557f08a517, // -0.14673, -0.98918 0xbfbf564e56a9730e, 0xbfefc26470e19fd3, // -0.12241, -0.99248 0xbfb917a6bc29b42c, 0xbfefd88da3d12526, //-0.098017, -0.99518 0xbfb2d52092ce19f6, 0xbfefe9cdad01883a, //-0.073565, -0.99729 0xbfa91f65f10dd814, 0xbfeff621e3796d7e, //-0.049068, -0.9988 0xbf992155f7a3667e, 0xbfeffd886084cd0d, //-0.024541, -0.9997 0x0000000000000000, 0xbff0000000000000, // 0, -1 0x3f992155f7a3667e, 0xbfeffd886084cd0d, // 0.024541, -0.9997 0x3fa91f65f10dd814, 0xbfeff621e3796d7e, // 0.049068, -0.9988 0x3fb2d52092ce19f6, 0xbfefe9cdad01883a, // 0.073565, -0.99729 0x3fb917a6bc29b42c, 0xbfefd88da3d12526, // 0.098017, -0.99518 0x3fbf564e56a9730e, 0xbfefc26470e19fd3, // 0.12241, -0.99248 0x3fc2c8106e8e613a, 0xbfefa7557f08a517, // 0.14673, -0.98918 0x3fc5e214448b3fc6, 0xbfef8764fa714ba9, // 0.17096, -0.98528 0x3fc8f8b83c69a60a, 0xbfef6297cff75cb0, // 0.19509, -0.98079 0x3fcc0b826a7e4f63, 0xbfef38f3ac64e589, // 0.2191, -0.9757 0x3fcf19f97b215f1a, 0xbfef0a7efb9230d7, // 0.24298, -0.97003 0x3fd111d262b1f677, 0xbfeed740e7684963, // 0.26671, -0.96378 0x3fd294062ed59f05, 0xbfee9f4156c62dda, // 0.29028, -0.95694 0x3fd4135c94176602, 0xbfee6288ec48e112, // 0.31368, -0.94953 0x3fd58f9a75ab1fdd, 0xbfee212104f686e5, // 0.33689, -0.94154 0x3fd7088530fa459e, 0xbfeddb13b6ccc23d, // 0.3599, -0.93299 0x3fd87de2a6aea963, 0xbfed906bcf328d46, // 0.38268, -0.92388 0x3fd9ef7943a8ed8a, 0xbfed4134d14dc93a, // 0.40524, -0.91421 0x3fdb5d1009e15cc0, 0xbfeced7af43cc773, // 0.42756, -0.90399 0x3fdcc66e9931c45d, 0xbfec954b213411f5, // 0.44961, -0.89322 0x3fde2b5d3806f63b, 0xbfec38b2f180bdb1, // 0.4714, -0.88192 0x3fdf8ba4dbf89aba, 0xbfebd7c0ac6f952a, // 0.4929, -0.87009 0x3fe073879922ffed, 0xbfeb728345196e3e, // 0.5141, -0.85773 0x3fe11eb3541b4b22, 0xbfeb090a58150200, // 0.535, -0.84485 0x3fe1c73b39ae68c8, 0xbfea9b66290ea1a3, // 0.55557, -0.83147 0x3fe26d054cdd12df, 0xbfea29a7a0462782, // 0.57581, -0.81758 0x3fe30ff7fce17035, 0xbfe9b3e047f38741, // 0.5957, -0.80321 0x3fe3affa292050b9, 0xbfe93a22499263fc, // 0.61523, -0.78835 0x3fe44cf325091dd6, 0xbfe8bc806b151741, // 0.63439, -0.77301 0x3fe4e6cabbe3e5e9, 0xbfe83b0e0bff976e, // 0.65317, -0.75721 0x3fe57d69348cec9f, 0xbfe7b5df226aafb0, // 0.67156, -0.74095 0x3fe610b7551d2cde, 0xbfe72d0837efff97, // 0.68954, -0.72425 0x3fe6a09e667f3bcc, 0xbfe6a09e667f3bcc, // 0.70711, -0.70711 0x3fe72d0837efff97, 0xbfe610b7551d2cde, // 0.72425, -0.68954 0x3fe7b5df226aafb0, 0xbfe57d69348cec9f, // 0.74095, -0.67156 0x3fe83b0e0bff976e, 0xbfe4e6cabbe3e5e9, // 0.75721, -0.65317 0x3fe8bc806b151741, 0xbfe44cf325091dd6, // 0.77301, -0.63439 0x3fe93a22499263fc, 0xbfe3affa292050b9, // 0.78835, -0.61523 0x3fe9b3e047f38741, 0xbfe30ff7fce17035, // 0.80321, -0.5957 0x3fea29a7a0462782, 0xbfe26d054cdd12df, // 0.81758, -0.57581 0x3fea9b66290ea1a3, 0xbfe1c73b39ae68c8, // 0.83147, -0.55557 0x3feb090a58150200, 0xbfe11eb3541b4b22, // 0.84485, -0.535 0x3feb728345196e3e, 0xbfe073879922ffed, // 0.85773, -0.5141 0x3febd7c0ac6f952a, 0xbfdf8ba4dbf89aba, // 0.87009, -0.4929 0x3fec38b2f180bdb1, 0xbfde2b5d3806f63b, // 0.88192, -0.4714 0x3fec954b213411f5, 0xbfdcc66e9931c45d, // 0.89322, -0.44961 0x3feced7af43cc773, 0xbfdb5d1009e15cc0, // 0.90399, -0.42756 0x3fed4134d14dc93a, 0xbfd9ef7943a8ed8a, // 0.91421, -0.40524 0x3fed906bcf328d46, 0xbfd87de2a6aea963, // 0.92388, -0.38268 0x3feddb13b6ccc23d, 0xbfd7088530fa459e, // 0.93299, -0.3599 0x3fee212104f686e5, 0xbfd58f9a75ab1fdd, // 0.94154, -0.33689 0x3fee6288ec48e112, 0xbfd4135c94176602, // 0.94953, -0.31368 0x3fee9f4156c62dda, 0xbfd294062ed59f05, // 0.95694, -0.29028 0x3feed740e7684963, 0xbfd111d262b1f677, // 0.96378, -0.26671 0x3fef0a7efb9230d7, 0xbfcf19f97b215f1a, // 0.97003, -0.24298 0x3fef38f3ac64e589, 0xbfcc0b826a7e4f63, // 0.9757, -0.2191 0x3fef6297cff75cb0, 0xbfc8f8b83c69a60a, // 0.98079, -0.19509 0x3fef8764fa714ba9, 0xbfc5e214448b3fc6, // 0.98528, -0.17096 0x3fefa7557f08a517, 0xbfc2c8106e8e613a, // 0.98918, -0.14673 0x3fefc26470e19fd3, 0xbfbf564e56a9730e, // 0.99248, -0.12241 0x3fefd88da3d12526, 0xbfb917a6bc29b42c, // 0.99518,-0.098017 0x3fefe9cdad01883a, 0xbfb2d52092ce19f6, // 0.99729,-0.073565 0x3feff621e3796d7e, 0xbfa91f65f10dd814, // 0.9988,-0.049068 0x3feffd886084cd0d, 0xbf992155f7a3667e, // 0.9997,-0.024541 }; /** @par Example code for Double Precision Floating-point Twiddle factors Generation: @par
for (i = 0; i< N/; i++)
  {
 	twiddleCoef[2*i]   = cos(i * 2*PI/(float)N);
 	twiddleCoef[2*i+1] = sin(i * 2*PI/(float)N);
  } 
@par where N = 512, PI = 3.14159265358979 @par Cos and Sin values are in interleaved fashion */ const uint64_t twiddleCoefF64_512[1024] ARM_DSP_TABLE_ATTRIBUTE = { 0x3ff0000000000000, 0x0000000000000000, // 1, 0 0x3fefff62169b92db, 0x3f8921d1fcdec784, // 0.99992, 0.012272 0x3feffd886084cd0d, 0x3f992155f7a3667e, // 0.9997, 0.024541 0x3feffa72effef75d, 0x3fa2d865759455cd, // 0.99932, 0.036807 0x3feff621e3796d7e, 0x3fa91f65f10dd814, // 0.9988, 0.049068 0x3feff095658e71ad, 0x3faf656e79f820e0, // 0.99812, 0.061321 0x3fefe9cdad01883a, 0x3fb2d52092ce19f6, // 0.99729, 0.073565 0x3fefe1cafcbd5b09, 0x3fb5f6d00a9aa419, // 0.99631, 0.085797 0x3fefd88da3d12526, 0x3fb917a6bc29b42c, // 0.99518, 0.098017 0x3fefce15fd6da67b, 0x3fbc3785c79ec2d5, // 0.99391, 0.11022 0x3fefc26470e19fd3, 0x3fbf564e56a9730e, // 0.99248, 0.12241 0x3fefb5797195d741, 0x3fc139f0cedaf576, // 0.9909, 0.13458 0x3fefa7557f08a517, 0x3fc2c8106e8e613a, // 0.98918, 0.14673 0x3fef97f924c9099b, 0x3fc45576b1293e5a, // 0.9873, 0.15886 0x3fef8764fa714ba9, 0x3fc5e214448b3fc6, // 0.98528, 0.17096 0x3fef7599a3a12077, 0x3fc76dd9de50bf31, // 0.98311, 0.18304 0x3fef6297cff75cb0, 0x3fc8f8b83c69a60a, // 0.98079, 0.19509 0x3fef4e603b0b2f2d, 0x3fca82a025b00451, // 0.97832, 0.20711 0x3fef38f3ac64e589, 0x3fcc0b826a7e4f63, // 0.9757, 0.2191 0x3fef2252f7763ada, 0x3fcd934fe5454311, // 0.97294, 0.23106 0x3fef0a7efb9230d7, 0x3fcf19f97b215f1a, // 0.97003, 0.24298 0x3feef178a3e473c2, 0x3fd04fb80e37fdae, // 0.96698, 0.25487 0x3feed740e7684963, 0x3fd111d262b1f677, // 0.96378, 0.26671 0x3feebbd8c8df0b74, 0x3fd1d3443f4cdb3d, // 0.96043, 0.27852 0x3fee9f4156c62dda, 0x3fd294062ed59f05, // 0.95694, 0.29028 0x3fee817bab4cd10d, 0x3fd35410c2e18152, // 0.95331, 0.30201 0x3fee6288ec48e112, 0x3fd4135c94176602, // 0.94953, 0.31368 0x3fee426a4b2bc17e, 0x3fd4d1e24278e76a, // 0.94561, 0.32531 0x3fee212104f686e5, 0x3fd58f9a75ab1fdd, // 0.94154, 0.33689 0x3fedfeae622dbe2b, 0x3fd64c7ddd3f27c6, // 0.93734, 0.34842 0x3feddb13b6ccc23d, 0x3fd7088530fa459e, // 0.93299, 0.3599 0x3fedb6526238a09b, 0x3fd7c3a9311dcce7, // 0.92851, 0.37132 0x3fed906bcf328d46, 0x3fd87de2a6aea963, // 0.92388, 0.38268 0x3fed696173c9e68b, 0x3fd9372a63bc93d7, // 0.91911, 0.39399 0x3fed4134d14dc93a, 0x3fd9ef7943a8ed8a, // 0.91421, 0.40524 0x3fed17e7743e35dc, 0x3fdaa6c82b6d3fc9, // 0.90917, 0.41643 0x3feced7af43cc773, 0x3fdb5d1009e15cc0, // 0.90399, 0.42756 0x3fecc1f0f3fcfc5c, 0x3fdc1249d8011ee7, // 0.89867, 0.43862 0x3fec954b213411f5, 0x3fdcc66e9931c45d, // 0.89322, 0.44961 0x3fec678b3488739b, 0x3fdd79775b86e389, // 0.88764, 0.46054 0x3fec38b2f180bdb1, 0x3fde2b5d3806f63b, // 0.88192, 0.4714 0x3fec08c426725549, 0x3fdedc1952ef78d5, // 0.87607, 0.48218 0x3febd7c0ac6f952a, 0x3fdf8ba4dbf89aba, // 0.87009, 0.4929 0x3feba5aa673590d2, 0x3fe01cfc874c3eb7, // 0.86397, 0.50354 0x3feb728345196e3e, 0x3fe073879922ffed, // 0.85773, 0.5141 0x3feb3e4d3ef55712, 0x3fe0c9704d5d898f, // 0.85136, 0.52459 0x3feb090a58150200, 0x3fe11eb3541b4b22, // 0.84485, 0.535 0x3fead2bc9e21d511, 0x3fe1734d63dedb49, // 0.83822, 0.54532 0x3fea9b66290ea1a3, 0x3fe1c73b39ae68c8, // 0.83147, 0.55557 0x3fea63091b02fae2, 0x3fe21a799933eb58, // 0.82459, 0.56573 0x3fea29a7a0462782, 0x3fe26d054cdd12df, // 0.81758, 0.57581 0x3fe9ef43ef29af94, 0x3fe2bedb25faf3ea, // 0.81046, 0.5858 0x3fe9b3e047f38741, 0x3fe30ff7fce17035, // 0.80321, 0.5957 0x3fe9777ef4c7d742, 0x3fe36058b10659f3, // 0.79584, 0.60551 0x3fe93a22499263fc, 0x3fe3affa292050b9, // 0.78835, 0.61523 0x3fe8fbcca3ef940d, 0x3fe3fed9534556d4, // 0.78074, 0.62486 0x3fe8bc806b151741, 0x3fe44cf325091dd6, // 0.77301, 0.63439 0x3fe87c400fba2ebf, 0x3fe49a449b9b0938, // 0.76517, 0.64383 0x3fe83b0e0bff976e, 0x3fe4e6cabbe3e5e9, // 0.75721, 0.65317 0x3fe7f8ece3571771, 0x3fe5328292a35596, // 0.74914, 0.66242 0x3fe7b5df226aafb0, 0x3fe57d69348cec9f, // 0.74095, 0.67156 0x3fe771e75f037261, 0x3fe5c77bbe65018c, // 0.73265, 0.6806 0x3fe72d0837efff97, 0x3fe610b7551d2cde, // 0.72425, 0.68954 0x3fe6e74454eaa8ae, 0x3fe6591925f0783e, // 0.71573, 0.69838 0x3fe6a09e667f3bcc, 0x3fe6a09e667f3bcc, // 0.70711, 0.70711 0x3fe6591925f0783e, 0x3fe6e74454eaa8ae, // 0.69838, 0.71573 0x3fe610b7551d2cde, 0x3fe72d0837efff97, // 0.68954, 0.72425 0x3fe5c77bbe65018c, 0x3fe771e75f037261, // 0.6806, 0.73265 0x3fe57d69348cec9f, 0x3fe7b5df226aafb0, // 0.67156, 0.74095 0x3fe5328292a35596, 0x3fe7f8ece3571771, // 0.66242, 0.74914 0x3fe4e6cabbe3e5e9, 0x3fe83b0e0bff976e, // 0.65317, 0.75721 0x3fe49a449b9b0938, 0x3fe87c400fba2ebf, // 0.64383, 0.76517 0x3fe44cf325091dd6, 0x3fe8bc806b151741, // 0.63439, 0.77301 0x3fe3fed9534556d4, 0x3fe8fbcca3ef940d, // 0.62486, 0.78074 0x3fe3affa292050b9, 0x3fe93a22499263fc, // 0.61523, 0.78835 0x3fe36058b10659f3, 0x3fe9777ef4c7d742, // 0.60551, 0.79584 0x3fe30ff7fce17035, 0x3fe9b3e047f38741, // 0.5957, 0.80321 0x3fe2bedb25faf3ea, 0x3fe9ef43ef29af94, // 0.5858, 0.81046 0x3fe26d054cdd12df, 0x3fea29a7a0462782, // 0.57581, 0.81758 0x3fe21a799933eb58, 0x3fea63091b02fae2, // 0.56573, 0.82459 0x3fe1c73b39ae68c8, 0x3fea9b66290ea1a3, // 0.55557, 0.83147 0x3fe1734d63dedb49, 0x3fead2bc9e21d511, // 0.54532, 0.83822 0x3fe11eb3541b4b22, 0x3feb090a58150200, // 0.535, 0.84485 0x3fe0c9704d5d898f, 0x3feb3e4d3ef55712, // 0.52459, 0.85136 0x3fe073879922ffed, 0x3feb728345196e3e, // 0.5141, 0.85773 0x3fe01cfc874c3eb7, 0x3feba5aa673590d2, // 0.50354, 0.86397 0x3fdf8ba4dbf89aba, 0x3febd7c0ac6f952a, // 0.4929, 0.87009 0x3fdedc1952ef78d5, 0x3fec08c426725549, // 0.48218, 0.87607 0x3fde2b5d3806f63b, 0x3fec38b2f180bdb1, // 0.4714, 0.88192 0x3fdd79775b86e389, 0x3fec678b3488739b, // 0.46054, 0.88764 0x3fdcc66e9931c45d, 0x3fec954b213411f5, // 0.44961, 0.89322 0x3fdc1249d8011ee7, 0x3fecc1f0f3fcfc5c, // 0.43862, 0.89867 0x3fdb5d1009e15cc0, 0x3feced7af43cc773, // 0.42756, 0.90399 0x3fdaa6c82b6d3fc9, 0x3fed17e7743e35dc, // 0.41643, 0.90917 0x3fd9ef7943a8ed8a, 0x3fed4134d14dc93a, // 0.40524, 0.91421 0x3fd9372a63bc93d7, 0x3fed696173c9e68b, // 0.39399, 0.91911 0x3fd87de2a6aea963, 0x3fed906bcf328d46, // 0.38268, 0.92388 0x3fd7c3a9311dcce7, 0x3fedb6526238a09b, // 0.37132, 0.92851 0x3fd7088530fa459e, 0x3feddb13b6ccc23d, // 0.3599, 0.93299 0x3fd64c7ddd3f27c6, 0x3fedfeae622dbe2b, // 0.34842, 0.93734 0x3fd58f9a75ab1fdd, 0x3fee212104f686e5, // 0.33689, 0.94154 0x3fd4d1e24278e76a, 0x3fee426a4b2bc17e, // 0.32531, 0.94561 0x3fd4135c94176602, 0x3fee6288ec48e112, // 0.31368, 0.94953 0x3fd35410c2e18152, 0x3fee817bab4cd10d, // 0.30201, 0.95331 0x3fd294062ed59f05, 0x3fee9f4156c62dda, // 0.29028, 0.95694 0x3fd1d3443f4cdb3d, 0x3feebbd8c8df0b74, // 0.27852, 0.96043 0x3fd111d262b1f677, 0x3feed740e7684963, // 0.26671, 0.96378 0x3fd04fb80e37fdae, 0x3feef178a3e473c2, // 0.25487, 0.96698 0x3fcf19f97b215f1a, 0x3fef0a7efb9230d7, // 0.24298, 0.97003 0x3fcd934fe5454311, 0x3fef2252f7763ada, // 0.23106, 0.97294 0x3fcc0b826a7e4f63, 0x3fef38f3ac64e589, // 0.2191, 0.9757 0x3fca82a025b00451, 0x3fef4e603b0b2f2d, // 0.20711, 0.97832 0x3fc8f8b83c69a60a, 0x3fef6297cff75cb0, // 0.19509, 0.98079 0x3fc76dd9de50bf31, 0x3fef7599a3a12077, // 0.18304, 0.98311 0x3fc5e214448b3fc6, 0x3fef8764fa714ba9, // 0.17096, 0.98528 0x3fc45576b1293e5a, 0x3fef97f924c9099b, // 0.15886, 0.9873 0x3fc2c8106e8e613a, 0x3fefa7557f08a517, // 0.14673, 0.98918 0x3fc139f0cedaf576, 0x3fefb5797195d741, // 0.13458, 0.9909 0x3fbf564e56a9730e, 0x3fefc26470e19fd3, // 0.12241, 0.99248 0x3fbc3785c79ec2d5, 0x3fefce15fd6da67b, // 0.11022, 0.99391 0x3fb917a6bc29b42c, 0x3fefd88da3d12526, // 0.098017, 0.99518 0x3fb5f6d00a9aa419, 0x3fefe1cafcbd5b09, // 0.085797, 0.99631 0x3fb2d52092ce19f6, 0x3fefe9cdad01883a, // 0.073565, 0.99729 0x3faf656e79f820e0, 0x3feff095658e71ad, // 0.061321, 0.99812 0x3fa91f65f10dd814, 0x3feff621e3796d7e, // 0.049068, 0.9988 0x3fa2d865759455cd, 0x3feffa72effef75d, // 0.036807, 0.99932 0x3f992155f7a3667e, 0x3feffd886084cd0d, // 0.024541, 0.9997 0x3f8921d1fcdec784, 0x3fefff62169b92db, // 0.012272, 0.99992 0x0000000000000000, 0x3ff0000000000000, // 0, 1 0xbf8921d1fcdec784, 0x3fefff62169b92db, //-0.012272, 0.99992 0xbf992155f7a3667e, 0x3feffd886084cd0d, //-0.024541, 0.9997 0xbfa2d865759455cd, 0x3feffa72effef75d, //-0.036807, 0.99932 0xbfa91f65f10dd814, 0x3feff621e3796d7e, //-0.049068, 0.9988 0xbfaf656e79f820e0, 0x3feff095658e71ad, //-0.061321, 0.99812 0xbfb2d52092ce19f6, 0x3fefe9cdad01883a, //-0.073565, 0.99729 0xbfb5f6d00a9aa419, 0x3fefe1cafcbd5b09, //-0.085797, 0.99631 0xbfb917a6bc29b42c, 0x3fefd88da3d12526, //-0.098017, 0.99518 0xbfbc3785c79ec2d5, 0x3fefce15fd6da67b, // -0.11022, 0.99391 0xbfbf564e56a9730e, 0x3fefc26470e19fd3, // -0.12241, 0.99248 0xbfc139f0cedaf576, 0x3fefb5797195d741, // -0.13458, 0.9909 0xbfc2c8106e8e613a, 0x3fefa7557f08a517, // -0.14673, 0.98918 0xbfc45576b1293e5a, 0x3fef97f924c9099b, // -0.15886, 0.9873 0xbfc5e214448b3fc6, 0x3fef8764fa714ba9, // -0.17096, 0.98528 0xbfc76dd9de50bf31, 0x3fef7599a3a12077, // -0.18304, 0.98311 0xbfc8f8b83c69a60a, 0x3fef6297cff75cb0, // -0.19509, 0.98079 0xbfca82a025b00451, 0x3fef4e603b0b2f2d, // -0.20711, 0.97832 0xbfcc0b826a7e4f63, 0x3fef38f3ac64e589, // -0.2191, 0.9757 0xbfcd934fe5454311, 0x3fef2252f7763ada, // -0.23106, 0.97294 0xbfcf19f97b215f1a, 0x3fef0a7efb9230d7, // -0.24298, 0.97003 0xbfd04fb80e37fdae, 0x3feef178a3e473c2, // -0.25487, 0.96698 0xbfd111d262b1f677, 0x3feed740e7684963, // -0.26671, 0.96378 0xbfd1d3443f4cdb3d, 0x3feebbd8c8df0b74, // -0.27852, 0.96043 0xbfd294062ed59f05, 0x3fee9f4156c62dda, // -0.29028, 0.95694 0xbfd35410c2e18152, 0x3fee817bab4cd10d, // -0.30201, 0.95331 0xbfd4135c94176602, 0x3fee6288ec48e112, // -0.31368, 0.94953 0xbfd4d1e24278e76a, 0x3fee426a4b2bc17e, // -0.32531, 0.94561 0xbfd58f9a75ab1fdd, 0x3fee212104f686e5, // -0.33689, 0.94154 0xbfd64c7ddd3f27c6, 0x3fedfeae622dbe2b, // -0.34842, 0.93734 0xbfd7088530fa459e, 0x3feddb13b6ccc23d, // -0.3599, 0.93299 0xbfd7c3a9311dcce7, 0x3fedb6526238a09b, // -0.37132, 0.92851 0xbfd87de2a6aea963, 0x3fed906bcf328d46, // -0.38268, 0.92388 0xbfd9372a63bc93d7, 0x3fed696173c9e68b, // -0.39399, 0.91911 0xbfd9ef7943a8ed8a, 0x3fed4134d14dc93a, // -0.40524, 0.91421 0xbfdaa6c82b6d3fc9, 0x3fed17e7743e35dc, // -0.41643, 0.90917 0xbfdb5d1009e15cc0, 0x3feced7af43cc773, // -0.42756, 0.90399 0xbfdc1249d8011ee7, 0x3fecc1f0f3fcfc5c, // -0.43862, 0.89867 0xbfdcc66e9931c45d, 0x3fec954b213411f5, // -0.44961, 0.89322 0xbfdd79775b86e389, 0x3fec678b3488739b, // -0.46054, 0.88764 0xbfde2b5d3806f63b, 0x3fec38b2f180bdb1, // -0.4714, 0.88192 0xbfdedc1952ef78d5, 0x3fec08c426725549, // -0.48218, 0.87607 0xbfdf8ba4dbf89aba, 0x3febd7c0ac6f952a, // -0.4929, 0.87009 0xbfe01cfc874c3eb7, 0x3feba5aa673590d2, // -0.50354, 0.86397 0xbfe073879922ffed, 0x3feb728345196e3e, // -0.5141, 0.85773 0xbfe0c9704d5d898f, 0x3feb3e4d3ef55712, // -0.52459, 0.85136 0xbfe11eb3541b4b22, 0x3feb090a58150200, // -0.535, 0.84485 0xbfe1734d63dedb49, 0x3fead2bc9e21d511, // -0.54532, 0.83822 0xbfe1c73b39ae68c8, 0x3fea9b66290ea1a3, // -0.55557, 0.83147 0xbfe21a799933eb58, 0x3fea63091b02fae2, // -0.56573, 0.82459 0xbfe26d054cdd12df, 0x3fea29a7a0462782, // -0.57581, 0.81758 0xbfe2bedb25faf3ea, 0x3fe9ef43ef29af94, // -0.5858, 0.81046 0xbfe30ff7fce17035, 0x3fe9b3e047f38741, // -0.5957, 0.80321 0xbfe36058b10659f3, 0x3fe9777ef4c7d742, // -0.60551, 0.79584 0xbfe3affa292050b9, 0x3fe93a22499263fc, // -0.61523, 0.78835 0xbfe3fed9534556d4, 0x3fe8fbcca3ef940d, // -0.62486, 0.78074 0xbfe44cf325091dd6, 0x3fe8bc806b151741, // -0.63439, 0.77301 0xbfe49a449b9b0938, 0x3fe87c400fba2ebf, // -0.64383, 0.76517 0xbfe4e6cabbe3e5e9, 0x3fe83b0e0bff976e, // -0.65317, 0.75721 0xbfe5328292a35596, 0x3fe7f8ece3571771, // -0.66242, 0.74914 0xbfe57d69348cec9f, 0x3fe7b5df226aafb0, // -0.67156, 0.74095 0xbfe5c77bbe65018c, 0x3fe771e75f037261, // -0.6806, 0.73265 0xbfe610b7551d2cde, 0x3fe72d0837efff97, // -0.68954, 0.72425 0xbfe6591925f0783e, 0x3fe6e74454eaa8ae, // -0.69838, 0.71573 0xbfe6a09e667f3bcc, 0x3fe6a09e667f3bcc, // -0.70711, 0.70711 0xbfe6e74454eaa8ae, 0x3fe6591925f0783e, // -0.71573, 0.69838 0xbfe72d0837efff97, 0x3fe610b7551d2cde, // -0.72425, 0.68954 0xbfe771e75f037261, 0x3fe5c77bbe65018c, // -0.73265, 0.6806 0xbfe7b5df226aafb0, 0x3fe57d69348cec9f, // -0.74095, 0.67156 0xbfe7f8ece3571771, 0x3fe5328292a35596, // -0.74914, 0.66242 0xbfe83b0e0bff976e, 0x3fe4e6cabbe3e5e9, // -0.75721, 0.65317 0xbfe87c400fba2ebf, 0x3fe49a449b9b0938, // -0.76517, 0.64383 0xbfe8bc806b151741, 0x3fe44cf325091dd6, // -0.77301, 0.63439 0xbfe8fbcca3ef940d, 0x3fe3fed9534556d4, // -0.78074, 0.62486 0xbfe93a22499263fc, 0x3fe3affa292050b9, // -0.78835, 0.61523 0xbfe9777ef4c7d742, 0x3fe36058b10659f3, // -0.79584, 0.60551 0xbfe9b3e047f38741, 0x3fe30ff7fce17035, // -0.80321, 0.5957 0xbfe9ef43ef29af94, 0x3fe2bedb25faf3ea, // -0.81046, 0.5858 0xbfea29a7a0462782, 0x3fe26d054cdd12df, // -0.81758, 0.57581 0xbfea63091b02fae2, 0x3fe21a799933eb58, // -0.82459, 0.56573 0xbfea9b66290ea1a3, 0x3fe1c73b39ae68c8, // -0.83147, 0.55557 0xbfead2bc9e21d511, 0x3fe1734d63dedb49, // -0.83822, 0.54532 0xbfeb090a58150200, 0x3fe11eb3541b4b22, // -0.84485, 0.535 0xbfeb3e4d3ef55712, 0x3fe0c9704d5d898f, // -0.85136, 0.52459 0xbfeb728345196e3e, 0x3fe073879922ffed, // -0.85773, 0.5141 0xbfeba5aa673590d2, 0x3fe01cfc874c3eb7, // -0.86397, 0.50354 0xbfebd7c0ac6f952a, 0x3fdf8ba4dbf89aba, // -0.87009, 0.4929 0xbfec08c426725549, 0x3fdedc1952ef78d5, // -0.87607, 0.48218 0xbfec38b2f180bdb1, 0x3fde2b5d3806f63b, // -0.88192, 0.4714 0xbfec678b3488739b, 0x3fdd79775b86e389, // -0.88764, 0.46054 0xbfec954b213411f5, 0x3fdcc66e9931c45d, // -0.89322, 0.44961 0xbfecc1f0f3fcfc5c, 0x3fdc1249d8011ee7, // -0.89867, 0.43862 0xbfeced7af43cc773, 0x3fdb5d1009e15cc0, // -0.90399, 0.42756 0xbfed17e7743e35dc, 0x3fdaa6c82b6d3fc9, // -0.90917, 0.41643 0xbfed4134d14dc93a, 0x3fd9ef7943a8ed8a, // -0.91421, 0.40524 0xbfed696173c9e68b, 0x3fd9372a63bc93d7, // -0.91911, 0.39399 0xbfed906bcf328d46, 0x3fd87de2a6aea963, // -0.92388, 0.38268 0xbfedb6526238a09b, 0x3fd7c3a9311dcce7, // -0.92851, 0.37132 0xbfeddb13b6ccc23d, 0x3fd7088530fa459e, // -0.93299, 0.3599 0xbfedfeae622dbe2b, 0x3fd64c7ddd3f27c6, // -0.93734, 0.34842 0xbfee212104f686e5, 0x3fd58f9a75ab1fdd, // -0.94154, 0.33689 0xbfee426a4b2bc17e, 0x3fd4d1e24278e76a, // -0.94561, 0.32531 0xbfee6288ec48e112, 0x3fd4135c94176602, // -0.94953, 0.31368 0xbfee817bab4cd10d, 0x3fd35410c2e18152, // -0.95331, 0.30201 0xbfee9f4156c62dda, 0x3fd294062ed59f05, // -0.95694, 0.29028 0xbfeebbd8c8df0b74, 0x3fd1d3443f4cdb3d, // -0.96043, 0.27852 0xbfeed740e7684963, 0x3fd111d262b1f677, // -0.96378, 0.26671 0xbfeef178a3e473c2, 0x3fd04fb80e37fdae, // -0.96698, 0.25487 0xbfef0a7efb9230d7, 0x3fcf19f97b215f1a, // -0.97003, 0.24298 0xbfef2252f7763ada, 0x3fcd934fe5454311, // -0.97294, 0.23106 0xbfef38f3ac64e589, 0x3fcc0b826a7e4f63, // -0.9757, 0.2191 0xbfef4e603b0b2f2d, 0x3fca82a025b00451, // -0.97832, 0.20711 0xbfef6297cff75cb0, 0x3fc8f8b83c69a60a, // -0.98079, 0.19509 0xbfef7599a3a12077, 0x3fc76dd9de50bf31, // -0.98311, 0.18304 0xbfef8764fa714ba9, 0x3fc5e214448b3fc6, // -0.98528, 0.17096 0xbfef97f924c9099b, 0x3fc45576b1293e5a, // -0.9873, 0.15886 0xbfefa7557f08a517, 0x3fc2c8106e8e613a, // -0.98918, 0.14673 0xbfefb5797195d741, 0x3fc139f0cedaf576, // -0.9909, 0.13458 0xbfefc26470e19fd3, 0x3fbf564e56a9730e, // -0.99248, 0.12241 0xbfefce15fd6da67b, 0x3fbc3785c79ec2d5, // -0.99391, 0.11022 0xbfefd88da3d12526, 0x3fb917a6bc29b42c, // -0.99518, 0.098017 0xbfefe1cafcbd5b09, 0x3fb5f6d00a9aa419, // -0.99631, 0.085797 0xbfefe9cdad01883a, 0x3fb2d52092ce19f6, // -0.99729, 0.073565 0xbfeff095658e71ad, 0x3faf656e79f820e0, // -0.99812, 0.061321 0xbfeff621e3796d7e, 0x3fa91f65f10dd814, // -0.9988, 0.049068 0xbfeffa72effef75d, 0x3fa2d865759455cd, // -0.99932, 0.036807 0xbfeffd886084cd0d, 0x3f992155f7a3667e, // -0.9997, 0.024541 0xbfefff62169b92db, 0x3f8921d1fcdec784, // -0.99992, 0.012272 0xbff0000000000000, 0x0000000000000000, // -1, 0 0xbfefff62169b92db, 0xbf8921d1fcdec784, // -0.99992,-0.012272 0xbfeffd886084cd0d, 0xbf992155f7a3667e, // -0.9997,-0.024541 0xbfeffa72effef75d, 0xbfa2d865759455cd, // -0.99932,-0.036807 0xbfeff621e3796d7e, 0xbfa91f65f10dd814, // -0.9988,-0.049068 0xbfeff095658e71ad, 0xbfaf656e79f820e0, // -0.99812,-0.061321 0xbfefe9cdad01883a, 0xbfb2d52092ce19f6, // -0.99729,-0.073565 0xbfefe1cafcbd5b09, 0xbfb5f6d00a9aa419, // -0.99631,-0.085797 0xbfefd88da3d12526, 0xbfb917a6bc29b42c, // -0.99518,-0.098017 0xbfefce15fd6da67b, 0xbfbc3785c79ec2d5, // -0.99391, -0.11022 0xbfefc26470e19fd3, 0xbfbf564e56a9730e, // -0.99248, -0.12241 0xbfefb5797195d741, 0xbfc139f0cedaf576, // -0.9909, -0.13458 0xbfefa7557f08a517, 0xbfc2c8106e8e613a, // -0.98918, -0.14673 0xbfef97f924c9099b, 0xbfc45576b1293e5a, // -0.9873, -0.15886 0xbfef8764fa714ba9, 0xbfc5e214448b3fc6, // -0.98528, -0.17096 0xbfef7599a3a12077, 0xbfc76dd9de50bf31, // -0.98311, -0.18304 0xbfef6297cff75cb0, 0xbfc8f8b83c69a60a, // -0.98079, -0.19509 0xbfef4e603b0b2f2d, 0xbfca82a025b00451, // -0.97832, -0.20711 0xbfef38f3ac64e589, 0xbfcc0b826a7e4f63, // -0.9757, -0.2191 0xbfef2252f7763ada, 0xbfcd934fe5454311, // -0.97294, -0.23106 0xbfef0a7efb9230d7, 0xbfcf19f97b215f1a, // -0.97003, -0.24298 0xbfeef178a3e473c2, 0xbfd04fb80e37fdae, // -0.96698, -0.25487 0xbfeed740e7684963, 0xbfd111d262b1f677, // -0.96378, -0.26671 0xbfeebbd8c8df0b74, 0xbfd1d3443f4cdb3d, // -0.96043, -0.27852 0xbfee9f4156c62dda, 0xbfd294062ed59f05, // -0.95694, -0.29028 0xbfee817bab4cd10d, 0xbfd35410c2e18152, // -0.95331, -0.30201 0xbfee6288ec48e112, 0xbfd4135c94176602, // -0.94953, -0.31368 0xbfee426a4b2bc17e, 0xbfd4d1e24278e76a, // -0.94561, -0.32531 0xbfee212104f686e5, 0xbfd58f9a75ab1fdd, // -0.94154, -0.33689 0xbfedfeae622dbe2b, 0xbfd64c7ddd3f27c6, // -0.93734, -0.34842 0xbfeddb13b6ccc23d, 0xbfd7088530fa459e, // -0.93299, -0.3599 0xbfedb6526238a09b, 0xbfd7c3a9311dcce7, // -0.92851, -0.37132 0xbfed906bcf328d46, 0xbfd87de2a6aea963, // -0.92388, -0.38268 0xbfed696173c9e68b, 0xbfd9372a63bc93d7, // -0.91911, -0.39399 0xbfed4134d14dc93a, 0xbfd9ef7943a8ed8a, // -0.91421, -0.40524 0xbfed17e7743e35dc, 0xbfdaa6c82b6d3fc9, // -0.90917, -0.41643 0xbfeced7af43cc773, 0xbfdb5d1009e15cc0, // -0.90399, -0.42756 0xbfecc1f0f3fcfc5c, 0xbfdc1249d8011ee7, // -0.89867, -0.43862 0xbfec954b213411f5, 0xbfdcc66e9931c45d, // -0.89322, -0.44961 0xbfec678b3488739b, 0xbfdd79775b86e389, // -0.88764, -0.46054 0xbfec38b2f180bdb1, 0xbfde2b5d3806f63b, // -0.88192, -0.4714 0xbfec08c426725549, 0xbfdedc1952ef78d5, // -0.87607, -0.48218 0xbfebd7c0ac6f952a, 0xbfdf8ba4dbf89aba, // -0.87009, -0.4929 0xbfeba5aa673590d2, 0xbfe01cfc874c3eb7, // -0.86397, -0.50354 0xbfeb728345196e3e, 0xbfe073879922ffed, // -0.85773, -0.5141 0xbfeb3e4d3ef55712, 0xbfe0c9704d5d898f, // -0.85136, -0.52459 0xbfeb090a58150200, 0xbfe11eb3541b4b22, // -0.84485, -0.535 0xbfead2bc9e21d511, 0xbfe1734d63dedb49, // -0.83822, -0.54532 0xbfea9b66290ea1a3, 0xbfe1c73b39ae68c8, // -0.83147, -0.55557 0xbfea63091b02fae2, 0xbfe21a799933eb58, // -0.82459, -0.56573 0xbfea29a7a0462782, 0xbfe26d054cdd12df, // -0.81758, -0.57581 0xbfe9ef43ef29af94, 0xbfe2bedb25faf3ea, // -0.81046, -0.5858 0xbfe9b3e047f38741, 0xbfe30ff7fce17035, // -0.80321, -0.5957 0xbfe9777ef4c7d742, 0xbfe36058b10659f3, // -0.79584, -0.60551 0xbfe93a22499263fc, 0xbfe3affa292050b9, // -0.78835, -0.61523 0xbfe8fbcca3ef940d, 0xbfe3fed9534556d4, // -0.78074, -0.62486 0xbfe8bc806b151741, 0xbfe44cf325091dd6, // -0.77301, -0.63439 0xbfe87c400fba2ebf, 0xbfe49a449b9b0938, // -0.76517, -0.64383 0xbfe83b0e0bff976e, 0xbfe4e6cabbe3e5e9, // -0.75721, -0.65317 0xbfe7f8ece3571771, 0xbfe5328292a35596, // -0.74914, -0.66242 0xbfe7b5df226aafb0, 0xbfe57d69348cec9f, // -0.74095, -0.67156 0xbfe771e75f037261, 0xbfe5c77bbe65018c, // -0.73265, -0.6806 0xbfe72d0837efff97, 0xbfe610b7551d2cde, // -0.72425, -0.68954 0xbfe6e74454eaa8ae, 0xbfe6591925f0783e, // -0.71573, -0.69838 0xbfe6a09e667f3bcc, 0xbfe6a09e667f3bcc, // -0.70711, -0.70711 0xbfe6591925f0783e, 0xbfe6e74454eaa8ae, // -0.69838, -0.71573 0xbfe610b7551d2cde, 0xbfe72d0837efff97, // -0.68954, -0.72425 0xbfe5c77bbe65018c, 0xbfe771e75f037261, // -0.6806, -0.73265 0xbfe57d69348cec9f, 0xbfe7b5df226aafb0, // -0.67156, -0.74095 0xbfe5328292a35596, 0xbfe7f8ece3571771, // -0.66242, -0.74914 0xbfe4e6cabbe3e5e9, 0xbfe83b0e0bff976e, // -0.65317, -0.75721 0xbfe49a449b9b0938, 0xbfe87c400fba2ebf, // -0.64383, -0.76517 0xbfe44cf325091dd6, 0xbfe8bc806b151741, // -0.63439, -0.77301 0xbfe3fed9534556d4, 0xbfe8fbcca3ef940d, // -0.62486, -0.78074 0xbfe3affa292050b9, 0xbfe93a22499263fc, // -0.61523, -0.78835 0xbfe36058b10659f3, 0xbfe9777ef4c7d742, // -0.60551, -0.79584 0xbfe30ff7fce17035, 0xbfe9b3e047f38741, // -0.5957, -0.80321 0xbfe2bedb25faf3ea, 0xbfe9ef43ef29af94, // -0.5858, -0.81046 0xbfe26d054cdd12df, 0xbfea29a7a0462782, // -0.57581, -0.81758 0xbfe21a799933eb58, 0xbfea63091b02fae2, // -0.56573, -0.82459 0xbfe1c73b39ae68c8, 0xbfea9b66290ea1a3, // -0.55557, -0.83147 0xbfe1734d63dedb49, 0xbfead2bc9e21d511, // -0.54532, -0.83822 0xbfe11eb3541b4b22, 0xbfeb090a58150200, // -0.535, -0.84485 0xbfe0c9704d5d898f, 0xbfeb3e4d3ef55712, // -0.52459, -0.85136 0xbfe073879922ffed, 0xbfeb728345196e3e, // -0.5141, -0.85773 0xbfe01cfc874c3eb7, 0xbfeba5aa673590d2, // -0.50354, -0.86397 0xbfdf8ba4dbf89aba, 0xbfebd7c0ac6f952a, // -0.4929, -0.87009 0xbfdedc1952ef78d5, 0xbfec08c426725549, // -0.48218, -0.87607 0xbfde2b5d3806f63b, 0xbfec38b2f180bdb1, // -0.4714, -0.88192 0xbfdd79775b86e389, 0xbfec678b3488739b, // -0.46054, -0.88764 0xbfdcc66e9931c45d, 0xbfec954b213411f5, // -0.44961, -0.89322 0xbfdc1249d8011ee7, 0xbfecc1f0f3fcfc5c, // -0.43862, -0.89867 0xbfdb5d1009e15cc0, 0xbfeced7af43cc773, // -0.42756, -0.90399 0xbfdaa6c82b6d3fc9, 0xbfed17e7743e35dc, // -0.41643, -0.90917 0xbfd9ef7943a8ed8a, 0xbfed4134d14dc93a, // -0.40524, -0.91421 0xbfd9372a63bc93d7, 0xbfed696173c9e68b, // -0.39399, -0.91911 0xbfd87de2a6aea963, 0xbfed906bcf328d46, // -0.38268, -0.92388 0xbfd7c3a9311dcce7, 0xbfedb6526238a09b, // -0.37132, -0.92851 0xbfd7088530fa459e, 0xbfeddb13b6ccc23d, // -0.3599, -0.93299 0xbfd64c7ddd3f27c6, 0xbfedfeae622dbe2b, // -0.34842, -0.93734 0xbfd58f9a75ab1fdd, 0xbfee212104f686e5, // -0.33689, -0.94154 0xbfd4d1e24278e76a, 0xbfee426a4b2bc17e, // -0.32531, -0.94561 0xbfd4135c94176602, 0xbfee6288ec48e112, // -0.31368, -0.94953 0xbfd35410c2e18152, 0xbfee817bab4cd10d, // -0.30201, -0.95331 0xbfd294062ed59f05, 0xbfee9f4156c62dda, // -0.29028, -0.95694 0xbfd1d3443f4cdb3d, 0xbfeebbd8c8df0b74, // -0.27852, -0.96043 0xbfd111d262b1f677, 0xbfeed740e7684963, // -0.26671, -0.96378 0xbfd04fb80e37fdae, 0xbfeef178a3e473c2, // -0.25487, -0.96698 0xbfcf19f97b215f1a, 0xbfef0a7efb9230d7, // -0.24298, -0.97003 0xbfcd934fe5454311, 0xbfef2252f7763ada, // -0.23106, -0.97294 0xbfcc0b826a7e4f63, 0xbfef38f3ac64e589, // -0.2191, -0.9757 0xbfca82a025b00451, 0xbfef4e603b0b2f2d, // -0.20711, -0.97832 0xbfc8f8b83c69a60a, 0xbfef6297cff75cb0, // -0.19509, -0.98079 0xbfc76dd9de50bf31, 0xbfef7599a3a12077, // -0.18304, -0.98311 0xbfc5e214448b3fc6, 0xbfef8764fa714ba9, // -0.17096, -0.98528 0xbfc45576b1293e5a, 0xbfef97f924c9099b, // -0.15886, -0.9873 0xbfc2c8106e8e613a, 0xbfefa7557f08a517, // -0.14673, -0.98918 0xbfc139f0cedaf576, 0xbfefb5797195d741, // -0.13458, -0.9909 0xbfbf564e56a9730e, 0xbfefc26470e19fd3, // -0.12241, -0.99248 0xbfbc3785c79ec2d5, 0xbfefce15fd6da67b, // -0.11022, -0.99391 0xbfb917a6bc29b42c, 0xbfefd88da3d12526, //-0.098017, -0.99518 0xbfb5f6d00a9aa419, 0xbfefe1cafcbd5b09, //-0.085797, -0.99631 0xbfb2d52092ce19f6, 0xbfefe9cdad01883a, //-0.073565, -0.99729 0xbfaf656e79f820e0, 0xbfeff095658e71ad, //-0.061321, -0.99812 0xbfa91f65f10dd814, 0xbfeff621e3796d7e, //-0.049068, -0.9988 0xbfa2d865759455cd, 0xbfeffa72effef75d, //-0.036807, -0.99932 0xbf992155f7a3667e, 0xbfeffd886084cd0d, //-0.024541, -0.9997 0xbf8921d1fcdec784, 0xbfefff62169b92db, //-0.012272, -0.99992 0x0000000000000000, 0xbff0000000000000, // 0, -1 0x3f8921d1fcdec784, 0xbfefff62169b92db, // 0.012272, -0.99992 0x3f992155f7a3667e, 0xbfeffd886084cd0d, // 0.024541, -0.9997 0x3fa2d865759455cd, 0xbfeffa72effef75d, // 0.036807, -0.99932 0x3fa91f65f10dd814, 0xbfeff621e3796d7e, // 0.049068, -0.9988 0x3faf656e79f820e0, 0xbfeff095658e71ad, // 0.061321, -0.99812 0x3fb2d52092ce19f6, 0xbfefe9cdad01883a, // 0.073565, -0.99729 0x3fb5f6d00a9aa419, 0xbfefe1cafcbd5b09, // 0.085797, -0.99631 0x3fb917a6bc29b42c, 0xbfefd88da3d12526, // 0.098017, -0.99518 0x3fbc3785c79ec2d5, 0xbfefce15fd6da67b, // 0.11022, -0.99391 0x3fbf564e56a9730e, 0xbfefc26470e19fd3, // 0.12241, -0.99248 0x3fc139f0cedaf576, 0xbfefb5797195d741, // 0.13458, -0.9909 0x3fc2c8106e8e613a, 0xbfefa7557f08a517, // 0.14673, -0.98918 0x3fc45576b1293e5a, 0xbfef97f924c9099b, // 0.15886, -0.9873 0x3fc5e214448b3fc6, 0xbfef8764fa714ba9, // 0.17096, -0.98528 0x3fc76dd9de50bf31, 0xbfef7599a3a12077, // 0.18304, -0.98311 0x3fc8f8b83c69a60a, 0xbfef6297cff75cb0, // 0.19509, -0.98079 0x3fca82a025b00451, 0xbfef4e603b0b2f2d, // 0.20711, -0.97832 0x3fcc0b826a7e4f63, 0xbfef38f3ac64e589, // 0.2191, -0.9757 0x3fcd934fe5454311, 0xbfef2252f7763ada, // 0.23106, -0.97294 0x3fcf19f97b215f1a, 0xbfef0a7efb9230d7, // 0.24298, -0.97003 0x3fd04fb80e37fdae, 0xbfeef178a3e473c2, // 0.25487, -0.96698 0x3fd111d262b1f677, 0xbfeed740e7684963, // 0.26671, -0.96378 0x3fd1d3443f4cdb3d, 0xbfeebbd8c8df0b74, // 0.27852, -0.96043 0x3fd294062ed59f05, 0xbfee9f4156c62dda, // 0.29028, -0.95694 0x3fd35410c2e18152, 0xbfee817bab4cd10d, // 0.30201, -0.95331 0x3fd4135c94176602, 0xbfee6288ec48e112, // 0.31368, -0.94953 0x3fd4d1e24278e76a, 0xbfee426a4b2bc17e, // 0.32531, -0.94561 0x3fd58f9a75ab1fdd, 0xbfee212104f686e5, // 0.33689, -0.94154 0x3fd64c7ddd3f27c6, 0xbfedfeae622dbe2b, // 0.34842, -0.93734 0x3fd7088530fa459e, 0xbfeddb13b6ccc23d, // 0.3599, -0.93299 0x3fd7c3a9311dcce7, 0xbfedb6526238a09b, // 0.37132, -0.92851 0x3fd87de2a6aea963, 0xbfed906bcf328d46, // 0.38268, -0.92388 0x3fd9372a63bc93d7, 0xbfed696173c9e68b, // 0.39399, -0.91911 0x3fd9ef7943a8ed8a, 0xbfed4134d14dc93a, // 0.40524, -0.91421 0x3fdaa6c82b6d3fc9, 0xbfed17e7743e35dc, // 0.41643, -0.90917 0x3fdb5d1009e15cc0, 0xbfeced7af43cc773, // 0.42756, -0.90399 0x3fdc1249d8011ee7, 0xbfecc1f0f3fcfc5c, // 0.43862, -0.89867 0x3fdcc66e9931c45d, 0xbfec954b213411f5, // 0.44961, -0.89322 0x3fdd79775b86e389, 0xbfec678b3488739b, // 0.46054, -0.88764 0x3fde2b5d3806f63b, 0xbfec38b2f180bdb1, // 0.4714, -0.88192 0x3fdedc1952ef78d5, 0xbfec08c426725549, // 0.48218, -0.87607 0x3fdf8ba4dbf89aba, 0xbfebd7c0ac6f952a, // 0.4929, -0.87009 0x3fe01cfc874c3eb7, 0xbfeba5aa673590d2, // 0.50354, -0.86397 0x3fe073879922ffed, 0xbfeb728345196e3e, // 0.5141, -0.85773 0x3fe0c9704d5d898f, 0xbfeb3e4d3ef55712, // 0.52459, -0.85136 0x3fe11eb3541b4b22, 0xbfeb090a58150200, // 0.535, -0.84485 0x3fe1734d63dedb49, 0xbfead2bc9e21d511, // 0.54532, -0.83822 0x3fe1c73b39ae68c8, 0xbfea9b66290ea1a3, // 0.55557, -0.83147 0x3fe21a799933eb58, 0xbfea63091b02fae2, // 0.56573, -0.82459 0x3fe26d054cdd12df, 0xbfea29a7a0462782, // 0.57581, -0.81758 0x3fe2bedb25faf3ea, 0xbfe9ef43ef29af94, // 0.5858, -0.81046 0x3fe30ff7fce17035, 0xbfe9b3e047f38741, // 0.5957, -0.80321 0x3fe36058b10659f3, 0xbfe9777ef4c7d742, // 0.60551, -0.79584 0x3fe3affa292050b9, 0xbfe93a22499263fc, // 0.61523, -0.78835 0x3fe3fed9534556d4, 0xbfe8fbcca3ef940d, // 0.62486, -0.78074 0x3fe44cf325091dd6, 0xbfe8bc806b151741, // 0.63439, -0.77301 0x3fe49a449b9b0938, 0xbfe87c400fba2ebf, // 0.64383, -0.76517 0x3fe4e6cabbe3e5e9, 0xbfe83b0e0bff976e, // 0.65317, -0.75721 0x3fe5328292a35596, 0xbfe7f8ece3571771, // 0.66242, -0.74914 0x3fe57d69348cec9f, 0xbfe7b5df226aafb0, // 0.67156, -0.74095 0x3fe5c77bbe65018c, 0xbfe771e75f037261, // 0.6806, -0.73265 0x3fe610b7551d2cde, 0xbfe72d0837efff97, // 0.68954, -0.72425 0x3fe6591925f0783e, 0xbfe6e74454eaa8ae, // 0.69838, -0.71573 0x3fe6a09e667f3bcc, 0xbfe6a09e667f3bcc, // 0.70711, -0.70711 0x3fe6e74454eaa8ae, 0xbfe6591925f0783e, // 0.71573, -0.69838 0x3fe72d0837efff97, 0xbfe610b7551d2cde, // 0.72425, -0.68954 0x3fe771e75f037261, 0xbfe5c77bbe65018c, // 0.73265, -0.6806 0x3fe7b5df226aafb0, 0xbfe57d69348cec9f, // 0.74095, -0.67156 0x3fe7f8ece3571771, 0xbfe5328292a35596, // 0.74914, -0.66242 0x3fe83b0e0bff976e, 0xbfe4e6cabbe3e5e9, // 0.75721, -0.65317 0x3fe87c400fba2ebf, 0xbfe49a449b9b0938, // 0.76517, -0.64383 0x3fe8bc806b151741, 0xbfe44cf325091dd6, // 0.77301, -0.63439 0x3fe8fbcca3ef940d, 0xbfe3fed9534556d4, // 0.78074, -0.62486 0x3fe93a22499263fc, 0xbfe3affa292050b9, // 0.78835, -0.61523 0x3fe9777ef4c7d742, 0xbfe36058b10659f3, // 0.79584, -0.60551 0x3fe9b3e047f38741, 0xbfe30ff7fce17035, // 0.80321, -0.5957 0x3fe9ef43ef29af94, 0xbfe2bedb25faf3ea, // 0.81046, -0.5858 0x3fea29a7a0462782, 0xbfe26d054cdd12df, // 0.81758, -0.57581 0x3fea63091b02fae2, 0xbfe21a799933eb58, // 0.82459, -0.56573 0x3fea9b66290ea1a3, 0xbfe1c73b39ae68c8, // 0.83147, -0.55557 0x3fead2bc9e21d511, 0xbfe1734d63dedb49, // 0.83822, -0.54532 0x3feb090a58150200, 0xbfe11eb3541b4b22, // 0.84485, -0.535 0x3feb3e4d3ef55712, 0xbfe0c9704d5d898f, // 0.85136, -0.52459 0x3feb728345196e3e, 0xbfe073879922ffed, // 0.85773, -0.5141 0x3feba5aa673590d2, 0xbfe01cfc874c3eb7, // 0.86397, -0.50354 0x3febd7c0ac6f952a, 0xbfdf8ba4dbf89aba, // 0.87009, -0.4929 0x3fec08c426725549, 0xbfdedc1952ef78d5, // 0.87607, -0.48218 0x3fec38b2f180bdb1, 0xbfde2b5d3806f63b, // 0.88192, -0.4714 0x3fec678b3488739b, 0xbfdd79775b86e389, // 0.88764, -0.46054 0x3fec954b213411f5, 0xbfdcc66e9931c45d, // 0.89322, -0.44961 0x3fecc1f0f3fcfc5c, 0xbfdc1249d8011ee7, // 0.89867, -0.43862 0x3feced7af43cc773, 0xbfdb5d1009e15cc0, // 0.90399, -0.42756 0x3fed17e7743e35dc, 0xbfdaa6c82b6d3fc9, // 0.90917, -0.41643 0x3fed4134d14dc93a, 0xbfd9ef7943a8ed8a, // 0.91421, -0.40524 0x3fed696173c9e68b, 0xbfd9372a63bc93d7, // 0.91911, -0.39399 0x3fed906bcf328d46, 0xbfd87de2a6aea963, // 0.92388, -0.38268 0x3fedb6526238a09b, 0xbfd7c3a9311dcce7, // 0.92851, -0.37132 0x3feddb13b6ccc23d, 0xbfd7088530fa459e, // 0.93299, -0.3599 0x3fedfeae622dbe2b, 0xbfd64c7ddd3f27c6, // 0.93734, -0.34842 0x3fee212104f686e5, 0xbfd58f9a75ab1fdd, // 0.94154, -0.33689 0x3fee426a4b2bc17e, 0xbfd4d1e24278e76a, // 0.94561, -0.32531 0x3fee6288ec48e112, 0xbfd4135c94176602, // 0.94953, -0.31368 0x3fee817bab4cd10d, 0xbfd35410c2e18152, // 0.95331, -0.30201 0x3fee9f4156c62dda, 0xbfd294062ed59f05, // 0.95694, -0.29028 0x3feebbd8c8df0b74, 0xbfd1d3443f4cdb3d, // 0.96043, -0.27852 0x3feed740e7684963, 0xbfd111d262b1f677, // 0.96378, -0.26671 0x3feef178a3e473c2, 0xbfd04fb80e37fdae, // 0.96698, -0.25487 0x3fef0a7efb9230d7, 0xbfcf19f97b215f1a, // 0.97003, -0.24298 0x3fef2252f7763ada, 0xbfcd934fe5454311, // 0.97294, -0.23106 0x3fef38f3ac64e589, 0xbfcc0b826a7e4f63, // 0.9757, -0.2191 0x3fef4e603b0b2f2d, 0xbfca82a025b00451, // 0.97832, -0.20711 0x3fef6297cff75cb0, 0xbfc8f8b83c69a60a, // 0.98079, -0.19509 0x3fef7599a3a12077, 0xbfc76dd9de50bf31, // 0.98311, -0.18304 0x3fef8764fa714ba9, 0xbfc5e214448b3fc6, // 0.98528, -0.17096 0x3fef97f924c9099b, 0xbfc45576b1293e5a, // 0.9873, -0.15886 0x3fefa7557f08a517, 0xbfc2c8106e8e613a, // 0.98918, -0.14673 0x3fefb5797195d741, 0xbfc139f0cedaf576, // 0.9909, -0.13458 0x3fefc26470e19fd3, 0xbfbf564e56a9730e, // 0.99248, -0.12241 0x3fefce15fd6da67b, 0xbfbc3785c79ec2d5, // 0.99391, -0.11022 0x3fefd88da3d12526, 0xbfb917a6bc29b42c, // 0.99518,-0.098017 0x3fefe1cafcbd5b09, 0xbfb5f6d00a9aa419, // 0.99631,-0.085797 0x3fefe9cdad01883a, 0xbfb2d52092ce19f6, // 0.99729,-0.073565 0x3feff095658e71ad, 0xbfaf656e79f820e0, // 0.99812,-0.061321 0x3feff621e3796d7e, 0xbfa91f65f10dd814, // 0.9988,-0.049068 0x3feffa72effef75d, 0xbfa2d865759455cd, // 0.99932,-0.036807 0x3feffd886084cd0d, 0xbf992155f7a3667e, // 0.9997,-0.024541 0x3fefff62169b92db, 0xbf8921d1fcdec784, // 0.99992,-0.012272 }; /** @par Example code for Double Precision Floating-point Twiddle factors Generation: @par
for (i = 0; i< N/; i++)
  {
 	twiddleCoef[2*i]   = cos(i * 2*PI/(float)N);
 	twiddleCoef[2*i+1] = sin(i * 2*PI/(float)N);
  } 
@par where N = 1024, PI = 3.14159265358979 @par Cos and Sin values are in interleaved fashion */ const uint64_t twiddleCoefF64_1024[2048] ARM_DSP_TABLE_ATTRIBUTE = { 0x3ff0000000000000, 0x0000000000000000, // 1, 0 0x3fefffd8858e8a92, 0x3f7921f0fe670071, // 0.99998, 0.0061359 0x3fefff62169b92db, 0x3f8921d1fcdec784, // 0.99992, 0.012272 0x3feffe9cb44b51a1, 0x3f92d936bbe30efd, // 0.99983, 0.018407 0x3feffd886084cd0d, 0x3f992155f7a3667e, // 0.9997, 0.024541 0x3feffc251df1d3f8, 0x3f9f693731d1cf01, // 0.99953, 0.030675 0x3feffa72effef75d, 0x3fa2d865759455cd, // 0.99932, 0.036807 0x3feff871dadb81df, 0x3fa5fc00d290cd43, // 0.99908, 0.042938 0x3feff621e3796d7e, 0x3fa91f65f10dd814, // 0.9988, 0.049068 0x3feff3830f8d575c, 0x3fac428d12c0d7e3, // 0.99848, 0.055195 0x3feff095658e71ad, 0x3faf656e79f820e0, // 0.99812, 0.061321 0x3fefed58ecb673c4, 0x3fb1440134d709b2, // 0.99772, 0.067444 0x3fefe9cdad01883a, 0x3fb2d52092ce19f6, // 0.99729, 0.073565 0x3fefe5f3af2e3940, 0x3fb4661179272096, // 0.99682, 0.079682 0x3fefe1cafcbd5b09, 0x3fb5f6d00a9aa419, // 0.99631, 0.085797 0x3fefdd539ff1f456, 0x3fb787586a5d5b21, // 0.99577, 0.091909 0x3fefd88da3d12526, 0x3fb917a6bc29b42c, // 0.99518, 0.098017 0x3fefd37914220b84, 0x3fbaa7b724495c04, // 0.99456, 0.10412 0x3fefce15fd6da67b, 0x3fbc3785c79ec2d5, // 0.99391, 0.11022 0x3fefc8646cfeb721, 0x3fbdc70ecbae9fc8, // 0.99321, 0.11632 0x3fefc26470e19fd3, 0x3fbf564e56a9730e, // 0.99248, 0.12241 0x3fefbc1617e44186, 0x3fc072a047ba831d, // 0.99171, 0.1285 0x3fefb5797195d741, 0x3fc139f0cedaf576, // 0.9909, 0.13458 0x3fefae8e8e46cfbb, 0x3fc20116d4ec7bce, // 0.99006, 0.14066 0x3fefa7557f08a517, 0x3fc2c8106e8e613a, // 0.98918, 0.14673 0x3fef9fce55adb2c8, 0x3fc38edbb0cd8d14, // 0.98826, 0.1528 0x3fef97f924c9099b, 0x3fc45576b1293e5a, // 0.9873, 0.15886 0x3fef8fd5ffae41db, 0x3fc51bdf8597c5f2, // 0.98631, 0.16491 0x3fef8764fa714ba9, 0x3fc5e214448b3fc6, // 0.98528, 0.17096 0x3fef7ea629e63d6e, 0x3fc6a81304f64ab2, // 0.98421, 0.177 0x3fef7599a3a12077, 0x3fc76dd9de50bf31, // 0.98311, 0.18304 0x3fef6c3f7df5bbb7, 0x3fc83366e89c64c5, // 0.98196, 0.18907 0x3fef6297cff75cb0, 0x3fc8f8b83c69a60a, // 0.98079, 0.19509 0x3fef58a2b1789e84, 0x3fc9bdcbf2dc4366, // 0.97957, 0.2011 0x3fef4e603b0b2f2d, 0x3fca82a025b00451, // 0.97832, 0.20711 0x3fef43d085ff92dd, 0x3fcb4732ef3d6722, // 0.97703, 0.21311 0x3fef38f3ac64e589, 0x3fcc0b826a7e4f63, // 0.9757, 0.2191 0x3fef2dc9c9089a9d, 0x3fcccf8cb312b286, // 0.97434, 0.22508 0x3fef2252f7763ada, 0x3fcd934fe5454311, // 0.97294, 0.23106 0x3fef168f53f7205d, 0x3fce56ca1e101a1b, // 0.9715, 0.23702 0x3fef0a7efb9230d7, 0x3fcf19f97b215f1a, // 0.97003, 0.24298 0x3feefe220c0b95ec, 0x3fcfdcdc1adfedf8, // 0.96852, 0.24893 0x3feef178a3e473c2, 0x3fd04fb80e37fdae, // 0.96698, 0.25487 0x3feee482e25a9dbc, 0x3fd0b0d9cfdbdb90, // 0.96539, 0.26079 0x3feed740e7684963, 0x3fd111d262b1f677, // 0.96378, 0.26671 0x3feec9b2d3c3bf84, 0x3fd172a0d7765177, // 0.96212, 0.27262 0x3feebbd8c8df0b74, 0x3fd1d3443f4cdb3d, // 0.96043, 0.27852 0x3feeadb2e8e7a88e, 0x3fd233bbabc3bb72, // 0.9587, 0.28441 0x3fee9f4156c62dda, 0x3fd294062ed59f05, // 0.95694, 0.29028 0x3fee9084361df7f3, 0x3fd2f422daec0386, // 0.95514, 0.29615 0x3fee817bab4cd10d, 0x3fd35410c2e18152, // 0.95331, 0.30201 0x3fee7227db6a9744, 0x3fd3b3cefa0414b7, // 0.95144, 0.30785 0x3fee6288ec48e112, 0x3fd4135c94176602, // 0.94953, 0.31368 0x3fee529f04729ffc, 0x3fd472b8a5571054, // 0.94759, 0.3195 0x3fee426a4b2bc17e, 0x3fd4d1e24278e76a, // 0.94561, 0.32531 0x3fee31eae870ce25, 0x3fd530d880af3c24, // 0.94359, 0.33111 0x3fee212104f686e5, 0x3fd58f9a75ab1fdd, // 0.94154, 0.33689 0x3fee100cca2980ac, 0x3fd5ee27379ea693, // 0.93946, 0.34266 0x3fedfeae622dbe2b, 0x3fd64c7ddd3f27c6, // 0.93734, 0.34842 0x3feded05f7de47da, 0x3fd6aa9d7dc77e16, // 0.93518, 0.35416 0x3feddb13b6ccc23d, 0x3fd7088530fa459e, // 0.93299, 0.3599 0x3fedc8d7cb410260, 0x3fd766340f2418f6, // 0.93077, 0.36561 0x3fedb6526238a09b, 0x3fd7c3a9311dcce7, // 0.92851, 0.37132 0x3feda383a9668988, 0x3fd820e3b04eaac4, // 0.92621, 0.37701 0x3fed906bcf328d46, 0x3fd87de2a6aea963, // 0.92388, 0.38268 0x3fed7d0b02b8ecf9, 0x3fd8daa52ec8a4af, // 0.92151, 0.38835 0x3fed696173c9e68b, 0x3fd9372a63bc93d7, // 0.91911, 0.39399 0x3fed556f52e93eb1, 0x3fd993716141bdfe, // 0.91668, 0.39962 0x3fed4134d14dc93a, 0x3fd9ef7943a8ed8a, // 0.91421, 0.40524 0x3fed2cb220e0ef9f, 0x3fda4b4127dea1e4, // 0.91171, 0.41084 0x3fed17e7743e35dc, 0x3fdaa6c82b6d3fc9, // 0.90917, 0.41643 0x3fed02d4feb2bd92, 0x3fdb020d6c7f4009, // 0.9066, 0.422 0x3feced7af43cc773, 0x3fdb5d1009e15cc0, // 0.90399, 0.42756 0x3fecd7d9898b32f6, 0x3fdbb7cf2304bd01, // 0.90135, 0.43309 0x3fecc1f0f3fcfc5c, 0x3fdc1249d8011ee7, // 0.89867, 0.43862 0x3fecabc169a0b901, 0x3fdc6c7f4997000a, // 0.89597, 0.44412 0x3fec954b213411f5, 0x3fdcc66e9931c45d, // 0.89322, 0.44961 0x3fec7e8e52233cf3, 0x3fdd2016e8e9db5b, // 0.89045, 0.45508 0x3fec678b3488739b, 0x3fdd79775b86e389, // 0.88764, 0.46054 0x3fec5042012b6907, 0x3fddd28f1481cc58, // 0.8848, 0.46598 0x3fec38b2f180bdb1, 0x3fde2b5d3806f63b, // 0.88192, 0.4714 0x3fec20de3fa971b0, 0x3fde83e0eaf85113, // 0.87901, 0.4768 0x3fec08c426725549, 0x3fdedc1952ef78d5, // 0.87607, 0.48218 0x3febf064e15377dd, 0x3fdf3405963fd068, // 0.87309, 0.48755 0x3febd7c0ac6f952a, 0x3fdf8ba4dbf89aba, // 0.87009, 0.4929 0x3febbed7c49380ea, 0x3fdfe2f64be7120f, // 0.86705, 0.49823 0x3feba5aa673590d2, 0x3fe01cfc874c3eb7, // 0.86397, 0.50354 0x3feb8c38d27504e9, 0x3fe0485626ae221a, // 0.86087, 0.50883 0x3feb728345196e3e, 0x3fe073879922ffed, // 0.85773, 0.5141 0x3feb5889fe921405, 0x3fe09e907417c5e1, // 0.85456, 0.51936 0x3feb3e4d3ef55712, 0x3fe0c9704d5d898f, // 0.85136, 0.52459 0x3feb23cd470013b4, 0x3fe0f426bb2a8e7d, // 0.84812, 0.5298 0x3feb090a58150200, 0x3fe11eb3541b4b22, // 0.84485, 0.535 0x3feaee04b43c1474, 0x3fe14915af336ceb, // 0.84155, 0.54017 0x3fead2bc9e21d511, 0x3fe1734d63dedb49, // 0.83822, 0.54532 0x3feab7325916c0d4, 0x3fe19d5a09f2b9b8, // 0.83486, 0.55046 0x3fea9b66290ea1a3, 0x3fe1c73b39ae68c8, // 0.83147, 0.55557 0x3fea7f58529fe69d, 0x3fe1f0f08bbc861b, // 0.82805, 0.56066 0x3fea63091b02fae2, 0x3fe21a799933eb58, // 0.82459, 0.56573 0x3fea4678c8119ac8, 0x3fe243d5fb98ac1f, // 0.8211, 0.57078 0x3fea29a7a0462782, 0x3fe26d054cdd12df, // 0.81758, 0.57581 0x3fea0c95eabaf937, 0x3fe2960727629ca8, // 0.81404, 0.58081 0x3fe9ef43ef29af94, 0x3fe2bedb25faf3ea, // 0.81046, 0.5858 0x3fe9d1b1f5ea80d6, 0x3fe2e780e3e8ea16, // 0.80685, 0.59076 0x3fe9b3e047f38741, 0x3fe30ff7fce17035, // 0.80321, 0.5957 0x3fe995cf2ed80d22, 0x3fe338400d0c8e57, // 0.79954, 0.60062 0x3fe9777ef4c7d742, 0x3fe36058b10659f3, // 0.79584, 0.60551 0x3fe958efe48e6dd7, 0x3fe3884185dfeb22, // 0.79211, 0.61038 0x3fe93a22499263fc, 0x3fe3affa292050b9, // 0.78835, 0.61523 0x3fe91b166fd49da2, 0x3fe3d78238c58343, // 0.78456, 0.62006 0x3fe8fbcca3ef940d, 0x3fe3fed9534556d4, // 0.78074, 0.62486 0x3fe8dc45331698cc, 0x3fe425ff178e6bb1, // 0.77689, 0.62964 0x3fe8bc806b151741, 0x3fe44cf325091dd6, // 0.77301, 0.63439 0x3fe89c7e9a4dd4ab, 0x3fe473b51b987347, // 0.7691, 0.63912 0x3fe87c400fba2ebf, 0x3fe49a449b9b0938, // 0.76517, 0.64383 0x3fe85bc51ae958cc, 0x3fe4c0a145ec0004, // 0.7612, 0.64851 0x3fe83b0e0bff976e, 0x3fe4e6cabbe3e5e9, // 0.75721, 0.65317 0x3fe81a1b33b57acc, 0x3fe50cc09f59a09b, // 0.75319, 0.65781 0x3fe7f8ece3571771, 0x3fe5328292a35596, // 0.74914, 0.66242 0x3fe7d7836cc33db2, 0x3fe5581038975137, // 0.74506, 0.667 0x3fe7b5df226aafb0, 0x3fe57d69348cec9f, // 0.74095, 0.67156 0x3fe79400574f55e4, 0x3fe5a28d2a5d7250, // 0.73682, 0.67609 0x3fe771e75f037261, 0x3fe5c77bbe65018c, // 0.73265, 0.6806 0x3fe74f948da8d28d, 0x3fe5ec3495837074, // 0.72846, 0.68508 0x3fe72d0837efff97, 0x3fe610b7551d2cde, // 0.72425, 0.68954 0x3fe70a42b3176d7a, 0x3fe63503a31c1be8, // 0.72, 0.69397 0x3fe6e74454eaa8ae, 0x3fe6591925f0783e, // 0.71573, 0.69838 0x3fe6c40d73c18275, 0x3fe67cf78491af10, // 0.71143, 0.70275 0x3fe6a09e667f3bcc, 0x3fe6a09e667f3bcc, // 0.70711, 0.70711 0x3fe67cf78491af10, 0x3fe6c40d73c18275, // 0.70275, 0.71143 0x3fe6591925f0783e, 0x3fe6e74454eaa8ae, // 0.69838, 0.71573 0x3fe63503a31c1be8, 0x3fe70a42b3176d7a, // 0.69397, 0.72 0x3fe610b7551d2cde, 0x3fe72d0837efff97, // 0.68954, 0.72425 0x3fe5ec3495837074, 0x3fe74f948da8d28d, // 0.68508, 0.72846 0x3fe5c77bbe65018c, 0x3fe771e75f037261, // 0.6806, 0.73265 0x3fe5a28d2a5d7250, 0x3fe79400574f55e4, // 0.67609, 0.73682 0x3fe57d69348cec9f, 0x3fe7b5df226aafb0, // 0.67156, 0.74095 0x3fe5581038975137, 0x3fe7d7836cc33db2, // 0.667, 0.74506 0x3fe5328292a35596, 0x3fe7f8ece3571771, // 0.66242, 0.74914 0x3fe50cc09f59a09b, 0x3fe81a1b33b57acc, // 0.65781, 0.75319 0x3fe4e6cabbe3e5e9, 0x3fe83b0e0bff976e, // 0.65317, 0.75721 0x3fe4c0a145ec0004, 0x3fe85bc51ae958cc, // 0.64851, 0.7612 0x3fe49a449b9b0938, 0x3fe87c400fba2ebf, // 0.64383, 0.76517 0x3fe473b51b987347, 0x3fe89c7e9a4dd4ab, // 0.63912, 0.7691 0x3fe44cf325091dd6, 0x3fe8bc806b151741, // 0.63439, 0.77301 0x3fe425ff178e6bb1, 0x3fe8dc45331698cc, // 0.62964, 0.77689 0x3fe3fed9534556d4, 0x3fe8fbcca3ef940d, // 0.62486, 0.78074 0x3fe3d78238c58343, 0x3fe91b166fd49da2, // 0.62006, 0.78456 0x3fe3affa292050b9, 0x3fe93a22499263fc, // 0.61523, 0.78835 0x3fe3884185dfeb22, 0x3fe958efe48e6dd7, // 0.61038, 0.79211 0x3fe36058b10659f3, 0x3fe9777ef4c7d742, // 0.60551, 0.79584 0x3fe338400d0c8e57, 0x3fe995cf2ed80d22, // 0.60062, 0.79954 0x3fe30ff7fce17035, 0x3fe9b3e047f38741, // 0.5957, 0.80321 0x3fe2e780e3e8ea16, 0x3fe9d1b1f5ea80d6, // 0.59076, 0.80685 0x3fe2bedb25faf3ea, 0x3fe9ef43ef29af94, // 0.5858, 0.81046 0x3fe2960727629ca8, 0x3fea0c95eabaf937, // 0.58081, 0.81404 0x3fe26d054cdd12df, 0x3fea29a7a0462782, // 0.57581, 0.81758 0x3fe243d5fb98ac1f, 0x3fea4678c8119ac8, // 0.57078, 0.8211 0x3fe21a799933eb58, 0x3fea63091b02fae2, // 0.56573, 0.82459 0x3fe1f0f08bbc861b, 0x3fea7f58529fe69d, // 0.56066, 0.82805 0x3fe1c73b39ae68c8, 0x3fea9b66290ea1a3, // 0.55557, 0.83147 0x3fe19d5a09f2b9b8, 0x3feab7325916c0d4, // 0.55046, 0.83486 0x3fe1734d63dedb49, 0x3fead2bc9e21d511, // 0.54532, 0.83822 0x3fe14915af336ceb, 0x3feaee04b43c1474, // 0.54017, 0.84155 0x3fe11eb3541b4b22, 0x3feb090a58150200, // 0.535, 0.84485 0x3fe0f426bb2a8e7d, 0x3feb23cd470013b4, // 0.5298, 0.84812 0x3fe0c9704d5d898f, 0x3feb3e4d3ef55712, // 0.52459, 0.85136 0x3fe09e907417c5e1, 0x3feb5889fe921405, // 0.51936, 0.85456 0x3fe073879922ffed, 0x3feb728345196e3e, // 0.5141, 0.85773 0x3fe0485626ae221a, 0x3feb8c38d27504e9, // 0.50883, 0.86087 0x3fe01cfc874c3eb7, 0x3feba5aa673590d2, // 0.50354, 0.86397 0x3fdfe2f64be7120f, 0x3febbed7c49380ea, // 0.49823, 0.86705 0x3fdf8ba4dbf89aba, 0x3febd7c0ac6f952a, // 0.4929, 0.87009 0x3fdf3405963fd068, 0x3febf064e15377dd, // 0.48755, 0.87309 0x3fdedc1952ef78d5, 0x3fec08c426725549, // 0.48218, 0.87607 0x3fde83e0eaf85113, 0x3fec20de3fa971b0, // 0.4768, 0.87901 0x3fde2b5d3806f63b, 0x3fec38b2f180bdb1, // 0.4714, 0.88192 0x3fddd28f1481cc58, 0x3fec5042012b6907, // 0.46598, 0.8848 0x3fdd79775b86e389, 0x3fec678b3488739b, // 0.46054, 0.88764 0x3fdd2016e8e9db5b, 0x3fec7e8e52233cf3, // 0.45508, 0.89045 0x3fdcc66e9931c45d, 0x3fec954b213411f5, // 0.44961, 0.89322 0x3fdc6c7f4997000a, 0x3fecabc169a0b901, // 0.44412, 0.89597 0x3fdc1249d8011ee7, 0x3fecc1f0f3fcfc5c, // 0.43862, 0.89867 0x3fdbb7cf2304bd01, 0x3fecd7d9898b32f6, // 0.43309, 0.90135 0x3fdb5d1009e15cc0, 0x3feced7af43cc773, // 0.42756, 0.90399 0x3fdb020d6c7f4009, 0x3fed02d4feb2bd92, // 0.422, 0.9066 0x3fdaa6c82b6d3fc9, 0x3fed17e7743e35dc, // 0.41643, 0.90917 0x3fda4b4127dea1e4, 0x3fed2cb220e0ef9f, // 0.41084, 0.91171 0x3fd9ef7943a8ed8a, 0x3fed4134d14dc93a, // 0.40524, 0.91421 0x3fd993716141bdfe, 0x3fed556f52e93eb1, // 0.39962, 0.91668 0x3fd9372a63bc93d7, 0x3fed696173c9e68b, // 0.39399, 0.91911 0x3fd8daa52ec8a4af, 0x3fed7d0b02b8ecf9, // 0.38835, 0.92151 0x3fd87de2a6aea963, 0x3fed906bcf328d46, // 0.38268, 0.92388 0x3fd820e3b04eaac4, 0x3feda383a9668988, // 0.37701, 0.92621 0x3fd7c3a9311dcce7, 0x3fedb6526238a09b, // 0.37132, 0.92851 0x3fd766340f2418f6, 0x3fedc8d7cb410260, // 0.36561, 0.93077 0x3fd7088530fa459e, 0x3feddb13b6ccc23d, // 0.3599, 0.93299 0x3fd6aa9d7dc77e16, 0x3feded05f7de47da, // 0.35416, 0.93518 0x3fd64c7ddd3f27c6, 0x3fedfeae622dbe2b, // 0.34842, 0.93734 0x3fd5ee27379ea693, 0x3fee100cca2980ac, // 0.34266, 0.93946 0x3fd58f9a75ab1fdd, 0x3fee212104f686e5, // 0.33689, 0.94154 0x3fd530d880af3c24, 0x3fee31eae870ce25, // 0.33111, 0.94359 0x3fd4d1e24278e76a, 0x3fee426a4b2bc17e, // 0.32531, 0.94561 0x3fd472b8a5571054, 0x3fee529f04729ffc, // 0.3195, 0.94759 0x3fd4135c94176602, 0x3fee6288ec48e112, // 0.31368, 0.94953 0x3fd3b3cefa0414b7, 0x3fee7227db6a9744, // 0.30785, 0.95144 0x3fd35410c2e18152, 0x3fee817bab4cd10d, // 0.30201, 0.95331 0x3fd2f422daec0386, 0x3fee9084361df7f3, // 0.29615, 0.95514 0x3fd294062ed59f05, 0x3fee9f4156c62dda, // 0.29028, 0.95694 0x3fd233bbabc3bb72, 0x3feeadb2e8e7a88e, // 0.28441, 0.9587 0x3fd1d3443f4cdb3d, 0x3feebbd8c8df0b74, // 0.27852, 0.96043 0x3fd172a0d7765177, 0x3feec9b2d3c3bf84, // 0.27262, 0.96212 0x3fd111d262b1f677, 0x3feed740e7684963, // 0.26671, 0.96378 0x3fd0b0d9cfdbdb90, 0x3feee482e25a9dbc, // 0.26079, 0.96539 0x3fd04fb80e37fdae, 0x3feef178a3e473c2, // 0.25487, 0.96698 0x3fcfdcdc1adfedf8, 0x3feefe220c0b95ec, // 0.24893, 0.96852 0x3fcf19f97b215f1a, 0x3fef0a7efb9230d7, // 0.24298, 0.97003 0x3fce56ca1e101a1b, 0x3fef168f53f7205d, // 0.23702, 0.9715 0x3fcd934fe5454311, 0x3fef2252f7763ada, // 0.23106, 0.97294 0x3fcccf8cb312b286, 0x3fef2dc9c9089a9d, // 0.22508, 0.97434 0x3fcc0b826a7e4f63, 0x3fef38f3ac64e589, // 0.2191, 0.9757 0x3fcb4732ef3d6722, 0x3fef43d085ff92dd, // 0.21311, 0.97703 0x3fca82a025b00451, 0x3fef4e603b0b2f2d, // 0.20711, 0.97832 0x3fc9bdcbf2dc4366, 0x3fef58a2b1789e84, // 0.2011, 0.97957 0x3fc8f8b83c69a60a, 0x3fef6297cff75cb0, // 0.19509, 0.98079 0x3fc83366e89c64c5, 0x3fef6c3f7df5bbb7, // 0.18907, 0.98196 0x3fc76dd9de50bf31, 0x3fef7599a3a12077, // 0.18304, 0.98311 0x3fc6a81304f64ab2, 0x3fef7ea629e63d6e, // 0.177, 0.98421 0x3fc5e214448b3fc6, 0x3fef8764fa714ba9, // 0.17096, 0.98528 0x3fc51bdf8597c5f2, 0x3fef8fd5ffae41db, // 0.16491, 0.98631 0x3fc45576b1293e5a, 0x3fef97f924c9099b, // 0.15886, 0.9873 0x3fc38edbb0cd8d14, 0x3fef9fce55adb2c8, // 0.1528, 0.98826 0x3fc2c8106e8e613a, 0x3fefa7557f08a517, // 0.14673, 0.98918 0x3fc20116d4ec7bce, 0x3fefae8e8e46cfbb, // 0.14066, 0.99006 0x3fc139f0cedaf576, 0x3fefb5797195d741, // 0.13458, 0.9909 0x3fc072a047ba831d, 0x3fefbc1617e44186, // 0.1285, 0.99171 0x3fbf564e56a9730e, 0x3fefc26470e19fd3, // 0.12241, 0.99248 0x3fbdc70ecbae9fc8, 0x3fefc8646cfeb721, // 0.11632, 0.99321 0x3fbc3785c79ec2d5, 0x3fefce15fd6da67b, // 0.11022, 0.99391 0x3fbaa7b724495c04, 0x3fefd37914220b84, // 0.10412, 0.99456 0x3fb917a6bc29b42c, 0x3fefd88da3d12526, // 0.098017, 0.99518 0x3fb787586a5d5b21, 0x3fefdd539ff1f456, // 0.091909, 0.99577 0x3fb5f6d00a9aa419, 0x3fefe1cafcbd5b09, // 0.085797, 0.99631 0x3fb4661179272096, 0x3fefe5f3af2e3940, // 0.079682, 0.99682 0x3fb2d52092ce19f6, 0x3fefe9cdad01883a, // 0.073565, 0.99729 0x3fb1440134d709b2, 0x3fefed58ecb673c4, // 0.067444, 0.99772 0x3faf656e79f820e0, 0x3feff095658e71ad, // 0.061321, 0.99812 0x3fac428d12c0d7e3, 0x3feff3830f8d575c, // 0.055195, 0.99848 0x3fa91f65f10dd814, 0x3feff621e3796d7e, // 0.049068, 0.9988 0x3fa5fc00d290cd43, 0x3feff871dadb81df, // 0.042938, 0.99908 0x3fa2d865759455cd, 0x3feffa72effef75d, // 0.036807, 0.99932 0x3f9f693731d1cf01, 0x3feffc251df1d3f8, // 0.030675, 0.99953 0x3f992155f7a3667e, 0x3feffd886084cd0d, // 0.024541, 0.9997 0x3f92d936bbe30efd, 0x3feffe9cb44b51a1, // 0.018407, 0.99983 0x3f8921d1fcdec784, 0x3fefff62169b92db, // 0.012272, 0.99992 0x3f7921f0fe670071, 0x3fefffd8858e8a92, // 0.0061359, 0.99998 0x0000000000000000, 0x3ff0000000000000, // 0, 1 0xbf7921f0fe670071, 0x3fefffd8858e8a92, //-0.0061359, 0.99998 0xbf8921d1fcdec784, 0x3fefff62169b92db, // -0.012272, 0.99992 0xbf92d936bbe30efd, 0x3feffe9cb44b51a1, // -0.018407, 0.99983 0xbf992155f7a3667e, 0x3feffd886084cd0d, // -0.024541, 0.9997 0xbf9f693731d1cf01, 0x3feffc251df1d3f8, // -0.030675, 0.99953 0xbfa2d865759455cd, 0x3feffa72effef75d, // -0.036807, 0.99932 0xbfa5fc00d290cd43, 0x3feff871dadb81df, // -0.042938, 0.99908 0xbfa91f65f10dd814, 0x3feff621e3796d7e, // -0.049068, 0.9988 0xbfac428d12c0d7e3, 0x3feff3830f8d575c, // -0.055195, 0.99848 0xbfaf656e79f820e0, 0x3feff095658e71ad, // -0.061321, 0.99812 0xbfb1440134d709b2, 0x3fefed58ecb673c4, // -0.067444, 0.99772 0xbfb2d52092ce19f6, 0x3fefe9cdad01883a, // -0.073565, 0.99729 0xbfb4661179272096, 0x3fefe5f3af2e3940, // -0.079682, 0.99682 0xbfb5f6d00a9aa419, 0x3fefe1cafcbd5b09, // -0.085797, 0.99631 0xbfb787586a5d5b21, 0x3fefdd539ff1f456, // -0.091909, 0.99577 0xbfb917a6bc29b42c, 0x3fefd88da3d12526, // -0.098017, 0.99518 0xbfbaa7b724495c04, 0x3fefd37914220b84, // -0.10412, 0.99456 0xbfbc3785c79ec2d5, 0x3fefce15fd6da67b, // -0.11022, 0.99391 0xbfbdc70ecbae9fc8, 0x3fefc8646cfeb721, // -0.11632, 0.99321 0xbfbf564e56a9730e, 0x3fefc26470e19fd3, // -0.12241, 0.99248 0xbfc072a047ba831d, 0x3fefbc1617e44186, // -0.1285, 0.99171 0xbfc139f0cedaf576, 0x3fefb5797195d741, // -0.13458, 0.9909 0xbfc20116d4ec7bce, 0x3fefae8e8e46cfbb, // -0.14066, 0.99006 0xbfc2c8106e8e613a, 0x3fefa7557f08a517, // -0.14673, 0.98918 0xbfc38edbb0cd8d14, 0x3fef9fce55adb2c8, // -0.1528, 0.98826 0xbfc45576b1293e5a, 0x3fef97f924c9099b, // -0.15886, 0.9873 0xbfc51bdf8597c5f2, 0x3fef8fd5ffae41db, // -0.16491, 0.98631 0xbfc5e214448b3fc6, 0x3fef8764fa714ba9, // -0.17096, 0.98528 0xbfc6a81304f64ab2, 0x3fef7ea629e63d6e, // -0.177, 0.98421 0xbfc76dd9de50bf31, 0x3fef7599a3a12077, // -0.18304, 0.98311 0xbfc83366e89c64c5, 0x3fef6c3f7df5bbb7, // -0.18907, 0.98196 0xbfc8f8b83c69a60a, 0x3fef6297cff75cb0, // -0.19509, 0.98079 0xbfc9bdcbf2dc4366, 0x3fef58a2b1789e84, // -0.2011, 0.97957 0xbfca82a025b00451, 0x3fef4e603b0b2f2d, // -0.20711, 0.97832 0xbfcb4732ef3d6722, 0x3fef43d085ff92dd, // -0.21311, 0.97703 0xbfcc0b826a7e4f63, 0x3fef38f3ac64e589, // -0.2191, 0.9757 0xbfcccf8cb312b286, 0x3fef2dc9c9089a9d, // -0.22508, 0.97434 0xbfcd934fe5454311, 0x3fef2252f7763ada, // -0.23106, 0.97294 0xbfce56ca1e101a1b, 0x3fef168f53f7205d, // -0.23702, 0.9715 0xbfcf19f97b215f1a, 0x3fef0a7efb9230d7, // -0.24298, 0.97003 0xbfcfdcdc1adfedf8, 0x3feefe220c0b95ec, // -0.24893, 0.96852 0xbfd04fb80e37fdae, 0x3feef178a3e473c2, // -0.25487, 0.96698 0xbfd0b0d9cfdbdb90, 0x3feee482e25a9dbc, // -0.26079, 0.96539 0xbfd111d262b1f677, 0x3feed740e7684963, // -0.26671, 0.96378 0xbfd172a0d7765177, 0x3feec9b2d3c3bf84, // -0.27262, 0.96212 0xbfd1d3443f4cdb3d, 0x3feebbd8c8df0b74, // -0.27852, 0.96043 0xbfd233bbabc3bb72, 0x3feeadb2e8e7a88e, // -0.28441, 0.9587 0xbfd294062ed59f05, 0x3fee9f4156c62dda, // -0.29028, 0.95694 0xbfd2f422daec0386, 0x3fee9084361df7f3, // -0.29615, 0.95514 0xbfd35410c2e18152, 0x3fee817bab4cd10d, // -0.30201, 0.95331 0xbfd3b3cefa0414b7, 0x3fee7227db6a9744, // -0.30785, 0.95144 0xbfd4135c94176602, 0x3fee6288ec48e112, // -0.31368, 0.94953 0xbfd472b8a5571054, 0x3fee529f04729ffc, // -0.3195, 0.94759 0xbfd4d1e24278e76a, 0x3fee426a4b2bc17e, // -0.32531, 0.94561 0xbfd530d880af3c24, 0x3fee31eae870ce25, // -0.33111, 0.94359 0xbfd58f9a75ab1fdd, 0x3fee212104f686e5, // -0.33689, 0.94154 0xbfd5ee27379ea693, 0x3fee100cca2980ac, // -0.34266, 0.93946 0xbfd64c7ddd3f27c6, 0x3fedfeae622dbe2b, // -0.34842, 0.93734 0xbfd6aa9d7dc77e16, 0x3feded05f7de47da, // -0.35416, 0.93518 0xbfd7088530fa459e, 0x3feddb13b6ccc23d, // -0.3599, 0.93299 0xbfd766340f2418f6, 0x3fedc8d7cb410260, // -0.36561, 0.93077 0xbfd7c3a9311dcce7, 0x3fedb6526238a09b, // -0.37132, 0.92851 0xbfd820e3b04eaac4, 0x3feda383a9668988, // -0.37701, 0.92621 0xbfd87de2a6aea963, 0x3fed906bcf328d46, // -0.38268, 0.92388 0xbfd8daa52ec8a4af, 0x3fed7d0b02b8ecf9, // -0.38835, 0.92151 0xbfd9372a63bc93d7, 0x3fed696173c9e68b, // -0.39399, 0.91911 0xbfd993716141bdfe, 0x3fed556f52e93eb1, // -0.39962, 0.91668 0xbfd9ef7943a8ed8a, 0x3fed4134d14dc93a, // -0.40524, 0.91421 0xbfda4b4127dea1e4, 0x3fed2cb220e0ef9f, // -0.41084, 0.91171 0xbfdaa6c82b6d3fc9, 0x3fed17e7743e35dc, // -0.41643, 0.90917 0xbfdb020d6c7f4009, 0x3fed02d4feb2bd92, // -0.422, 0.9066 0xbfdb5d1009e15cc0, 0x3feced7af43cc773, // -0.42756, 0.90399 0xbfdbb7cf2304bd01, 0x3fecd7d9898b32f6, // -0.43309, 0.90135 0xbfdc1249d8011ee7, 0x3fecc1f0f3fcfc5c, // -0.43862, 0.89867 0xbfdc6c7f4997000a, 0x3fecabc169a0b901, // -0.44412, 0.89597 0xbfdcc66e9931c45d, 0x3fec954b213411f5, // -0.44961, 0.89322 0xbfdd2016e8e9db5b, 0x3fec7e8e52233cf3, // -0.45508, 0.89045 0xbfdd79775b86e389, 0x3fec678b3488739b, // -0.46054, 0.88764 0xbfddd28f1481cc58, 0x3fec5042012b6907, // -0.46598, 0.8848 0xbfde2b5d3806f63b, 0x3fec38b2f180bdb1, // -0.4714, 0.88192 0xbfde83e0eaf85113, 0x3fec20de3fa971b0, // -0.4768, 0.87901 0xbfdedc1952ef78d5, 0x3fec08c426725549, // -0.48218, 0.87607 0xbfdf3405963fd068, 0x3febf064e15377dd, // -0.48755, 0.87309 0xbfdf8ba4dbf89aba, 0x3febd7c0ac6f952a, // -0.4929, 0.87009 0xbfdfe2f64be7120f, 0x3febbed7c49380ea, // -0.49823, 0.86705 0xbfe01cfc874c3eb7, 0x3feba5aa673590d2, // -0.50354, 0.86397 0xbfe0485626ae221a, 0x3feb8c38d27504e9, // -0.50883, 0.86087 0xbfe073879922ffed, 0x3feb728345196e3e, // -0.5141, 0.85773 0xbfe09e907417c5e1, 0x3feb5889fe921405, // -0.51936, 0.85456 0xbfe0c9704d5d898f, 0x3feb3e4d3ef55712, // -0.52459, 0.85136 0xbfe0f426bb2a8e7d, 0x3feb23cd470013b4, // -0.5298, 0.84812 0xbfe11eb3541b4b22, 0x3feb090a58150200, // -0.535, 0.84485 0xbfe14915af336ceb, 0x3feaee04b43c1474, // -0.54017, 0.84155 0xbfe1734d63dedb49, 0x3fead2bc9e21d511, // -0.54532, 0.83822 0xbfe19d5a09f2b9b8, 0x3feab7325916c0d4, // -0.55046, 0.83486 0xbfe1c73b39ae68c8, 0x3fea9b66290ea1a3, // -0.55557, 0.83147 0xbfe1f0f08bbc861b, 0x3fea7f58529fe69d, // -0.56066, 0.82805 0xbfe21a799933eb58, 0x3fea63091b02fae2, // -0.56573, 0.82459 0xbfe243d5fb98ac1f, 0x3fea4678c8119ac8, // -0.57078, 0.8211 0xbfe26d054cdd12df, 0x3fea29a7a0462782, // -0.57581, 0.81758 0xbfe2960727629ca8, 0x3fea0c95eabaf937, // -0.58081, 0.81404 0xbfe2bedb25faf3ea, 0x3fe9ef43ef29af94, // -0.5858, 0.81046 0xbfe2e780e3e8ea16, 0x3fe9d1b1f5ea80d6, // -0.59076, 0.80685 0xbfe30ff7fce17035, 0x3fe9b3e047f38741, // -0.5957, 0.80321 0xbfe338400d0c8e57, 0x3fe995cf2ed80d22, // -0.60062, 0.79954 0xbfe36058b10659f3, 0x3fe9777ef4c7d742, // -0.60551, 0.79584 0xbfe3884185dfeb22, 0x3fe958efe48e6dd7, // -0.61038, 0.79211 0xbfe3affa292050b9, 0x3fe93a22499263fc, // -0.61523, 0.78835 0xbfe3d78238c58343, 0x3fe91b166fd49da2, // -0.62006, 0.78456 0xbfe3fed9534556d4, 0x3fe8fbcca3ef940d, // -0.62486, 0.78074 0xbfe425ff178e6bb1, 0x3fe8dc45331698cc, // -0.62964, 0.77689 0xbfe44cf325091dd6, 0x3fe8bc806b151741, // -0.63439, 0.77301 0xbfe473b51b987347, 0x3fe89c7e9a4dd4ab, // -0.63912, 0.7691 0xbfe49a449b9b0938, 0x3fe87c400fba2ebf, // -0.64383, 0.76517 0xbfe4c0a145ec0004, 0x3fe85bc51ae958cc, // -0.64851, 0.7612 0xbfe4e6cabbe3e5e9, 0x3fe83b0e0bff976e, // -0.65317, 0.75721 0xbfe50cc09f59a09b, 0x3fe81a1b33b57acc, // -0.65781, 0.75319 0xbfe5328292a35596, 0x3fe7f8ece3571771, // -0.66242, 0.74914 0xbfe5581038975137, 0x3fe7d7836cc33db2, // -0.667, 0.74506 0xbfe57d69348cec9f, 0x3fe7b5df226aafb0, // -0.67156, 0.74095 0xbfe5a28d2a5d7250, 0x3fe79400574f55e4, // -0.67609, 0.73682 0xbfe5c77bbe65018c, 0x3fe771e75f037261, // -0.6806, 0.73265 0xbfe5ec3495837074, 0x3fe74f948da8d28d, // -0.68508, 0.72846 0xbfe610b7551d2cde, 0x3fe72d0837efff97, // -0.68954, 0.72425 0xbfe63503a31c1be8, 0x3fe70a42b3176d7a, // -0.69397, 0.72 0xbfe6591925f0783e, 0x3fe6e74454eaa8ae, // -0.69838, 0.71573 0xbfe67cf78491af10, 0x3fe6c40d73c18275, // -0.70275, 0.71143 0xbfe6a09e667f3bcc, 0x3fe6a09e667f3bcc, // -0.70711, 0.70711 0xbfe6c40d73c18275, 0x3fe67cf78491af10, // -0.71143, 0.70275 0xbfe6e74454eaa8ae, 0x3fe6591925f0783e, // -0.71573, 0.69838 0xbfe70a42b3176d7a, 0x3fe63503a31c1be8, // -0.72, 0.69397 0xbfe72d0837efff97, 0x3fe610b7551d2cde, // -0.72425, 0.68954 0xbfe74f948da8d28d, 0x3fe5ec3495837074, // -0.72846, 0.68508 0xbfe771e75f037261, 0x3fe5c77bbe65018c, // -0.73265, 0.6806 0xbfe79400574f55e4, 0x3fe5a28d2a5d7250, // -0.73682, 0.67609 0xbfe7b5df226aafb0, 0x3fe57d69348cec9f, // -0.74095, 0.67156 0xbfe7d7836cc33db2, 0x3fe5581038975137, // -0.74506, 0.667 0xbfe7f8ece3571771, 0x3fe5328292a35596, // -0.74914, 0.66242 0xbfe81a1b33b57acc, 0x3fe50cc09f59a09b, // -0.75319, 0.65781 0xbfe83b0e0bff976e, 0x3fe4e6cabbe3e5e9, // -0.75721, 0.65317 0xbfe85bc51ae958cc, 0x3fe4c0a145ec0004, // -0.7612, 0.64851 0xbfe87c400fba2ebf, 0x3fe49a449b9b0938, // -0.76517, 0.64383 0xbfe89c7e9a4dd4ab, 0x3fe473b51b987347, // -0.7691, 0.63912 0xbfe8bc806b151741, 0x3fe44cf325091dd6, // -0.77301, 0.63439 0xbfe8dc45331698cc, 0x3fe425ff178e6bb1, // -0.77689, 0.62964 0xbfe8fbcca3ef940d, 0x3fe3fed9534556d4, // -0.78074, 0.62486 0xbfe91b166fd49da2, 0x3fe3d78238c58343, // -0.78456, 0.62006 0xbfe93a22499263fc, 0x3fe3affa292050b9, // -0.78835, 0.61523 0xbfe958efe48e6dd7, 0x3fe3884185dfeb22, // -0.79211, 0.61038 0xbfe9777ef4c7d742, 0x3fe36058b10659f3, // -0.79584, 0.60551 0xbfe995cf2ed80d22, 0x3fe338400d0c8e57, // -0.79954, 0.60062 0xbfe9b3e047f38741, 0x3fe30ff7fce17035, // -0.80321, 0.5957 0xbfe9d1b1f5ea80d6, 0x3fe2e780e3e8ea16, // -0.80685, 0.59076 0xbfe9ef43ef29af94, 0x3fe2bedb25faf3ea, // -0.81046, 0.5858 0xbfea0c95eabaf937, 0x3fe2960727629ca8, // -0.81404, 0.58081 0xbfea29a7a0462782, 0x3fe26d054cdd12df, // -0.81758, 0.57581 0xbfea4678c8119ac8, 0x3fe243d5fb98ac1f, // -0.8211, 0.57078 0xbfea63091b02fae2, 0x3fe21a799933eb58, // -0.82459, 0.56573 0xbfea7f58529fe69d, 0x3fe1f0f08bbc861b, // -0.82805, 0.56066 0xbfea9b66290ea1a3, 0x3fe1c73b39ae68c8, // -0.83147, 0.55557 0xbfeab7325916c0d4, 0x3fe19d5a09f2b9b8, // -0.83486, 0.55046 0xbfead2bc9e21d511, 0x3fe1734d63dedb49, // -0.83822, 0.54532 0xbfeaee04b43c1474, 0x3fe14915af336ceb, // -0.84155, 0.54017 0xbfeb090a58150200, 0x3fe11eb3541b4b22, // -0.84485, 0.535 0xbfeb23cd470013b4, 0x3fe0f426bb2a8e7d, // -0.84812, 0.5298 0xbfeb3e4d3ef55712, 0x3fe0c9704d5d898f, // -0.85136, 0.52459 0xbfeb5889fe921405, 0x3fe09e907417c5e1, // -0.85456, 0.51936 0xbfeb728345196e3e, 0x3fe073879922ffed, // -0.85773, 0.5141 0xbfeb8c38d27504e9, 0x3fe0485626ae221a, // -0.86087, 0.50883 0xbfeba5aa673590d2, 0x3fe01cfc874c3eb7, // -0.86397, 0.50354 0xbfebbed7c49380ea, 0x3fdfe2f64be7120f, // -0.86705, 0.49823 0xbfebd7c0ac6f952a, 0x3fdf8ba4dbf89aba, // -0.87009, 0.4929 0xbfebf064e15377dd, 0x3fdf3405963fd068, // -0.87309, 0.48755 0xbfec08c426725549, 0x3fdedc1952ef78d5, // -0.87607, 0.48218 0xbfec20de3fa971b0, 0x3fde83e0eaf85113, // -0.87901, 0.4768 0xbfec38b2f180bdb1, 0x3fde2b5d3806f63b, // -0.88192, 0.4714 0xbfec5042012b6907, 0x3fddd28f1481cc58, // -0.8848, 0.46598 0xbfec678b3488739b, 0x3fdd79775b86e389, // -0.88764, 0.46054 0xbfec7e8e52233cf3, 0x3fdd2016e8e9db5b, // -0.89045, 0.45508 0xbfec954b213411f5, 0x3fdcc66e9931c45d, // -0.89322, 0.44961 0xbfecabc169a0b901, 0x3fdc6c7f4997000a, // -0.89597, 0.44412 0xbfecc1f0f3fcfc5c, 0x3fdc1249d8011ee7, // -0.89867, 0.43862 0xbfecd7d9898b32f6, 0x3fdbb7cf2304bd01, // -0.90135, 0.43309 0xbfeced7af43cc773, 0x3fdb5d1009e15cc0, // -0.90399, 0.42756 0xbfed02d4feb2bd92, 0x3fdb020d6c7f4009, // -0.9066, 0.422 0xbfed17e7743e35dc, 0x3fdaa6c82b6d3fc9, // -0.90917, 0.41643 0xbfed2cb220e0ef9f, 0x3fda4b4127dea1e4, // -0.91171, 0.41084 0xbfed4134d14dc93a, 0x3fd9ef7943a8ed8a, // -0.91421, 0.40524 0xbfed556f52e93eb1, 0x3fd993716141bdfe, // -0.91668, 0.39962 0xbfed696173c9e68b, 0x3fd9372a63bc93d7, // -0.91911, 0.39399 0xbfed7d0b02b8ecf9, 0x3fd8daa52ec8a4af, // -0.92151, 0.38835 0xbfed906bcf328d46, 0x3fd87de2a6aea963, // -0.92388, 0.38268 0xbfeda383a9668988, 0x3fd820e3b04eaac4, // -0.92621, 0.37701 0xbfedb6526238a09b, 0x3fd7c3a9311dcce7, // -0.92851, 0.37132 0xbfedc8d7cb410260, 0x3fd766340f2418f6, // -0.93077, 0.36561 0xbfeddb13b6ccc23d, 0x3fd7088530fa459e, // -0.93299, 0.3599 0xbfeded05f7de47da, 0x3fd6aa9d7dc77e16, // -0.93518, 0.35416 0xbfedfeae622dbe2b, 0x3fd64c7ddd3f27c6, // -0.93734, 0.34842 0xbfee100cca2980ac, 0x3fd5ee27379ea693, // -0.93946, 0.34266 0xbfee212104f686e5, 0x3fd58f9a75ab1fdd, // -0.94154, 0.33689 0xbfee31eae870ce25, 0x3fd530d880af3c24, // -0.94359, 0.33111 0xbfee426a4b2bc17e, 0x3fd4d1e24278e76a, // -0.94561, 0.32531 0xbfee529f04729ffc, 0x3fd472b8a5571054, // -0.94759, 0.3195 0xbfee6288ec48e112, 0x3fd4135c94176602, // -0.94953, 0.31368 0xbfee7227db6a9744, 0x3fd3b3cefa0414b7, // -0.95144, 0.30785 0xbfee817bab4cd10d, 0x3fd35410c2e18152, // -0.95331, 0.30201 0xbfee9084361df7f3, 0x3fd2f422daec0386, // -0.95514, 0.29615 0xbfee9f4156c62dda, 0x3fd294062ed59f05, // -0.95694, 0.29028 0xbfeeadb2e8e7a88e, 0x3fd233bbabc3bb72, // -0.9587, 0.28441 0xbfeebbd8c8df0b74, 0x3fd1d3443f4cdb3d, // -0.96043, 0.27852 0xbfeec9b2d3c3bf84, 0x3fd172a0d7765177, // -0.96212, 0.27262 0xbfeed740e7684963, 0x3fd111d262b1f677, // -0.96378, 0.26671 0xbfeee482e25a9dbc, 0x3fd0b0d9cfdbdb90, // -0.96539, 0.26079 0xbfeef178a3e473c2, 0x3fd04fb80e37fdae, // -0.96698, 0.25487 0xbfeefe220c0b95ec, 0x3fcfdcdc1adfedf8, // -0.96852, 0.24893 0xbfef0a7efb9230d7, 0x3fcf19f97b215f1a, // -0.97003, 0.24298 0xbfef168f53f7205d, 0x3fce56ca1e101a1b, // -0.9715, 0.23702 0xbfef2252f7763ada, 0x3fcd934fe5454311, // -0.97294, 0.23106 0xbfef2dc9c9089a9d, 0x3fcccf8cb312b286, // -0.97434, 0.22508 0xbfef38f3ac64e589, 0x3fcc0b826a7e4f63, // -0.9757, 0.2191 0xbfef43d085ff92dd, 0x3fcb4732ef3d6722, // -0.97703, 0.21311 0xbfef4e603b0b2f2d, 0x3fca82a025b00451, // -0.97832, 0.20711 0xbfef58a2b1789e84, 0x3fc9bdcbf2dc4366, // -0.97957, 0.2011 0xbfef6297cff75cb0, 0x3fc8f8b83c69a60a, // -0.98079, 0.19509 0xbfef6c3f7df5bbb7, 0x3fc83366e89c64c5, // -0.98196, 0.18907 0xbfef7599a3a12077, 0x3fc76dd9de50bf31, // -0.98311, 0.18304 0xbfef7ea629e63d6e, 0x3fc6a81304f64ab2, // -0.98421, 0.177 0xbfef8764fa714ba9, 0x3fc5e214448b3fc6, // -0.98528, 0.17096 0xbfef8fd5ffae41db, 0x3fc51bdf8597c5f2, // -0.98631, 0.16491 0xbfef97f924c9099b, 0x3fc45576b1293e5a, // -0.9873, 0.15886 0xbfef9fce55adb2c8, 0x3fc38edbb0cd8d14, // -0.98826, 0.1528 0xbfefa7557f08a517, 0x3fc2c8106e8e613a, // -0.98918, 0.14673 0xbfefae8e8e46cfbb, 0x3fc20116d4ec7bce, // -0.99006, 0.14066 0xbfefb5797195d741, 0x3fc139f0cedaf576, // -0.9909, 0.13458 0xbfefbc1617e44186, 0x3fc072a047ba831d, // -0.99171, 0.1285 0xbfefc26470e19fd3, 0x3fbf564e56a9730e, // -0.99248, 0.12241 0xbfefc8646cfeb721, 0x3fbdc70ecbae9fc8, // -0.99321, 0.11632 0xbfefce15fd6da67b, 0x3fbc3785c79ec2d5, // -0.99391, 0.11022 0xbfefd37914220b84, 0x3fbaa7b724495c04, // -0.99456, 0.10412 0xbfefd88da3d12526, 0x3fb917a6bc29b42c, // -0.99518, 0.098017 0xbfefdd539ff1f456, 0x3fb787586a5d5b21, // -0.99577, 0.091909 0xbfefe1cafcbd5b09, 0x3fb5f6d00a9aa419, // -0.99631, 0.085797 0xbfefe5f3af2e3940, 0x3fb4661179272096, // -0.99682, 0.079682 0xbfefe9cdad01883a, 0x3fb2d52092ce19f6, // -0.99729, 0.073565 0xbfefed58ecb673c4, 0x3fb1440134d709b2, // -0.99772, 0.067444 0xbfeff095658e71ad, 0x3faf656e79f820e0, // -0.99812, 0.061321 0xbfeff3830f8d575c, 0x3fac428d12c0d7e3, // -0.99848, 0.055195 0xbfeff621e3796d7e, 0x3fa91f65f10dd814, // -0.9988, 0.049068 0xbfeff871dadb81df, 0x3fa5fc00d290cd43, // -0.99908, 0.042938 0xbfeffa72effef75d, 0x3fa2d865759455cd, // -0.99932, 0.036807 0xbfeffc251df1d3f8, 0x3f9f693731d1cf01, // -0.99953, 0.030675 0xbfeffd886084cd0d, 0x3f992155f7a3667e, // -0.9997, 0.024541 0xbfeffe9cb44b51a1, 0x3f92d936bbe30efd, // -0.99983, 0.018407 0xbfefff62169b92db, 0x3f8921d1fcdec784, // -0.99992, 0.012272 0xbfefffd8858e8a92, 0x3f7921f0fe670071, // -0.99998, 0.0061359 0xbff0000000000000, 0x0000000000000000, // -1, 0 0xbfefffd8858e8a92, 0xbf7921f0fe670071, // -0.99998,-0.0061359 0xbfefff62169b92db, 0xbf8921d1fcdec784, // -0.99992, -0.012272 0xbfeffe9cb44b51a1, 0xbf92d936bbe30efd, // -0.99983, -0.018407 0xbfeffd886084cd0d, 0xbf992155f7a3667e, // -0.9997, -0.024541 0xbfeffc251df1d3f8, 0xbf9f693731d1cf01, // -0.99953, -0.030675 0xbfeffa72effef75d, 0xbfa2d865759455cd, // -0.99932, -0.036807 0xbfeff871dadb81df, 0xbfa5fc00d290cd43, // -0.99908, -0.042938 0xbfeff621e3796d7e, 0xbfa91f65f10dd814, // -0.9988, -0.049068 0xbfeff3830f8d575c, 0xbfac428d12c0d7e3, // -0.99848, -0.055195 0xbfeff095658e71ad, 0xbfaf656e79f820e0, // -0.99812, -0.061321 0xbfefed58ecb673c4, 0xbfb1440134d709b2, // -0.99772, -0.067444 0xbfefe9cdad01883a, 0xbfb2d52092ce19f6, // -0.99729, -0.073565 0xbfefe5f3af2e3940, 0xbfb4661179272096, // -0.99682, -0.079682 0xbfefe1cafcbd5b09, 0xbfb5f6d00a9aa419, // -0.99631, -0.085797 0xbfefdd539ff1f456, 0xbfb787586a5d5b21, // -0.99577, -0.091909 0xbfefd88da3d12526, 0xbfb917a6bc29b42c, // -0.99518, -0.098017 0xbfefd37914220b84, 0xbfbaa7b724495c04, // -0.99456, -0.10412 0xbfefce15fd6da67b, 0xbfbc3785c79ec2d5, // -0.99391, -0.11022 0xbfefc8646cfeb721, 0xbfbdc70ecbae9fc8, // -0.99321, -0.11632 0xbfefc26470e19fd3, 0xbfbf564e56a9730e, // -0.99248, -0.12241 0xbfefbc1617e44186, 0xbfc072a047ba831d, // -0.99171, -0.1285 0xbfefb5797195d741, 0xbfc139f0cedaf576, // -0.9909, -0.13458 0xbfefae8e8e46cfbb, 0xbfc20116d4ec7bce, // -0.99006, -0.14066 0xbfefa7557f08a517, 0xbfc2c8106e8e613a, // -0.98918, -0.14673 0xbfef9fce55adb2c8, 0xbfc38edbb0cd8d14, // -0.98826, -0.1528 0xbfef97f924c9099b, 0xbfc45576b1293e5a, // -0.9873, -0.15886 0xbfef8fd5ffae41db, 0xbfc51bdf8597c5f2, // -0.98631, -0.16491 0xbfef8764fa714ba9, 0xbfc5e214448b3fc6, // -0.98528, -0.17096 0xbfef7ea629e63d6e, 0xbfc6a81304f64ab2, // -0.98421, -0.177 0xbfef7599a3a12077, 0xbfc76dd9de50bf31, // -0.98311, -0.18304 0xbfef6c3f7df5bbb7, 0xbfc83366e89c64c5, // -0.98196, -0.18907 0xbfef6297cff75cb0, 0xbfc8f8b83c69a60a, // -0.98079, -0.19509 0xbfef58a2b1789e84, 0xbfc9bdcbf2dc4366, // -0.97957, -0.2011 0xbfef4e603b0b2f2d, 0xbfca82a025b00451, // -0.97832, -0.20711 0xbfef43d085ff92dd, 0xbfcb4732ef3d6722, // -0.97703, -0.21311 0xbfef38f3ac64e589, 0xbfcc0b826a7e4f63, // -0.9757, -0.2191 0xbfef2dc9c9089a9d, 0xbfcccf8cb312b286, // -0.97434, -0.22508 0xbfef2252f7763ada, 0xbfcd934fe5454311, // -0.97294, -0.23106 0xbfef168f53f7205d, 0xbfce56ca1e101a1b, // -0.9715, -0.23702 0xbfef0a7efb9230d7, 0xbfcf19f97b215f1a, // -0.97003, -0.24298 0xbfeefe220c0b95ec, 0xbfcfdcdc1adfedf8, // -0.96852, -0.24893 0xbfeef178a3e473c2, 0xbfd04fb80e37fdae, // -0.96698, -0.25487 0xbfeee482e25a9dbc, 0xbfd0b0d9cfdbdb90, // -0.96539, -0.26079 0xbfeed740e7684963, 0xbfd111d262b1f677, // -0.96378, -0.26671 0xbfeec9b2d3c3bf84, 0xbfd172a0d7765177, // -0.96212, -0.27262 0xbfeebbd8c8df0b74, 0xbfd1d3443f4cdb3d, // -0.96043, -0.27852 0xbfeeadb2e8e7a88e, 0xbfd233bbabc3bb72, // -0.9587, -0.28441 0xbfee9f4156c62dda, 0xbfd294062ed59f05, // -0.95694, -0.29028 0xbfee9084361df7f3, 0xbfd2f422daec0386, // -0.95514, -0.29615 0xbfee817bab4cd10d, 0xbfd35410c2e18152, // -0.95331, -0.30201 0xbfee7227db6a9744, 0xbfd3b3cefa0414b7, // -0.95144, -0.30785 0xbfee6288ec48e112, 0xbfd4135c94176602, // -0.94953, -0.31368 0xbfee529f04729ffc, 0xbfd472b8a5571054, // -0.94759, -0.3195 0xbfee426a4b2bc17e, 0xbfd4d1e24278e76a, // -0.94561, -0.32531 0xbfee31eae870ce25, 0xbfd530d880af3c24, // -0.94359, -0.33111 0xbfee212104f686e5, 0xbfd58f9a75ab1fdd, // -0.94154, -0.33689 0xbfee100cca2980ac, 0xbfd5ee27379ea693, // -0.93946, -0.34266 0xbfedfeae622dbe2b, 0xbfd64c7ddd3f27c6, // -0.93734, -0.34842 0xbfeded05f7de47da, 0xbfd6aa9d7dc77e16, // -0.93518, -0.35416 0xbfeddb13b6ccc23d, 0xbfd7088530fa459e, // -0.93299, -0.3599 0xbfedc8d7cb410260, 0xbfd766340f2418f6, // -0.93077, -0.36561 0xbfedb6526238a09b, 0xbfd7c3a9311dcce7, // -0.92851, -0.37132 0xbfeda383a9668988, 0xbfd820e3b04eaac4, // -0.92621, -0.37701 0xbfed906bcf328d46, 0xbfd87de2a6aea963, // -0.92388, -0.38268 0xbfed7d0b02b8ecf9, 0xbfd8daa52ec8a4af, // -0.92151, -0.38835 0xbfed696173c9e68b, 0xbfd9372a63bc93d7, // -0.91911, -0.39399 0xbfed556f52e93eb1, 0xbfd993716141bdfe, // -0.91668, -0.39962 0xbfed4134d14dc93a, 0xbfd9ef7943a8ed8a, // -0.91421, -0.40524 0xbfed2cb220e0ef9f, 0xbfda4b4127dea1e4, // -0.91171, -0.41084 0xbfed17e7743e35dc, 0xbfdaa6c82b6d3fc9, // -0.90917, -0.41643 0xbfed02d4feb2bd92, 0xbfdb020d6c7f4009, // -0.9066, -0.422 0xbfeced7af43cc773, 0xbfdb5d1009e15cc0, // -0.90399, -0.42756 0xbfecd7d9898b32f6, 0xbfdbb7cf2304bd01, // -0.90135, -0.43309 0xbfecc1f0f3fcfc5c, 0xbfdc1249d8011ee7, // -0.89867, -0.43862 0xbfecabc169a0b901, 0xbfdc6c7f4997000a, // -0.89597, -0.44412 0xbfec954b213411f5, 0xbfdcc66e9931c45d, // -0.89322, -0.44961 0xbfec7e8e52233cf3, 0xbfdd2016e8e9db5b, // -0.89045, -0.45508 0xbfec678b3488739b, 0xbfdd79775b86e389, // -0.88764, -0.46054 0xbfec5042012b6907, 0xbfddd28f1481cc58, // -0.8848, -0.46598 0xbfec38b2f180bdb1, 0xbfde2b5d3806f63b, // -0.88192, -0.4714 0xbfec20de3fa971b0, 0xbfde83e0eaf85113, // -0.87901, -0.4768 0xbfec08c426725549, 0xbfdedc1952ef78d5, // -0.87607, -0.48218 0xbfebf064e15377dd, 0xbfdf3405963fd068, // -0.87309, -0.48755 0xbfebd7c0ac6f952a, 0xbfdf8ba4dbf89aba, // -0.87009, -0.4929 0xbfebbed7c49380ea, 0xbfdfe2f64be7120f, // -0.86705, -0.49823 0xbfeba5aa673590d2, 0xbfe01cfc874c3eb7, // -0.86397, -0.50354 0xbfeb8c38d27504e9, 0xbfe0485626ae221a, // -0.86087, -0.50883 0xbfeb728345196e3e, 0xbfe073879922ffed, // -0.85773, -0.5141 0xbfeb5889fe921405, 0xbfe09e907417c5e1, // -0.85456, -0.51936 0xbfeb3e4d3ef55712, 0xbfe0c9704d5d898f, // -0.85136, -0.52459 0xbfeb23cd470013b4, 0xbfe0f426bb2a8e7d, // -0.84812, -0.5298 0xbfeb090a58150200, 0xbfe11eb3541b4b22, // -0.84485, -0.535 0xbfeaee04b43c1474, 0xbfe14915af336ceb, // -0.84155, -0.54017 0xbfead2bc9e21d511, 0xbfe1734d63dedb49, // -0.83822, -0.54532 0xbfeab7325916c0d4, 0xbfe19d5a09f2b9b8, // -0.83486, -0.55046 0xbfea9b66290ea1a3, 0xbfe1c73b39ae68c8, // -0.83147, -0.55557 0xbfea7f58529fe69d, 0xbfe1f0f08bbc861b, // -0.82805, -0.56066 0xbfea63091b02fae2, 0xbfe21a799933eb58, // -0.82459, -0.56573 0xbfea4678c8119ac8, 0xbfe243d5fb98ac1f, // -0.8211, -0.57078 0xbfea29a7a0462782, 0xbfe26d054cdd12df, // -0.81758, -0.57581 0xbfea0c95eabaf937, 0xbfe2960727629ca8, // -0.81404, -0.58081 0xbfe9ef43ef29af94, 0xbfe2bedb25faf3ea, // -0.81046, -0.5858 0xbfe9d1b1f5ea80d6, 0xbfe2e780e3e8ea16, // -0.80685, -0.59076 0xbfe9b3e047f38741, 0xbfe30ff7fce17035, // -0.80321, -0.5957 0xbfe995cf2ed80d22, 0xbfe338400d0c8e57, // -0.79954, -0.60062 0xbfe9777ef4c7d742, 0xbfe36058b10659f3, // -0.79584, -0.60551 0xbfe958efe48e6dd7, 0xbfe3884185dfeb22, // -0.79211, -0.61038 0xbfe93a22499263fc, 0xbfe3affa292050b9, // -0.78835, -0.61523 0xbfe91b166fd49da2, 0xbfe3d78238c58343, // -0.78456, -0.62006 0xbfe8fbcca3ef940d, 0xbfe3fed9534556d4, // -0.78074, -0.62486 0xbfe8dc45331698cc, 0xbfe425ff178e6bb1, // -0.77689, -0.62964 0xbfe8bc806b151741, 0xbfe44cf325091dd6, // -0.77301, -0.63439 0xbfe89c7e9a4dd4ab, 0xbfe473b51b987347, // -0.7691, -0.63912 0xbfe87c400fba2ebf, 0xbfe49a449b9b0938, // -0.76517, -0.64383 0xbfe85bc51ae958cc, 0xbfe4c0a145ec0004, // -0.7612, -0.64851 0xbfe83b0e0bff976e, 0xbfe4e6cabbe3e5e9, // -0.75721, -0.65317 0xbfe81a1b33b57acc, 0xbfe50cc09f59a09b, // -0.75319, -0.65781 0xbfe7f8ece3571771, 0xbfe5328292a35596, // -0.74914, -0.66242 0xbfe7d7836cc33db2, 0xbfe5581038975137, // -0.74506, -0.667 0xbfe7b5df226aafb0, 0xbfe57d69348cec9f, // -0.74095, -0.67156 0xbfe79400574f55e4, 0xbfe5a28d2a5d7250, // -0.73682, -0.67609 0xbfe771e75f037261, 0xbfe5c77bbe65018c, // -0.73265, -0.6806 0xbfe74f948da8d28d, 0xbfe5ec3495837074, // -0.72846, -0.68508 0xbfe72d0837efff97, 0xbfe610b7551d2cde, // -0.72425, -0.68954 0xbfe70a42b3176d7a, 0xbfe63503a31c1be8, // -0.72, -0.69397 0xbfe6e74454eaa8ae, 0xbfe6591925f0783e, // -0.71573, -0.69838 0xbfe6c40d73c18275, 0xbfe67cf78491af10, // -0.71143, -0.70275 0xbfe6a09e667f3bcc, 0xbfe6a09e667f3bcc, // -0.70711, -0.70711 0xbfe67cf78491af10, 0xbfe6c40d73c18275, // -0.70275, -0.71143 0xbfe6591925f0783e, 0xbfe6e74454eaa8ae, // -0.69838, -0.71573 0xbfe63503a31c1be8, 0xbfe70a42b3176d7a, // -0.69397, -0.72 0xbfe610b7551d2cde, 0xbfe72d0837efff97, // -0.68954, -0.72425 0xbfe5ec3495837074, 0xbfe74f948da8d28d, // -0.68508, -0.72846 0xbfe5c77bbe65018c, 0xbfe771e75f037261, // -0.6806, -0.73265 0xbfe5a28d2a5d7250, 0xbfe79400574f55e4, // -0.67609, -0.73682 0xbfe57d69348cec9f, 0xbfe7b5df226aafb0, // -0.67156, -0.74095 0xbfe5581038975137, 0xbfe7d7836cc33db2, // -0.667, -0.74506 0xbfe5328292a35596, 0xbfe7f8ece3571771, // -0.66242, -0.74914 0xbfe50cc09f59a09b, 0xbfe81a1b33b57acc, // -0.65781, -0.75319 0xbfe4e6cabbe3e5e9, 0xbfe83b0e0bff976e, // -0.65317, -0.75721 0xbfe4c0a145ec0004, 0xbfe85bc51ae958cc, // -0.64851, -0.7612 0xbfe49a449b9b0938, 0xbfe87c400fba2ebf, // -0.64383, -0.76517 0xbfe473b51b987347, 0xbfe89c7e9a4dd4ab, // -0.63912, -0.7691 0xbfe44cf325091dd6, 0xbfe8bc806b151741, // -0.63439, -0.77301 0xbfe425ff178e6bb1, 0xbfe8dc45331698cc, // -0.62964, -0.77689 0xbfe3fed9534556d4, 0xbfe8fbcca3ef940d, // -0.62486, -0.78074 0xbfe3d78238c58343, 0xbfe91b166fd49da2, // -0.62006, -0.78456 0xbfe3affa292050b9, 0xbfe93a22499263fc, // -0.61523, -0.78835 0xbfe3884185dfeb22, 0xbfe958efe48e6dd7, // -0.61038, -0.79211 0xbfe36058b10659f3, 0xbfe9777ef4c7d742, // -0.60551, -0.79584 0xbfe338400d0c8e57, 0xbfe995cf2ed80d22, // -0.60062, -0.79954 0xbfe30ff7fce17035, 0xbfe9b3e047f38741, // -0.5957, -0.80321 0xbfe2e780e3e8ea16, 0xbfe9d1b1f5ea80d6, // -0.59076, -0.80685 0xbfe2bedb25faf3ea, 0xbfe9ef43ef29af94, // -0.5858, -0.81046 0xbfe2960727629ca8, 0xbfea0c95eabaf937, // -0.58081, -0.81404 0xbfe26d054cdd12df, 0xbfea29a7a0462782, // -0.57581, -0.81758 0xbfe243d5fb98ac1f, 0xbfea4678c8119ac8, // -0.57078, -0.8211 0xbfe21a799933eb58, 0xbfea63091b02fae2, // -0.56573, -0.82459 0xbfe1f0f08bbc861b, 0xbfea7f58529fe69d, // -0.56066, -0.82805 0xbfe1c73b39ae68c8, 0xbfea9b66290ea1a3, // -0.55557, -0.83147 0xbfe19d5a09f2b9b8, 0xbfeab7325916c0d4, // -0.55046, -0.83486 0xbfe1734d63dedb49, 0xbfead2bc9e21d511, // -0.54532, -0.83822 0xbfe14915af336ceb, 0xbfeaee04b43c1474, // -0.54017, -0.84155 0xbfe11eb3541b4b22, 0xbfeb090a58150200, // -0.535, -0.84485 0xbfe0f426bb2a8e7d, 0xbfeb23cd470013b4, // -0.5298, -0.84812 0xbfe0c9704d5d898f, 0xbfeb3e4d3ef55712, // -0.52459, -0.85136 0xbfe09e907417c5e1, 0xbfeb5889fe921405, // -0.51936, -0.85456 0xbfe073879922ffed, 0xbfeb728345196e3e, // -0.5141, -0.85773 0xbfe0485626ae221a, 0xbfeb8c38d27504e9, // -0.50883, -0.86087 0xbfe01cfc874c3eb7, 0xbfeba5aa673590d2, // -0.50354, -0.86397 0xbfdfe2f64be7120f, 0xbfebbed7c49380ea, // -0.49823, -0.86705 0xbfdf8ba4dbf89aba, 0xbfebd7c0ac6f952a, // -0.4929, -0.87009 0xbfdf3405963fd068, 0xbfebf064e15377dd, // -0.48755, -0.87309 0xbfdedc1952ef78d5, 0xbfec08c426725549, // -0.48218, -0.87607 0xbfde83e0eaf85113, 0xbfec20de3fa971b0, // -0.4768, -0.87901 0xbfde2b5d3806f63b, 0xbfec38b2f180bdb1, // -0.4714, -0.88192 0xbfddd28f1481cc58, 0xbfec5042012b6907, // -0.46598, -0.8848 0xbfdd79775b86e389, 0xbfec678b3488739b, // -0.46054, -0.88764 0xbfdd2016e8e9db5b, 0xbfec7e8e52233cf3, // -0.45508, -0.89045 0xbfdcc66e9931c45d, 0xbfec954b213411f5, // -0.44961, -0.89322 0xbfdc6c7f4997000a, 0xbfecabc169a0b901, // -0.44412, -0.89597 0xbfdc1249d8011ee7, 0xbfecc1f0f3fcfc5c, // -0.43862, -0.89867 0xbfdbb7cf2304bd01, 0xbfecd7d9898b32f6, // -0.43309, -0.90135 0xbfdb5d1009e15cc0, 0xbfeced7af43cc773, // -0.42756, -0.90399 0xbfdb020d6c7f4009, 0xbfed02d4feb2bd92, // -0.422, -0.9066 0xbfdaa6c82b6d3fc9, 0xbfed17e7743e35dc, // -0.41643, -0.90917 0xbfda4b4127dea1e4, 0xbfed2cb220e0ef9f, // -0.41084, -0.91171 0xbfd9ef7943a8ed8a, 0xbfed4134d14dc93a, // -0.40524, -0.91421 0xbfd993716141bdfe, 0xbfed556f52e93eb1, // -0.39962, -0.91668 0xbfd9372a63bc93d7, 0xbfed696173c9e68b, // -0.39399, -0.91911 0xbfd8daa52ec8a4af, 0xbfed7d0b02b8ecf9, // -0.38835, -0.92151 0xbfd87de2a6aea963, 0xbfed906bcf328d46, // -0.38268, -0.92388 0xbfd820e3b04eaac4, 0xbfeda383a9668988, // -0.37701, -0.92621 0xbfd7c3a9311dcce7, 0xbfedb6526238a09b, // -0.37132, -0.92851 0xbfd766340f2418f6, 0xbfedc8d7cb410260, // -0.36561, -0.93077 0xbfd7088530fa459e, 0xbfeddb13b6ccc23d, // -0.3599, -0.93299 0xbfd6aa9d7dc77e16, 0xbfeded05f7de47da, // -0.35416, -0.93518 0xbfd64c7ddd3f27c6, 0xbfedfeae622dbe2b, // -0.34842, -0.93734 0xbfd5ee27379ea693, 0xbfee100cca2980ac, // -0.34266, -0.93946 0xbfd58f9a75ab1fdd, 0xbfee212104f686e5, // -0.33689, -0.94154 0xbfd530d880af3c24, 0xbfee31eae870ce25, // -0.33111, -0.94359 0xbfd4d1e24278e76a, 0xbfee426a4b2bc17e, // -0.32531, -0.94561 0xbfd472b8a5571054, 0xbfee529f04729ffc, // -0.3195, -0.94759 0xbfd4135c94176602, 0xbfee6288ec48e112, // -0.31368, -0.94953 0xbfd3b3cefa0414b7, 0xbfee7227db6a9744, // -0.30785, -0.95144 0xbfd35410c2e18152, 0xbfee817bab4cd10d, // -0.30201, -0.95331 0xbfd2f422daec0386, 0xbfee9084361df7f3, // -0.29615, -0.95514 0xbfd294062ed59f05, 0xbfee9f4156c62dda, // -0.29028, -0.95694 0xbfd233bbabc3bb72, 0xbfeeadb2e8e7a88e, // -0.28441, -0.9587 0xbfd1d3443f4cdb3d, 0xbfeebbd8c8df0b74, // -0.27852, -0.96043 0xbfd172a0d7765177, 0xbfeec9b2d3c3bf84, // -0.27262, -0.96212 0xbfd111d262b1f677, 0xbfeed740e7684963, // -0.26671, -0.96378 0xbfd0b0d9cfdbdb90, 0xbfeee482e25a9dbc, // -0.26079, -0.96539 0xbfd04fb80e37fdae, 0xbfeef178a3e473c2, // -0.25487, -0.96698 0xbfcfdcdc1adfedf8, 0xbfeefe220c0b95ec, // -0.24893, -0.96852 0xbfcf19f97b215f1a, 0xbfef0a7efb9230d7, // -0.24298, -0.97003 0xbfce56ca1e101a1b, 0xbfef168f53f7205d, // -0.23702, -0.9715 0xbfcd934fe5454311, 0xbfef2252f7763ada, // -0.23106, -0.97294 0xbfcccf8cb312b286, 0xbfef2dc9c9089a9d, // -0.22508, -0.97434 0xbfcc0b826a7e4f63, 0xbfef38f3ac64e589, // -0.2191, -0.9757 0xbfcb4732ef3d6722, 0xbfef43d085ff92dd, // -0.21311, -0.97703 0xbfca82a025b00451, 0xbfef4e603b0b2f2d, // -0.20711, -0.97832 0xbfc9bdcbf2dc4366, 0xbfef58a2b1789e84, // -0.2011, -0.97957 0xbfc8f8b83c69a60a, 0xbfef6297cff75cb0, // -0.19509, -0.98079 0xbfc83366e89c64c5, 0xbfef6c3f7df5bbb7, // -0.18907, -0.98196 0xbfc76dd9de50bf31, 0xbfef7599a3a12077, // -0.18304, -0.98311 0xbfc6a81304f64ab2, 0xbfef7ea629e63d6e, // -0.177, -0.98421 0xbfc5e214448b3fc6, 0xbfef8764fa714ba9, // -0.17096, -0.98528 0xbfc51bdf8597c5f2, 0xbfef8fd5ffae41db, // -0.16491, -0.98631 0xbfc45576b1293e5a, 0xbfef97f924c9099b, // -0.15886, -0.9873 0xbfc38edbb0cd8d14, 0xbfef9fce55adb2c8, // -0.1528, -0.98826 0xbfc2c8106e8e613a, 0xbfefa7557f08a517, // -0.14673, -0.98918 0xbfc20116d4ec7bce, 0xbfefae8e8e46cfbb, // -0.14066, -0.99006 0xbfc139f0cedaf576, 0xbfefb5797195d741, // -0.13458, -0.9909 0xbfc072a047ba831d, 0xbfefbc1617e44186, // -0.1285, -0.99171 0xbfbf564e56a9730e, 0xbfefc26470e19fd3, // -0.12241, -0.99248 0xbfbdc70ecbae9fc8, 0xbfefc8646cfeb721, // -0.11632, -0.99321 0xbfbc3785c79ec2d5, 0xbfefce15fd6da67b, // -0.11022, -0.99391 0xbfbaa7b724495c04, 0xbfefd37914220b84, // -0.10412, -0.99456 0xbfb917a6bc29b42c, 0xbfefd88da3d12526, // -0.098017, -0.99518 0xbfb787586a5d5b21, 0xbfefdd539ff1f456, // -0.091909, -0.99577 0xbfb5f6d00a9aa419, 0xbfefe1cafcbd5b09, // -0.085797, -0.99631 0xbfb4661179272096, 0xbfefe5f3af2e3940, // -0.079682, -0.99682 0xbfb2d52092ce19f6, 0xbfefe9cdad01883a, // -0.073565, -0.99729 0xbfb1440134d709b2, 0xbfefed58ecb673c4, // -0.067444, -0.99772 0xbfaf656e79f820e0, 0xbfeff095658e71ad, // -0.061321, -0.99812 0xbfac428d12c0d7e3, 0xbfeff3830f8d575c, // -0.055195, -0.99848 0xbfa91f65f10dd814, 0xbfeff621e3796d7e, // -0.049068, -0.9988 0xbfa5fc00d290cd43, 0xbfeff871dadb81df, // -0.042938, -0.99908 0xbfa2d865759455cd, 0xbfeffa72effef75d, // -0.036807, -0.99932 0xbf9f693731d1cf01, 0xbfeffc251df1d3f8, // -0.030675, -0.99953 0xbf992155f7a3667e, 0xbfeffd886084cd0d, // -0.024541, -0.9997 0xbf92d936bbe30efd, 0xbfeffe9cb44b51a1, // -0.018407, -0.99983 0xbf8921d1fcdec784, 0xbfefff62169b92db, // -0.012272, -0.99992 0xbf7921f0fe670071, 0xbfefffd8858e8a92, //-0.0061359, -0.99998 0x0000000000000000, 0xbff0000000000000, // 0, -1 0x3f7921f0fe670071, 0xbfefffd8858e8a92, // 0.0061359, -0.99998 0x3f8921d1fcdec784, 0xbfefff62169b92db, // 0.012272, -0.99992 0x3f92d936bbe30efd, 0xbfeffe9cb44b51a1, // 0.018407, -0.99983 0x3f992155f7a3667e, 0xbfeffd886084cd0d, // 0.024541, -0.9997 0x3f9f693731d1cf01, 0xbfeffc251df1d3f8, // 0.030675, -0.99953 0x3fa2d865759455cd, 0xbfeffa72effef75d, // 0.036807, -0.99932 0x3fa5fc00d290cd43, 0xbfeff871dadb81df, // 0.042938, -0.99908 0x3fa91f65f10dd814, 0xbfeff621e3796d7e, // 0.049068, -0.9988 0x3fac428d12c0d7e3, 0xbfeff3830f8d575c, // 0.055195, -0.99848 0x3faf656e79f820e0, 0xbfeff095658e71ad, // 0.061321, -0.99812 0x3fb1440134d709b2, 0xbfefed58ecb673c4, // 0.067444, -0.99772 0x3fb2d52092ce19f6, 0xbfefe9cdad01883a, // 0.073565, -0.99729 0x3fb4661179272096, 0xbfefe5f3af2e3940, // 0.079682, -0.99682 0x3fb5f6d00a9aa419, 0xbfefe1cafcbd5b09, // 0.085797, -0.99631 0x3fb787586a5d5b21, 0xbfefdd539ff1f456, // 0.091909, -0.99577 0x3fb917a6bc29b42c, 0xbfefd88da3d12526, // 0.098017, -0.99518 0x3fbaa7b724495c04, 0xbfefd37914220b84, // 0.10412, -0.99456 0x3fbc3785c79ec2d5, 0xbfefce15fd6da67b, // 0.11022, -0.99391 0x3fbdc70ecbae9fc8, 0xbfefc8646cfeb721, // 0.11632, -0.99321 0x3fbf564e56a9730e, 0xbfefc26470e19fd3, // 0.12241, -0.99248 0x3fc072a047ba831d, 0xbfefbc1617e44186, // 0.1285, -0.99171 0x3fc139f0cedaf576, 0xbfefb5797195d741, // 0.13458, -0.9909 0x3fc20116d4ec7bce, 0xbfefae8e8e46cfbb, // 0.14066, -0.99006 0x3fc2c8106e8e613a, 0xbfefa7557f08a517, // 0.14673, -0.98918 0x3fc38edbb0cd8d14, 0xbfef9fce55adb2c8, // 0.1528, -0.98826 0x3fc45576b1293e5a, 0xbfef97f924c9099b, // 0.15886, -0.9873 0x3fc51bdf8597c5f2, 0xbfef8fd5ffae41db, // 0.16491, -0.98631 0x3fc5e214448b3fc6, 0xbfef8764fa714ba9, // 0.17096, -0.98528 0x3fc6a81304f64ab2, 0xbfef7ea629e63d6e, // 0.177, -0.98421 0x3fc76dd9de50bf31, 0xbfef7599a3a12077, // 0.18304, -0.98311 0x3fc83366e89c64c5, 0xbfef6c3f7df5bbb7, // 0.18907, -0.98196 0x3fc8f8b83c69a60a, 0xbfef6297cff75cb0, // 0.19509, -0.98079 0x3fc9bdcbf2dc4366, 0xbfef58a2b1789e84, // 0.2011, -0.97957 0x3fca82a025b00451, 0xbfef4e603b0b2f2d, // 0.20711, -0.97832 0x3fcb4732ef3d6722, 0xbfef43d085ff92dd, // 0.21311, -0.97703 0x3fcc0b826a7e4f63, 0xbfef38f3ac64e589, // 0.2191, -0.9757 0x3fcccf8cb312b286, 0xbfef2dc9c9089a9d, // 0.22508, -0.97434 0x3fcd934fe5454311, 0xbfef2252f7763ada, // 0.23106, -0.97294 0x3fce56ca1e101a1b, 0xbfef168f53f7205d, // 0.23702, -0.9715 0x3fcf19f97b215f1a, 0xbfef0a7efb9230d7, // 0.24298, -0.97003 0x3fcfdcdc1adfedf8, 0xbfeefe220c0b95ec, // 0.24893, -0.96852 0x3fd04fb80e37fdae, 0xbfeef178a3e473c2, // 0.25487, -0.96698 0x3fd0b0d9cfdbdb90, 0xbfeee482e25a9dbc, // 0.26079, -0.96539 0x3fd111d262b1f677, 0xbfeed740e7684963, // 0.26671, -0.96378 0x3fd172a0d7765177, 0xbfeec9b2d3c3bf84, // 0.27262, -0.96212 0x3fd1d3443f4cdb3d, 0xbfeebbd8c8df0b74, // 0.27852, -0.96043 0x3fd233bbabc3bb72, 0xbfeeadb2e8e7a88e, // 0.28441, -0.9587 0x3fd294062ed59f05, 0xbfee9f4156c62dda, // 0.29028, -0.95694 0x3fd2f422daec0386, 0xbfee9084361df7f3, // 0.29615, -0.95514 0x3fd35410c2e18152, 0xbfee817bab4cd10d, // 0.30201, -0.95331 0x3fd3b3cefa0414b7, 0xbfee7227db6a9744, // 0.30785, -0.95144 0x3fd4135c94176602, 0xbfee6288ec48e112, // 0.31368, -0.94953 0x3fd472b8a5571054, 0xbfee529f04729ffc, // 0.3195, -0.94759 0x3fd4d1e24278e76a, 0xbfee426a4b2bc17e, // 0.32531, -0.94561 0x3fd530d880af3c24, 0xbfee31eae870ce25, // 0.33111, -0.94359 0x3fd58f9a75ab1fdd, 0xbfee212104f686e5, // 0.33689, -0.94154 0x3fd5ee27379ea693, 0xbfee100cca2980ac, // 0.34266, -0.93946 0x3fd64c7ddd3f27c6, 0xbfedfeae622dbe2b, // 0.34842, -0.93734 0x3fd6aa9d7dc77e16, 0xbfeded05f7de47da, // 0.35416, -0.93518 0x3fd7088530fa459e, 0xbfeddb13b6ccc23d, // 0.3599, -0.93299 0x3fd766340f2418f6, 0xbfedc8d7cb410260, // 0.36561, -0.93077 0x3fd7c3a9311dcce7, 0xbfedb6526238a09b, // 0.37132, -0.92851 0x3fd820e3b04eaac4, 0xbfeda383a9668988, // 0.37701, -0.92621 0x3fd87de2a6aea963, 0xbfed906bcf328d46, // 0.38268, -0.92388 0x3fd8daa52ec8a4af, 0xbfed7d0b02b8ecf9, // 0.38835, -0.92151 0x3fd9372a63bc93d7, 0xbfed696173c9e68b, // 0.39399, -0.91911 0x3fd993716141bdfe, 0xbfed556f52e93eb1, // 0.39962, -0.91668 0x3fd9ef7943a8ed8a, 0xbfed4134d14dc93a, // 0.40524, -0.91421 0x3fda4b4127dea1e4, 0xbfed2cb220e0ef9f, // 0.41084, -0.91171 0x3fdaa6c82b6d3fc9, 0xbfed17e7743e35dc, // 0.41643, -0.90917 0x3fdb020d6c7f4009, 0xbfed02d4feb2bd92, // 0.422, -0.9066 0x3fdb5d1009e15cc0, 0xbfeced7af43cc773, // 0.42756, -0.90399 0x3fdbb7cf2304bd01, 0xbfecd7d9898b32f6, // 0.43309, -0.90135 0x3fdc1249d8011ee7, 0xbfecc1f0f3fcfc5c, // 0.43862, -0.89867 0x3fdc6c7f4997000a, 0xbfecabc169a0b901, // 0.44412, -0.89597 0x3fdcc66e9931c45d, 0xbfec954b213411f5, // 0.44961, -0.89322 0x3fdd2016e8e9db5b, 0xbfec7e8e52233cf3, // 0.45508, -0.89045 0x3fdd79775b86e389, 0xbfec678b3488739b, // 0.46054, -0.88764 0x3fddd28f1481cc58, 0xbfec5042012b6907, // 0.46598, -0.8848 0x3fde2b5d3806f63b, 0xbfec38b2f180bdb1, // 0.4714, -0.88192 0x3fde83e0eaf85113, 0xbfec20de3fa971b0, // 0.4768, -0.87901 0x3fdedc1952ef78d5, 0xbfec08c426725549, // 0.48218, -0.87607 0x3fdf3405963fd068, 0xbfebf064e15377dd, // 0.48755, -0.87309 0x3fdf8ba4dbf89aba, 0xbfebd7c0ac6f952a, // 0.4929, -0.87009 0x3fdfe2f64be7120f, 0xbfebbed7c49380ea, // 0.49823, -0.86705 0x3fe01cfc874c3eb7, 0xbfeba5aa673590d2, // 0.50354, -0.86397 0x3fe0485626ae221a, 0xbfeb8c38d27504e9, // 0.50883, -0.86087 0x3fe073879922ffed, 0xbfeb728345196e3e, // 0.5141, -0.85773 0x3fe09e907417c5e1, 0xbfeb5889fe921405, // 0.51936, -0.85456 0x3fe0c9704d5d898f, 0xbfeb3e4d3ef55712, // 0.52459, -0.85136 0x3fe0f426bb2a8e7d, 0xbfeb23cd470013b4, // 0.5298, -0.84812 0x3fe11eb3541b4b22, 0xbfeb090a58150200, // 0.535, -0.84485 0x3fe14915af336ceb, 0xbfeaee04b43c1474, // 0.54017, -0.84155 0x3fe1734d63dedb49, 0xbfead2bc9e21d511, // 0.54532, -0.83822 0x3fe19d5a09f2b9b8, 0xbfeab7325916c0d4, // 0.55046, -0.83486 0x3fe1c73b39ae68c8, 0xbfea9b66290ea1a3, // 0.55557, -0.83147 0x3fe1f0f08bbc861b, 0xbfea7f58529fe69d, // 0.56066, -0.82805 0x3fe21a799933eb58, 0xbfea63091b02fae2, // 0.56573, -0.82459 0x3fe243d5fb98ac1f, 0xbfea4678c8119ac8, // 0.57078, -0.8211 0x3fe26d054cdd12df, 0xbfea29a7a0462782, // 0.57581, -0.81758 0x3fe2960727629ca8, 0xbfea0c95eabaf937, // 0.58081, -0.81404 0x3fe2bedb25faf3ea, 0xbfe9ef43ef29af94, // 0.5858, -0.81046 0x3fe2e780e3e8ea16, 0xbfe9d1b1f5ea80d6, // 0.59076, -0.80685 0x3fe30ff7fce17035, 0xbfe9b3e047f38741, // 0.5957, -0.80321 0x3fe338400d0c8e57, 0xbfe995cf2ed80d22, // 0.60062, -0.79954 0x3fe36058b10659f3, 0xbfe9777ef4c7d742, // 0.60551, -0.79584 0x3fe3884185dfeb22, 0xbfe958efe48e6dd7, // 0.61038, -0.79211 0x3fe3affa292050b9, 0xbfe93a22499263fc, // 0.61523, -0.78835 0x3fe3d78238c58343, 0xbfe91b166fd49da2, // 0.62006, -0.78456 0x3fe3fed9534556d4, 0xbfe8fbcca3ef940d, // 0.62486, -0.78074 0x3fe425ff178e6bb1, 0xbfe8dc45331698cc, // 0.62964, -0.77689 0x3fe44cf325091dd6, 0xbfe8bc806b151741, // 0.63439, -0.77301 0x3fe473b51b987347, 0xbfe89c7e9a4dd4ab, // 0.63912, -0.7691 0x3fe49a449b9b0938, 0xbfe87c400fba2ebf, // 0.64383, -0.76517 0x3fe4c0a145ec0004, 0xbfe85bc51ae958cc, // 0.64851, -0.7612 0x3fe4e6cabbe3e5e9, 0xbfe83b0e0bff976e, // 0.65317, -0.75721 0x3fe50cc09f59a09b, 0xbfe81a1b33b57acc, // 0.65781, -0.75319 0x3fe5328292a35596, 0xbfe7f8ece3571771, // 0.66242, -0.74914 0x3fe5581038975137, 0xbfe7d7836cc33db2, // 0.667, -0.74506 0x3fe57d69348cec9f, 0xbfe7b5df226aafb0, // 0.67156, -0.74095 0x3fe5a28d2a5d7250, 0xbfe79400574f55e4, // 0.67609, -0.73682 0x3fe5c77bbe65018c, 0xbfe771e75f037261, // 0.6806, -0.73265 0x3fe5ec3495837074, 0xbfe74f948da8d28d, // 0.68508, -0.72846 0x3fe610b7551d2cde, 0xbfe72d0837efff97, // 0.68954, -0.72425 0x3fe63503a31c1be8, 0xbfe70a42b3176d7a, // 0.69397, -0.72 0x3fe6591925f0783e, 0xbfe6e74454eaa8ae, // 0.69838, -0.71573 0x3fe67cf78491af10, 0xbfe6c40d73c18275, // 0.70275, -0.71143 0x3fe6a09e667f3bcc, 0xbfe6a09e667f3bcc, // 0.70711, -0.70711 0x3fe6c40d73c18275, 0xbfe67cf78491af10, // 0.71143, -0.70275 0x3fe6e74454eaa8ae, 0xbfe6591925f0783e, // 0.71573, -0.69838 0x3fe70a42b3176d7a, 0xbfe63503a31c1be8, // 0.72, -0.69397 0x3fe72d0837efff97, 0xbfe610b7551d2cde, // 0.72425, -0.68954 0x3fe74f948da8d28d, 0xbfe5ec3495837074, // 0.72846, -0.68508 0x3fe771e75f037261, 0xbfe5c77bbe65018c, // 0.73265, -0.6806 0x3fe79400574f55e4, 0xbfe5a28d2a5d7250, // 0.73682, -0.67609 0x3fe7b5df226aafb0, 0xbfe57d69348cec9f, // 0.74095, -0.67156 0x3fe7d7836cc33db2, 0xbfe5581038975137, // 0.74506, -0.667 0x3fe7f8ece3571771, 0xbfe5328292a35596, // 0.74914, -0.66242 0x3fe81a1b33b57acc, 0xbfe50cc09f59a09b, // 0.75319, -0.65781 0x3fe83b0e0bff976e, 0xbfe4e6cabbe3e5e9, // 0.75721, -0.65317 0x3fe85bc51ae958cc, 0xbfe4c0a145ec0004, // 0.7612, -0.64851 0x3fe87c400fba2ebf, 0xbfe49a449b9b0938, // 0.76517, -0.64383 0x3fe89c7e9a4dd4ab, 0xbfe473b51b987347, // 0.7691, -0.63912 0x3fe8bc806b151741, 0xbfe44cf325091dd6, // 0.77301, -0.63439 0x3fe8dc45331698cc, 0xbfe425ff178e6bb1, // 0.77689, -0.62964 0x3fe8fbcca3ef940d, 0xbfe3fed9534556d4, // 0.78074, -0.62486 0x3fe91b166fd49da2, 0xbfe3d78238c58343, // 0.78456, -0.62006 0x3fe93a22499263fc, 0xbfe3affa292050b9, // 0.78835, -0.61523 0x3fe958efe48e6dd7, 0xbfe3884185dfeb22, // 0.79211, -0.61038 0x3fe9777ef4c7d742, 0xbfe36058b10659f3, // 0.79584, -0.60551 0x3fe995cf2ed80d22, 0xbfe338400d0c8e57, // 0.79954, -0.60062 0x3fe9b3e047f38741, 0xbfe30ff7fce17035, // 0.80321, -0.5957 0x3fe9d1b1f5ea80d6, 0xbfe2e780e3e8ea16, // 0.80685, -0.59076 0x3fe9ef43ef29af94, 0xbfe2bedb25faf3ea, // 0.81046, -0.5858 0x3fea0c95eabaf937, 0xbfe2960727629ca8, // 0.81404, -0.58081 0x3fea29a7a0462782, 0xbfe26d054cdd12df, // 0.81758, -0.57581 0x3fea4678c8119ac8, 0xbfe243d5fb98ac1f, // 0.8211, -0.57078 0x3fea63091b02fae2, 0xbfe21a799933eb58, // 0.82459, -0.56573 0x3fea7f58529fe69d, 0xbfe1f0f08bbc861b, // 0.82805, -0.56066 0x3fea9b66290ea1a3, 0xbfe1c73b39ae68c8, // 0.83147, -0.55557 0x3feab7325916c0d4, 0xbfe19d5a09f2b9b8, // 0.83486, -0.55046 0x3fead2bc9e21d511, 0xbfe1734d63dedb49, // 0.83822, -0.54532 0x3feaee04b43c1474, 0xbfe14915af336ceb, // 0.84155, -0.54017 0x3feb090a58150200, 0xbfe11eb3541b4b22, // 0.84485, -0.535 0x3feb23cd470013b4, 0xbfe0f426bb2a8e7d, // 0.84812, -0.5298 0x3feb3e4d3ef55712, 0xbfe0c9704d5d898f, // 0.85136, -0.52459 0x3feb5889fe921405, 0xbfe09e907417c5e1, // 0.85456, -0.51936 0x3feb728345196e3e, 0xbfe073879922ffed, // 0.85773, -0.5141 0x3feb8c38d27504e9, 0xbfe0485626ae221a, // 0.86087, -0.50883 0x3feba5aa673590d2, 0xbfe01cfc874c3eb7, // 0.86397, -0.50354 0x3febbed7c49380ea, 0xbfdfe2f64be7120f, // 0.86705, -0.49823 0x3febd7c0ac6f952a, 0xbfdf8ba4dbf89aba, // 0.87009, -0.4929 0x3febf064e15377dd, 0xbfdf3405963fd068, // 0.87309, -0.48755 0x3fec08c426725549, 0xbfdedc1952ef78d5, // 0.87607, -0.48218 0x3fec20de3fa971b0, 0xbfde83e0eaf85113, // 0.87901, -0.4768 0x3fec38b2f180bdb1, 0xbfde2b5d3806f63b, // 0.88192, -0.4714 0x3fec5042012b6907, 0xbfddd28f1481cc58, // 0.8848, -0.46598 0x3fec678b3488739b, 0xbfdd79775b86e389, // 0.88764, -0.46054 0x3fec7e8e52233cf3, 0xbfdd2016e8e9db5b, // 0.89045, -0.45508 0x3fec954b213411f5, 0xbfdcc66e9931c45d, // 0.89322, -0.44961 0x3fecabc169a0b901, 0xbfdc6c7f4997000a, // 0.89597, -0.44412 0x3fecc1f0f3fcfc5c, 0xbfdc1249d8011ee7, // 0.89867, -0.43862 0x3fecd7d9898b32f6, 0xbfdbb7cf2304bd01, // 0.90135, -0.43309 0x3feced7af43cc773, 0xbfdb5d1009e15cc0, // 0.90399, -0.42756 0x3fed02d4feb2bd92, 0xbfdb020d6c7f4009, // 0.9066, -0.422 0x3fed17e7743e35dc, 0xbfdaa6c82b6d3fc9, // 0.90917, -0.41643 0x3fed2cb220e0ef9f, 0xbfda4b4127dea1e4, // 0.91171, -0.41084 0x3fed4134d14dc93a, 0xbfd9ef7943a8ed8a, // 0.91421, -0.40524 0x3fed556f52e93eb1, 0xbfd993716141bdfe, // 0.91668, -0.39962 0x3fed696173c9e68b, 0xbfd9372a63bc93d7, // 0.91911, -0.39399 0x3fed7d0b02b8ecf9, 0xbfd8daa52ec8a4af, // 0.92151, -0.38835 0x3fed906bcf328d46, 0xbfd87de2a6aea963, // 0.92388, -0.38268 0x3feda383a9668988, 0xbfd820e3b04eaac4, // 0.92621, -0.37701 0x3fedb6526238a09b, 0xbfd7c3a9311dcce7, // 0.92851, -0.37132 0x3fedc8d7cb410260, 0xbfd766340f2418f6, // 0.93077, -0.36561 0x3feddb13b6ccc23d, 0xbfd7088530fa459e, // 0.93299, -0.3599 0x3feded05f7de47da, 0xbfd6aa9d7dc77e16, // 0.93518, -0.35416 0x3fedfeae622dbe2b, 0xbfd64c7ddd3f27c6, // 0.93734, -0.34842 0x3fee100cca2980ac, 0xbfd5ee27379ea693, // 0.93946, -0.34266 0x3fee212104f686e5, 0xbfd58f9a75ab1fdd, // 0.94154, -0.33689 0x3fee31eae870ce25, 0xbfd530d880af3c24, // 0.94359, -0.33111 0x3fee426a4b2bc17e, 0xbfd4d1e24278e76a, // 0.94561, -0.32531 0x3fee529f04729ffc, 0xbfd472b8a5571054, // 0.94759, -0.3195 0x3fee6288ec48e112, 0xbfd4135c94176602, // 0.94953, -0.31368 0x3fee7227db6a9744, 0xbfd3b3cefa0414b7, // 0.95144, -0.30785 0x3fee817bab4cd10d, 0xbfd35410c2e18152, // 0.95331, -0.30201 0x3fee9084361df7f3, 0xbfd2f422daec0386, // 0.95514, -0.29615 0x3fee9f4156c62dda, 0xbfd294062ed59f05, // 0.95694, -0.29028 0x3feeadb2e8e7a88e, 0xbfd233bbabc3bb72, // 0.9587, -0.28441 0x3feebbd8c8df0b74, 0xbfd1d3443f4cdb3d, // 0.96043, -0.27852 0x3feec9b2d3c3bf84, 0xbfd172a0d7765177, // 0.96212, -0.27262 0x3feed740e7684963, 0xbfd111d262b1f677, // 0.96378, -0.26671 0x3feee482e25a9dbc, 0xbfd0b0d9cfdbdb90, // 0.96539, -0.26079 0x3feef178a3e473c2, 0xbfd04fb80e37fdae, // 0.96698, -0.25487 0x3feefe220c0b95ec, 0xbfcfdcdc1adfedf8, // 0.96852, -0.24893 0x3fef0a7efb9230d7, 0xbfcf19f97b215f1a, // 0.97003, -0.24298 0x3fef168f53f7205d, 0xbfce56ca1e101a1b, // 0.9715, -0.23702 0x3fef2252f7763ada, 0xbfcd934fe5454311, // 0.97294, -0.23106 0x3fef2dc9c9089a9d, 0xbfcccf8cb312b286, // 0.97434, -0.22508 0x3fef38f3ac64e589, 0xbfcc0b826a7e4f63, // 0.9757, -0.2191 0x3fef43d085ff92dd, 0xbfcb4732ef3d6722, // 0.97703, -0.21311 0x3fef4e603b0b2f2d, 0xbfca82a025b00451, // 0.97832, -0.20711 0x3fef58a2b1789e84, 0xbfc9bdcbf2dc4366, // 0.97957, -0.2011 0x3fef6297cff75cb0, 0xbfc8f8b83c69a60a, // 0.98079, -0.19509 0x3fef6c3f7df5bbb7, 0xbfc83366e89c64c5, // 0.98196, -0.18907 0x3fef7599a3a12077, 0xbfc76dd9de50bf31, // 0.98311, -0.18304 0x3fef7ea629e63d6e, 0xbfc6a81304f64ab2, // 0.98421, -0.177 0x3fef8764fa714ba9, 0xbfc5e214448b3fc6, // 0.98528, -0.17096 0x3fef8fd5ffae41db, 0xbfc51bdf8597c5f2, // 0.98631, -0.16491 0x3fef97f924c9099b, 0xbfc45576b1293e5a, // 0.9873, -0.15886 0x3fef9fce55adb2c8, 0xbfc38edbb0cd8d14, // 0.98826, -0.1528 0x3fefa7557f08a517, 0xbfc2c8106e8e613a, // 0.98918, -0.14673 0x3fefae8e8e46cfbb, 0xbfc20116d4ec7bce, // 0.99006, -0.14066 0x3fefb5797195d741, 0xbfc139f0cedaf576, // 0.9909, -0.13458 0x3fefbc1617e44186, 0xbfc072a047ba831d, // 0.99171, -0.1285 0x3fefc26470e19fd3, 0xbfbf564e56a9730e, // 0.99248, -0.12241 0x3fefc8646cfeb721, 0xbfbdc70ecbae9fc8, // 0.99321, -0.11632 0x3fefce15fd6da67b, 0xbfbc3785c79ec2d5, // 0.99391, -0.11022 0x3fefd37914220b84, 0xbfbaa7b724495c04, // 0.99456, -0.10412 0x3fefd88da3d12526, 0xbfb917a6bc29b42c, // 0.99518, -0.098017 0x3fefdd539ff1f456, 0xbfb787586a5d5b21, // 0.99577, -0.091909 0x3fefe1cafcbd5b09, 0xbfb5f6d00a9aa419, // 0.99631, -0.085797 0x3fefe5f3af2e3940, 0xbfb4661179272096, // 0.99682, -0.079682 0x3fefe9cdad01883a, 0xbfb2d52092ce19f6, // 0.99729, -0.073565 0x3fefed58ecb673c4, 0xbfb1440134d709b2, // 0.99772, -0.067444 0x3feff095658e71ad, 0xbfaf656e79f820e0, // 0.99812, -0.061321 0x3feff3830f8d575c, 0xbfac428d12c0d7e3, // 0.99848, -0.055195 0x3feff621e3796d7e, 0xbfa91f65f10dd814, // 0.9988, -0.049068 0x3feff871dadb81df, 0xbfa5fc00d290cd43, // 0.99908, -0.042938 0x3feffa72effef75d, 0xbfa2d865759455cd, // 0.99932, -0.036807 0x3feffc251df1d3f8, 0xbf9f693731d1cf01, // 0.99953, -0.030675 0x3feffd886084cd0d, 0xbf992155f7a3667e, // 0.9997, -0.024541 0x3feffe9cb44b51a1, 0xbf92d936bbe30efd, // 0.99983, -0.018407 0x3fefff62169b92db, 0xbf8921d1fcdec784, // 0.99992, -0.012272 0x3fefffd8858e8a92, 0xbf7921f0fe670071, // 0.99998,-0.0061359 }; /** @par Example code for Double Precision Floating-point Twiddle factors Generation: @par
for (i = 0; i< N/; i++)
  {
 	twiddleCoef[2*i]   = cos(i * 2*PI/(float)N);
 	twiddleCoef[2*i+1] = sin(i * 2*PI/(float)N);
  } 
@par where N = 2048, PI = 3.14159265358979 @par Cos and Sin values are in interleaved fashion */ const uint64_t twiddleCoefF64_2048[4096] ARM_DSP_TABLE_ATTRIBUTE = { 0x3ff0000000000000, 0x0000000000000000, // 1, 0 0x3feffff621621d02, 0x3f6921f8becca4ba, // 1, 0.003068 0x3fefffd8858e8a92, 0x3f7921f0fe670071, // 0.99998, 0.0061359 0x3fefffa72c978c4f, 0x3f82d96b0e509703, // 0.99996, 0.0092038 0x3fefff62169b92db, 0x3f8921d1fcdec784, // 0.99992, 0.012272 0x3fefff0943c53bd1, 0x3f8f6a296ab997ca, // 0.99988, 0.015339 0x3feffe9cb44b51a1, 0x3f92d936bbe30efd, // 0.99983, 0.018407 0x3feffe1c6870cb77, 0x3f95fd4d21fab226, // 0.99977, 0.021474 0x3feffd886084cd0d, 0x3f992155f7a3667e, // 0.9997, 0.024541 0x3feffce09ce2a679, 0x3f9c454f4ce53b1c, // 0.99962, 0.027608 0x3feffc251df1d3f8, 0x3f9f693731d1cf01, // 0.99953, 0.030675 0x3feffb55e425fdae, 0x3fa14685db42c17e, // 0.99943, 0.033741 0x3feffa72effef75d, 0x3fa2d865759455cd, // 0.99932, 0.036807 0x3feff97c4208c014, 0x3fa46a396ff86179, // 0.9992, 0.039873 0x3feff871dadb81df, 0x3fa5fc00d290cd43, // 0.99908, 0.042938 0x3feff753bb1b9164, 0x3fa78dbaa5874685, // 0.99894, 0.046003 0x3feff621e3796d7e, 0x3fa91f65f10dd814, // 0.9988, 0.049068 0x3feff4dc54b1bed3, 0x3faab101bd5f8317, // 0.99864, 0.052132 0x3feff3830f8d575c, 0x3fac428d12c0d7e3, // 0.99848, 0.055195 0x3feff21614e131ed, 0x3fadd406f9808ec8, // 0.9983, 0.058258 0x3feff095658e71ad, 0x3faf656e79f820e0, // 0.99812, 0.061321 0x3fefef0102826191, 0x3fb07b614e463064, // 0.99793, 0.064383 0x3fefed58ecb673c4, 0x3fb1440134d709b2, // 0.99772, 0.067444 0x3fefeb9d2530410f, 0x3fb20c9674ed444c, // 0.99751, 0.070505 0x3fefe9cdad01883a, 0x3fb2d52092ce19f6, // 0.99729, 0.073565 0x3fefe7ea85482d60, 0x3fb39d9f12c5a299, // 0.99706, 0.076624 0x3fefe5f3af2e3940, 0x3fb4661179272096, // 0.99682, 0.079682 0x3fefe3e92be9d886, 0x3fb52e774a4d4d0a, // 0.99657, 0.08274 0x3fefe1cafcbd5b09, 0x3fb5f6d00a9aa419, // 0.99631, 0.085797 0x3fefdf9922f73307, 0x3fb6bf1b3e79b129, // 0.99604, 0.088854 0x3fefdd539ff1f456, 0x3fb787586a5d5b21, // 0.99577, 0.091909 0x3fefdafa7514538c, 0x3fb84f8712c130a0, // 0.99548, 0.094963 0x3fefd88da3d12526, 0x3fb917a6bc29b42c, // 0.99518, 0.098017 0x3fefd60d2da75c9e, 0x3fb9dfb6eb24a85c, // 0.99488, 0.10107 0x3fefd37914220b84, 0x3fbaa7b724495c04, // 0.99456, 0.10412 0x3fefd0d158d86087, 0x3fbb6fa6ec38f64c, // 0.99424, 0.10717 0x3fefce15fd6da67b, 0x3fbc3785c79ec2d5, // 0.99391, 0.11022 0x3fefcb4703914354, 0x3fbcff533b307dc1, // 0.99356, 0.11327 0x3fefc8646cfeb721, 0x3fbdc70ecbae9fc8, // 0.99321, 0.11632 0x3fefc56e3b7d9af6, 0x3fbe8eb7fde4aa3e, // 0.99285, 0.11937 0x3fefc26470e19fd3, 0x3fbf564e56a9730e, // 0.99248, 0.12241 0x3fefbf470f0a8d88, 0x3fc00ee8ad6fb85b, // 0.9921, 0.12545 0x3fefbc1617e44186, 0x3fc072a047ba831d, // 0.99171, 0.1285 0x3fefb8d18d66adb7, 0x3fc0d64dbcb26786, // 0.99131, 0.13154 0x3fefb5797195d741, 0x3fc139f0cedaf576, // 0.9909, 0.13458 0x3fefb20dc681d54d, 0x3fc19d8940be24e7, // 0.99049, 0.13762 0x3fefae8e8e46cfbb, 0x3fc20116d4ec7bce, // 0.99006, 0.14066 0x3fefaafbcb0cfddc, 0x3fc264994dfd340a, // 0.98962, 0.1437 0x3fefa7557f08a517, 0x3fc2c8106e8e613a, // 0.98918, 0.14673 0x3fefa39bac7a1791, 0x3fc32b7bf94516a7, // 0.98872, 0.14976 0x3fef9fce55adb2c8, 0x3fc38edbb0cd8d14, // 0.98826, 0.1528 0x3fef9bed7cfbde29, 0x3fc3f22f57db4893, // 0.98778, 0.15583 0x3fef97f924c9099b, 0x3fc45576b1293e5a, // 0.9873, 0.15886 0x3fef93f14f85ac08, 0x3fc4b8b17f79fa88, // 0.98681, 0.16189 0x3fef8fd5ffae41db, 0x3fc51bdf8597c5f2, // 0.98631, 0.16491 0x3fef8ba737cb4b78, 0x3fc57f008654cbde, // 0.9858, 0.16794 0x3fef8764fa714ba9, 0x3fc5e214448b3fc6, // 0.98528, 0.17096 0x3fef830f4a40c60c, 0x3fc6451a831d830d, // 0.98475, 0.17398 0x3fef7ea629e63d6e, 0x3fc6a81304f64ab2, // 0.98421, 0.177 0x3fef7a299c1a322a, 0x3fc70afd8d08c4ff, // 0.98366, 0.18002 0x3fef7599a3a12077, 0x3fc76dd9de50bf31, // 0.98311, 0.18304 0x3fef70f6434b7eb7, 0x3fc7d0a7bbd2cb1b, // 0.98254, 0.18606 0x3fef6c3f7df5bbb7, 0x3fc83366e89c64c5, // 0.98196, 0.18907 0x3fef677556883cee, 0x3fc8961727c41804, // 0.98138, 0.19208 0x3fef6297cff75cb0, 0x3fc8f8b83c69a60a, // 0.98079, 0.19509 0x3fef5da6ed43685d, 0x3fc95b49e9b62af9, // 0.98018, 0.1981 0x3fef58a2b1789e84, 0x3fc9bdcbf2dc4366, // 0.97957, 0.2011 0x3fef538b1faf2d07, 0x3fca203e1b1831da, // 0.97895, 0.20411 0x3fef4e603b0b2f2d, 0x3fca82a025b00451, // 0.97832, 0.20711 0x3fef492206bcabb4, 0x3fcae4f1d5f3b9ab, // 0.97768, 0.21011 0x3fef43d085ff92dd, 0x3fcb4732ef3d6722, // 0.97703, 0.21311 0x3fef3e6bbc1bbc65, 0x3fcba96334f15dad, // 0.97637, 0.21611 0x3fef38f3ac64e589, 0x3fcc0b826a7e4f63, // 0.9757, 0.2191 0x3fef33685a3aaef0, 0x3fcc6d90535d74dc, // 0.97503, 0.22209 0x3fef2dc9c9089a9d, 0x3fcccf8cb312b286, // 0.97434, 0.22508 0x3fef2817fc4609ce, 0x3fcd31774d2cbdee, // 0.97364, 0.22807 0x3fef2252f7763ada, 0x3fcd934fe5454311, // 0.97294, 0.23106 0x3fef1c7abe284708, 0x3fcdf5163f01099a, // 0.97223, 0.23404 0x3fef168f53f7205d, 0x3fce56ca1e101a1b, // 0.9715, 0.23702 0x3fef1090bc898f5f, 0x3fceb86b462de348, // 0.97077, 0.24 0x3fef0a7efb9230d7, 0x3fcf19f97b215f1a, // 0.97003, 0.24298 0x3fef045a14cf738c, 0x3fcf7b7480bd3801, // 0.96928, 0.24596 0x3feefe220c0b95ec, 0x3fcfdcdc1adfedf8, // 0.96852, 0.24893 0x3feef7d6e51ca3c0, 0x3fd01f1806b9fdd2, // 0.96775, 0.2519 0x3feef178a3e473c2, 0x3fd04fb80e37fdae, // 0.96698, 0.25487 0x3feeeb074c50a544, 0x3fd0804e05eb661e, // 0.96619, 0.25783 0x3feee482e25a9dbc, 0x3fd0b0d9cfdbdb90, // 0.96539, 0.26079 0x3feeddeb6a078651, 0x3fd0e15b4e1749cd, // 0.96459, 0.26375 0x3feed740e7684963, 0x3fd111d262b1f677, // 0.96378, 0.26671 0x3feed0835e999009, 0x3fd1423eefc69378, // 0.96295, 0.26967 0x3feec9b2d3c3bf84, 0x3fd172a0d7765177, // 0.96212, 0.27262 0x3feec2cf4b1af6b2, 0x3fd1a2f7fbe8f243, // 0.96128, 0.27557 0x3feebbd8c8df0b74, 0x3fd1d3443f4cdb3d, // 0.96043, 0.27852 0x3feeb4cf515b8811, 0x3fd2038583d727bd, // 0.95957, 0.28146 0x3feeadb2e8e7a88e, 0x3fd233bbabc3bb72, // 0.9587, 0.28441 0x3feea68393e65800, 0x3fd263e6995554ba, // 0.95783, 0.28735 0x3fee9f4156c62dda, 0x3fd294062ed59f05, // 0.95694, 0.29028 0x3fee97ec36016b30, 0x3fd2c41a4e954520, // 0.95605, 0.29322 0x3fee9084361df7f3, 0x3fd2f422daec0386, // 0.95514, 0.29615 0x3fee89095bad6025, 0x3fd3241fb638baaf, // 0.95423, 0.29908 0x3fee817bab4cd10d, 0x3fd35410c2e18152, // 0.95331, 0.30201 0x3fee79db29a5165a, 0x3fd383f5e353b6aa, // 0.95238, 0.30493 0x3fee7227db6a9744, 0x3fd3b3cefa0414b7, // 0.95144, 0.30785 0x3fee6a61c55d53a7, 0x3fd3e39be96ec271, // 0.95049, 0.31077 0x3fee6288ec48e112, 0x3fd4135c94176602, // 0.94953, 0.31368 0x3fee5a9d550467d3, 0x3fd44310dc8936f0, // 0.94856, 0.31659 0x3fee529f04729ffc, 0x3fd472b8a5571054, // 0.94759, 0.3195 0x3fee4a8dff81ce5e, 0x3fd4a253d11b82f3, // 0.9466, 0.32241 0x3fee426a4b2bc17e, 0x3fd4d1e24278e76a, // 0.94561, 0.32531 0x3fee3a33ec75ce85, 0x3fd50163dc197047, // 0.9446, 0.32821 0x3fee31eae870ce25, 0x3fd530d880af3c24, // 0.94359, 0.33111 0x3fee298f4439197a, 0x3fd5604012f467b4, // 0.94257, 0.334 0x3fee212104f686e5, 0x3fd58f9a75ab1fdd, // 0.94154, 0.33689 0x3fee18a02fdc66d9, 0x3fd5bee78b9db3b6, // 0.94051, 0.33978 0x3fee100cca2980ac, 0x3fd5ee27379ea693, // 0.93946, 0.34266 0x3fee0766d9280f54, 0x3fd61d595c88c203, // 0.9384, 0.34554 0x3fedfeae622dbe2b, 0x3fd64c7ddd3f27c6, // 0.93734, 0.34842 0x3fedf5e36a9ba59c, 0x3fd67b949cad63ca, // 0.93627, 0.35129 0x3feded05f7de47da, 0x3fd6aa9d7dc77e16, // 0.93518, 0.35416 0x3fede4160f6d8d81, 0x3fd6d998638a0cb5, // 0.93409, 0.35703 0x3feddb13b6ccc23d, 0x3fd7088530fa459e, // 0.93299, 0.3599 0x3fedd1fef38a915a, 0x3fd73763c9261092, // 0.93188, 0.36276 0x3fedc8d7cb410260, 0x3fd766340f2418f6, // 0.93077, 0.36561 0x3fedbf9e4395759a, 0x3fd794f5e613dfae, // 0.92964, 0.36847 0x3fedb6526238a09b, 0x3fd7c3a9311dcce7, // 0.92851, 0.37132 0x3fedacf42ce68ab9, 0x3fd7f24dd37341e3, // 0.92736, 0.37416 0x3feda383a9668988, 0x3fd820e3b04eaac4, // 0.92621, 0.37701 0x3fed9a00dd8b3d46, 0x3fd84f6aaaf3903f, // 0.92505, 0.37985 0x3fed906bcf328d46, 0x3fd87de2a6aea963, // 0.92388, 0.38268 0x3fed86c48445a450, 0x3fd8ac4b86d5ed44, // 0.9227, 0.38552 0x3fed7d0b02b8ecf9, 0x3fd8daa52ec8a4af, // 0.92151, 0.38835 0x3fed733f508c0dff, 0x3fd908ef81ef7bd1, // 0.92032, 0.39117 0x3fed696173c9e68b, 0x3fd9372a63bc93d7, // 0.91911, 0.39399 0x3fed5f7172888a7f, 0x3fd96555b7ab948f, // 0.9179, 0.39681 0x3fed556f52e93eb1, 0x3fd993716141bdfe, // 0.91668, 0.39962 0x3fed4b5b1b187524, 0x3fd9c17d440df9f2, // 0.91545, 0.40243 0x3fed4134d14dc93a, 0x3fd9ef7943a8ed8a, // 0.91421, 0.40524 0x3fed36fc7bcbfbdc, 0x3fda1d6543b50ac0, // 0.91296, 0.40804 0x3fed2cb220e0ef9f, 0x3fda4b4127dea1e4, // 0.91171, 0.41084 0x3fed2255c6e5a4e1, 0x3fda790cd3dbf31a, // 0.91044, 0.41364 0x3fed17e7743e35dc, 0x3fdaa6c82b6d3fc9, // 0.90917, 0.41643 0x3fed0d672f59d2b9, 0x3fdad473125cdc08, // 0.90789, 0.41922 0x3fed02d4feb2bd92, 0x3fdb020d6c7f4009, // 0.9066, 0.422 0x3fecf830e8ce467b, 0x3fdb2f971db31972, // 0.9053, 0.42478 0x3feced7af43cc773, 0x3fdb5d1009e15cc0, // 0.90399, 0.42756 0x3fece2b32799a060, 0x3fdb8a7814fd5693, // 0.90267, 0.43033 0x3fecd7d9898b32f6, 0x3fdbb7cf2304bd01, // 0.90135, 0.43309 0x3fecccee20c2de9f, 0x3fdbe51517ffc0d9, // 0.90002, 0.43586 0x3fecc1f0f3fcfc5c, 0x3fdc1249d8011ee7, // 0.89867, 0.43862 0x3fecb6e20a00da99, 0x3fdc3f6d47263129, // 0.89732, 0.44137 0x3fecabc169a0b901, 0x3fdc6c7f4997000a, // 0.89597, 0.44412 0x3feca08f19b9c449, 0x3fdc997fc3865388, // 0.8946, 0.44687 0x3fec954b213411f5, 0x3fdcc66e9931c45d, // 0.89322, 0.44961 0x3fec89f587029c13, 0x3fdcf34baee1cd21, // 0.89184, 0.45235 0x3fec7e8e52233cf3, 0x3fdd2016e8e9db5b, // 0.89045, 0.45508 0x3fec7315899eaad7, 0x3fdd4cd02ba8609c, // 0.88905, 0.45781 0x3fec678b3488739b, 0x3fdd79775b86e389, // 0.88764, 0.46054 0x3fec5bef59fef85a, 0x3fdda60c5cfa10d8, // 0.88622, 0.46326 0x3fec5042012b6907, 0x3fddd28f1481cc58, // 0.8848, 0.46598 0x3fec44833141c004, 0x3fddfeff66a941de, // 0.88336, 0.46869 0x3fec38b2f180bdb1, 0x3fde2b5d3806f63b, // 0.88192, 0.4714 0x3fec2cd14931e3f1, 0x3fde57a86d3cd824, // 0.88047, 0.4741 0x3fec20de3fa971b0, 0x3fde83e0eaf85113, // 0.87901, 0.4768 0x3fec14d9dc465e58, 0x3fdeb00695f25620, // 0.87755, 0.47949 0x3fec08c426725549, 0x3fdedc1952ef78d5, // 0.87607, 0.48218 0x3febfc9d25a1b147, 0x3fdf081906bff7fd, // 0.87459, 0.48487 0x3febf064e15377dd, 0x3fdf3405963fd068, // 0.87309, 0.48755 0x3febe41b611154c1, 0x3fdf5fdee656cda3, // 0.8716, 0.49023 0x3febd7c0ac6f952a, 0x3fdf8ba4dbf89aba, // 0.87009, 0.4929 0x3febcb54cb0d2327, 0x3fdfb7575c24d2de, // 0.86857, 0.49557 0x3febbed7c49380ea, 0x3fdfe2f64be7120f, // 0.86705, 0.49823 0x3febb249a0b6c40d, 0x3fe00740c82b82e0, // 0.86551, 0.50089 0x3feba5aa673590d2, 0x3fe01cfc874c3eb7, // 0.86397, 0.50354 0x3feb98fa1fd9155e, 0x3fe032ae55edbd95, // 0.86242, 0.50619 0x3feb8c38d27504e9, 0x3fe0485626ae221a, // 0.86087, 0.50883 0x3feb7f6686e792ea, 0x3fe05df3ec31b8b6, // 0.8593, 0.51147 0x3feb728345196e3e, 0x3fe073879922ffed, // 0.85773, 0.5141 0x3feb658f14fdbc47, 0x3fe089112032b08c, // 0.85615, 0.51673 0x3feb5889fe921405, 0x3fe09e907417c5e1, // 0.85456, 0.51936 0x3feb4b7409de7925, 0x3fe0b405878f85ec, // 0.85296, 0.52198 0x3feb3e4d3ef55712, 0x3fe0c9704d5d898f, // 0.85136, 0.52459 0x3feb3115a5f37bf4, 0x3fe0ded0b84bc4b5, // 0.84974, 0.5272 0x3feb23cd470013b4, 0x3fe0f426bb2a8e7d, // 0.84812, 0.5298 0x3feb16742a4ca2f5, 0x3fe1097248d0a956, // 0.84649, 0.5324 0x3feb090a58150200, 0x3fe11eb3541b4b22, // 0.84485, 0.535 0x3feafb8fd89f57b6, 0x3fe133e9cfee254e, // 0.84321, 0.53759 0x3feaee04b43c1474, 0x3fe14915af336ceb, // 0.84155, 0.54017 0x3feae068f345ecef, 0x3fe15e36e4dbe2bc, // 0.83989, 0.54275 0x3fead2bc9e21d511, 0x3fe1734d63dedb49, // 0.83822, 0.54532 0x3feac4ffbd3efac8, 0x3fe188591f3a46e5, // 0.83655, 0.54789 0x3feab7325916c0d4, 0x3fe19d5a09f2b9b8, // 0.83486, 0.55046 0x3feaa9547a2cb98e, 0x3fe1b250171373be, // 0.83317, 0.55302 0x3fea9b66290ea1a3, 0x3fe1c73b39ae68c8, // 0.83147, 0.55557 0x3fea8d676e545ad2, 0x3fe1dc1b64dc4872, // 0.82976, 0.55812 0x3fea7f58529fe69d, 0x3fe1f0f08bbc861b, // 0.82805, 0.56066 0x3fea7138de9d60f5, 0x3fe205baa17560d6, // 0.82632, 0.5632 0x3fea63091b02fae2, 0x3fe21a799933eb58, // 0.82459, 0.56573 0x3fea54c91090f524, 0x3fe22f2d662c13e1, // 0.82285, 0.56826 0x3fea4678c8119ac8, 0x3fe243d5fb98ac1f, // 0.8211, 0.57078 0x3fea38184a593bc6, 0x3fe258734cbb7110, // 0.81935, 0.5733 0x3fea29a7a0462782, 0x3fe26d054cdd12df, // 0.81758, 0.57581 0x3fea1b26d2c0a75e, 0x3fe2818bef4d3cba, // 0.81581, 0.57831 0x3fea0c95eabaf937, 0x3fe2960727629ca8, // 0.81404, 0.58081 0x3fe9fdf4f13149de, 0x3fe2aa76e87aeb58, // 0.81225, 0.58331 0x3fe9ef43ef29af94, 0x3fe2bedb25faf3ea, // 0.81046, 0.5858 0x3fe9e082edb42472, 0x3fe2d333d34e9bb7, // 0.80866, 0.58828 0x3fe9d1b1f5ea80d6, 0x3fe2e780e3e8ea16, // 0.80685, 0.59076 0x3fe9c2d110f075c3, 0x3fe2fbc24b441015, // 0.80503, 0.59323 0x3fe9b3e047f38741, 0x3fe30ff7fce17035, // 0.80321, 0.5957 0x3fe9a4dfa42b06b2, 0x3fe32421ec49a620, // 0.80138, 0.59816 0x3fe995cf2ed80d22, 0x3fe338400d0c8e57, // 0.79954, 0.60062 0x3fe986aef1457594, 0x3fe34c5252c14de1, // 0.79769, 0.60307 0x3fe9777ef4c7d742, 0x3fe36058b10659f3, // 0.79584, 0.60551 0x3fe9683f42bd7fe1, 0x3fe374531b817f8d, // 0.79398, 0.60795 0x3fe958efe48e6dd7, 0x3fe3884185dfeb22, // 0.79211, 0.61038 0x3fe94990e3ac4a6c, 0x3fe39c23e3d63029, // 0.79023, 0.61281 0x3fe93a22499263fc, 0x3fe3affa292050b9, // 0.78835, 0.61523 0x3fe92aa41fc5a815, 0x3fe3c3c44981c517, // 0.78646, 0.61765 0x3fe91b166fd49da2, 0x3fe3d78238c58343, // 0.78456, 0.62006 0x3fe90b7943575efe, 0x3fe3eb33eabe0680, // 0.78265, 0.62246 0x3fe8fbcca3ef940d, 0x3fe3fed9534556d4, // 0.78074, 0.62486 0x3fe8ec109b486c49, 0x3fe41272663d108c, // 0.77882, 0.62725 0x3fe8dc45331698cc, 0x3fe425ff178e6bb1, // 0.77689, 0.62964 0x3fe8cc6a75184655, 0x3fe4397f5b2a4380, // 0.77495, 0.63202 0x3fe8bc806b151741, 0x3fe44cf325091dd6, // 0.77301, 0.63439 0x3fe8ac871ede1d88, 0x3fe4605a692b32a2, // 0.77106, 0.63676 0x3fe89c7e9a4dd4ab, 0x3fe473b51b987347, // 0.7691, 0.63912 0x3fe88c66e7481ba1, 0x3fe48703306091fe, // 0.76714, 0.64148 0x3fe87c400fba2ebf, 0x3fe49a449b9b0938, // 0.76517, 0.64383 0x3fe86c0a1d9aa195, 0x3fe4ad79516722f0, // 0.76319, 0.64618 0x3fe85bc51ae958cc, 0x3fe4c0a145ec0004, // 0.7612, 0.64851 0x3fe84b7111af83f9, 0x3fe4d3bc6d589f80, // 0.75921, 0.65085 0x3fe83b0e0bff976e, 0x3fe4e6cabbe3e5e9, // 0.75721, 0.65317 0x3fe82a9c13f545ff, 0x3fe4f9cc25cca486, // 0.7552, 0.65549 0x3fe81a1b33b57acc, 0x3fe50cc09f59a09b, // 0.75319, 0.65781 0x3fe8098b756e52fa, 0x3fe51fa81cd99aa6, // 0.75117, 0.66011 0x3fe7f8ece3571771, 0x3fe5328292a35596, // 0.74914, 0.66242 0x3fe7e83f87b03686, 0x3fe5454ff5159dfb, // 0.7471, 0.66471 0x3fe7d7836cc33db2, 0x3fe5581038975137, // 0.74506, 0.667 0x3fe7c6b89ce2d333, 0x3fe56ac35197649e, // 0.74301, 0.66928 0x3fe7b5df226aafb0, 0x3fe57d69348cec9f, // 0.74095, 0.67156 0x3fe7a4f707bf97d2, 0x3fe59001d5f723df, // 0.73889, 0.67383 0x3fe79400574f55e4, 0x3fe5a28d2a5d7250, // 0.73682, 0.67609 0x3fe782fb1b90b35b, 0x3fe5b50b264f7448, // 0.73474, 0.67835 0x3fe771e75f037261, 0x3fe5c77bbe65018c, // 0.73265, 0.6806 0x3fe760c52c304764, 0x3fe5d9dee73e345c, // 0.73056, 0.68285 0x3fe74f948da8d28d, 0x3fe5ec3495837074, // 0.72846, 0.68508 0x3fe73e558e079942, 0x3fe5fe7cbde56a0f, // 0.72636, 0.68732 0x3fe72d0837efff97, 0x3fe610b7551d2cde, // 0.72425, 0.68954 0x3fe71bac960e41bf, 0x3fe622e44fec22ff, // 0.72213, 0.69176 0x3fe70a42b3176d7a, 0x3fe63503a31c1be8, // 0.72, 0.69397 0x3fe6f8ca99c95b75, 0x3fe64715437f535b, // 0.71787, 0.69618 0x3fe6e74454eaa8ae, 0x3fe6591925f0783e, // 0.71573, 0.69838 0x3fe6d5afef4aafcc, 0x3fe66b0f3f52b386, // 0.71358, 0.70057 0x3fe6c40d73c18275, 0x3fe67cf78491af10, // 0.71143, 0.70275 0x3fe6b25ced2fe29c, 0x3fe68ed1eaa19c71, // 0.70927, 0.70493 0x3fe6a09e667f3bcc, 0x3fe6a09e667f3bcc, // 0.70711, 0.70711 0x3fe68ed1eaa19c71, 0x3fe6b25ced2fe29c, // 0.70493, 0.70927 0x3fe67cf78491af10, 0x3fe6c40d73c18275, // 0.70275, 0.71143 0x3fe66b0f3f52b386, 0x3fe6d5afef4aafcc, // 0.70057, 0.71358 0x3fe6591925f0783e, 0x3fe6e74454eaa8ae, // 0.69838, 0.71573 0x3fe64715437f535b, 0x3fe6f8ca99c95b75, // 0.69618, 0.71787 0x3fe63503a31c1be8, 0x3fe70a42b3176d7a, // 0.69397, 0.72 0x3fe622e44fec22ff, 0x3fe71bac960e41bf, // 0.69176, 0.72213 0x3fe610b7551d2cde, 0x3fe72d0837efff97, // 0.68954, 0.72425 0x3fe5fe7cbde56a0f, 0x3fe73e558e079942, // 0.68732, 0.72636 0x3fe5ec3495837074, 0x3fe74f948da8d28d, // 0.68508, 0.72846 0x3fe5d9dee73e345c, 0x3fe760c52c304764, // 0.68285, 0.73056 0x3fe5c77bbe65018c, 0x3fe771e75f037261, // 0.6806, 0.73265 0x3fe5b50b264f7448, 0x3fe782fb1b90b35b, // 0.67835, 0.73474 0x3fe5a28d2a5d7250, 0x3fe79400574f55e4, // 0.67609, 0.73682 0x3fe59001d5f723df, 0x3fe7a4f707bf97d2, // 0.67383, 0.73889 0x3fe57d69348cec9f, 0x3fe7b5df226aafb0, // 0.67156, 0.74095 0x3fe56ac35197649e, 0x3fe7c6b89ce2d333, // 0.66928, 0.74301 0x3fe5581038975137, 0x3fe7d7836cc33db2, // 0.667, 0.74506 0x3fe5454ff5159dfb, 0x3fe7e83f87b03686, // 0.66471, 0.7471 0x3fe5328292a35596, 0x3fe7f8ece3571771, // 0.66242, 0.74914 0x3fe51fa81cd99aa6, 0x3fe8098b756e52fa, // 0.66011, 0.75117 0x3fe50cc09f59a09b, 0x3fe81a1b33b57acc, // 0.65781, 0.75319 0x3fe4f9cc25cca486, 0x3fe82a9c13f545ff, // 0.65549, 0.7552 0x3fe4e6cabbe3e5e9, 0x3fe83b0e0bff976e, // 0.65317, 0.75721 0x3fe4d3bc6d589f80, 0x3fe84b7111af83f9, // 0.65085, 0.75921 0x3fe4c0a145ec0004, 0x3fe85bc51ae958cc, // 0.64851, 0.7612 0x3fe4ad79516722f0, 0x3fe86c0a1d9aa195, // 0.64618, 0.76319 0x3fe49a449b9b0938, 0x3fe87c400fba2ebf, // 0.64383, 0.76517 0x3fe48703306091fe, 0x3fe88c66e7481ba1, // 0.64148, 0.76714 0x3fe473b51b987347, 0x3fe89c7e9a4dd4ab, // 0.63912, 0.7691 0x3fe4605a692b32a2, 0x3fe8ac871ede1d88, // 0.63676, 0.77106 0x3fe44cf325091dd6, 0x3fe8bc806b151741, // 0.63439, 0.77301 0x3fe4397f5b2a4380, 0x3fe8cc6a75184655, // 0.63202, 0.77495 0x3fe425ff178e6bb1, 0x3fe8dc45331698cc, // 0.62964, 0.77689 0x3fe41272663d108c, 0x3fe8ec109b486c49, // 0.62725, 0.77882 0x3fe3fed9534556d4, 0x3fe8fbcca3ef940d, // 0.62486, 0.78074 0x3fe3eb33eabe0680, 0x3fe90b7943575efe, // 0.62246, 0.78265 0x3fe3d78238c58343, 0x3fe91b166fd49da2, // 0.62006, 0.78456 0x3fe3c3c44981c517, 0x3fe92aa41fc5a815, // 0.61765, 0.78646 0x3fe3affa292050b9, 0x3fe93a22499263fc, // 0.61523, 0.78835 0x3fe39c23e3d63029, 0x3fe94990e3ac4a6c, // 0.61281, 0.79023 0x3fe3884185dfeb22, 0x3fe958efe48e6dd7, // 0.61038, 0.79211 0x3fe374531b817f8d, 0x3fe9683f42bd7fe1, // 0.60795, 0.79398 0x3fe36058b10659f3, 0x3fe9777ef4c7d742, // 0.60551, 0.79584 0x3fe34c5252c14de1, 0x3fe986aef1457594, // 0.60307, 0.79769 0x3fe338400d0c8e57, 0x3fe995cf2ed80d22, // 0.60062, 0.79954 0x3fe32421ec49a620, 0x3fe9a4dfa42b06b2, // 0.59816, 0.80138 0x3fe30ff7fce17035, 0x3fe9b3e047f38741, // 0.5957, 0.80321 0x3fe2fbc24b441015, 0x3fe9c2d110f075c3, // 0.59323, 0.80503 0x3fe2e780e3e8ea16, 0x3fe9d1b1f5ea80d6, // 0.59076, 0.80685 0x3fe2d333d34e9bb7, 0x3fe9e082edb42472, // 0.58828, 0.80866 0x3fe2bedb25faf3ea, 0x3fe9ef43ef29af94, // 0.5858, 0.81046 0x3fe2aa76e87aeb58, 0x3fe9fdf4f13149de, // 0.58331, 0.81225 0x3fe2960727629ca8, 0x3fea0c95eabaf937, // 0.58081, 0.81404 0x3fe2818bef4d3cba, 0x3fea1b26d2c0a75e, // 0.57831, 0.81581 0x3fe26d054cdd12df, 0x3fea29a7a0462782, // 0.57581, 0.81758 0x3fe258734cbb7110, 0x3fea38184a593bc6, // 0.5733, 0.81935 0x3fe243d5fb98ac1f, 0x3fea4678c8119ac8, // 0.57078, 0.8211 0x3fe22f2d662c13e1, 0x3fea54c91090f524, // 0.56826, 0.82285 0x3fe21a799933eb58, 0x3fea63091b02fae2, // 0.56573, 0.82459 0x3fe205baa17560d6, 0x3fea7138de9d60f5, // 0.5632, 0.82632 0x3fe1f0f08bbc861b, 0x3fea7f58529fe69d, // 0.56066, 0.82805 0x3fe1dc1b64dc4872, 0x3fea8d676e545ad2, // 0.55812, 0.82976 0x3fe1c73b39ae68c8, 0x3fea9b66290ea1a3, // 0.55557, 0.83147 0x3fe1b250171373be, 0x3feaa9547a2cb98e, // 0.55302, 0.83317 0x3fe19d5a09f2b9b8, 0x3feab7325916c0d4, // 0.55046, 0.83486 0x3fe188591f3a46e5, 0x3feac4ffbd3efac8, // 0.54789, 0.83655 0x3fe1734d63dedb49, 0x3fead2bc9e21d511, // 0.54532, 0.83822 0x3fe15e36e4dbe2bc, 0x3feae068f345ecef, // 0.54275, 0.83989 0x3fe14915af336ceb, 0x3feaee04b43c1474, // 0.54017, 0.84155 0x3fe133e9cfee254e, 0x3feafb8fd89f57b6, // 0.53759, 0.84321 0x3fe11eb3541b4b22, 0x3feb090a58150200, // 0.535, 0.84485 0x3fe1097248d0a956, 0x3feb16742a4ca2f5, // 0.5324, 0.84649 0x3fe0f426bb2a8e7d, 0x3feb23cd470013b4, // 0.5298, 0.84812 0x3fe0ded0b84bc4b5, 0x3feb3115a5f37bf4, // 0.5272, 0.84974 0x3fe0c9704d5d898f, 0x3feb3e4d3ef55712, // 0.52459, 0.85136 0x3fe0b405878f85ec, 0x3feb4b7409de7925, // 0.52198, 0.85296 0x3fe09e907417c5e1, 0x3feb5889fe921405, // 0.51936, 0.85456 0x3fe089112032b08c, 0x3feb658f14fdbc47, // 0.51673, 0.85615 0x3fe073879922ffed, 0x3feb728345196e3e, // 0.5141, 0.85773 0x3fe05df3ec31b8b6, 0x3feb7f6686e792ea, // 0.51147, 0.8593 0x3fe0485626ae221a, 0x3feb8c38d27504e9, // 0.50883, 0.86087 0x3fe032ae55edbd95, 0x3feb98fa1fd9155e, // 0.50619, 0.86242 0x3fe01cfc874c3eb7, 0x3feba5aa673590d2, // 0.50354, 0.86397 0x3fe00740c82b82e0, 0x3febb249a0b6c40d, // 0.50089, 0.86551 0x3fdfe2f64be7120f, 0x3febbed7c49380ea, // 0.49823, 0.86705 0x3fdfb7575c24d2de, 0x3febcb54cb0d2327, // 0.49557, 0.86857 0x3fdf8ba4dbf89aba, 0x3febd7c0ac6f952a, // 0.4929, 0.87009 0x3fdf5fdee656cda3, 0x3febe41b611154c1, // 0.49023, 0.8716 0x3fdf3405963fd068, 0x3febf064e15377dd, // 0.48755, 0.87309 0x3fdf081906bff7fd, 0x3febfc9d25a1b147, // 0.48487, 0.87459 0x3fdedc1952ef78d5, 0x3fec08c426725549, // 0.48218, 0.87607 0x3fdeb00695f25620, 0x3fec14d9dc465e58, // 0.47949, 0.87755 0x3fde83e0eaf85113, 0x3fec20de3fa971b0, // 0.4768, 0.87901 0x3fde57a86d3cd824, 0x3fec2cd14931e3f1, // 0.4741, 0.88047 0x3fde2b5d3806f63b, 0x3fec38b2f180bdb1, // 0.4714, 0.88192 0x3fddfeff66a941de, 0x3fec44833141c004, // 0.46869, 0.88336 0x3fddd28f1481cc58, 0x3fec5042012b6907, // 0.46598, 0.8848 0x3fdda60c5cfa10d8, 0x3fec5bef59fef85a, // 0.46326, 0.88622 0x3fdd79775b86e389, 0x3fec678b3488739b, // 0.46054, 0.88764 0x3fdd4cd02ba8609c, 0x3fec7315899eaad7, // 0.45781, 0.88905 0x3fdd2016e8e9db5b, 0x3fec7e8e52233cf3, // 0.45508, 0.89045 0x3fdcf34baee1cd21, 0x3fec89f587029c13, // 0.45235, 0.89184 0x3fdcc66e9931c45d, 0x3fec954b213411f5, // 0.44961, 0.89322 0x3fdc997fc3865388, 0x3feca08f19b9c449, // 0.44687, 0.8946 0x3fdc6c7f4997000a, 0x3fecabc169a0b901, // 0.44412, 0.89597 0x3fdc3f6d47263129, 0x3fecb6e20a00da99, // 0.44137, 0.89732 0x3fdc1249d8011ee7, 0x3fecc1f0f3fcfc5c, // 0.43862, 0.89867 0x3fdbe51517ffc0d9, 0x3fecccee20c2de9f, // 0.43586, 0.90002 0x3fdbb7cf2304bd01, 0x3fecd7d9898b32f6, // 0.43309, 0.90135 0x3fdb8a7814fd5693, 0x3fece2b32799a060, // 0.43033, 0.90267 0x3fdb5d1009e15cc0, 0x3feced7af43cc773, // 0.42756, 0.90399 0x3fdb2f971db31972, 0x3fecf830e8ce467b, // 0.42478, 0.9053 0x3fdb020d6c7f4009, 0x3fed02d4feb2bd92, // 0.422, 0.9066 0x3fdad473125cdc08, 0x3fed0d672f59d2b9, // 0.41922, 0.90789 0x3fdaa6c82b6d3fc9, 0x3fed17e7743e35dc, // 0.41643, 0.90917 0x3fda790cd3dbf31a, 0x3fed2255c6e5a4e1, // 0.41364, 0.91044 0x3fda4b4127dea1e4, 0x3fed2cb220e0ef9f, // 0.41084, 0.91171 0x3fda1d6543b50ac0, 0x3fed36fc7bcbfbdc, // 0.40804, 0.91296 0x3fd9ef7943a8ed8a, 0x3fed4134d14dc93a, // 0.40524, 0.91421 0x3fd9c17d440df9f2, 0x3fed4b5b1b187524, // 0.40243, 0.91545 0x3fd993716141bdfe, 0x3fed556f52e93eb1, // 0.39962, 0.91668 0x3fd96555b7ab948f, 0x3fed5f7172888a7f, // 0.39681, 0.9179 0x3fd9372a63bc93d7, 0x3fed696173c9e68b, // 0.39399, 0.91911 0x3fd908ef81ef7bd1, 0x3fed733f508c0dff, // 0.39117, 0.92032 0x3fd8daa52ec8a4af, 0x3fed7d0b02b8ecf9, // 0.38835, 0.92151 0x3fd8ac4b86d5ed44, 0x3fed86c48445a450, // 0.38552, 0.9227 0x3fd87de2a6aea963, 0x3fed906bcf328d46, // 0.38268, 0.92388 0x3fd84f6aaaf3903f, 0x3fed9a00dd8b3d46, // 0.37985, 0.92505 0x3fd820e3b04eaac4, 0x3feda383a9668988, // 0.37701, 0.92621 0x3fd7f24dd37341e3, 0x3fedacf42ce68ab9, // 0.37416, 0.92736 0x3fd7c3a9311dcce7, 0x3fedb6526238a09b, // 0.37132, 0.92851 0x3fd794f5e613dfae, 0x3fedbf9e4395759a, // 0.36847, 0.92964 0x3fd766340f2418f6, 0x3fedc8d7cb410260, // 0.36561, 0.93077 0x3fd73763c9261092, 0x3fedd1fef38a915a, // 0.36276, 0.93188 0x3fd7088530fa459e, 0x3feddb13b6ccc23d, // 0.3599, 0.93299 0x3fd6d998638a0cb5, 0x3fede4160f6d8d81, // 0.35703, 0.93409 0x3fd6aa9d7dc77e16, 0x3feded05f7de47da, // 0.35416, 0.93518 0x3fd67b949cad63ca, 0x3fedf5e36a9ba59c, // 0.35129, 0.93627 0x3fd64c7ddd3f27c6, 0x3fedfeae622dbe2b, // 0.34842, 0.93734 0x3fd61d595c88c203, 0x3fee0766d9280f54, // 0.34554, 0.9384 0x3fd5ee27379ea693, 0x3fee100cca2980ac, // 0.34266, 0.93946 0x3fd5bee78b9db3b6, 0x3fee18a02fdc66d9, // 0.33978, 0.94051 0x3fd58f9a75ab1fdd, 0x3fee212104f686e5, // 0.33689, 0.94154 0x3fd5604012f467b4, 0x3fee298f4439197a, // 0.334, 0.94257 0x3fd530d880af3c24, 0x3fee31eae870ce25, // 0.33111, 0.94359 0x3fd50163dc197047, 0x3fee3a33ec75ce85, // 0.32821, 0.9446 0x3fd4d1e24278e76a, 0x3fee426a4b2bc17e, // 0.32531, 0.94561 0x3fd4a253d11b82f3, 0x3fee4a8dff81ce5e, // 0.32241, 0.9466 0x3fd472b8a5571054, 0x3fee529f04729ffc, // 0.3195, 0.94759 0x3fd44310dc8936f0, 0x3fee5a9d550467d3, // 0.31659, 0.94856 0x3fd4135c94176602, 0x3fee6288ec48e112, // 0.31368, 0.94953 0x3fd3e39be96ec271, 0x3fee6a61c55d53a7, // 0.31077, 0.95049 0x3fd3b3cefa0414b7, 0x3fee7227db6a9744, // 0.30785, 0.95144 0x3fd383f5e353b6aa, 0x3fee79db29a5165a, // 0.30493, 0.95238 0x3fd35410c2e18152, 0x3fee817bab4cd10d, // 0.30201, 0.95331 0x3fd3241fb638baaf, 0x3fee89095bad6025, // 0.29908, 0.95423 0x3fd2f422daec0386, 0x3fee9084361df7f3, // 0.29615, 0.95514 0x3fd2c41a4e954520, 0x3fee97ec36016b30, // 0.29322, 0.95605 0x3fd294062ed59f05, 0x3fee9f4156c62dda, // 0.29028, 0.95694 0x3fd263e6995554ba, 0x3feea68393e65800, // 0.28735, 0.95783 0x3fd233bbabc3bb72, 0x3feeadb2e8e7a88e, // 0.28441, 0.9587 0x3fd2038583d727bd, 0x3feeb4cf515b8811, // 0.28146, 0.95957 0x3fd1d3443f4cdb3d, 0x3feebbd8c8df0b74, // 0.27852, 0.96043 0x3fd1a2f7fbe8f243, 0x3feec2cf4b1af6b2, // 0.27557, 0.96128 0x3fd172a0d7765177, 0x3feec9b2d3c3bf84, // 0.27262, 0.96212 0x3fd1423eefc69378, 0x3feed0835e999009, // 0.26967, 0.96295 0x3fd111d262b1f677, 0x3feed740e7684963, // 0.26671, 0.96378 0x3fd0e15b4e1749cd, 0x3feeddeb6a078651, // 0.26375, 0.96459 0x3fd0b0d9cfdbdb90, 0x3feee482e25a9dbc, // 0.26079, 0.96539 0x3fd0804e05eb661e, 0x3feeeb074c50a544, // 0.25783, 0.96619 0x3fd04fb80e37fdae, 0x3feef178a3e473c2, // 0.25487, 0.96698 0x3fd01f1806b9fdd2, 0x3feef7d6e51ca3c0, // 0.2519, 0.96775 0x3fcfdcdc1adfedf8, 0x3feefe220c0b95ec, // 0.24893, 0.96852 0x3fcf7b7480bd3801, 0x3fef045a14cf738c, // 0.24596, 0.96928 0x3fcf19f97b215f1a, 0x3fef0a7efb9230d7, // 0.24298, 0.97003 0x3fceb86b462de348, 0x3fef1090bc898f5f, // 0.24, 0.97077 0x3fce56ca1e101a1b, 0x3fef168f53f7205d, // 0.23702, 0.9715 0x3fcdf5163f01099a, 0x3fef1c7abe284708, // 0.23404, 0.97223 0x3fcd934fe5454311, 0x3fef2252f7763ada, // 0.23106, 0.97294 0x3fcd31774d2cbdee, 0x3fef2817fc4609ce, // 0.22807, 0.97364 0x3fcccf8cb312b286, 0x3fef2dc9c9089a9d, // 0.22508, 0.97434 0x3fcc6d90535d74dc, 0x3fef33685a3aaef0, // 0.22209, 0.97503 0x3fcc0b826a7e4f63, 0x3fef38f3ac64e589, // 0.2191, 0.9757 0x3fcba96334f15dad, 0x3fef3e6bbc1bbc65, // 0.21611, 0.97637 0x3fcb4732ef3d6722, 0x3fef43d085ff92dd, // 0.21311, 0.97703 0x3fcae4f1d5f3b9ab, 0x3fef492206bcabb4, // 0.21011, 0.97768 0x3fca82a025b00451, 0x3fef4e603b0b2f2d, // 0.20711, 0.97832 0x3fca203e1b1831da, 0x3fef538b1faf2d07, // 0.20411, 0.97895 0x3fc9bdcbf2dc4366, 0x3fef58a2b1789e84, // 0.2011, 0.97957 0x3fc95b49e9b62af9, 0x3fef5da6ed43685d, // 0.1981, 0.98018 0x3fc8f8b83c69a60a, 0x3fef6297cff75cb0, // 0.19509, 0.98079 0x3fc8961727c41804, 0x3fef677556883cee, // 0.19208, 0.98138 0x3fc83366e89c64c5, 0x3fef6c3f7df5bbb7, // 0.18907, 0.98196 0x3fc7d0a7bbd2cb1b, 0x3fef70f6434b7eb7, // 0.18606, 0.98254 0x3fc76dd9de50bf31, 0x3fef7599a3a12077, // 0.18304, 0.98311 0x3fc70afd8d08c4ff, 0x3fef7a299c1a322a, // 0.18002, 0.98366 0x3fc6a81304f64ab2, 0x3fef7ea629e63d6e, // 0.177, 0.98421 0x3fc6451a831d830d, 0x3fef830f4a40c60c, // 0.17398, 0.98475 0x3fc5e214448b3fc6, 0x3fef8764fa714ba9, // 0.17096, 0.98528 0x3fc57f008654cbde, 0x3fef8ba737cb4b78, // 0.16794, 0.9858 0x3fc51bdf8597c5f2, 0x3fef8fd5ffae41db, // 0.16491, 0.98631 0x3fc4b8b17f79fa88, 0x3fef93f14f85ac08, // 0.16189, 0.98681 0x3fc45576b1293e5a, 0x3fef97f924c9099b, // 0.15886, 0.9873 0x3fc3f22f57db4893, 0x3fef9bed7cfbde29, // 0.15583, 0.98778 0x3fc38edbb0cd8d14, 0x3fef9fce55adb2c8, // 0.1528, 0.98826 0x3fc32b7bf94516a7, 0x3fefa39bac7a1791, // 0.14976, 0.98872 0x3fc2c8106e8e613a, 0x3fefa7557f08a517, // 0.14673, 0.98918 0x3fc264994dfd340a, 0x3fefaafbcb0cfddc, // 0.1437, 0.98962 0x3fc20116d4ec7bce, 0x3fefae8e8e46cfbb, // 0.14066, 0.99006 0x3fc19d8940be24e7, 0x3fefb20dc681d54d, // 0.13762, 0.99049 0x3fc139f0cedaf576, 0x3fefb5797195d741, // 0.13458, 0.9909 0x3fc0d64dbcb26786, 0x3fefb8d18d66adb7, // 0.13154, 0.99131 0x3fc072a047ba831d, 0x3fefbc1617e44186, // 0.1285, 0.99171 0x3fc00ee8ad6fb85b, 0x3fefbf470f0a8d88, // 0.12545, 0.9921 0x3fbf564e56a9730e, 0x3fefc26470e19fd3, // 0.12241, 0.99248 0x3fbe8eb7fde4aa3e, 0x3fefc56e3b7d9af6, // 0.11937, 0.99285 0x3fbdc70ecbae9fc8, 0x3fefc8646cfeb721, // 0.11632, 0.99321 0x3fbcff533b307dc1, 0x3fefcb4703914354, // 0.11327, 0.99356 0x3fbc3785c79ec2d5, 0x3fefce15fd6da67b, // 0.11022, 0.99391 0x3fbb6fa6ec38f64c, 0x3fefd0d158d86087, // 0.10717, 0.99424 0x3fbaa7b724495c04, 0x3fefd37914220b84, // 0.10412, 0.99456 0x3fb9dfb6eb24a85c, 0x3fefd60d2da75c9e, // 0.10107, 0.99488 0x3fb917a6bc29b42c, 0x3fefd88da3d12526, // 0.098017, 0.99518 0x3fb84f8712c130a0, 0x3fefdafa7514538c, // 0.094963, 0.99548 0x3fb787586a5d5b21, 0x3fefdd539ff1f456, // 0.091909, 0.99577 0x3fb6bf1b3e79b129, 0x3fefdf9922f73307, // 0.088854, 0.99604 0x3fb5f6d00a9aa419, 0x3fefe1cafcbd5b09, // 0.085797, 0.99631 0x3fb52e774a4d4d0a, 0x3fefe3e92be9d886, // 0.08274, 0.99657 0x3fb4661179272096, 0x3fefe5f3af2e3940, // 0.079682, 0.99682 0x3fb39d9f12c5a299, 0x3fefe7ea85482d60, // 0.076624, 0.99706 0x3fb2d52092ce19f6, 0x3fefe9cdad01883a, // 0.073565, 0.99729 0x3fb20c9674ed444c, 0x3fefeb9d2530410f, // 0.070505, 0.99751 0x3fb1440134d709b2, 0x3fefed58ecb673c4, // 0.067444, 0.99772 0x3fb07b614e463064, 0x3fefef0102826191, // 0.064383, 0.99793 0x3faf656e79f820e0, 0x3feff095658e71ad, // 0.061321, 0.99812 0x3fadd406f9808ec8, 0x3feff21614e131ed, // 0.058258, 0.9983 0x3fac428d12c0d7e3, 0x3feff3830f8d575c, // 0.055195, 0.99848 0x3faab101bd5f8317, 0x3feff4dc54b1bed3, // 0.052132, 0.99864 0x3fa91f65f10dd814, 0x3feff621e3796d7e, // 0.049068, 0.9988 0x3fa78dbaa5874685, 0x3feff753bb1b9164, // 0.046003, 0.99894 0x3fa5fc00d290cd43, 0x3feff871dadb81df, // 0.042938, 0.99908 0x3fa46a396ff86179, 0x3feff97c4208c014, // 0.039873, 0.9992 0x3fa2d865759455cd, 0x3feffa72effef75d, // 0.036807, 0.99932 0x3fa14685db42c17e, 0x3feffb55e425fdae, // 0.033741, 0.99943 0x3f9f693731d1cf01, 0x3feffc251df1d3f8, // 0.030675, 0.99953 0x3f9c454f4ce53b1c, 0x3feffce09ce2a679, // 0.027608, 0.99962 0x3f992155f7a3667e, 0x3feffd886084cd0d, // 0.024541, 0.9997 0x3f95fd4d21fab226, 0x3feffe1c6870cb77, // 0.021474, 0.99977 0x3f92d936bbe30efd, 0x3feffe9cb44b51a1, // 0.018407, 0.99983 0x3f8f6a296ab997ca, 0x3fefff0943c53bd1, // 0.015339, 0.99988 0x3f8921d1fcdec784, 0x3fefff62169b92db, // 0.012272, 0.99992 0x3f82d96b0e509703, 0x3fefffa72c978c4f, // 0.0092038, 0.99996 0x3f7921f0fe670071, 0x3fefffd8858e8a92, // 0.0061359, 0.99998 0x3f6921f8becca4ba, 0x3feffff621621d02, // 0.003068, 1 0x0000000000000000, 0x3ff0000000000000, // 0, 1 0xbf6921f8becca4ba, 0x3feffff621621d02, // -0.003068, 1 0xbf7921f0fe670071, 0x3fefffd8858e8a92, //-0.0061359, 0.99998 0xbf82d96b0e509703, 0x3fefffa72c978c4f, //-0.0092038, 0.99996 0xbf8921d1fcdec784, 0x3fefff62169b92db, // -0.012272, 0.99992 0xbf8f6a296ab997ca, 0x3fefff0943c53bd1, // -0.015339, 0.99988 0xbf92d936bbe30efd, 0x3feffe9cb44b51a1, // -0.018407, 0.99983 0xbf95fd4d21fab226, 0x3feffe1c6870cb77, // -0.021474, 0.99977 0xbf992155f7a3667e, 0x3feffd886084cd0d, // -0.024541, 0.9997 0xbf9c454f4ce53b1c, 0x3feffce09ce2a679, // -0.027608, 0.99962 0xbf9f693731d1cf01, 0x3feffc251df1d3f8, // -0.030675, 0.99953 0xbfa14685db42c17e, 0x3feffb55e425fdae, // -0.033741, 0.99943 0xbfa2d865759455cd, 0x3feffa72effef75d, // -0.036807, 0.99932 0xbfa46a396ff86179, 0x3feff97c4208c014, // -0.039873, 0.9992 0xbfa5fc00d290cd43, 0x3feff871dadb81df, // -0.042938, 0.99908 0xbfa78dbaa5874685, 0x3feff753bb1b9164, // -0.046003, 0.99894 0xbfa91f65f10dd814, 0x3feff621e3796d7e, // -0.049068, 0.9988 0xbfaab101bd5f8317, 0x3feff4dc54b1bed3, // -0.052132, 0.99864 0xbfac428d12c0d7e3, 0x3feff3830f8d575c, // -0.055195, 0.99848 0xbfadd406f9808ec8, 0x3feff21614e131ed, // -0.058258, 0.9983 0xbfaf656e79f820e0, 0x3feff095658e71ad, // -0.061321, 0.99812 0xbfb07b614e463064, 0x3fefef0102826191, // -0.064383, 0.99793 0xbfb1440134d709b2, 0x3fefed58ecb673c4, // -0.067444, 0.99772 0xbfb20c9674ed444c, 0x3fefeb9d2530410f, // -0.070505, 0.99751 0xbfb2d52092ce19f6, 0x3fefe9cdad01883a, // -0.073565, 0.99729 0xbfb39d9f12c5a299, 0x3fefe7ea85482d60, // -0.076624, 0.99706 0xbfb4661179272096, 0x3fefe5f3af2e3940, // -0.079682, 0.99682 0xbfb52e774a4d4d0a, 0x3fefe3e92be9d886, // -0.08274, 0.99657 0xbfb5f6d00a9aa419, 0x3fefe1cafcbd5b09, // -0.085797, 0.99631 0xbfb6bf1b3e79b129, 0x3fefdf9922f73307, // -0.088854, 0.99604 0xbfb787586a5d5b21, 0x3fefdd539ff1f456, // -0.091909, 0.99577 0xbfb84f8712c130a0, 0x3fefdafa7514538c, // -0.094963, 0.99548 0xbfb917a6bc29b42c, 0x3fefd88da3d12526, // -0.098017, 0.99518 0xbfb9dfb6eb24a85c, 0x3fefd60d2da75c9e, // -0.10107, 0.99488 0xbfbaa7b724495c04, 0x3fefd37914220b84, // -0.10412, 0.99456 0xbfbb6fa6ec38f64c, 0x3fefd0d158d86087, // -0.10717, 0.99424 0xbfbc3785c79ec2d5, 0x3fefce15fd6da67b, // -0.11022, 0.99391 0xbfbcff533b307dc1, 0x3fefcb4703914354, // -0.11327, 0.99356 0xbfbdc70ecbae9fc8, 0x3fefc8646cfeb721, // -0.11632, 0.99321 0xbfbe8eb7fde4aa3e, 0x3fefc56e3b7d9af6, // -0.11937, 0.99285 0xbfbf564e56a9730e, 0x3fefc26470e19fd3, // -0.12241, 0.99248 0xbfc00ee8ad6fb85b, 0x3fefbf470f0a8d88, // -0.12545, 0.9921 0xbfc072a047ba831d, 0x3fefbc1617e44186, // -0.1285, 0.99171 0xbfc0d64dbcb26786, 0x3fefb8d18d66adb7, // -0.13154, 0.99131 0xbfc139f0cedaf576, 0x3fefb5797195d741, // -0.13458, 0.9909 0xbfc19d8940be24e7, 0x3fefb20dc681d54d, // -0.13762, 0.99049 0xbfc20116d4ec7bce, 0x3fefae8e8e46cfbb, // -0.14066, 0.99006 0xbfc264994dfd340a, 0x3fefaafbcb0cfddc, // -0.1437, 0.98962 0xbfc2c8106e8e613a, 0x3fefa7557f08a517, // -0.14673, 0.98918 0xbfc32b7bf94516a7, 0x3fefa39bac7a1791, // -0.14976, 0.98872 0xbfc38edbb0cd8d14, 0x3fef9fce55adb2c8, // -0.1528, 0.98826 0xbfc3f22f57db4893, 0x3fef9bed7cfbde29, // -0.15583, 0.98778 0xbfc45576b1293e5a, 0x3fef97f924c9099b, // -0.15886, 0.9873 0xbfc4b8b17f79fa88, 0x3fef93f14f85ac08, // -0.16189, 0.98681 0xbfc51bdf8597c5f2, 0x3fef8fd5ffae41db, // -0.16491, 0.98631 0xbfc57f008654cbde, 0x3fef8ba737cb4b78, // -0.16794, 0.9858 0xbfc5e214448b3fc6, 0x3fef8764fa714ba9, // -0.17096, 0.98528 0xbfc6451a831d830d, 0x3fef830f4a40c60c, // -0.17398, 0.98475 0xbfc6a81304f64ab2, 0x3fef7ea629e63d6e, // -0.177, 0.98421 0xbfc70afd8d08c4ff, 0x3fef7a299c1a322a, // -0.18002, 0.98366 0xbfc76dd9de50bf31, 0x3fef7599a3a12077, // -0.18304, 0.98311 0xbfc7d0a7bbd2cb1b, 0x3fef70f6434b7eb7, // -0.18606, 0.98254 0xbfc83366e89c64c5, 0x3fef6c3f7df5bbb7, // -0.18907, 0.98196 0xbfc8961727c41804, 0x3fef677556883cee, // -0.19208, 0.98138 0xbfc8f8b83c69a60a, 0x3fef6297cff75cb0, // -0.19509, 0.98079 0xbfc95b49e9b62af9, 0x3fef5da6ed43685d, // -0.1981, 0.98018 0xbfc9bdcbf2dc4366, 0x3fef58a2b1789e84, // -0.2011, 0.97957 0xbfca203e1b1831da, 0x3fef538b1faf2d07, // -0.20411, 0.97895 0xbfca82a025b00451, 0x3fef4e603b0b2f2d, // -0.20711, 0.97832 0xbfcae4f1d5f3b9ab, 0x3fef492206bcabb4, // -0.21011, 0.97768 0xbfcb4732ef3d6722, 0x3fef43d085ff92dd, // -0.21311, 0.97703 0xbfcba96334f15dad, 0x3fef3e6bbc1bbc65, // -0.21611, 0.97637 0xbfcc0b826a7e4f63, 0x3fef38f3ac64e589, // -0.2191, 0.9757 0xbfcc6d90535d74dc, 0x3fef33685a3aaef0, // -0.22209, 0.97503 0xbfcccf8cb312b286, 0x3fef2dc9c9089a9d, // -0.22508, 0.97434 0xbfcd31774d2cbdee, 0x3fef2817fc4609ce, // -0.22807, 0.97364 0xbfcd934fe5454311, 0x3fef2252f7763ada, // -0.23106, 0.97294 0xbfcdf5163f01099a, 0x3fef1c7abe284708, // -0.23404, 0.97223 0xbfce56ca1e101a1b, 0x3fef168f53f7205d, // -0.23702, 0.9715 0xbfceb86b462de348, 0x3fef1090bc898f5f, // -0.24, 0.97077 0xbfcf19f97b215f1a, 0x3fef0a7efb9230d7, // -0.24298, 0.97003 0xbfcf7b7480bd3801, 0x3fef045a14cf738c, // -0.24596, 0.96928 0xbfcfdcdc1adfedf8, 0x3feefe220c0b95ec, // -0.24893, 0.96852 0xbfd01f1806b9fdd2, 0x3feef7d6e51ca3c0, // -0.2519, 0.96775 0xbfd04fb80e37fdae, 0x3feef178a3e473c2, // -0.25487, 0.96698 0xbfd0804e05eb661e, 0x3feeeb074c50a544, // -0.25783, 0.96619 0xbfd0b0d9cfdbdb90, 0x3feee482e25a9dbc, // -0.26079, 0.96539 0xbfd0e15b4e1749cd, 0x3feeddeb6a078651, // -0.26375, 0.96459 0xbfd111d262b1f677, 0x3feed740e7684963, // -0.26671, 0.96378 0xbfd1423eefc69378, 0x3feed0835e999009, // -0.26967, 0.96295 0xbfd172a0d7765177, 0x3feec9b2d3c3bf84, // -0.27262, 0.96212 0xbfd1a2f7fbe8f243, 0x3feec2cf4b1af6b2, // -0.27557, 0.96128 0xbfd1d3443f4cdb3d, 0x3feebbd8c8df0b74, // -0.27852, 0.96043 0xbfd2038583d727bd, 0x3feeb4cf515b8811, // -0.28146, 0.95957 0xbfd233bbabc3bb72, 0x3feeadb2e8e7a88e, // -0.28441, 0.9587 0xbfd263e6995554ba, 0x3feea68393e65800, // -0.28735, 0.95783 0xbfd294062ed59f05, 0x3fee9f4156c62dda, // -0.29028, 0.95694 0xbfd2c41a4e954520, 0x3fee97ec36016b30, // -0.29322, 0.95605 0xbfd2f422daec0386, 0x3fee9084361df7f3, // -0.29615, 0.95514 0xbfd3241fb638baaf, 0x3fee89095bad6025, // -0.29908, 0.95423 0xbfd35410c2e18152, 0x3fee817bab4cd10d, // -0.30201, 0.95331 0xbfd383f5e353b6aa, 0x3fee79db29a5165a, // -0.30493, 0.95238 0xbfd3b3cefa0414b7, 0x3fee7227db6a9744, // -0.30785, 0.95144 0xbfd3e39be96ec271, 0x3fee6a61c55d53a7, // -0.31077, 0.95049 0xbfd4135c94176602, 0x3fee6288ec48e112, // -0.31368, 0.94953 0xbfd44310dc8936f0, 0x3fee5a9d550467d3, // -0.31659, 0.94856 0xbfd472b8a5571054, 0x3fee529f04729ffc, // -0.3195, 0.94759 0xbfd4a253d11b82f3, 0x3fee4a8dff81ce5e, // -0.32241, 0.9466 0xbfd4d1e24278e76a, 0x3fee426a4b2bc17e, // -0.32531, 0.94561 0xbfd50163dc197047, 0x3fee3a33ec75ce85, // -0.32821, 0.9446 0xbfd530d880af3c24, 0x3fee31eae870ce25, // -0.33111, 0.94359 0xbfd5604012f467b4, 0x3fee298f4439197a, // -0.334, 0.94257 0xbfd58f9a75ab1fdd, 0x3fee212104f686e5, // -0.33689, 0.94154 0xbfd5bee78b9db3b6, 0x3fee18a02fdc66d9, // -0.33978, 0.94051 0xbfd5ee27379ea693, 0x3fee100cca2980ac, // -0.34266, 0.93946 0xbfd61d595c88c203, 0x3fee0766d9280f54, // -0.34554, 0.9384 0xbfd64c7ddd3f27c6, 0x3fedfeae622dbe2b, // -0.34842, 0.93734 0xbfd67b949cad63ca, 0x3fedf5e36a9ba59c, // -0.35129, 0.93627 0xbfd6aa9d7dc77e16, 0x3feded05f7de47da, // -0.35416, 0.93518 0xbfd6d998638a0cb5, 0x3fede4160f6d8d81, // -0.35703, 0.93409 0xbfd7088530fa459e, 0x3feddb13b6ccc23d, // -0.3599, 0.93299 0xbfd73763c9261092, 0x3fedd1fef38a915a, // -0.36276, 0.93188 0xbfd766340f2418f6, 0x3fedc8d7cb410260, // -0.36561, 0.93077 0xbfd794f5e613dfae, 0x3fedbf9e4395759a, // -0.36847, 0.92964 0xbfd7c3a9311dcce7, 0x3fedb6526238a09b, // -0.37132, 0.92851 0xbfd7f24dd37341e3, 0x3fedacf42ce68ab9, // -0.37416, 0.92736 0xbfd820e3b04eaac4, 0x3feda383a9668988, // -0.37701, 0.92621 0xbfd84f6aaaf3903f, 0x3fed9a00dd8b3d46, // -0.37985, 0.92505 0xbfd87de2a6aea963, 0x3fed906bcf328d46, // -0.38268, 0.92388 0xbfd8ac4b86d5ed44, 0x3fed86c48445a450, // -0.38552, 0.9227 0xbfd8daa52ec8a4af, 0x3fed7d0b02b8ecf9, // -0.38835, 0.92151 0xbfd908ef81ef7bd1, 0x3fed733f508c0dff, // -0.39117, 0.92032 0xbfd9372a63bc93d7, 0x3fed696173c9e68b, // -0.39399, 0.91911 0xbfd96555b7ab948f, 0x3fed5f7172888a7f, // -0.39681, 0.9179 0xbfd993716141bdfe, 0x3fed556f52e93eb1, // -0.39962, 0.91668 0xbfd9c17d440df9f2, 0x3fed4b5b1b187524, // -0.40243, 0.91545 0xbfd9ef7943a8ed8a, 0x3fed4134d14dc93a, // -0.40524, 0.91421 0xbfda1d6543b50ac0, 0x3fed36fc7bcbfbdc, // -0.40804, 0.91296 0xbfda4b4127dea1e4, 0x3fed2cb220e0ef9f, // -0.41084, 0.91171 0xbfda790cd3dbf31a, 0x3fed2255c6e5a4e1, // -0.41364, 0.91044 0xbfdaa6c82b6d3fc9, 0x3fed17e7743e35dc, // -0.41643, 0.90917 0xbfdad473125cdc08, 0x3fed0d672f59d2b9, // -0.41922, 0.90789 0xbfdb020d6c7f4009, 0x3fed02d4feb2bd92, // -0.422, 0.9066 0xbfdb2f971db31972, 0x3fecf830e8ce467b, // -0.42478, 0.9053 0xbfdb5d1009e15cc0, 0x3feced7af43cc773, // -0.42756, 0.90399 0xbfdb8a7814fd5693, 0x3fece2b32799a060, // -0.43033, 0.90267 0xbfdbb7cf2304bd01, 0x3fecd7d9898b32f6, // -0.43309, 0.90135 0xbfdbe51517ffc0d9, 0x3fecccee20c2de9f, // -0.43586, 0.90002 0xbfdc1249d8011ee7, 0x3fecc1f0f3fcfc5c, // -0.43862, 0.89867 0xbfdc3f6d47263129, 0x3fecb6e20a00da99, // -0.44137, 0.89732 0xbfdc6c7f4997000a, 0x3fecabc169a0b901, // -0.44412, 0.89597 0xbfdc997fc3865388, 0x3feca08f19b9c449, // -0.44687, 0.8946 0xbfdcc66e9931c45d, 0x3fec954b213411f5, // -0.44961, 0.89322 0xbfdcf34baee1cd21, 0x3fec89f587029c13, // -0.45235, 0.89184 0xbfdd2016e8e9db5b, 0x3fec7e8e52233cf3, // -0.45508, 0.89045 0xbfdd4cd02ba8609c, 0x3fec7315899eaad7, // -0.45781, 0.88905 0xbfdd79775b86e389, 0x3fec678b3488739b, // -0.46054, 0.88764 0xbfdda60c5cfa10d8, 0x3fec5bef59fef85a, // -0.46326, 0.88622 0xbfddd28f1481cc58, 0x3fec5042012b6907, // -0.46598, 0.8848 0xbfddfeff66a941de, 0x3fec44833141c004, // -0.46869, 0.88336 0xbfde2b5d3806f63b, 0x3fec38b2f180bdb1, // -0.4714, 0.88192 0xbfde57a86d3cd824, 0x3fec2cd14931e3f1, // -0.4741, 0.88047 0xbfde83e0eaf85113, 0x3fec20de3fa971b0, // -0.4768, 0.87901 0xbfdeb00695f25620, 0x3fec14d9dc465e58, // -0.47949, 0.87755 0xbfdedc1952ef78d5, 0x3fec08c426725549, // -0.48218, 0.87607 0xbfdf081906bff7fd, 0x3febfc9d25a1b147, // -0.48487, 0.87459 0xbfdf3405963fd068, 0x3febf064e15377dd, // -0.48755, 0.87309 0xbfdf5fdee656cda3, 0x3febe41b611154c1, // -0.49023, 0.8716 0xbfdf8ba4dbf89aba, 0x3febd7c0ac6f952a, // -0.4929, 0.87009 0xbfdfb7575c24d2de, 0x3febcb54cb0d2327, // -0.49557, 0.86857 0xbfdfe2f64be7120f, 0x3febbed7c49380ea, // -0.49823, 0.86705 0xbfe00740c82b82e0, 0x3febb249a0b6c40d, // -0.50089, 0.86551 0xbfe01cfc874c3eb7, 0x3feba5aa673590d2, // -0.50354, 0.86397 0xbfe032ae55edbd95, 0x3feb98fa1fd9155e, // -0.50619, 0.86242 0xbfe0485626ae221a, 0x3feb8c38d27504e9, // -0.50883, 0.86087 0xbfe05df3ec31b8b6, 0x3feb7f6686e792ea, // -0.51147, 0.8593 0xbfe073879922ffed, 0x3feb728345196e3e, // -0.5141, 0.85773 0xbfe089112032b08c, 0x3feb658f14fdbc47, // -0.51673, 0.85615 0xbfe09e907417c5e1, 0x3feb5889fe921405, // -0.51936, 0.85456 0xbfe0b405878f85ec, 0x3feb4b7409de7925, // -0.52198, 0.85296 0xbfe0c9704d5d898f, 0x3feb3e4d3ef55712, // -0.52459, 0.85136 0xbfe0ded0b84bc4b5, 0x3feb3115a5f37bf4, // -0.5272, 0.84974 0xbfe0f426bb2a8e7d, 0x3feb23cd470013b4, // -0.5298, 0.84812 0xbfe1097248d0a956, 0x3feb16742a4ca2f5, // -0.5324, 0.84649 0xbfe11eb3541b4b22, 0x3feb090a58150200, // -0.535, 0.84485 0xbfe133e9cfee254e, 0x3feafb8fd89f57b6, // -0.53759, 0.84321 0xbfe14915af336ceb, 0x3feaee04b43c1474, // -0.54017, 0.84155 0xbfe15e36e4dbe2bc, 0x3feae068f345ecef, // -0.54275, 0.83989 0xbfe1734d63dedb49, 0x3fead2bc9e21d511, // -0.54532, 0.83822 0xbfe188591f3a46e5, 0x3feac4ffbd3efac8, // -0.54789, 0.83655 0xbfe19d5a09f2b9b8, 0x3feab7325916c0d4, // -0.55046, 0.83486 0xbfe1b250171373be, 0x3feaa9547a2cb98e, // -0.55302, 0.83317 0xbfe1c73b39ae68c8, 0x3fea9b66290ea1a3, // -0.55557, 0.83147 0xbfe1dc1b64dc4872, 0x3fea8d676e545ad2, // -0.55812, 0.82976 0xbfe1f0f08bbc861b, 0x3fea7f58529fe69d, // -0.56066, 0.82805 0xbfe205baa17560d6, 0x3fea7138de9d60f5, // -0.5632, 0.82632 0xbfe21a799933eb58, 0x3fea63091b02fae2, // -0.56573, 0.82459 0xbfe22f2d662c13e1, 0x3fea54c91090f524, // -0.56826, 0.82285 0xbfe243d5fb98ac1f, 0x3fea4678c8119ac8, // -0.57078, 0.8211 0xbfe258734cbb7110, 0x3fea38184a593bc6, // -0.5733, 0.81935 0xbfe26d054cdd12df, 0x3fea29a7a0462782, // -0.57581, 0.81758 0xbfe2818bef4d3cba, 0x3fea1b26d2c0a75e, // -0.57831, 0.81581 0xbfe2960727629ca8, 0x3fea0c95eabaf937, // -0.58081, 0.81404 0xbfe2aa76e87aeb58, 0x3fe9fdf4f13149de, // -0.58331, 0.81225 0xbfe2bedb25faf3ea, 0x3fe9ef43ef29af94, // -0.5858, 0.81046 0xbfe2d333d34e9bb7, 0x3fe9e082edb42472, // -0.58828, 0.80866 0xbfe2e780e3e8ea16, 0x3fe9d1b1f5ea80d6, // -0.59076, 0.80685 0xbfe2fbc24b441015, 0x3fe9c2d110f075c3, // -0.59323, 0.80503 0xbfe30ff7fce17035, 0x3fe9b3e047f38741, // -0.5957, 0.80321 0xbfe32421ec49a620, 0x3fe9a4dfa42b06b2, // -0.59816, 0.80138 0xbfe338400d0c8e57, 0x3fe995cf2ed80d22, // -0.60062, 0.79954 0xbfe34c5252c14de1, 0x3fe986aef1457594, // -0.60307, 0.79769 0xbfe36058b10659f3, 0x3fe9777ef4c7d742, // -0.60551, 0.79584 0xbfe374531b817f8d, 0x3fe9683f42bd7fe1, // -0.60795, 0.79398 0xbfe3884185dfeb22, 0x3fe958efe48e6dd7, // -0.61038, 0.79211 0xbfe39c23e3d63029, 0x3fe94990e3ac4a6c, // -0.61281, 0.79023 0xbfe3affa292050b9, 0x3fe93a22499263fc, // -0.61523, 0.78835 0xbfe3c3c44981c517, 0x3fe92aa41fc5a815, // -0.61765, 0.78646 0xbfe3d78238c58343, 0x3fe91b166fd49da2, // -0.62006, 0.78456 0xbfe3eb33eabe0680, 0x3fe90b7943575efe, // -0.62246, 0.78265 0xbfe3fed9534556d4, 0x3fe8fbcca3ef940d, // -0.62486, 0.78074 0xbfe41272663d108c, 0x3fe8ec109b486c49, // -0.62725, 0.77882 0xbfe425ff178e6bb1, 0x3fe8dc45331698cc, // -0.62964, 0.77689 0xbfe4397f5b2a4380, 0x3fe8cc6a75184655, // -0.63202, 0.77495 0xbfe44cf325091dd6, 0x3fe8bc806b151741, // -0.63439, 0.77301 0xbfe4605a692b32a2, 0x3fe8ac871ede1d88, // -0.63676, 0.77106 0xbfe473b51b987347, 0x3fe89c7e9a4dd4ab, // -0.63912, 0.7691 0xbfe48703306091fe, 0x3fe88c66e7481ba1, // -0.64148, 0.76714 0xbfe49a449b9b0938, 0x3fe87c400fba2ebf, // -0.64383, 0.76517 0xbfe4ad79516722f0, 0x3fe86c0a1d9aa195, // -0.64618, 0.76319 0xbfe4c0a145ec0004, 0x3fe85bc51ae958cc, // -0.64851, 0.7612 0xbfe4d3bc6d589f80, 0x3fe84b7111af83f9, // -0.65085, 0.75921 0xbfe4e6cabbe3e5e9, 0x3fe83b0e0bff976e, // -0.65317, 0.75721 0xbfe4f9cc25cca486, 0x3fe82a9c13f545ff, // -0.65549, 0.7552 0xbfe50cc09f59a09b, 0x3fe81a1b33b57acc, // -0.65781, 0.75319 0xbfe51fa81cd99aa6, 0x3fe8098b756e52fa, // -0.66011, 0.75117 0xbfe5328292a35596, 0x3fe7f8ece3571771, // -0.66242, 0.74914 0xbfe5454ff5159dfb, 0x3fe7e83f87b03686, // -0.66471, 0.7471 0xbfe5581038975137, 0x3fe7d7836cc33db2, // -0.667, 0.74506 0xbfe56ac35197649e, 0x3fe7c6b89ce2d333, // -0.66928, 0.74301 0xbfe57d69348cec9f, 0x3fe7b5df226aafb0, // -0.67156, 0.74095 0xbfe59001d5f723df, 0x3fe7a4f707bf97d2, // -0.67383, 0.73889 0xbfe5a28d2a5d7250, 0x3fe79400574f55e4, // -0.67609, 0.73682 0xbfe5b50b264f7448, 0x3fe782fb1b90b35b, // -0.67835, 0.73474 0xbfe5c77bbe65018c, 0x3fe771e75f037261, // -0.6806, 0.73265 0xbfe5d9dee73e345c, 0x3fe760c52c304764, // -0.68285, 0.73056 0xbfe5ec3495837074, 0x3fe74f948da8d28d, // -0.68508, 0.72846 0xbfe5fe7cbde56a0f, 0x3fe73e558e079942, // -0.68732, 0.72636 0xbfe610b7551d2cde, 0x3fe72d0837efff97, // -0.68954, 0.72425 0xbfe622e44fec22ff, 0x3fe71bac960e41bf, // -0.69176, 0.72213 0xbfe63503a31c1be8, 0x3fe70a42b3176d7a, // -0.69397, 0.72 0xbfe64715437f535b, 0x3fe6f8ca99c95b75, // -0.69618, 0.71787 0xbfe6591925f0783e, 0x3fe6e74454eaa8ae, // -0.69838, 0.71573 0xbfe66b0f3f52b386, 0x3fe6d5afef4aafcc, // -0.70057, 0.71358 0xbfe67cf78491af10, 0x3fe6c40d73c18275, // -0.70275, 0.71143 0xbfe68ed1eaa19c71, 0x3fe6b25ced2fe29c, // -0.70493, 0.70927 0xbfe6a09e667f3bcc, 0x3fe6a09e667f3bcc, // -0.70711, 0.70711 0xbfe6b25ced2fe29c, 0x3fe68ed1eaa19c71, // -0.70927, 0.70493 0xbfe6c40d73c18275, 0x3fe67cf78491af10, // -0.71143, 0.70275 0xbfe6d5afef4aafcc, 0x3fe66b0f3f52b386, // -0.71358, 0.70057 0xbfe6e74454eaa8ae, 0x3fe6591925f0783e, // -0.71573, 0.69838 0xbfe6f8ca99c95b75, 0x3fe64715437f535b, // -0.71787, 0.69618 0xbfe70a42b3176d7a, 0x3fe63503a31c1be8, // -0.72, 0.69397 0xbfe71bac960e41bf, 0x3fe622e44fec22ff, // -0.72213, 0.69176 0xbfe72d0837efff97, 0x3fe610b7551d2cde, // -0.72425, 0.68954 0xbfe73e558e079942, 0x3fe5fe7cbde56a0f, // -0.72636, 0.68732 0xbfe74f948da8d28d, 0x3fe5ec3495837074, // -0.72846, 0.68508 0xbfe760c52c304764, 0x3fe5d9dee73e345c, // -0.73056, 0.68285 0xbfe771e75f037261, 0x3fe5c77bbe65018c, // -0.73265, 0.6806 0xbfe782fb1b90b35b, 0x3fe5b50b264f7448, // -0.73474, 0.67835 0xbfe79400574f55e4, 0x3fe5a28d2a5d7250, // -0.73682, 0.67609 0xbfe7a4f707bf97d2, 0x3fe59001d5f723df, // -0.73889, 0.67383 0xbfe7b5df226aafb0, 0x3fe57d69348cec9f, // -0.74095, 0.67156 0xbfe7c6b89ce2d333, 0x3fe56ac35197649e, // -0.74301, 0.66928 0xbfe7d7836cc33db2, 0x3fe5581038975137, // -0.74506, 0.667 0xbfe7e83f87b03686, 0x3fe5454ff5159dfb, // -0.7471, 0.66471 0xbfe7f8ece3571771, 0x3fe5328292a35596, // -0.74914, 0.66242 0xbfe8098b756e52fa, 0x3fe51fa81cd99aa6, // -0.75117, 0.66011 0xbfe81a1b33b57acc, 0x3fe50cc09f59a09b, // -0.75319, 0.65781 0xbfe82a9c13f545ff, 0x3fe4f9cc25cca486, // -0.7552, 0.65549 0xbfe83b0e0bff976e, 0x3fe4e6cabbe3e5e9, // -0.75721, 0.65317 0xbfe84b7111af83f9, 0x3fe4d3bc6d589f80, // -0.75921, 0.65085 0xbfe85bc51ae958cc, 0x3fe4c0a145ec0004, // -0.7612, 0.64851 0xbfe86c0a1d9aa195, 0x3fe4ad79516722f0, // -0.76319, 0.64618 0xbfe87c400fba2ebf, 0x3fe49a449b9b0938, // -0.76517, 0.64383 0xbfe88c66e7481ba1, 0x3fe48703306091fe, // -0.76714, 0.64148 0xbfe89c7e9a4dd4ab, 0x3fe473b51b987347, // -0.7691, 0.63912 0xbfe8ac871ede1d88, 0x3fe4605a692b32a2, // -0.77106, 0.63676 0xbfe8bc806b151741, 0x3fe44cf325091dd6, // -0.77301, 0.63439 0xbfe8cc6a75184655, 0x3fe4397f5b2a4380, // -0.77495, 0.63202 0xbfe8dc45331698cc, 0x3fe425ff178e6bb1, // -0.77689, 0.62964 0xbfe8ec109b486c49, 0x3fe41272663d108c, // -0.77882, 0.62725 0xbfe8fbcca3ef940d, 0x3fe3fed9534556d4, // -0.78074, 0.62486 0xbfe90b7943575efe, 0x3fe3eb33eabe0680, // -0.78265, 0.62246 0xbfe91b166fd49da2, 0x3fe3d78238c58343, // -0.78456, 0.62006 0xbfe92aa41fc5a815, 0x3fe3c3c44981c517, // -0.78646, 0.61765 0xbfe93a22499263fc, 0x3fe3affa292050b9, // -0.78835, 0.61523 0xbfe94990e3ac4a6c, 0x3fe39c23e3d63029, // -0.79023, 0.61281 0xbfe958efe48e6dd7, 0x3fe3884185dfeb22, // -0.79211, 0.61038 0xbfe9683f42bd7fe1, 0x3fe374531b817f8d, // -0.79398, 0.60795 0xbfe9777ef4c7d742, 0x3fe36058b10659f3, // -0.79584, 0.60551 0xbfe986aef1457594, 0x3fe34c5252c14de1, // -0.79769, 0.60307 0xbfe995cf2ed80d22, 0x3fe338400d0c8e57, // -0.79954, 0.60062 0xbfe9a4dfa42b06b2, 0x3fe32421ec49a620, // -0.80138, 0.59816 0xbfe9b3e047f38741, 0x3fe30ff7fce17035, // -0.80321, 0.5957 0xbfe9c2d110f075c3, 0x3fe2fbc24b441015, // -0.80503, 0.59323 0xbfe9d1b1f5ea80d6, 0x3fe2e780e3e8ea16, // -0.80685, 0.59076 0xbfe9e082edb42472, 0x3fe2d333d34e9bb7, // -0.80866, 0.58828 0xbfe9ef43ef29af94, 0x3fe2bedb25faf3ea, // -0.81046, 0.5858 0xbfe9fdf4f13149de, 0x3fe2aa76e87aeb58, // -0.81225, 0.58331 0xbfea0c95eabaf937, 0x3fe2960727629ca8, // -0.81404, 0.58081 0xbfea1b26d2c0a75e, 0x3fe2818bef4d3cba, // -0.81581, 0.57831 0xbfea29a7a0462782, 0x3fe26d054cdd12df, // -0.81758, 0.57581 0xbfea38184a593bc6, 0x3fe258734cbb7110, // -0.81935, 0.5733 0xbfea4678c8119ac8, 0x3fe243d5fb98ac1f, // -0.8211, 0.57078 0xbfea54c91090f524, 0x3fe22f2d662c13e1, // -0.82285, 0.56826 0xbfea63091b02fae2, 0x3fe21a799933eb58, // -0.82459, 0.56573 0xbfea7138de9d60f5, 0x3fe205baa17560d6, // -0.82632, 0.5632 0xbfea7f58529fe69d, 0x3fe1f0f08bbc861b, // -0.82805, 0.56066 0xbfea8d676e545ad2, 0x3fe1dc1b64dc4872, // -0.82976, 0.55812 0xbfea9b66290ea1a3, 0x3fe1c73b39ae68c8, // -0.83147, 0.55557 0xbfeaa9547a2cb98e, 0x3fe1b250171373be, // -0.83317, 0.55302 0xbfeab7325916c0d4, 0x3fe19d5a09f2b9b8, // -0.83486, 0.55046 0xbfeac4ffbd3efac8, 0x3fe188591f3a46e5, // -0.83655, 0.54789 0xbfead2bc9e21d511, 0x3fe1734d63dedb49, // -0.83822, 0.54532 0xbfeae068f345ecef, 0x3fe15e36e4dbe2bc, // -0.83989, 0.54275 0xbfeaee04b43c1474, 0x3fe14915af336ceb, // -0.84155, 0.54017 0xbfeafb8fd89f57b6, 0x3fe133e9cfee254e, // -0.84321, 0.53759 0xbfeb090a58150200, 0x3fe11eb3541b4b22, // -0.84485, 0.535 0xbfeb16742a4ca2f5, 0x3fe1097248d0a956, // -0.84649, 0.5324 0xbfeb23cd470013b4, 0x3fe0f426bb2a8e7d, // -0.84812, 0.5298 0xbfeb3115a5f37bf4, 0x3fe0ded0b84bc4b5, // -0.84974, 0.5272 0xbfeb3e4d3ef55712, 0x3fe0c9704d5d898f, // -0.85136, 0.52459 0xbfeb4b7409de7925, 0x3fe0b405878f85ec, // -0.85296, 0.52198 0xbfeb5889fe921405, 0x3fe09e907417c5e1, // -0.85456, 0.51936 0xbfeb658f14fdbc47, 0x3fe089112032b08c, // -0.85615, 0.51673 0xbfeb728345196e3e, 0x3fe073879922ffed, // -0.85773, 0.5141 0xbfeb7f6686e792ea, 0x3fe05df3ec31b8b6, // -0.8593, 0.51147 0xbfeb8c38d27504e9, 0x3fe0485626ae221a, // -0.86087, 0.50883 0xbfeb98fa1fd9155e, 0x3fe032ae55edbd95, // -0.86242, 0.50619 0xbfeba5aa673590d2, 0x3fe01cfc874c3eb7, // -0.86397, 0.50354 0xbfebb249a0b6c40d, 0x3fe00740c82b82e0, // -0.86551, 0.50089 0xbfebbed7c49380ea, 0x3fdfe2f64be7120f, // -0.86705, 0.49823 0xbfebcb54cb0d2327, 0x3fdfb7575c24d2de, // -0.86857, 0.49557 0xbfebd7c0ac6f952a, 0x3fdf8ba4dbf89aba, // -0.87009, 0.4929 0xbfebe41b611154c1, 0x3fdf5fdee656cda3, // -0.8716, 0.49023 0xbfebf064e15377dd, 0x3fdf3405963fd068, // -0.87309, 0.48755 0xbfebfc9d25a1b147, 0x3fdf081906bff7fd, // -0.87459, 0.48487 0xbfec08c426725549, 0x3fdedc1952ef78d5, // -0.87607, 0.48218 0xbfec14d9dc465e58, 0x3fdeb00695f25620, // -0.87755, 0.47949 0xbfec20de3fa971b0, 0x3fde83e0eaf85113, // -0.87901, 0.4768 0xbfec2cd14931e3f1, 0x3fde57a86d3cd824, // -0.88047, 0.4741 0xbfec38b2f180bdb1, 0x3fde2b5d3806f63b, // -0.88192, 0.4714 0xbfec44833141c004, 0x3fddfeff66a941de, // -0.88336, 0.46869 0xbfec5042012b6907, 0x3fddd28f1481cc58, // -0.8848, 0.46598 0xbfec5bef59fef85a, 0x3fdda60c5cfa10d8, // -0.88622, 0.46326 0xbfec678b3488739b, 0x3fdd79775b86e389, // -0.88764, 0.46054 0xbfec7315899eaad7, 0x3fdd4cd02ba8609c, // -0.88905, 0.45781 0xbfec7e8e52233cf3, 0x3fdd2016e8e9db5b, // -0.89045, 0.45508 0xbfec89f587029c13, 0x3fdcf34baee1cd21, // -0.89184, 0.45235 0xbfec954b213411f5, 0x3fdcc66e9931c45d, // -0.89322, 0.44961 0xbfeca08f19b9c449, 0x3fdc997fc3865388, // -0.8946, 0.44687 0xbfecabc169a0b901, 0x3fdc6c7f4997000a, // -0.89597, 0.44412 0xbfecb6e20a00da99, 0x3fdc3f6d47263129, // -0.89732, 0.44137 0xbfecc1f0f3fcfc5c, 0x3fdc1249d8011ee7, // -0.89867, 0.43862 0xbfecccee20c2de9f, 0x3fdbe51517ffc0d9, // -0.90002, 0.43586 0xbfecd7d9898b32f6, 0x3fdbb7cf2304bd01, // -0.90135, 0.43309 0xbfece2b32799a060, 0x3fdb8a7814fd5693, // -0.90267, 0.43033 0xbfeced7af43cc773, 0x3fdb5d1009e15cc0, // -0.90399, 0.42756 0xbfecf830e8ce467b, 0x3fdb2f971db31972, // -0.9053, 0.42478 0xbfed02d4feb2bd92, 0x3fdb020d6c7f4009, // -0.9066, 0.422 0xbfed0d672f59d2b9, 0x3fdad473125cdc08, // -0.90789, 0.41922 0xbfed17e7743e35dc, 0x3fdaa6c82b6d3fc9, // -0.90917, 0.41643 0xbfed2255c6e5a4e1, 0x3fda790cd3dbf31a, // -0.91044, 0.41364 0xbfed2cb220e0ef9f, 0x3fda4b4127dea1e4, // -0.91171, 0.41084 0xbfed36fc7bcbfbdc, 0x3fda1d6543b50ac0, // -0.91296, 0.40804 0xbfed4134d14dc93a, 0x3fd9ef7943a8ed8a, // -0.91421, 0.40524 0xbfed4b5b1b187524, 0x3fd9c17d440df9f2, // -0.91545, 0.40243 0xbfed556f52e93eb1, 0x3fd993716141bdfe, // -0.91668, 0.39962 0xbfed5f7172888a7f, 0x3fd96555b7ab948f, // -0.9179, 0.39681 0xbfed696173c9e68b, 0x3fd9372a63bc93d7, // -0.91911, 0.39399 0xbfed733f508c0dff, 0x3fd908ef81ef7bd1, // -0.92032, 0.39117 0xbfed7d0b02b8ecf9, 0x3fd8daa52ec8a4af, // -0.92151, 0.38835 0xbfed86c48445a450, 0x3fd8ac4b86d5ed44, // -0.9227, 0.38552 0xbfed906bcf328d46, 0x3fd87de2a6aea963, // -0.92388, 0.38268 0xbfed9a00dd8b3d46, 0x3fd84f6aaaf3903f, // -0.92505, 0.37985 0xbfeda383a9668988, 0x3fd820e3b04eaac4, // -0.92621, 0.37701 0xbfedacf42ce68ab9, 0x3fd7f24dd37341e3, // -0.92736, 0.37416 0xbfedb6526238a09b, 0x3fd7c3a9311dcce7, // -0.92851, 0.37132 0xbfedbf9e4395759a, 0x3fd794f5e613dfae, // -0.92964, 0.36847 0xbfedc8d7cb410260, 0x3fd766340f2418f6, // -0.93077, 0.36561 0xbfedd1fef38a915a, 0x3fd73763c9261092, // -0.93188, 0.36276 0xbfeddb13b6ccc23d, 0x3fd7088530fa459e, // -0.93299, 0.3599 0xbfede4160f6d8d81, 0x3fd6d998638a0cb5, // -0.93409, 0.35703 0xbfeded05f7de47da, 0x3fd6aa9d7dc77e16, // -0.93518, 0.35416 0xbfedf5e36a9ba59c, 0x3fd67b949cad63ca, // -0.93627, 0.35129 0xbfedfeae622dbe2b, 0x3fd64c7ddd3f27c6, // -0.93734, 0.34842 0xbfee0766d9280f54, 0x3fd61d595c88c203, // -0.9384, 0.34554 0xbfee100cca2980ac, 0x3fd5ee27379ea693, // -0.93946, 0.34266 0xbfee18a02fdc66d9, 0x3fd5bee78b9db3b6, // -0.94051, 0.33978 0xbfee212104f686e5, 0x3fd58f9a75ab1fdd, // -0.94154, 0.33689 0xbfee298f4439197a, 0x3fd5604012f467b4, // -0.94257, 0.334 0xbfee31eae870ce25, 0x3fd530d880af3c24, // -0.94359, 0.33111 0xbfee3a33ec75ce85, 0x3fd50163dc197047, // -0.9446, 0.32821 0xbfee426a4b2bc17e, 0x3fd4d1e24278e76a, // -0.94561, 0.32531 0xbfee4a8dff81ce5e, 0x3fd4a253d11b82f3, // -0.9466, 0.32241 0xbfee529f04729ffc, 0x3fd472b8a5571054, // -0.94759, 0.3195 0xbfee5a9d550467d3, 0x3fd44310dc8936f0, // -0.94856, 0.31659 0xbfee6288ec48e112, 0x3fd4135c94176602, // -0.94953, 0.31368 0xbfee6a61c55d53a7, 0x3fd3e39be96ec271, // -0.95049, 0.31077 0xbfee7227db6a9744, 0x3fd3b3cefa0414b7, // -0.95144, 0.30785 0xbfee79db29a5165a, 0x3fd383f5e353b6aa, // -0.95238, 0.30493 0xbfee817bab4cd10d, 0x3fd35410c2e18152, // -0.95331, 0.30201 0xbfee89095bad6025, 0x3fd3241fb638baaf, // -0.95423, 0.29908 0xbfee9084361df7f3, 0x3fd2f422daec0386, // -0.95514, 0.29615 0xbfee97ec36016b30, 0x3fd2c41a4e954520, // -0.95605, 0.29322 0xbfee9f4156c62dda, 0x3fd294062ed59f05, // -0.95694, 0.29028 0xbfeea68393e65800, 0x3fd263e6995554ba, // -0.95783, 0.28735 0xbfeeadb2e8e7a88e, 0x3fd233bbabc3bb72, // -0.9587, 0.28441 0xbfeeb4cf515b8811, 0x3fd2038583d727bd, // -0.95957, 0.28146 0xbfeebbd8c8df0b74, 0x3fd1d3443f4cdb3d, // -0.96043, 0.27852 0xbfeec2cf4b1af6b2, 0x3fd1a2f7fbe8f243, // -0.96128, 0.27557 0xbfeec9b2d3c3bf84, 0x3fd172a0d7765177, // -0.96212, 0.27262 0xbfeed0835e999009, 0x3fd1423eefc69378, // -0.96295, 0.26967 0xbfeed740e7684963, 0x3fd111d262b1f677, // -0.96378, 0.26671 0xbfeeddeb6a078651, 0x3fd0e15b4e1749cd, // -0.96459, 0.26375 0xbfeee482e25a9dbc, 0x3fd0b0d9cfdbdb90, // -0.96539, 0.26079 0xbfeeeb074c50a544, 0x3fd0804e05eb661e, // -0.96619, 0.25783 0xbfeef178a3e473c2, 0x3fd04fb80e37fdae, // -0.96698, 0.25487 0xbfeef7d6e51ca3c0, 0x3fd01f1806b9fdd2, // -0.96775, 0.2519 0xbfeefe220c0b95ec, 0x3fcfdcdc1adfedf8, // -0.96852, 0.24893 0xbfef045a14cf738c, 0x3fcf7b7480bd3801, // -0.96928, 0.24596 0xbfef0a7efb9230d7, 0x3fcf19f97b215f1a, // -0.97003, 0.24298 0xbfef1090bc898f5f, 0x3fceb86b462de348, // -0.97077, 0.24 0xbfef168f53f7205d, 0x3fce56ca1e101a1b, // -0.9715, 0.23702 0xbfef1c7abe284708, 0x3fcdf5163f01099a, // -0.97223, 0.23404 0xbfef2252f7763ada, 0x3fcd934fe5454311, // -0.97294, 0.23106 0xbfef2817fc4609ce, 0x3fcd31774d2cbdee, // -0.97364, 0.22807 0xbfef2dc9c9089a9d, 0x3fcccf8cb312b286, // -0.97434, 0.22508 0xbfef33685a3aaef0, 0x3fcc6d90535d74dc, // -0.97503, 0.22209 0xbfef38f3ac64e589, 0x3fcc0b826a7e4f63, // -0.9757, 0.2191 0xbfef3e6bbc1bbc65, 0x3fcba96334f15dad, // -0.97637, 0.21611 0xbfef43d085ff92dd, 0x3fcb4732ef3d6722, // -0.97703, 0.21311 0xbfef492206bcabb4, 0x3fcae4f1d5f3b9ab, // -0.97768, 0.21011 0xbfef4e603b0b2f2d, 0x3fca82a025b00451, // -0.97832, 0.20711 0xbfef538b1faf2d07, 0x3fca203e1b1831da, // -0.97895, 0.20411 0xbfef58a2b1789e84, 0x3fc9bdcbf2dc4366, // -0.97957, 0.2011 0xbfef5da6ed43685d, 0x3fc95b49e9b62af9, // -0.98018, 0.1981 0xbfef6297cff75cb0, 0x3fc8f8b83c69a60a, // -0.98079, 0.19509 0xbfef677556883cee, 0x3fc8961727c41804, // -0.98138, 0.19208 0xbfef6c3f7df5bbb7, 0x3fc83366e89c64c5, // -0.98196, 0.18907 0xbfef70f6434b7eb7, 0x3fc7d0a7bbd2cb1b, // -0.98254, 0.18606 0xbfef7599a3a12077, 0x3fc76dd9de50bf31, // -0.98311, 0.18304 0xbfef7a299c1a322a, 0x3fc70afd8d08c4ff, // -0.98366, 0.18002 0xbfef7ea629e63d6e, 0x3fc6a81304f64ab2, // -0.98421, 0.177 0xbfef830f4a40c60c, 0x3fc6451a831d830d, // -0.98475, 0.17398 0xbfef8764fa714ba9, 0x3fc5e214448b3fc6, // -0.98528, 0.17096 0xbfef8ba737cb4b78, 0x3fc57f008654cbde, // -0.9858, 0.16794 0xbfef8fd5ffae41db, 0x3fc51bdf8597c5f2, // -0.98631, 0.16491 0xbfef93f14f85ac08, 0x3fc4b8b17f79fa88, // -0.98681, 0.16189 0xbfef97f924c9099b, 0x3fc45576b1293e5a, // -0.9873, 0.15886 0xbfef9bed7cfbde29, 0x3fc3f22f57db4893, // -0.98778, 0.15583 0xbfef9fce55adb2c8, 0x3fc38edbb0cd8d14, // -0.98826, 0.1528 0xbfefa39bac7a1791, 0x3fc32b7bf94516a7, // -0.98872, 0.14976 0xbfefa7557f08a517, 0x3fc2c8106e8e613a, // -0.98918, 0.14673 0xbfefaafbcb0cfddc, 0x3fc264994dfd340a, // -0.98962, 0.1437 0xbfefae8e8e46cfbb, 0x3fc20116d4ec7bce, // -0.99006, 0.14066 0xbfefb20dc681d54d, 0x3fc19d8940be24e7, // -0.99049, 0.13762 0xbfefb5797195d741, 0x3fc139f0cedaf576, // -0.9909, 0.13458 0xbfefb8d18d66adb7, 0x3fc0d64dbcb26786, // -0.99131, 0.13154 0xbfefbc1617e44186, 0x3fc072a047ba831d, // -0.99171, 0.1285 0xbfefbf470f0a8d88, 0x3fc00ee8ad6fb85b, // -0.9921, 0.12545 0xbfefc26470e19fd3, 0x3fbf564e56a9730e, // -0.99248, 0.12241 0xbfefc56e3b7d9af6, 0x3fbe8eb7fde4aa3e, // -0.99285, 0.11937 0xbfefc8646cfeb721, 0x3fbdc70ecbae9fc8, // -0.99321, 0.11632 0xbfefcb4703914354, 0x3fbcff533b307dc1, // -0.99356, 0.11327 0xbfefce15fd6da67b, 0x3fbc3785c79ec2d5, // -0.99391, 0.11022 0xbfefd0d158d86087, 0x3fbb6fa6ec38f64c, // -0.99424, 0.10717 0xbfefd37914220b84, 0x3fbaa7b724495c04, // -0.99456, 0.10412 0xbfefd60d2da75c9e, 0x3fb9dfb6eb24a85c, // -0.99488, 0.10107 0xbfefd88da3d12526, 0x3fb917a6bc29b42c, // -0.99518, 0.098017 0xbfefdafa7514538c, 0x3fb84f8712c130a0, // -0.99548, 0.094963 0xbfefdd539ff1f456, 0x3fb787586a5d5b21, // -0.99577, 0.091909 0xbfefdf9922f73307, 0x3fb6bf1b3e79b129, // -0.99604, 0.088854 0xbfefe1cafcbd5b09, 0x3fb5f6d00a9aa419, // -0.99631, 0.085797 0xbfefe3e92be9d886, 0x3fb52e774a4d4d0a, // -0.99657, 0.08274 0xbfefe5f3af2e3940, 0x3fb4661179272096, // -0.99682, 0.079682 0xbfefe7ea85482d60, 0x3fb39d9f12c5a299, // -0.99706, 0.076624 0xbfefe9cdad01883a, 0x3fb2d52092ce19f6, // -0.99729, 0.073565 0xbfefeb9d2530410f, 0x3fb20c9674ed444c, // -0.99751, 0.070505 0xbfefed58ecb673c4, 0x3fb1440134d709b2, // -0.99772, 0.067444 0xbfefef0102826191, 0x3fb07b614e463064, // -0.99793, 0.064383 0xbfeff095658e71ad, 0x3faf656e79f820e0, // -0.99812, 0.061321 0xbfeff21614e131ed, 0x3fadd406f9808ec8, // -0.9983, 0.058258 0xbfeff3830f8d575c, 0x3fac428d12c0d7e3, // -0.99848, 0.055195 0xbfeff4dc54b1bed3, 0x3faab101bd5f8317, // -0.99864, 0.052132 0xbfeff621e3796d7e, 0x3fa91f65f10dd814, // -0.9988, 0.049068 0xbfeff753bb1b9164, 0x3fa78dbaa5874685, // -0.99894, 0.046003 0xbfeff871dadb81df, 0x3fa5fc00d290cd43, // -0.99908, 0.042938 0xbfeff97c4208c014, 0x3fa46a396ff86179, // -0.9992, 0.039873 0xbfeffa72effef75d, 0x3fa2d865759455cd, // -0.99932, 0.036807 0xbfeffb55e425fdae, 0x3fa14685db42c17e, // -0.99943, 0.033741 0xbfeffc251df1d3f8, 0x3f9f693731d1cf01, // -0.99953, 0.030675 0xbfeffce09ce2a679, 0x3f9c454f4ce53b1c, // -0.99962, 0.027608 0xbfeffd886084cd0d, 0x3f992155f7a3667e, // -0.9997, 0.024541 0xbfeffe1c6870cb77, 0x3f95fd4d21fab226, // -0.99977, 0.021474 0xbfeffe9cb44b51a1, 0x3f92d936bbe30efd, // -0.99983, 0.018407 0xbfefff0943c53bd1, 0x3f8f6a296ab997ca, // -0.99988, 0.015339 0xbfefff62169b92db, 0x3f8921d1fcdec784, // -0.99992, 0.012272 0xbfefffa72c978c4f, 0x3f82d96b0e509703, // -0.99996, 0.0092038 0xbfefffd8858e8a92, 0x3f7921f0fe670071, // -0.99998, 0.0061359 0xbfeffff621621d02, 0x3f6921f8becca4ba, // -1, 0.003068 0xbff0000000000000, 0x0000000000000000, // -1, 0 0xbfeffff621621d02, 0xbf6921f8becca4ba, // -1, -0.003068 0xbfefffd8858e8a92, 0xbf7921f0fe670071, // -0.99998,-0.0061359 0xbfefffa72c978c4f, 0xbf82d96b0e509703, // -0.99996,-0.0092038 0xbfefff62169b92db, 0xbf8921d1fcdec784, // -0.99992, -0.012272 0xbfefff0943c53bd1, 0xbf8f6a296ab997ca, // -0.99988, -0.015339 0xbfeffe9cb44b51a1, 0xbf92d936bbe30efd, // -0.99983, -0.018407 0xbfeffe1c6870cb77, 0xbf95fd4d21fab226, // -0.99977, -0.021474 0xbfeffd886084cd0d, 0xbf992155f7a3667e, // -0.9997, -0.024541 0xbfeffce09ce2a679, 0xbf9c454f4ce53b1c, // -0.99962, -0.027608 0xbfeffc251df1d3f8, 0xbf9f693731d1cf01, // -0.99953, -0.030675 0xbfeffb55e425fdae, 0xbfa14685db42c17e, // -0.99943, -0.033741 0xbfeffa72effef75d, 0xbfa2d865759455cd, // -0.99932, -0.036807 0xbfeff97c4208c014, 0xbfa46a396ff86179, // -0.9992, -0.039873 0xbfeff871dadb81df, 0xbfa5fc00d290cd43, // -0.99908, -0.042938 0xbfeff753bb1b9164, 0xbfa78dbaa5874685, // -0.99894, -0.046003 0xbfeff621e3796d7e, 0xbfa91f65f10dd814, // -0.9988, -0.049068 0xbfeff4dc54b1bed3, 0xbfaab101bd5f8317, // -0.99864, -0.052132 0xbfeff3830f8d575c, 0xbfac428d12c0d7e3, // -0.99848, -0.055195 0xbfeff21614e131ed, 0xbfadd406f9808ec8, // -0.9983, -0.058258 0xbfeff095658e71ad, 0xbfaf656e79f820e0, // -0.99812, -0.061321 0xbfefef0102826191, 0xbfb07b614e463064, // -0.99793, -0.064383 0xbfefed58ecb673c4, 0xbfb1440134d709b2, // -0.99772, -0.067444 0xbfefeb9d2530410f, 0xbfb20c9674ed444c, // -0.99751, -0.070505 0xbfefe9cdad01883a, 0xbfb2d52092ce19f6, // -0.99729, -0.073565 0xbfefe7ea85482d60, 0xbfb39d9f12c5a299, // -0.99706, -0.076624 0xbfefe5f3af2e3940, 0xbfb4661179272096, // -0.99682, -0.079682 0xbfefe3e92be9d886, 0xbfb52e774a4d4d0a, // -0.99657, -0.08274 0xbfefe1cafcbd5b09, 0xbfb5f6d00a9aa419, // -0.99631, -0.085797 0xbfefdf9922f73307, 0xbfb6bf1b3e79b129, // -0.99604, -0.088854 0xbfefdd539ff1f456, 0xbfb787586a5d5b21, // -0.99577, -0.091909 0xbfefdafa7514538c, 0xbfb84f8712c130a0, // -0.99548, -0.094963 0xbfefd88da3d12526, 0xbfb917a6bc29b42c, // -0.99518, -0.098017 0xbfefd60d2da75c9e, 0xbfb9dfb6eb24a85c, // -0.99488, -0.10107 0xbfefd37914220b84, 0xbfbaa7b724495c04, // -0.99456, -0.10412 0xbfefd0d158d86087, 0xbfbb6fa6ec38f64c, // -0.99424, -0.10717 0xbfefce15fd6da67b, 0xbfbc3785c79ec2d5, // -0.99391, -0.11022 0xbfefcb4703914354, 0xbfbcff533b307dc1, // -0.99356, -0.11327 0xbfefc8646cfeb721, 0xbfbdc70ecbae9fc8, // -0.99321, -0.11632 0xbfefc56e3b7d9af6, 0xbfbe8eb7fde4aa3e, // -0.99285, -0.11937 0xbfefc26470e19fd3, 0xbfbf564e56a9730e, // -0.99248, -0.12241 0xbfefbf470f0a8d88, 0xbfc00ee8ad6fb85b, // -0.9921, -0.12545 0xbfefbc1617e44186, 0xbfc072a047ba831d, // -0.99171, -0.1285 0xbfefb8d18d66adb7, 0xbfc0d64dbcb26786, // -0.99131, -0.13154 0xbfefb5797195d741, 0xbfc139f0cedaf576, // -0.9909, -0.13458 0xbfefb20dc681d54d, 0xbfc19d8940be24e7, // -0.99049, -0.13762 0xbfefae8e8e46cfbb, 0xbfc20116d4ec7bce, // -0.99006, -0.14066 0xbfefaafbcb0cfddc, 0xbfc264994dfd340a, // -0.98962, -0.1437 0xbfefa7557f08a517, 0xbfc2c8106e8e613a, // -0.98918, -0.14673 0xbfefa39bac7a1791, 0xbfc32b7bf94516a7, // -0.98872, -0.14976 0xbfef9fce55adb2c8, 0xbfc38edbb0cd8d14, // -0.98826, -0.1528 0xbfef9bed7cfbde29, 0xbfc3f22f57db4893, // -0.98778, -0.15583 0xbfef97f924c9099b, 0xbfc45576b1293e5a, // -0.9873, -0.15886 0xbfef93f14f85ac08, 0xbfc4b8b17f79fa88, // -0.98681, -0.16189 0xbfef8fd5ffae41db, 0xbfc51bdf8597c5f2, // -0.98631, -0.16491 0xbfef8ba737cb4b78, 0xbfc57f008654cbde, // -0.9858, -0.16794 0xbfef8764fa714ba9, 0xbfc5e214448b3fc6, // -0.98528, -0.17096 0xbfef830f4a40c60c, 0xbfc6451a831d830d, // -0.98475, -0.17398 0xbfef7ea629e63d6e, 0xbfc6a81304f64ab2, // -0.98421, -0.177 0xbfef7a299c1a322a, 0xbfc70afd8d08c4ff, // -0.98366, -0.18002 0xbfef7599a3a12077, 0xbfc76dd9de50bf31, // -0.98311, -0.18304 0xbfef70f6434b7eb7, 0xbfc7d0a7bbd2cb1b, // -0.98254, -0.18606 0xbfef6c3f7df5bbb7, 0xbfc83366e89c64c5, // -0.98196, -0.18907 0xbfef677556883cee, 0xbfc8961727c41804, // -0.98138, -0.19208 0xbfef6297cff75cb0, 0xbfc8f8b83c69a60a, // -0.98079, -0.19509 0xbfef5da6ed43685d, 0xbfc95b49e9b62af9, // -0.98018, -0.1981 0xbfef58a2b1789e84, 0xbfc9bdcbf2dc4366, // -0.97957, -0.2011 0xbfef538b1faf2d07, 0xbfca203e1b1831da, // -0.97895, -0.20411 0xbfef4e603b0b2f2d, 0xbfca82a025b00451, // -0.97832, -0.20711 0xbfef492206bcabb4, 0xbfcae4f1d5f3b9ab, // -0.97768, -0.21011 0xbfef43d085ff92dd, 0xbfcb4732ef3d6722, // -0.97703, -0.21311 0xbfef3e6bbc1bbc65, 0xbfcba96334f15dad, // -0.97637, -0.21611 0xbfef38f3ac64e589, 0xbfcc0b826a7e4f63, // -0.9757, -0.2191 0xbfef33685a3aaef0, 0xbfcc6d90535d74dc, // -0.97503, -0.22209 0xbfef2dc9c9089a9d, 0xbfcccf8cb312b286, // -0.97434, -0.22508 0xbfef2817fc4609ce, 0xbfcd31774d2cbdee, // -0.97364, -0.22807 0xbfef2252f7763ada, 0xbfcd934fe5454311, // -0.97294, -0.23106 0xbfef1c7abe284708, 0xbfcdf5163f01099a, // -0.97223, -0.23404 0xbfef168f53f7205d, 0xbfce56ca1e101a1b, // -0.9715, -0.23702 0xbfef1090bc898f5f, 0xbfceb86b462de348, // -0.97077, -0.24 0xbfef0a7efb9230d7, 0xbfcf19f97b215f1a, // -0.97003, -0.24298 0xbfef045a14cf738c, 0xbfcf7b7480bd3801, // -0.96928, -0.24596 0xbfeefe220c0b95ec, 0xbfcfdcdc1adfedf8, // -0.96852, -0.24893 0xbfeef7d6e51ca3c0, 0xbfd01f1806b9fdd2, // -0.96775, -0.2519 0xbfeef178a3e473c2, 0xbfd04fb80e37fdae, // -0.96698, -0.25487 0xbfeeeb074c50a544, 0xbfd0804e05eb661e, // -0.96619, -0.25783 0xbfeee482e25a9dbc, 0xbfd0b0d9cfdbdb90, // -0.96539, -0.26079 0xbfeeddeb6a078651, 0xbfd0e15b4e1749cd, // -0.96459, -0.26375 0xbfeed740e7684963, 0xbfd111d262b1f677, // -0.96378, -0.26671 0xbfeed0835e999009, 0xbfd1423eefc69378, // -0.96295, -0.26967 0xbfeec9b2d3c3bf84, 0xbfd172a0d7765177, // -0.96212, -0.27262 0xbfeec2cf4b1af6b2, 0xbfd1a2f7fbe8f243, // -0.96128, -0.27557 0xbfeebbd8c8df0b74, 0xbfd1d3443f4cdb3d, // -0.96043, -0.27852 0xbfeeb4cf515b8811, 0xbfd2038583d727bd, // -0.95957, -0.28146 0xbfeeadb2e8e7a88e, 0xbfd233bbabc3bb72, // -0.9587, -0.28441 0xbfeea68393e65800, 0xbfd263e6995554ba, // -0.95783, -0.28735 0xbfee9f4156c62dda, 0xbfd294062ed59f05, // -0.95694, -0.29028 0xbfee97ec36016b30, 0xbfd2c41a4e954520, // -0.95605, -0.29322 0xbfee9084361df7f3, 0xbfd2f422daec0386, // -0.95514, -0.29615 0xbfee89095bad6025, 0xbfd3241fb638baaf, // -0.95423, -0.29908 0xbfee817bab4cd10d, 0xbfd35410c2e18152, // -0.95331, -0.30201 0xbfee79db29a5165a, 0xbfd383f5e353b6aa, // -0.95238, -0.30493 0xbfee7227db6a9744, 0xbfd3b3cefa0414b7, // -0.95144, -0.30785 0xbfee6a61c55d53a7, 0xbfd3e39be96ec271, // -0.95049, -0.31077 0xbfee6288ec48e112, 0xbfd4135c94176602, // -0.94953, -0.31368 0xbfee5a9d550467d3, 0xbfd44310dc8936f0, // -0.94856, -0.31659 0xbfee529f04729ffc, 0xbfd472b8a5571054, // -0.94759, -0.3195 0xbfee4a8dff81ce5e, 0xbfd4a253d11b82f3, // -0.9466, -0.32241 0xbfee426a4b2bc17e, 0xbfd4d1e24278e76a, // -0.94561, -0.32531 0xbfee3a33ec75ce85, 0xbfd50163dc197047, // -0.9446, -0.32821 0xbfee31eae870ce25, 0xbfd530d880af3c24, // -0.94359, -0.33111 0xbfee298f4439197a, 0xbfd5604012f467b4, // -0.94257, -0.334 0xbfee212104f686e5, 0xbfd58f9a75ab1fdd, // -0.94154, -0.33689 0xbfee18a02fdc66d9, 0xbfd5bee78b9db3b6, // -0.94051, -0.33978 0xbfee100cca2980ac, 0xbfd5ee27379ea693, // -0.93946, -0.34266 0xbfee0766d9280f54, 0xbfd61d595c88c203, // -0.9384, -0.34554 0xbfedfeae622dbe2b, 0xbfd64c7ddd3f27c6, // -0.93734, -0.34842 0xbfedf5e36a9ba59c, 0xbfd67b949cad63ca, // -0.93627, -0.35129 0xbfeded05f7de47da, 0xbfd6aa9d7dc77e16, // -0.93518, -0.35416 0xbfede4160f6d8d81, 0xbfd6d998638a0cb5, // -0.93409, -0.35703 0xbfeddb13b6ccc23d, 0xbfd7088530fa459e, // -0.93299, -0.3599 0xbfedd1fef38a915a, 0xbfd73763c9261092, // -0.93188, -0.36276 0xbfedc8d7cb410260, 0xbfd766340f2418f6, // -0.93077, -0.36561 0xbfedbf9e4395759a, 0xbfd794f5e613dfae, // -0.92964, -0.36847 0xbfedb6526238a09b, 0xbfd7c3a9311dcce7, // -0.92851, -0.37132 0xbfedacf42ce68ab9, 0xbfd7f24dd37341e3, // -0.92736, -0.37416 0xbfeda383a9668988, 0xbfd820e3b04eaac4, // -0.92621, -0.37701 0xbfed9a00dd8b3d46, 0xbfd84f6aaaf3903f, // -0.92505, -0.37985 0xbfed906bcf328d46, 0xbfd87de2a6aea963, // -0.92388, -0.38268 0xbfed86c48445a450, 0xbfd8ac4b86d5ed44, // -0.9227, -0.38552 0xbfed7d0b02b8ecf9, 0xbfd8daa52ec8a4af, // -0.92151, -0.38835 0xbfed733f508c0dff, 0xbfd908ef81ef7bd1, // -0.92032, -0.39117 0xbfed696173c9e68b, 0xbfd9372a63bc93d7, // -0.91911, -0.39399 0xbfed5f7172888a7f, 0xbfd96555b7ab948f, // -0.9179, -0.39681 0xbfed556f52e93eb1, 0xbfd993716141bdfe, // -0.91668, -0.39962 0xbfed4b5b1b187524, 0xbfd9c17d440df9f2, // -0.91545, -0.40243 0xbfed4134d14dc93a, 0xbfd9ef7943a8ed8a, // -0.91421, -0.40524 0xbfed36fc7bcbfbdc, 0xbfda1d6543b50ac0, // -0.91296, -0.40804 0xbfed2cb220e0ef9f, 0xbfda4b4127dea1e4, // -0.91171, -0.41084 0xbfed2255c6e5a4e1, 0xbfda790cd3dbf31a, // -0.91044, -0.41364 0xbfed17e7743e35dc, 0xbfdaa6c82b6d3fc9, // -0.90917, -0.41643 0xbfed0d672f59d2b9, 0xbfdad473125cdc08, // -0.90789, -0.41922 0xbfed02d4feb2bd92, 0xbfdb020d6c7f4009, // -0.9066, -0.422 0xbfecf830e8ce467b, 0xbfdb2f971db31972, // -0.9053, -0.42478 0xbfeced7af43cc773, 0xbfdb5d1009e15cc0, // -0.90399, -0.42756 0xbfece2b32799a060, 0xbfdb8a7814fd5693, // -0.90267, -0.43033 0xbfecd7d9898b32f6, 0xbfdbb7cf2304bd01, // -0.90135, -0.43309 0xbfecccee20c2de9f, 0xbfdbe51517ffc0d9, // -0.90002, -0.43586 0xbfecc1f0f3fcfc5c, 0xbfdc1249d8011ee7, // -0.89867, -0.43862 0xbfecb6e20a00da99, 0xbfdc3f6d47263129, // -0.89732, -0.44137 0xbfecabc169a0b901, 0xbfdc6c7f4997000a, // -0.89597, -0.44412 0xbfeca08f19b9c449, 0xbfdc997fc3865388, // -0.8946, -0.44687 0xbfec954b213411f5, 0xbfdcc66e9931c45d, // -0.89322, -0.44961 0xbfec89f587029c13, 0xbfdcf34baee1cd21, // -0.89184, -0.45235 0xbfec7e8e52233cf3, 0xbfdd2016e8e9db5b, // -0.89045, -0.45508 0xbfec7315899eaad7, 0xbfdd4cd02ba8609c, // -0.88905, -0.45781 0xbfec678b3488739b, 0xbfdd79775b86e389, // -0.88764, -0.46054 0xbfec5bef59fef85a, 0xbfdda60c5cfa10d8, // -0.88622, -0.46326 0xbfec5042012b6907, 0xbfddd28f1481cc58, // -0.8848, -0.46598 0xbfec44833141c004, 0xbfddfeff66a941de, // -0.88336, -0.46869 0xbfec38b2f180bdb1, 0xbfde2b5d3806f63b, // -0.88192, -0.4714 0xbfec2cd14931e3f1, 0xbfde57a86d3cd824, // -0.88047, -0.4741 0xbfec20de3fa971b0, 0xbfde83e0eaf85113, // -0.87901, -0.4768 0xbfec14d9dc465e58, 0xbfdeb00695f25620, // -0.87755, -0.47949 0xbfec08c426725549, 0xbfdedc1952ef78d5, // -0.87607, -0.48218 0xbfebfc9d25a1b147, 0xbfdf081906bff7fd, // -0.87459, -0.48487 0xbfebf064e15377dd, 0xbfdf3405963fd068, // -0.87309, -0.48755 0xbfebe41b611154c1, 0xbfdf5fdee656cda3, // -0.8716, -0.49023 0xbfebd7c0ac6f952a, 0xbfdf8ba4dbf89aba, // -0.87009, -0.4929 0xbfebcb54cb0d2327, 0xbfdfb7575c24d2de, // -0.86857, -0.49557 0xbfebbed7c49380ea, 0xbfdfe2f64be7120f, // -0.86705, -0.49823 0xbfebb249a0b6c40d, 0xbfe00740c82b82e0, // -0.86551, -0.50089 0xbfeba5aa673590d2, 0xbfe01cfc874c3eb7, // -0.86397, -0.50354 0xbfeb98fa1fd9155e, 0xbfe032ae55edbd95, // -0.86242, -0.50619 0xbfeb8c38d27504e9, 0xbfe0485626ae221a, // -0.86087, -0.50883 0xbfeb7f6686e792ea, 0xbfe05df3ec31b8b6, // -0.8593, -0.51147 0xbfeb728345196e3e, 0xbfe073879922ffed, // -0.85773, -0.5141 0xbfeb658f14fdbc47, 0xbfe089112032b08c, // -0.85615, -0.51673 0xbfeb5889fe921405, 0xbfe09e907417c5e1, // -0.85456, -0.51936 0xbfeb4b7409de7925, 0xbfe0b405878f85ec, // -0.85296, -0.52198 0xbfeb3e4d3ef55712, 0xbfe0c9704d5d898f, // -0.85136, -0.52459 0xbfeb3115a5f37bf4, 0xbfe0ded0b84bc4b5, // -0.84974, -0.5272 0xbfeb23cd470013b4, 0xbfe0f426bb2a8e7d, // -0.84812, -0.5298 0xbfeb16742a4ca2f5, 0xbfe1097248d0a956, // -0.84649, -0.5324 0xbfeb090a58150200, 0xbfe11eb3541b4b22, // -0.84485, -0.535 0xbfeafb8fd89f57b6, 0xbfe133e9cfee254e, // -0.84321, -0.53759 0xbfeaee04b43c1474, 0xbfe14915af336ceb, // -0.84155, -0.54017 0xbfeae068f345ecef, 0xbfe15e36e4dbe2bc, // -0.83989, -0.54275 0xbfead2bc9e21d511, 0xbfe1734d63dedb49, // -0.83822, -0.54532 0xbfeac4ffbd3efac8, 0xbfe188591f3a46e5, // -0.83655, -0.54789 0xbfeab7325916c0d4, 0xbfe19d5a09f2b9b8, // -0.83486, -0.55046 0xbfeaa9547a2cb98e, 0xbfe1b250171373be, // -0.83317, -0.55302 0xbfea9b66290ea1a3, 0xbfe1c73b39ae68c8, // -0.83147, -0.55557 0xbfea8d676e545ad2, 0xbfe1dc1b64dc4872, // -0.82976, -0.55812 0xbfea7f58529fe69d, 0xbfe1f0f08bbc861b, // -0.82805, -0.56066 0xbfea7138de9d60f5, 0xbfe205baa17560d6, // -0.82632, -0.5632 0xbfea63091b02fae2, 0xbfe21a799933eb58, // -0.82459, -0.56573 0xbfea54c91090f524, 0xbfe22f2d662c13e1, // -0.82285, -0.56826 0xbfea4678c8119ac8, 0xbfe243d5fb98ac1f, // -0.8211, -0.57078 0xbfea38184a593bc6, 0xbfe258734cbb7110, // -0.81935, -0.5733 0xbfea29a7a0462782, 0xbfe26d054cdd12df, // -0.81758, -0.57581 0xbfea1b26d2c0a75e, 0xbfe2818bef4d3cba, // -0.81581, -0.57831 0xbfea0c95eabaf937, 0xbfe2960727629ca8, // -0.81404, -0.58081 0xbfe9fdf4f13149de, 0xbfe2aa76e87aeb58, // -0.81225, -0.58331 0xbfe9ef43ef29af94, 0xbfe2bedb25faf3ea, // -0.81046, -0.5858 0xbfe9e082edb42472, 0xbfe2d333d34e9bb7, // -0.80866, -0.58828 0xbfe9d1b1f5ea80d6, 0xbfe2e780e3e8ea16, // -0.80685, -0.59076 0xbfe9c2d110f075c3, 0xbfe2fbc24b441015, // -0.80503, -0.59323 0xbfe9b3e047f38741, 0xbfe30ff7fce17035, // -0.80321, -0.5957 0xbfe9a4dfa42b06b2, 0xbfe32421ec49a620, // -0.80138, -0.59816 0xbfe995cf2ed80d22, 0xbfe338400d0c8e57, // -0.79954, -0.60062 0xbfe986aef1457594, 0xbfe34c5252c14de1, // -0.79769, -0.60307 0xbfe9777ef4c7d742, 0xbfe36058b10659f3, // -0.79584, -0.60551 0xbfe9683f42bd7fe1, 0xbfe374531b817f8d, // -0.79398, -0.60795 0xbfe958efe48e6dd7, 0xbfe3884185dfeb22, // -0.79211, -0.61038 0xbfe94990e3ac4a6c, 0xbfe39c23e3d63029, // -0.79023, -0.61281 0xbfe93a22499263fc, 0xbfe3affa292050b9, // -0.78835, -0.61523 0xbfe92aa41fc5a815, 0xbfe3c3c44981c517, // -0.78646, -0.61765 0xbfe91b166fd49da2, 0xbfe3d78238c58343, // -0.78456, -0.62006 0xbfe90b7943575efe, 0xbfe3eb33eabe0680, // -0.78265, -0.62246 0xbfe8fbcca3ef940d, 0xbfe3fed9534556d4, // -0.78074, -0.62486 0xbfe8ec109b486c49, 0xbfe41272663d108c, // -0.77882, -0.62725 0xbfe8dc45331698cc, 0xbfe425ff178e6bb1, // -0.77689, -0.62964 0xbfe8cc6a75184655, 0xbfe4397f5b2a4380, // -0.77495, -0.63202 0xbfe8bc806b151741, 0xbfe44cf325091dd6, // -0.77301, -0.63439 0xbfe8ac871ede1d88, 0xbfe4605a692b32a2, // -0.77106, -0.63676 0xbfe89c7e9a4dd4ab, 0xbfe473b51b987347, // -0.7691, -0.63912 0xbfe88c66e7481ba1, 0xbfe48703306091fe, // -0.76714, -0.64148 0xbfe87c400fba2ebf, 0xbfe49a449b9b0938, // -0.76517, -0.64383 0xbfe86c0a1d9aa195, 0xbfe4ad79516722f0, // -0.76319, -0.64618 0xbfe85bc51ae958cc, 0xbfe4c0a145ec0004, // -0.7612, -0.64851 0xbfe84b7111af83f9, 0xbfe4d3bc6d589f80, // -0.75921, -0.65085 0xbfe83b0e0bff976e, 0xbfe4e6cabbe3e5e9, // -0.75721, -0.65317 0xbfe82a9c13f545ff, 0xbfe4f9cc25cca486, // -0.7552, -0.65549 0xbfe81a1b33b57acc, 0xbfe50cc09f59a09b, // -0.75319, -0.65781 0xbfe8098b756e52fa, 0xbfe51fa81cd99aa6, // -0.75117, -0.66011 0xbfe7f8ece3571771, 0xbfe5328292a35596, // -0.74914, -0.66242 0xbfe7e83f87b03686, 0xbfe5454ff5159dfb, // -0.7471, -0.66471 0xbfe7d7836cc33db2, 0xbfe5581038975137, // -0.74506, -0.667 0xbfe7c6b89ce2d333, 0xbfe56ac35197649e, // -0.74301, -0.66928 0xbfe7b5df226aafb0, 0xbfe57d69348cec9f, // -0.74095, -0.67156 0xbfe7a4f707bf97d2, 0xbfe59001d5f723df, // -0.73889, -0.67383 0xbfe79400574f55e4, 0xbfe5a28d2a5d7250, // -0.73682, -0.67609 0xbfe782fb1b90b35b, 0xbfe5b50b264f7448, // -0.73474, -0.67835 0xbfe771e75f037261, 0xbfe5c77bbe65018c, // -0.73265, -0.6806 0xbfe760c52c304764, 0xbfe5d9dee73e345c, // -0.73056, -0.68285 0xbfe74f948da8d28d, 0xbfe5ec3495837074, // -0.72846, -0.68508 0xbfe73e558e079942, 0xbfe5fe7cbde56a0f, // -0.72636, -0.68732 0xbfe72d0837efff97, 0xbfe610b7551d2cde, // -0.72425, -0.68954 0xbfe71bac960e41bf, 0xbfe622e44fec22ff, // -0.72213, -0.69176 0xbfe70a42b3176d7a, 0xbfe63503a31c1be8, // -0.72, -0.69397 0xbfe6f8ca99c95b75, 0xbfe64715437f535b, // -0.71787, -0.69618 0xbfe6e74454eaa8ae, 0xbfe6591925f0783e, // -0.71573, -0.69838 0xbfe6d5afef4aafcc, 0xbfe66b0f3f52b386, // -0.71358, -0.70057 0xbfe6c40d73c18275, 0xbfe67cf78491af10, // -0.71143, -0.70275 0xbfe6b25ced2fe29c, 0xbfe68ed1eaa19c71, // -0.70927, -0.70493 0xbfe6a09e667f3bcc, 0xbfe6a09e667f3bcc, // -0.70711, -0.70711 0xbfe68ed1eaa19c71, 0xbfe6b25ced2fe29c, // -0.70493, -0.70927 0xbfe67cf78491af10, 0xbfe6c40d73c18275, // -0.70275, -0.71143 0xbfe66b0f3f52b386, 0xbfe6d5afef4aafcc, // -0.70057, -0.71358 0xbfe6591925f0783e, 0xbfe6e74454eaa8ae, // -0.69838, -0.71573 0xbfe64715437f535b, 0xbfe6f8ca99c95b75, // -0.69618, -0.71787 0xbfe63503a31c1be8, 0xbfe70a42b3176d7a, // -0.69397, -0.72 0xbfe622e44fec22ff, 0xbfe71bac960e41bf, // -0.69176, -0.72213 0xbfe610b7551d2cde, 0xbfe72d0837efff97, // -0.68954, -0.72425 0xbfe5fe7cbde56a0f, 0xbfe73e558e079942, // -0.68732, -0.72636 0xbfe5ec3495837074, 0xbfe74f948da8d28d, // -0.68508, -0.72846 0xbfe5d9dee73e345c, 0xbfe760c52c304764, // -0.68285, -0.73056 0xbfe5c77bbe65018c, 0xbfe771e75f037261, // -0.6806, -0.73265 0xbfe5b50b264f7448, 0xbfe782fb1b90b35b, // -0.67835, -0.73474 0xbfe5a28d2a5d7250, 0xbfe79400574f55e4, // -0.67609, -0.73682 0xbfe59001d5f723df, 0xbfe7a4f707bf97d2, // -0.67383, -0.73889 0xbfe57d69348cec9f, 0xbfe7b5df226aafb0, // -0.67156, -0.74095 0xbfe56ac35197649e, 0xbfe7c6b89ce2d333, // -0.66928, -0.74301 0xbfe5581038975137, 0xbfe7d7836cc33db2, // -0.667, -0.74506 0xbfe5454ff5159dfb, 0xbfe7e83f87b03686, // -0.66471, -0.7471 0xbfe5328292a35596, 0xbfe7f8ece3571771, // -0.66242, -0.74914 0xbfe51fa81cd99aa6, 0xbfe8098b756e52fa, // -0.66011, -0.75117 0xbfe50cc09f59a09b, 0xbfe81a1b33b57acc, // -0.65781, -0.75319 0xbfe4f9cc25cca486, 0xbfe82a9c13f545ff, // -0.65549, -0.7552 0xbfe4e6cabbe3e5e9, 0xbfe83b0e0bff976e, // -0.65317, -0.75721 0xbfe4d3bc6d589f80, 0xbfe84b7111af83f9, // -0.65085, -0.75921 0xbfe4c0a145ec0004, 0xbfe85bc51ae958cc, // -0.64851, -0.7612 0xbfe4ad79516722f0, 0xbfe86c0a1d9aa195, // -0.64618, -0.76319 0xbfe49a449b9b0938, 0xbfe87c400fba2ebf, // -0.64383, -0.76517 0xbfe48703306091fe, 0xbfe88c66e7481ba1, // -0.64148, -0.76714 0xbfe473b51b987347, 0xbfe89c7e9a4dd4ab, // -0.63912, -0.7691 0xbfe4605a692b32a2, 0xbfe8ac871ede1d88, // -0.63676, -0.77106 0xbfe44cf325091dd6, 0xbfe8bc806b151741, // -0.63439, -0.77301 0xbfe4397f5b2a4380, 0xbfe8cc6a75184655, // -0.63202, -0.77495 0xbfe425ff178e6bb1, 0xbfe8dc45331698cc, // -0.62964, -0.77689 0xbfe41272663d108c, 0xbfe8ec109b486c49, // -0.62725, -0.77882 0xbfe3fed9534556d4, 0xbfe8fbcca3ef940d, // -0.62486, -0.78074 0xbfe3eb33eabe0680, 0xbfe90b7943575efe, // -0.62246, -0.78265 0xbfe3d78238c58343, 0xbfe91b166fd49da2, // -0.62006, -0.78456 0xbfe3c3c44981c517, 0xbfe92aa41fc5a815, // -0.61765, -0.78646 0xbfe3affa292050b9, 0xbfe93a22499263fc, // -0.61523, -0.78835 0xbfe39c23e3d63029, 0xbfe94990e3ac4a6c, // -0.61281, -0.79023 0xbfe3884185dfeb22, 0xbfe958efe48e6dd7, // -0.61038, -0.79211 0xbfe374531b817f8d, 0xbfe9683f42bd7fe1, // -0.60795, -0.79398 0xbfe36058b10659f3, 0xbfe9777ef4c7d742, // -0.60551, -0.79584 0xbfe34c5252c14de1, 0xbfe986aef1457594, // -0.60307, -0.79769 0xbfe338400d0c8e57, 0xbfe995cf2ed80d22, // -0.60062, -0.79954 0xbfe32421ec49a620, 0xbfe9a4dfa42b06b2, // -0.59816, -0.80138 0xbfe30ff7fce17035, 0xbfe9b3e047f38741, // -0.5957, -0.80321 0xbfe2fbc24b441015, 0xbfe9c2d110f075c3, // -0.59323, -0.80503 0xbfe2e780e3e8ea16, 0xbfe9d1b1f5ea80d6, // -0.59076, -0.80685 0xbfe2d333d34e9bb7, 0xbfe9e082edb42472, // -0.58828, -0.80866 0xbfe2bedb25faf3ea, 0xbfe9ef43ef29af94, // -0.5858, -0.81046 0xbfe2aa76e87aeb58, 0xbfe9fdf4f13149de, // -0.58331, -0.81225 0xbfe2960727629ca8, 0xbfea0c95eabaf937, // -0.58081, -0.81404 0xbfe2818bef4d3cba, 0xbfea1b26d2c0a75e, // -0.57831, -0.81581 0xbfe26d054cdd12df, 0xbfea29a7a0462782, // -0.57581, -0.81758 0xbfe258734cbb7110, 0xbfea38184a593bc6, // -0.5733, -0.81935 0xbfe243d5fb98ac1f, 0xbfea4678c8119ac8, // -0.57078, -0.8211 0xbfe22f2d662c13e1, 0xbfea54c91090f524, // -0.56826, -0.82285 0xbfe21a799933eb58, 0xbfea63091b02fae2, // -0.56573, -0.82459 0xbfe205baa17560d6, 0xbfea7138de9d60f5, // -0.5632, -0.82632 0xbfe1f0f08bbc861b, 0xbfea7f58529fe69d, // -0.56066, -0.82805 0xbfe1dc1b64dc4872, 0xbfea8d676e545ad2, // -0.55812, -0.82976 0xbfe1c73b39ae68c8, 0xbfea9b66290ea1a3, // -0.55557, -0.83147 0xbfe1b250171373be, 0xbfeaa9547a2cb98e, // -0.55302, -0.83317 0xbfe19d5a09f2b9b8, 0xbfeab7325916c0d4, // -0.55046, -0.83486 0xbfe188591f3a46e5, 0xbfeac4ffbd3efac8, // -0.54789, -0.83655 0xbfe1734d63dedb49, 0xbfead2bc9e21d511, // -0.54532, -0.83822 0xbfe15e36e4dbe2bc, 0xbfeae068f345ecef, // -0.54275, -0.83989 0xbfe14915af336ceb, 0xbfeaee04b43c1474, // -0.54017, -0.84155 0xbfe133e9cfee254e, 0xbfeafb8fd89f57b6, // -0.53759, -0.84321 0xbfe11eb3541b4b22, 0xbfeb090a58150200, // -0.535, -0.84485 0xbfe1097248d0a956, 0xbfeb16742a4ca2f5, // -0.5324, -0.84649 0xbfe0f426bb2a8e7d, 0xbfeb23cd470013b4, // -0.5298, -0.84812 0xbfe0ded0b84bc4b5, 0xbfeb3115a5f37bf4, // -0.5272, -0.84974 0xbfe0c9704d5d898f, 0xbfeb3e4d3ef55712, // -0.52459, -0.85136 0xbfe0b405878f85ec, 0xbfeb4b7409de7925, // -0.52198, -0.85296 0xbfe09e907417c5e1, 0xbfeb5889fe921405, // -0.51936, -0.85456 0xbfe089112032b08c, 0xbfeb658f14fdbc47, // -0.51673, -0.85615 0xbfe073879922ffed, 0xbfeb728345196e3e, // -0.5141, -0.85773 0xbfe05df3ec31b8b6, 0xbfeb7f6686e792ea, // -0.51147, -0.8593 0xbfe0485626ae221a, 0xbfeb8c38d27504e9, // -0.50883, -0.86087 0xbfe032ae55edbd95, 0xbfeb98fa1fd9155e, // -0.50619, -0.86242 0xbfe01cfc874c3eb7, 0xbfeba5aa673590d2, // -0.50354, -0.86397 0xbfe00740c82b82e0, 0xbfebb249a0b6c40d, // -0.50089, -0.86551 0xbfdfe2f64be7120f, 0xbfebbed7c49380ea, // -0.49823, -0.86705 0xbfdfb7575c24d2de, 0xbfebcb54cb0d2327, // -0.49557, -0.86857 0xbfdf8ba4dbf89aba, 0xbfebd7c0ac6f952a, // -0.4929, -0.87009 0xbfdf5fdee656cda3, 0xbfebe41b611154c1, // -0.49023, -0.8716 0xbfdf3405963fd068, 0xbfebf064e15377dd, // -0.48755, -0.87309 0xbfdf081906bff7fd, 0xbfebfc9d25a1b147, // -0.48487, -0.87459 0xbfdedc1952ef78d5, 0xbfec08c426725549, // -0.48218, -0.87607 0xbfdeb00695f25620, 0xbfec14d9dc465e58, // -0.47949, -0.87755 0xbfde83e0eaf85113, 0xbfec20de3fa971b0, // -0.4768, -0.87901 0xbfde57a86d3cd824, 0xbfec2cd14931e3f1, // -0.4741, -0.88047 0xbfde2b5d3806f63b, 0xbfec38b2f180bdb1, // -0.4714, -0.88192 0xbfddfeff66a941de, 0xbfec44833141c004, // -0.46869, -0.88336 0xbfddd28f1481cc58, 0xbfec5042012b6907, // -0.46598, -0.8848 0xbfdda60c5cfa10d8, 0xbfec5bef59fef85a, // -0.46326, -0.88622 0xbfdd79775b86e389, 0xbfec678b3488739b, // -0.46054, -0.88764 0xbfdd4cd02ba8609c, 0xbfec7315899eaad7, // -0.45781, -0.88905 0xbfdd2016e8e9db5b, 0xbfec7e8e52233cf3, // -0.45508, -0.89045 0xbfdcf34baee1cd21, 0xbfec89f587029c13, // -0.45235, -0.89184 0xbfdcc66e9931c45d, 0xbfec954b213411f5, // -0.44961, -0.89322 0xbfdc997fc3865388, 0xbfeca08f19b9c449, // -0.44687, -0.8946 0xbfdc6c7f4997000a, 0xbfecabc169a0b901, // -0.44412, -0.89597 0xbfdc3f6d47263129, 0xbfecb6e20a00da99, // -0.44137, -0.89732 0xbfdc1249d8011ee7, 0xbfecc1f0f3fcfc5c, // -0.43862, -0.89867 0xbfdbe51517ffc0d9, 0xbfecccee20c2de9f, // -0.43586, -0.90002 0xbfdbb7cf2304bd01, 0xbfecd7d9898b32f6, // -0.43309, -0.90135 0xbfdb8a7814fd5693, 0xbfece2b32799a060, // -0.43033, -0.90267 0xbfdb5d1009e15cc0, 0xbfeced7af43cc773, // -0.42756, -0.90399 0xbfdb2f971db31972, 0xbfecf830e8ce467b, // -0.42478, -0.9053 0xbfdb020d6c7f4009, 0xbfed02d4feb2bd92, // -0.422, -0.9066 0xbfdad473125cdc08, 0xbfed0d672f59d2b9, // -0.41922, -0.90789 0xbfdaa6c82b6d3fc9, 0xbfed17e7743e35dc, // -0.41643, -0.90917 0xbfda790cd3dbf31a, 0xbfed2255c6e5a4e1, // -0.41364, -0.91044 0xbfda4b4127dea1e4, 0xbfed2cb220e0ef9f, // -0.41084, -0.91171 0xbfda1d6543b50ac0, 0xbfed36fc7bcbfbdc, // -0.40804, -0.91296 0xbfd9ef7943a8ed8a, 0xbfed4134d14dc93a, // -0.40524, -0.91421 0xbfd9c17d440df9f2, 0xbfed4b5b1b187524, // -0.40243, -0.91545 0xbfd993716141bdfe, 0xbfed556f52e93eb1, // -0.39962, -0.91668 0xbfd96555b7ab948f, 0xbfed5f7172888a7f, // -0.39681, -0.9179 0xbfd9372a63bc93d7, 0xbfed696173c9e68b, // -0.39399, -0.91911 0xbfd908ef81ef7bd1, 0xbfed733f508c0dff, // -0.39117, -0.92032 0xbfd8daa52ec8a4af, 0xbfed7d0b02b8ecf9, // -0.38835, -0.92151 0xbfd8ac4b86d5ed44, 0xbfed86c48445a450, // -0.38552, -0.9227 0xbfd87de2a6aea963, 0xbfed906bcf328d46, // -0.38268, -0.92388 0xbfd84f6aaaf3903f, 0xbfed9a00dd8b3d46, // -0.37985, -0.92505 0xbfd820e3b04eaac4, 0xbfeda383a9668988, // -0.37701, -0.92621 0xbfd7f24dd37341e3, 0xbfedacf42ce68ab9, // -0.37416, -0.92736 0xbfd7c3a9311dcce7, 0xbfedb6526238a09b, // -0.37132, -0.92851 0xbfd794f5e613dfae, 0xbfedbf9e4395759a, // -0.36847, -0.92964 0xbfd766340f2418f6, 0xbfedc8d7cb410260, // -0.36561, -0.93077 0xbfd73763c9261092, 0xbfedd1fef38a915a, // -0.36276, -0.93188 0xbfd7088530fa459e, 0xbfeddb13b6ccc23d, // -0.3599, -0.93299 0xbfd6d998638a0cb5, 0xbfede4160f6d8d81, // -0.35703, -0.93409 0xbfd6aa9d7dc77e16, 0xbfeded05f7de47da, // -0.35416, -0.93518 0xbfd67b949cad63ca, 0xbfedf5e36a9ba59c, // -0.35129, -0.93627 0xbfd64c7ddd3f27c6, 0xbfedfeae622dbe2b, // -0.34842, -0.93734 0xbfd61d595c88c203, 0xbfee0766d9280f54, // -0.34554, -0.9384 0xbfd5ee27379ea693, 0xbfee100cca2980ac, // -0.34266, -0.93946 0xbfd5bee78b9db3b6, 0xbfee18a02fdc66d9, // -0.33978, -0.94051 0xbfd58f9a75ab1fdd, 0xbfee212104f686e5, // -0.33689, -0.94154 0xbfd5604012f467b4, 0xbfee298f4439197a, // -0.334, -0.94257 0xbfd530d880af3c24, 0xbfee31eae870ce25, // -0.33111, -0.94359 0xbfd50163dc197047, 0xbfee3a33ec75ce85, // -0.32821, -0.9446 0xbfd4d1e24278e76a, 0xbfee426a4b2bc17e, // -0.32531, -0.94561 0xbfd4a253d11b82f3, 0xbfee4a8dff81ce5e, // -0.32241, -0.9466 0xbfd472b8a5571054, 0xbfee529f04729ffc, // -0.3195, -0.94759 0xbfd44310dc8936f0, 0xbfee5a9d550467d3, // -0.31659, -0.94856 0xbfd4135c94176602, 0xbfee6288ec48e112, // -0.31368, -0.94953 0xbfd3e39be96ec271, 0xbfee6a61c55d53a7, // -0.31077, -0.95049 0xbfd3b3cefa0414b7, 0xbfee7227db6a9744, // -0.30785, -0.95144 0xbfd383f5e353b6aa, 0xbfee79db29a5165a, // -0.30493, -0.95238 0xbfd35410c2e18152, 0xbfee817bab4cd10d, // -0.30201, -0.95331 0xbfd3241fb638baaf, 0xbfee89095bad6025, // -0.29908, -0.95423 0xbfd2f422daec0386, 0xbfee9084361df7f3, // -0.29615, -0.95514 0xbfd2c41a4e954520, 0xbfee97ec36016b30, // -0.29322, -0.95605 0xbfd294062ed59f05, 0xbfee9f4156c62dda, // -0.29028, -0.95694 0xbfd263e6995554ba, 0xbfeea68393e65800, // -0.28735, -0.95783 0xbfd233bbabc3bb72, 0xbfeeadb2e8e7a88e, // -0.28441, -0.9587 0xbfd2038583d727bd, 0xbfeeb4cf515b8811, // -0.28146, -0.95957 0xbfd1d3443f4cdb3d, 0xbfeebbd8c8df0b74, // -0.27852, -0.96043 0xbfd1a2f7fbe8f243, 0xbfeec2cf4b1af6b2, // -0.27557, -0.96128 0xbfd172a0d7765177, 0xbfeec9b2d3c3bf84, // -0.27262, -0.96212 0xbfd1423eefc69378, 0xbfeed0835e999009, // -0.26967, -0.96295 0xbfd111d262b1f677, 0xbfeed740e7684963, // -0.26671, -0.96378 0xbfd0e15b4e1749cd, 0xbfeeddeb6a078651, // -0.26375, -0.96459 0xbfd0b0d9cfdbdb90, 0xbfeee482e25a9dbc, // -0.26079, -0.96539 0xbfd0804e05eb661e, 0xbfeeeb074c50a544, // -0.25783, -0.96619 0xbfd04fb80e37fdae, 0xbfeef178a3e473c2, // -0.25487, -0.96698 0xbfd01f1806b9fdd2, 0xbfeef7d6e51ca3c0, // -0.2519, -0.96775 0xbfcfdcdc1adfedf8, 0xbfeefe220c0b95ec, // -0.24893, -0.96852 0xbfcf7b7480bd3801, 0xbfef045a14cf738c, // -0.24596, -0.96928 0xbfcf19f97b215f1a, 0xbfef0a7efb9230d7, // -0.24298, -0.97003 0xbfceb86b462de348, 0xbfef1090bc898f5f, // -0.24, -0.97077 0xbfce56ca1e101a1b, 0xbfef168f53f7205d, // -0.23702, -0.9715 0xbfcdf5163f01099a, 0xbfef1c7abe284708, // -0.23404, -0.97223 0xbfcd934fe5454311, 0xbfef2252f7763ada, // -0.23106, -0.97294 0xbfcd31774d2cbdee, 0xbfef2817fc4609ce, // -0.22807, -0.97364 0xbfcccf8cb312b286, 0xbfef2dc9c9089a9d, // -0.22508, -0.97434 0xbfcc6d90535d74dc, 0xbfef33685a3aaef0, // -0.22209, -0.97503 0xbfcc0b826a7e4f63, 0xbfef38f3ac64e589, // -0.2191, -0.9757 0xbfcba96334f15dad, 0xbfef3e6bbc1bbc65, // -0.21611, -0.97637 0xbfcb4732ef3d6722, 0xbfef43d085ff92dd, // -0.21311, -0.97703 0xbfcae4f1d5f3b9ab, 0xbfef492206bcabb4, // -0.21011, -0.97768 0xbfca82a025b00451, 0xbfef4e603b0b2f2d, // -0.20711, -0.97832 0xbfca203e1b1831da, 0xbfef538b1faf2d07, // -0.20411, -0.97895 0xbfc9bdcbf2dc4366, 0xbfef58a2b1789e84, // -0.2011, -0.97957 0xbfc95b49e9b62af9, 0xbfef5da6ed43685d, // -0.1981, -0.98018 0xbfc8f8b83c69a60a, 0xbfef6297cff75cb0, // -0.19509, -0.98079 0xbfc8961727c41804, 0xbfef677556883cee, // -0.19208, -0.98138 0xbfc83366e89c64c5, 0xbfef6c3f7df5bbb7, // -0.18907, -0.98196 0xbfc7d0a7bbd2cb1b, 0xbfef70f6434b7eb7, // -0.18606, -0.98254 0xbfc76dd9de50bf31, 0xbfef7599a3a12077, // -0.18304, -0.98311 0xbfc70afd8d08c4ff, 0xbfef7a299c1a322a, // -0.18002, -0.98366 0xbfc6a81304f64ab2, 0xbfef7ea629e63d6e, // -0.177, -0.98421 0xbfc6451a831d830d, 0xbfef830f4a40c60c, // -0.17398, -0.98475 0xbfc5e214448b3fc6, 0xbfef8764fa714ba9, // -0.17096, -0.98528 0xbfc57f008654cbde, 0xbfef8ba737cb4b78, // -0.16794, -0.9858 0xbfc51bdf8597c5f2, 0xbfef8fd5ffae41db, // -0.16491, -0.98631 0xbfc4b8b17f79fa88, 0xbfef93f14f85ac08, // -0.16189, -0.98681 0xbfc45576b1293e5a, 0xbfef97f924c9099b, // -0.15886, -0.9873 0xbfc3f22f57db4893, 0xbfef9bed7cfbde29, // -0.15583, -0.98778 0xbfc38edbb0cd8d14, 0xbfef9fce55adb2c8, // -0.1528, -0.98826 0xbfc32b7bf94516a7, 0xbfefa39bac7a1791, // -0.14976, -0.98872 0xbfc2c8106e8e613a, 0xbfefa7557f08a517, // -0.14673, -0.98918 0xbfc264994dfd340a, 0xbfefaafbcb0cfddc, // -0.1437, -0.98962 0xbfc20116d4ec7bce, 0xbfefae8e8e46cfbb, // -0.14066, -0.99006 0xbfc19d8940be24e7, 0xbfefb20dc681d54d, // -0.13762, -0.99049 0xbfc139f0cedaf576, 0xbfefb5797195d741, // -0.13458, -0.9909 0xbfc0d64dbcb26786, 0xbfefb8d18d66adb7, // -0.13154, -0.99131 0xbfc072a047ba831d, 0xbfefbc1617e44186, // -0.1285, -0.99171 0xbfc00ee8ad6fb85b, 0xbfefbf470f0a8d88, // -0.12545, -0.9921 0xbfbf564e56a9730e, 0xbfefc26470e19fd3, // -0.12241, -0.99248 0xbfbe8eb7fde4aa3e, 0xbfefc56e3b7d9af6, // -0.11937, -0.99285 0xbfbdc70ecbae9fc8, 0xbfefc8646cfeb721, // -0.11632, -0.99321 0xbfbcff533b307dc1, 0xbfefcb4703914354, // -0.11327, -0.99356 0xbfbc3785c79ec2d5, 0xbfefce15fd6da67b, // -0.11022, -0.99391 0xbfbb6fa6ec38f64c, 0xbfefd0d158d86087, // -0.10717, -0.99424 0xbfbaa7b724495c04, 0xbfefd37914220b84, // -0.10412, -0.99456 0xbfb9dfb6eb24a85c, 0xbfefd60d2da75c9e, // -0.10107, -0.99488 0xbfb917a6bc29b42c, 0xbfefd88da3d12526, // -0.098017, -0.99518 0xbfb84f8712c130a0, 0xbfefdafa7514538c, // -0.094963, -0.99548 0xbfb787586a5d5b21, 0xbfefdd539ff1f456, // -0.091909, -0.99577 0xbfb6bf1b3e79b129, 0xbfefdf9922f73307, // -0.088854, -0.99604 0xbfb5f6d00a9aa419, 0xbfefe1cafcbd5b09, // -0.085797, -0.99631 0xbfb52e774a4d4d0a, 0xbfefe3e92be9d886, // -0.08274, -0.99657 0xbfb4661179272096, 0xbfefe5f3af2e3940, // -0.079682, -0.99682 0xbfb39d9f12c5a299, 0xbfefe7ea85482d60, // -0.076624, -0.99706 0xbfb2d52092ce19f6, 0xbfefe9cdad01883a, // -0.073565, -0.99729 0xbfb20c9674ed444c, 0xbfefeb9d2530410f, // -0.070505, -0.99751 0xbfb1440134d709b2, 0xbfefed58ecb673c4, // -0.067444, -0.99772 0xbfb07b614e463064, 0xbfefef0102826191, // -0.064383, -0.99793 0xbfaf656e79f820e0, 0xbfeff095658e71ad, // -0.061321, -0.99812 0xbfadd406f9808ec8, 0xbfeff21614e131ed, // -0.058258, -0.9983 0xbfac428d12c0d7e3, 0xbfeff3830f8d575c, // -0.055195, -0.99848 0xbfaab101bd5f8317, 0xbfeff4dc54b1bed3, // -0.052132, -0.99864 0xbfa91f65f10dd814, 0xbfeff621e3796d7e, // -0.049068, -0.9988 0xbfa78dbaa5874685, 0xbfeff753bb1b9164, // -0.046003, -0.99894 0xbfa5fc00d290cd43, 0xbfeff871dadb81df, // -0.042938, -0.99908 0xbfa46a396ff86179, 0xbfeff97c4208c014, // -0.039873, -0.9992 0xbfa2d865759455cd, 0xbfeffa72effef75d, // -0.036807, -0.99932 0xbfa14685db42c17e, 0xbfeffb55e425fdae, // -0.033741, -0.99943 0xbf9f693731d1cf01, 0xbfeffc251df1d3f8, // -0.030675, -0.99953 0xbf9c454f4ce53b1c, 0xbfeffce09ce2a679, // -0.027608, -0.99962 0xbf992155f7a3667e, 0xbfeffd886084cd0d, // -0.024541, -0.9997 0xbf95fd4d21fab226, 0xbfeffe1c6870cb77, // -0.021474, -0.99977 0xbf92d936bbe30efd, 0xbfeffe9cb44b51a1, // -0.018407, -0.99983 0xbf8f6a296ab997ca, 0xbfefff0943c53bd1, // -0.015339, -0.99988 0xbf8921d1fcdec784, 0xbfefff62169b92db, // -0.012272, -0.99992 0xbf82d96b0e509703, 0xbfefffa72c978c4f, //-0.0092038, -0.99996 0xbf7921f0fe670071, 0xbfefffd8858e8a92, //-0.0061359, -0.99998 0xbf6921f8becca4ba, 0xbfeffff621621d02, // -0.003068, -1 0x0000000000000000, 0xbff0000000000000, // 0, -1 0x3f6921f8becca4ba, 0xbfeffff621621d02, // 0.003068, -1 0x3f7921f0fe670071, 0xbfefffd8858e8a92, // 0.0061359, -0.99998 0x3f82d96b0e509703, 0xbfefffa72c978c4f, // 0.0092038, -0.99996 0x3f8921d1fcdec784, 0xbfefff62169b92db, // 0.012272, -0.99992 0x3f8f6a296ab997ca, 0xbfefff0943c53bd1, // 0.015339, -0.99988 0x3f92d936bbe30efd, 0xbfeffe9cb44b51a1, // 0.018407, -0.99983 0x3f95fd4d21fab226, 0xbfeffe1c6870cb77, // 0.021474, -0.99977 0x3f992155f7a3667e, 0xbfeffd886084cd0d, // 0.024541, -0.9997 0x3f9c454f4ce53b1c, 0xbfeffce09ce2a679, // 0.027608, -0.99962 0x3f9f693731d1cf01, 0xbfeffc251df1d3f8, // 0.030675, -0.99953 0x3fa14685db42c17e, 0xbfeffb55e425fdae, // 0.033741, -0.99943 0x3fa2d865759455cd, 0xbfeffa72effef75d, // 0.036807, -0.99932 0x3fa46a396ff86179, 0xbfeff97c4208c014, // 0.039873, -0.9992 0x3fa5fc00d290cd43, 0xbfeff871dadb81df, // 0.042938, -0.99908 0x3fa78dbaa5874685, 0xbfeff753bb1b9164, // 0.046003, -0.99894 0x3fa91f65f10dd814, 0xbfeff621e3796d7e, // 0.049068, -0.9988 0x3faab101bd5f8317, 0xbfeff4dc54b1bed3, // 0.052132, -0.99864 0x3fac428d12c0d7e3, 0xbfeff3830f8d575c, // 0.055195, -0.99848 0x3fadd406f9808ec8, 0xbfeff21614e131ed, // 0.058258, -0.9983 0x3faf656e79f820e0, 0xbfeff095658e71ad, // 0.061321, -0.99812 0x3fb07b614e463064, 0xbfefef0102826191, // 0.064383, -0.99793 0x3fb1440134d709b2, 0xbfefed58ecb673c4, // 0.067444, -0.99772 0x3fb20c9674ed444c, 0xbfefeb9d2530410f, // 0.070505, -0.99751 0x3fb2d52092ce19f6, 0xbfefe9cdad01883a, // 0.073565, -0.99729 0x3fb39d9f12c5a299, 0xbfefe7ea85482d60, // 0.076624, -0.99706 0x3fb4661179272096, 0xbfefe5f3af2e3940, // 0.079682, -0.99682 0x3fb52e774a4d4d0a, 0xbfefe3e92be9d886, // 0.08274, -0.99657 0x3fb5f6d00a9aa419, 0xbfefe1cafcbd5b09, // 0.085797, -0.99631 0x3fb6bf1b3e79b129, 0xbfefdf9922f73307, // 0.088854, -0.99604 0x3fb787586a5d5b21, 0xbfefdd539ff1f456, // 0.091909, -0.99577 0x3fb84f8712c130a0, 0xbfefdafa7514538c, // 0.094963, -0.99548 0x3fb917a6bc29b42c, 0xbfefd88da3d12526, // 0.098017, -0.99518 0x3fb9dfb6eb24a85c, 0xbfefd60d2da75c9e, // 0.10107, -0.99488 0x3fbaa7b724495c04, 0xbfefd37914220b84, // 0.10412, -0.99456 0x3fbb6fa6ec38f64c, 0xbfefd0d158d86087, // 0.10717, -0.99424 0x3fbc3785c79ec2d5, 0xbfefce15fd6da67b, // 0.11022, -0.99391 0x3fbcff533b307dc1, 0xbfefcb4703914354, // 0.11327, -0.99356 0x3fbdc70ecbae9fc8, 0xbfefc8646cfeb721, // 0.11632, -0.99321 0x3fbe8eb7fde4aa3e, 0xbfefc56e3b7d9af6, // 0.11937, -0.99285 0x3fbf564e56a9730e, 0xbfefc26470e19fd3, // 0.12241, -0.99248 0x3fc00ee8ad6fb85b, 0xbfefbf470f0a8d88, // 0.12545, -0.9921 0x3fc072a047ba831d, 0xbfefbc1617e44186, // 0.1285, -0.99171 0x3fc0d64dbcb26786, 0xbfefb8d18d66adb7, // 0.13154, -0.99131 0x3fc139f0cedaf576, 0xbfefb5797195d741, // 0.13458, -0.9909 0x3fc19d8940be24e7, 0xbfefb20dc681d54d, // 0.13762, -0.99049 0x3fc20116d4ec7bce, 0xbfefae8e8e46cfbb, // 0.14066, -0.99006 0x3fc264994dfd340a, 0xbfefaafbcb0cfddc, // 0.1437, -0.98962 0x3fc2c8106e8e613a, 0xbfefa7557f08a517, // 0.14673, -0.98918 0x3fc32b7bf94516a7, 0xbfefa39bac7a1791, // 0.14976, -0.98872 0x3fc38edbb0cd8d14, 0xbfef9fce55adb2c8, // 0.1528, -0.98826 0x3fc3f22f57db4893, 0xbfef9bed7cfbde29, // 0.15583, -0.98778 0x3fc45576b1293e5a, 0xbfef97f924c9099b, // 0.15886, -0.9873 0x3fc4b8b17f79fa88, 0xbfef93f14f85ac08, // 0.16189, -0.98681 0x3fc51bdf8597c5f2, 0xbfef8fd5ffae41db, // 0.16491, -0.98631 0x3fc57f008654cbde, 0xbfef8ba737cb4b78, // 0.16794, -0.9858 0x3fc5e214448b3fc6, 0xbfef8764fa714ba9, // 0.17096, -0.98528 0x3fc6451a831d830d, 0xbfef830f4a40c60c, // 0.17398, -0.98475 0x3fc6a81304f64ab2, 0xbfef7ea629e63d6e, // 0.177, -0.98421 0x3fc70afd8d08c4ff, 0xbfef7a299c1a322a, // 0.18002, -0.98366 0x3fc76dd9de50bf31, 0xbfef7599a3a12077, // 0.18304, -0.98311 0x3fc7d0a7bbd2cb1b, 0xbfef70f6434b7eb7, // 0.18606, -0.98254 0x3fc83366e89c64c5, 0xbfef6c3f7df5bbb7, // 0.18907, -0.98196 0x3fc8961727c41804, 0xbfef677556883cee, // 0.19208, -0.98138 0x3fc8f8b83c69a60a, 0xbfef6297cff75cb0, // 0.19509, -0.98079 0x3fc95b49e9b62af9, 0xbfef5da6ed43685d, // 0.1981, -0.98018 0x3fc9bdcbf2dc4366, 0xbfef58a2b1789e84, // 0.2011, -0.97957 0x3fca203e1b1831da, 0xbfef538b1faf2d07, // 0.20411, -0.97895 0x3fca82a025b00451, 0xbfef4e603b0b2f2d, // 0.20711, -0.97832 0x3fcae4f1d5f3b9ab, 0xbfef492206bcabb4, // 0.21011, -0.97768 0x3fcb4732ef3d6722, 0xbfef43d085ff92dd, // 0.21311, -0.97703 0x3fcba96334f15dad, 0xbfef3e6bbc1bbc65, // 0.21611, -0.97637 0x3fcc0b826a7e4f63, 0xbfef38f3ac64e589, // 0.2191, -0.9757 0x3fcc6d90535d74dc, 0xbfef33685a3aaef0, // 0.22209, -0.97503 0x3fcccf8cb312b286, 0xbfef2dc9c9089a9d, // 0.22508, -0.97434 0x3fcd31774d2cbdee, 0xbfef2817fc4609ce, // 0.22807, -0.97364 0x3fcd934fe5454311, 0xbfef2252f7763ada, // 0.23106, -0.97294 0x3fcdf5163f01099a, 0xbfef1c7abe284708, // 0.23404, -0.97223 0x3fce56ca1e101a1b, 0xbfef168f53f7205d, // 0.23702, -0.9715 0x3fceb86b462de348, 0xbfef1090bc898f5f, // 0.24, -0.97077 0x3fcf19f97b215f1a, 0xbfef0a7efb9230d7, // 0.24298, -0.97003 0x3fcf7b7480bd3801, 0xbfef045a14cf738c, // 0.24596, -0.96928 0x3fcfdcdc1adfedf8, 0xbfeefe220c0b95ec, // 0.24893, -0.96852 0x3fd01f1806b9fdd2, 0xbfeef7d6e51ca3c0, // 0.2519, -0.96775 0x3fd04fb80e37fdae, 0xbfeef178a3e473c2, // 0.25487, -0.96698 0x3fd0804e05eb661e, 0xbfeeeb074c50a544, // 0.25783, -0.96619 0x3fd0b0d9cfdbdb90, 0xbfeee482e25a9dbc, // 0.26079, -0.96539 0x3fd0e15b4e1749cd, 0xbfeeddeb6a078651, // 0.26375, -0.96459 0x3fd111d262b1f677, 0xbfeed740e7684963, // 0.26671, -0.96378 0x3fd1423eefc69378, 0xbfeed0835e999009, // 0.26967, -0.96295 0x3fd172a0d7765177, 0xbfeec9b2d3c3bf84, // 0.27262, -0.96212 0x3fd1a2f7fbe8f243, 0xbfeec2cf4b1af6b2, // 0.27557, -0.96128 0x3fd1d3443f4cdb3d, 0xbfeebbd8c8df0b74, // 0.27852, -0.96043 0x3fd2038583d727bd, 0xbfeeb4cf515b8811, // 0.28146, -0.95957 0x3fd233bbabc3bb72, 0xbfeeadb2e8e7a88e, // 0.28441, -0.9587 0x3fd263e6995554ba, 0xbfeea68393e65800, // 0.28735, -0.95783 0x3fd294062ed59f05, 0xbfee9f4156c62dda, // 0.29028, -0.95694 0x3fd2c41a4e954520, 0xbfee97ec36016b30, // 0.29322, -0.95605 0x3fd2f422daec0386, 0xbfee9084361df7f3, // 0.29615, -0.95514 0x3fd3241fb638baaf, 0xbfee89095bad6025, // 0.29908, -0.95423 0x3fd35410c2e18152, 0xbfee817bab4cd10d, // 0.30201, -0.95331 0x3fd383f5e353b6aa, 0xbfee79db29a5165a, // 0.30493, -0.95238 0x3fd3b3cefa0414b7, 0xbfee7227db6a9744, // 0.30785, -0.95144 0x3fd3e39be96ec271, 0xbfee6a61c55d53a7, // 0.31077, -0.95049 0x3fd4135c94176602, 0xbfee6288ec48e112, // 0.31368, -0.94953 0x3fd44310dc8936f0, 0xbfee5a9d550467d3, // 0.31659, -0.94856 0x3fd472b8a5571054, 0xbfee529f04729ffc, // 0.3195, -0.94759 0x3fd4a253d11b82f3, 0xbfee4a8dff81ce5e, // 0.32241, -0.9466 0x3fd4d1e24278e76a, 0xbfee426a4b2bc17e, // 0.32531, -0.94561 0x3fd50163dc197047, 0xbfee3a33ec75ce85, // 0.32821, -0.9446 0x3fd530d880af3c24, 0xbfee31eae870ce25, // 0.33111, -0.94359 0x3fd5604012f467b4, 0xbfee298f4439197a, // 0.334, -0.94257 0x3fd58f9a75ab1fdd, 0xbfee212104f686e5, // 0.33689, -0.94154 0x3fd5bee78b9db3b6, 0xbfee18a02fdc66d9, // 0.33978, -0.94051 0x3fd5ee27379ea693, 0xbfee100cca2980ac, // 0.34266, -0.93946 0x3fd61d595c88c203, 0xbfee0766d9280f54, // 0.34554, -0.9384 0x3fd64c7ddd3f27c6, 0xbfedfeae622dbe2b, // 0.34842, -0.93734 0x3fd67b949cad63ca, 0xbfedf5e36a9ba59c, // 0.35129, -0.93627 0x3fd6aa9d7dc77e16, 0xbfeded05f7de47da, // 0.35416, -0.93518 0x3fd6d998638a0cb5, 0xbfede4160f6d8d81, // 0.35703, -0.93409 0x3fd7088530fa459e, 0xbfeddb13b6ccc23d, // 0.3599, -0.93299 0x3fd73763c9261092, 0xbfedd1fef38a915a, // 0.36276, -0.93188 0x3fd766340f2418f6, 0xbfedc8d7cb410260, // 0.36561, -0.93077 0x3fd794f5e613dfae, 0xbfedbf9e4395759a, // 0.36847, -0.92964 0x3fd7c3a9311dcce7, 0xbfedb6526238a09b, // 0.37132, -0.92851 0x3fd7f24dd37341e3, 0xbfedacf42ce68ab9, // 0.37416, -0.92736 0x3fd820e3b04eaac4, 0xbfeda383a9668988, // 0.37701, -0.92621 0x3fd84f6aaaf3903f, 0xbfed9a00dd8b3d46, // 0.37985, -0.92505 0x3fd87de2a6aea963, 0xbfed906bcf328d46, // 0.38268, -0.92388 0x3fd8ac4b86d5ed44, 0xbfed86c48445a450, // 0.38552, -0.9227 0x3fd8daa52ec8a4af, 0xbfed7d0b02b8ecf9, // 0.38835, -0.92151 0x3fd908ef81ef7bd1, 0xbfed733f508c0dff, // 0.39117, -0.92032 0x3fd9372a63bc93d7, 0xbfed696173c9e68b, // 0.39399, -0.91911 0x3fd96555b7ab948f, 0xbfed5f7172888a7f, // 0.39681, -0.9179 0x3fd993716141bdfe, 0xbfed556f52e93eb1, // 0.39962, -0.91668 0x3fd9c17d440df9f2, 0xbfed4b5b1b187524, // 0.40243, -0.91545 0x3fd9ef7943a8ed8a, 0xbfed4134d14dc93a, // 0.40524, -0.91421 0x3fda1d6543b50ac0, 0xbfed36fc7bcbfbdc, // 0.40804, -0.91296 0x3fda4b4127dea1e4, 0xbfed2cb220e0ef9f, // 0.41084, -0.91171 0x3fda790cd3dbf31a, 0xbfed2255c6e5a4e1, // 0.41364, -0.91044 0x3fdaa6c82b6d3fc9, 0xbfed17e7743e35dc, // 0.41643, -0.90917 0x3fdad473125cdc08, 0xbfed0d672f59d2b9, // 0.41922, -0.90789 0x3fdb020d6c7f4009, 0xbfed02d4feb2bd92, // 0.422, -0.9066 0x3fdb2f971db31972, 0xbfecf830e8ce467b, // 0.42478, -0.9053 0x3fdb5d1009e15cc0, 0xbfeced7af43cc773, // 0.42756, -0.90399 0x3fdb8a7814fd5693, 0xbfece2b32799a060, // 0.43033, -0.90267 0x3fdbb7cf2304bd01, 0xbfecd7d9898b32f6, // 0.43309, -0.90135 0x3fdbe51517ffc0d9, 0xbfecccee20c2de9f, // 0.43586, -0.90002 0x3fdc1249d8011ee7, 0xbfecc1f0f3fcfc5c, // 0.43862, -0.89867 0x3fdc3f6d47263129, 0xbfecb6e20a00da99, // 0.44137, -0.89732 0x3fdc6c7f4997000a, 0xbfecabc169a0b901, // 0.44412, -0.89597 0x3fdc997fc3865388, 0xbfeca08f19b9c449, // 0.44687, -0.8946 0x3fdcc66e9931c45d, 0xbfec954b213411f5, // 0.44961, -0.89322 0x3fdcf34baee1cd21, 0xbfec89f587029c13, // 0.45235, -0.89184 0x3fdd2016e8e9db5b, 0xbfec7e8e52233cf3, // 0.45508, -0.89045 0x3fdd4cd02ba8609c, 0xbfec7315899eaad7, // 0.45781, -0.88905 0x3fdd79775b86e389, 0xbfec678b3488739b, // 0.46054, -0.88764 0x3fdda60c5cfa10d8, 0xbfec5bef59fef85a, // 0.46326, -0.88622 0x3fddd28f1481cc58, 0xbfec5042012b6907, // 0.46598, -0.8848 0x3fddfeff66a941de, 0xbfec44833141c004, // 0.46869, -0.88336 0x3fde2b5d3806f63b, 0xbfec38b2f180bdb1, // 0.4714, -0.88192 0x3fde57a86d3cd824, 0xbfec2cd14931e3f1, // 0.4741, -0.88047 0x3fde83e0eaf85113, 0xbfec20de3fa971b0, // 0.4768, -0.87901 0x3fdeb00695f25620, 0xbfec14d9dc465e58, // 0.47949, -0.87755 0x3fdedc1952ef78d5, 0xbfec08c426725549, // 0.48218, -0.87607 0x3fdf081906bff7fd, 0xbfebfc9d25a1b147, // 0.48487, -0.87459 0x3fdf3405963fd068, 0xbfebf064e15377dd, // 0.48755, -0.87309 0x3fdf5fdee656cda3, 0xbfebe41b611154c1, // 0.49023, -0.8716 0x3fdf8ba4dbf89aba, 0xbfebd7c0ac6f952a, // 0.4929, -0.87009 0x3fdfb7575c24d2de, 0xbfebcb54cb0d2327, // 0.49557, -0.86857 0x3fdfe2f64be7120f, 0xbfebbed7c49380ea, // 0.49823, -0.86705 0x3fe00740c82b82e0, 0xbfebb249a0b6c40d, // 0.50089, -0.86551 0x3fe01cfc874c3eb7, 0xbfeba5aa673590d2, // 0.50354, -0.86397 0x3fe032ae55edbd95, 0xbfeb98fa1fd9155e, // 0.50619, -0.86242 0x3fe0485626ae221a, 0xbfeb8c38d27504e9, // 0.50883, -0.86087 0x3fe05df3ec31b8b6, 0xbfeb7f6686e792ea, // 0.51147, -0.8593 0x3fe073879922ffed, 0xbfeb728345196e3e, // 0.5141, -0.85773 0x3fe089112032b08c, 0xbfeb658f14fdbc47, // 0.51673, -0.85615 0x3fe09e907417c5e1, 0xbfeb5889fe921405, // 0.51936, -0.85456 0x3fe0b405878f85ec, 0xbfeb4b7409de7925, // 0.52198, -0.85296 0x3fe0c9704d5d898f, 0xbfeb3e4d3ef55712, // 0.52459, -0.85136 0x3fe0ded0b84bc4b5, 0xbfeb3115a5f37bf4, // 0.5272, -0.84974 0x3fe0f426bb2a8e7d, 0xbfeb23cd470013b4, // 0.5298, -0.84812 0x3fe1097248d0a956, 0xbfeb16742a4ca2f5, // 0.5324, -0.84649 0x3fe11eb3541b4b22, 0xbfeb090a58150200, // 0.535, -0.84485 0x3fe133e9cfee254e, 0xbfeafb8fd89f57b6, // 0.53759, -0.84321 0x3fe14915af336ceb, 0xbfeaee04b43c1474, // 0.54017, -0.84155 0x3fe15e36e4dbe2bc, 0xbfeae068f345ecef, // 0.54275, -0.83989 0x3fe1734d63dedb49, 0xbfead2bc9e21d511, // 0.54532, -0.83822 0x3fe188591f3a46e5, 0xbfeac4ffbd3efac8, // 0.54789, -0.83655 0x3fe19d5a09f2b9b8, 0xbfeab7325916c0d4, // 0.55046, -0.83486 0x3fe1b250171373be, 0xbfeaa9547a2cb98e, // 0.55302, -0.83317 0x3fe1c73b39ae68c8, 0xbfea9b66290ea1a3, // 0.55557, -0.83147 0x3fe1dc1b64dc4872, 0xbfea8d676e545ad2, // 0.55812, -0.82976 0x3fe1f0f08bbc861b, 0xbfea7f58529fe69d, // 0.56066, -0.82805 0x3fe205baa17560d6, 0xbfea7138de9d60f5, // 0.5632, -0.82632 0x3fe21a799933eb58, 0xbfea63091b02fae2, // 0.56573, -0.82459 0x3fe22f2d662c13e1, 0xbfea54c91090f524, // 0.56826, -0.82285 0x3fe243d5fb98ac1f, 0xbfea4678c8119ac8, // 0.57078, -0.8211 0x3fe258734cbb7110, 0xbfea38184a593bc6, // 0.5733, -0.81935 0x3fe26d054cdd12df, 0xbfea29a7a0462782, // 0.57581, -0.81758 0x3fe2818bef4d3cba, 0xbfea1b26d2c0a75e, // 0.57831, -0.81581 0x3fe2960727629ca8, 0xbfea0c95eabaf937, // 0.58081, -0.81404 0x3fe2aa76e87aeb58, 0xbfe9fdf4f13149de, // 0.58331, -0.81225 0x3fe2bedb25faf3ea, 0xbfe9ef43ef29af94, // 0.5858, -0.81046 0x3fe2d333d34e9bb7, 0xbfe9e082edb42472, // 0.58828, -0.80866 0x3fe2e780e3e8ea16, 0xbfe9d1b1f5ea80d6, // 0.59076, -0.80685 0x3fe2fbc24b441015, 0xbfe9c2d110f075c3, // 0.59323, -0.80503 0x3fe30ff7fce17035, 0xbfe9b3e047f38741, // 0.5957, -0.80321 0x3fe32421ec49a620, 0xbfe9a4dfa42b06b2, // 0.59816, -0.80138 0x3fe338400d0c8e57, 0xbfe995cf2ed80d22, // 0.60062, -0.79954 0x3fe34c5252c14de1, 0xbfe986aef1457594, // 0.60307, -0.79769 0x3fe36058b10659f3, 0xbfe9777ef4c7d742, // 0.60551, -0.79584 0x3fe374531b817f8d, 0xbfe9683f42bd7fe1, // 0.60795, -0.79398 0x3fe3884185dfeb22, 0xbfe958efe48e6dd7, // 0.61038, -0.79211 0x3fe39c23e3d63029, 0xbfe94990e3ac4a6c, // 0.61281, -0.79023 0x3fe3affa292050b9, 0xbfe93a22499263fc, // 0.61523, -0.78835 0x3fe3c3c44981c517, 0xbfe92aa41fc5a815, // 0.61765, -0.78646 0x3fe3d78238c58343, 0xbfe91b166fd49da2, // 0.62006, -0.78456 0x3fe3eb33eabe0680, 0xbfe90b7943575efe, // 0.62246, -0.78265 0x3fe3fed9534556d4, 0xbfe8fbcca3ef940d, // 0.62486, -0.78074 0x3fe41272663d108c, 0xbfe8ec109b486c49, // 0.62725, -0.77882 0x3fe425ff178e6bb1, 0xbfe8dc45331698cc, // 0.62964, -0.77689 0x3fe4397f5b2a4380, 0xbfe8cc6a75184655, // 0.63202, -0.77495 0x3fe44cf325091dd6, 0xbfe8bc806b151741, // 0.63439, -0.77301 0x3fe4605a692b32a2, 0xbfe8ac871ede1d88, // 0.63676, -0.77106 0x3fe473b51b987347, 0xbfe89c7e9a4dd4ab, // 0.63912, -0.7691 0x3fe48703306091fe, 0xbfe88c66e7481ba1, // 0.64148, -0.76714 0x3fe49a449b9b0938, 0xbfe87c400fba2ebf, // 0.64383, -0.76517 0x3fe4ad79516722f0, 0xbfe86c0a1d9aa195, // 0.64618, -0.76319 0x3fe4c0a145ec0004, 0xbfe85bc51ae958cc, // 0.64851, -0.7612 0x3fe4d3bc6d589f80, 0xbfe84b7111af83f9, // 0.65085, -0.75921 0x3fe4e6cabbe3e5e9, 0xbfe83b0e0bff976e, // 0.65317, -0.75721 0x3fe4f9cc25cca486, 0xbfe82a9c13f545ff, // 0.65549, -0.7552 0x3fe50cc09f59a09b, 0xbfe81a1b33b57acc, // 0.65781, -0.75319 0x3fe51fa81cd99aa6, 0xbfe8098b756e52fa, // 0.66011, -0.75117 0x3fe5328292a35596, 0xbfe7f8ece3571771, // 0.66242, -0.74914 0x3fe5454ff5159dfb, 0xbfe7e83f87b03686, // 0.66471, -0.7471 0x3fe5581038975137, 0xbfe7d7836cc33db2, // 0.667, -0.74506 0x3fe56ac35197649e, 0xbfe7c6b89ce2d333, // 0.66928, -0.74301 0x3fe57d69348cec9f, 0xbfe7b5df226aafb0, // 0.67156, -0.74095 0x3fe59001d5f723df, 0xbfe7a4f707bf97d2, // 0.67383, -0.73889 0x3fe5a28d2a5d7250, 0xbfe79400574f55e4, // 0.67609, -0.73682 0x3fe5b50b264f7448, 0xbfe782fb1b90b35b, // 0.67835, -0.73474 0x3fe5c77bbe65018c, 0xbfe771e75f037261, // 0.6806, -0.73265 0x3fe5d9dee73e345c, 0xbfe760c52c304764, // 0.68285, -0.73056 0x3fe5ec3495837074, 0xbfe74f948da8d28d, // 0.68508, -0.72846 0x3fe5fe7cbde56a0f, 0xbfe73e558e079942, // 0.68732, -0.72636 0x3fe610b7551d2cde, 0xbfe72d0837efff97, // 0.68954, -0.72425 0x3fe622e44fec22ff, 0xbfe71bac960e41bf, // 0.69176, -0.72213 0x3fe63503a31c1be8, 0xbfe70a42b3176d7a, // 0.69397, -0.72 0x3fe64715437f535b, 0xbfe6f8ca99c95b75, // 0.69618, -0.71787 0x3fe6591925f0783e, 0xbfe6e74454eaa8ae, // 0.69838, -0.71573 0x3fe66b0f3f52b386, 0xbfe6d5afef4aafcc, // 0.70057, -0.71358 0x3fe67cf78491af10, 0xbfe6c40d73c18275, // 0.70275, -0.71143 0x3fe68ed1eaa19c71, 0xbfe6b25ced2fe29c, // 0.70493, -0.70927 0x3fe6a09e667f3bcc, 0xbfe6a09e667f3bcc, // 0.70711, -0.70711 0x3fe6b25ced2fe29c, 0xbfe68ed1eaa19c71, // 0.70927, -0.70493 0x3fe6c40d73c18275, 0xbfe67cf78491af10, // 0.71143, -0.70275 0x3fe6d5afef4aafcc, 0xbfe66b0f3f52b386, // 0.71358, -0.70057 0x3fe6e74454eaa8ae, 0xbfe6591925f0783e, // 0.71573, -0.69838 0x3fe6f8ca99c95b75, 0xbfe64715437f535b, // 0.71787, -0.69618 0x3fe70a42b3176d7a, 0xbfe63503a31c1be8, // 0.72, -0.69397 0x3fe71bac960e41bf, 0xbfe622e44fec22ff, // 0.72213, -0.69176 0x3fe72d0837efff97, 0xbfe610b7551d2cde, // 0.72425, -0.68954 0x3fe73e558e079942, 0xbfe5fe7cbde56a0f, // 0.72636, -0.68732 0x3fe74f948da8d28d, 0xbfe5ec3495837074, // 0.72846, -0.68508 0x3fe760c52c304764, 0xbfe5d9dee73e345c, // 0.73056, -0.68285 0x3fe771e75f037261, 0xbfe5c77bbe65018c, // 0.73265, -0.6806 0x3fe782fb1b90b35b, 0xbfe5b50b264f7448, // 0.73474, -0.67835 0x3fe79400574f55e4, 0xbfe5a28d2a5d7250, // 0.73682, -0.67609 0x3fe7a4f707bf97d2, 0xbfe59001d5f723df, // 0.73889, -0.67383 0x3fe7b5df226aafb0, 0xbfe57d69348cec9f, // 0.74095, -0.67156 0x3fe7c6b89ce2d333, 0xbfe56ac35197649e, // 0.74301, -0.66928 0x3fe7d7836cc33db2, 0xbfe5581038975137, // 0.74506, -0.667 0x3fe7e83f87b03686, 0xbfe5454ff5159dfb, // 0.7471, -0.66471 0x3fe7f8ece3571771, 0xbfe5328292a35596, // 0.74914, -0.66242 0x3fe8098b756e52fa, 0xbfe51fa81cd99aa6, // 0.75117, -0.66011 0x3fe81a1b33b57acc, 0xbfe50cc09f59a09b, // 0.75319, -0.65781 0x3fe82a9c13f545ff, 0xbfe4f9cc25cca486, // 0.7552, -0.65549 0x3fe83b0e0bff976e, 0xbfe4e6cabbe3e5e9, // 0.75721, -0.65317 0x3fe84b7111af83f9, 0xbfe4d3bc6d589f80, // 0.75921, -0.65085 0x3fe85bc51ae958cc, 0xbfe4c0a145ec0004, // 0.7612, -0.64851 0x3fe86c0a1d9aa195, 0xbfe4ad79516722f0, // 0.76319, -0.64618 0x3fe87c400fba2ebf, 0xbfe49a449b9b0938, // 0.76517, -0.64383 0x3fe88c66e7481ba1, 0xbfe48703306091fe, // 0.76714, -0.64148 0x3fe89c7e9a4dd4ab, 0xbfe473b51b987347, // 0.7691, -0.63912 0x3fe8ac871ede1d88, 0xbfe4605a692b32a2, // 0.77106, -0.63676 0x3fe8bc806b151741, 0xbfe44cf325091dd6, // 0.77301, -0.63439 0x3fe8cc6a75184655, 0xbfe4397f5b2a4380, // 0.77495, -0.63202 0x3fe8dc45331698cc, 0xbfe425ff178e6bb1, // 0.77689, -0.62964 0x3fe8ec109b486c49, 0xbfe41272663d108c, // 0.77882, -0.62725 0x3fe8fbcca3ef940d, 0xbfe3fed9534556d4, // 0.78074, -0.62486 0x3fe90b7943575efe, 0xbfe3eb33eabe0680, // 0.78265, -0.62246 0x3fe91b166fd49da2, 0xbfe3d78238c58343, // 0.78456, -0.62006 0x3fe92aa41fc5a815, 0xbfe3c3c44981c517, // 0.78646, -0.61765 0x3fe93a22499263fc, 0xbfe3affa292050b9, // 0.78835, -0.61523 0x3fe94990e3ac4a6c, 0xbfe39c23e3d63029, // 0.79023, -0.61281 0x3fe958efe48e6dd7, 0xbfe3884185dfeb22, // 0.79211, -0.61038 0x3fe9683f42bd7fe1, 0xbfe374531b817f8d, // 0.79398, -0.60795 0x3fe9777ef4c7d742, 0xbfe36058b10659f3, // 0.79584, -0.60551 0x3fe986aef1457594, 0xbfe34c5252c14de1, // 0.79769, -0.60307 0x3fe995cf2ed80d22, 0xbfe338400d0c8e57, // 0.79954, -0.60062 0x3fe9a4dfa42b06b2, 0xbfe32421ec49a620, // 0.80138, -0.59816 0x3fe9b3e047f38741, 0xbfe30ff7fce17035, // 0.80321, -0.5957 0x3fe9c2d110f075c3, 0xbfe2fbc24b441015, // 0.80503, -0.59323 0x3fe9d1b1f5ea80d6, 0xbfe2e780e3e8ea16, // 0.80685, -0.59076 0x3fe9e082edb42472, 0xbfe2d333d34e9bb7, // 0.80866, -0.58828 0x3fe9ef43ef29af94, 0xbfe2bedb25faf3ea, // 0.81046, -0.5858 0x3fe9fdf4f13149de, 0xbfe2aa76e87aeb58, // 0.81225, -0.58331 0x3fea0c95eabaf937, 0xbfe2960727629ca8, // 0.81404, -0.58081 0x3fea1b26d2c0a75e, 0xbfe2818bef4d3cba, // 0.81581, -0.57831 0x3fea29a7a0462782, 0xbfe26d054cdd12df, // 0.81758, -0.57581 0x3fea38184a593bc6, 0xbfe258734cbb7110, // 0.81935, -0.5733 0x3fea4678c8119ac8, 0xbfe243d5fb98ac1f, // 0.8211, -0.57078 0x3fea54c91090f524, 0xbfe22f2d662c13e1, // 0.82285, -0.56826 0x3fea63091b02fae2, 0xbfe21a799933eb58, // 0.82459, -0.56573 0x3fea7138de9d60f5, 0xbfe205baa17560d6, // 0.82632, -0.5632 0x3fea7f58529fe69d, 0xbfe1f0f08bbc861b, // 0.82805, -0.56066 0x3fea8d676e545ad2, 0xbfe1dc1b64dc4872, // 0.82976, -0.55812 0x3fea9b66290ea1a3, 0xbfe1c73b39ae68c8, // 0.83147, -0.55557 0x3feaa9547a2cb98e, 0xbfe1b250171373be, // 0.83317, -0.55302 0x3feab7325916c0d4, 0xbfe19d5a09f2b9b8, // 0.83486, -0.55046 0x3feac4ffbd3efac8, 0xbfe188591f3a46e5, // 0.83655, -0.54789 0x3fead2bc9e21d511, 0xbfe1734d63dedb49, // 0.83822, -0.54532 0x3feae068f345ecef, 0xbfe15e36e4dbe2bc, // 0.83989, -0.54275 0x3feaee04b43c1474, 0xbfe14915af336ceb, // 0.84155, -0.54017 0x3feafb8fd89f57b6, 0xbfe133e9cfee254e, // 0.84321, -0.53759 0x3feb090a58150200, 0xbfe11eb3541b4b22, // 0.84485, -0.535 0x3feb16742a4ca2f5, 0xbfe1097248d0a956, // 0.84649, -0.5324 0x3feb23cd470013b4, 0xbfe0f426bb2a8e7d, // 0.84812, -0.5298 0x3feb3115a5f37bf4, 0xbfe0ded0b84bc4b5, // 0.84974, -0.5272 0x3feb3e4d3ef55712, 0xbfe0c9704d5d898f, // 0.85136, -0.52459 0x3feb4b7409de7925, 0xbfe0b405878f85ec, // 0.85296, -0.52198 0x3feb5889fe921405, 0xbfe09e907417c5e1, // 0.85456, -0.51936 0x3feb658f14fdbc47, 0xbfe089112032b08c, // 0.85615, -0.51673 0x3feb728345196e3e, 0xbfe073879922ffed, // 0.85773, -0.5141 0x3feb7f6686e792ea, 0xbfe05df3ec31b8b6, // 0.8593, -0.51147 0x3feb8c38d27504e9, 0xbfe0485626ae221a, // 0.86087, -0.50883 0x3feb98fa1fd9155e, 0xbfe032ae55edbd95, // 0.86242, -0.50619 0x3feba5aa673590d2, 0xbfe01cfc874c3eb7, // 0.86397, -0.50354 0x3febb249a0b6c40d, 0xbfe00740c82b82e0, // 0.86551, -0.50089 0x3febbed7c49380ea, 0xbfdfe2f64be7120f, // 0.86705, -0.49823 0x3febcb54cb0d2327, 0xbfdfb7575c24d2de, // 0.86857, -0.49557 0x3febd7c0ac6f952a, 0xbfdf8ba4dbf89aba, // 0.87009, -0.4929 0x3febe41b611154c1, 0xbfdf5fdee656cda3, // 0.8716, -0.49023 0x3febf064e15377dd, 0xbfdf3405963fd068, // 0.87309, -0.48755 0x3febfc9d25a1b147, 0xbfdf081906bff7fd, // 0.87459, -0.48487 0x3fec08c426725549, 0xbfdedc1952ef78d5, // 0.87607, -0.48218 0x3fec14d9dc465e58, 0xbfdeb00695f25620, // 0.87755, -0.47949 0x3fec20de3fa971b0, 0xbfde83e0eaf85113, // 0.87901, -0.4768 0x3fec2cd14931e3f1, 0xbfde57a86d3cd824, // 0.88047, -0.4741 0x3fec38b2f180bdb1, 0xbfde2b5d3806f63b, // 0.88192, -0.4714 0x3fec44833141c004, 0xbfddfeff66a941de, // 0.88336, -0.46869 0x3fec5042012b6907, 0xbfddd28f1481cc58, // 0.8848, -0.46598 0x3fec5bef59fef85a, 0xbfdda60c5cfa10d8, // 0.88622, -0.46326 0x3fec678b3488739b, 0xbfdd79775b86e389, // 0.88764, -0.46054 0x3fec7315899eaad7, 0xbfdd4cd02ba8609c, // 0.88905, -0.45781 0x3fec7e8e52233cf3, 0xbfdd2016e8e9db5b, // 0.89045, -0.45508 0x3fec89f587029c13, 0xbfdcf34baee1cd21, // 0.89184, -0.45235 0x3fec954b213411f5, 0xbfdcc66e9931c45d, // 0.89322, -0.44961 0x3feca08f19b9c449, 0xbfdc997fc3865388, // 0.8946, -0.44687 0x3fecabc169a0b901, 0xbfdc6c7f4997000a, // 0.89597, -0.44412 0x3fecb6e20a00da99, 0xbfdc3f6d47263129, // 0.89732, -0.44137 0x3fecc1f0f3fcfc5c, 0xbfdc1249d8011ee7, // 0.89867, -0.43862 0x3fecccee20c2de9f, 0xbfdbe51517ffc0d9, // 0.90002, -0.43586 0x3fecd7d9898b32f6, 0xbfdbb7cf2304bd01, // 0.90135, -0.43309 0x3fece2b32799a060, 0xbfdb8a7814fd5693, // 0.90267, -0.43033 0x3feced7af43cc773, 0xbfdb5d1009e15cc0, // 0.90399, -0.42756 0x3fecf830e8ce467b, 0xbfdb2f971db31972, // 0.9053, -0.42478 0x3fed02d4feb2bd92, 0xbfdb020d6c7f4009, // 0.9066, -0.422 0x3fed0d672f59d2b9, 0xbfdad473125cdc08, // 0.90789, -0.41922 0x3fed17e7743e35dc, 0xbfdaa6c82b6d3fc9, // 0.90917, -0.41643 0x3fed2255c6e5a4e1, 0xbfda790cd3dbf31a, // 0.91044, -0.41364 0x3fed2cb220e0ef9f, 0xbfda4b4127dea1e4, // 0.91171, -0.41084 0x3fed36fc7bcbfbdc, 0xbfda1d6543b50ac0, // 0.91296, -0.40804 0x3fed4134d14dc93a, 0xbfd9ef7943a8ed8a, // 0.91421, -0.40524 0x3fed4b5b1b187524, 0xbfd9c17d440df9f2, // 0.91545, -0.40243 0x3fed556f52e93eb1, 0xbfd993716141bdfe, // 0.91668, -0.39962 0x3fed5f7172888a7f, 0xbfd96555b7ab948f, // 0.9179, -0.39681 0x3fed696173c9e68b, 0xbfd9372a63bc93d7, // 0.91911, -0.39399 0x3fed733f508c0dff, 0xbfd908ef81ef7bd1, // 0.92032, -0.39117 0x3fed7d0b02b8ecf9, 0xbfd8daa52ec8a4af, // 0.92151, -0.38835 0x3fed86c48445a450, 0xbfd8ac4b86d5ed44, // 0.9227, -0.38552 0x3fed906bcf328d46, 0xbfd87de2a6aea963, // 0.92388, -0.38268 0x3fed9a00dd8b3d46, 0xbfd84f6aaaf3903f, // 0.92505, -0.37985 0x3feda383a9668988, 0xbfd820e3b04eaac4, // 0.92621, -0.37701 0x3fedacf42ce68ab9, 0xbfd7f24dd37341e3, // 0.92736, -0.37416 0x3fedb6526238a09b, 0xbfd7c3a9311dcce7, // 0.92851, -0.37132 0x3fedbf9e4395759a, 0xbfd794f5e613dfae, // 0.92964, -0.36847 0x3fedc8d7cb410260, 0xbfd766340f2418f6, // 0.93077, -0.36561 0x3fedd1fef38a915a, 0xbfd73763c9261092, // 0.93188, -0.36276 0x3feddb13b6ccc23d, 0xbfd7088530fa459e, // 0.93299, -0.3599 0x3fede4160f6d8d81, 0xbfd6d998638a0cb5, // 0.93409, -0.35703 0x3feded05f7de47da, 0xbfd6aa9d7dc77e16, // 0.93518, -0.35416 0x3fedf5e36a9ba59c, 0xbfd67b949cad63ca, // 0.93627, -0.35129 0x3fedfeae622dbe2b, 0xbfd64c7ddd3f27c6, // 0.93734, -0.34842 0x3fee0766d9280f54, 0xbfd61d595c88c203, // 0.9384, -0.34554 0x3fee100cca2980ac, 0xbfd5ee27379ea693, // 0.93946, -0.34266 0x3fee18a02fdc66d9, 0xbfd5bee78b9db3b6, // 0.94051, -0.33978 0x3fee212104f686e5, 0xbfd58f9a75ab1fdd, // 0.94154, -0.33689 0x3fee298f4439197a, 0xbfd5604012f467b4, // 0.94257, -0.334 0x3fee31eae870ce25, 0xbfd530d880af3c24, // 0.94359, -0.33111 0x3fee3a33ec75ce85, 0xbfd50163dc197047, // 0.9446, -0.32821 0x3fee426a4b2bc17e, 0xbfd4d1e24278e76a, // 0.94561, -0.32531 0x3fee4a8dff81ce5e, 0xbfd4a253d11b82f3, // 0.9466, -0.32241 0x3fee529f04729ffc, 0xbfd472b8a5571054, // 0.94759, -0.3195 0x3fee5a9d550467d3, 0xbfd44310dc8936f0, // 0.94856, -0.31659 0x3fee6288ec48e112, 0xbfd4135c94176602, // 0.94953, -0.31368 0x3fee6a61c55d53a7, 0xbfd3e39be96ec271, // 0.95049, -0.31077 0x3fee7227db6a9744, 0xbfd3b3cefa0414b7, // 0.95144, -0.30785 0x3fee79db29a5165a, 0xbfd383f5e353b6aa, // 0.95238, -0.30493 0x3fee817bab4cd10d, 0xbfd35410c2e18152, // 0.95331, -0.30201 0x3fee89095bad6025, 0xbfd3241fb638baaf, // 0.95423, -0.29908 0x3fee9084361df7f3, 0xbfd2f422daec0386, // 0.95514, -0.29615 0x3fee97ec36016b30, 0xbfd2c41a4e954520, // 0.95605, -0.29322 0x3fee9f4156c62dda, 0xbfd294062ed59f05, // 0.95694, -0.29028 0x3feea68393e65800, 0xbfd263e6995554ba, // 0.95783, -0.28735 0x3feeadb2e8e7a88e, 0xbfd233bbabc3bb72, // 0.9587, -0.28441 0x3feeb4cf515b8811, 0xbfd2038583d727bd, // 0.95957, -0.28146 0x3feebbd8c8df0b74, 0xbfd1d3443f4cdb3d, // 0.96043, -0.27852 0x3feec2cf4b1af6b2, 0xbfd1a2f7fbe8f243, // 0.96128, -0.27557 0x3feec9b2d3c3bf84, 0xbfd172a0d7765177, // 0.96212, -0.27262 0x3feed0835e999009, 0xbfd1423eefc69378, // 0.96295, -0.26967 0x3feed740e7684963, 0xbfd111d262b1f677, // 0.96378, -0.26671 0x3feeddeb6a078651, 0xbfd0e15b4e1749cd, // 0.96459, -0.26375 0x3feee482e25a9dbc, 0xbfd0b0d9cfdbdb90, // 0.96539, -0.26079 0x3feeeb074c50a544, 0xbfd0804e05eb661e, // 0.96619, -0.25783 0x3feef178a3e473c2, 0xbfd04fb80e37fdae, // 0.96698, -0.25487 0x3feef7d6e51ca3c0, 0xbfd01f1806b9fdd2, // 0.96775, -0.2519 0x3feefe220c0b95ec, 0xbfcfdcdc1adfedf8, // 0.96852, -0.24893 0x3fef045a14cf738c, 0xbfcf7b7480bd3801, // 0.96928, -0.24596 0x3fef0a7efb9230d7, 0xbfcf19f97b215f1a, // 0.97003, -0.24298 0x3fef1090bc898f5f, 0xbfceb86b462de348, // 0.97077, -0.24 0x3fef168f53f7205d, 0xbfce56ca1e101a1b, // 0.9715, -0.23702 0x3fef1c7abe284708, 0xbfcdf5163f01099a, // 0.97223, -0.23404 0x3fef2252f7763ada, 0xbfcd934fe5454311, // 0.97294, -0.23106 0x3fef2817fc4609ce, 0xbfcd31774d2cbdee, // 0.97364, -0.22807 0x3fef2dc9c9089a9d, 0xbfcccf8cb312b286, // 0.97434, -0.22508 0x3fef33685a3aaef0, 0xbfcc6d90535d74dc, // 0.97503, -0.22209 0x3fef38f3ac64e589, 0xbfcc0b826a7e4f63, // 0.9757, -0.2191 0x3fef3e6bbc1bbc65, 0xbfcba96334f15dad, // 0.97637, -0.21611 0x3fef43d085ff92dd, 0xbfcb4732ef3d6722, // 0.97703, -0.21311 0x3fef492206bcabb4, 0xbfcae4f1d5f3b9ab, // 0.97768, -0.21011 0x3fef4e603b0b2f2d, 0xbfca82a025b00451, // 0.97832, -0.20711 0x3fef538b1faf2d07, 0xbfca203e1b1831da, // 0.97895, -0.20411 0x3fef58a2b1789e84, 0xbfc9bdcbf2dc4366, // 0.97957, -0.2011 0x3fef5da6ed43685d, 0xbfc95b49e9b62af9, // 0.98018, -0.1981 0x3fef6297cff75cb0, 0xbfc8f8b83c69a60a, // 0.98079, -0.19509 0x3fef677556883cee, 0xbfc8961727c41804, // 0.98138, -0.19208 0x3fef6c3f7df5bbb7, 0xbfc83366e89c64c5, // 0.98196, -0.18907 0x3fef70f6434b7eb7, 0xbfc7d0a7bbd2cb1b, // 0.98254, -0.18606 0x3fef7599a3a12077, 0xbfc76dd9de50bf31, // 0.98311, -0.18304 0x3fef7a299c1a322a, 0xbfc70afd8d08c4ff, // 0.98366, -0.18002 0x3fef7ea629e63d6e, 0xbfc6a81304f64ab2, // 0.98421, -0.177 0x3fef830f4a40c60c, 0xbfc6451a831d830d, // 0.98475, -0.17398 0x3fef8764fa714ba9, 0xbfc5e214448b3fc6, // 0.98528, -0.17096 0x3fef8ba737cb4b78, 0xbfc57f008654cbde, // 0.9858, -0.16794 0x3fef8fd5ffae41db, 0xbfc51bdf8597c5f2, // 0.98631, -0.16491 0x3fef93f14f85ac08, 0xbfc4b8b17f79fa88, // 0.98681, -0.16189 0x3fef97f924c9099b, 0xbfc45576b1293e5a, // 0.9873, -0.15886 0x3fef9bed7cfbde29, 0xbfc3f22f57db4893, // 0.98778, -0.15583 0x3fef9fce55adb2c8, 0xbfc38edbb0cd8d14, // 0.98826, -0.1528 0x3fefa39bac7a1791, 0xbfc32b7bf94516a7, // 0.98872, -0.14976 0x3fefa7557f08a517, 0xbfc2c8106e8e613a, // 0.98918, -0.14673 0x3fefaafbcb0cfddc, 0xbfc264994dfd340a, // 0.98962, -0.1437 0x3fefae8e8e46cfbb, 0xbfc20116d4ec7bce, // 0.99006, -0.14066 0x3fefb20dc681d54d, 0xbfc19d8940be24e7, // 0.99049, -0.13762 0x3fefb5797195d741, 0xbfc139f0cedaf576, // 0.9909, -0.13458 0x3fefb8d18d66adb7, 0xbfc0d64dbcb26786, // 0.99131, -0.13154 0x3fefbc1617e44186, 0xbfc072a047ba831d, // 0.99171, -0.1285 0x3fefbf470f0a8d88, 0xbfc00ee8ad6fb85b, // 0.9921, -0.12545 0x3fefc26470e19fd3, 0xbfbf564e56a9730e, // 0.99248, -0.12241 0x3fefc56e3b7d9af6, 0xbfbe8eb7fde4aa3e, // 0.99285, -0.11937 0x3fefc8646cfeb721, 0xbfbdc70ecbae9fc8, // 0.99321, -0.11632 0x3fefcb4703914354, 0xbfbcff533b307dc1, // 0.99356, -0.11327 0x3fefce15fd6da67b, 0xbfbc3785c79ec2d5, // 0.99391, -0.11022 0x3fefd0d158d86087, 0xbfbb6fa6ec38f64c, // 0.99424, -0.10717 0x3fefd37914220b84, 0xbfbaa7b724495c04, // 0.99456, -0.10412 0x3fefd60d2da75c9e, 0xbfb9dfb6eb24a85c, // 0.99488, -0.10107 0x3fefd88da3d12526, 0xbfb917a6bc29b42c, // 0.99518, -0.098017 0x3fefdafa7514538c, 0xbfb84f8712c130a0, // 0.99548, -0.094963 0x3fefdd539ff1f456, 0xbfb787586a5d5b21, // 0.99577, -0.091909 0x3fefdf9922f73307, 0xbfb6bf1b3e79b129, // 0.99604, -0.088854 0x3fefe1cafcbd5b09, 0xbfb5f6d00a9aa419, // 0.99631, -0.085797 0x3fefe3e92be9d886, 0xbfb52e774a4d4d0a, // 0.99657, -0.08274 0x3fefe5f3af2e3940, 0xbfb4661179272096, // 0.99682, -0.079682 0x3fefe7ea85482d60, 0xbfb39d9f12c5a299, // 0.99706, -0.076624 0x3fefe9cdad01883a, 0xbfb2d52092ce19f6, // 0.99729, -0.073565 0x3fefeb9d2530410f, 0xbfb20c9674ed444c, // 0.99751, -0.070505 0x3fefed58ecb673c4, 0xbfb1440134d709b2, // 0.99772, -0.067444 0x3fefef0102826191, 0xbfb07b614e463064, // 0.99793, -0.064383 0x3feff095658e71ad, 0xbfaf656e79f820e0, // 0.99812, -0.061321 0x3feff21614e131ed, 0xbfadd406f9808ec8, // 0.9983, -0.058258 0x3feff3830f8d575c, 0xbfac428d12c0d7e3, // 0.99848, -0.055195 0x3feff4dc54b1bed3, 0xbfaab101bd5f8317, // 0.99864, -0.052132 0x3feff621e3796d7e, 0xbfa91f65f10dd814, // 0.9988, -0.049068 0x3feff753bb1b9164, 0xbfa78dbaa5874685, // 0.99894, -0.046003 0x3feff871dadb81df, 0xbfa5fc00d290cd43, // 0.99908, -0.042938 0x3feff97c4208c014, 0xbfa46a396ff86179, // 0.9992, -0.039873 0x3feffa72effef75d, 0xbfa2d865759455cd, // 0.99932, -0.036807 0x3feffb55e425fdae, 0xbfa14685db42c17e, // 0.99943, -0.033741 0x3feffc251df1d3f8, 0xbf9f693731d1cf01, // 0.99953, -0.030675 0x3feffce09ce2a679, 0xbf9c454f4ce53b1c, // 0.99962, -0.027608 0x3feffd886084cd0d, 0xbf992155f7a3667e, // 0.9997, -0.024541 0x3feffe1c6870cb77, 0xbf95fd4d21fab226, // 0.99977, -0.021474 0x3feffe9cb44b51a1, 0xbf92d936bbe30efd, // 0.99983, -0.018407 0x3fefff0943c53bd1, 0xbf8f6a296ab997ca, // 0.99988, -0.015339 0x3fefff62169b92db, 0xbf8921d1fcdec784, // 0.99992, -0.012272 0x3fefffa72c978c4f, 0xbf82d96b0e509703, // 0.99996,-0.0092038 0x3fefffd8858e8a92, 0xbf7921f0fe670071, // 0.99998,-0.0061359 0x3feffff621621d02, 0xbf6921f8becca4ba, // 1, -0.003068 }; /** @par Example code for Double Precision Floating-point Twiddle factors Generation: @par
for (i = 0; i< N/; i++)
  {
 	twiddleCoef[2*i]   = cos(i * 2*PI/(float)N);
 	twiddleCoef[2*i+1] = sin(i * 2*PI/(float)N);
  } 
@par where N = 4096, PI = 3.14159265358979 @par Cos and Sin values are in interleaved fashion */ const uint64_t twiddleCoefF64_4096[8192] ARM_DSP_TABLE_ATTRIBUTE = { 0x3ff0000000000000, 0x0000000000000000, // 1, 0 0x3feffffd88586ee6, 0x3f5921faaee6472d, // 1, 0.001534 0x3feffff621621d02, 0x3f6921f8becca4ba, // 1, 0.003068 0x3fefffe9cb1e2e8d, 0x3f72d97822f996bc, // 0.99999, 0.0046019 0x3fefffd8858e8a92, 0x3f7921f0fe670071, // 0.99998, 0.0061359 0x3fefffc250b5daef, 0x3f7f6a65f9a2a3c5, // 0.99997, 0.0076698 0x3fefffa72c978c4f, 0x3f82d96b0e509703, // 0.99996, 0.0092038 0x3fefff871937ce2f, 0x3f85fda037ac05e0, // 0.99994, 0.010738 0x3fefff62169b92db, 0x3f8921d1fcdec784, // 0.99992, 0.012272 0x3fefff3824c88f6f, 0x3f8c45ffe1e48ad9, // 0.9999, 0.013805 0x3fefff0943c53bd1, 0x3f8f6a296ab997ca, // 0.99988, 0.015339 0x3feffed57398d2b7, 0x3f9147270dad7132, // 0.99986, 0.016873 0x3feffe9cb44b51a1, 0x3f92d936bbe30efd, // 0.99983, 0.018407 0x3feffe5f05e578db, 0x3f946b4381fce81c, // 0.9998, 0.01994 0x3feffe1c6870cb77, 0x3f95fd4d21fab226, // 0.99977, 0.021474 0x3feffdd4dbf78f52, 0x3f978f535ddc9f03, // 0.99974, 0.023008 0x3feffd886084cd0d, 0x3f992155f7a3667e, // 0.9997, 0.024541 0x3feffd36f624500c, 0x3f9ab354b1504fca, // 0.99966, 0.026075 0x3feffce09ce2a679, 0x3f9c454f4ce53b1c, // 0.99962, 0.027608 0x3feffc8554cd213a, 0x3f9dd7458c64ab39, // 0.99958, 0.029142 0x3feffc251df1d3f8, 0x3f9f693731d1cf01, // 0.99953, 0.030675 0x3feffbbff85f9515, 0x3fa07d91ff984580, // 0.99948, 0.032208 0x3feffb55e425fdae, 0x3fa14685db42c17e, // 0.99943, 0.033741 0x3feffae6e1556998, 0x3fa20f770ceb11c6, // 0.99938, 0.035274 0x3feffa72effef75d, 0x3fa2d865759455cd, // 0.99932, 0.036807 0x3feff9fa10348837, 0x3fa3a150f6421afc, // 0.99926, 0.03834 0x3feff97c4208c014, 0x3fa46a396ff86179, // 0.9992, 0.039873 0x3feff8f9858f058b, 0x3fa5331ec3bba0eb, // 0.99914, 0.041406 0x3feff871dadb81df, 0x3fa5fc00d290cd43, // 0.99908, 0.042938 0x3feff7e5420320f9, 0x3fa6c4df7d7d5b84, // 0.99901, 0.044471 0x3feff753bb1b9164, 0x3fa78dbaa5874685, // 0.99894, 0.046003 0x3feff6bd463b444d, 0x3fa856922bb513c1, // 0.99887, 0.047535 0x3feff621e3796d7e, 0x3fa91f65f10dd814, // 0.9988, 0.049068 0x3feff58192ee0358, 0x3fa9e835d6993c87, // 0.99872, 0.0506 0x3feff4dc54b1bed3, 0x3faab101bd5f8317, // 0.99864, 0.052132 0x3feff43228de1b77, 0x3fab79c986698b78, // 0.99856, 0.053664 0x3feff3830f8d575c, 0x3fac428d12c0d7e3, // 0.99848, 0.055195 0x3feff2cf08da7321, 0x3fad0b4c436f91d0, // 0.99839, 0.056727 0x3feff21614e131ed, 0x3fadd406f9808ec8, // 0.9983, 0.058258 0x3feff15833be1965, 0x3fae9cbd15ff5527, // 0.99821, 0.05979 0x3feff095658e71ad, 0x3faf656e79f820e0, // 0.99812, 0.061321 0x3fefefcdaa704562, 0x3fb0170d833bf421, // 0.99802, 0.062852 0x3fefef0102826191, 0x3fb07b614e463064, // 0.99793, 0.064383 0x3fefee2f6de455ba, 0x3fb0dfb28ea201e6, // 0.99783, 0.065913 0x3fefed58ecb673c4, 0x3fb1440134d709b2, // 0.99772, 0.067444 0x3fefec7d7f19cffc, 0x3fb1a84d316d4f8a, // 0.99762, 0.068974 0x3fefeb9d2530410f, 0x3fb20c9674ed444c, // 0.99751, 0.070505 0x3fefeab7df1c6005, 0x3fb270dcefdfc45b, // 0.9974, 0.072035 0x3fefe9cdad01883a, 0x3fb2d52092ce19f6, // 0.99729, 0.073565 0x3fefe8de8f03d75c, 0x3fb339614e41ffa5, // 0.99718, 0.075094 0x3fefe7ea85482d60, 0x3fb39d9f12c5a299, // 0.99706, 0.076624 0x3fefe6f18ff42c84, 0x3fb401d9d0e3a507, // 0.99694, 0.078153 0x3fefe5f3af2e3940, 0x3fb4661179272096, // 0.99682, 0.079682 0x3fefe4f0e31d7a4a, 0x3fb4ca45fc1ba8b6, // 0.9967, 0.081211 0x3fefe3e92be9d886, 0x3fb52e774a4d4d0a, // 0.99657, 0.08274 0x3fefe2dc89bbff08, 0x3fb592a554489bc8, // 0.99644, 0.084269 0x3fefe1cafcbd5b09, 0x3fb5f6d00a9aa419, // 0.99631, 0.085797 0x3fefe0b485181be3, 0x3fb65af75dd0f87b, // 0.99618, 0.087326 0x3fefdf9922f73307, 0x3fb6bf1b3e79b129, // 0.99604, 0.088854 0x3fefde78d68653fd, 0x3fb7233b9d236e71, // 0.99591, 0.090381 0x3fefdd539ff1f456, 0x3fb787586a5d5b21, // 0.99577, 0.091909 0x3fefdc297f674ba9, 0x3fb7eb7196b72ee4, // 0.99563, 0.093436 0x3fefdafa7514538c, 0x3fb84f8712c130a0, // 0.99548, 0.094963 0x3fefd9c68127c78c, 0x3fb8b398cf0c38e0, // 0.99533, 0.09649 0x3fefd88da3d12526, 0x3fb917a6bc29b42c, // 0.99518, 0.098017 0x3fefd74fdd40abbf, 0x3fb97bb0caaba56f, // 0.99503, 0.099544 0x3fefd60d2da75c9e, 0x3fb9dfb6eb24a85c, // 0.99488, 0.10107 0x3fefd4c59536fae4, 0x3fba43b90e27f3c4, // 0.99472, 0.1026 0x3fefd37914220b84, 0x3fbaa7b724495c04, // 0.99456, 0.10412 0x3fefd227aa9bd53b, 0x3fbb0bb11e1d5559, // 0.9944, 0.10565 0x3fefd0d158d86087, 0x3fbb6fa6ec38f64c, // 0.99424, 0.10717 0x3fefcf761f0c77a3, 0x3fbbd3987f31fa0e, // 0.99407, 0.1087 0x3fefce15fd6da67b, 0x3fbc3785c79ec2d5, // 0.99391, 0.11022 0x3fefccb0f4323aa3, 0x3fbc9b6eb6165c42, // 0.99374, 0.11175 0x3fefcb4703914354, 0x3fbcff533b307dc1, // 0.99356, 0.11327 0x3fefc9d82bc2915e, 0x3fbd633347858ce4, // 0.99339, 0.11479 0x3fefc8646cfeb721, 0x3fbdc70ecbae9fc8, // 0.99321, 0.11632 0x3fefc6ebc77f0887, 0x3fbe2ae5b8457f77, // 0.99303, 0.11784 0x3fefc56e3b7d9af6, 0x3fbe8eb7fde4aa3e, // 0.99285, 0.11937 0x3fefc3ebc935454c, 0x3fbef2858d27561b, // 0.99267, 0.12089 0x3fefc26470e19fd3, 0x3fbf564e56a9730e, // 0.99248, 0.12241 0x3fefc0d832bf043a, 0x3fbfba124b07ad85, // 0.99229, 0.12393 0x3fefbf470f0a8d88, 0x3fc00ee8ad6fb85b, // 0.9921, 0.12545 0x3fefbdb106021816, 0x3fc040c5bb67747e, // 0.99191, 0.12698 0x3fefbc1617e44186, 0x3fc072a047ba831d, // 0.99171, 0.1285 0x3fefba7644f068b5, 0x3fc0a4784ab8bf1d, // 0.99151, 0.13002 0x3fefb8d18d66adb7, 0x3fc0d64dbcb26786, // 0.99131, 0.13154 0x3fefb727f187f1c7, 0x3fc1082095f820b0, // 0.99111, 0.13306 0x3fefb5797195d741, 0x3fc139f0cedaf576, // 0.9909, 0.13458 0x3fefb3c60dd2c199, 0x3fc16bbe5fac5865, // 0.9907, 0.1361 0x3fefb20dc681d54d, 0x3fc19d8940be24e7, // 0.99049, 0.13762 0x3fefb0509be6f7db, 0x3fc1cf516a62a077, // 0.99027, 0.13914 0x3fefae8e8e46cfbb, 0x3fc20116d4ec7bce, // 0.99006, 0.14066 0x3fefacc79de6c44f, 0x3fc232d978aed413, // 0.98984, 0.14218 0x3fefaafbcb0cfddc, 0x3fc264994dfd340a, // 0.98962, 0.1437 0x3fefa92b1600657c, 0x3fc296564d2b953e, // 0.9894, 0.14521 0x3fefa7557f08a517, 0x3fc2c8106e8e613a, // 0.98918, 0.14673 0x3fefa57b066e2754, 0x3fc2f9c7aa7a72af, // 0.98895, 0.14825 0x3fefa39bac7a1791, 0x3fc32b7bf94516a7, // 0.98872, 0.14976 0x3fefa1b7717661d5, 0x3fc35d2d53440db2, // 0.98849, 0.15128 0x3fef9fce55adb2c8, 0x3fc38edbb0cd8d14, // 0.98826, 0.1528 0x3fef9de0596b77a3, 0x3fc3c0870a383ff6, // 0.98802, 0.15431 0x3fef9bed7cfbde29, 0x3fc3f22f57db4893, // 0.98778, 0.15583 0x3fef99f5c0abd496, 0x3fc423d4920e4166, // 0.98754, 0.15734 0x3fef97f924c9099b, 0x3fc45576b1293e5a, // 0.9873, 0.15886 0x3fef95f7a9a1ec47, 0x3fc48715ad84cdf5, // 0.98706, 0.16037 0x3fef93f14f85ac08, 0x3fc4b8b17f79fa88, // 0.98681, 0.16189 0x3fef91e616c43891, 0x3fc4ea4a1f624b61, // 0.98656, 0.1634 0x3fef8fd5ffae41db, 0x3fc51bdf8597c5f2, // 0.98631, 0.16491 0x3fef8dc10a95380d, 0x3fc54d71aa74ef02, // 0.98605, 0.16643 0x3fef8ba737cb4b78, 0x3fc57f008654cbde, // 0.9858, 0.16794 0x3fef898887a36c84, 0x3fc5b08c1192e381, // 0.98554, 0.16945 0x3fef8764fa714ba9, 0x3fc5e214448b3fc6, // 0.98528, 0.17096 0x3fef853c9089595e, 0x3fc61399179a6e94, // 0.98501, 0.17247 0x3fef830f4a40c60c, 0x3fc6451a831d830d, // 0.98475, 0.17398 0x3fef80dd27ed8204, 0x3fc676987f7216b8, // 0.98448, 0.17549 0x3fef7ea629e63d6e, 0x3fc6a81304f64ab2, // 0.98421, 0.177 0x3fef7c6a50826840, 0x3fc6d98a0c08c8da, // 0.98394, 0.17851 0x3fef7a299c1a322a, 0x3fc70afd8d08c4ff, // 0.98366, 0.18002 0x3fef77e40d068a90, 0x3fc73c6d8055fe0a, // 0.98339, 0.18153 0x3fef7599a3a12077, 0x3fc76dd9de50bf31, // 0.98311, 0.18304 0x3fef734a60446279, 0x3fc79f429f59e11d, // 0.98282, 0.18455 0x3fef70f6434b7eb7, 0x3fc7d0a7bbd2cb1b, // 0.98254, 0.18606 0x3fef6e9d4d1262ca, 0x3fc802092c1d744b, // 0.98225, 0.18756 0x3fef6c3f7df5bbb7, 0x3fc83366e89c64c5, // 0.98196, 0.18907 0x3fef69dcd652f5de, 0x3fc864c0e9b2b6cf, // 0.98167, 0.19057 0x3fef677556883cee, 0x3fc8961727c41804, // 0.98138, 0.19208 0x3fef6508fef47bd5, 0x3fc8c7699b34ca7e, // 0.98108, 0.19359 0x3fef6297cff75cb0, 0x3fc8f8b83c69a60a, // 0.98079, 0.19509 0x3fef6021c9f148c2, 0x3fc92a0303c8194f, // 0.98048, 0.19659 0x3fef5da6ed43685d, 0x3fc95b49e9b62af9, // 0.98018, 0.1981 0x3fef5b273a4fa2d9, 0x3fc98c8ce69a7aec, // 0.97988, 0.1996 0x3fef58a2b1789e84, 0x3fc9bdcbf2dc4366, // 0.97957, 0.2011 0x3fef56195321c090, 0x3fc9ef0706e35a35, // 0.97926, 0.20261 0x3fef538b1faf2d07, 0x3fca203e1b1831da, // 0.97895, 0.20411 0x3fef50f81785c6b9, 0x3fca517127e3dabc, // 0.97863, 0.20561 0x3fef4e603b0b2f2d, 0x3fca82a025b00451, // 0.97832, 0.20711 0x3fef4bc38aa5c694, 0x3fcab3cb0ce6fe44, // 0.978, 0.20861 0x3fef492206bcabb4, 0x3fcae4f1d5f3b9ab, // 0.97768, 0.21011 0x3fef467bafb7bbe0, 0x3fcb16147941ca2a, // 0.97735, 0.21161 0x3fef43d085ff92dd, 0x3fcb4732ef3d6722, // 0.97703, 0.21311 0x3fef412089fd8adc, 0x3fcb784d30536cda, // 0.9767, 0.21461 0x3fef3e6bbc1bbc65, 0x3fcba96334f15dad, // 0.97637, 0.21611 0x3fef3bb21cc4fe47, 0x3fcbda74f5856330, // 0.97604, 0.2176 0x3fef38f3ac64e589, 0x3fcc0b826a7e4f63, // 0.9757, 0.2191 0x3fef36306b67c556, 0x3fcc3c8b8c4b9dd7, // 0.97536, 0.2206 0x3fef33685a3aaef0, 0x3fcc6d90535d74dc, // 0.97503, 0.22209 0x3fef309b794b719f, 0x3fcc9e90b824a6a9, // 0.97468, 0.22359 0x3fef2dc9c9089a9d, 0x3fcccf8cb312b286, // 0.97434, 0.22508 0x3fef2af349e17507, 0x3fcd00843c99c5f9, // 0.97399, 0.22658 0x3fef2817fc4609ce, 0x3fcd31774d2cbdee, // 0.97364, 0.22807 0x3fef2537e0a71f9f, 0x3fcd6265dd3f27e3, // 0.97329, 0.22957 0x3fef2252f7763ada, 0x3fcd934fe5454311, // 0.97294, 0.23106 0x3fef1f6941259d7a, 0x3fcdc4355db40195, // 0.97258, 0.23255 0x3fef1c7abe284708, 0x3fcdf5163f01099a, // 0.97223, 0.23404 0x3fef19876ef1f486, 0x3fce25f281a2b684, // 0.97187, 0.23553 0x3fef168f53f7205d, 0x3fce56ca1e101a1b, // 0.9715, 0.23702 0x3fef13926dad024e, 0x3fce879d0cc0fdaf, // 0.97114, 0.23851 0x3fef1090bc898f5f, 0x3fceb86b462de348, // 0.97077, 0.24 0x3fef0d8a410379c5, 0x3fcee934c2d006c7, // 0.9704, 0.24149 0x3fef0a7efb9230d7, 0x3fcf19f97b215f1a, // 0.97003, 0.24298 0x3fef076eecade0fa, 0x3fcf4ab9679c9f5c, // 0.96966, 0.24447 0x3fef045a14cf738c, 0x3fcf7b7480bd3801, // 0.96928, 0.24596 0x3fef014074708ed3, 0x3fcfac2abeff57ff, // 0.9689, 0.24744 0x3feefe220c0b95ec, 0x3fcfdcdc1adfedf8, // 0.96852, 0.24893 0x3feefafedc1ba8b7, 0x3fd006c4466e54af, // 0.96814, 0.25041 0x3feef7d6e51ca3c0, 0x3fd01f1806b9fdd2, // 0.96775, 0.2519 0x3feef4aa278b2032, 0x3fd037694a928cac, // 0.96737, 0.25338 0x3feef178a3e473c2, 0x3fd04fb80e37fdae, // 0.96698, 0.25487 0x3feeee425aa6b09a, 0x3fd068044deab002, // 0.96658, 0.25635 0x3feeeb074c50a544, 0x3fd0804e05eb661e, // 0.96619, 0.25783 0x3feee7c77961dc9e, 0x3fd09895327b465e, // 0.96579, 0.25931 0x3feee482e25a9dbc, 0x3fd0b0d9cfdbdb90, // 0.96539, 0.26079 0x3feee13987bbebdc, 0x3fd0c91bda4f158d, // 0.96499, 0.26227 0x3feeddeb6a078651, 0x3fd0e15b4e1749cd, // 0.96459, 0.26375 0x3feeda9889bfe86a, 0x3fd0f998277733f7, // 0.96418, 0.26523 0x3feed740e7684963, 0x3fd111d262b1f677, // 0.96378, 0.26671 0x3feed3e483849c51, 0x3fd12a09fc0b1b12, // 0.96337, 0.26819 0x3feed0835e999009, 0x3fd1423eefc69378, // 0.96295, 0.26967 0x3feecd1d792c8f10, 0x3fd15a713a28b9d9, // 0.96254, 0.27115 0x3feec9b2d3c3bf84, 0x3fd172a0d7765177, // 0.96212, 0.27262 0x3feec6436ee60309, 0x3fd18acdc3f4873a, // 0.9617, 0.2741 0x3feec2cf4b1af6b2, 0x3fd1a2f7fbe8f243, // 0.96128, 0.27557 0x3feebf5668eaf2ef, 0x3fd1bb1f7b999480, // 0.96086, 0.27705 0x3feebbd8c8df0b74, 0x3fd1d3443f4cdb3d, // 0.96043, 0.27852 0x3feeb8566b810f2a, 0x3fd1eb6643499fbb, // 0.96, 0.27999 0x3feeb4cf515b8811, 0x3fd2038583d727bd, // 0.95957, 0.28146 0x3feeb1437af9bb34, 0x3fd21ba1fd3d2623, // 0.95914, 0.28294 0x3feeadb2e8e7a88e, 0x3fd233bbabc3bb72, // 0.9587, 0.28441 0x3feeaa1d9bb20af3, 0x3fd24bd28bb37672, // 0.95827, 0.28588 0x3feea68393e65800, 0x3fd263e6995554ba, // 0.95783, 0.28735 0x3feea2e4d212c000, 0x3fd27bf7d0f2c346, // 0.95738, 0.28882 0x3fee9f4156c62dda, 0x3fd294062ed59f05, // 0.95694, 0.29028 0x3fee9b99229046f8, 0x3fd2ac11af483572, // 0.95649, 0.29175 0x3fee97ec36016b30, 0x3fd2c41a4e954520, // 0.95605, 0.29322 0x3fee943a91aab4b4, 0x3fd2dc200907fe51, // 0.95559, 0.29469 0x3fee9084361df7f3, 0x3fd2f422daec0386, // 0.95514, 0.29615 0x3fee8cc923edc388, 0x3fd30c22c08d6a13, // 0.95469, 0.29762 0x3fee89095bad6025, 0x3fd3241fb638baaf, // 0.95423, 0.29908 0x3fee8544ddf0d075, 0x3fd33c19b83af207, // 0.95377, 0.30054 0x3fee817bab4cd10d, 0x3fd35410c2e18152, // 0.95331, 0.30201 0x3fee7dadc456d850, 0x3fd36c04d27a4edf, // 0.95284, 0.30347 0x3fee79db29a5165a, 0x3fd383f5e353b6aa, // 0.95238, 0.30493 0x3fee7603dbce74e9, 0x3fd39be3f1bc8aef, // 0.95191, 0.30639 0x3fee7227db6a9744, 0x3fd3b3cefa0414b7, // 0.95144, 0.30785 0x3fee6e472911da27, 0x3fd3cbb6f87a146e, // 0.95096, 0.30931 0x3fee6a61c55d53a7, 0x3fd3e39be96ec271, // 0.95049, 0.31077 0x3fee6677b0e6d31e, 0x3fd3fb7dc932cfa4, // 0.95001, 0.31222 0x3fee6288ec48e112, 0x3fd4135c94176602, // 0.94953, 0.31368 0x3fee5e95781ebf1c, 0x3fd42b38466e2928, // 0.94905, 0.31514 0x3fee5a9d550467d3, 0x3fd44310dc8936f0, // 0.94856, 0.31659 0x3fee56a083968eb1, 0x3fd45ae652bb2800, // 0.94807, 0.31805 0x3fee529f04729ffc, 0x3fd472b8a5571054, // 0.94759, 0.3195 0x3fee4e98d836c0af, 0x3fd48a87d0b07fd7, // 0.94709, 0.32096 0x3fee4a8dff81ce5e, 0x3fd4a253d11b82f3, // 0.9466, 0.32241 0x3fee467e7af35f23, 0x3fd4ba1ca2eca31c, // 0.94611, 0.32386 0x3fee426a4b2bc17e, 0x3fd4d1e24278e76a, // 0.94561, 0.32531 0x3fee3e5170cbfc46, 0x3fd4e9a4ac15d520, // 0.94511, 0.32676 0x3fee3a33ec75ce85, 0x3fd50163dc197047, // 0.9446, 0.32821 0x3fee3611becbaf69, 0x3fd5191fceda3c35, // 0.9441, 0.32966 0x3fee31eae870ce25, 0x3fd530d880af3c24, // 0.94359, 0.33111 0x3fee2dbf6a0911d9, 0x3fd5488dedeff3be, // 0.94308, 0.33255 0x3fee298f4439197a, 0x3fd5604012f467b4, // 0.94257, 0.334 0x3fee255a77a63bb8, 0x3fd577eeec151e47, // 0.94206, 0.33545 0x3fee212104f686e5, 0x3fd58f9a75ab1fdd, // 0.94154, 0.33689 0x3fee1ce2ecd0c0d8, 0x3fd5a742ac0ff78d, // 0.94103, 0.33833 0x3fee18a02fdc66d9, 0x3fd5bee78b9db3b6, // 0.94051, 0.33978 0x3fee1458cec1ad83, 0x3fd5d68910aee686, // 0.93998, 0.34122 0x3fee100cca2980ac, 0x3fd5ee27379ea693, // 0.93946, 0.34266 0x3fee0bbc22bd8349, 0x3fd605c1fcc88f63, // 0.93893, 0.3441 0x3fee0766d9280f54, 0x3fd61d595c88c203, // 0.9384, 0.34554 0x3fee030cee1435b8, 0x3fd634ed533be58e, // 0.93787, 0.34698 0x3fedfeae622dbe2b, 0x3fd64c7ddd3f27c6, // 0.93734, 0.34842 0x3fedfa4b3621271d, 0x3fd6640af6f03d9e, // 0.9368, 0.34986 0x3fedf5e36a9ba59c, 0x3fd67b949cad63ca, // 0.93627, 0.35129 0x3fedf177004b2534, 0x3fd6931acad55f51, // 0.93573, 0.35273 0x3feded05f7de47da, 0x3fd6aa9d7dc77e16, // 0.93518, 0.35416 0x3fede890520465ce, 0x3fd6c21cb1e39771, // 0.93464, 0.3556 0x3fede4160f6d8d81, 0x3fd6d998638a0cb5, // 0.93409, 0.35703 0x3feddf9730ca837b, 0x3fd6f1108f1bc9c5, // 0.93354, 0.35846 0x3feddb13b6ccc23d, 0x3fd7088530fa459e, // 0.93299, 0.3599 0x3fedd68ba2267a25, 0x3fd71ff6458782ec, // 0.93244, 0.36133 0x3fedd1fef38a915a, 0x3fd73763c9261092, // 0.93188, 0.36276 0x3fedcd6dabaca3a5, 0x3fd74ecdb8390a3e, // 0.93133, 0.36418 0x3fedc8d7cb410260, 0x3fd766340f2418f6, // 0.93077, 0.36561 0x3fedc43d52fcb453, 0x3fd77d96ca4b73a6, // 0.93021, 0.36704 0x3fedbf9e4395759a, 0x3fd794f5e613dfae, // 0.92964, 0.36847 0x3fedbafa9dc1b78d, 0x3fd7ac515ee2b172, // 0.92907, 0.36989 0x3fedb6526238a09b, 0x3fd7c3a9311dcce7, // 0.92851, 0.37132 0x3fedb1a591b20c38, 0x3fd7dafd592ba621, // 0.92794, 0.37274 0x3fedacf42ce68ab9, 0x3fd7f24dd37341e3, // 0.92736, 0.37416 0x3feda83e348f613b, 0x3fd8099a9c5c362d, // 0.92679, 0.37559 0x3feda383a9668988, 0x3fd820e3b04eaac4, // 0.92621, 0.37701 0x3fed9ec48c26b1f3, 0x3fd838290bb359c8, // 0.92563, 0.37843 0x3fed9a00dd8b3d46, 0x3fd84f6aaaf3903f, // 0.92505, 0.37985 0x3fed95389e50429b, 0x3fd866a88a792ea0, // 0.92447, 0.38127 0x3fed906bcf328d46, 0x3fd87de2a6aea963, // 0.92388, 0.38268 0x3fed8b9a70ef9cb4, 0x3fd89518fbff098e, // 0.92329, 0.3841 0x3fed86c48445a450, 0x3fd8ac4b86d5ed44, // 0.9227, 0.38552 0x3fed81ea09f38b63, 0x3fd8c37a439f884f, // 0.92211, 0.38693 0x3fed7d0b02b8ecf9, 0x3fd8daa52ec8a4af, // 0.92151, 0.38835 0x3fed78276f5617c6, 0x3fd8f1cc44bea329, // 0.92092, 0.38976 0x3fed733f508c0dff, 0x3fd908ef81ef7bd1, // 0.92032, 0.39117 0x3fed6e52a71c8547, 0x3fd9200ee2c9be97, // 0.91972, 0.39258 0x3fed696173c9e68b, 0x3fd9372a63bc93d7, // 0.91911, 0.39399 0x3fed646bb7574de5, 0x3fd94e420137bce3, // 0.91851, 0.3954 0x3fed5f7172888a7f, 0x3fd96555b7ab948f, // 0.9179, 0.39681 0x3fed5a72a6221e73, 0x3fd97c6583890fc2, // 0.91729, 0.39822 0x3fed556f52e93eb1, 0x3fd993716141bdfe, // 0.91668, 0.39962 0x3fed506779a3d2d9, 0x3fd9aa794d47c9ee, // 0.91606, 0.40103 0x3fed4b5b1b187524, 0x3fd9c17d440df9f2, // 0.91545, 0.40243 0x3fed464a380e7242, 0x3fd9d87d4207b0ab, // 0.91483, 0.40384 0x3fed4134d14dc93a, 0x3fd9ef7943a8ed8a, // 0.91421, 0.40524 0x3fed3c1ae79f2b4e, 0x3fda067145664d57, // 0.91359, 0.40664 0x3fed36fc7bcbfbdc, 0x3fda1d6543b50ac0, // 0.91296, 0.40804 0x3fed31d98e9e503a, 0x3fda34553b0afee5, // 0.91234, 0.40944 0x3fed2cb220e0ef9f, 0x3fda4b4127dea1e4, // 0.91171, 0.41084 0x3fed2786335f52fc, 0x3fda622906a70b63, // 0.91107, 0.41224 0x3fed2255c6e5a4e1, 0x3fda790cd3dbf31a, // 0.91044, 0.41364 0x3fed1d20dc40c15c, 0x3fda8fec8bf5b166, // 0.90981, 0.41503 0x3fed17e7743e35dc, 0x3fdaa6c82b6d3fc9, // 0.90917, 0.41643 0x3fed12a98fac410c, 0x3fdabd9faebc3980, // 0.90853, 0.41782 0x3fed0d672f59d2b9, 0x3fdad473125cdc08, // 0.90789, 0.41922 0x3fed082054168bac, 0x3fdaeb4252ca07ab, // 0.90724, 0.42061 0x3fed02d4feb2bd92, 0x3fdb020d6c7f4009, // 0.9066, 0.422 0x3fecfd852fff6ad4, 0x3fdb18d45bf8aca6, // 0.90595, 0.42339 0x3fecf830e8ce467b, 0x3fdb2f971db31972, // 0.9053, 0.42478 0x3fecf2d829f1b40e, 0x3fdb4655ae2bf757, // 0.90464, 0.42617 0x3feced7af43cc773, 0x3fdb5d1009e15cc0, // 0.90399, 0.42756 0x3fece819488344ce, 0x3fdb73c62d520624, // 0.90333, 0.42894 0x3fece2b32799a060, 0x3fdb8a7814fd5693, // 0.90267, 0.43033 0x3fecdd489254fe65, 0x3fdba125bd63583e, // 0.90201, 0.43171 0x3fecd7d9898b32f6, 0x3fdbb7cf2304bd01, // 0.90135, 0.43309 0x3fecd2660e12c1e6, 0x3fdbce744262deee, // 0.90068, 0.43448 0x3fecccee20c2de9f, 0x3fdbe51517ffc0d9, // 0.90002, 0.43586 0x3fecc771c2736c09, 0x3fdbfbb1a05e0edc, // 0.89935, 0.43724 0x3fecc1f0f3fcfc5c, 0x3fdc1249d8011ee7, // 0.89867, 0.43862 0x3fecbc6bb638d10b, 0x3fdc28ddbb6cf145, // 0.898, 0.43999 0x3fecb6e20a00da99, 0x3fdc3f6d47263129, // 0.89732, 0.44137 0x3fecb153f02fb87d, 0x3fdc55f877b23537, // 0.89665, 0.44275 0x3fecabc169a0b901, 0x3fdc6c7f4997000a, // 0.89597, 0.44412 0x3feca62a772fd919, 0x3fdc8301b95b40c2, // 0.89528, 0.4455 0x3feca08f19b9c449, 0x3fdc997fc3865388, // 0.8946, 0.44687 0x3fec9aef521bd480, 0x3fdcaff964a0421d, // 0.89391, 0.44824 0x3fec954b213411f5, 0x3fdcc66e9931c45d, // 0.89322, 0.44961 0x3fec8fa287e13305, 0x3fdcdcdf5dc440ce, // 0.89253, 0.45098 0x3fec89f587029c13, 0x3fdcf34baee1cd21, // 0.89184, 0.45235 0x3fec84441f785f61, 0x3fdd09b389152ec1, // 0.89115, 0.45372 0x3fec7e8e52233cf3, 0x3fdd2016e8e9db5b, // 0.89045, 0.45508 0x3fec78d41fe4a267, 0x3fdd3675caebf962, // 0.88975, 0.45645 0x3fec7315899eaad7, 0x3fdd4cd02ba8609c, // 0.88905, 0.45781 0x3fec6d5290341eb2, 0x3fdd632607ac9aa9, // 0.88835, 0.45918 0x3fec678b3488739b, 0x3fdd79775b86e389, // 0.88764, 0.46054 0x3fec61bf777fcc48, 0x3fdd8fc423c62a25, // 0.88693, 0.4619 0x3fec5bef59fef85a, 0x3fdda60c5cfa10d8, // 0.88622, 0.46326 0x3fec561adceb743e, 0x3fddbc5003b2edf8, // 0.88551, 0.46462 0x3fec5042012b6907, 0x3fddd28f1481cc58, // 0.8848, 0.46598 0x3fec4a64c7a5ac4c, 0x3fdde8c98bf86bd6, // 0.88408, 0.46733 0x3fec44833141c004, 0x3fddfeff66a941de, // 0.88336, 0.46869 0x3fec3e9d3ee7d262, 0x3fde1530a12779f4, // 0.88264, 0.47004 0x3fec38b2f180bdb1, 0x3fde2b5d3806f63b, // 0.88192, 0.4714 0x3fec32c449f60831, 0x3fde418527dc4ffa, // 0.8812, 0.47275 0x3fec2cd14931e3f1, 0x3fde57a86d3cd824, // 0.88047, 0.4741 0x3fec26d9f01f2eaf, 0x3fde6dc704be97e2, // 0.87974, 0.47545 0x3fec20de3fa971b0, 0x3fde83e0eaf85113, // 0.87901, 0.4768 0x3fec1ade38bce19b, 0x3fde99f61c817eda, // 0.87828, 0.47815 0x3fec14d9dc465e58, 0x3fdeb00695f25620, // 0.87755, 0.47949 0x3fec0ed12b3372e9, 0x3fdec61253e3c61b, // 0.87681, 0.48084 0x3fec08c426725549, 0x3fdedc1952ef78d5, // 0.87607, 0.48218 0x3fec02b2cef1e641, 0x3fdef21b8fafd3b5, // 0.87533, 0.48353 0x3febfc9d25a1b147, 0x3fdf081906bff7fd, // 0.87459, 0.48487 0x3febf6832b71ec5b, 0x3fdf1e11b4bbc35c, // 0.87384, 0.48621 0x3febf064e15377dd, 0x3fdf3405963fd068, // 0.87309, 0.48755 0x3febea424837de6d, 0x3fdf49f4a7e97729, // 0.87235, 0.48889 0x3febe41b611154c1, 0x3fdf5fdee656cda3, // 0.8716, 0.49023 0x3febddf02cd2b983, 0x3fdf75c44e26a852, // 0.87084, 0.49156 0x3febd7c0ac6f952a, 0x3fdf8ba4dbf89aba, // 0.87009, 0.4929 0x3febd18ce0dc19d6, 0x3fdfa1808c6cf7e0, // 0.86933, 0.49423 0x3febcb54cb0d2327, 0x3fdfb7575c24d2de, // 0.86857, 0.49557 0x3febc5186bf8361d, 0x3fdfcd2947c1ff57, // 0.86781, 0.4969 0x3febbed7c49380ea, 0x3fdfe2f64be7120f, // 0.86705, 0.49823 0x3febb892d5d5dad5, 0x3fdff8be6537615e, // 0.86628, 0.49956 0x3febb249a0b6c40d, 0x3fe00740c82b82e0, // 0.86551, 0.50089 0x3febabfc262e6586, 0x3fe0121fe4f56d2c, // 0.86474, 0.50221 0x3feba5aa673590d2, 0x3fe01cfc874c3eb7, // 0.86397, 0.50354 0x3feb9f5464c5bffc, 0x3fe027d6ad83287e, // 0.8632, 0.50486 0x3feb98fa1fd9155e, 0x3fe032ae55edbd95, // 0.86242, 0.50619 0x3feb929b996a5b7f, 0x3fe03d837edff370, // 0.86165, 0.50751 0x3feb8c38d27504e9, 0x3fe0485626ae221a, // 0.86087, 0.50883 0x3feb85d1cbf52c02, 0x3fe053264bad0483, // 0.86009, 0.51015 0x3feb7f6686e792ea, 0x3fe05df3ec31b8b6, // 0.8593, 0.51147 0x3feb78f70449a34b, 0x3fe068bf0691c028, // 0.85852, 0.51279 0x3feb728345196e3e, 0x3fe073879922ffed, // 0.85773, 0.5141 0x3feb6c0b4a55ac17, 0x3fe07e4da23bc102, // 0.85694, 0.51542 0x3feb658f14fdbc47, 0x3fe089112032b08c, // 0.85615, 0.51673 0x3feb5f0ea611a532, 0x3fe093d2115ee018, // 0.85535, 0.51804 0x3feb5889fe921405, 0x3fe09e907417c5e1, // 0.85456, 0.51936 0x3feb52011f805c92, 0x3fe0a94c46b53d0b, // 0.85376, 0.52067 0x3feb4b7409de7925, 0x3fe0b405878f85ec, // 0.85296, 0.52198 0x3feb44e2beaf0a61, 0x3fe0bebc34ff4646, // 0.85216, 0.52328 0x3feb3e4d3ef55712, 0x3fe0c9704d5d898f, // 0.85136, 0.52459 0x3feb37b38bb54c09, 0x3fe0d421cf03c12b, // 0.85055, 0.5259 0x3feb3115a5f37bf4, 0x3fe0ded0b84bc4b5, // 0.84974, 0.5272 0x3feb2a738eb51f33, 0x3fe0e97d078fd23b, // 0.84893, 0.5285 0x3feb23cd470013b4, 0x3fe0f426bb2a8e7d, // 0.84812, 0.5298 0x3feb1d22cfdadcc6, 0x3fe0fecdd1770537, // 0.84731, 0.5311 0x3feb16742a4ca2f5, 0x3fe1097248d0a956, // 0.84649, 0.5324 0x3feb0fc1575d33db, 0x3fe114141f935545, // 0.84567, 0.5337 0x3feb090a58150200, 0x3fe11eb3541b4b22, // 0.84485, 0.535 0x3feb024f2d7d24a9, 0x3fe1294fe4c5350a, // 0.84403, 0.53629 0x3feafb8fd89f57b6, 0x3fe133e9cfee254e, // 0.84321, 0.53759 0x3feaf4cc5a85fb73, 0x3fe13e8113f396c1, // 0.84238, 0.53888 0x3feaee04b43c1474, 0x3fe14915af336ceb, // 0.84155, 0.54017 0x3feae738e6cd4b67, 0x3fe153a7a00bf453, // 0.84073, 0.54146 0x3feae068f345ecef, 0x3fe15e36e4dbe2bc, // 0.83989, 0.54275 0x3fead994dab2e979, 0x3fe168c37c025764, // 0.83906, 0.54404 0x3fead2bc9e21d511, 0x3fe1734d63dedb49, // 0.83822, 0.54532 0x3feacbe03ea0e73b, 0x3fe17dd49ad16161, // 0.83739, 0.54661 0x3feac4ffbd3efac8, 0x3fe188591f3a46e5, // 0.83655, 0.54789 0x3feabe1b1b0b8dac, 0x3fe192daef7a5386, // 0.83571, 0.54918 0x3feab7325916c0d4, 0x3fe19d5a09f2b9b8, // 0.83486, 0.55046 0x3feab045787157ff, 0x3fe1a7d66d0516e6, // 0.83402, 0.55174 0x3feaa9547a2cb98e, 0x3fe1b250171373be, // 0.83317, 0.55302 0x3feaa25f5f5aee60, 0x3fe1bcc706804467, // 0.83232, 0.55429 0x3fea9b66290ea1a3, 0x3fe1c73b39ae68c8, // 0.83147, 0.55557 0x3fea9468d85b20ae, 0x3fe1d1acaf012cc2, // 0.83062, 0.55685 0x3fea8d676e545ad2, 0x3fe1dc1b64dc4872, // 0.82976, 0.55812 0x3fea8661ec0ee133, 0x3fe1e68759a3e074, // 0.8289, 0.55939 0x3fea7f58529fe69d, 0x3fe1f0f08bbc861b, // 0.82805, 0.56066 0x3fea784aa31d3f55, 0x3fe1fb56f98b37b8, // 0.82718, 0.56193 0x3fea7138de9d60f5, 0x3fe205baa17560d6, // 0.82632, 0.5632 0x3fea6a230637623b, 0x3fe2101b81e0da78, // 0.82546, 0.56447 0x3fea63091b02fae2, 0x3fe21a799933eb58, // 0.82459, 0.56573 0x3fea5beb1e188375, 0x3fe224d4e5d5482e, // 0.82372, 0.567 0x3fea54c91090f524, 0x3fe22f2d662c13e1, // 0.82285, 0.56826 0x3fea4da2f385e997, 0x3fe23983189fdfd5, // 0.82198, 0.56952 0x3fea4678c8119ac8, 0x3fe243d5fb98ac1f, // 0.8211, 0.57078 0x3fea3f4a8f4ee2d2, 0x3fe24e260d7ee7c9, // 0.82023, 0.57204 0x3fea38184a593bc6, 0x3fe258734cbb7110, // 0.81935, 0.5733 0x3fea30e1fa4cbf81, 0x3fe262bdb7b795a2, // 0.81847, 0.57455 0x3fea29a7a0462782, 0x3fe26d054cdd12df, // 0.81758, 0.57581 0x3fea22693d62ccb9, 0x3fe2774a0a961612, // 0.8167, 0.57706 0x3fea1b26d2c0a75e, 0x3fe2818bef4d3cba, // 0.81581, 0.57831 0x3fea13e0617e4ec7, 0x3fe28bcaf96d94ba, // 0.81493, 0.57956 0x3fea0c95eabaf937, 0x3fe2960727629ca8, // 0.81404, 0.58081 0x3fea05476f967bb5, 0x3fe2a040779843fb, // 0.81314, 0.58206 0x3fe9fdf4f13149de, 0x3fe2aa76e87aeb58, // 0.81225, 0.58331 0x3fe9f69e70ac75bc, 0x3fe2b4aa787764c4, // 0.81135, 0.58455 0x3fe9ef43ef29af94, 0x3fe2bedb25faf3ea, // 0.81046, 0.5858 0x3fe9e7e56dcb45bd, 0x3fe2c908ef734e57, // 0.80956, 0.58704 0x3fe9e082edb42472, 0x3fe2d333d34e9bb7, // 0.80866, 0.58828 0x3fe9d91c7007d5a6, 0x3fe2dd5bcffb7616, // 0.80775, 0.58952 0x3fe9d1b1f5ea80d6, 0x3fe2e780e3e8ea16, // 0.80685, 0.59076 0x3fe9ca438080eadb, 0x3fe2f1a30d86773a, // 0.80594, 0.592 0x3fe9c2d110f075c3, 0x3fe2fbc24b441015, // 0.80503, 0.59323 0x3fe9bb5aa85f2098, 0x3fe305de9b921a94, // 0.80412, 0.59447 0x3fe9b3e047f38741, 0x3fe30ff7fce17035, // 0.80321, 0.5957 0x3fe9ac61f0d4e247, 0x3fe31a0e6da35e44, // 0.80229, 0.59693 0x3fe9a4dfa42b06b2, 0x3fe32421ec49a620, // 0.80138, 0.59816 0x3fe99d59631e65d5, 0x3fe32e3277467d6b, // 0.80046, 0.59939 0x3fe995cf2ed80d22, 0x3fe338400d0c8e57, // 0.79954, 0.60062 0x3fe98e410881a600, 0x3fe3424aac0ef7d6, // 0.79861, 0.60184 0x3fe986aef1457594, 0x3fe34c5252c14de1, // 0.79769, 0.60307 0x3fe97f18ea4e5c9e, 0x3fe35656ff9799ae, // 0.79676, 0.60429 0x3fe9777ef4c7d742, 0x3fe36058b10659f3, // 0.79584, 0.60551 0x3fe96fe111ddfce0, 0x3fe36a576582831b, // 0.79491, 0.60673 0x3fe9683f42bd7fe1, 0x3fe374531b817f8d, // 0.79398, 0.60795 0x3fe960998893ad8c, 0x3fe37e4bd1792fe2, // 0.79304, 0.60917 0x3fe958efe48e6dd7, 0x3fe3884185dfeb22, // 0.79211, 0.61038 0x3fe9514257dc4335, 0x3fe39234372c7f04, // 0.79117, 0.6116 0x3fe94990e3ac4a6c, 0x3fe39c23e3d63029, // 0.79023, 0.61281 0x3fe941db892e3a65, 0x3fe3a6108a54ba58, // 0.78929, 0.61402 0x3fe93a22499263fc, 0x3fe3affa292050b9, // 0.78835, 0.61523 0x3fe932652609b1cf, 0x3fe3b9e0beb19e18, // 0.7874, 0.61644 0x3fe92aa41fc5a815, 0x3fe3c3c44981c517, // 0.78646, 0.61765 0x3fe922df37f8646a, 0x3fe3cda4c80a6076, // 0.78551, 0.61885 0x3fe91b166fd49da2, 0x3fe3d78238c58343, // 0.78456, 0.62006 0x3fe91349c88da398, 0x3fe3e15c9a2db922, // 0.7836, 0.62126 0x3fe90b7943575efe, 0x3fe3eb33eabe0680, // 0.78265, 0.62246 0x3fe903a4e1665133, 0x3fe3f50828f1e8d2, // 0.78169, 0.62366 0x3fe8fbcca3ef940d, 0x3fe3fed9534556d4, // 0.78074, 0.62486 0x3fe8f3f08c28d9ac, 0x3fe408a76834c0c0, // 0.77978, 0.62606 0x3fe8ec109b486c49, 0x3fe41272663d108c, // 0.77882, 0.62725 0x3fe8e42cd2852e0a, 0x3fe41c3a4bdbaa26, // 0.77785, 0.62845 0x3fe8dc45331698cc, 0x3fe425ff178e6bb1, // 0.77689, 0.62964 0x3fe8d459be34bdfa, 0x3fe42fc0c7d3adbb, // 0.77592, 0.63083 0x3fe8cc6a75184655, 0x3fe4397f5b2a4380, // 0.77495, 0.63202 0x3fe8c47758fa71cb, 0x3fe4433ad0117b1d, // 0.77398, 0.63321 0x3fe8bc806b151741, 0x3fe44cf325091dd6, // 0.77301, 0.63439 0x3fe8b485aca2a468, 0x3fe456a858917046, // 0.77204, 0.63558 0x3fe8ac871ede1d88, 0x3fe4605a692b32a2, // 0.77106, 0.63676 0x3fe8a484c3031d50, 0x3fe46a095557a0f1, // 0.77008, 0.63794 0x3fe89c7e9a4dd4ab, 0x3fe473b51b987347, // 0.7691, 0.63912 0x3fe89474a5fb0a84, 0x3fe47d5dba6fde01, // 0.76812, 0.6403 0x3fe88c66e7481ba1, 0x3fe48703306091fe, // 0.76714, 0.64148 0x3fe884555f72fa6b, 0x3fe490a57bedbcdf, // 0.76615, 0.64266 0x3fe87c400fba2ebf, 0x3fe49a449b9b0938, // 0.76517, 0.64383 0x3fe87426f95cd5bd, 0x3fe4a3e08dec9ed6, // 0.76418, 0.645 0x3fe86c0a1d9aa195, 0x3fe4ad79516722f0, // 0.76319, 0.64618 0x3fe863e97db3d95a, 0x3fe4b70ee48fb869, // 0.7622, 0.64735 0x3fe85bc51ae958cc, 0x3fe4c0a145ec0004, // 0.7612, 0.64851 0x3fe8539cf67c9029, 0x3fe4ca30740218a3, // 0.76021, 0.64968 0x3fe84b7111af83f9, 0x3fe4d3bc6d589f80, // 0.75921, 0.65085 0x3fe843416dc4cce2, 0x3fe4dd453076b064, // 0.75821, 0.65201 0x3fe83b0e0bff976e, 0x3fe4e6cabbe3e5e9, // 0.75721, 0.65317 0x3fe832d6eda3a3e0, 0x3fe4f04d0e2859aa, // 0.75621, 0.65433 0x3fe82a9c13f545ff, 0x3fe4f9cc25cca486, // 0.7552, 0.65549 0x3fe8225d803964e5, 0x3fe503480159ded2, // 0.75419, 0.65665 0x3fe81a1b33b57acc, 0x3fe50cc09f59a09b, // 0.75319, 0.65781 0x3fe811d52faf94dc, 0x3fe51635fe5601d7, // 0.75218, 0.65896 0x3fe8098b756e52fa, 0x3fe51fa81cd99aa6, // 0.75117, 0.66011 0x3fe8013e0638e795, 0x3fe52916f96f8388, // 0.75015, 0.66127 0x3fe7f8ece3571771, 0x3fe5328292a35596, // 0.74914, 0.66242 0x3fe7f0980e113978, 0x3fe53beae7012abe, // 0.74812, 0.66356 0x3fe7e83f87b03686, 0x3fe5454ff5159dfb, // 0.7471, 0.66471 0x3fe7dfe3517d8937, 0x3fe54eb1bb6dcb8f, // 0.74608, 0.66586 0x3fe7d7836cc33db2, 0x3fe5581038975137, // 0.74506, 0.667 0x3fe7cf1fdacbf179, 0x3fe5616b6b204e6e, // 0.74403, 0.66814 0x3fe7c6b89ce2d333, 0x3fe56ac35197649e, // 0.74301, 0.66928 0x3fe7be4db453a27c, 0x3fe57417ea8bb75c, // 0.74198, 0.67042 0x3fe7b5df226aafb0, 0x3fe57d69348cec9f, // 0.74095, 0.67156 0x3fe7ad6ce874dbb6, 0x3fe586b72e2b2cfd, // 0.73992, 0.67269 0x3fe7a4f707bf97d2, 0x3fe59001d5f723df, // 0.73889, 0.67383 0x3fe79c7d8198e56e, 0x3fe599492a81ffbc, // 0.73785, 0.67496 0x3fe79400574f55e4, 0x3fe5a28d2a5d7250, // 0.73682, 0.67609 0x3fe78b7f8a320a52, 0x3fe5abcdd41bb0d8, // 0.73578, 0.67722 0x3fe782fb1b90b35b, 0x3fe5b50b264f7448, // 0.73474, 0.67835 0x3fe77a730cbb9100, 0x3fe5be451f8bf980, // 0.7337, 0.67948 0x3fe771e75f037261, 0x3fe5c77bbe65018c, // 0.73265, 0.6806 0x3fe7695813b9b594, 0x3fe5d0af016ed1d4, // 0.73161, 0.68172 0x3fe760c52c304764, 0x3fe5d9dee73e345c, // 0.73056, 0.68285 0x3fe7582ea9b9a329, 0x3fe5e30b6e6877f3, // 0.72951, 0.68397 0x3fe74f948da8d28d, 0x3fe5ec3495837074, // 0.72846, 0.68508 0x3fe746f6d9516d59, 0x3fe5f55a5b2576f8, // 0.72741, 0.6862 0x3fe73e558e079942, 0x3fe5fe7cbde56a0f, // 0.72636, 0.68732 0x3fe735b0ad2009b2, 0x3fe6079bbc5aadfa, // 0.7253, 0.68843 0x3fe72d0837efff97, 0x3fe610b7551d2cde, // 0.72425, 0.68954 0x3fe7245c2fcd492a, 0x3fe619cf86c55702, // 0.72319, 0.69065 0x3fe71bac960e41bf, 0x3fe622e44fec22ff, // 0.72213, 0.69176 0x3fe712f96c09d18d, 0x3fe62bf5af2b0dfd, // 0.72107, 0.69287 0x3fe70a42b3176d7a, 0x3fe63503a31c1be8, // 0.72, 0.69397 0x3fe701886c8f16e6, 0x3fe63e0e2a59d7aa, // 0.71894, 0.69508 0x3fe6f8ca99c95b75, 0x3fe64715437f535b, // 0.71787, 0.69618 0x3fe6f0093c1f54de, 0x3fe65018ed28287f, // 0.7168, 0.69728 0x3fe6e74454eaa8ae, 0x3fe6591925f0783e, // 0.71573, 0.69838 0x3fe6de7be585881d, 0x3fe66215ec74eb91, // 0.71466, 0.69947 0x3fe6d5afef4aafcc, 0x3fe66b0f3f52b386, // 0.71358, 0.70057 0x3fe6cce07395679f, 0x3fe674051d27896c, // 0.71251, 0.70166 0x3fe6c40d73c18275, 0x3fe67cf78491af10, // 0.71143, 0.70275 0x3fe6bb36f12b5e06, 0x3fe685e6742feeef, // 0.71035, 0.70385 0x3fe6b25ced2fe29c, 0x3fe68ed1eaa19c71, // 0.70927, 0.70493 0x3fe6a97f692c82ea, 0x3fe697b9e686941c, // 0.70819, 0.70602 0x3fe6a09e667f3bcc, 0x3fe6a09e667f3bcc, // 0.70711, 0.70711 0x3fe697b9e686941c, 0x3fe6a97f692c82ea, // 0.70602, 0.70819 0x3fe68ed1eaa19c71, 0x3fe6b25ced2fe29c, // 0.70493, 0.70927 0x3fe685e6742feeef, 0x3fe6bb36f12b5e06, // 0.70385, 0.71035 0x3fe67cf78491af10, 0x3fe6c40d73c18275, // 0.70275, 0.71143 0x3fe674051d27896c, 0x3fe6cce07395679f, // 0.70166, 0.71251 0x3fe66b0f3f52b386, 0x3fe6d5afef4aafcc, // 0.70057, 0.71358 0x3fe66215ec74eb91, 0x3fe6de7be585881d, // 0.69947, 0.71466 0x3fe6591925f0783e, 0x3fe6e74454eaa8ae, // 0.69838, 0.71573 0x3fe65018ed28287f, 0x3fe6f0093c1f54de, // 0.69728, 0.7168 0x3fe64715437f535b, 0x3fe6f8ca99c95b75, // 0.69618, 0.71787 0x3fe63e0e2a59d7aa, 0x3fe701886c8f16e6, // 0.69508, 0.71894 0x3fe63503a31c1be8, 0x3fe70a42b3176d7a, // 0.69397, 0.72 0x3fe62bf5af2b0dfd, 0x3fe712f96c09d18d, // 0.69287, 0.72107 0x3fe622e44fec22ff, 0x3fe71bac960e41bf, // 0.69176, 0.72213 0x3fe619cf86c55702, 0x3fe7245c2fcd492a, // 0.69065, 0.72319 0x3fe610b7551d2cde, 0x3fe72d0837efff97, // 0.68954, 0.72425 0x3fe6079bbc5aadfa, 0x3fe735b0ad2009b2, // 0.68843, 0.7253 0x3fe5fe7cbde56a0f, 0x3fe73e558e079942, // 0.68732, 0.72636 0x3fe5f55a5b2576f8, 0x3fe746f6d9516d59, // 0.6862, 0.72741 0x3fe5ec3495837074, 0x3fe74f948da8d28d, // 0.68508, 0.72846 0x3fe5e30b6e6877f3, 0x3fe7582ea9b9a329, // 0.68397, 0.72951 0x3fe5d9dee73e345c, 0x3fe760c52c304764, // 0.68285, 0.73056 0x3fe5d0af016ed1d4, 0x3fe7695813b9b594, // 0.68172, 0.73161 0x3fe5c77bbe65018c, 0x3fe771e75f037261, // 0.6806, 0.73265 0x3fe5be451f8bf980, 0x3fe77a730cbb9100, // 0.67948, 0.7337 0x3fe5b50b264f7448, 0x3fe782fb1b90b35b, // 0.67835, 0.73474 0x3fe5abcdd41bb0d8, 0x3fe78b7f8a320a52, // 0.67722, 0.73578 0x3fe5a28d2a5d7250, 0x3fe79400574f55e4, // 0.67609, 0.73682 0x3fe599492a81ffbc, 0x3fe79c7d8198e56e, // 0.67496, 0.73785 0x3fe59001d5f723df, 0x3fe7a4f707bf97d2, // 0.67383, 0.73889 0x3fe586b72e2b2cfd, 0x3fe7ad6ce874dbb6, // 0.67269, 0.73992 0x3fe57d69348cec9f, 0x3fe7b5df226aafb0, // 0.67156, 0.74095 0x3fe57417ea8bb75c, 0x3fe7be4db453a27c, // 0.67042, 0.74198 0x3fe56ac35197649e, 0x3fe7c6b89ce2d333, // 0.66928, 0.74301 0x3fe5616b6b204e6e, 0x3fe7cf1fdacbf179, // 0.66814, 0.74403 0x3fe5581038975137, 0x3fe7d7836cc33db2, // 0.667, 0.74506 0x3fe54eb1bb6dcb8f, 0x3fe7dfe3517d8937, // 0.66586, 0.74608 0x3fe5454ff5159dfb, 0x3fe7e83f87b03686, // 0.66471, 0.7471 0x3fe53beae7012abe, 0x3fe7f0980e113978, // 0.66356, 0.74812 0x3fe5328292a35596, 0x3fe7f8ece3571771, // 0.66242, 0.74914 0x3fe52916f96f8388, 0x3fe8013e0638e795, // 0.66127, 0.75015 0x3fe51fa81cd99aa6, 0x3fe8098b756e52fa, // 0.66011, 0.75117 0x3fe51635fe5601d7, 0x3fe811d52faf94dc, // 0.65896, 0.75218 0x3fe50cc09f59a09b, 0x3fe81a1b33b57acc, // 0.65781, 0.75319 0x3fe503480159ded2, 0x3fe8225d803964e5, // 0.65665, 0.75419 0x3fe4f9cc25cca486, 0x3fe82a9c13f545ff, // 0.65549, 0.7552 0x3fe4f04d0e2859aa, 0x3fe832d6eda3a3e0, // 0.65433, 0.75621 0x3fe4e6cabbe3e5e9, 0x3fe83b0e0bff976e, // 0.65317, 0.75721 0x3fe4dd453076b064, 0x3fe843416dc4cce2, // 0.65201, 0.75821 0x3fe4d3bc6d589f80, 0x3fe84b7111af83f9, // 0.65085, 0.75921 0x3fe4ca30740218a3, 0x3fe8539cf67c9029, // 0.64968, 0.76021 0x3fe4c0a145ec0004, 0x3fe85bc51ae958cc, // 0.64851, 0.7612 0x3fe4b70ee48fb869, 0x3fe863e97db3d95a, // 0.64735, 0.7622 0x3fe4ad79516722f0, 0x3fe86c0a1d9aa195, // 0.64618, 0.76319 0x3fe4a3e08dec9ed6, 0x3fe87426f95cd5bd, // 0.645, 0.76418 0x3fe49a449b9b0938, 0x3fe87c400fba2ebf, // 0.64383, 0.76517 0x3fe490a57bedbcdf, 0x3fe884555f72fa6b, // 0.64266, 0.76615 0x3fe48703306091fe, 0x3fe88c66e7481ba1, // 0.64148, 0.76714 0x3fe47d5dba6fde01, 0x3fe89474a5fb0a84, // 0.6403, 0.76812 0x3fe473b51b987347, 0x3fe89c7e9a4dd4ab, // 0.63912, 0.7691 0x3fe46a095557a0f1, 0x3fe8a484c3031d50, // 0.63794, 0.77008 0x3fe4605a692b32a2, 0x3fe8ac871ede1d88, // 0.63676, 0.77106 0x3fe456a858917046, 0x3fe8b485aca2a468, // 0.63558, 0.77204 0x3fe44cf325091dd6, 0x3fe8bc806b151741, // 0.63439, 0.77301 0x3fe4433ad0117b1d, 0x3fe8c47758fa71cb, // 0.63321, 0.77398 0x3fe4397f5b2a4380, 0x3fe8cc6a75184655, // 0.63202, 0.77495 0x3fe42fc0c7d3adbb, 0x3fe8d459be34bdfa, // 0.63083, 0.77592 0x3fe425ff178e6bb1, 0x3fe8dc45331698cc, // 0.62964, 0.77689 0x3fe41c3a4bdbaa26, 0x3fe8e42cd2852e0a, // 0.62845, 0.77785 0x3fe41272663d108c, 0x3fe8ec109b486c49, // 0.62725, 0.77882 0x3fe408a76834c0c0, 0x3fe8f3f08c28d9ac, // 0.62606, 0.77978 0x3fe3fed9534556d4, 0x3fe8fbcca3ef940d, // 0.62486, 0.78074 0x3fe3f50828f1e8d2, 0x3fe903a4e1665133, // 0.62366, 0.78169 0x3fe3eb33eabe0680, 0x3fe90b7943575efe, // 0.62246, 0.78265 0x3fe3e15c9a2db922, 0x3fe91349c88da398, // 0.62126, 0.7836 0x3fe3d78238c58343, 0x3fe91b166fd49da2, // 0.62006, 0.78456 0x3fe3cda4c80a6076, 0x3fe922df37f8646a, // 0.61885, 0.78551 0x3fe3c3c44981c517, 0x3fe92aa41fc5a815, // 0.61765, 0.78646 0x3fe3b9e0beb19e18, 0x3fe932652609b1cf, // 0.61644, 0.7874 0x3fe3affa292050b9, 0x3fe93a22499263fc, // 0.61523, 0.78835 0x3fe3a6108a54ba58, 0x3fe941db892e3a65, // 0.61402, 0.78929 0x3fe39c23e3d63029, 0x3fe94990e3ac4a6c, // 0.61281, 0.79023 0x3fe39234372c7f04, 0x3fe9514257dc4335, // 0.6116, 0.79117 0x3fe3884185dfeb22, 0x3fe958efe48e6dd7, // 0.61038, 0.79211 0x3fe37e4bd1792fe2, 0x3fe960998893ad8c, // 0.60917, 0.79304 0x3fe374531b817f8d, 0x3fe9683f42bd7fe1, // 0.60795, 0.79398 0x3fe36a576582831b, 0x3fe96fe111ddfce0, // 0.60673, 0.79491 0x3fe36058b10659f3, 0x3fe9777ef4c7d742, // 0.60551, 0.79584 0x3fe35656ff9799ae, 0x3fe97f18ea4e5c9e, // 0.60429, 0.79676 0x3fe34c5252c14de1, 0x3fe986aef1457594, // 0.60307, 0.79769 0x3fe3424aac0ef7d6, 0x3fe98e410881a600, // 0.60184, 0.79861 0x3fe338400d0c8e57, 0x3fe995cf2ed80d22, // 0.60062, 0.79954 0x3fe32e3277467d6b, 0x3fe99d59631e65d5, // 0.59939, 0.80046 0x3fe32421ec49a620, 0x3fe9a4dfa42b06b2, // 0.59816, 0.80138 0x3fe31a0e6da35e44, 0x3fe9ac61f0d4e247, // 0.59693, 0.80229 0x3fe30ff7fce17035, 0x3fe9b3e047f38741, // 0.5957, 0.80321 0x3fe305de9b921a94, 0x3fe9bb5aa85f2098, // 0.59447, 0.80412 0x3fe2fbc24b441015, 0x3fe9c2d110f075c3, // 0.59323, 0.80503 0x3fe2f1a30d86773a, 0x3fe9ca438080eadb, // 0.592, 0.80594 0x3fe2e780e3e8ea16, 0x3fe9d1b1f5ea80d6, // 0.59076, 0.80685 0x3fe2dd5bcffb7616, 0x3fe9d91c7007d5a6, // 0.58952, 0.80775 0x3fe2d333d34e9bb7, 0x3fe9e082edb42472, // 0.58828, 0.80866 0x3fe2c908ef734e57, 0x3fe9e7e56dcb45bd, // 0.58704, 0.80956 0x3fe2bedb25faf3ea, 0x3fe9ef43ef29af94, // 0.5858, 0.81046 0x3fe2b4aa787764c4, 0x3fe9f69e70ac75bc, // 0.58455, 0.81135 0x3fe2aa76e87aeb58, 0x3fe9fdf4f13149de, // 0.58331, 0.81225 0x3fe2a040779843fb, 0x3fea05476f967bb5, // 0.58206, 0.81314 0x3fe2960727629ca8, 0x3fea0c95eabaf937, // 0.58081, 0.81404 0x3fe28bcaf96d94ba, 0x3fea13e0617e4ec7, // 0.57956, 0.81493 0x3fe2818bef4d3cba, 0x3fea1b26d2c0a75e, // 0.57831, 0.81581 0x3fe2774a0a961612, 0x3fea22693d62ccb9, // 0.57706, 0.8167 0x3fe26d054cdd12df, 0x3fea29a7a0462782, // 0.57581, 0.81758 0x3fe262bdb7b795a2, 0x3fea30e1fa4cbf81, // 0.57455, 0.81847 0x3fe258734cbb7110, 0x3fea38184a593bc6, // 0.5733, 0.81935 0x3fe24e260d7ee7c9, 0x3fea3f4a8f4ee2d2, // 0.57204, 0.82023 0x3fe243d5fb98ac1f, 0x3fea4678c8119ac8, // 0.57078, 0.8211 0x3fe23983189fdfd5, 0x3fea4da2f385e997, // 0.56952, 0.82198 0x3fe22f2d662c13e1, 0x3fea54c91090f524, // 0.56826, 0.82285 0x3fe224d4e5d5482e, 0x3fea5beb1e188375, // 0.567, 0.82372 0x3fe21a799933eb58, 0x3fea63091b02fae2, // 0.56573, 0.82459 0x3fe2101b81e0da78, 0x3fea6a230637623b, // 0.56447, 0.82546 0x3fe205baa17560d6, 0x3fea7138de9d60f5, // 0.5632, 0.82632 0x3fe1fb56f98b37b8, 0x3fea784aa31d3f55, // 0.56193, 0.82718 0x3fe1f0f08bbc861b, 0x3fea7f58529fe69d, // 0.56066, 0.82805 0x3fe1e68759a3e074, 0x3fea8661ec0ee133, // 0.55939, 0.8289 0x3fe1dc1b64dc4872, 0x3fea8d676e545ad2, // 0.55812, 0.82976 0x3fe1d1acaf012cc2, 0x3fea9468d85b20ae, // 0.55685, 0.83062 0x3fe1c73b39ae68c8, 0x3fea9b66290ea1a3, // 0.55557, 0.83147 0x3fe1bcc706804467, 0x3feaa25f5f5aee60, // 0.55429, 0.83232 0x3fe1b250171373be, 0x3feaa9547a2cb98e, // 0.55302, 0.83317 0x3fe1a7d66d0516e6, 0x3feab045787157ff, // 0.55174, 0.83402 0x3fe19d5a09f2b9b8, 0x3feab7325916c0d4, // 0.55046, 0.83486 0x3fe192daef7a5386, 0x3feabe1b1b0b8dac, // 0.54918, 0.83571 0x3fe188591f3a46e5, 0x3feac4ffbd3efac8, // 0.54789, 0.83655 0x3fe17dd49ad16161, 0x3feacbe03ea0e73b, // 0.54661, 0.83739 0x3fe1734d63dedb49, 0x3fead2bc9e21d511, // 0.54532, 0.83822 0x3fe168c37c025764, 0x3fead994dab2e979, // 0.54404, 0.83906 0x3fe15e36e4dbe2bc, 0x3feae068f345ecef, // 0.54275, 0.83989 0x3fe153a7a00bf453, 0x3feae738e6cd4b67, // 0.54146, 0.84073 0x3fe14915af336ceb, 0x3feaee04b43c1474, // 0.54017, 0.84155 0x3fe13e8113f396c1, 0x3feaf4cc5a85fb73, // 0.53888, 0.84238 0x3fe133e9cfee254e, 0x3feafb8fd89f57b6, // 0.53759, 0.84321 0x3fe1294fe4c5350a, 0x3feb024f2d7d24a9, // 0.53629, 0.84403 0x3fe11eb3541b4b22, 0x3feb090a58150200, // 0.535, 0.84485 0x3fe114141f935545, 0x3feb0fc1575d33db, // 0.5337, 0.84567 0x3fe1097248d0a956, 0x3feb16742a4ca2f5, // 0.5324, 0.84649 0x3fe0fecdd1770537, 0x3feb1d22cfdadcc6, // 0.5311, 0.84731 0x3fe0f426bb2a8e7d, 0x3feb23cd470013b4, // 0.5298, 0.84812 0x3fe0e97d078fd23b, 0x3feb2a738eb51f33, // 0.5285, 0.84893 0x3fe0ded0b84bc4b5, 0x3feb3115a5f37bf4, // 0.5272, 0.84974 0x3fe0d421cf03c12b, 0x3feb37b38bb54c09, // 0.5259, 0.85055 0x3fe0c9704d5d898f, 0x3feb3e4d3ef55712, // 0.52459, 0.85136 0x3fe0bebc34ff4646, 0x3feb44e2beaf0a61, // 0.52328, 0.85216 0x3fe0b405878f85ec, 0x3feb4b7409de7925, // 0.52198, 0.85296 0x3fe0a94c46b53d0b, 0x3feb52011f805c92, // 0.52067, 0.85376 0x3fe09e907417c5e1, 0x3feb5889fe921405, // 0.51936, 0.85456 0x3fe093d2115ee018, 0x3feb5f0ea611a532, // 0.51804, 0.85535 0x3fe089112032b08c, 0x3feb658f14fdbc47, // 0.51673, 0.85615 0x3fe07e4da23bc102, 0x3feb6c0b4a55ac17, // 0.51542, 0.85694 0x3fe073879922ffed, 0x3feb728345196e3e, // 0.5141, 0.85773 0x3fe068bf0691c028, 0x3feb78f70449a34b, // 0.51279, 0.85852 0x3fe05df3ec31b8b6, 0x3feb7f6686e792ea, // 0.51147, 0.8593 0x3fe053264bad0483, 0x3feb85d1cbf52c02, // 0.51015, 0.86009 0x3fe0485626ae221a, 0x3feb8c38d27504e9, // 0.50883, 0.86087 0x3fe03d837edff370, 0x3feb929b996a5b7f, // 0.50751, 0.86165 0x3fe032ae55edbd95, 0x3feb98fa1fd9155e, // 0.50619, 0.86242 0x3fe027d6ad83287e, 0x3feb9f5464c5bffc, // 0.50486, 0.8632 0x3fe01cfc874c3eb7, 0x3feba5aa673590d2, // 0.50354, 0.86397 0x3fe0121fe4f56d2c, 0x3febabfc262e6586, // 0.50221, 0.86474 0x3fe00740c82b82e0, 0x3febb249a0b6c40d, // 0.50089, 0.86551 0x3fdff8be6537615e, 0x3febb892d5d5dad5, // 0.49956, 0.86628 0x3fdfe2f64be7120f, 0x3febbed7c49380ea, // 0.49823, 0.86705 0x3fdfcd2947c1ff57, 0x3febc5186bf8361d, // 0.4969, 0.86781 0x3fdfb7575c24d2de, 0x3febcb54cb0d2327, // 0.49557, 0.86857 0x3fdfa1808c6cf7e0, 0x3febd18ce0dc19d6, // 0.49423, 0.86933 0x3fdf8ba4dbf89aba, 0x3febd7c0ac6f952a, // 0.4929, 0.87009 0x3fdf75c44e26a852, 0x3febddf02cd2b983, // 0.49156, 0.87084 0x3fdf5fdee656cda3, 0x3febe41b611154c1, // 0.49023, 0.8716 0x3fdf49f4a7e97729, 0x3febea424837de6d, // 0.48889, 0.87235 0x3fdf3405963fd068, 0x3febf064e15377dd, // 0.48755, 0.87309 0x3fdf1e11b4bbc35c, 0x3febf6832b71ec5b, // 0.48621, 0.87384 0x3fdf081906bff7fd, 0x3febfc9d25a1b147, // 0.48487, 0.87459 0x3fdef21b8fafd3b5, 0x3fec02b2cef1e641, // 0.48353, 0.87533 0x3fdedc1952ef78d5, 0x3fec08c426725549, // 0.48218, 0.87607 0x3fdec61253e3c61b, 0x3fec0ed12b3372e9, // 0.48084, 0.87681 0x3fdeb00695f25620, 0x3fec14d9dc465e58, // 0.47949, 0.87755 0x3fde99f61c817eda, 0x3fec1ade38bce19b, // 0.47815, 0.87828 0x3fde83e0eaf85113, 0x3fec20de3fa971b0, // 0.4768, 0.87901 0x3fde6dc704be97e2, 0x3fec26d9f01f2eaf, // 0.47545, 0.87974 0x3fde57a86d3cd824, 0x3fec2cd14931e3f1, // 0.4741, 0.88047 0x3fde418527dc4ffa, 0x3fec32c449f60831, // 0.47275, 0.8812 0x3fde2b5d3806f63b, 0x3fec38b2f180bdb1, // 0.4714, 0.88192 0x3fde1530a12779f4, 0x3fec3e9d3ee7d262, // 0.47004, 0.88264 0x3fddfeff66a941de, 0x3fec44833141c004, // 0.46869, 0.88336 0x3fdde8c98bf86bd6, 0x3fec4a64c7a5ac4c, // 0.46733, 0.88408 0x3fddd28f1481cc58, 0x3fec5042012b6907, // 0.46598, 0.8848 0x3fddbc5003b2edf8, 0x3fec561adceb743e, // 0.46462, 0.88551 0x3fdda60c5cfa10d8, 0x3fec5bef59fef85a, // 0.46326, 0.88622 0x3fdd8fc423c62a25, 0x3fec61bf777fcc48, // 0.4619, 0.88693 0x3fdd79775b86e389, 0x3fec678b3488739b, // 0.46054, 0.88764 0x3fdd632607ac9aa9, 0x3fec6d5290341eb2, // 0.45918, 0.88835 0x3fdd4cd02ba8609c, 0x3fec7315899eaad7, // 0.45781, 0.88905 0x3fdd3675caebf962, 0x3fec78d41fe4a267, // 0.45645, 0.88975 0x3fdd2016e8e9db5b, 0x3fec7e8e52233cf3, // 0.45508, 0.89045 0x3fdd09b389152ec1, 0x3fec84441f785f61, // 0.45372, 0.89115 0x3fdcf34baee1cd21, 0x3fec89f587029c13, // 0.45235, 0.89184 0x3fdcdcdf5dc440ce, 0x3fec8fa287e13305, // 0.45098, 0.89253 0x3fdcc66e9931c45d, 0x3fec954b213411f5, // 0.44961, 0.89322 0x3fdcaff964a0421d, 0x3fec9aef521bd480, // 0.44824, 0.89391 0x3fdc997fc3865388, 0x3feca08f19b9c449, // 0.44687, 0.8946 0x3fdc8301b95b40c2, 0x3feca62a772fd919, // 0.4455, 0.89528 0x3fdc6c7f4997000a, 0x3fecabc169a0b901, // 0.44412, 0.89597 0x3fdc55f877b23537, 0x3fecb153f02fb87d, // 0.44275, 0.89665 0x3fdc3f6d47263129, 0x3fecb6e20a00da99, // 0.44137, 0.89732 0x3fdc28ddbb6cf145, 0x3fecbc6bb638d10b, // 0.43999, 0.898 0x3fdc1249d8011ee7, 0x3fecc1f0f3fcfc5c, // 0.43862, 0.89867 0x3fdbfbb1a05e0edc, 0x3fecc771c2736c09, // 0.43724, 0.89935 0x3fdbe51517ffc0d9, 0x3fecccee20c2de9f, // 0.43586, 0.90002 0x3fdbce744262deee, 0x3fecd2660e12c1e6, // 0.43448, 0.90068 0x3fdbb7cf2304bd01, 0x3fecd7d9898b32f6, // 0.43309, 0.90135 0x3fdba125bd63583e, 0x3fecdd489254fe65, // 0.43171, 0.90201 0x3fdb8a7814fd5693, 0x3fece2b32799a060, // 0.43033, 0.90267 0x3fdb73c62d520624, 0x3fece819488344ce, // 0.42894, 0.90333 0x3fdb5d1009e15cc0, 0x3feced7af43cc773, // 0.42756, 0.90399 0x3fdb4655ae2bf757, 0x3fecf2d829f1b40e, // 0.42617, 0.90464 0x3fdb2f971db31972, 0x3fecf830e8ce467b, // 0.42478, 0.9053 0x3fdb18d45bf8aca6, 0x3fecfd852fff6ad4, // 0.42339, 0.90595 0x3fdb020d6c7f4009, 0x3fed02d4feb2bd92, // 0.422, 0.9066 0x3fdaeb4252ca07ab, 0x3fed082054168bac, // 0.42061, 0.90724 0x3fdad473125cdc08, 0x3fed0d672f59d2b9, // 0.41922, 0.90789 0x3fdabd9faebc3980, 0x3fed12a98fac410c, // 0.41782, 0.90853 0x3fdaa6c82b6d3fc9, 0x3fed17e7743e35dc, // 0.41643, 0.90917 0x3fda8fec8bf5b166, 0x3fed1d20dc40c15c, // 0.41503, 0.90981 0x3fda790cd3dbf31a, 0x3fed2255c6e5a4e1, // 0.41364, 0.91044 0x3fda622906a70b63, 0x3fed2786335f52fc, // 0.41224, 0.91107 0x3fda4b4127dea1e4, 0x3fed2cb220e0ef9f, // 0.41084, 0.91171 0x3fda34553b0afee5, 0x3fed31d98e9e503a, // 0.40944, 0.91234 0x3fda1d6543b50ac0, 0x3fed36fc7bcbfbdc, // 0.40804, 0.91296 0x3fda067145664d57, 0x3fed3c1ae79f2b4e, // 0.40664, 0.91359 0x3fd9ef7943a8ed8a, 0x3fed4134d14dc93a, // 0.40524, 0.91421 0x3fd9d87d4207b0ab, 0x3fed464a380e7242, // 0.40384, 0.91483 0x3fd9c17d440df9f2, 0x3fed4b5b1b187524, // 0.40243, 0.91545 0x3fd9aa794d47c9ee, 0x3fed506779a3d2d9, // 0.40103, 0.91606 0x3fd993716141bdfe, 0x3fed556f52e93eb1, // 0.39962, 0.91668 0x3fd97c6583890fc2, 0x3fed5a72a6221e73, // 0.39822, 0.91729 0x3fd96555b7ab948f, 0x3fed5f7172888a7f, // 0.39681, 0.9179 0x3fd94e420137bce3, 0x3fed646bb7574de5, // 0.3954, 0.91851 0x3fd9372a63bc93d7, 0x3fed696173c9e68b, // 0.39399, 0.91911 0x3fd9200ee2c9be97, 0x3fed6e52a71c8547, // 0.39258, 0.91972 0x3fd908ef81ef7bd1, 0x3fed733f508c0dff, // 0.39117, 0.92032 0x3fd8f1cc44bea329, 0x3fed78276f5617c6, // 0.38976, 0.92092 0x3fd8daa52ec8a4af, 0x3fed7d0b02b8ecf9, // 0.38835, 0.92151 0x3fd8c37a439f884f, 0x3fed81ea09f38b63, // 0.38693, 0.92211 0x3fd8ac4b86d5ed44, 0x3fed86c48445a450, // 0.38552, 0.9227 0x3fd89518fbff098e, 0x3fed8b9a70ef9cb4, // 0.3841, 0.92329 0x3fd87de2a6aea963, 0x3fed906bcf328d46, // 0.38268, 0.92388 0x3fd866a88a792ea0, 0x3fed95389e50429b, // 0.38127, 0.92447 0x3fd84f6aaaf3903f, 0x3fed9a00dd8b3d46, // 0.37985, 0.92505 0x3fd838290bb359c8, 0x3fed9ec48c26b1f3, // 0.37843, 0.92563 0x3fd820e3b04eaac4, 0x3feda383a9668988, // 0.37701, 0.92621 0x3fd8099a9c5c362d, 0x3feda83e348f613b, // 0.37559, 0.92679 0x3fd7f24dd37341e3, 0x3fedacf42ce68ab9, // 0.37416, 0.92736 0x3fd7dafd592ba621, 0x3fedb1a591b20c38, // 0.37274, 0.92794 0x3fd7c3a9311dcce7, 0x3fedb6526238a09b, // 0.37132, 0.92851 0x3fd7ac515ee2b172, 0x3fedbafa9dc1b78d, // 0.36989, 0.92907 0x3fd794f5e613dfae, 0x3fedbf9e4395759a, // 0.36847, 0.92964 0x3fd77d96ca4b73a6, 0x3fedc43d52fcb453, // 0.36704, 0.93021 0x3fd766340f2418f6, 0x3fedc8d7cb410260, // 0.36561, 0.93077 0x3fd74ecdb8390a3e, 0x3fedcd6dabaca3a5, // 0.36418, 0.93133 0x3fd73763c9261092, 0x3fedd1fef38a915a, // 0.36276, 0.93188 0x3fd71ff6458782ec, 0x3fedd68ba2267a25, // 0.36133, 0.93244 0x3fd7088530fa459e, 0x3feddb13b6ccc23d, // 0.3599, 0.93299 0x3fd6f1108f1bc9c5, 0x3feddf9730ca837b, // 0.35846, 0.93354 0x3fd6d998638a0cb5, 0x3fede4160f6d8d81, // 0.35703, 0.93409 0x3fd6c21cb1e39771, 0x3fede890520465ce, // 0.3556, 0.93464 0x3fd6aa9d7dc77e16, 0x3feded05f7de47da, // 0.35416, 0.93518 0x3fd6931acad55f51, 0x3fedf177004b2534, // 0.35273, 0.93573 0x3fd67b949cad63ca, 0x3fedf5e36a9ba59c, // 0.35129, 0.93627 0x3fd6640af6f03d9e, 0x3fedfa4b3621271d, // 0.34986, 0.9368 0x3fd64c7ddd3f27c6, 0x3fedfeae622dbe2b, // 0.34842, 0.93734 0x3fd634ed533be58e, 0x3fee030cee1435b8, // 0.34698, 0.93787 0x3fd61d595c88c203, 0x3fee0766d9280f54, // 0.34554, 0.9384 0x3fd605c1fcc88f63, 0x3fee0bbc22bd8349, // 0.3441, 0.93893 0x3fd5ee27379ea693, 0x3fee100cca2980ac, // 0.34266, 0.93946 0x3fd5d68910aee686, 0x3fee1458cec1ad83, // 0.34122, 0.93998 0x3fd5bee78b9db3b6, 0x3fee18a02fdc66d9, // 0.33978, 0.94051 0x3fd5a742ac0ff78d, 0x3fee1ce2ecd0c0d8, // 0.33833, 0.94103 0x3fd58f9a75ab1fdd, 0x3fee212104f686e5, // 0.33689, 0.94154 0x3fd577eeec151e47, 0x3fee255a77a63bb8, // 0.33545, 0.94206 0x3fd5604012f467b4, 0x3fee298f4439197a, // 0.334, 0.94257 0x3fd5488dedeff3be, 0x3fee2dbf6a0911d9, // 0.33255, 0.94308 0x3fd530d880af3c24, 0x3fee31eae870ce25, // 0.33111, 0.94359 0x3fd5191fceda3c35, 0x3fee3611becbaf69, // 0.32966, 0.9441 0x3fd50163dc197047, 0x3fee3a33ec75ce85, // 0.32821, 0.9446 0x3fd4e9a4ac15d520, 0x3fee3e5170cbfc46, // 0.32676, 0.94511 0x3fd4d1e24278e76a, 0x3fee426a4b2bc17e, // 0.32531, 0.94561 0x3fd4ba1ca2eca31c, 0x3fee467e7af35f23, // 0.32386, 0.94611 0x3fd4a253d11b82f3, 0x3fee4a8dff81ce5e, // 0.32241, 0.9466 0x3fd48a87d0b07fd7, 0x3fee4e98d836c0af, // 0.32096, 0.94709 0x3fd472b8a5571054, 0x3fee529f04729ffc, // 0.3195, 0.94759 0x3fd45ae652bb2800, 0x3fee56a083968eb1, // 0.31805, 0.94807 0x3fd44310dc8936f0, 0x3fee5a9d550467d3, // 0.31659, 0.94856 0x3fd42b38466e2928, 0x3fee5e95781ebf1c, // 0.31514, 0.94905 0x3fd4135c94176602, 0x3fee6288ec48e112, // 0.31368, 0.94953 0x3fd3fb7dc932cfa4, 0x3fee6677b0e6d31e, // 0.31222, 0.95001 0x3fd3e39be96ec271, 0x3fee6a61c55d53a7, // 0.31077, 0.95049 0x3fd3cbb6f87a146e, 0x3fee6e472911da27, // 0.30931, 0.95096 0x3fd3b3cefa0414b7, 0x3fee7227db6a9744, // 0.30785, 0.95144 0x3fd39be3f1bc8aef, 0x3fee7603dbce74e9, // 0.30639, 0.95191 0x3fd383f5e353b6aa, 0x3fee79db29a5165a, // 0.30493, 0.95238 0x3fd36c04d27a4edf, 0x3fee7dadc456d850, // 0.30347, 0.95284 0x3fd35410c2e18152, 0x3fee817bab4cd10d, // 0.30201, 0.95331 0x3fd33c19b83af207, 0x3fee8544ddf0d075, // 0.30054, 0.95377 0x3fd3241fb638baaf, 0x3fee89095bad6025, // 0.29908, 0.95423 0x3fd30c22c08d6a13, 0x3fee8cc923edc388, // 0.29762, 0.95469 0x3fd2f422daec0386, 0x3fee9084361df7f3, // 0.29615, 0.95514 0x3fd2dc200907fe51, 0x3fee943a91aab4b4, // 0.29469, 0.95559 0x3fd2c41a4e954520, 0x3fee97ec36016b30, // 0.29322, 0.95605 0x3fd2ac11af483572, 0x3fee9b99229046f8, // 0.29175, 0.95649 0x3fd294062ed59f05, 0x3fee9f4156c62dda, // 0.29028, 0.95694 0x3fd27bf7d0f2c346, 0x3feea2e4d212c000, // 0.28882, 0.95738 0x3fd263e6995554ba, 0x3feea68393e65800, // 0.28735, 0.95783 0x3fd24bd28bb37672, 0x3feeaa1d9bb20af3, // 0.28588, 0.95827 0x3fd233bbabc3bb72, 0x3feeadb2e8e7a88e, // 0.28441, 0.9587 0x3fd21ba1fd3d2623, 0x3feeb1437af9bb34, // 0.28294, 0.95914 0x3fd2038583d727bd, 0x3feeb4cf515b8811, // 0.28146, 0.95957 0x3fd1eb6643499fbb, 0x3feeb8566b810f2a, // 0.27999, 0.96 0x3fd1d3443f4cdb3d, 0x3feebbd8c8df0b74, // 0.27852, 0.96043 0x3fd1bb1f7b999480, 0x3feebf5668eaf2ef, // 0.27705, 0.96086 0x3fd1a2f7fbe8f243, 0x3feec2cf4b1af6b2, // 0.27557, 0.96128 0x3fd18acdc3f4873a, 0x3feec6436ee60309, // 0.2741, 0.9617 0x3fd172a0d7765177, 0x3feec9b2d3c3bf84, // 0.27262, 0.96212 0x3fd15a713a28b9d9, 0x3feecd1d792c8f10, // 0.27115, 0.96254 0x3fd1423eefc69378, 0x3feed0835e999009, // 0.26967, 0.96295 0x3fd12a09fc0b1b12, 0x3feed3e483849c51, // 0.26819, 0.96337 0x3fd111d262b1f677, 0x3feed740e7684963, // 0.26671, 0.96378 0x3fd0f998277733f7, 0x3feeda9889bfe86a, // 0.26523, 0.96418 0x3fd0e15b4e1749cd, 0x3feeddeb6a078651, // 0.26375, 0.96459 0x3fd0c91bda4f158d, 0x3feee13987bbebdc, // 0.26227, 0.96499 0x3fd0b0d9cfdbdb90, 0x3feee482e25a9dbc, // 0.26079, 0.96539 0x3fd09895327b465e, 0x3feee7c77961dc9e, // 0.25931, 0.96579 0x3fd0804e05eb661e, 0x3feeeb074c50a544, // 0.25783, 0.96619 0x3fd068044deab002, 0x3feeee425aa6b09a, // 0.25635, 0.96658 0x3fd04fb80e37fdae, 0x3feef178a3e473c2, // 0.25487, 0.96698 0x3fd037694a928cac, 0x3feef4aa278b2032, // 0.25338, 0.96737 0x3fd01f1806b9fdd2, 0x3feef7d6e51ca3c0, // 0.2519, 0.96775 0x3fd006c4466e54af, 0x3feefafedc1ba8b7, // 0.25041, 0.96814 0x3fcfdcdc1adfedf8, 0x3feefe220c0b95ec, // 0.24893, 0.96852 0x3fcfac2abeff57ff, 0x3fef014074708ed3, // 0.24744, 0.9689 0x3fcf7b7480bd3801, 0x3fef045a14cf738c, // 0.24596, 0.96928 0x3fcf4ab9679c9f5c, 0x3fef076eecade0fa, // 0.24447, 0.96966 0x3fcf19f97b215f1a, 0x3fef0a7efb9230d7, // 0.24298, 0.97003 0x3fcee934c2d006c7, 0x3fef0d8a410379c5, // 0.24149, 0.9704 0x3fceb86b462de348, 0x3fef1090bc898f5f, // 0.24, 0.97077 0x3fce879d0cc0fdaf, 0x3fef13926dad024e, // 0.23851, 0.97114 0x3fce56ca1e101a1b, 0x3fef168f53f7205d, // 0.23702, 0.9715 0x3fce25f281a2b684, 0x3fef19876ef1f486, // 0.23553, 0.97187 0x3fcdf5163f01099a, 0x3fef1c7abe284708, // 0.23404, 0.97223 0x3fcdc4355db40195, 0x3fef1f6941259d7a, // 0.23255, 0.97258 0x3fcd934fe5454311, 0x3fef2252f7763ada, // 0.23106, 0.97294 0x3fcd6265dd3f27e3, 0x3fef2537e0a71f9f, // 0.22957, 0.97329 0x3fcd31774d2cbdee, 0x3fef2817fc4609ce, // 0.22807, 0.97364 0x3fcd00843c99c5f9, 0x3fef2af349e17507, // 0.22658, 0.97399 0x3fcccf8cb312b286, 0x3fef2dc9c9089a9d, // 0.22508, 0.97434 0x3fcc9e90b824a6a9, 0x3fef309b794b719f, // 0.22359, 0.97468 0x3fcc6d90535d74dc, 0x3fef33685a3aaef0, // 0.22209, 0.97503 0x3fcc3c8b8c4b9dd7, 0x3fef36306b67c556, // 0.2206, 0.97536 0x3fcc0b826a7e4f63, 0x3fef38f3ac64e589, // 0.2191, 0.9757 0x3fcbda74f5856330, 0x3fef3bb21cc4fe47, // 0.2176, 0.97604 0x3fcba96334f15dad, 0x3fef3e6bbc1bbc65, // 0.21611, 0.97637 0x3fcb784d30536cda, 0x3fef412089fd8adc, // 0.21461, 0.9767 0x3fcb4732ef3d6722, 0x3fef43d085ff92dd, // 0.21311, 0.97703 0x3fcb16147941ca2a, 0x3fef467bafb7bbe0, // 0.21161, 0.97735 0x3fcae4f1d5f3b9ab, 0x3fef492206bcabb4, // 0.21011, 0.97768 0x3fcab3cb0ce6fe44, 0x3fef4bc38aa5c694, // 0.20861, 0.978 0x3fca82a025b00451, 0x3fef4e603b0b2f2d, // 0.20711, 0.97832 0x3fca517127e3dabc, 0x3fef50f81785c6b9, // 0.20561, 0.97863 0x3fca203e1b1831da, 0x3fef538b1faf2d07, // 0.20411, 0.97895 0x3fc9ef0706e35a35, 0x3fef56195321c090, // 0.20261, 0.97926 0x3fc9bdcbf2dc4366, 0x3fef58a2b1789e84, // 0.2011, 0.97957 0x3fc98c8ce69a7aec, 0x3fef5b273a4fa2d9, // 0.1996, 0.97988 0x3fc95b49e9b62af9, 0x3fef5da6ed43685d, // 0.1981, 0.98018 0x3fc92a0303c8194f, 0x3fef6021c9f148c2, // 0.19659, 0.98048 0x3fc8f8b83c69a60a, 0x3fef6297cff75cb0, // 0.19509, 0.98079 0x3fc8c7699b34ca7e, 0x3fef6508fef47bd5, // 0.19359, 0.98108 0x3fc8961727c41804, 0x3fef677556883cee, // 0.19208, 0.98138 0x3fc864c0e9b2b6cf, 0x3fef69dcd652f5de, // 0.19057, 0.98167 0x3fc83366e89c64c5, 0x3fef6c3f7df5bbb7, // 0.18907, 0.98196 0x3fc802092c1d744b, 0x3fef6e9d4d1262ca, // 0.18756, 0.98225 0x3fc7d0a7bbd2cb1b, 0x3fef70f6434b7eb7, // 0.18606, 0.98254 0x3fc79f429f59e11d, 0x3fef734a60446279, // 0.18455, 0.98282 0x3fc76dd9de50bf31, 0x3fef7599a3a12077, // 0.18304, 0.98311 0x3fc73c6d8055fe0a, 0x3fef77e40d068a90, // 0.18153, 0.98339 0x3fc70afd8d08c4ff, 0x3fef7a299c1a322a, // 0.18002, 0.98366 0x3fc6d98a0c08c8da, 0x3fef7c6a50826840, // 0.17851, 0.98394 0x3fc6a81304f64ab2, 0x3fef7ea629e63d6e, // 0.177, 0.98421 0x3fc676987f7216b8, 0x3fef80dd27ed8204, // 0.17549, 0.98448 0x3fc6451a831d830d, 0x3fef830f4a40c60c, // 0.17398, 0.98475 0x3fc61399179a6e94, 0x3fef853c9089595e, // 0.17247, 0.98501 0x3fc5e214448b3fc6, 0x3fef8764fa714ba9, // 0.17096, 0.98528 0x3fc5b08c1192e381, 0x3fef898887a36c84, // 0.16945, 0.98554 0x3fc57f008654cbde, 0x3fef8ba737cb4b78, // 0.16794, 0.9858 0x3fc54d71aa74ef02, 0x3fef8dc10a95380d, // 0.16643, 0.98605 0x3fc51bdf8597c5f2, 0x3fef8fd5ffae41db, // 0.16491, 0.98631 0x3fc4ea4a1f624b61, 0x3fef91e616c43891, // 0.1634, 0.98656 0x3fc4b8b17f79fa88, 0x3fef93f14f85ac08, // 0.16189, 0.98681 0x3fc48715ad84cdf5, 0x3fef95f7a9a1ec47, // 0.16037, 0.98706 0x3fc45576b1293e5a, 0x3fef97f924c9099b, // 0.15886, 0.9873 0x3fc423d4920e4166, 0x3fef99f5c0abd496, // 0.15734, 0.98754 0x3fc3f22f57db4893, 0x3fef9bed7cfbde29, // 0.15583, 0.98778 0x3fc3c0870a383ff6, 0x3fef9de0596b77a3, // 0.15431, 0.98802 0x3fc38edbb0cd8d14, 0x3fef9fce55adb2c8, // 0.1528, 0.98826 0x3fc35d2d53440db2, 0x3fefa1b7717661d5, // 0.15128, 0.98849 0x3fc32b7bf94516a7, 0x3fefa39bac7a1791, // 0.14976, 0.98872 0x3fc2f9c7aa7a72af, 0x3fefa57b066e2754, // 0.14825, 0.98895 0x3fc2c8106e8e613a, 0x3fefa7557f08a517, // 0.14673, 0.98918 0x3fc296564d2b953e, 0x3fefa92b1600657c, // 0.14521, 0.9894 0x3fc264994dfd340a, 0x3fefaafbcb0cfddc, // 0.1437, 0.98962 0x3fc232d978aed413, 0x3fefacc79de6c44f, // 0.14218, 0.98984 0x3fc20116d4ec7bce, 0x3fefae8e8e46cfbb, // 0.14066, 0.99006 0x3fc1cf516a62a077, 0x3fefb0509be6f7db, // 0.13914, 0.99027 0x3fc19d8940be24e7, 0x3fefb20dc681d54d, // 0.13762, 0.99049 0x3fc16bbe5fac5865, 0x3fefb3c60dd2c199, // 0.1361, 0.9907 0x3fc139f0cedaf576, 0x3fefb5797195d741, // 0.13458, 0.9909 0x3fc1082095f820b0, 0x3fefb727f187f1c7, // 0.13306, 0.99111 0x3fc0d64dbcb26786, 0x3fefb8d18d66adb7, // 0.13154, 0.99131 0x3fc0a4784ab8bf1d, 0x3fefba7644f068b5, // 0.13002, 0.99151 0x3fc072a047ba831d, 0x3fefbc1617e44186, // 0.1285, 0.99171 0x3fc040c5bb67747e, 0x3fefbdb106021816, // 0.12698, 0.99191 0x3fc00ee8ad6fb85b, 0x3fefbf470f0a8d88, // 0.12545, 0.9921 0x3fbfba124b07ad85, 0x3fefc0d832bf043a, // 0.12393, 0.99229 0x3fbf564e56a9730e, 0x3fefc26470e19fd3, // 0.12241, 0.99248 0x3fbef2858d27561b, 0x3fefc3ebc935454c, // 0.12089, 0.99267 0x3fbe8eb7fde4aa3e, 0x3fefc56e3b7d9af6, // 0.11937, 0.99285 0x3fbe2ae5b8457f77, 0x3fefc6ebc77f0887, // 0.11784, 0.99303 0x3fbdc70ecbae9fc8, 0x3fefc8646cfeb721, // 0.11632, 0.99321 0x3fbd633347858ce4, 0x3fefc9d82bc2915e, // 0.11479, 0.99339 0x3fbcff533b307dc1, 0x3fefcb4703914354, // 0.11327, 0.99356 0x3fbc9b6eb6165c42, 0x3fefccb0f4323aa3, // 0.11175, 0.99374 0x3fbc3785c79ec2d5, 0x3fefce15fd6da67b, // 0.11022, 0.99391 0x3fbbd3987f31fa0e, 0x3fefcf761f0c77a3, // 0.1087, 0.99407 0x3fbb6fa6ec38f64c, 0x3fefd0d158d86087, // 0.10717, 0.99424 0x3fbb0bb11e1d5559, 0x3fefd227aa9bd53b, // 0.10565, 0.9944 0x3fbaa7b724495c04, 0x3fefd37914220b84, // 0.10412, 0.99456 0x3fba43b90e27f3c4, 0x3fefd4c59536fae4, // 0.1026, 0.99472 0x3fb9dfb6eb24a85c, 0x3fefd60d2da75c9e, // 0.10107, 0.99488 0x3fb97bb0caaba56f, 0x3fefd74fdd40abbf, // 0.099544, 0.99503 0x3fb917a6bc29b42c, 0x3fefd88da3d12526, // 0.098017, 0.99518 0x3fb8b398cf0c38e0, 0x3fefd9c68127c78c, // 0.09649, 0.99533 0x3fb84f8712c130a0, 0x3fefdafa7514538c, // 0.094963, 0.99548 0x3fb7eb7196b72ee4, 0x3fefdc297f674ba9, // 0.093436, 0.99563 0x3fb787586a5d5b21, 0x3fefdd539ff1f456, // 0.091909, 0.99577 0x3fb7233b9d236e71, 0x3fefde78d68653fd, // 0.090381, 0.99591 0x3fb6bf1b3e79b129, 0x3fefdf9922f73307, // 0.088854, 0.99604 0x3fb65af75dd0f87b, 0x3fefe0b485181be3, // 0.087326, 0.99618 0x3fb5f6d00a9aa419, 0x3fefe1cafcbd5b09, // 0.085797, 0.99631 0x3fb592a554489bc8, 0x3fefe2dc89bbff08, // 0.084269, 0.99644 0x3fb52e774a4d4d0a, 0x3fefe3e92be9d886, // 0.08274, 0.99657 0x3fb4ca45fc1ba8b6, 0x3fefe4f0e31d7a4a, // 0.081211, 0.9967 0x3fb4661179272096, 0x3fefe5f3af2e3940, // 0.079682, 0.99682 0x3fb401d9d0e3a507, 0x3fefe6f18ff42c84, // 0.078153, 0.99694 0x3fb39d9f12c5a299, 0x3fefe7ea85482d60, // 0.076624, 0.99706 0x3fb339614e41ffa5, 0x3fefe8de8f03d75c, // 0.075094, 0.99718 0x3fb2d52092ce19f6, 0x3fefe9cdad01883a, // 0.073565, 0.99729 0x3fb270dcefdfc45b, 0x3fefeab7df1c6005, // 0.072035, 0.9974 0x3fb20c9674ed444c, 0x3fefeb9d2530410f, // 0.070505, 0.99751 0x3fb1a84d316d4f8a, 0x3fefec7d7f19cffc, // 0.068974, 0.99762 0x3fb1440134d709b2, 0x3fefed58ecb673c4, // 0.067444, 0.99772 0x3fb0dfb28ea201e6, 0x3fefee2f6de455ba, // 0.065913, 0.99783 0x3fb07b614e463064, 0x3fefef0102826191, // 0.064383, 0.99793 0x3fb0170d833bf421, 0x3fefefcdaa704562, // 0.062852, 0.99802 0x3faf656e79f820e0, 0x3feff095658e71ad, // 0.061321, 0.99812 0x3fae9cbd15ff5527, 0x3feff15833be1965, // 0.05979, 0.99821 0x3fadd406f9808ec8, 0x3feff21614e131ed, // 0.058258, 0.9983 0x3fad0b4c436f91d0, 0x3feff2cf08da7321, // 0.056727, 0.99839 0x3fac428d12c0d7e3, 0x3feff3830f8d575c, // 0.055195, 0.99848 0x3fab79c986698b78, 0x3feff43228de1b77, // 0.053664, 0.99856 0x3faab101bd5f8317, 0x3feff4dc54b1bed3, // 0.052132, 0.99864 0x3fa9e835d6993c87, 0x3feff58192ee0358, // 0.0506, 0.99872 0x3fa91f65f10dd814, 0x3feff621e3796d7e, // 0.049068, 0.9988 0x3fa856922bb513c1, 0x3feff6bd463b444d, // 0.047535, 0.99887 0x3fa78dbaa5874685, 0x3feff753bb1b9164, // 0.046003, 0.99894 0x3fa6c4df7d7d5b84, 0x3feff7e5420320f9, // 0.044471, 0.99901 0x3fa5fc00d290cd43, 0x3feff871dadb81df, // 0.042938, 0.99908 0x3fa5331ec3bba0eb, 0x3feff8f9858f058b, // 0.041406, 0.99914 0x3fa46a396ff86179, 0x3feff97c4208c014, // 0.039873, 0.9992 0x3fa3a150f6421afc, 0x3feff9fa10348837, // 0.03834, 0.99926 0x3fa2d865759455cd, 0x3feffa72effef75d, // 0.036807, 0.99932 0x3fa20f770ceb11c6, 0x3feffae6e1556998, // 0.035274, 0.99938 0x3fa14685db42c17e, 0x3feffb55e425fdae, // 0.033741, 0.99943 0x3fa07d91ff984580, 0x3feffbbff85f9515, // 0.032208, 0.99948 0x3f9f693731d1cf01, 0x3feffc251df1d3f8, // 0.030675, 0.99953 0x3f9dd7458c64ab39, 0x3feffc8554cd213a, // 0.029142, 0.99958 0x3f9c454f4ce53b1c, 0x3feffce09ce2a679, // 0.027608, 0.99962 0x3f9ab354b1504fca, 0x3feffd36f624500c, // 0.026075, 0.99966 0x3f992155f7a3667e, 0x3feffd886084cd0d, // 0.024541, 0.9997 0x3f978f535ddc9f03, 0x3feffdd4dbf78f52, // 0.023008, 0.99974 0x3f95fd4d21fab226, 0x3feffe1c6870cb77, // 0.021474, 0.99977 0x3f946b4381fce81c, 0x3feffe5f05e578db, // 0.01994, 0.9998 0x3f92d936bbe30efd, 0x3feffe9cb44b51a1, // 0.018407, 0.99983 0x3f9147270dad7132, 0x3feffed57398d2b7, // 0.016873, 0.99986 0x3f8f6a296ab997ca, 0x3fefff0943c53bd1, // 0.015339, 0.99988 0x3f8c45ffe1e48ad9, 0x3fefff3824c88f6f, // 0.013805, 0.9999 0x3f8921d1fcdec784, 0x3fefff62169b92db, // 0.012272, 0.99992 0x3f85fda037ac05e0, 0x3fefff871937ce2f, // 0.010738, 0.99994 0x3f82d96b0e509703, 0x3fefffa72c978c4f, // 0.0092038, 0.99996 0x3f7f6a65f9a2a3c5, 0x3fefffc250b5daef, // 0.0076698, 0.99997 0x3f7921f0fe670071, 0x3fefffd8858e8a92, // 0.0061359, 0.99998 0x3f72d97822f996bc, 0x3fefffe9cb1e2e8d, // 0.0046019, 0.99999 0x3f6921f8becca4ba, 0x3feffff621621d02, // 0.003068, 1 0x3f5921faaee6472d, 0x3feffffd88586ee6, // 0.001534, 1 0x0000000000000000, 0x3ff0000000000000, // 0, 1 0xbf5921faaee6472d, 0x3feffffd88586ee6, // -0.001534, 1 0xbf6921f8becca4ba, 0x3feffff621621d02, // -0.003068, 1 0xbf72d97822f996bc, 0x3fefffe9cb1e2e8d, //-0.0046019, 0.99999 0xbf7921f0fe670071, 0x3fefffd8858e8a92, //-0.0061359, 0.99998 0xbf7f6a65f9a2a3c5, 0x3fefffc250b5daef, //-0.0076698, 0.99997 0xbf82d96b0e509703, 0x3fefffa72c978c4f, //-0.0092038, 0.99996 0xbf85fda037ac05e0, 0x3fefff871937ce2f, // -0.010738, 0.99994 0xbf8921d1fcdec784, 0x3fefff62169b92db, // -0.012272, 0.99992 0xbf8c45ffe1e48ad9, 0x3fefff3824c88f6f, // -0.013805, 0.9999 0xbf8f6a296ab997ca, 0x3fefff0943c53bd1, // -0.015339, 0.99988 0xbf9147270dad7132, 0x3feffed57398d2b7, // -0.016873, 0.99986 0xbf92d936bbe30efd, 0x3feffe9cb44b51a1, // -0.018407, 0.99983 0xbf946b4381fce81c, 0x3feffe5f05e578db, // -0.01994, 0.9998 0xbf95fd4d21fab226, 0x3feffe1c6870cb77, // -0.021474, 0.99977 0xbf978f535ddc9f03, 0x3feffdd4dbf78f52, // -0.023008, 0.99974 0xbf992155f7a3667e, 0x3feffd886084cd0d, // -0.024541, 0.9997 0xbf9ab354b1504fca, 0x3feffd36f624500c, // -0.026075, 0.99966 0xbf9c454f4ce53b1c, 0x3feffce09ce2a679, // -0.027608, 0.99962 0xbf9dd7458c64ab39, 0x3feffc8554cd213a, // -0.029142, 0.99958 0xbf9f693731d1cf01, 0x3feffc251df1d3f8, // -0.030675, 0.99953 0xbfa07d91ff984580, 0x3feffbbff85f9515, // -0.032208, 0.99948 0xbfa14685db42c17e, 0x3feffb55e425fdae, // -0.033741, 0.99943 0xbfa20f770ceb11c6, 0x3feffae6e1556998, // -0.035274, 0.99938 0xbfa2d865759455cd, 0x3feffa72effef75d, // -0.036807, 0.99932 0xbfa3a150f6421afc, 0x3feff9fa10348837, // -0.03834, 0.99926 0xbfa46a396ff86179, 0x3feff97c4208c014, // -0.039873, 0.9992 0xbfa5331ec3bba0eb, 0x3feff8f9858f058b, // -0.041406, 0.99914 0xbfa5fc00d290cd43, 0x3feff871dadb81df, // -0.042938, 0.99908 0xbfa6c4df7d7d5b84, 0x3feff7e5420320f9, // -0.044471, 0.99901 0xbfa78dbaa5874685, 0x3feff753bb1b9164, // -0.046003, 0.99894 0xbfa856922bb513c1, 0x3feff6bd463b444d, // -0.047535, 0.99887 0xbfa91f65f10dd814, 0x3feff621e3796d7e, // -0.049068, 0.9988 0xbfa9e835d6993c87, 0x3feff58192ee0358, // -0.0506, 0.99872 0xbfaab101bd5f8317, 0x3feff4dc54b1bed3, // -0.052132, 0.99864 0xbfab79c986698b78, 0x3feff43228de1b77, // -0.053664, 0.99856 0xbfac428d12c0d7e3, 0x3feff3830f8d575c, // -0.055195, 0.99848 0xbfad0b4c436f91d0, 0x3feff2cf08da7321, // -0.056727, 0.99839 0xbfadd406f9808ec8, 0x3feff21614e131ed, // -0.058258, 0.9983 0xbfae9cbd15ff5527, 0x3feff15833be1965, // -0.05979, 0.99821 0xbfaf656e79f820e0, 0x3feff095658e71ad, // -0.061321, 0.99812 0xbfb0170d833bf421, 0x3fefefcdaa704562, // -0.062852, 0.99802 0xbfb07b614e463064, 0x3fefef0102826191, // -0.064383, 0.99793 0xbfb0dfb28ea201e6, 0x3fefee2f6de455ba, // -0.065913, 0.99783 0xbfb1440134d709b2, 0x3fefed58ecb673c4, // -0.067444, 0.99772 0xbfb1a84d316d4f8a, 0x3fefec7d7f19cffc, // -0.068974, 0.99762 0xbfb20c9674ed444c, 0x3fefeb9d2530410f, // -0.070505, 0.99751 0xbfb270dcefdfc45b, 0x3fefeab7df1c6005, // -0.072035, 0.9974 0xbfb2d52092ce19f6, 0x3fefe9cdad01883a, // -0.073565, 0.99729 0xbfb339614e41ffa5, 0x3fefe8de8f03d75c, // -0.075094, 0.99718 0xbfb39d9f12c5a299, 0x3fefe7ea85482d60, // -0.076624, 0.99706 0xbfb401d9d0e3a507, 0x3fefe6f18ff42c84, // -0.078153, 0.99694 0xbfb4661179272096, 0x3fefe5f3af2e3940, // -0.079682, 0.99682 0xbfb4ca45fc1ba8b6, 0x3fefe4f0e31d7a4a, // -0.081211, 0.9967 0xbfb52e774a4d4d0a, 0x3fefe3e92be9d886, // -0.08274, 0.99657 0xbfb592a554489bc8, 0x3fefe2dc89bbff08, // -0.084269, 0.99644 0xbfb5f6d00a9aa419, 0x3fefe1cafcbd5b09, // -0.085797, 0.99631 0xbfb65af75dd0f87b, 0x3fefe0b485181be3, // -0.087326, 0.99618 0xbfb6bf1b3e79b129, 0x3fefdf9922f73307, // -0.088854, 0.99604 0xbfb7233b9d236e71, 0x3fefde78d68653fd, // -0.090381, 0.99591 0xbfb787586a5d5b21, 0x3fefdd539ff1f456, // -0.091909, 0.99577 0xbfb7eb7196b72ee4, 0x3fefdc297f674ba9, // -0.093436, 0.99563 0xbfb84f8712c130a0, 0x3fefdafa7514538c, // -0.094963, 0.99548 0xbfb8b398cf0c38e0, 0x3fefd9c68127c78c, // -0.09649, 0.99533 0xbfb917a6bc29b42c, 0x3fefd88da3d12526, // -0.098017, 0.99518 0xbfb97bb0caaba56f, 0x3fefd74fdd40abbf, // -0.099544, 0.99503 0xbfb9dfb6eb24a85c, 0x3fefd60d2da75c9e, // -0.10107, 0.99488 0xbfba43b90e27f3c4, 0x3fefd4c59536fae4, // -0.1026, 0.99472 0xbfbaa7b724495c04, 0x3fefd37914220b84, // -0.10412, 0.99456 0xbfbb0bb11e1d5559, 0x3fefd227aa9bd53b, // -0.10565, 0.9944 0xbfbb6fa6ec38f64c, 0x3fefd0d158d86087, // -0.10717, 0.99424 0xbfbbd3987f31fa0e, 0x3fefcf761f0c77a3, // -0.1087, 0.99407 0xbfbc3785c79ec2d5, 0x3fefce15fd6da67b, // -0.11022, 0.99391 0xbfbc9b6eb6165c42, 0x3fefccb0f4323aa3, // -0.11175, 0.99374 0xbfbcff533b307dc1, 0x3fefcb4703914354, // -0.11327, 0.99356 0xbfbd633347858ce4, 0x3fefc9d82bc2915e, // -0.11479, 0.99339 0xbfbdc70ecbae9fc8, 0x3fefc8646cfeb721, // -0.11632, 0.99321 0xbfbe2ae5b8457f77, 0x3fefc6ebc77f0887, // -0.11784, 0.99303 0xbfbe8eb7fde4aa3e, 0x3fefc56e3b7d9af6, // -0.11937, 0.99285 0xbfbef2858d27561b, 0x3fefc3ebc935454c, // -0.12089, 0.99267 0xbfbf564e56a9730e, 0x3fefc26470e19fd3, // -0.12241, 0.99248 0xbfbfba124b07ad85, 0x3fefc0d832bf043a, // -0.12393, 0.99229 0xbfc00ee8ad6fb85b, 0x3fefbf470f0a8d88, // -0.12545, 0.9921 0xbfc040c5bb67747e, 0x3fefbdb106021816, // -0.12698, 0.99191 0xbfc072a047ba831d, 0x3fefbc1617e44186, // -0.1285, 0.99171 0xbfc0a4784ab8bf1d, 0x3fefba7644f068b5, // -0.13002, 0.99151 0xbfc0d64dbcb26786, 0x3fefb8d18d66adb7, // -0.13154, 0.99131 0xbfc1082095f820b0, 0x3fefb727f187f1c7, // -0.13306, 0.99111 0xbfc139f0cedaf576, 0x3fefb5797195d741, // -0.13458, 0.9909 0xbfc16bbe5fac5865, 0x3fefb3c60dd2c199, // -0.1361, 0.9907 0xbfc19d8940be24e7, 0x3fefb20dc681d54d, // -0.13762, 0.99049 0xbfc1cf516a62a077, 0x3fefb0509be6f7db, // -0.13914, 0.99027 0xbfc20116d4ec7bce, 0x3fefae8e8e46cfbb, // -0.14066, 0.99006 0xbfc232d978aed413, 0x3fefacc79de6c44f, // -0.14218, 0.98984 0xbfc264994dfd340a, 0x3fefaafbcb0cfddc, // -0.1437, 0.98962 0xbfc296564d2b953e, 0x3fefa92b1600657c, // -0.14521, 0.9894 0xbfc2c8106e8e613a, 0x3fefa7557f08a517, // -0.14673, 0.98918 0xbfc2f9c7aa7a72af, 0x3fefa57b066e2754, // -0.14825, 0.98895 0xbfc32b7bf94516a7, 0x3fefa39bac7a1791, // -0.14976, 0.98872 0xbfc35d2d53440db2, 0x3fefa1b7717661d5, // -0.15128, 0.98849 0xbfc38edbb0cd8d14, 0x3fef9fce55adb2c8, // -0.1528, 0.98826 0xbfc3c0870a383ff6, 0x3fef9de0596b77a3, // -0.15431, 0.98802 0xbfc3f22f57db4893, 0x3fef9bed7cfbde29, // -0.15583, 0.98778 0xbfc423d4920e4166, 0x3fef99f5c0abd496, // -0.15734, 0.98754 0xbfc45576b1293e5a, 0x3fef97f924c9099b, // -0.15886, 0.9873 0xbfc48715ad84cdf5, 0x3fef95f7a9a1ec47, // -0.16037, 0.98706 0xbfc4b8b17f79fa88, 0x3fef93f14f85ac08, // -0.16189, 0.98681 0xbfc4ea4a1f624b61, 0x3fef91e616c43891, // -0.1634, 0.98656 0xbfc51bdf8597c5f2, 0x3fef8fd5ffae41db, // -0.16491, 0.98631 0xbfc54d71aa74ef02, 0x3fef8dc10a95380d, // -0.16643, 0.98605 0xbfc57f008654cbde, 0x3fef8ba737cb4b78, // -0.16794, 0.9858 0xbfc5b08c1192e381, 0x3fef898887a36c84, // -0.16945, 0.98554 0xbfc5e214448b3fc6, 0x3fef8764fa714ba9, // -0.17096, 0.98528 0xbfc61399179a6e94, 0x3fef853c9089595e, // -0.17247, 0.98501 0xbfc6451a831d830d, 0x3fef830f4a40c60c, // -0.17398, 0.98475 0xbfc676987f7216b8, 0x3fef80dd27ed8204, // -0.17549, 0.98448 0xbfc6a81304f64ab2, 0x3fef7ea629e63d6e, // -0.177, 0.98421 0xbfc6d98a0c08c8da, 0x3fef7c6a50826840, // -0.17851, 0.98394 0xbfc70afd8d08c4ff, 0x3fef7a299c1a322a, // -0.18002, 0.98366 0xbfc73c6d8055fe0a, 0x3fef77e40d068a90, // -0.18153, 0.98339 0xbfc76dd9de50bf31, 0x3fef7599a3a12077, // -0.18304, 0.98311 0xbfc79f429f59e11d, 0x3fef734a60446279, // -0.18455, 0.98282 0xbfc7d0a7bbd2cb1b, 0x3fef70f6434b7eb7, // -0.18606, 0.98254 0xbfc802092c1d744b, 0x3fef6e9d4d1262ca, // -0.18756, 0.98225 0xbfc83366e89c64c5, 0x3fef6c3f7df5bbb7, // -0.18907, 0.98196 0xbfc864c0e9b2b6cf, 0x3fef69dcd652f5de, // -0.19057, 0.98167 0xbfc8961727c41804, 0x3fef677556883cee, // -0.19208, 0.98138 0xbfc8c7699b34ca7e, 0x3fef6508fef47bd5, // -0.19359, 0.98108 0xbfc8f8b83c69a60a, 0x3fef6297cff75cb0, // -0.19509, 0.98079 0xbfc92a0303c8194f, 0x3fef6021c9f148c2, // -0.19659, 0.98048 0xbfc95b49e9b62af9, 0x3fef5da6ed43685d, // -0.1981, 0.98018 0xbfc98c8ce69a7aec, 0x3fef5b273a4fa2d9, // -0.1996, 0.97988 0xbfc9bdcbf2dc4366, 0x3fef58a2b1789e84, // -0.2011, 0.97957 0xbfc9ef0706e35a35, 0x3fef56195321c090, // -0.20261, 0.97926 0xbfca203e1b1831da, 0x3fef538b1faf2d07, // -0.20411, 0.97895 0xbfca517127e3dabc, 0x3fef50f81785c6b9, // -0.20561, 0.97863 0xbfca82a025b00451, 0x3fef4e603b0b2f2d, // -0.20711, 0.97832 0xbfcab3cb0ce6fe44, 0x3fef4bc38aa5c694, // -0.20861, 0.978 0xbfcae4f1d5f3b9ab, 0x3fef492206bcabb4, // -0.21011, 0.97768 0xbfcb16147941ca2a, 0x3fef467bafb7bbe0, // -0.21161, 0.97735 0xbfcb4732ef3d6722, 0x3fef43d085ff92dd, // -0.21311, 0.97703 0xbfcb784d30536cda, 0x3fef412089fd8adc, // -0.21461, 0.9767 0xbfcba96334f15dad, 0x3fef3e6bbc1bbc65, // -0.21611, 0.97637 0xbfcbda74f5856330, 0x3fef3bb21cc4fe47, // -0.2176, 0.97604 0xbfcc0b826a7e4f63, 0x3fef38f3ac64e589, // -0.2191, 0.9757 0xbfcc3c8b8c4b9dd7, 0x3fef36306b67c556, // -0.2206, 0.97536 0xbfcc6d90535d74dc, 0x3fef33685a3aaef0, // -0.22209, 0.97503 0xbfcc9e90b824a6a9, 0x3fef309b794b719f, // -0.22359, 0.97468 0xbfcccf8cb312b286, 0x3fef2dc9c9089a9d, // -0.22508, 0.97434 0xbfcd00843c99c5f9, 0x3fef2af349e17507, // -0.22658, 0.97399 0xbfcd31774d2cbdee, 0x3fef2817fc4609ce, // -0.22807, 0.97364 0xbfcd6265dd3f27e3, 0x3fef2537e0a71f9f, // -0.22957, 0.97329 0xbfcd934fe5454311, 0x3fef2252f7763ada, // -0.23106, 0.97294 0xbfcdc4355db40195, 0x3fef1f6941259d7a, // -0.23255, 0.97258 0xbfcdf5163f01099a, 0x3fef1c7abe284708, // -0.23404, 0.97223 0xbfce25f281a2b684, 0x3fef19876ef1f486, // -0.23553, 0.97187 0xbfce56ca1e101a1b, 0x3fef168f53f7205d, // -0.23702, 0.9715 0xbfce879d0cc0fdaf, 0x3fef13926dad024e, // -0.23851, 0.97114 0xbfceb86b462de348, 0x3fef1090bc898f5f, // -0.24, 0.97077 0xbfcee934c2d006c7, 0x3fef0d8a410379c5, // -0.24149, 0.9704 0xbfcf19f97b215f1a, 0x3fef0a7efb9230d7, // -0.24298, 0.97003 0xbfcf4ab9679c9f5c, 0x3fef076eecade0fa, // -0.24447, 0.96966 0xbfcf7b7480bd3801, 0x3fef045a14cf738c, // -0.24596, 0.96928 0xbfcfac2abeff57ff, 0x3fef014074708ed3, // -0.24744, 0.9689 0xbfcfdcdc1adfedf8, 0x3feefe220c0b95ec, // -0.24893, 0.96852 0xbfd006c4466e54af, 0x3feefafedc1ba8b7, // -0.25041, 0.96814 0xbfd01f1806b9fdd2, 0x3feef7d6e51ca3c0, // -0.2519, 0.96775 0xbfd037694a928cac, 0x3feef4aa278b2032, // -0.25338, 0.96737 0xbfd04fb80e37fdae, 0x3feef178a3e473c2, // -0.25487, 0.96698 0xbfd068044deab002, 0x3feeee425aa6b09a, // -0.25635, 0.96658 0xbfd0804e05eb661e, 0x3feeeb074c50a544, // -0.25783, 0.96619 0xbfd09895327b465e, 0x3feee7c77961dc9e, // -0.25931, 0.96579 0xbfd0b0d9cfdbdb90, 0x3feee482e25a9dbc, // -0.26079, 0.96539 0xbfd0c91bda4f158d, 0x3feee13987bbebdc, // -0.26227, 0.96499 0xbfd0e15b4e1749cd, 0x3feeddeb6a078651, // -0.26375, 0.96459 0xbfd0f998277733f7, 0x3feeda9889bfe86a, // -0.26523, 0.96418 0xbfd111d262b1f677, 0x3feed740e7684963, // -0.26671, 0.96378 0xbfd12a09fc0b1b12, 0x3feed3e483849c51, // -0.26819, 0.96337 0xbfd1423eefc69378, 0x3feed0835e999009, // -0.26967, 0.96295 0xbfd15a713a28b9d9, 0x3feecd1d792c8f10, // -0.27115, 0.96254 0xbfd172a0d7765177, 0x3feec9b2d3c3bf84, // -0.27262, 0.96212 0xbfd18acdc3f4873a, 0x3feec6436ee60309, // -0.2741, 0.9617 0xbfd1a2f7fbe8f243, 0x3feec2cf4b1af6b2, // -0.27557, 0.96128 0xbfd1bb1f7b999480, 0x3feebf5668eaf2ef, // -0.27705, 0.96086 0xbfd1d3443f4cdb3d, 0x3feebbd8c8df0b74, // -0.27852, 0.96043 0xbfd1eb6643499fbb, 0x3feeb8566b810f2a, // -0.27999, 0.96 0xbfd2038583d727bd, 0x3feeb4cf515b8811, // -0.28146, 0.95957 0xbfd21ba1fd3d2623, 0x3feeb1437af9bb34, // -0.28294, 0.95914 0xbfd233bbabc3bb72, 0x3feeadb2e8e7a88e, // -0.28441, 0.9587 0xbfd24bd28bb37672, 0x3feeaa1d9bb20af3, // -0.28588, 0.95827 0xbfd263e6995554ba, 0x3feea68393e65800, // -0.28735, 0.95783 0xbfd27bf7d0f2c346, 0x3feea2e4d212c000, // -0.28882, 0.95738 0xbfd294062ed59f05, 0x3fee9f4156c62dda, // -0.29028, 0.95694 0xbfd2ac11af483572, 0x3fee9b99229046f8, // -0.29175, 0.95649 0xbfd2c41a4e954520, 0x3fee97ec36016b30, // -0.29322, 0.95605 0xbfd2dc200907fe51, 0x3fee943a91aab4b4, // -0.29469, 0.95559 0xbfd2f422daec0386, 0x3fee9084361df7f3, // -0.29615, 0.95514 0xbfd30c22c08d6a13, 0x3fee8cc923edc388, // -0.29762, 0.95469 0xbfd3241fb638baaf, 0x3fee89095bad6025, // -0.29908, 0.95423 0xbfd33c19b83af207, 0x3fee8544ddf0d075, // -0.30054, 0.95377 0xbfd35410c2e18152, 0x3fee817bab4cd10d, // -0.30201, 0.95331 0xbfd36c04d27a4edf, 0x3fee7dadc456d850, // -0.30347, 0.95284 0xbfd383f5e353b6aa, 0x3fee79db29a5165a, // -0.30493, 0.95238 0xbfd39be3f1bc8aef, 0x3fee7603dbce74e9, // -0.30639, 0.95191 0xbfd3b3cefa0414b7, 0x3fee7227db6a9744, // -0.30785, 0.95144 0xbfd3cbb6f87a146e, 0x3fee6e472911da27, // -0.30931, 0.95096 0xbfd3e39be96ec271, 0x3fee6a61c55d53a7, // -0.31077, 0.95049 0xbfd3fb7dc932cfa4, 0x3fee6677b0e6d31e, // -0.31222, 0.95001 0xbfd4135c94176602, 0x3fee6288ec48e112, // -0.31368, 0.94953 0xbfd42b38466e2928, 0x3fee5e95781ebf1c, // -0.31514, 0.94905 0xbfd44310dc8936f0, 0x3fee5a9d550467d3, // -0.31659, 0.94856 0xbfd45ae652bb2800, 0x3fee56a083968eb1, // -0.31805, 0.94807 0xbfd472b8a5571054, 0x3fee529f04729ffc, // -0.3195, 0.94759 0xbfd48a87d0b07fd7, 0x3fee4e98d836c0af, // -0.32096, 0.94709 0xbfd4a253d11b82f3, 0x3fee4a8dff81ce5e, // -0.32241, 0.9466 0xbfd4ba1ca2eca31c, 0x3fee467e7af35f23, // -0.32386, 0.94611 0xbfd4d1e24278e76a, 0x3fee426a4b2bc17e, // -0.32531, 0.94561 0xbfd4e9a4ac15d520, 0x3fee3e5170cbfc46, // -0.32676, 0.94511 0xbfd50163dc197047, 0x3fee3a33ec75ce85, // -0.32821, 0.9446 0xbfd5191fceda3c35, 0x3fee3611becbaf69, // -0.32966, 0.9441 0xbfd530d880af3c24, 0x3fee31eae870ce25, // -0.33111, 0.94359 0xbfd5488dedeff3be, 0x3fee2dbf6a0911d9, // -0.33255, 0.94308 0xbfd5604012f467b4, 0x3fee298f4439197a, // -0.334, 0.94257 0xbfd577eeec151e47, 0x3fee255a77a63bb8, // -0.33545, 0.94206 0xbfd58f9a75ab1fdd, 0x3fee212104f686e5, // -0.33689, 0.94154 0xbfd5a742ac0ff78d, 0x3fee1ce2ecd0c0d8, // -0.33833, 0.94103 0xbfd5bee78b9db3b6, 0x3fee18a02fdc66d9, // -0.33978, 0.94051 0xbfd5d68910aee686, 0x3fee1458cec1ad83, // -0.34122, 0.93998 0xbfd5ee27379ea693, 0x3fee100cca2980ac, // -0.34266, 0.93946 0xbfd605c1fcc88f63, 0x3fee0bbc22bd8349, // -0.3441, 0.93893 0xbfd61d595c88c203, 0x3fee0766d9280f54, // -0.34554, 0.9384 0xbfd634ed533be58e, 0x3fee030cee1435b8, // -0.34698, 0.93787 0xbfd64c7ddd3f27c6, 0x3fedfeae622dbe2b, // -0.34842, 0.93734 0xbfd6640af6f03d9e, 0x3fedfa4b3621271d, // -0.34986, 0.9368 0xbfd67b949cad63ca, 0x3fedf5e36a9ba59c, // -0.35129, 0.93627 0xbfd6931acad55f51, 0x3fedf177004b2534, // -0.35273, 0.93573 0xbfd6aa9d7dc77e16, 0x3feded05f7de47da, // -0.35416, 0.93518 0xbfd6c21cb1e39771, 0x3fede890520465ce, // -0.3556, 0.93464 0xbfd6d998638a0cb5, 0x3fede4160f6d8d81, // -0.35703, 0.93409 0xbfd6f1108f1bc9c5, 0x3feddf9730ca837b, // -0.35846, 0.93354 0xbfd7088530fa459e, 0x3feddb13b6ccc23d, // -0.3599, 0.93299 0xbfd71ff6458782ec, 0x3fedd68ba2267a25, // -0.36133, 0.93244 0xbfd73763c9261092, 0x3fedd1fef38a915a, // -0.36276, 0.93188 0xbfd74ecdb8390a3e, 0x3fedcd6dabaca3a5, // -0.36418, 0.93133 0xbfd766340f2418f6, 0x3fedc8d7cb410260, // -0.36561, 0.93077 0xbfd77d96ca4b73a6, 0x3fedc43d52fcb453, // -0.36704, 0.93021 0xbfd794f5e613dfae, 0x3fedbf9e4395759a, // -0.36847, 0.92964 0xbfd7ac515ee2b172, 0x3fedbafa9dc1b78d, // -0.36989, 0.92907 0xbfd7c3a9311dcce7, 0x3fedb6526238a09b, // -0.37132, 0.92851 0xbfd7dafd592ba621, 0x3fedb1a591b20c38, // -0.37274, 0.92794 0xbfd7f24dd37341e3, 0x3fedacf42ce68ab9, // -0.37416, 0.92736 0xbfd8099a9c5c362d, 0x3feda83e348f613b, // -0.37559, 0.92679 0xbfd820e3b04eaac4, 0x3feda383a9668988, // -0.37701, 0.92621 0xbfd838290bb359c8, 0x3fed9ec48c26b1f3, // -0.37843, 0.92563 0xbfd84f6aaaf3903f, 0x3fed9a00dd8b3d46, // -0.37985, 0.92505 0xbfd866a88a792ea0, 0x3fed95389e50429b, // -0.38127, 0.92447 0xbfd87de2a6aea963, 0x3fed906bcf328d46, // -0.38268, 0.92388 0xbfd89518fbff098e, 0x3fed8b9a70ef9cb4, // -0.3841, 0.92329 0xbfd8ac4b86d5ed44, 0x3fed86c48445a450, // -0.38552, 0.9227 0xbfd8c37a439f884f, 0x3fed81ea09f38b63, // -0.38693, 0.92211 0xbfd8daa52ec8a4af, 0x3fed7d0b02b8ecf9, // -0.38835, 0.92151 0xbfd8f1cc44bea329, 0x3fed78276f5617c6, // -0.38976, 0.92092 0xbfd908ef81ef7bd1, 0x3fed733f508c0dff, // -0.39117, 0.92032 0xbfd9200ee2c9be97, 0x3fed6e52a71c8547, // -0.39258, 0.91972 0xbfd9372a63bc93d7, 0x3fed696173c9e68b, // -0.39399, 0.91911 0xbfd94e420137bce3, 0x3fed646bb7574de5, // -0.3954, 0.91851 0xbfd96555b7ab948f, 0x3fed5f7172888a7f, // -0.39681, 0.9179 0xbfd97c6583890fc2, 0x3fed5a72a6221e73, // -0.39822, 0.91729 0xbfd993716141bdfe, 0x3fed556f52e93eb1, // -0.39962, 0.91668 0xbfd9aa794d47c9ee, 0x3fed506779a3d2d9, // -0.40103, 0.91606 0xbfd9c17d440df9f2, 0x3fed4b5b1b187524, // -0.40243, 0.91545 0xbfd9d87d4207b0ab, 0x3fed464a380e7242, // -0.40384, 0.91483 0xbfd9ef7943a8ed8a, 0x3fed4134d14dc93a, // -0.40524, 0.91421 0xbfda067145664d57, 0x3fed3c1ae79f2b4e, // -0.40664, 0.91359 0xbfda1d6543b50ac0, 0x3fed36fc7bcbfbdc, // -0.40804, 0.91296 0xbfda34553b0afee5, 0x3fed31d98e9e503a, // -0.40944, 0.91234 0xbfda4b4127dea1e4, 0x3fed2cb220e0ef9f, // -0.41084, 0.91171 0xbfda622906a70b63, 0x3fed2786335f52fc, // -0.41224, 0.91107 0xbfda790cd3dbf31a, 0x3fed2255c6e5a4e1, // -0.41364, 0.91044 0xbfda8fec8bf5b166, 0x3fed1d20dc40c15c, // -0.41503, 0.90981 0xbfdaa6c82b6d3fc9, 0x3fed17e7743e35dc, // -0.41643, 0.90917 0xbfdabd9faebc3980, 0x3fed12a98fac410c, // -0.41782, 0.90853 0xbfdad473125cdc08, 0x3fed0d672f59d2b9, // -0.41922, 0.90789 0xbfdaeb4252ca07ab, 0x3fed082054168bac, // -0.42061, 0.90724 0xbfdb020d6c7f4009, 0x3fed02d4feb2bd92, // -0.422, 0.9066 0xbfdb18d45bf8aca6, 0x3fecfd852fff6ad4, // -0.42339, 0.90595 0xbfdb2f971db31972, 0x3fecf830e8ce467b, // -0.42478, 0.9053 0xbfdb4655ae2bf757, 0x3fecf2d829f1b40e, // -0.42617, 0.90464 0xbfdb5d1009e15cc0, 0x3feced7af43cc773, // -0.42756, 0.90399 0xbfdb73c62d520624, 0x3fece819488344ce, // -0.42894, 0.90333 0xbfdb8a7814fd5693, 0x3fece2b32799a060, // -0.43033, 0.90267 0xbfdba125bd63583e, 0x3fecdd489254fe65, // -0.43171, 0.90201 0xbfdbb7cf2304bd01, 0x3fecd7d9898b32f6, // -0.43309, 0.90135 0xbfdbce744262deee, 0x3fecd2660e12c1e6, // -0.43448, 0.90068 0xbfdbe51517ffc0d9, 0x3fecccee20c2de9f, // -0.43586, 0.90002 0xbfdbfbb1a05e0edc, 0x3fecc771c2736c09, // -0.43724, 0.89935 0xbfdc1249d8011ee7, 0x3fecc1f0f3fcfc5c, // -0.43862, 0.89867 0xbfdc28ddbb6cf145, 0x3fecbc6bb638d10b, // -0.43999, 0.898 0xbfdc3f6d47263129, 0x3fecb6e20a00da99, // -0.44137, 0.89732 0xbfdc55f877b23537, 0x3fecb153f02fb87d, // -0.44275, 0.89665 0xbfdc6c7f4997000a, 0x3fecabc169a0b901, // -0.44412, 0.89597 0xbfdc8301b95b40c2, 0x3feca62a772fd919, // -0.4455, 0.89528 0xbfdc997fc3865388, 0x3feca08f19b9c449, // -0.44687, 0.8946 0xbfdcaff964a0421d, 0x3fec9aef521bd480, // -0.44824, 0.89391 0xbfdcc66e9931c45d, 0x3fec954b213411f5, // -0.44961, 0.89322 0xbfdcdcdf5dc440ce, 0x3fec8fa287e13305, // -0.45098, 0.89253 0xbfdcf34baee1cd21, 0x3fec89f587029c13, // -0.45235, 0.89184 0xbfdd09b389152ec1, 0x3fec84441f785f61, // -0.45372, 0.89115 0xbfdd2016e8e9db5b, 0x3fec7e8e52233cf3, // -0.45508, 0.89045 0xbfdd3675caebf962, 0x3fec78d41fe4a267, // -0.45645, 0.88975 0xbfdd4cd02ba8609c, 0x3fec7315899eaad7, // -0.45781, 0.88905 0xbfdd632607ac9aa9, 0x3fec6d5290341eb2, // -0.45918, 0.88835 0xbfdd79775b86e389, 0x3fec678b3488739b, // -0.46054, 0.88764 0xbfdd8fc423c62a25, 0x3fec61bf777fcc48, // -0.4619, 0.88693 0xbfdda60c5cfa10d8, 0x3fec5bef59fef85a, // -0.46326, 0.88622 0xbfddbc5003b2edf8, 0x3fec561adceb743e, // -0.46462, 0.88551 0xbfddd28f1481cc58, 0x3fec5042012b6907, // -0.46598, 0.8848 0xbfdde8c98bf86bd6, 0x3fec4a64c7a5ac4c, // -0.46733, 0.88408 0xbfddfeff66a941de, 0x3fec44833141c004, // -0.46869, 0.88336 0xbfde1530a12779f4, 0x3fec3e9d3ee7d262, // -0.47004, 0.88264 0xbfde2b5d3806f63b, 0x3fec38b2f180bdb1, // -0.4714, 0.88192 0xbfde418527dc4ffa, 0x3fec32c449f60831, // -0.47275, 0.8812 0xbfde57a86d3cd824, 0x3fec2cd14931e3f1, // -0.4741, 0.88047 0xbfde6dc704be97e2, 0x3fec26d9f01f2eaf, // -0.47545, 0.87974 0xbfde83e0eaf85113, 0x3fec20de3fa971b0, // -0.4768, 0.87901 0xbfde99f61c817eda, 0x3fec1ade38bce19b, // -0.47815, 0.87828 0xbfdeb00695f25620, 0x3fec14d9dc465e58, // -0.47949, 0.87755 0xbfdec61253e3c61b, 0x3fec0ed12b3372e9, // -0.48084, 0.87681 0xbfdedc1952ef78d5, 0x3fec08c426725549, // -0.48218, 0.87607 0xbfdef21b8fafd3b5, 0x3fec02b2cef1e641, // -0.48353, 0.87533 0xbfdf081906bff7fd, 0x3febfc9d25a1b147, // -0.48487, 0.87459 0xbfdf1e11b4bbc35c, 0x3febf6832b71ec5b, // -0.48621, 0.87384 0xbfdf3405963fd068, 0x3febf064e15377dd, // -0.48755, 0.87309 0xbfdf49f4a7e97729, 0x3febea424837de6d, // -0.48889, 0.87235 0xbfdf5fdee656cda3, 0x3febe41b611154c1, // -0.49023, 0.8716 0xbfdf75c44e26a852, 0x3febddf02cd2b983, // -0.49156, 0.87084 0xbfdf8ba4dbf89aba, 0x3febd7c0ac6f952a, // -0.4929, 0.87009 0xbfdfa1808c6cf7e0, 0x3febd18ce0dc19d6, // -0.49423, 0.86933 0xbfdfb7575c24d2de, 0x3febcb54cb0d2327, // -0.49557, 0.86857 0xbfdfcd2947c1ff57, 0x3febc5186bf8361d, // -0.4969, 0.86781 0xbfdfe2f64be7120f, 0x3febbed7c49380ea, // -0.49823, 0.86705 0xbfdff8be6537615e, 0x3febb892d5d5dad5, // -0.49956, 0.86628 0xbfe00740c82b82e0, 0x3febb249a0b6c40d, // -0.50089, 0.86551 0xbfe0121fe4f56d2c, 0x3febabfc262e6586, // -0.50221, 0.86474 0xbfe01cfc874c3eb7, 0x3feba5aa673590d2, // -0.50354, 0.86397 0xbfe027d6ad83287e, 0x3feb9f5464c5bffc, // -0.50486, 0.8632 0xbfe032ae55edbd95, 0x3feb98fa1fd9155e, // -0.50619, 0.86242 0xbfe03d837edff370, 0x3feb929b996a5b7f, // -0.50751, 0.86165 0xbfe0485626ae221a, 0x3feb8c38d27504e9, // -0.50883, 0.86087 0xbfe053264bad0483, 0x3feb85d1cbf52c02, // -0.51015, 0.86009 0xbfe05df3ec31b8b6, 0x3feb7f6686e792ea, // -0.51147, 0.8593 0xbfe068bf0691c028, 0x3feb78f70449a34b, // -0.51279, 0.85852 0xbfe073879922ffed, 0x3feb728345196e3e, // -0.5141, 0.85773 0xbfe07e4da23bc102, 0x3feb6c0b4a55ac17, // -0.51542, 0.85694 0xbfe089112032b08c, 0x3feb658f14fdbc47, // -0.51673, 0.85615 0xbfe093d2115ee018, 0x3feb5f0ea611a532, // -0.51804, 0.85535 0xbfe09e907417c5e1, 0x3feb5889fe921405, // -0.51936, 0.85456 0xbfe0a94c46b53d0b, 0x3feb52011f805c92, // -0.52067, 0.85376 0xbfe0b405878f85ec, 0x3feb4b7409de7925, // -0.52198, 0.85296 0xbfe0bebc34ff4646, 0x3feb44e2beaf0a61, // -0.52328, 0.85216 0xbfe0c9704d5d898f, 0x3feb3e4d3ef55712, // -0.52459, 0.85136 0xbfe0d421cf03c12b, 0x3feb37b38bb54c09, // -0.5259, 0.85055 0xbfe0ded0b84bc4b5, 0x3feb3115a5f37bf4, // -0.5272, 0.84974 0xbfe0e97d078fd23b, 0x3feb2a738eb51f33, // -0.5285, 0.84893 0xbfe0f426bb2a8e7d, 0x3feb23cd470013b4, // -0.5298, 0.84812 0xbfe0fecdd1770537, 0x3feb1d22cfdadcc6, // -0.5311, 0.84731 0xbfe1097248d0a956, 0x3feb16742a4ca2f5, // -0.5324, 0.84649 0xbfe114141f935545, 0x3feb0fc1575d33db, // -0.5337, 0.84567 0xbfe11eb3541b4b22, 0x3feb090a58150200, // -0.535, 0.84485 0xbfe1294fe4c5350a, 0x3feb024f2d7d24a9, // -0.53629, 0.84403 0xbfe133e9cfee254e, 0x3feafb8fd89f57b6, // -0.53759, 0.84321 0xbfe13e8113f396c1, 0x3feaf4cc5a85fb73, // -0.53888, 0.84238 0xbfe14915af336ceb, 0x3feaee04b43c1474, // -0.54017, 0.84155 0xbfe153a7a00bf453, 0x3feae738e6cd4b67, // -0.54146, 0.84073 0xbfe15e36e4dbe2bc, 0x3feae068f345ecef, // -0.54275, 0.83989 0xbfe168c37c025764, 0x3fead994dab2e979, // -0.54404, 0.83906 0xbfe1734d63dedb49, 0x3fead2bc9e21d511, // -0.54532, 0.83822 0xbfe17dd49ad16161, 0x3feacbe03ea0e73b, // -0.54661, 0.83739 0xbfe188591f3a46e5, 0x3feac4ffbd3efac8, // -0.54789, 0.83655 0xbfe192daef7a5386, 0x3feabe1b1b0b8dac, // -0.54918, 0.83571 0xbfe19d5a09f2b9b8, 0x3feab7325916c0d4, // -0.55046, 0.83486 0xbfe1a7d66d0516e6, 0x3feab045787157ff, // -0.55174, 0.83402 0xbfe1b250171373be, 0x3feaa9547a2cb98e, // -0.55302, 0.83317 0xbfe1bcc706804467, 0x3feaa25f5f5aee60, // -0.55429, 0.83232 0xbfe1c73b39ae68c8, 0x3fea9b66290ea1a3, // -0.55557, 0.83147 0xbfe1d1acaf012cc2, 0x3fea9468d85b20ae, // -0.55685, 0.83062 0xbfe1dc1b64dc4872, 0x3fea8d676e545ad2, // -0.55812, 0.82976 0xbfe1e68759a3e074, 0x3fea8661ec0ee133, // -0.55939, 0.8289 0xbfe1f0f08bbc861b, 0x3fea7f58529fe69d, // -0.56066, 0.82805 0xbfe1fb56f98b37b8, 0x3fea784aa31d3f55, // -0.56193, 0.82718 0xbfe205baa17560d6, 0x3fea7138de9d60f5, // -0.5632, 0.82632 0xbfe2101b81e0da78, 0x3fea6a230637623b, // -0.56447, 0.82546 0xbfe21a799933eb58, 0x3fea63091b02fae2, // -0.56573, 0.82459 0xbfe224d4e5d5482e, 0x3fea5beb1e188375, // -0.567, 0.82372 0xbfe22f2d662c13e1, 0x3fea54c91090f524, // -0.56826, 0.82285 0xbfe23983189fdfd5, 0x3fea4da2f385e997, // -0.56952, 0.82198 0xbfe243d5fb98ac1f, 0x3fea4678c8119ac8, // -0.57078, 0.8211 0xbfe24e260d7ee7c9, 0x3fea3f4a8f4ee2d2, // -0.57204, 0.82023 0xbfe258734cbb7110, 0x3fea38184a593bc6, // -0.5733, 0.81935 0xbfe262bdb7b795a2, 0x3fea30e1fa4cbf81, // -0.57455, 0.81847 0xbfe26d054cdd12df, 0x3fea29a7a0462782, // -0.57581, 0.81758 0xbfe2774a0a961612, 0x3fea22693d62ccb9, // -0.57706, 0.8167 0xbfe2818bef4d3cba, 0x3fea1b26d2c0a75e, // -0.57831, 0.81581 0xbfe28bcaf96d94ba, 0x3fea13e0617e4ec7, // -0.57956, 0.81493 0xbfe2960727629ca8, 0x3fea0c95eabaf937, // -0.58081, 0.81404 0xbfe2a040779843fb, 0x3fea05476f967bb5, // -0.58206, 0.81314 0xbfe2aa76e87aeb58, 0x3fe9fdf4f13149de, // -0.58331, 0.81225 0xbfe2b4aa787764c4, 0x3fe9f69e70ac75bc, // -0.58455, 0.81135 0xbfe2bedb25faf3ea, 0x3fe9ef43ef29af94, // -0.5858, 0.81046 0xbfe2c908ef734e57, 0x3fe9e7e56dcb45bd, // -0.58704, 0.80956 0xbfe2d333d34e9bb7, 0x3fe9e082edb42472, // -0.58828, 0.80866 0xbfe2dd5bcffb7616, 0x3fe9d91c7007d5a6, // -0.58952, 0.80775 0xbfe2e780e3e8ea16, 0x3fe9d1b1f5ea80d6, // -0.59076, 0.80685 0xbfe2f1a30d86773a, 0x3fe9ca438080eadb, // -0.592, 0.80594 0xbfe2fbc24b441015, 0x3fe9c2d110f075c3, // -0.59323, 0.80503 0xbfe305de9b921a94, 0x3fe9bb5aa85f2098, // -0.59447, 0.80412 0xbfe30ff7fce17035, 0x3fe9b3e047f38741, // -0.5957, 0.80321 0xbfe31a0e6da35e44, 0x3fe9ac61f0d4e247, // -0.59693, 0.80229 0xbfe32421ec49a620, 0x3fe9a4dfa42b06b2, // -0.59816, 0.80138 0xbfe32e3277467d6b, 0x3fe99d59631e65d5, // -0.59939, 0.80046 0xbfe338400d0c8e57, 0x3fe995cf2ed80d22, // -0.60062, 0.79954 0xbfe3424aac0ef7d6, 0x3fe98e410881a600, // -0.60184, 0.79861 0xbfe34c5252c14de1, 0x3fe986aef1457594, // -0.60307, 0.79769 0xbfe35656ff9799ae, 0x3fe97f18ea4e5c9e, // -0.60429, 0.79676 0xbfe36058b10659f3, 0x3fe9777ef4c7d742, // -0.60551, 0.79584 0xbfe36a576582831b, 0x3fe96fe111ddfce0, // -0.60673, 0.79491 0xbfe374531b817f8d, 0x3fe9683f42bd7fe1, // -0.60795, 0.79398 0xbfe37e4bd1792fe2, 0x3fe960998893ad8c, // -0.60917, 0.79304 0xbfe3884185dfeb22, 0x3fe958efe48e6dd7, // -0.61038, 0.79211 0xbfe39234372c7f04, 0x3fe9514257dc4335, // -0.6116, 0.79117 0xbfe39c23e3d63029, 0x3fe94990e3ac4a6c, // -0.61281, 0.79023 0xbfe3a6108a54ba58, 0x3fe941db892e3a65, // -0.61402, 0.78929 0xbfe3affa292050b9, 0x3fe93a22499263fc, // -0.61523, 0.78835 0xbfe3b9e0beb19e18, 0x3fe932652609b1cf, // -0.61644, 0.7874 0xbfe3c3c44981c517, 0x3fe92aa41fc5a815, // -0.61765, 0.78646 0xbfe3cda4c80a6076, 0x3fe922df37f8646a, // -0.61885, 0.78551 0xbfe3d78238c58343, 0x3fe91b166fd49da2, // -0.62006, 0.78456 0xbfe3e15c9a2db922, 0x3fe91349c88da398, // -0.62126, 0.7836 0xbfe3eb33eabe0680, 0x3fe90b7943575efe, // -0.62246, 0.78265 0xbfe3f50828f1e8d2, 0x3fe903a4e1665133, // -0.62366, 0.78169 0xbfe3fed9534556d4, 0x3fe8fbcca3ef940d, // -0.62486, 0.78074 0xbfe408a76834c0c0, 0x3fe8f3f08c28d9ac, // -0.62606, 0.77978 0xbfe41272663d108c, 0x3fe8ec109b486c49, // -0.62725, 0.77882 0xbfe41c3a4bdbaa26, 0x3fe8e42cd2852e0a, // -0.62845, 0.77785 0xbfe425ff178e6bb1, 0x3fe8dc45331698cc, // -0.62964, 0.77689 0xbfe42fc0c7d3adbb, 0x3fe8d459be34bdfa, // -0.63083, 0.77592 0xbfe4397f5b2a4380, 0x3fe8cc6a75184655, // -0.63202, 0.77495 0xbfe4433ad0117b1d, 0x3fe8c47758fa71cb, // -0.63321, 0.77398 0xbfe44cf325091dd6, 0x3fe8bc806b151741, // -0.63439, 0.77301 0xbfe456a858917046, 0x3fe8b485aca2a468, // -0.63558, 0.77204 0xbfe4605a692b32a2, 0x3fe8ac871ede1d88, // -0.63676, 0.77106 0xbfe46a095557a0f1, 0x3fe8a484c3031d50, // -0.63794, 0.77008 0xbfe473b51b987347, 0x3fe89c7e9a4dd4ab, // -0.63912, 0.7691 0xbfe47d5dba6fde01, 0x3fe89474a5fb0a84, // -0.6403, 0.76812 0xbfe48703306091fe, 0x3fe88c66e7481ba1, // -0.64148, 0.76714 0xbfe490a57bedbcdf, 0x3fe884555f72fa6b, // -0.64266, 0.76615 0xbfe49a449b9b0938, 0x3fe87c400fba2ebf, // -0.64383, 0.76517 0xbfe4a3e08dec9ed6, 0x3fe87426f95cd5bd, // -0.645, 0.76418 0xbfe4ad79516722f0, 0x3fe86c0a1d9aa195, // -0.64618, 0.76319 0xbfe4b70ee48fb869, 0x3fe863e97db3d95a, // -0.64735, 0.7622 0xbfe4c0a145ec0004, 0x3fe85bc51ae958cc, // -0.64851, 0.7612 0xbfe4ca30740218a3, 0x3fe8539cf67c9029, // -0.64968, 0.76021 0xbfe4d3bc6d589f80, 0x3fe84b7111af83f9, // -0.65085, 0.75921 0xbfe4dd453076b064, 0x3fe843416dc4cce2, // -0.65201, 0.75821 0xbfe4e6cabbe3e5e9, 0x3fe83b0e0bff976e, // -0.65317, 0.75721 0xbfe4f04d0e2859aa, 0x3fe832d6eda3a3e0, // -0.65433, 0.75621 0xbfe4f9cc25cca486, 0x3fe82a9c13f545ff, // -0.65549, 0.7552 0xbfe503480159ded2, 0x3fe8225d803964e5, // -0.65665, 0.75419 0xbfe50cc09f59a09b, 0x3fe81a1b33b57acc, // -0.65781, 0.75319 0xbfe51635fe5601d7, 0x3fe811d52faf94dc, // -0.65896, 0.75218 0xbfe51fa81cd99aa6, 0x3fe8098b756e52fa, // -0.66011, 0.75117 0xbfe52916f96f8388, 0x3fe8013e0638e795, // -0.66127, 0.75015 0xbfe5328292a35596, 0x3fe7f8ece3571771, // -0.66242, 0.74914 0xbfe53beae7012abe, 0x3fe7f0980e113978, // -0.66356, 0.74812 0xbfe5454ff5159dfb, 0x3fe7e83f87b03686, // -0.66471, 0.7471 0xbfe54eb1bb6dcb8f, 0x3fe7dfe3517d8937, // -0.66586, 0.74608 0xbfe5581038975137, 0x3fe7d7836cc33db2, // -0.667, 0.74506 0xbfe5616b6b204e6e, 0x3fe7cf1fdacbf179, // -0.66814, 0.74403 0xbfe56ac35197649e, 0x3fe7c6b89ce2d333, // -0.66928, 0.74301 0xbfe57417ea8bb75c, 0x3fe7be4db453a27c, // -0.67042, 0.74198 0xbfe57d69348cec9f, 0x3fe7b5df226aafb0, // -0.67156, 0.74095 0xbfe586b72e2b2cfd, 0x3fe7ad6ce874dbb6, // -0.67269, 0.73992 0xbfe59001d5f723df, 0x3fe7a4f707bf97d2, // -0.67383, 0.73889 0xbfe599492a81ffbc, 0x3fe79c7d8198e56e, // -0.67496, 0.73785 0xbfe5a28d2a5d7250, 0x3fe79400574f55e4, // -0.67609, 0.73682 0xbfe5abcdd41bb0d8, 0x3fe78b7f8a320a52, // -0.67722, 0.73578 0xbfe5b50b264f7448, 0x3fe782fb1b90b35b, // -0.67835, 0.73474 0xbfe5be451f8bf980, 0x3fe77a730cbb9100, // -0.67948, 0.7337 0xbfe5c77bbe65018c, 0x3fe771e75f037261, // -0.6806, 0.73265 0xbfe5d0af016ed1d4, 0x3fe7695813b9b594, // -0.68172, 0.73161 0xbfe5d9dee73e345c, 0x3fe760c52c304764, // -0.68285, 0.73056 0xbfe5e30b6e6877f3, 0x3fe7582ea9b9a329, // -0.68397, 0.72951 0xbfe5ec3495837074, 0x3fe74f948da8d28d, // -0.68508, 0.72846 0xbfe5f55a5b2576f8, 0x3fe746f6d9516d59, // -0.6862, 0.72741 0xbfe5fe7cbde56a0f, 0x3fe73e558e079942, // -0.68732, 0.72636 0xbfe6079bbc5aadfa, 0x3fe735b0ad2009b2, // -0.68843, 0.7253 0xbfe610b7551d2cde, 0x3fe72d0837efff97, // -0.68954, 0.72425 0xbfe619cf86c55702, 0x3fe7245c2fcd492a, // -0.69065, 0.72319 0xbfe622e44fec22ff, 0x3fe71bac960e41bf, // -0.69176, 0.72213 0xbfe62bf5af2b0dfd, 0x3fe712f96c09d18d, // -0.69287, 0.72107 0xbfe63503a31c1be8, 0x3fe70a42b3176d7a, // -0.69397, 0.72 0xbfe63e0e2a59d7aa, 0x3fe701886c8f16e6, // -0.69508, 0.71894 0xbfe64715437f535b, 0x3fe6f8ca99c95b75, // -0.69618, 0.71787 0xbfe65018ed28287f, 0x3fe6f0093c1f54de, // -0.69728, 0.7168 0xbfe6591925f0783e, 0x3fe6e74454eaa8ae, // -0.69838, 0.71573 0xbfe66215ec74eb91, 0x3fe6de7be585881d, // -0.69947, 0.71466 0xbfe66b0f3f52b386, 0x3fe6d5afef4aafcc, // -0.70057, 0.71358 0xbfe674051d27896c, 0x3fe6cce07395679f, // -0.70166, 0.71251 0xbfe67cf78491af10, 0x3fe6c40d73c18275, // -0.70275, 0.71143 0xbfe685e6742feeef, 0x3fe6bb36f12b5e06, // -0.70385, 0.71035 0xbfe68ed1eaa19c71, 0x3fe6b25ced2fe29c, // -0.70493, 0.70927 0xbfe697b9e686941c, 0x3fe6a97f692c82ea, // -0.70602, 0.70819 0xbfe6a09e667f3bcc, 0x3fe6a09e667f3bcc, // -0.70711, 0.70711 0xbfe6a97f692c82ea, 0x3fe697b9e686941c, // -0.70819, 0.70602 0xbfe6b25ced2fe29c, 0x3fe68ed1eaa19c71, // -0.70927, 0.70493 0xbfe6bb36f12b5e06, 0x3fe685e6742feeef, // -0.71035, 0.70385 0xbfe6c40d73c18275, 0x3fe67cf78491af10, // -0.71143, 0.70275 0xbfe6cce07395679f, 0x3fe674051d27896c, // -0.71251, 0.70166 0xbfe6d5afef4aafcc, 0x3fe66b0f3f52b386, // -0.71358, 0.70057 0xbfe6de7be585881d, 0x3fe66215ec74eb91, // -0.71466, 0.69947 0xbfe6e74454eaa8ae, 0x3fe6591925f0783e, // -0.71573, 0.69838 0xbfe6f0093c1f54de, 0x3fe65018ed28287f, // -0.7168, 0.69728 0xbfe6f8ca99c95b75, 0x3fe64715437f535b, // -0.71787, 0.69618 0xbfe701886c8f16e6, 0x3fe63e0e2a59d7aa, // -0.71894, 0.69508 0xbfe70a42b3176d7a, 0x3fe63503a31c1be8, // -0.72, 0.69397 0xbfe712f96c09d18d, 0x3fe62bf5af2b0dfd, // -0.72107, 0.69287 0xbfe71bac960e41bf, 0x3fe622e44fec22ff, // -0.72213, 0.69176 0xbfe7245c2fcd492a, 0x3fe619cf86c55702, // -0.72319, 0.69065 0xbfe72d0837efff97, 0x3fe610b7551d2cde, // -0.72425, 0.68954 0xbfe735b0ad2009b2, 0x3fe6079bbc5aadfa, // -0.7253, 0.68843 0xbfe73e558e079942, 0x3fe5fe7cbde56a0f, // -0.72636, 0.68732 0xbfe746f6d9516d59, 0x3fe5f55a5b2576f8, // -0.72741, 0.6862 0xbfe74f948da8d28d, 0x3fe5ec3495837074, // -0.72846, 0.68508 0xbfe7582ea9b9a329, 0x3fe5e30b6e6877f3, // -0.72951, 0.68397 0xbfe760c52c304764, 0x3fe5d9dee73e345c, // -0.73056, 0.68285 0xbfe7695813b9b594, 0x3fe5d0af016ed1d4, // -0.73161, 0.68172 0xbfe771e75f037261, 0x3fe5c77bbe65018c, // -0.73265, 0.6806 0xbfe77a730cbb9100, 0x3fe5be451f8bf980, // -0.7337, 0.67948 0xbfe782fb1b90b35b, 0x3fe5b50b264f7448, // -0.73474, 0.67835 0xbfe78b7f8a320a52, 0x3fe5abcdd41bb0d8, // -0.73578, 0.67722 0xbfe79400574f55e4, 0x3fe5a28d2a5d7250, // -0.73682, 0.67609 0xbfe79c7d8198e56e, 0x3fe599492a81ffbc, // -0.73785, 0.67496 0xbfe7a4f707bf97d2, 0x3fe59001d5f723df, // -0.73889, 0.67383 0xbfe7ad6ce874dbb6, 0x3fe586b72e2b2cfd, // -0.73992, 0.67269 0xbfe7b5df226aafb0, 0x3fe57d69348cec9f, // -0.74095, 0.67156 0xbfe7be4db453a27c, 0x3fe57417ea8bb75c, // -0.74198, 0.67042 0xbfe7c6b89ce2d333, 0x3fe56ac35197649e, // -0.74301, 0.66928 0xbfe7cf1fdacbf179, 0x3fe5616b6b204e6e, // -0.74403, 0.66814 0xbfe7d7836cc33db2, 0x3fe5581038975137, // -0.74506, 0.667 0xbfe7dfe3517d8937, 0x3fe54eb1bb6dcb8f, // -0.74608, 0.66586 0xbfe7e83f87b03686, 0x3fe5454ff5159dfb, // -0.7471, 0.66471 0xbfe7f0980e113978, 0x3fe53beae7012abe, // -0.74812, 0.66356 0xbfe7f8ece3571771, 0x3fe5328292a35596, // -0.74914, 0.66242 0xbfe8013e0638e795, 0x3fe52916f96f8388, // -0.75015, 0.66127 0xbfe8098b756e52fa, 0x3fe51fa81cd99aa6, // -0.75117, 0.66011 0xbfe811d52faf94dc, 0x3fe51635fe5601d7, // -0.75218, 0.65896 0xbfe81a1b33b57acc, 0x3fe50cc09f59a09b, // -0.75319, 0.65781 0xbfe8225d803964e5, 0x3fe503480159ded2, // -0.75419, 0.65665 0xbfe82a9c13f545ff, 0x3fe4f9cc25cca486, // -0.7552, 0.65549 0xbfe832d6eda3a3e0, 0x3fe4f04d0e2859aa, // -0.75621, 0.65433 0xbfe83b0e0bff976e, 0x3fe4e6cabbe3e5e9, // -0.75721, 0.65317 0xbfe843416dc4cce2, 0x3fe4dd453076b064, // -0.75821, 0.65201 0xbfe84b7111af83f9, 0x3fe4d3bc6d589f80, // -0.75921, 0.65085 0xbfe8539cf67c9029, 0x3fe4ca30740218a3, // -0.76021, 0.64968 0xbfe85bc51ae958cc, 0x3fe4c0a145ec0004, // -0.7612, 0.64851 0xbfe863e97db3d95a, 0x3fe4b70ee48fb869, // -0.7622, 0.64735 0xbfe86c0a1d9aa195, 0x3fe4ad79516722f0, // -0.76319, 0.64618 0xbfe87426f95cd5bd, 0x3fe4a3e08dec9ed6, // -0.76418, 0.645 0xbfe87c400fba2ebf, 0x3fe49a449b9b0938, // -0.76517, 0.64383 0xbfe884555f72fa6b, 0x3fe490a57bedbcdf, // -0.76615, 0.64266 0xbfe88c66e7481ba1, 0x3fe48703306091fe, // -0.76714, 0.64148 0xbfe89474a5fb0a84, 0x3fe47d5dba6fde01, // -0.76812, 0.6403 0xbfe89c7e9a4dd4ab, 0x3fe473b51b987347, // -0.7691, 0.63912 0xbfe8a484c3031d50, 0x3fe46a095557a0f1, // -0.77008, 0.63794 0xbfe8ac871ede1d88, 0x3fe4605a692b32a2, // -0.77106, 0.63676 0xbfe8b485aca2a468, 0x3fe456a858917046, // -0.77204, 0.63558 0xbfe8bc806b151741, 0x3fe44cf325091dd6, // -0.77301, 0.63439 0xbfe8c47758fa71cb, 0x3fe4433ad0117b1d, // -0.77398, 0.63321 0xbfe8cc6a75184655, 0x3fe4397f5b2a4380, // -0.77495, 0.63202 0xbfe8d459be34bdfa, 0x3fe42fc0c7d3adbb, // -0.77592, 0.63083 0xbfe8dc45331698cc, 0x3fe425ff178e6bb1, // -0.77689, 0.62964 0xbfe8e42cd2852e0a, 0x3fe41c3a4bdbaa26, // -0.77785, 0.62845 0xbfe8ec109b486c49, 0x3fe41272663d108c, // -0.77882, 0.62725 0xbfe8f3f08c28d9ac, 0x3fe408a76834c0c0, // -0.77978, 0.62606 0xbfe8fbcca3ef940d, 0x3fe3fed9534556d4, // -0.78074, 0.62486 0xbfe903a4e1665133, 0x3fe3f50828f1e8d2, // -0.78169, 0.62366 0xbfe90b7943575efe, 0x3fe3eb33eabe0680, // -0.78265, 0.62246 0xbfe91349c88da398, 0x3fe3e15c9a2db922, // -0.7836, 0.62126 0xbfe91b166fd49da2, 0x3fe3d78238c58343, // -0.78456, 0.62006 0xbfe922df37f8646a, 0x3fe3cda4c80a6076, // -0.78551, 0.61885 0xbfe92aa41fc5a815, 0x3fe3c3c44981c517, // -0.78646, 0.61765 0xbfe932652609b1cf, 0x3fe3b9e0beb19e18, // -0.7874, 0.61644 0xbfe93a22499263fc, 0x3fe3affa292050b9, // -0.78835, 0.61523 0xbfe941db892e3a65, 0x3fe3a6108a54ba58, // -0.78929, 0.61402 0xbfe94990e3ac4a6c, 0x3fe39c23e3d63029, // -0.79023, 0.61281 0xbfe9514257dc4335, 0x3fe39234372c7f04, // -0.79117, 0.6116 0xbfe958efe48e6dd7, 0x3fe3884185dfeb22, // -0.79211, 0.61038 0xbfe960998893ad8c, 0x3fe37e4bd1792fe2, // -0.79304, 0.60917 0xbfe9683f42bd7fe1, 0x3fe374531b817f8d, // -0.79398, 0.60795 0xbfe96fe111ddfce0, 0x3fe36a576582831b, // -0.79491, 0.60673 0xbfe9777ef4c7d742, 0x3fe36058b10659f3, // -0.79584, 0.60551 0xbfe97f18ea4e5c9e, 0x3fe35656ff9799ae, // -0.79676, 0.60429 0xbfe986aef1457594, 0x3fe34c5252c14de1, // -0.79769, 0.60307 0xbfe98e410881a600, 0x3fe3424aac0ef7d6, // -0.79861, 0.60184 0xbfe995cf2ed80d22, 0x3fe338400d0c8e57, // -0.79954, 0.60062 0xbfe99d59631e65d5, 0x3fe32e3277467d6b, // -0.80046, 0.59939 0xbfe9a4dfa42b06b2, 0x3fe32421ec49a620, // -0.80138, 0.59816 0xbfe9ac61f0d4e247, 0x3fe31a0e6da35e44, // -0.80229, 0.59693 0xbfe9b3e047f38741, 0x3fe30ff7fce17035, // -0.80321, 0.5957 0xbfe9bb5aa85f2098, 0x3fe305de9b921a94, // -0.80412, 0.59447 0xbfe9c2d110f075c3, 0x3fe2fbc24b441015, // -0.80503, 0.59323 0xbfe9ca438080eadb, 0x3fe2f1a30d86773a, // -0.80594, 0.592 0xbfe9d1b1f5ea80d6, 0x3fe2e780e3e8ea16, // -0.80685, 0.59076 0xbfe9d91c7007d5a6, 0x3fe2dd5bcffb7616, // -0.80775, 0.58952 0xbfe9e082edb42472, 0x3fe2d333d34e9bb7, // -0.80866, 0.58828 0xbfe9e7e56dcb45bd, 0x3fe2c908ef734e57, // -0.80956, 0.58704 0xbfe9ef43ef29af94, 0x3fe2bedb25faf3ea, // -0.81046, 0.5858 0xbfe9f69e70ac75bc, 0x3fe2b4aa787764c4, // -0.81135, 0.58455 0xbfe9fdf4f13149de, 0x3fe2aa76e87aeb58, // -0.81225, 0.58331 0xbfea05476f967bb5, 0x3fe2a040779843fb, // -0.81314, 0.58206 0xbfea0c95eabaf937, 0x3fe2960727629ca8, // -0.81404, 0.58081 0xbfea13e0617e4ec7, 0x3fe28bcaf96d94ba, // -0.81493, 0.57956 0xbfea1b26d2c0a75e, 0x3fe2818bef4d3cba, // -0.81581, 0.57831 0xbfea22693d62ccb9, 0x3fe2774a0a961612, // -0.8167, 0.57706 0xbfea29a7a0462782, 0x3fe26d054cdd12df, // -0.81758, 0.57581 0xbfea30e1fa4cbf81, 0x3fe262bdb7b795a2, // -0.81847, 0.57455 0xbfea38184a593bc6, 0x3fe258734cbb7110, // -0.81935, 0.5733 0xbfea3f4a8f4ee2d2, 0x3fe24e260d7ee7c9, // -0.82023, 0.57204 0xbfea4678c8119ac8, 0x3fe243d5fb98ac1f, // -0.8211, 0.57078 0xbfea4da2f385e997, 0x3fe23983189fdfd5, // -0.82198, 0.56952 0xbfea54c91090f524, 0x3fe22f2d662c13e1, // -0.82285, 0.56826 0xbfea5beb1e188375, 0x3fe224d4e5d5482e, // -0.82372, 0.567 0xbfea63091b02fae2, 0x3fe21a799933eb58, // -0.82459, 0.56573 0xbfea6a230637623b, 0x3fe2101b81e0da78, // -0.82546, 0.56447 0xbfea7138de9d60f5, 0x3fe205baa17560d6, // -0.82632, 0.5632 0xbfea784aa31d3f55, 0x3fe1fb56f98b37b8, // -0.82718, 0.56193 0xbfea7f58529fe69d, 0x3fe1f0f08bbc861b, // -0.82805, 0.56066 0xbfea8661ec0ee133, 0x3fe1e68759a3e074, // -0.8289, 0.55939 0xbfea8d676e545ad2, 0x3fe1dc1b64dc4872, // -0.82976, 0.55812 0xbfea9468d85b20ae, 0x3fe1d1acaf012cc2, // -0.83062, 0.55685 0xbfea9b66290ea1a3, 0x3fe1c73b39ae68c8, // -0.83147, 0.55557 0xbfeaa25f5f5aee60, 0x3fe1bcc706804467, // -0.83232, 0.55429 0xbfeaa9547a2cb98e, 0x3fe1b250171373be, // -0.83317, 0.55302 0xbfeab045787157ff, 0x3fe1a7d66d0516e6, // -0.83402, 0.55174 0xbfeab7325916c0d4, 0x3fe19d5a09f2b9b8, // -0.83486, 0.55046 0xbfeabe1b1b0b8dac, 0x3fe192daef7a5386, // -0.83571, 0.54918 0xbfeac4ffbd3efac8, 0x3fe188591f3a46e5, // -0.83655, 0.54789 0xbfeacbe03ea0e73b, 0x3fe17dd49ad16161, // -0.83739, 0.54661 0xbfead2bc9e21d511, 0x3fe1734d63dedb49, // -0.83822, 0.54532 0xbfead994dab2e979, 0x3fe168c37c025764, // -0.83906, 0.54404 0xbfeae068f345ecef, 0x3fe15e36e4dbe2bc, // -0.83989, 0.54275 0xbfeae738e6cd4b67, 0x3fe153a7a00bf453, // -0.84073, 0.54146 0xbfeaee04b43c1474, 0x3fe14915af336ceb, // -0.84155, 0.54017 0xbfeaf4cc5a85fb73, 0x3fe13e8113f396c1, // -0.84238, 0.53888 0xbfeafb8fd89f57b6, 0x3fe133e9cfee254e, // -0.84321, 0.53759 0xbfeb024f2d7d24a9, 0x3fe1294fe4c5350a, // -0.84403, 0.53629 0xbfeb090a58150200, 0x3fe11eb3541b4b22, // -0.84485, 0.535 0xbfeb0fc1575d33db, 0x3fe114141f935545, // -0.84567, 0.5337 0xbfeb16742a4ca2f5, 0x3fe1097248d0a956, // -0.84649, 0.5324 0xbfeb1d22cfdadcc6, 0x3fe0fecdd1770537, // -0.84731, 0.5311 0xbfeb23cd470013b4, 0x3fe0f426bb2a8e7d, // -0.84812, 0.5298 0xbfeb2a738eb51f33, 0x3fe0e97d078fd23b, // -0.84893, 0.5285 0xbfeb3115a5f37bf4, 0x3fe0ded0b84bc4b5, // -0.84974, 0.5272 0xbfeb37b38bb54c09, 0x3fe0d421cf03c12b, // -0.85055, 0.5259 0xbfeb3e4d3ef55712, 0x3fe0c9704d5d898f, // -0.85136, 0.52459 0xbfeb44e2beaf0a61, 0x3fe0bebc34ff4646, // -0.85216, 0.52328 0xbfeb4b7409de7925, 0x3fe0b405878f85ec, // -0.85296, 0.52198 0xbfeb52011f805c92, 0x3fe0a94c46b53d0b, // -0.85376, 0.52067 0xbfeb5889fe921405, 0x3fe09e907417c5e1, // -0.85456, 0.51936 0xbfeb5f0ea611a532, 0x3fe093d2115ee018, // -0.85535, 0.51804 0xbfeb658f14fdbc47, 0x3fe089112032b08c, // -0.85615, 0.51673 0xbfeb6c0b4a55ac17, 0x3fe07e4da23bc102, // -0.85694, 0.51542 0xbfeb728345196e3e, 0x3fe073879922ffed, // -0.85773, 0.5141 0xbfeb78f70449a34b, 0x3fe068bf0691c028, // -0.85852, 0.51279 0xbfeb7f6686e792ea, 0x3fe05df3ec31b8b6, // -0.8593, 0.51147 0xbfeb85d1cbf52c02, 0x3fe053264bad0483, // -0.86009, 0.51015 0xbfeb8c38d27504e9, 0x3fe0485626ae221a, // -0.86087, 0.50883 0xbfeb929b996a5b7f, 0x3fe03d837edff370, // -0.86165, 0.50751 0xbfeb98fa1fd9155e, 0x3fe032ae55edbd95, // -0.86242, 0.50619 0xbfeb9f5464c5bffc, 0x3fe027d6ad83287e, // -0.8632, 0.50486 0xbfeba5aa673590d2, 0x3fe01cfc874c3eb7, // -0.86397, 0.50354 0xbfebabfc262e6586, 0x3fe0121fe4f56d2c, // -0.86474, 0.50221 0xbfebb249a0b6c40d, 0x3fe00740c82b82e0, // -0.86551, 0.50089 0xbfebb892d5d5dad5, 0x3fdff8be6537615e, // -0.86628, 0.49956 0xbfebbed7c49380ea, 0x3fdfe2f64be7120f, // -0.86705, 0.49823 0xbfebc5186bf8361d, 0x3fdfcd2947c1ff57, // -0.86781, 0.4969 0xbfebcb54cb0d2327, 0x3fdfb7575c24d2de, // -0.86857, 0.49557 0xbfebd18ce0dc19d6, 0x3fdfa1808c6cf7e0, // -0.86933, 0.49423 0xbfebd7c0ac6f952a, 0x3fdf8ba4dbf89aba, // -0.87009, 0.4929 0xbfebddf02cd2b983, 0x3fdf75c44e26a852, // -0.87084, 0.49156 0xbfebe41b611154c1, 0x3fdf5fdee656cda3, // -0.8716, 0.49023 0xbfebea424837de6d, 0x3fdf49f4a7e97729, // -0.87235, 0.48889 0xbfebf064e15377dd, 0x3fdf3405963fd068, // -0.87309, 0.48755 0xbfebf6832b71ec5b, 0x3fdf1e11b4bbc35c, // -0.87384, 0.48621 0xbfebfc9d25a1b147, 0x3fdf081906bff7fd, // -0.87459, 0.48487 0xbfec02b2cef1e641, 0x3fdef21b8fafd3b5, // -0.87533, 0.48353 0xbfec08c426725549, 0x3fdedc1952ef78d5, // -0.87607, 0.48218 0xbfec0ed12b3372e9, 0x3fdec61253e3c61b, // -0.87681, 0.48084 0xbfec14d9dc465e58, 0x3fdeb00695f25620, // -0.87755, 0.47949 0xbfec1ade38bce19b, 0x3fde99f61c817eda, // -0.87828, 0.47815 0xbfec20de3fa971b0, 0x3fde83e0eaf85113, // -0.87901, 0.4768 0xbfec26d9f01f2eaf, 0x3fde6dc704be97e2, // -0.87974, 0.47545 0xbfec2cd14931e3f1, 0x3fde57a86d3cd824, // -0.88047, 0.4741 0xbfec32c449f60831, 0x3fde418527dc4ffa, // -0.8812, 0.47275 0xbfec38b2f180bdb1, 0x3fde2b5d3806f63b, // -0.88192, 0.4714 0xbfec3e9d3ee7d262, 0x3fde1530a12779f4, // -0.88264, 0.47004 0xbfec44833141c004, 0x3fddfeff66a941de, // -0.88336, 0.46869 0xbfec4a64c7a5ac4c, 0x3fdde8c98bf86bd6, // -0.88408, 0.46733 0xbfec5042012b6907, 0x3fddd28f1481cc58, // -0.8848, 0.46598 0xbfec561adceb743e, 0x3fddbc5003b2edf8, // -0.88551, 0.46462 0xbfec5bef59fef85a, 0x3fdda60c5cfa10d8, // -0.88622, 0.46326 0xbfec61bf777fcc48, 0x3fdd8fc423c62a25, // -0.88693, 0.4619 0xbfec678b3488739b, 0x3fdd79775b86e389, // -0.88764, 0.46054 0xbfec6d5290341eb2, 0x3fdd632607ac9aa9, // -0.88835, 0.45918 0xbfec7315899eaad7, 0x3fdd4cd02ba8609c, // -0.88905, 0.45781 0xbfec78d41fe4a267, 0x3fdd3675caebf962, // -0.88975, 0.45645 0xbfec7e8e52233cf3, 0x3fdd2016e8e9db5b, // -0.89045, 0.45508 0xbfec84441f785f61, 0x3fdd09b389152ec1, // -0.89115, 0.45372 0xbfec89f587029c13, 0x3fdcf34baee1cd21, // -0.89184, 0.45235 0xbfec8fa287e13305, 0x3fdcdcdf5dc440ce, // -0.89253, 0.45098 0xbfec954b213411f5, 0x3fdcc66e9931c45d, // -0.89322, 0.44961 0xbfec9aef521bd480, 0x3fdcaff964a0421d, // -0.89391, 0.44824 0xbfeca08f19b9c449, 0x3fdc997fc3865388, // -0.8946, 0.44687 0xbfeca62a772fd919, 0x3fdc8301b95b40c2, // -0.89528, 0.4455 0xbfecabc169a0b901, 0x3fdc6c7f4997000a, // -0.89597, 0.44412 0xbfecb153f02fb87d, 0x3fdc55f877b23537, // -0.89665, 0.44275 0xbfecb6e20a00da99, 0x3fdc3f6d47263129, // -0.89732, 0.44137 0xbfecbc6bb638d10b, 0x3fdc28ddbb6cf145, // -0.898, 0.43999 0xbfecc1f0f3fcfc5c, 0x3fdc1249d8011ee7, // -0.89867, 0.43862 0xbfecc771c2736c09, 0x3fdbfbb1a05e0edc, // -0.89935, 0.43724 0xbfecccee20c2de9f, 0x3fdbe51517ffc0d9, // -0.90002, 0.43586 0xbfecd2660e12c1e6, 0x3fdbce744262deee, // -0.90068, 0.43448 0xbfecd7d9898b32f6, 0x3fdbb7cf2304bd01, // -0.90135, 0.43309 0xbfecdd489254fe65, 0x3fdba125bd63583e, // -0.90201, 0.43171 0xbfece2b32799a060, 0x3fdb8a7814fd5693, // -0.90267, 0.43033 0xbfece819488344ce, 0x3fdb73c62d520624, // -0.90333, 0.42894 0xbfeced7af43cc773, 0x3fdb5d1009e15cc0, // -0.90399, 0.42756 0xbfecf2d829f1b40e, 0x3fdb4655ae2bf757, // -0.90464, 0.42617 0xbfecf830e8ce467b, 0x3fdb2f971db31972, // -0.9053, 0.42478 0xbfecfd852fff6ad4, 0x3fdb18d45bf8aca6, // -0.90595, 0.42339 0xbfed02d4feb2bd92, 0x3fdb020d6c7f4009, // -0.9066, 0.422 0xbfed082054168bac, 0x3fdaeb4252ca07ab, // -0.90724, 0.42061 0xbfed0d672f59d2b9, 0x3fdad473125cdc08, // -0.90789, 0.41922 0xbfed12a98fac410c, 0x3fdabd9faebc3980, // -0.90853, 0.41782 0xbfed17e7743e35dc, 0x3fdaa6c82b6d3fc9, // -0.90917, 0.41643 0xbfed1d20dc40c15c, 0x3fda8fec8bf5b166, // -0.90981, 0.41503 0xbfed2255c6e5a4e1, 0x3fda790cd3dbf31a, // -0.91044, 0.41364 0xbfed2786335f52fc, 0x3fda622906a70b63, // -0.91107, 0.41224 0xbfed2cb220e0ef9f, 0x3fda4b4127dea1e4, // -0.91171, 0.41084 0xbfed31d98e9e503a, 0x3fda34553b0afee5, // -0.91234, 0.40944 0xbfed36fc7bcbfbdc, 0x3fda1d6543b50ac0, // -0.91296, 0.40804 0xbfed3c1ae79f2b4e, 0x3fda067145664d57, // -0.91359, 0.40664 0xbfed4134d14dc93a, 0x3fd9ef7943a8ed8a, // -0.91421, 0.40524 0xbfed464a380e7242, 0x3fd9d87d4207b0ab, // -0.91483, 0.40384 0xbfed4b5b1b187524, 0x3fd9c17d440df9f2, // -0.91545, 0.40243 0xbfed506779a3d2d9, 0x3fd9aa794d47c9ee, // -0.91606, 0.40103 0xbfed556f52e93eb1, 0x3fd993716141bdfe, // -0.91668, 0.39962 0xbfed5a72a6221e73, 0x3fd97c6583890fc2, // -0.91729, 0.39822 0xbfed5f7172888a7f, 0x3fd96555b7ab948f, // -0.9179, 0.39681 0xbfed646bb7574de5, 0x3fd94e420137bce3, // -0.91851, 0.3954 0xbfed696173c9e68b, 0x3fd9372a63bc93d7, // -0.91911, 0.39399 0xbfed6e52a71c8547, 0x3fd9200ee2c9be97, // -0.91972, 0.39258 0xbfed733f508c0dff, 0x3fd908ef81ef7bd1, // -0.92032, 0.39117 0xbfed78276f5617c6, 0x3fd8f1cc44bea329, // -0.92092, 0.38976 0xbfed7d0b02b8ecf9, 0x3fd8daa52ec8a4af, // -0.92151, 0.38835 0xbfed81ea09f38b63, 0x3fd8c37a439f884f, // -0.92211, 0.38693 0xbfed86c48445a450, 0x3fd8ac4b86d5ed44, // -0.9227, 0.38552 0xbfed8b9a70ef9cb4, 0x3fd89518fbff098e, // -0.92329, 0.3841 0xbfed906bcf328d46, 0x3fd87de2a6aea963, // -0.92388, 0.38268 0xbfed95389e50429b, 0x3fd866a88a792ea0, // -0.92447, 0.38127 0xbfed9a00dd8b3d46, 0x3fd84f6aaaf3903f, // -0.92505, 0.37985 0xbfed9ec48c26b1f3, 0x3fd838290bb359c8, // -0.92563, 0.37843 0xbfeda383a9668988, 0x3fd820e3b04eaac4, // -0.92621, 0.37701 0xbfeda83e348f613b, 0x3fd8099a9c5c362d, // -0.92679, 0.37559 0xbfedacf42ce68ab9, 0x3fd7f24dd37341e3, // -0.92736, 0.37416 0xbfedb1a591b20c38, 0x3fd7dafd592ba621, // -0.92794, 0.37274 0xbfedb6526238a09b, 0x3fd7c3a9311dcce7, // -0.92851, 0.37132 0xbfedbafa9dc1b78d, 0x3fd7ac515ee2b172, // -0.92907, 0.36989 0xbfedbf9e4395759a, 0x3fd794f5e613dfae, // -0.92964, 0.36847 0xbfedc43d52fcb453, 0x3fd77d96ca4b73a6, // -0.93021, 0.36704 0xbfedc8d7cb410260, 0x3fd766340f2418f6, // -0.93077, 0.36561 0xbfedcd6dabaca3a5, 0x3fd74ecdb8390a3e, // -0.93133, 0.36418 0xbfedd1fef38a915a, 0x3fd73763c9261092, // -0.93188, 0.36276 0xbfedd68ba2267a25, 0x3fd71ff6458782ec, // -0.93244, 0.36133 0xbfeddb13b6ccc23d, 0x3fd7088530fa459e, // -0.93299, 0.3599 0xbfeddf9730ca837b, 0x3fd6f1108f1bc9c5, // -0.93354, 0.35846 0xbfede4160f6d8d81, 0x3fd6d998638a0cb5, // -0.93409, 0.35703 0xbfede890520465ce, 0x3fd6c21cb1e39771, // -0.93464, 0.3556 0xbfeded05f7de47da, 0x3fd6aa9d7dc77e16, // -0.93518, 0.35416 0xbfedf177004b2534, 0x3fd6931acad55f51, // -0.93573, 0.35273 0xbfedf5e36a9ba59c, 0x3fd67b949cad63ca, // -0.93627, 0.35129 0xbfedfa4b3621271d, 0x3fd6640af6f03d9e, // -0.9368, 0.34986 0xbfedfeae622dbe2b, 0x3fd64c7ddd3f27c6, // -0.93734, 0.34842 0xbfee030cee1435b8, 0x3fd634ed533be58e, // -0.93787, 0.34698 0xbfee0766d9280f54, 0x3fd61d595c88c203, // -0.9384, 0.34554 0xbfee0bbc22bd8349, 0x3fd605c1fcc88f63, // -0.93893, 0.3441 0xbfee100cca2980ac, 0x3fd5ee27379ea693, // -0.93946, 0.34266 0xbfee1458cec1ad83, 0x3fd5d68910aee686, // -0.93998, 0.34122 0xbfee18a02fdc66d9, 0x3fd5bee78b9db3b6, // -0.94051, 0.33978 0xbfee1ce2ecd0c0d8, 0x3fd5a742ac0ff78d, // -0.94103, 0.33833 0xbfee212104f686e5, 0x3fd58f9a75ab1fdd, // -0.94154, 0.33689 0xbfee255a77a63bb8, 0x3fd577eeec151e47, // -0.94206, 0.33545 0xbfee298f4439197a, 0x3fd5604012f467b4, // -0.94257, 0.334 0xbfee2dbf6a0911d9, 0x3fd5488dedeff3be, // -0.94308, 0.33255 0xbfee31eae870ce25, 0x3fd530d880af3c24, // -0.94359, 0.33111 0xbfee3611becbaf69, 0x3fd5191fceda3c35, // -0.9441, 0.32966 0xbfee3a33ec75ce85, 0x3fd50163dc197047, // -0.9446, 0.32821 0xbfee3e5170cbfc46, 0x3fd4e9a4ac15d520, // -0.94511, 0.32676 0xbfee426a4b2bc17e, 0x3fd4d1e24278e76a, // -0.94561, 0.32531 0xbfee467e7af35f23, 0x3fd4ba1ca2eca31c, // -0.94611, 0.32386 0xbfee4a8dff81ce5e, 0x3fd4a253d11b82f3, // -0.9466, 0.32241 0xbfee4e98d836c0af, 0x3fd48a87d0b07fd7, // -0.94709, 0.32096 0xbfee529f04729ffc, 0x3fd472b8a5571054, // -0.94759, 0.3195 0xbfee56a083968eb1, 0x3fd45ae652bb2800, // -0.94807, 0.31805 0xbfee5a9d550467d3, 0x3fd44310dc8936f0, // -0.94856, 0.31659 0xbfee5e95781ebf1c, 0x3fd42b38466e2928, // -0.94905, 0.31514 0xbfee6288ec48e112, 0x3fd4135c94176602, // -0.94953, 0.31368 0xbfee6677b0e6d31e, 0x3fd3fb7dc932cfa4, // -0.95001, 0.31222 0xbfee6a61c55d53a7, 0x3fd3e39be96ec271, // -0.95049, 0.31077 0xbfee6e472911da27, 0x3fd3cbb6f87a146e, // -0.95096, 0.30931 0xbfee7227db6a9744, 0x3fd3b3cefa0414b7, // -0.95144, 0.30785 0xbfee7603dbce74e9, 0x3fd39be3f1bc8aef, // -0.95191, 0.30639 0xbfee79db29a5165a, 0x3fd383f5e353b6aa, // -0.95238, 0.30493 0xbfee7dadc456d850, 0x3fd36c04d27a4edf, // -0.95284, 0.30347 0xbfee817bab4cd10d, 0x3fd35410c2e18152, // -0.95331, 0.30201 0xbfee8544ddf0d075, 0x3fd33c19b83af207, // -0.95377, 0.30054 0xbfee89095bad6025, 0x3fd3241fb638baaf, // -0.95423, 0.29908 0xbfee8cc923edc388, 0x3fd30c22c08d6a13, // -0.95469, 0.29762 0xbfee9084361df7f3, 0x3fd2f422daec0386, // -0.95514, 0.29615 0xbfee943a91aab4b4, 0x3fd2dc200907fe51, // -0.95559, 0.29469 0xbfee97ec36016b30, 0x3fd2c41a4e954520, // -0.95605, 0.29322 0xbfee9b99229046f8, 0x3fd2ac11af483572, // -0.95649, 0.29175 0xbfee9f4156c62dda, 0x3fd294062ed59f05, // -0.95694, 0.29028 0xbfeea2e4d212c000, 0x3fd27bf7d0f2c346, // -0.95738, 0.28882 0xbfeea68393e65800, 0x3fd263e6995554ba, // -0.95783, 0.28735 0xbfeeaa1d9bb20af3, 0x3fd24bd28bb37672, // -0.95827, 0.28588 0xbfeeadb2e8e7a88e, 0x3fd233bbabc3bb72, // -0.9587, 0.28441 0xbfeeb1437af9bb34, 0x3fd21ba1fd3d2623, // -0.95914, 0.28294 0xbfeeb4cf515b8811, 0x3fd2038583d727bd, // -0.95957, 0.28146 0xbfeeb8566b810f2a, 0x3fd1eb6643499fbb, // -0.96, 0.27999 0xbfeebbd8c8df0b74, 0x3fd1d3443f4cdb3d, // -0.96043, 0.27852 0xbfeebf5668eaf2ef, 0x3fd1bb1f7b999480, // -0.96086, 0.27705 0xbfeec2cf4b1af6b2, 0x3fd1a2f7fbe8f243, // -0.96128, 0.27557 0xbfeec6436ee60309, 0x3fd18acdc3f4873a, // -0.9617, 0.2741 0xbfeec9b2d3c3bf84, 0x3fd172a0d7765177, // -0.96212, 0.27262 0xbfeecd1d792c8f10, 0x3fd15a713a28b9d9, // -0.96254, 0.27115 0xbfeed0835e999009, 0x3fd1423eefc69378, // -0.96295, 0.26967 0xbfeed3e483849c51, 0x3fd12a09fc0b1b12, // -0.96337, 0.26819 0xbfeed740e7684963, 0x3fd111d262b1f677, // -0.96378, 0.26671 0xbfeeda9889bfe86a, 0x3fd0f998277733f7, // -0.96418, 0.26523 0xbfeeddeb6a078651, 0x3fd0e15b4e1749cd, // -0.96459, 0.26375 0xbfeee13987bbebdc, 0x3fd0c91bda4f158d, // -0.96499, 0.26227 0xbfeee482e25a9dbc, 0x3fd0b0d9cfdbdb90, // -0.96539, 0.26079 0xbfeee7c77961dc9e, 0x3fd09895327b465e, // -0.96579, 0.25931 0xbfeeeb074c50a544, 0x3fd0804e05eb661e, // -0.96619, 0.25783 0xbfeeee425aa6b09a, 0x3fd068044deab002, // -0.96658, 0.25635 0xbfeef178a3e473c2, 0x3fd04fb80e37fdae, // -0.96698, 0.25487 0xbfeef4aa278b2032, 0x3fd037694a928cac, // -0.96737, 0.25338 0xbfeef7d6e51ca3c0, 0x3fd01f1806b9fdd2, // -0.96775, 0.2519 0xbfeefafedc1ba8b7, 0x3fd006c4466e54af, // -0.96814, 0.25041 0xbfeefe220c0b95ec, 0x3fcfdcdc1adfedf8, // -0.96852, 0.24893 0xbfef014074708ed3, 0x3fcfac2abeff57ff, // -0.9689, 0.24744 0xbfef045a14cf738c, 0x3fcf7b7480bd3801, // -0.96928, 0.24596 0xbfef076eecade0fa, 0x3fcf4ab9679c9f5c, // -0.96966, 0.24447 0xbfef0a7efb9230d7, 0x3fcf19f97b215f1a, // -0.97003, 0.24298 0xbfef0d8a410379c5, 0x3fcee934c2d006c7, // -0.9704, 0.24149 0xbfef1090bc898f5f, 0x3fceb86b462de348, // -0.97077, 0.24 0xbfef13926dad024e, 0x3fce879d0cc0fdaf, // -0.97114, 0.23851 0xbfef168f53f7205d, 0x3fce56ca1e101a1b, // -0.9715, 0.23702 0xbfef19876ef1f486, 0x3fce25f281a2b684, // -0.97187, 0.23553 0xbfef1c7abe284708, 0x3fcdf5163f01099a, // -0.97223, 0.23404 0xbfef1f6941259d7a, 0x3fcdc4355db40195, // -0.97258, 0.23255 0xbfef2252f7763ada, 0x3fcd934fe5454311, // -0.97294, 0.23106 0xbfef2537e0a71f9f, 0x3fcd6265dd3f27e3, // -0.97329, 0.22957 0xbfef2817fc4609ce, 0x3fcd31774d2cbdee, // -0.97364, 0.22807 0xbfef2af349e17507, 0x3fcd00843c99c5f9, // -0.97399, 0.22658 0xbfef2dc9c9089a9d, 0x3fcccf8cb312b286, // -0.97434, 0.22508 0xbfef309b794b719f, 0x3fcc9e90b824a6a9, // -0.97468, 0.22359 0xbfef33685a3aaef0, 0x3fcc6d90535d74dc, // -0.97503, 0.22209 0xbfef36306b67c556, 0x3fcc3c8b8c4b9dd7, // -0.97536, 0.2206 0xbfef38f3ac64e589, 0x3fcc0b826a7e4f63, // -0.9757, 0.2191 0xbfef3bb21cc4fe47, 0x3fcbda74f5856330, // -0.97604, 0.2176 0xbfef3e6bbc1bbc65, 0x3fcba96334f15dad, // -0.97637, 0.21611 0xbfef412089fd8adc, 0x3fcb784d30536cda, // -0.9767, 0.21461 0xbfef43d085ff92dd, 0x3fcb4732ef3d6722, // -0.97703, 0.21311 0xbfef467bafb7bbe0, 0x3fcb16147941ca2a, // -0.97735, 0.21161 0xbfef492206bcabb4, 0x3fcae4f1d5f3b9ab, // -0.97768, 0.21011 0xbfef4bc38aa5c694, 0x3fcab3cb0ce6fe44, // -0.978, 0.20861 0xbfef4e603b0b2f2d, 0x3fca82a025b00451, // -0.97832, 0.20711 0xbfef50f81785c6b9, 0x3fca517127e3dabc, // -0.97863, 0.20561 0xbfef538b1faf2d07, 0x3fca203e1b1831da, // -0.97895, 0.20411 0xbfef56195321c090, 0x3fc9ef0706e35a35, // -0.97926, 0.20261 0xbfef58a2b1789e84, 0x3fc9bdcbf2dc4366, // -0.97957, 0.2011 0xbfef5b273a4fa2d9, 0x3fc98c8ce69a7aec, // -0.97988, 0.1996 0xbfef5da6ed43685d, 0x3fc95b49e9b62af9, // -0.98018, 0.1981 0xbfef6021c9f148c2, 0x3fc92a0303c8194f, // -0.98048, 0.19659 0xbfef6297cff75cb0, 0x3fc8f8b83c69a60a, // -0.98079, 0.19509 0xbfef6508fef47bd5, 0x3fc8c7699b34ca7e, // -0.98108, 0.19359 0xbfef677556883cee, 0x3fc8961727c41804, // -0.98138, 0.19208 0xbfef69dcd652f5de, 0x3fc864c0e9b2b6cf, // -0.98167, 0.19057 0xbfef6c3f7df5bbb7, 0x3fc83366e89c64c5, // -0.98196, 0.18907 0xbfef6e9d4d1262ca, 0x3fc802092c1d744b, // -0.98225, 0.18756 0xbfef70f6434b7eb7, 0x3fc7d0a7bbd2cb1b, // -0.98254, 0.18606 0xbfef734a60446279, 0x3fc79f429f59e11d, // -0.98282, 0.18455 0xbfef7599a3a12077, 0x3fc76dd9de50bf31, // -0.98311, 0.18304 0xbfef77e40d068a90, 0x3fc73c6d8055fe0a, // -0.98339, 0.18153 0xbfef7a299c1a322a, 0x3fc70afd8d08c4ff, // -0.98366, 0.18002 0xbfef7c6a50826840, 0x3fc6d98a0c08c8da, // -0.98394, 0.17851 0xbfef7ea629e63d6e, 0x3fc6a81304f64ab2, // -0.98421, 0.177 0xbfef80dd27ed8204, 0x3fc676987f7216b8, // -0.98448, 0.17549 0xbfef830f4a40c60c, 0x3fc6451a831d830d, // -0.98475, 0.17398 0xbfef853c9089595e, 0x3fc61399179a6e94, // -0.98501, 0.17247 0xbfef8764fa714ba9, 0x3fc5e214448b3fc6, // -0.98528, 0.17096 0xbfef898887a36c84, 0x3fc5b08c1192e381, // -0.98554, 0.16945 0xbfef8ba737cb4b78, 0x3fc57f008654cbde, // -0.9858, 0.16794 0xbfef8dc10a95380d, 0x3fc54d71aa74ef02, // -0.98605, 0.16643 0xbfef8fd5ffae41db, 0x3fc51bdf8597c5f2, // -0.98631, 0.16491 0xbfef91e616c43891, 0x3fc4ea4a1f624b61, // -0.98656, 0.1634 0xbfef93f14f85ac08, 0x3fc4b8b17f79fa88, // -0.98681, 0.16189 0xbfef95f7a9a1ec47, 0x3fc48715ad84cdf5, // -0.98706, 0.16037 0xbfef97f924c9099b, 0x3fc45576b1293e5a, // -0.9873, 0.15886 0xbfef99f5c0abd496, 0x3fc423d4920e4166, // -0.98754, 0.15734 0xbfef9bed7cfbde29, 0x3fc3f22f57db4893, // -0.98778, 0.15583 0xbfef9de0596b77a3, 0x3fc3c0870a383ff6, // -0.98802, 0.15431 0xbfef9fce55adb2c8, 0x3fc38edbb0cd8d14, // -0.98826, 0.1528 0xbfefa1b7717661d5, 0x3fc35d2d53440db2, // -0.98849, 0.15128 0xbfefa39bac7a1791, 0x3fc32b7bf94516a7, // -0.98872, 0.14976 0xbfefa57b066e2754, 0x3fc2f9c7aa7a72af, // -0.98895, 0.14825 0xbfefa7557f08a517, 0x3fc2c8106e8e613a, // -0.98918, 0.14673 0xbfefa92b1600657c, 0x3fc296564d2b953e, // -0.9894, 0.14521 0xbfefaafbcb0cfddc, 0x3fc264994dfd340a, // -0.98962, 0.1437 0xbfefacc79de6c44f, 0x3fc232d978aed413, // -0.98984, 0.14218 0xbfefae8e8e46cfbb, 0x3fc20116d4ec7bce, // -0.99006, 0.14066 0xbfefb0509be6f7db, 0x3fc1cf516a62a077, // -0.99027, 0.13914 0xbfefb20dc681d54d, 0x3fc19d8940be24e7, // -0.99049, 0.13762 0xbfefb3c60dd2c199, 0x3fc16bbe5fac5865, // -0.9907, 0.1361 0xbfefb5797195d741, 0x3fc139f0cedaf576, // -0.9909, 0.13458 0xbfefb727f187f1c7, 0x3fc1082095f820b0, // -0.99111, 0.13306 0xbfefb8d18d66adb7, 0x3fc0d64dbcb26786, // -0.99131, 0.13154 0xbfefba7644f068b5, 0x3fc0a4784ab8bf1d, // -0.99151, 0.13002 0xbfefbc1617e44186, 0x3fc072a047ba831d, // -0.99171, 0.1285 0xbfefbdb106021816, 0x3fc040c5bb67747e, // -0.99191, 0.12698 0xbfefbf470f0a8d88, 0x3fc00ee8ad6fb85b, // -0.9921, 0.12545 0xbfefc0d832bf043a, 0x3fbfba124b07ad85, // -0.99229, 0.12393 0xbfefc26470e19fd3, 0x3fbf564e56a9730e, // -0.99248, 0.12241 0xbfefc3ebc935454c, 0x3fbef2858d27561b, // -0.99267, 0.12089 0xbfefc56e3b7d9af6, 0x3fbe8eb7fde4aa3e, // -0.99285, 0.11937 0xbfefc6ebc77f0887, 0x3fbe2ae5b8457f77, // -0.99303, 0.11784 0xbfefc8646cfeb721, 0x3fbdc70ecbae9fc8, // -0.99321, 0.11632 0xbfefc9d82bc2915e, 0x3fbd633347858ce4, // -0.99339, 0.11479 0xbfefcb4703914354, 0x3fbcff533b307dc1, // -0.99356, 0.11327 0xbfefccb0f4323aa3, 0x3fbc9b6eb6165c42, // -0.99374, 0.11175 0xbfefce15fd6da67b, 0x3fbc3785c79ec2d5, // -0.99391, 0.11022 0xbfefcf761f0c77a3, 0x3fbbd3987f31fa0e, // -0.99407, 0.1087 0xbfefd0d158d86087, 0x3fbb6fa6ec38f64c, // -0.99424, 0.10717 0xbfefd227aa9bd53b, 0x3fbb0bb11e1d5559, // -0.9944, 0.10565 0xbfefd37914220b84, 0x3fbaa7b724495c04, // -0.99456, 0.10412 0xbfefd4c59536fae4, 0x3fba43b90e27f3c4, // -0.99472, 0.1026 0xbfefd60d2da75c9e, 0x3fb9dfb6eb24a85c, // -0.99488, 0.10107 0xbfefd74fdd40abbf, 0x3fb97bb0caaba56f, // -0.99503, 0.099544 0xbfefd88da3d12526, 0x3fb917a6bc29b42c, // -0.99518, 0.098017 0xbfefd9c68127c78c, 0x3fb8b398cf0c38e0, // -0.99533, 0.09649 0xbfefdafa7514538c, 0x3fb84f8712c130a0, // -0.99548, 0.094963 0xbfefdc297f674ba9, 0x3fb7eb7196b72ee4, // -0.99563, 0.093436 0xbfefdd539ff1f456, 0x3fb787586a5d5b21, // -0.99577, 0.091909 0xbfefde78d68653fd, 0x3fb7233b9d236e71, // -0.99591, 0.090381 0xbfefdf9922f73307, 0x3fb6bf1b3e79b129, // -0.99604, 0.088854 0xbfefe0b485181be3, 0x3fb65af75dd0f87b, // -0.99618, 0.087326 0xbfefe1cafcbd5b09, 0x3fb5f6d00a9aa419, // -0.99631, 0.085797 0xbfefe2dc89bbff08, 0x3fb592a554489bc8, // -0.99644, 0.084269 0xbfefe3e92be9d886, 0x3fb52e774a4d4d0a, // -0.99657, 0.08274 0xbfefe4f0e31d7a4a, 0x3fb4ca45fc1ba8b6, // -0.9967, 0.081211 0xbfefe5f3af2e3940, 0x3fb4661179272096, // -0.99682, 0.079682 0xbfefe6f18ff42c84, 0x3fb401d9d0e3a507, // -0.99694, 0.078153 0xbfefe7ea85482d60, 0x3fb39d9f12c5a299, // -0.99706, 0.076624 0xbfefe8de8f03d75c, 0x3fb339614e41ffa5, // -0.99718, 0.075094 0xbfefe9cdad01883a, 0x3fb2d52092ce19f6, // -0.99729, 0.073565 0xbfefeab7df1c6005, 0x3fb270dcefdfc45b, // -0.9974, 0.072035 0xbfefeb9d2530410f, 0x3fb20c9674ed444c, // -0.99751, 0.070505 0xbfefec7d7f19cffc, 0x3fb1a84d316d4f8a, // -0.99762, 0.068974 0xbfefed58ecb673c4, 0x3fb1440134d709b2, // -0.99772, 0.067444 0xbfefee2f6de455ba, 0x3fb0dfb28ea201e6, // -0.99783, 0.065913 0xbfefef0102826191, 0x3fb07b614e463064, // -0.99793, 0.064383 0xbfefefcdaa704562, 0x3fb0170d833bf421, // -0.99802, 0.062852 0xbfeff095658e71ad, 0x3faf656e79f820e0, // -0.99812, 0.061321 0xbfeff15833be1965, 0x3fae9cbd15ff5527, // -0.99821, 0.05979 0xbfeff21614e131ed, 0x3fadd406f9808ec8, // -0.9983, 0.058258 0xbfeff2cf08da7321, 0x3fad0b4c436f91d0, // -0.99839, 0.056727 0xbfeff3830f8d575c, 0x3fac428d12c0d7e3, // -0.99848, 0.055195 0xbfeff43228de1b77, 0x3fab79c986698b78, // -0.99856, 0.053664 0xbfeff4dc54b1bed3, 0x3faab101bd5f8317, // -0.99864, 0.052132 0xbfeff58192ee0358, 0x3fa9e835d6993c87, // -0.99872, 0.0506 0xbfeff621e3796d7e, 0x3fa91f65f10dd814, // -0.9988, 0.049068 0xbfeff6bd463b444d, 0x3fa856922bb513c1, // -0.99887, 0.047535 0xbfeff753bb1b9164, 0x3fa78dbaa5874685, // -0.99894, 0.046003 0xbfeff7e5420320f9, 0x3fa6c4df7d7d5b84, // -0.99901, 0.044471 0xbfeff871dadb81df, 0x3fa5fc00d290cd43, // -0.99908, 0.042938 0xbfeff8f9858f058b, 0x3fa5331ec3bba0eb, // -0.99914, 0.041406 0xbfeff97c4208c014, 0x3fa46a396ff86179, // -0.9992, 0.039873 0xbfeff9fa10348837, 0x3fa3a150f6421afc, // -0.99926, 0.03834 0xbfeffa72effef75d, 0x3fa2d865759455cd, // -0.99932, 0.036807 0xbfeffae6e1556998, 0x3fa20f770ceb11c6, // -0.99938, 0.035274 0xbfeffb55e425fdae, 0x3fa14685db42c17e, // -0.99943, 0.033741 0xbfeffbbff85f9515, 0x3fa07d91ff984580, // -0.99948, 0.032208 0xbfeffc251df1d3f8, 0x3f9f693731d1cf01, // -0.99953, 0.030675 0xbfeffc8554cd213a, 0x3f9dd7458c64ab39, // -0.99958, 0.029142 0xbfeffce09ce2a679, 0x3f9c454f4ce53b1c, // -0.99962, 0.027608 0xbfeffd36f624500c, 0x3f9ab354b1504fca, // -0.99966, 0.026075 0xbfeffd886084cd0d, 0x3f992155f7a3667e, // -0.9997, 0.024541 0xbfeffdd4dbf78f52, 0x3f978f535ddc9f03, // -0.99974, 0.023008 0xbfeffe1c6870cb77, 0x3f95fd4d21fab226, // -0.99977, 0.021474 0xbfeffe5f05e578db, 0x3f946b4381fce81c, // -0.9998, 0.01994 0xbfeffe9cb44b51a1, 0x3f92d936bbe30efd, // -0.99983, 0.018407 0xbfeffed57398d2b7, 0x3f9147270dad7132, // -0.99986, 0.016873 0xbfefff0943c53bd1, 0x3f8f6a296ab997ca, // -0.99988, 0.015339 0xbfefff3824c88f6f, 0x3f8c45ffe1e48ad9, // -0.9999, 0.013805 0xbfefff62169b92db, 0x3f8921d1fcdec784, // -0.99992, 0.012272 0xbfefff871937ce2f, 0x3f85fda037ac05e0, // -0.99994, 0.010738 0xbfefffa72c978c4f, 0x3f82d96b0e509703, // -0.99996, 0.0092038 0xbfefffc250b5daef, 0x3f7f6a65f9a2a3c5, // -0.99997, 0.0076698 0xbfefffd8858e8a92, 0x3f7921f0fe670071, // -0.99998, 0.0061359 0xbfefffe9cb1e2e8d, 0x3f72d97822f996bc, // -0.99999, 0.0046019 0xbfeffff621621d02, 0x3f6921f8becca4ba, // -1, 0.003068 0xbfeffffd88586ee6, 0x3f5921faaee6472d, // -1, 0.001534 0xbff0000000000000, 0x0000000000000000, // -1, 0 0xbfeffffd88586ee6, 0xbf5921faaee6472d, // -1, -0.001534 0xbfeffff621621d02, 0xbf6921f8becca4ba, // -1, -0.003068 0xbfefffe9cb1e2e8d, 0xbf72d97822f996bc, // -0.99999,-0.0046019 0xbfefffd8858e8a92, 0xbf7921f0fe670071, // -0.99998,-0.0061359 0xbfefffc250b5daef, 0xbf7f6a65f9a2a3c5, // -0.99997,-0.0076698 0xbfefffa72c978c4f, 0xbf82d96b0e509703, // -0.99996,-0.0092038 0xbfefff871937ce2f, 0xbf85fda037ac05e0, // -0.99994, -0.010738 0xbfefff62169b92db, 0xbf8921d1fcdec784, // -0.99992, -0.012272 0xbfefff3824c88f6f, 0xbf8c45ffe1e48ad9, // -0.9999, -0.013805 0xbfefff0943c53bd1, 0xbf8f6a296ab997ca, // -0.99988, -0.015339 0xbfeffed57398d2b7, 0xbf9147270dad7132, // -0.99986, -0.016873 0xbfeffe9cb44b51a1, 0xbf92d936bbe30efd, // -0.99983, -0.018407 0xbfeffe5f05e578db, 0xbf946b4381fce81c, // -0.9998, -0.01994 0xbfeffe1c6870cb77, 0xbf95fd4d21fab226, // -0.99977, -0.021474 0xbfeffdd4dbf78f52, 0xbf978f535ddc9f03, // -0.99974, -0.023008 0xbfeffd886084cd0d, 0xbf992155f7a3667e, // -0.9997, -0.024541 0xbfeffd36f624500c, 0xbf9ab354b1504fca, // -0.99966, -0.026075 0xbfeffce09ce2a679, 0xbf9c454f4ce53b1c, // -0.99962, -0.027608 0xbfeffc8554cd213a, 0xbf9dd7458c64ab39, // -0.99958, -0.029142 0xbfeffc251df1d3f8, 0xbf9f693731d1cf01, // -0.99953, -0.030675 0xbfeffbbff85f9515, 0xbfa07d91ff984580, // -0.99948, -0.032208 0xbfeffb55e425fdae, 0xbfa14685db42c17e, // -0.99943, -0.033741 0xbfeffae6e1556998, 0xbfa20f770ceb11c6, // -0.99938, -0.035274 0xbfeffa72effef75d, 0xbfa2d865759455cd, // -0.99932, -0.036807 0xbfeff9fa10348837, 0xbfa3a150f6421afc, // -0.99926, -0.03834 0xbfeff97c4208c014, 0xbfa46a396ff86179, // -0.9992, -0.039873 0xbfeff8f9858f058b, 0xbfa5331ec3bba0eb, // -0.99914, -0.041406 0xbfeff871dadb81df, 0xbfa5fc00d290cd43, // -0.99908, -0.042938 0xbfeff7e5420320f9, 0xbfa6c4df7d7d5b84, // -0.99901, -0.044471 0xbfeff753bb1b9164, 0xbfa78dbaa5874685, // -0.99894, -0.046003 0xbfeff6bd463b444d, 0xbfa856922bb513c1, // -0.99887, -0.047535 0xbfeff621e3796d7e, 0xbfa91f65f10dd814, // -0.9988, -0.049068 0xbfeff58192ee0358, 0xbfa9e835d6993c87, // -0.99872, -0.0506 0xbfeff4dc54b1bed3, 0xbfaab101bd5f8317, // -0.99864, -0.052132 0xbfeff43228de1b77, 0xbfab79c986698b78, // -0.99856, -0.053664 0xbfeff3830f8d575c, 0xbfac428d12c0d7e3, // -0.99848, -0.055195 0xbfeff2cf08da7321, 0xbfad0b4c436f91d0, // -0.99839, -0.056727 0xbfeff21614e131ed, 0xbfadd406f9808ec8, // -0.9983, -0.058258 0xbfeff15833be1965, 0xbfae9cbd15ff5527, // -0.99821, -0.05979 0xbfeff095658e71ad, 0xbfaf656e79f820e0, // -0.99812, -0.061321 0xbfefefcdaa704562, 0xbfb0170d833bf421, // -0.99802, -0.062852 0xbfefef0102826191, 0xbfb07b614e463064, // -0.99793, -0.064383 0xbfefee2f6de455ba, 0xbfb0dfb28ea201e6, // -0.99783, -0.065913 0xbfefed58ecb673c4, 0xbfb1440134d709b2, // -0.99772, -0.067444 0xbfefec7d7f19cffc, 0xbfb1a84d316d4f8a, // -0.99762, -0.068974 0xbfefeb9d2530410f, 0xbfb20c9674ed444c, // -0.99751, -0.070505 0xbfefeab7df1c6005, 0xbfb270dcefdfc45b, // -0.9974, -0.072035 0xbfefe9cdad01883a, 0xbfb2d52092ce19f6, // -0.99729, -0.073565 0xbfefe8de8f03d75c, 0xbfb339614e41ffa5, // -0.99718, -0.075094 0xbfefe7ea85482d60, 0xbfb39d9f12c5a299, // -0.99706, -0.076624 0xbfefe6f18ff42c84, 0xbfb401d9d0e3a507, // -0.99694, -0.078153 0xbfefe5f3af2e3940, 0xbfb4661179272096, // -0.99682, -0.079682 0xbfefe4f0e31d7a4a, 0xbfb4ca45fc1ba8b6, // -0.9967, -0.081211 0xbfefe3e92be9d886, 0xbfb52e774a4d4d0a, // -0.99657, -0.08274 0xbfefe2dc89bbff08, 0xbfb592a554489bc8, // -0.99644, -0.084269 0xbfefe1cafcbd5b09, 0xbfb5f6d00a9aa419, // -0.99631, -0.085797 0xbfefe0b485181be3, 0xbfb65af75dd0f87b, // -0.99618, -0.087326 0xbfefdf9922f73307, 0xbfb6bf1b3e79b129, // -0.99604, -0.088854 0xbfefde78d68653fd, 0xbfb7233b9d236e71, // -0.99591, -0.090381 0xbfefdd539ff1f456, 0xbfb787586a5d5b21, // -0.99577, -0.091909 0xbfefdc297f674ba9, 0xbfb7eb7196b72ee4, // -0.99563, -0.093436 0xbfefdafa7514538c, 0xbfb84f8712c130a0, // -0.99548, -0.094963 0xbfefd9c68127c78c, 0xbfb8b398cf0c38e0, // -0.99533, -0.09649 0xbfefd88da3d12526, 0xbfb917a6bc29b42c, // -0.99518, -0.098017 0xbfefd74fdd40abbf, 0xbfb97bb0caaba56f, // -0.99503, -0.099544 0xbfefd60d2da75c9e, 0xbfb9dfb6eb24a85c, // -0.99488, -0.10107 0xbfefd4c59536fae4, 0xbfba43b90e27f3c4, // -0.99472, -0.1026 0xbfefd37914220b84, 0xbfbaa7b724495c04, // -0.99456, -0.10412 0xbfefd227aa9bd53b, 0xbfbb0bb11e1d5559, // -0.9944, -0.10565 0xbfefd0d158d86087, 0xbfbb6fa6ec38f64c, // -0.99424, -0.10717 0xbfefcf761f0c77a3, 0xbfbbd3987f31fa0e, // -0.99407, -0.1087 0xbfefce15fd6da67b, 0xbfbc3785c79ec2d5, // -0.99391, -0.11022 0xbfefccb0f4323aa3, 0xbfbc9b6eb6165c42, // -0.99374, -0.11175 0xbfefcb4703914354, 0xbfbcff533b307dc1, // -0.99356, -0.11327 0xbfefc9d82bc2915e, 0xbfbd633347858ce4, // -0.99339, -0.11479 0xbfefc8646cfeb721, 0xbfbdc70ecbae9fc8, // -0.99321, -0.11632 0xbfefc6ebc77f0887, 0xbfbe2ae5b8457f77, // -0.99303, -0.11784 0xbfefc56e3b7d9af6, 0xbfbe8eb7fde4aa3e, // -0.99285, -0.11937 0xbfefc3ebc935454c, 0xbfbef2858d27561b, // -0.99267, -0.12089 0xbfefc26470e19fd3, 0xbfbf564e56a9730e, // -0.99248, -0.12241 0xbfefc0d832bf043a, 0xbfbfba124b07ad85, // -0.99229, -0.12393 0xbfefbf470f0a8d88, 0xbfc00ee8ad6fb85b, // -0.9921, -0.12545 0xbfefbdb106021816, 0xbfc040c5bb67747e, // -0.99191, -0.12698 0xbfefbc1617e44186, 0xbfc072a047ba831d, // -0.99171, -0.1285 0xbfefba7644f068b5, 0xbfc0a4784ab8bf1d, // -0.99151, -0.13002 0xbfefb8d18d66adb7, 0xbfc0d64dbcb26786, // -0.99131, -0.13154 0xbfefb727f187f1c7, 0xbfc1082095f820b0, // -0.99111, -0.13306 0xbfefb5797195d741, 0xbfc139f0cedaf576, // -0.9909, -0.13458 0xbfefb3c60dd2c199, 0xbfc16bbe5fac5865, // -0.9907, -0.1361 0xbfefb20dc681d54d, 0xbfc19d8940be24e7, // -0.99049, -0.13762 0xbfefb0509be6f7db, 0xbfc1cf516a62a077, // -0.99027, -0.13914 0xbfefae8e8e46cfbb, 0xbfc20116d4ec7bce, // -0.99006, -0.14066 0xbfefacc79de6c44f, 0xbfc232d978aed413, // -0.98984, -0.14218 0xbfefaafbcb0cfddc, 0xbfc264994dfd340a, // -0.98962, -0.1437 0xbfefa92b1600657c, 0xbfc296564d2b953e, // -0.9894, -0.14521 0xbfefa7557f08a517, 0xbfc2c8106e8e613a, // -0.98918, -0.14673 0xbfefa57b066e2754, 0xbfc2f9c7aa7a72af, // -0.98895, -0.14825 0xbfefa39bac7a1791, 0xbfc32b7bf94516a7, // -0.98872, -0.14976 0xbfefa1b7717661d5, 0xbfc35d2d53440db2, // -0.98849, -0.15128 0xbfef9fce55adb2c8, 0xbfc38edbb0cd8d14, // -0.98826, -0.1528 0xbfef9de0596b77a3, 0xbfc3c0870a383ff6, // -0.98802, -0.15431 0xbfef9bed7cfbde29, 0xbfc3f22f57db4893, // -0.98778, -0.15583 0xbfef99f5c0abd496, 0xbfc423d4920e4166, // -0.98754, -0.15734 0xbfef97f924c9099b, 0xbfc45576b1293e5a, // -0.9873, -0.15886 0xbfef95f7a9a1ec47, 0xbfc48715ad84cdf5, // -0.98706, -0.16037 0xbfef93f14f85ac08, 0xbfc4b8b17f79fa88, // -0.98681, -0.16189 0xbfef91e616c43891, 0xbfc4ea4a1f624b61, // -0.98656, -0.1634 0xbfef8fd5ffae41db, 0xbfc51bdf8597c5f2, // -0.98631, -0.16491 0xbfef8dc10a95380d, 0xbfc54d71aa74ef02, // -0.98605, -0.16643 0xbfef8ba737cb4b78, 0xbfc57f008654cbde, // -0.9858, -0.16794 0xbfef898887a36c84, 0xbfc5b08c1192e381, // -0.98554, -0.16945 0xbfef8764fa714ba9, 0xbfc5e214448b3fc6, // -0.98528, -0.17096 0xbfef853c9089595e, 0xbfc61399179a6e94, // -0.98501, -0.17247 0xbfef830f4a40c60c, 0xbfc6451a831d830d, // -0.98475, -0.17398 0xbfef80dd27ed8204, 0xbfc676987f7216b8, // -0.98448, -0.17549 0xbfef7ea629e63d6e, 0xbfc6a81304f64ab2, // -0.98421, -0.177 0xbfef7c6a50826840, 0xbfc6d98a0c08c8da, // -0.98394, -0.17851 0xbfef7a299c1a322a, 0xbfc70afd8d08c4ff, // -0.98366, -0.18002 0xbfef77e40d068a90, 0xbfc73c6d8055fe0a, // -0.98339, -0.18153 0xbfef7599a3a12077, 0xbfc76dd9de50bf31, // -0.98311, -0.18304 0xbfef734a60446279, 0xbfc79f429f59e11d, // -0.98282, -0.18455 0xbfef70f6434b7eb7, 0xbfc7d0a7bbd2cb1b, // -0.98254, -0.18606 0xbfef6e9d4d1262ca, 0xbfc802092c1d744b, // -0.98225, -0.18756 0xbfef6c3f7df5bbb7, 0xbfc83366e89c64c5, // -0.98196, -0.18907 0xbfef69dcd652f5de, 0xbfc864c0e9b2b6cf, // -0.98167, -0.19057 0xbfef677556883cee, 0xbfc8961727c41804, // -0.98138, -0.19208 0xbfef6508fef47bd5, 0xbfc8c7699b34ca7e, // -0.98108, -0.19359 0xbfef6297cff75cb0, 0xbfc8f8b83c69a60a, // -0.98079, -0.19509 0xbfef6021c9f148c2, 0xbfc92a0303c8194f, // -0.98048, -0.19659 0xbfef5da6ed43685d, 0xbfc95b49e9b62af9, // -0.98018, -0.1981 0xbfef5b273a4fa2d9, 0xbfc98c8ce69a7aec, // -0.97988, -0.1996 0xbfef58a2b1789e84, 0xbfc9bdcbf2dc4366, // -0.97957, -0.2011 0xbfef56195321c090, 0xbfc9ef0706e35a35, // -0.97926, -0.20261 0xbfef538b1faf2d07, 0xbfca203e1b1831da, // -0.97895, -0.20411 0xbfef50f81785c6b9, 0xbfca517127e3dabc, // -0.97863, -0.20561 0xbfef4e603b0b2f2d, 0xbfca82a025b00451, // -0.97832, -0.20711 0xbfef4bc38aa5c694, 0xbfcab3cb0ce6fe44, // -0.978, -0.20861 0xbfef492206bcabb4, 0xbfcae4f1d5f3b9ab, // -0.97768, -0.21011 0xbfef467bafb7bbe0, 0xbfcb16147941ca2a, // -0.97735, -0.21161 0xbfef43d085ff92dd, 0xbfcb4732ef3d6722, // -0.97703, -0.21311 0xbfef412089fd8adc, 0xbfcb784d30536cda, // -0.9767, -0.21461 0xbfef3e6bbc1bbc65, 0xbfcba96334f15dad, // -0.97637, -0.21611 0xbfef3bb21cc4fe47, 0xbfcbda74f5856330, // -0.97604, -0.2176 0xbfef38f3ac64e589, 0xbfcc0b826a7e4f63, // -0.9757, -0.2191 0xbfef36306b67c556, 0xbfcc3c8b8c4b9dd7, // -0.97536, -0.2206 0xbfef33685a3aaef0, 0xbfcc6d90535d74dc, // -0.97503, -0.22209 0xbfef309b794b719f, 0xbfcc9e90b824a6a9, // -0.97468, -0.22359 0xbfef2dc9c9089a9d, 0xbfcccf8cb312b286, // -0.97434, -0.22508 0xbfef2af349e17507, 0xbfcd00843c99c5f9, // -0.97399, -0.22658 0xbfef2817fc4609ce, 0xbfcd31774d2cbdee, // -0.97364, -0.22807 0xbfef2537e0a71f9f, 0xbfcd6265dd3f27e3, // -0.97329, -0.22957 0xbfef2252f7763ada, 0xbfcd934fe5454311, // -0.97294, -0.23106 0xbfef1f6941259d7a, 0xbfcdc4355db40195, // -0.97258, -0.23255 0xbfef1c7abe284708, 0xbfcdf5163f01099a, // -0.97223, -0.23404 0xbfef19876ef1f486, 0xbfce25f281a2b684, // -0.97187, -0.23553 0xbfef168f53f7205d, 0xbfce56ca1e101a1b, // -0.9715, -0.23702 0xbfef13926dad024e, 0xbfce879d0cc0fdaf, // -0.97114, -0.23851 0xbfef1090bc898f5f, 0xbfceb86b462de348, // -0.97077, -0.24 0xbfef0d8a410379c5, 0xbfcee934c2d006c7, // -0.9704, -0.24149 0xbfef0a7efb9230d7, 0xbfcf19f97b215f1a, // -0.97003, -0.24298 0xbfef076eecade0fa, 0xbfcf4ab9679c9f5c, // -0.96966, -0.24447 0xbfef045a14cf738c, 0xbfcf7b7480bd3801, // -0.96928, -0.24596 0xbfef014074708ed3, 0xbfcfac2abeff57ff, // -0.9689, -0.24744 0xbfeefe220c0b95ec, 0xbfcfdcdc1adfedf8, // -0.96852, -0.24893 0xbfeefafedc1ba8b7, 0xbfd006c4466e54af, // -0.96814, -0.25041 0xbfeef7d6e51ca3c0, 0xbfd01f1806b9fdd2, // -0.96775, -0.2519 0xbfeef4aa278b2032, 0xbfd037694a928cac, // -0.96737, -0.25338 0xbfeef178a3e473c2, 0xbfd04fb80e37fdae, // -0.96698, -0.25487 0xbfeeee425aa6b09a, 0xbfd068044deab002, // -0.96658, -0.25635 0xbfeeeb074c50a544, 0xbfd0804e05eb661e, // -0.96619, -0.25783 0xbfeee7c77961dc9e, 0xbfd09895327b465e, // -0.96579, -0.25931 0xbfeee482e25a9dbc, 0xbfd0b0d9cfdbdb90, // -0.96539, -0.26079 0xbfeee13987bbebdc, 0xbfd0c91bda4f158d, // -0.96499, -0.26227 0xbfeeddeb6a078651, 0xbfd0e15b4e1749cd, // -0.96459, -0.26375 0xbfeeda9889bfe86a, 0xbfd0f998277733f7, // -0.96418, -0.26523 0xbfeed740e7684963, 0xbfd111d262b1f677, // -0.96378, -0.26671 0xbfeed3e483849c51, 0xbfd12a09fc0b1b12, // -0.96337, -0.26819 0xbfeed0835e999009, 0xbfd1423eefc69378, // -0.96295, -0.26967 0xbfeecd1d792c8f10, 0xbfd15a713a28b9d9, // -0.96254, -0.27115 0xbfeec9b2d3c3bf84, 0xbfd172a0d7765177, // -0.96212, -0.27262 0xbfeec6436ee60309, 0xbfd18acdc3f4873a, // -0.9617, -0.2741 0xbfeec2cf4b1af6b2, 0xbfd1a2f7fbe8f243, // -0.96128, -0.27557 0xbfeebf5668eaf2ef, 0xbfd1bb1f7b999480, // -0.96086, -0.27705 0xbfeebbd8c8df0b74, 0xbfd1d3443f4cdb3d, // -0.96043, -0.27852 0xbfeeb8566b810f2a, 0xbfd1eb6643499fbb, // -0.96, -0.27999 0xbfeeb4cf515b8811, 0xbfd2038583d727bd, // -0.95957, -0.28146 0xbfeeb1437af9bb34, 0xbfd21ba1fd3d2623, // -0.95914, -0.28294 0xbfeeadb2e8e7a88e, 0xbfd233bbabc3bb72, // -0.9587, -0.28441 0xbfeeaa1d9bb20af3, 0xbfd24bd28bb37672, // -0.95827, -0.28588 0xbfeea68393e65800, 0xbfd263e6995554ba, // -0.95783, -0.28735 0xbfeea2e4d212c000, 0xbfd27bf7d0f2c346, // -0.95738, -0.28882 0xbfee9f4156c62dda, 0xbfd294062ed59f05, // -0.95694, -0.29028 0xbfee9b99229046f8, 0xbfd2ac11af483572, // -0.95649, -0.29175 0xbfee97ec36016b30, 0xbfd2c41a4e954520, // -0.95605, -0.29322 0xbfee943a91aab4b4, 0xbfd2dc200907fe51, // -0.95559, -0.29469 0xbfee9084361df7f3, 0xbfd2f422daec0386, // -0.95514, -0.29615 0xbfee8cc923edc388, 0xbfd30c22c08d6a13, // -0.95469, -0.29762 0xbfee89095bad6025, 0xbfd3241fb638baaf, // -0.95423, -0.29908 0xbfee8544ddf0d075, 0xbfd33c19b83af207, // -0.95377, -0.30054 0xbfee817bab4cd10d, 0xbfd35410c2e18152, // -0.95331, -0.30201 0xbfee7dadc456d850, 0xbfd36c04d27a4edf, // -0.95284, -0.30347 0xbfee79db29a5165a, 0xbfd383f5e353b6aa, // -0.95238, -0.30493 0xbfee7603dbce74e9, 0xbfd39be3f1bc8aef, // -0.95191, -0.30639 0xbfee7227db6a9744, 0xbfd3b3cefa0414b7, // -0.95144, -0.30785 0xbfee6e472911da27, 0xbfd3cbb6f87a146e, // -0.95096, -0.30931 0xbfee6a61c55d53a7, 0xbfd3e39be96ec271, // -0.95049, -0.31077 0xbfee6677b0e6d31e, 0xbfd3fb7dc932cfa4, // -0.95001, -0.31222 0xbfee6288ec48e112, 0xbfd4135c94176602, // -0.94953, -0.31368 0xbfee5e95781ebf1c, 0xbfd42b38466e2928, // -0.94905, -0.31514 0xbfee5a9d550467d3, 0xbfd44310dc8936f0, // -0.94856, -0.31659 0xbfee56a083968eb1, 0xbfd45ae652bb2800, // -0.94807, -0.31805 0xbfee529f04729ffc, 0xbfd472b8a5571054, // -0.94759, -0.3195 0xbfee4e98d836c0af, 0xbfd48a87d0b07fd7, // -0.94709, -0.32096 0xbfee4a8dff81ce5e, 0xbfd4a253d11b82f3, // -0.9466, -0.32241 0xbfee467e7af35f23, 0xbfd4ba1ca2eca31c, // -0.94611, -0.32386 0xbfee426a4b2bc17e, 0xbfd4d1e24278e76a, // -0.94561, -0.32531 0xbfee3e5170cbfc46, 0xbfd4e9a4ac15d520, // -0.94511, -0.32676 0xbfee3a33ec75ce85, 0xbfd50163dc197047, // -0.9446, -0.32821 0xbfee3611becbaf69, 0xbfd5191fceda3c35, // -0.9441, -0.32966 0xbfee31eae870ce25, 0xbfd530d880af3c24, // -0.94359, -0.33111 0xbfee2dbf6a0911d9, 0xbfd5488dedeff3be, // -0.94308, -0.33255 0xbfee298f4439197a, 0xbfd5604012f467b4, // -0.94257, -0.334 0xbfee255a77a63bb8, 0xbfd577eeec151e47, // -0.94206, -0.33545 0xbfee212104f686e5, 0xbfd58f9a75ab1fdd, // -0.94154, -0.33689 0xbfee1ce2ecd0c0d8, 0xbfd5a742ac0ff78d, // -0.94103, -0.33833 0xbfee18a02fdc66d9, 0xbfd5bee78b9db3b6, // -0.94051, -0.33978 0xbfee1458cec1ad83, 0xbfd5d68910aee686, // -0.93998, -0.34122 0xbfee100cca2980ac, 0xbfd5ee27379ea693, // -0.93946, -0.34266 0xbfee0bbc22bd8349, 0xbfd605c1fcc88f63, // -0.93893, -0.3441 0xbfee0766d9280f54, 0xbfd61d595c88c203, // -0.9384, -0.34554 0xbfee030cee1435b8, 0xbfd634ed533be58e, // -0.93787, -0.34698 0xbfedfeae622dbe2b, 0xbfd64c7ddd3f27c6, // -0.93734, -0.34842 0xbfedfa4b3621271d, 0xbfd6640af6f03d9e, // -0.9368, -0.34986 0xbfedf5e36a9ba59c, 0xbfd67b949cad63ca, // -0.93627, -0.35129 0xbfedf177004b2534, 0xbfd6931acad55f51, // -0.93573, -0.35273 0xbfeded05f7de47da, 0xbfd6aa9d7dc77e16, // -0.93518, -0.35416 0xbfede890520465ce, 0xbfd6c21cb1e39771, // -0.93464, -0.3556 0xbfede4160f6d8d81, 0xbfd6d998638a0cb5, // -0.93409, -0.35703 0xbfeddf9730ca837b, 0xbfd6f1108f1bc9c5, // -0.93354, -0.35846 0xbfeddb13b6ccc23d, 0xbfd7088530fa459e, // -0.93299, -0.3599 0xbfedd68ba2267a25, 0xbfd71ff6458782ec, // -0.93244, -0.36133 0xbfedd1fef38a915a, 0xbfd73763c9261092, // -0.93188, -0.36276 0xbfedcd6dabaca3a5, 0xbfd74ecdb8390a3e, // -0.93133, -0.36418 0xbfedc8d7cb410260, 0xbfd766340f2418f6, // -0.93077, -0.36561 0xbfedc43d52fcb453, 0xbfd77d96ca4b73a6, // -0.93021, -0.36704 0xbfedbf9e4395759a, 0xbfd794f5e613dfae, // -0.92964, -0.36847 0xbfedbafa9dc1b78d, 0xbfd7ac515ee2b172, // -0.92907, -0.36989 0xbfedb6526238a09b, 0xbfd7c3a9311dcce7, // -0.92851, -0.37132 0xbfedb1a591b20c38, 0xbfd7dafd592ba621, // -0.92794, -0.37274 0xbfedacf42ce68ab9, 0xbfd7f24dd37341e3, // -0.92736, -0.37416 0xbfeda83e348f613b, 0xbfd8099a9c5c362d, // -0.92679, -0.37559 0xbfeda383a9668988, 0xbfd820e3b04eaac4, // -0.92621, -0.37701 0xbfed9ec48c26b1f3, 0xbfd838290bb359c8, // -0.92563, -0.37843 0xbfed9a00dd8b3d46, 0xbfd84f6aaaf3903f, // -0.92505, -0.37985 0xbfed95389e50429b, 0xbfd866a88a792ea0, // -0.92447, -0.38127 0xbfed906bcf328d46, 0xbfd87de2a6aea963, // -0.92388, -0.38268 0xbfed8b9a70ef9cb4, 0xbfd89518fbff098e, // -0.92329, -0.3841 0xbfed86c48445a450, 0xbfd8ac4b86d5ed44, // -0.9227, -0.38552 0xbfed81ea09f38b63, 0xbfd8c37a439f884f, // -0.92211, -0.38693 0xbfed7d0b02b8ecf9, 0xbfd8daa52ec8a4af, // -0.92151, -0.38835 0xbfed78276f5617c6, 0xbfd8f1cc44bea329, // -0.92092, -0.38976 0xbfed733f508c0dff, 0xbfd908ef81ef7bd1, // -0.92032, -0.39117 0xbfed6e52a71c8547, 0xbfd9200ee2c9be97, // -0.91972, -0.39258 0xbfed696173c9e68b, 0xbfd9372a63bc93d7, // -0.91911, -0.39399 0xbfed646bb7574de5, 0xbfd94e420137bce3, // -0.91851, -0.3954 0xbfed5f7172888a7f, 0xbfd96555b7ab948f, // -0.9179, -0.39681 0xbfed5a72a6221e73, 0xbfd97c6583890fc2, // -0.91729, -0.39822 0xbfed556f52e93eb1, 0xbfd993716141bdfe, // -0.91668, -0.39962 0xbfed506779a3d2d9, 0xbfd9aa794d47c9ee, // -0.91606, -0.40103 0xbfed4b5b1b187524, 0xbfd9c17d440df9f2, // -0.91545, -0.40243 0xbfed464a380e7242, 0xbfd9d87d4207b0ab, // -0.91483, -0.40384 0xbfed4134d14dc93a, 0xbfd9ef7943a8ed8a, // -0.91421, -0.40524 0xbfed3c1ae79f2b4e, 0xbfda067145664d57, // -0.91359, -0.40664 0xbfed36fc7bcbfbdc, 0xbfda1d6543b50ac0, // -0.91296, -0.40804 0xbfed31d98e9e503a, 0xbfda34553b0afee5, // -0.91234, -0.40944 0xbfed2cb220e0ef9f, 0xbfda4b4127dea1e4, // -0.91171, -0.41084 0xbfed2786335f52fc, 0xbfda622906a70b63, // -0.91107, -0.41224 0xbfed2255c6e5a4e1, 0xbfda790cd3dbf31a, // -0.91044, -0.41364 0xbfed1d20dc40c15c, 0xbfda8fec8bf5b166, // -0.90981, -0.41503 0xbfed17e7743e35dc, 0xbfdaa6c82b6d3fc9, // -0.90917, -0.41643 0xbfed12a98fac410c, 0xbfdabd9faebc3980, // -0.90853, -0.41782 0xbfed0d672f59d2b9, 0xbfdad473125cdc08, // -0.90789, -0.41922 0xbfed082054168bac, 0xbfdaeb4252ca07ab, // -0.90724, -0.42061 0xbfed02d4feb2bd92, 0xbfdb020d6c7f4009, // -0.9066, -0.422 0xbfecfd852fff6ad4, 0xbfdb18d45bf8aca6, // -0.90595, -0.42339 0xbfecf830e8ce467b, 0xbfdb2f971db31972, // -0.9053, -0.42478 0xbfecf2d829f1b40e, 0xbfdb4655ae2bf757, // -0.90464, -0.42617 0xbfeced7af43cc773, 0xbfdb5d1009e15cc0, // -0.90399, -0.42756 0xbfece819488344ce, 0xbfdb73c62d520624, // -0.90333, -0.42894 0xbfece2b32799a060, 0xbfdb8a7814fd5693, // -0.90267, -0.43033 0xbfecdd489254fe65, 0xbfdba125bd63583e, // -0.90201, -0.43171 0xbfecd7d9898b32f6, 0xbfdbb7cf2304bd01, // -0.90135, -0.43309 0xbfecd2660e12c1e6, 0xbfdbce744262deee, // -0.90068, -0.43448 0xbfecccee20c2de9f, 0xbfdbe51517ffc0d9, // -0.90002, -0.43586 0xbfecc771c2736c09, 0xbfdbfbb1a05e0edc, // -0.89935, -0.43724 0xbfecc1f0f3fcfc5c, 0xbfdc1249d8011ee7, // -0.89867, -0.43862 0xbfecbc6bb638d10b, 0xbfdc28ddbb6cf145, // -0.898, -0.43999 0xbfecb6e20a00da99, 0xbfdc3f6d47263129, // -0.89732, -0.44137 0xbfecb153f02fb87d, 0xbfdc55f877b23537, // -0.89665, -0.44275 0xbfecabc169a0b901, 0xbfdc6c7f4997000a, // -0.89597, -0.44412 0xbfeca62a772fd919, 0xbfdc8301b95b40c2, // -0.89528, -0.4455 0xbfeca08f19b9c449, 0xbfdc997fc3865388, // -0.8946, -0.44687 0xbfec9aef521bd480, 0xbfdcaff964a0421d, // -0.89391, -0.44824 0xbfec954b213411f5, 0xbfdcc66e9931c45d, // -0.89322, -0.44961 0xbfec8fa287e13305, 0xbfdcdcdf5dc440ce, // -0.89253, -0.45098 0xbfec89f587029c13, 0xbfdcf34baee1cd21, // -0.89184, -0.45235 0xbfec84441f785f61, 0xbfdd09b389152ec1, // -0.89115, -0.45372 0xbfec7e8e52233cf3, 0xbfdd2016e8e9db5b, // -0.89045, -0.45508 0xbfec78d41fe4a267, 0xbfdd3675caebf962, // -0.88975, -0.45645 0xbfec7315899eaad7, 0xbfdd4cd02ba8609c, // -0.88905, -0.45781 0xbfec6d5290341eb2, 0xbfdd632607ac9aa9, // -0.88835, -0.45918 0xbfec678b3488739b, 0xbfdd79775b86e389, // -0.88764, -0.46054 0xbfec61bf777fcc48, 0xbfdd8fc423c62a25, // -0.88693, -0.4619 0xbfec5bef59fef85a, 0xbfdda60c5cfa10d8, // -0.88622, -0.46326 0xbfec561adceb743e, 0xbfddbc5003b2edf8, // -0.88551, -0.46462 0xbfec5042012b6907, 0xbfddd28f1481cc58, // -0.8848, -0.46598 0xbfec4a64c7a5ac4c, 0xbfdde8c98bf86bd6, // -0.88408, -0.46733 0xbfec44833141c004, 0xbfddfeff66a941de, // -0.88336, -0.46869 0xbfec3e9d3ee7d262, 0xbfde1530a12779f4, // -0.88264, -0.47004 0xbfec38b2f180bdb1, 0xbfde2b5d3806f63b, // -0.88192, -0.4714 0xbfec32c449f60831, 0xbfde418527dc4ffa, // -0.8812, -0.47275 0xbfec2cd14931e3f1, 0xbfde57a86d3cd824, // -0.88047, -0.4741 0xbfec26d9f01f2eaf, 0xbfde6dc704be97e2, // -0.87974, -0.47545 0xbfec20de3fa971b0, 0xbfde83e0eaf85113, // -0.87901, -0.4768 0xbfec1ade38bce19b, 0xbfde99f61c817eda, // -0.87828, -0.47815 0xbfec14d9dc465e58, 0xbfdeb00695f25620, // -0.87755, -0.47949 0xbfec0ed12b3372e9, 0xbfdec61253e3c61b, // -0.87681, -0.48084 0xbfec08c426725549, 0xbfdedc1952ef78d5, // -0.87607, -0.48218 0xbfec02b2cef1e641, 0xbfdef21b8fafd3b5, // -0.87533, -0.48353 0xbfebfc9d25a1b147, 0xbfdf081906bff7fd, // -0.87459, -0.48487 0xbfebf6832b71ec5b, 0xbfdf1e11b4bbc35c, // -0.87384, -0.48621 0xbfebf064e15377dd, 0xbfdf3405963fd068, // -0.87309, -0.48755 0xbfebea424837de6d, 0xbfdf49f4a7e97729, // -0.87235, -0.48889 0xbfebe41b611154c1, 0xbfdf5fdee656cda3, // -0.8716, -0.49023 0xbfebddf02cd2b983, 0xbfdf75c44e26a852, // -0.87084, -0.49156 0xbfebd7c0ac6f952a, 0xbfdf8ba4dbf89aba, // -0.87009, -0.4929 0xbfebd18ce0dc19d6, 0xbfdfa1808c6cf7e0, // -0.86933, -0.49423 0xbfebcb54cb0d2327, 0xbfdfb7575c24d2de, // -0.86857, -0.49557 0xbfebc5186bf8361d, 0xbfdfcd2947c1ff57, // -0.86781, -0.4969 0xbfebbed7c49380ea, 0xbfdfe2f64be7120f, // -0.86705, -0.49823 0xbfebb892d5d5dad5, 0xbfdff8be6537615e, // -0.86628, -0.49956 0xbfebb249a0b6c40d, 0xbfe00740c82b82e0, // -0.86551, -0.50089 0xbfebabfc262e6586, 0xbfe0121fe4f56d2c, // -0.86474, -0.50221 0xbfeba5aa673590d2, 0xbfe01cfc874c3eb7, // -0.86397, -0.50354 0xbfeb9f5464c5bffc, 0xbfe027d6ad83287e, // -0.8632, -0.50486 0xbfeb98fa1fd9155e, 0xbfe032ae55edbd95, // -0.86242, -0.50619 0xbfeb929b996a5b7f, 0xbfe03d837edff370, // -0.86165, -0.50751 0xbfeb8c38d27504e9, 0xbfe0485626ae221a, // -0.86087, -0.50883 0xbfeb85d1cbf52c02, 0xbfe053264bad0483, // -0.86009, -0.51015 0xbfeb7f6686e792ea, 0xbfe05df3ec31b8b6, // -0.8593, -0.51147 0xbfeb78f70449a34b, 0xbfe068bf0691c028, // -0.85852, -0.51279 0xbfeb728345196e3e, 0xbfe073879922ffed, // -0.85773, -0.5141 0xbfeb6c0b4a55ac17, 0xbfe07e4da23bc102, // -0.85694, -0.51542 0xbfeb658f14fdbc47, 0xbfe089112032b08c, // -0.85615, -0.51673 0xbfeb5f0ea611a532, 0xbfe093d2115ee018, // -0.85535, -0.51804 0xbfeb5889fe921405, 0xbfe09e907417c5e1, // -0.85456, -0.51936 0xbfeb52011f805c92, 0xbfe0a94c46b53d0b, // -0.85376, -0.52067 0xbfeb4b7409de7925, 0xbfe0b405878f85ec, // -0.85296, -0.52198 0xbfeb44e2beaf0a61, 0xbfe0bebc34ff4646, // -0.85216, -0.52328 0xbfeb3e4d3ef55712, 0xbfe0c9704d5d898f, // -0.85136, -0.52459 0xbfeb37b38bb54c09, 0xbfe0d421cf03c12b, // -0.85055, -0.5259 0xbfeb3115a5f37bf4, 0xbfe0ded0b84bc4b5, // -0.84974, -0.5272 0xbfeb2a738eb51f33, 0xbfe0e97d078fd23b, // -0.84893, -0.5285 0xbfeb23cd470013b4, 0xbfe0f426bb2a8e7d, // -0.84812, -0.5298 0xbfeb1d22cfdadcc6, 0xbfe0fecdd1770537, // -0.84731, -0.5311 0xbfeb16742a4ca2f5, 0xbfe1097248d0a956, // -0.84649, -0.5324 0xbfeb0fc1575d33db, 0xbfe114141f935545, // -0.84567, -0.5337 0xbfeb090a58150200, 0xbfe11eb3541b4b22, // -0.84485, -0.535 0xbfeb024f2d7d24a9, 0xbfe1294fe4c5350a, // -0.84403, -0.53629 0xbfeafb8fd89f57b6, 0xbfe133e9cfee254e, // -0.84321, -0.53759 0xbfeaf4cc5a85fb73, 0xbfe13e8113f396c1, // -0.84238, -0.53888 0xbfeaee04b43c1474, 0xbfe14915af336ceb, // -0.84155, -0.54017 0xbfeae738e6cd4b67, 0xbfe153a7a00bf453, // -0.84073, -0.54146 0xbfeae068f345ecef, 0xbfe15e36e4dbe2bc, // -0.83989, -0.54275 0xbfead994dab2e979, 0xbfe168c37c025764, // -0.83906, -0.54404 0xbfead2bc9e21d511, 0xbfe1734d63dedb49, // -0.83822, -0.54532 0xbfeacbe03ea0e73b, 0xbfe17dd49ad16161, // -0.83739, -0.54661 0xbfeac4ffbd3efac8, 0xbfe188591f3a46e5, // -0.83655, -0.54789 0xbfeabe1b1b0b8dac, 0xbfe192daef7a5386, // -0.83571, -0.54918 0xbfeab7325916c0d4, 0xbfe19d5a09f2b9b8, // -0.83486, -0.55046 0xbfeab045787157ff, 0xbfe1a7d66d0516e6, // -0.83402, -0.55174 0xbfeaa9547a2cb98e, 0xbfe1b250171373be, // -0.83317, -0.55302 0xbfeaa25f5f5aee60, 0xbfe1bcc706804467, // -0.83232, -0.55429 0xbfea9b66290ea1a3, 0xbfe1c73b39ae68c8, // -0.83147, -0.55557 0xbfea9468d85b20ae, 0xbfe1d1acaf012cc2, // -0.83062, -0.55685 0xbfea8d676e545ad2, 0xbfe1dc1b64dc4872, // -0.82976, -0.55812 0xbfea8661ec0ee133, 0xbfe1e68759a3e074, // -0.8289, -0.55939 0xbfea7f58529fe69d, 0xbfe1f0f08bbc861b, // -0.82805, -0.56066 0xbfea784aa31d3f55, 0xbfe1fb56f98b37b8, // -0.82718, -0.56193 0xbfea7138de9d60f5, 0xbfe205baa17560d6, // -0.82632, -0.5632 0xbfea6a230637623b, 0xbfe2101b81e0da78, // -0.82546, -0.56447 0xbfea63091b02fae2, 0xbfe21a799933eb58, // -0.82459, -0.56573 0xbfea5beb1e188375, 0xbfe224d4e5d5482e, // -0.82372, -0.567 0xbfea54c91090f524, 0xbfe22f2d662c13e1, // -0.82285, -0.56826 0xbfea4da2f385e997, 0xbfe23983189fdfd5, // -0.82198, -0.56952 0xbfea4678c8119ac8, 0xbfe243d5fb98ac1f, // -0.8211, -0.57078 0xbfea3f4a8f4ee2d2, 0xbfe24e260d7ee7c9, // -0.82023, -0.57204 0xbfea38184a593bc6, 0xbfe258734cbb7110, // -0.81935, -0.5733 0xbfea30e1fa4cbf81, 0xbfe262bdb7b795a2, // -0.81847, -0.57455 0xbfea29a7a0462782, 0xbfe26d054cdd12df, // -0.81758, -0.57581 0xbfea22693d62ccb9, 0xbfe2774a0a961612, // -0.8167, -0.57706 0xbfea1b26d2c0a75e, 0xbfe2818bef4d3cba, // -0.81581, -0.57831 0xbfea13e0617e4ec7, 0xbfe28bcaf96d94ba, // -0.81493, -0.57956 0xbfea0c95eabaf937, 0xbfe2960727629ca8, // -0.81404, -0.58081 0xbfea05476f967bb5, 0xbfe2a040779843fb, // -0.81314, -0.58206 0xbfe9fdf4f13149de, 0xbfe2aa76e87aeb58, // -0.81225, -0.58331 0xbfe9f69e70ac75bc, 0xbfe2b4aa787764c4, // -0.81135, -0.58455 0xbfe9ef43ef29af94, 0xbfe2bedb25faf3ea, // -0.81046, -0.5858 0xbfe9e7e56dcb45bd, 0xbfe2c908ef734e57, // -0.80956, -0.58704 0xbfe9e082edb42472, 0xbfe2d333d34e9bb7, // -0.80866, -0.58828 0xbfe9d91c7007d5a6, 0xbfe2dd5bcffb7616, // -0.80775, -0.58952 0xbfe9d1b1f5ea80d6, 0xbfe2e780e3e8ea16, // -0.80685, -0.59076 0xbfe9ca438080eadb, 0xbfe2f1a30d86773a, // -0.80594, -0.592 0xbfe9c2d110f075c3, 0xbfe2fbc24b441015, // -0.80503, -0.59323 0xbfe9bb5aa85f2098, 0xbfe305de9b921a94, // -0.80412, -0.59447 0xbfe9b3e047f38741, 0xbfe30ff7fce17035, // -0.80321, -0.5957 0xbfe9ac61f0d4e247, 0xbfe31a0e6da35e44, // -0.80229, -0.59693 0xbfe9a4dfa42b06b2, 0xbfe32421ec49a620, // -0.80138, -0.59816 0xbfe99d59631e65d5, 0xbfe32e3277467d6b, // -0.80046, -0.59939 0xbfe995cf2ed80d22, 0xbfe338400d0c8e57, // -0.79954, -0.60062 0xbfe98e410881a600, 0xbfe3424aac0ef7d6, // -0.79861, -0.60184 0xbfe986aef1457594, 0xbfe34c5252c14de1, // -0.79769, -0.60307 0xbfe97f18ea4e5c9e, 0xbfe35656ff9799ae, // -0.79676, -0.60429 0xbfe9777ef4c7d742, 0xbfe36058b10659f3, // -0.79584, -0.60551 0xbfe96fe111ddfce0, 0xbfe36a576582831b, // -0.79491, -0.60673 0xbfe9683f42bd7fe1, 0xbfe374531b817f8d, // -0.79398, -0.60795 0xbfe960998893ad8c, 0xbfe37e4bd1792fe2, // -0.79304, -0.60917 0xbfe958efe48e6dd7, 0xbfe3884185dfeb22, // -0.79211, -0.61038 0xbfe9514257dc4335, 0xbfe39234372c7f04, // -0.79117, -0.6116 0xbfe94990e3ac4a6c, 0xbfe39c23e3d63029, // -0.79023, -0.61281 0xbfe941db892e3a65, 0xbfe3a6108a54ba58, // -0.78929, -0.61402 0xbfe93a22499263fc, 0xbfe3affa292050b9, // -0.78835, -0.61523 0xbfe932652609b1cf, 0xbfe3b9e0beb19e18, // -0.7874, -0.61644 0xbfe92aa41fc5a815, 0xbfe3c3c44981c517, // -0.78646, -0.61765 0xbfe922df37f8646a, 0xbfe3cda4c80a6076, // -0.78551, -0.61885 0xbfe91b166fd49da2, 0xbfe3d78238c58343, // -0.78456, -0.62006 0xbfe91349c88da398, 0xbfe3e15c9a2db922, // -0.7836, -0.62126 0xbfe90b7943575efe, 0xbfe3eb33eabe0680, // -0.78265, -0.62246 0xbfe903a4e1665133, 0xbfe3f50828f1e8d2, // -0.78169, -0.62366 0xbfe8fbcca3ef940d, 0xbfe3fed9534556d4, // -0.78074, -0.62486 0xbfe8f3f08c28d9ac, 0xbfe408a76834c0c0, // -0.77978, -0.62606 0xbfe8ec109b486c49, 0xbfe41272663d108c, // -0.77882, -0.62725 0xbfe8e42cd2852e0a, 0xbfe41c3a4bdbaa26, // -0.77785, -0.62845 0xbfe8dc45331698cc, 0xbfe425ff178e6bb1, // -0.77689, -0.62964 0xbfe8d459be34bdfa, 0xbfe42fc0c7d3adbb, // -0.77592, -0.63083 0xbfe8cc6a75184655, 0xbfe4397f5b2a4380, // -0.77495, -0.63202 0xbfe8c47758fa71cb, 0xbfe4433ad0117b1d, // -0.77398, -0.63321 0xbfe8bc806b151741, 0xbfe44cf325091dd6, // -0.77301, -0.63439 0xbfe8b485aca2a468, 0xbfe456a858917046, // -0.77204, -0.63558 0xbfe8ac871ede1d88, 0xbfe4605a692b32a2, // -0.77106, -0.63676 0xbfe8a484c3031d50, 0xbfe46a095557a0f1, // -0.77008, -0.63794 0xbfe89c7e9a4dd4ab, 0xbfe473b51b987347, // -0.7691, -0.63912 0xbfe89474a5fb0a84, 0xbfe47d5dba6fde01, // -0.76812, -0.6403 0xbfe88c66e7481ba1, 0xbfe48703306091fe, // -0.76714, -0.64148 0xbfe884555f72fa6b, 0xbfe490a57bedbcdf, // -0.76615, -0.64266 0xbfe87c400fba2ebf, 0xbfe49a449b9b0938, // -0.76517, -0.64383 0xbfe87426f95cd5bd, 0xbfe4a3e08dec9ed6, // -0.76418, -0.645 0xbfe86c0a1d9aa195, 0xbfe4ad79516722f0, // -0.76319, -0.64618 0xbfe863e97db3d95a, 0xbfe4b70ee48fb869, // -0.7622, -0.64735 0xbfe85bc51ae958cc, 0xbfe4c0a145ec0004, // -0.7612, -0.64851 0xbfe8539cf67c9029, 0xbfe4ca30740218a3, // -0.76021, -0.64968 0xbfe84b7111af83f9, 0xbfe4d3bc6d589f80, // -0.75921, -0.65085 0xbfe843416dc4cce2, 0xbfe4dd453076b064, // -0.75821, -0.65201 0xbfe83b0e0bff976e, 0xbfe4e6cabbe3e5e9, // -0.75721, -0.65317 0xbfe832d6eda3a3e0, 0xbfe4f04d0e2859aa, // -0.75621, -0.65433 0xbfe82a9c13f545ff, 0xbfe4f9cc25cca486, // -0.7552, -0.65549 0xbfe8225d803964e5, 0xbfe503480159ded2, // -0.75419, -0.65665 0xbfe81a1b33b57acc, 0xbfe50cc09f59a09b, // -0.75319, -0.65781 0xbfe811d52faf94dc, 0xbfe51635fe5601d7, // -0.75218, -0.65896 0xbfe8098b756e52fa, 0xbfe51fa81cd99aa6, // -0.75117, -0.66011 0xbfe8013e0638e795, 0xbfe52916f96f8388, // -0.75015, -0.66127 0xbfe7f8ece3571771, 0xbfe5328292a35596, // -0.74914, -0.66242 0xbfe7f0980e113978, 0xbfe53beae7012abe, // -0.74812, -0.66356 0xbfe7e83f87b03686, 0xbfe5454ff5159dfb, // -0.7471, -0.66471 0xbfe7dfe3517d8937, 0xbfe54eb1bb6dcb8f, // -0.74608, -0.66586 0xbfe7d7836cc33db2, 0xbfe5581038975137, // -0.74506, -0.667 0xbfe7cf1fdacbf179, 0xbfe5616b6b204e6e, // -0.74403, -0.66814 0xbfe7c6b89ce2d333, 0xbfe56ac35197649e, // -0.74301, -0.66928 0xbfe7be4db453a27c, 0xbfe57417ea8bb75c, // -0.74198, -0.67042 0xbfe7b5df226aafb0, 0xbfe57d69348cec9f, // -0.74095, -0.67156 0xbfe7ad6ce874dbb6, 0xbfe586b72e2b2cfd, // -0.73992, -0.67269 0xbfe7a4f707bf97d2, 0xbfe59001d5f723df, // -0.73889, -0.67383 0xbfe79c7d8198e56e, 0xbfe599492a81ffbc, // -0.73785, -0.67496 0xbfe79400574f55e4, 0xbfe5a28d2a5d7250, // -0.73682, -0.67609 0xbfe78b7f8a320a52, 0xbfe5abcdd41bb0d8, // -0.73578, -0.67722 0xbfe782fb1b90b35b, 0xbfe5b50b264f7448, // -0.73474, -0.67835 0xbfe77a730cbb9100, 0xbfe5be451f8bf980, // -0.7337, -0.67948 0xbfe771e75f037261, 0xbfe5c77bbe65018c, // -0.73265, -0.6806 0xbfe7695813b9b594, 0xbfe5d0af016ed1d4, // -0.73161, -0.68172 0xbfe760c52c304764, 0xbfe5d9dee73e345c, // -0.73056, -0.68285 0xbfe7582ea9b9a329, 0xbfe5e30b6e6877f3, // -0.72951, -0.68397 0xbfe74f948da8d28d, 0xbfe5ec3495837074, // -0.72846, -0.68508 0xbfe746f6d9516d59, 0xbfe5f55a5b2576f8, // -0.72741, -0.6862 0xbfe73e558e079942, 0xbfe5fe7cbde56a0f, // -0.72636, -0.68732 0xbfe735b0ad2009b2, 0xbfe6079bbc5aadfa, // -0.7253, -0.68843 0xbfe72d0837efff97, 0xbfe610b7551d2cde, // -0.72425, -0.68954 0xbfe7245c2fcd492a, 0xbfe619cf86c55702, // -0.72319, -0.69065 0xbfe71bac960e41bf, 0xbfe622e44fec22ff, // -0.72213, -0.69176 0xbfe712f96c09d18d, 0xbfe62bf5af2b0dfd, // -0.72107, -0.69287 0xbfe70a42b3176d7a, 0xbfe63503a31c1be8, // -0.72, -0.69397 0xbfe701886c8f16e6, 0xbfe63e0e2a59d7aa, // -0.71894, -0.69508 0xbfe6f8ca99c95b75, 0xbfe64715437f535b, // -0.71787, -0.69618 0xbfe6f0093c1f54de, 0xbfe65018ed28287f, // -0.7168, -0.69728 0xbfe6e74454eaa8ae, 0xbfe6591925f0783e, // -0.71573, -0.69838 0xbfe6de7be585881d, 0xbfe66215ec74eb91, // -0.71466, -0.69947 0xbfe6d5afef4aafcc, 0xbfe66b0f3f52b386, // -0.71358, -0.70057 0xbfe6cce07395679f, 0xbfe674051d27896c, // -0.71251, -0.70166 0xbfe6c40d73c18275, 0xbfe67cf78491af10, // -0.71143, -0.70275 0xbfe6bb36f12b5e06, 0xbfe685e6742feeef, // -0.71035, -0.70385 0xbfe6b25ced2fe29c, 0xbfe68ed1eaa19c71, // -0.70927, -0.70493 0xbfe6a97f692c82ea, 0xbfe697b9e686941c, // -0.70819, -0.70602 0xbfe6a09e667f3bcc, 0xbfe6a09e667f3bcc, // -0.70711, -0.70711 0xbfe697b9e686941c, 0xbfe6a97f692c82ea, // -0.70602, -0.70819 0xbfe68ed1eaa19c71, 0xbfe6b25ced2fe29c, // -0.70493, -0.70927 0xbfe685e6742feeef, 0xbfe6bb36f12b5e06, // -0.70385, -0.71035 0xbfe67cf78491af10, 0xbfe6c40d73c18275, // -0.70275, -0.71143 0xbfe674051d27896c, 0xbfe6cce07395679f, // -0.70166, -0.71251 0xbfe66b0f3f52b386, 0xbfe6d5afef4aafcc, // -0.70057, -0.71358 0xbfe66215ec74eb91, 0xbfe6de7be585881d, // -0.69947, -0.71466 0xbfe6591925f0783e, 0xbfe6e74454eaa8ae, // -0.69838, -0.71573 0xbfe65018ed28287f, 0xbfe6f0093c1f54de, // -0.69728, -0.7168 0xbfe64715437f535b, 0xbfe6f8ca99c95b75, // -0.69618, -0.71787 0xbfe63e0e2a59d7aa, 0xbfe701886c8f16e6, // -0.69508, -0.71894 0xbfe63503a31c1be8, 0xbfe70a42b3176d7a, // -0.69397, -0.72 0xbfe62bf5af2b0dfd, 0xbfe712f96c09d18d, // -0.69287, -0.72107 0xbfe622e44fec22ff, 0xbfe71bac960e41bf, // -0.69176, -0.72213 0xbfe619cf86c55702, 0xbfe7245c2fcd492a, // -0.69065, -0.72319 0xbfe610b7551d2cde, 0xbfe72d0837efff97, // -0.68954, -0.72425 0xbfe6079bbc5aadfa, 0xbfe735b0ad2009b2, // -0.68843, -0.7253 0xbfe5fe7cbde56a0f, 0xbfe73e558e079942, // -0.68732, -0.72636 0xbfe5f55a5b2576f8, 0xbfe746f6d9516d59, // -0.6862, -0.72741 0xbfe5ec3495837074, 0xbfe74f948da8d28d, // -0.68508, -0.72846 0xbfe5e30b6e6877f3, 0xbfe7582ea9b9a329, // -0.68397, -0.72951 0xbfe5d9dee73e345c, 0xbfe760c52c304764, // -0.68285, -0.73056 0xbfe5d0af016ed1d4, 0xbfe7695813b9b594, // -0.68172, -0.73161 0xbfe5c77bbe65018c, 0xbfe771e75f037261, // -0.6806, -0.73265 0xbfe5be451f8bf980, 0xbfe77a730cbb9100, // -0.67948, -0.7337 0xbfe5b50b264f7448, 0xbfe782fb1b90b35b, // -0.67835, -0.73474 0xbfe5abcdd41bb0d8, 0xbfe78b7f8a320a52, // -0.67722, -0.73578 0xbfe5a28d2a5d7250, 0xbfe79400574f55e4, // -0.67609, -0.73682 0xbfe599492a81ffbc, 0xbfe79c7d8198e56e, // -0.67496, -0.73785 0xbfe59001d5f723df, 0xbfe7a4f707bf97d2, // -0.67383, -0.73889 0xbfe586b72e2b2cfd, 0xbfe7ad6ce874dbb6, // -0.67269, -0.73992 0xbfe57d69348cec9f, 0xbfe7b5df226aafb0, // -0.67156, -0.74095 0xbfe57417ea8bb75c, 0xbfe7be4db453a27c, // -0.67042, -0.74198 0xbfe56ac35197649e, 0xbfe7c6b89ce2d333, // -0.66928, -0.74301 0xbfe5616b6b204e6e, 0xbfe7cf1fdacbf179, // -0.66814, -0.74403 0xbfe5581038975137, 0xbfe7d7836cc33db2, // -0.667, -0.74506 0xbfe54eb1bb6dcb8f, 0xbfe7dfe3517d8937, // -0.66586, -0.74608 0xbfe5454ff5159dfb, 0xbfe7e83f87b03686, // -0.66471, -0.7471 0xbfe53beae7012abe, 0xbfe7f0980e113978, // -0.66356, -0.74812 0xbfe5328292a35596, 0xbfe7f8ece3571771, // -0.66242, -0.74914 0xbfe52916f96f8388, 0xbfe8013e0638e795, // -0.66127, -0.75015 0xbfe51fa81cd99aa6, 0xbfe8098b756e52fa, // -0.66011, -0.75117 0xbfe51635fe5601d7, 0xbfe811d52faf94dc, // -0.65896, -0.75218 0xbfe50cc09f59a09b, 0xbfe81a1b33b57acc, // -0.65781, -0.75319 0xbfe503480159ded2, 0xbfe8225d803964e5, // -0.65665, -0.75419 0xbfe4f9cc25cca486, 0xbfe82a9c13f545ff, // -0.65549, -0.7552 0xbfe4f04d0e2859aa, 0xbfe832d6eda3a3e0, // -0.65433, -0.75621 0xbfe4e6cabbe3e5e9, 0xbfe83b0e0bff976e, // -0.65317, -0.75721 0xbfe4dd453076b064, 0xbfe843416dc4cce2, // -0.65201, -0.75821 0xbfe4d3bc6d589f80, 0xbfe84b7111af83f9, // -0.65085, -0.75921 0xbfe4ca30740218a3, 0xbfe8539cf67c9029, // -0.64968, -0.76021 0xbfe4c0a145ec0004, 0xbfe85bc51ae958cc, // -0.64851, -0.7612 0xbfe4b70ee48fb869, 0xbfe863e97db3d95a, // -0.64735, -0.7622 0xbfe4ad79516722f0, 0xbfe86c0a1d9aa195, // -0.64618, -0.76319 0xbfe4a3e08dec9ed6, 0xbfe87426f95cd5bd, // -0.645, -0.76418 0xbfe49a449b9b0938, 0xbfe87c400fba2ebf, // -0.64383, -0.76517 0xbfe490a57bedbcdf, 0xbfe884555f72fa6b, // -0.64266, -0.76615 0xbfe48703306091fe, 0xbfe88c66e7481ba1, // -0.64148, -0.76714 0xbfe47d5dba6fde01, 0xbfe89474a5fb0a84, // -0.6403, -0.76812 0xbfe473b51b987347, 0xbfe89c7e9a4dd4ab, // -0.63912, -0.7691 0xbfe46a095557a0f1, 0xbfe8a484c3031d50, // -0.63794, -0.77008 0xbfe4605a692b32a2, 0xbfe8ac871ede1d88, // -0.63676, -0.77106 0xbfe456a858917046, 0xbfe8b485aca2a468, // -0.63558, -0.77204 0xbfe44cf325091dd6, 0xbfe8bc806b151741, // -0.63439, -0.77301 0xbfe4433ad0117b1d, 0xbfe8c47758fa71cb, // -0.63321, -0.77398 0xbfe4397f5b2a4380, 0xbfe8cc6a75184655, // -0.63202, -0.77495 0xbfe42fc0c7d3adbb, 0xbfe8d459be34bdfa, // -0.63083, -0.77592 0xbfe425ff178e6bb1, 0xbfe8dc45331698cc, // -0.62964, -0.77689 0xbfe41c3a4bdbaa26, 0xbfe8e42cd2852e0a, // -0.62845, -0.77785 0xbfe41272663d108c, 0xbfe8ec109b486c49, // -0.62725, -0.77882 0xbfe408a76834c0c0, 0xbfe8f3f08c28d9ac, // -0.62606, -0.77978 0xbfe3fed9534556d4, 0xbfe8fbcca3ef940d, // -0.62486, -0.78074 0xbfe3f50828f1e8d2, 0xbfe903a4e1665133, // -0.62366, -0.78169 0xbfe3eb33eabe0680, 0xbfe90b7943575efe, // -0.62246, -0.78265 0xbfe3e15c9a2db922, 0xbfe91349c88da398, // -0.62126, -0.7836 0xbfe3d78238c58343, 0xbfe91b166fd49da2, // -0.62006, -0.78456 0xbfe3cda4c80a6076, 0xbfe922df37f8646a, // -0.61885, -0.78551 0xbfe3c3c44981c517, 0xbfe92aa41fc5a815, // -0.61765, -0.78646 0xbfe3b9e0beb19e18, 0xbfe932652609b1cf, // -0.61644, -0.7874 0xbfe3affa292050b9, 0xbfe93a22499263fc, // -0.61523, -0.78835 0xbfe3a6108a54ba58, 0xbfe941db892e3a65, // -0.61402, -0.78929 0xbfe39c23e3d63029, 0xbfe94990e3ac4a6c, // -0.61281, -0.79023 0xbfe39234372c7f04, 0xbfe9514257dc4335, // -0.6116, -0.79117 0xbfe3884185dfeb22, 0xbfe958efe48e6dd7, // -0.61038, -0.79211 0xbfe37e4bd1792fe2, 0xbfe960998893ad8c, // -0.60917, -0.79304 0xbfe374531b817f8d, 0xbfe9683f42bd7fe1, // -0.60795, -0.79398 0xbfe36a576582831b, 0xbfe96fe111ddfce0, // -0.60673, -0.79491 0xbfe36058b10659f3, 0xbfe9777ef4c7d742, // -0.60551, -0.79584 0xbfe35656ff9799ae, 0xbfe97f18ea4e5c9e, // -0.60429, -0.79676 0xbfe34c5252c14de1, 0xbfe986aef1457594, // -0.60307, -0.79769 0xbfe3424aac0ef7d6, 0xbfe98e410881a600, // -0.60184, -0.79861 0xbfe338400d0c8e57, 0xbfe995cf2ed80d22, // -0.60062, -0.79954 0xbfe32e3277467d6b, 0xbfe99d59631e65d5, // -0.59939, -0.80046 0xbfe32421ec49a620, 0xbfe9a4dfa42b06b2, // -0.59816, -0.80138 0xbfe31a0e6da35e44, 0xbfe9ac61f0d4e247, // -0.59693, -0.80229 0xbfe30ff7fce17035, 0xbfe9b3e047f38741, // -0.5957, -0.80321 0xbfe305de9b921a94, 0xbfe9bb5aa85f2098, // -0.59447, -0.80412 0xbfe2fbc24b441015, 0xbfe9c2d110f075c3, // -0.59323, -0.80503 0xbfe2f1a30d86773a, 0xbfe9ca438080eadb, // -0.592, -0.80594 0xbfe2e780e3e8ea16, 0xbfe9d1b1f5ea80d6, // -0.59076, -0.80685 0xbfe2dd5bcffb7616, 0xbfe9d91c7007d5a6, // -0.58952, -0.80775 0xbfe2d333d34e9bb7, 0xbfe9e082edb42472, // -0.58828, -0.80866 0xbfe2c908ef734e57, 0xbfe9e7e56dcb45bd, // -0.58704, -0.80956 0xbfe2bedb25faf3ea, 0xbfe9ef43ef29af94, // -0.5858, -0.81046 0xbfe2b4aa787764c4, 0xbfe9f69e70ac75bc, // -0.58455, -0.81135 0xbfe2aa76e87aeb58, 0xbfe9fdf4f13149de, // -0.58331, -0.81225 0xbfe2a040779843fb, 0xbfea05476f967bb5, // -0.58206, -0.81314 0xbfe2960727629ca8, 0xbfea0c95eabaf937, // -0.58081, -0.81404 0xbfe28bcaf96d94ba, 0xbfea13e0617e4ec7, // -0.57956, -0.81493 0xbfe2818bef4d3cba, 0xbfea1b26d2c0a75e, // -0.57831, -0.81581 0xbfe2774a0a961612, 0xbfea22693d62ccb9, // -0.57706, -0.8167 0xbfe26d054cdd12df, 0xbfea29a7a0462782, // -0.57581, -0.81758 0xbfe262bdb7b795a2, 0xbfea30e1fa4cbf81, // -0.57455, -0.81847 0xbfe258734cbb7110, 0xbfea38184a593bc6, // -0.5733, -0.81935 0xbfe24e260d7ee7c9, 0xbfea3f4a8f4ee2d2, // -0.57204, -0.82023 0xbfe243d5fb98ac1f, 0xbfea4678c8119ac8, // -0.57078, -0.8211 0xbfe23983189fdfd5, 0xbfea4da2f385e997, // -0.56952, -0.82198 0xbfe22f2d662c13e1, 0xbfea54c91090f524, // -0.56826, -0.82285 0xbfe224d4e5d5482e, 0xbfea5beb1e188375, // -0.567, -0.82372 0xbfe21a799933eb58, 0xbfea63091b02fae2, // -0.56573, -0.82459 0xbfe2101b81e0da78, 0xbfea6a230637623b, // -0.56447, -0.82546 0xbfe205baa17560d6, 0xbfea7138de9d60f5, // -0.5632, -0.82632 0xbfe1fb56f98b37b8, 0xbfea784aa31d3f55, // -0.56193, -0.82718 0xbfe1f0f08bbc861b, 0xbfea7f58529fe69d, // -0.56066, -0.82805 0xbfe1e68759a3e074, 0xbfea8661ec0ee133, // -0.55939, -0.8289 0xbfe1dc1b64dc4872, 0xbfea8d676e545ad2, // -0.55812, -0.82976 0xbfe1d1acaf012cc2, 0xbfea9468d85b20ae, // -0.55685, -0.83062 0xbfe1c73b39ae68c8, 0xbfea9b66290ea1a3, // -0.55557, -0.83147 0xbfe1bcc706804467, 0xbfeaa25f5f5aee60, // -0.55429, -0.83232 0xbfe1b250171373be, 0xbfeaa9547a2cb98e, // -0.55302, -0.83317 0xbfe1a7d66d0516e6, 0xbfeab045787157ff, // -0.55174, -0.83402 0xbfe19d5a09f2b9b8, 0xbfeab7325916c0d4, // -0.55046, -0.83486 0xbfe192daef7a5386, 0xbfeabe1b1b0b8dac, // -0.54918, -0.83571 0xbfe188591f3a46e5, 0xbfeac4ffbd3efac8, // -0.54789, -0.83655 0xbfe17dd49ad16161, 0xbfeacbe03ea0e73b, // -0.54661, -0.83739 0xbfe1734d63dedb49, 0xbfead2bc9e21d511, // -0.54532, -0.83822 0xbfe168c37c025764, 0xbfead994dab2e979, // -0.54404, -0.83906 0xbfe15e36e4dbe2bc, 0xbfeae068f345ecef, // -0.54275, -0.83989 0xbfe153a7a00bf453, 0xbfeae738e6cd4b67, // -0.54146, -0.84073 0xbfe14915af336ceb, 0xbfeaee04b43c1474, // -0.54017, -0.84155 0xbfe13e8113f396c1, 0xbfeaf4cc5a85fb73, // -0.53888, -0.84238 0xbfe133e9cfee254e, 0xbfeafb8fd89f57b6, // -0.53759, -0.84321 0xbfe1294fe4c5350a, 0xbfeb024f2d7d24a9, // -0.53629, -0.84403 0xbfe11eb3541b4b22, 0xbfeb090a58150200, // -0.535, -0.84485 0xbfe114141f935545, 0xbfeb0fc1575d33db, // -0.5337, -0.84567 0xbfe1097248d0a956, 0xbfeb16742a4ca2f5, // -0.5324, -0.84649 0xbfe0fecdd1770537, 0xbfeb1d22cfdadcc6, // -0.5311, -0.84731 0xbfe0f426bb2a8e7d, 0xbfeb23cd470013b4, // -0.5298, -0.84812 0xbfe0e97d078fd23b, 0xbfeb2a738eb51f33, // -0.5285, -0.84893 0xbfe0ded0b84bc4b5, 0xbfeb3115a5f37bf4, // -0.5272, -0.84974 0xbfe0d421cf03c12b, 0xbfeb37b38bb54c09, // -0.5259, -0.85055 0xbfe0c9704d5d898f, 0xbfeb3e4d3ef55712, // -0.52459, -0.85136 0xbfe0bebc34ff4646, 0xbfeb44e2beaf0a61, // -0.52328, -0.85216 0xbfe0b405878f85ec, 0xbfeb4b7409de7925, // -0.52198, -0.85296 0xbfe0a94c46b53d0b, 0xbfeb52011f805c92, // -0.52067, -0.85376 0xbfe09e907417c5e1, 0xbfeb5889fe921405, // -0.51936, -0.85456 0xbfe093d2115ee018, 0xbfeb5f0ea611a532, // -0.51804, -0.85535 0xbfe089112032b08c, 0xbfeb658f14fdbc47, // -0.51673, -0.85615 0xbfe07e4da23bc102, 0xbfeb6c0b4a55ac17, // -0.51542, -0.85694 0xbfe073879922ffed, 0xbfeb728345196e3e, // -0.5141, -0.85773 0xbfe068bf0691c028, 0xbfeb78f70449a34b, // -0.51279, -0.85852 0xbfe05df3ec31b8b6, 0xbfeb7f6686e792ea, // -0.51147, -0.8593 0xbfe053264bad0483, 0xbfeb85d1cbf52c02, // -0.51015, -0.86009 0xbfe0485626ae221a, 0xbfeb8c38d27504e9, // -0.50883, -0.86087 0xbfe03d837edff370, 0xbfeb929b996a5b7f, // -0.50751, -0.86165 0xbfe032ae55edbd95, 0xbfeb98fa1fd9155e, // -0.50619, -0.86242 0xbfe027d6ad83287e, 0xbfeb9f5464c5bffc, // -0.50486, -0.8632 0xbfe01cfc874c3eb7, 0xbfeba5aa673590d2, // -0.50354, -0.86397 0xbfe0121fe4f56d2c, 0xbfebabfc262e6586, // -0.50221, -0.86474 0xbfe00740c82b82e0, 0xbfebb249a0b6c40d, // -0.50089, -0.86551 0xbfdff8be6537615e, 0xbfebb892d5d5dad5, // -0.49956, -0.86628 0xbfdfe2f64be7120f, 0xbfebbed7c49380ea, // -0.49823, -0.86705 0xbfdfcd2947c1ff57, 0xbfebc5186bf8361d, // -0.4969, -0.86781 0xbfdfb7575c24d2de, 0xbfebcb54cb0d2327, // -0.49557, -0.86857 0xbfdfa1808c6cf7e0, 0xbfebd18ce0dc19d6, // -0.49423, -0.86933 0xbfdf8ba4dbf89aba, 0xbfebd7c0ac6f952a, // -0.4929, -0.87009 0xbfdf75c44e26a852, 0xbfebddf02cd2b983, // -0.49156, -0.87084 0xbfdf5fdee656cda3, 0xbfebe41b611154c1, // -0.49023, -0.8716 0xbfdf49f4a7e97729, 0xbfebea424837de6d, // -0.48889, -0.87235 0xbfdf3405963fd068, 0xbfebf064e15377dd, // -0.48755, -0.87309 0xbfdf1e11b4bbc35c, 0xbfebf6832b71ec5b, // -0.48621, -0.87384 0xbfdf081906bff7fd, 0xbfebfc9d25a1b147, // -0.48487, -0.87459 0xbfdef21b8fafd3b5, 0xbfec02b2cef1e641, // -0.48353, -0.87533 0xbfdedc1952ef78d5, 0xbfec08c426725549, // -0.48218, -0.87607 0xbfdec61253e3c61b, 0xbfec0ed12b3372e9, // -0.48084, -0.87681 0xbfdeb00695f25620, 0xbfec14d9dc465e58, // -0.47949, -0.87755 0xbfde99f61c817eda, 0xbfec1ade38bce19b, // -0.47815, -0.87828 0xbfde83e0eaf85113, 0xbfec20de3fa971b0, // -0.4768, -0.87901 0xbfde6dc704be97e2, 0xbfec26d9f01f2eaf, // -0.47545, -0.87974 0xbfde57a86d3cd824, 0xbfec2cd14931e3f1, // -0.4741, -0.88047 0xbfde418527dc4ffa, 0xbfec32c449f60831, // -0.47275, -0.8812 0xbfde2b5d3806f63b, 0xbfec38b2f180bdb1, // -0.4714, -0.88192 0xbfde1530a12779f4, 0xbfec3e9d3ee7d262, // -0.47004, -0.88264 0xbfddfeff66a941de, 0xbfec44833141c004, // -0.46869, -0.88336 0xbfdde8c98bf86bd6, 0xbfec4a64c7a5ac4c, // -0.46733, -0.88408 0xbfddd28f1481cc58, 0xbfec5042012b6907, // -0.46598, -0.8848 0xbfddbc5003b2edf8, 0xbfec561adceb743e, // -0.46462, -0.88551 0xbfdda60c5cfa10d8, 0xbfec5bef59fef85a, // -0.46326, -0.88622 0xbfdd8fc423c62a25, 0xbfec61bf777fcc48, // -0.4619, -0.88693 0xbfdd79775b86e389, 0xbfec678b3488739b, // -0.46054, -0.88764 0xbfdd632607ac9aa9, 0xbfec6d5290341eb2, // -0.45918, -0.88835 0xbfdd4cd02ba8609c, 0xbfec7315899eaad7, // -0.45781, -0.88905 0xbfdd3675caebf962, 0xbfec78d41fe4a267, // -0.45645, -0.88975 0xbfdd2016e8e9db5b, 0xbfec7e8e52233cf3, // -0.45508, -0.89045 0xbfdd09b389152ec1, 0xbfec84441f785f61, // -0.45372, -0.89115 0xbfdcf34baee1cd21, 0xbfec89f587029c13, // -0.45235, -0.89184 0xbfdcdcdf5dc440ce, 0xbfec8fa287e13305, // -0.45098, -0.89253 0xbfdcc66e9931c45d, 0xbfec954b213411f5, // -0.44961, -0.89322 0xbfdcaff964a0421d, 0xbfec9aef521bd480, // -0.44824, -0.89391 0xbfdc997fc3865388, 0xbfeca08f19b9c449, // -0.44687, -0.8946 0xbfdc8301b95b40c2, 0xbfeca62a772fd919, // -0.4455, -0.89528 0xbfdc6c7f4997000a, 0xbfecabc169a0b901, // -0.44412, -0.89597 0xbfdc55f877b23537, 0xbfecb153f02fb87d, // -0.44275, -0.89665 0xbfdc3f6d47263129, 0xbfecb6e20a00da99, // -0.44137, -0.89732 0xbfdc28ddbb6cf145, 0xbfecbc6bb638d10b, // -0.43999, -0.898 0xbfdc1249d8011ee7, 0xbfecc1f0f3fcfc5c, // -0.43862, -0.89867 0xbfdbfbb1a05e0edc, 0xbfecc771c2736c09, // -0.43724, -0.89935 0xbfdbe51517ffc0d9, 0xbfecccee20c2de9f, // -0.43586, -0.90002 0xbfdbce744262deee, 0xbfecd2660e12c1e6, // -0.43448, -0.90068 0xbfdbb7cf2304bd01, 0xbfecd7d9898b32f6, // -0.43309, -0.90135 0xbfdba125bd63583e, 0xbfecdd489254fe65, // -0.43171, -0.90201 0xbfdb8a7814fd5693, 0xbfece2b32799a060, // -0.43033, -0.90267 0xbfdb73c62d520624, 0xbfece819488344ce, // -0.42894, -0.90333 0xbfdb5d1009e15cc0, 0xbfeced7af43cc773, // -0.42756, -0.90399 0xbfdb4655ae2bf757, 0xbfecf2d829f1b40e, // -0.42617, -0.90464 0xbfdb2f971db31972, 0xbfecf830e8ce467b, // -0.42478, -0.9053 0xbfdb18d45bf8aca6, 0xbfecfd852fff6ad4, // -0.42339, -0.90595 0xbfdb020d6c7f4009, 0xbfed02d4feb2bd92, // -0.422, -0.9066 0xbfdaeb4252ca07ab, 0xbfed082054168bac, // -0.42061, -0.90724 0xbfdad473125cdc08, 0xbfed0d672f59d2b9, // -0.41922, -0.90789 0xbfdabd9faebc3980, 0xbfed12a98fac410c, // -0.41782, -0.90853 0xbfdaa6c82b6d3fc9, 0xbfed17e7743e35dc, // -0.41643, -0.90917 0xbfda8fec8bf5b166, 0xbfed1d20dc40c15c, // -0.41503, -0.90981 0xbfda790cd3dbf31a, 0xbfed2255c6e5a4e1, // -0.41364, -0.91044 0xbfda622906a70b63, 0xbfed2786335f52fc, // -0.41224, -0.91107 0xbfda4b4127dea1e4, 0xbfed2cb220e0ef9f, // -0.41084, -0.91171 0xbfda34553b0afee5, 0xbfed31d98e9e503a, // -0.40944, -0.91234 0xbfda1d6543b50ac0, 0xbfed36fc7bcbfbdc, // -0.40804, -0.91296 0xbfda067145664d57, 0xbfed3c1ae79f2b4e, // -0.40664, -0.91359 0xbfd9ef7943a8ed8a, 0xbfed4134d14dc93a, // -0.40524, -0.91421 0xbfd9d87d4207b0ab, 0xbfed464a380e7242, // -0.40384, -0.91483 0xbfd9c17d440df9f2, 0xbfed4b5b1b187524, // -0.40243, -0.91545 0xbfd9aa794d47c9ee, 0xbfed506779a3d2d9, // -0.40103, -0.91606 0xbfd993716141bdfe, 0xbfed556f52e93eb1, // -0.39962, -0.91668 0xbfd97c6583890fc2, 0xbfed5a72a6221e73, // -0.39822, -0.91729 0xbfd96555b7ab948f, 0xbfed5f7172888a7f, // -0.39681, -0.9179 0xbfd94e420137bce3, 0xbfed646bb7574de5, // -0.3954, -0.91851 0xbfd9372a63bc93d7, 0xbfed696173c9e68b, // -0.39399, -0.91911 0xbfd9200ee2c9be97, 0xbfed6e52a71c8547, // -0.39258, -0.91972 0xbfd908ef81ef7bd1, 0xbfed733f508c0dff, // -0.39117, -0.92032 0xbfd8f1cc44bea329, 0xbfed78276f5617c6, // -0.38976, -0.92092 0xbfd8daa52ec8a4af, 0xbfed7d0b02b8ecf9, // -0.38835, -0.92151 0xbfd8c37a439f884f, 0xbfed81ea09f38b63, // -0.38693, -0.92211 0xbfd8ac4b86d5ed44, 0xbfed86c48445a450, // -0.38552, -0.9227 0xbfd89518fbff098e, 0xbfed8b9a70ef9cb4, // -0.3841, -0.92329 0xbfd87de2a6aea963, 0xbfed906bcf328d46, // -0.38268, -0.92388 0xbfd866a88a792ea0, 0xbfed95389e50429b, // -0.38127, -0.92447 0xbfd84f6aaaf3903f, 0xbfed9a00dd8b3d46, // -0.37985, -0.92505 0xbfd838290bb359c8, 0xbfed9ec48c26b1f3, // -0.37843, -0.92563 0xbfd820e3b04eaac4, 0xbfeda383a9668988, // -0.37701, -0.92621 0xbfd8099a9c5c362d, 0xbfeda83e348f613b, // -0.37559, -0.92679 0xbfd7f24dd37341e3, 0xbfedacf42ce68ab9, // -0.37416, -0.92736 0xbfd7dafd592ba621, 0xbfedb1a591b20c38, // -0.37274, -0.92794 0xbfd7c3a9311dcce7, 0xbfedb6526238a09b, // -0.37132, -0.92851 0xbfd7ac515ee2b172, 0xbfedbafa9dc1b78d, // -0.36989, -0.92907 0xbfd794f5e613dfae, 0xbfedbf9e4395759a, // -0.36847, -0.92964 0xbfd77d96ca4b73a6, 0xbfedc43d52fcb453, // -0.36704, -0.93021 0xbfd766340f2418f6, 0xbfedc8d7cb410260, // -0.36561, -0.93077 0xbfd74ecdb8390a3e, 0xbfedcd6dabaca3a5, // -0.36418, -0.93133 0xbfd73763c9261092, 0xbfedd1fef38a915a, // -0.36276, -0.93188 0xbfd71ff6458782ec, 0xbfedd68ba2267a25, // -0.36133, -0.93244 0xbfd7088530fa459e, 0xbfeddb13b6ccc23d, // -0.3599, -0.93299 0xbfd6f1108f1bc9c5, 0xbfeddf9730ca837b, // -0.35846, -0.93354 0xbfd6d998638a0cb5, 0xbfede4160f6d8d81, // -0.35703, -0.93409 0xbfd6c21cb1e39771, 0xbfede890520465ce, // -0.3556, -0.93464 0xbfd6aa9d7dc77e16, 0xbfeded05f7de47da, // -0.35416, -0.93518 0xbfd6931acad55f51, 0xbfedf177004b2534, // -0.35273, -0.93573 0xbfd67b949cad63ca, 0xbfedf5e36a9ba59c, // -0.35129, -0.93627 0xbfd6640af6f03d9e, 0xbfedfa4b3621271d, // -0.34986, -0.9368 0xbfd64c7ddd3f27c6, 0xbfedfeae622dbe2b, // -0.34842, -0.93734 0xbfd634ed533be58e, 0xbfee030cee1435b8, // -0.34698, -0.93787 0xbfd61d595c88c203, 0xbfee0766d9280f54, // -0.34554, -0.9384 0xbfd605c1fcc88f63, 0xbfee0bbc22bd8349, // -0.3441, -0.93893 0xbfd5ee27379ea693, 0xbfee100cca2980ac, // -0.34266, -0.93946 0xbfd5d68910aee686, 0xbfee1458cec1ad83, // -0.34122, -0.93998 0xbfd5bee78b9db3b6, 0xbfee18a02fdc66d9, // -0.33978, -0.94051 0xbfd5a742ac0ff78d, 0xbfee1ce2ecd0c0d8, // -0.33833, -0.94103 0xbfd58f9a75ab1fdd, 0xbfee212104f686e5, // -0.33689, -0.94154 0xbfd577eeec151e47, 0xbfee255a77a63bb8, // -0.33545, -0.94206 0xbfd5604012f467b4, 0xbfee298f4439197a, // -0.334, -0.94257 0xbfd5488dedeff3be, 0xbfee2dbf6a0911d9, // -0.33255, -0.94308 0xbfd530d880af3c24, 0xbfee31eae870ce25, // -0.33111, -0.94359 0xbfd5191fceda3c35, 0xbfee3611becbaf69, // -0.32966, -0.9441 0xbfd50163dc197047, 0xbfee3a33ec75ce85, // -0.32821, -0.9446 0xbfd4e9a4ac15d520, 0xbfee3e5170cbfc46, // -0.32676, -0.94511 0xbfd4d1e24278e76a, 0xbfee426a4b2bc17e, // -0.32531, -0.94561 0xbfd4ba1ca2eca31c, 0xbfee467e7af35f23, // -0.32386, -0.94611 0xbfd4a253d11b82f3, 0xbfee4a8dff81ce5e, // -0.32241, -0.9466 0xbfd48a87d0b07fd7, 0xbfee4e98d836c0af, // -0.32096, -0.94709 0xbfd472b8a5571054, 0xbfee529f04729ffc, // -0.3195, -0.94759 0xbfd45ae652bb2800, 0xbfee56a083968eb1, // -0.31805, -0.94807 0xbfd44310dc8936f0, 0xbfee5a9d550467d3, // -0.31659, -0.94856 0xbfd42b38466e2928, 0xbfee5e95781ebf1c, // -0.31514, -0.94905 0xbfd4135c94176602, 0xbfee6288ec48e112, // -0.31368, -0.94953 0xbfd3fb7dc932cfa4, 0xbfee6677b0e6d31e, // -0.31222, -0.95001 0xbfd3e39be96ec271, 0xbfee6a61c55d53a7, // -0.31077, -0.95049 0xbfd3cbb6f87a146e, 0xbfee6e472911da27, // -0.30931, -0.95096 0xbfd3b3cefa0414b7, 0xbfee7227db6a9744, // -0.30785, -0.95144 0xbfd39be3f1bc8aef, 0xbfee7603dbce74e9, // -0.30639, -0.95191 0xbfd383f5e353b6aa, 0xbfee79db29a5165a, // -0.30493, -0.95238 0xbfd36c04d27a4edf, 0xbfee7dadc456d850, // -0.30347, -0.95284 0xbfd35410c2e18152, 0xbfee817bab4cd10d, // -0.30201, -0.95331 0xbfd33c19b83af207, 0xbfee8544ddf0d075, // -0.30054, -0.95377 0xbfd3241fb638baaf, 0xbfee89095bad6025, // -0.29908, -0.95423 0xbfd30c22c08d6a13, 0xbfee8cc923edc388, // -0.29762, -0.95469 0xbfd2f422daec0386, 0xbfee9084361df7f3, // -0.29615, -0.95514 0xbfd2dc200907fe51, 0xbfee943a91aab4b4, // -0.29469, -0.95559 0xbfd2c41a4e954520, 0xbfee97ec36016b30, // -0.29322, -0.95605 0xbfd2ac11af483572, 0xbfee9b99229046f8, // -0.29175, -0.95649 0xbfd294062ed59f05, 0xbfee9f4156c62dda, // -0.29028, -0.95694 0xbfd27bf7d0f2c346, 0xbfeea2e4d212c000, // -0.28882, -0.95738 0xbfd263e6995554ba, 0xbfeea68393e65800, // -0.28735, -0.95783 0xbfd24bd28bb37672, 0xbfeeaa1d9bb20af3, // -0.28588, -0.95827 0xbfd233bbabc3bb72, 0xbfeeadb2e8e7a88e, // -0.28441, -0.9587 0xbfd21ba1fd3d2623, 0xbfeeb1437af9bb34, // -0.28294, -0.95914 0xbfd2038583d727bd, 0xbfeeb4cf515b8811, // -0.28146, -0.95957 0xbfd1eb6643499fbb, 0xbfeeb8566b810f2a, // -0.27999, -0.96 0xbfd1d3443f4cdb3d, 0xbfeebbd8c8df0b74, // -0.27852, -0.96043 0xbfd1bb1f7b999480, 0xbfeebf5668eaf2ef, // -0.27705, -0.96086 0xbfd1a2f7fbe8f243, 0xbfeec2cf4b1af6b2, // -0.27557, -0.96128 0xbfd18acdc3f4873a, 0xbfeec6436ee60309, // -0.2741, -0.9617 0xbfd172a0d7765177, 0xbfeec9b2d3c3bf84, // -0.27262, -0.96212 0xbfd15a713a28b9d9, 0xbfeecd1d792c8f10, // -0.27115, -0.96254 0xbfd1423eefc69378, 0xbfeed0835e999009, // -0.26967, -0.96295 0xbfd12a09fc0b1b12, 0xbfeed3e483849c51, // -0.26819, -0.96337 0xbfd111d262b1f677, 0xbfeed740e7684963, // -0.26671, -0.96378 0xbfd0f998277733f7, 0xbfeeda9889bfe86a, // -0.26523, -0.96418 0xbfd0e15b4e1749cd, 0xbfeeddeb6a078651, // -0.26375, -0.96459 0xbfd0c91bda4f158d, 0xbfeee13987bbebdc, // -0.26227, -0.96499 0xbfd0b0d9cfdbdb90, 0xbfeee482e25a9dbc, // -0.26079, -0.96539 0xbfd09895327b465e, 0xbfeee7c77961dc9e, // -0.25931, -0.96579 0xbfd0804e05eb661e, 0xbfeeeb074c50a544, // -0.25783, -0.96619 0xbfd068044deab002, 0xbfeeee425aa6b09a, // -0.25635, -0.96658 0xbfd04fb80e37fdae, 0xbfeef178a3e473c2, // -0.25487, -0.96698 0xbfd037694a928cac, 0xbfeef4aa278b2032, // -0.25338, -0.96737 0xbfd01f1806b9fdd2, 0xbfeef7d6e51ca3c0, // -0.2519, -0.96775 0xbfd006c4466e54af, 0xbfeefafedc1ba8b7, // -0.25041, -0.96814 0xbfcfdcdc1adfedf8, 0xbfeefe220c0b95ec, // -0.24893, -0.96852 0xbfcfac2abeff57ff, 0xbfef014074708ed3, // -0.24744, -0.9689 0xbfcf7b7480bd3801, 0xbfef045a14cf738c, // -0.24596, -0.96928 0xbfcf4ab9679c9f5c, 0xbfef076eecade0fa, // -0.24447, -0.96966 0xbfcf19f97b215f1a, 0xbfef0a7efb9230d7, // -0.24298, -0.97003 0xbfcee934c2d006c7, 0xbfef0d8a410379c5, // -0.24149, -0.9704 0xbfceb86b462de348, 0xbfef1090bc898f5f, // -0.24, -0.97077 0xbfce879d0cc0fdaf, 0xbfef13926dad024e, // -0.23851, -0.97114 0xbfce56ca1e101a1b, 0xbfef168f53f7205d, // -0.23702, -0.9715 0xbfce25f281a2b684, 0xbfef19876ef1f486, // -0.23553, -0.97187 0xbfcdf5163f01099a, 0xbfef1c7abe284708, // -0.23404, -0.97223 0xbfcdc4355db40195, 0xbfef1f6941259d7a, // -0.23255, -0.97258 0xbfcd934fe5454311, 0xbfef2252f7763ada, // -0.23106, -0.97294 0xbfcd6265dd3f27e3, 0xbfef2537e0a71f9f, // -0.22957, -0.97329 0xbfcd31774d2cbdee, 0xbfef2817fc4609ce, // -0.22807, -0.97364 0xbfcd00843c99c5f9, 0xbfef2af349e17507, // -0.22658, -0.97399 0xbfcccf8cb312b286, 0xbfef2dc9c9089a9d, // -0.22508, -0.97434 0xbfcc9e90b824a6a9, 0xbfef309b794b719f, // -0.22359, -0.97468 0xbfcc6d90535d74dc, 0xbfef33685a3aaef0, // -0.22209, -0.97503 0xbfcc3c8b8c4b9dd7, 0xbfef36306b67c556, // -0.2206, -0.97536 0xbfcc0b826a7e4f63, 0xbfef38f3ac64e589, // -0.2191, -0.9757 0xbfcbda74f5856330, 0xbfef3bb21cc4fe47, // -0.2176, -0.97604 0xbfcba96334f15dad, 0xbfef3e6bbc1bbc65, // -0.21611, -0.97637 0xbfcb784d30536cda, 0xbfef412089fd8adc, // -0.21461, -0.9767 0xbfcb4732ef3d6722, 0xbfef43d085ff92dd, // -0.21311, -0.97703 0xbfcb16147941ca2a, 0xbfef467bafb7bbe0, // -0.21161, -0.97735 0xbfcae4f1d5f3b9ab, 0xbfef492206bcabb4, // -0.21011, -0.97768 0xbfcab3cb0ce6fe44, 0xbfef4bc38aa5c694, // -0.20861, -0.978 0xbfca82a025b00451, 0xbfef4e603b0b2f2d, // -0.20711, -0.97832 0xbfca517127e3dabc, 0xbfef50f81785c6b9, // -0.20561, -0.97863 0xbfca203e1b1831da, 0xbfef538b1faf2d07, // -0.20411, -0.97895 0xbfc9ef0706e35a35, 0xbfef56195321c090, // -0.20261, -0.97926 0xbfc9bdcbf2dc4366, 0xbfef58a2b1789e84, // -0.2011, -0.97957 0xbfc98c8ce69a7aec, 0xbfef5b273a4fa2d9, // -0.1996, -0.97988 0xbfc95b49e9b62af9, 0xbfef5da6ed43685d, // -0.1981, -0.98018 0xbfc92a0303c8194f, 0xbfef6021c9f148c2, // -0.19659, -0.98048 0xbfc8f8b83c69a60a, 0xbfef6297cff75cb0, // -0.19509, -0.98079 0xbfc8c7699b34ca7e, 0xbfef6508fef47bd5, // -0.19359, -0.98108 0xbfc8961727c41804, 0xbfef677556883cee, // -0.19208, -0.98138 0xbfc864c0e9b2b6cf, 0xbfef69dcd652f5de, // -0.19057, -0.98167 0xbfc83366e89c64c5, 0xbfef6c3f7df5bbb7, // -0.18907, -0.98196 0xbfc802092c1d744b, 0xbfef6e9d4d1262ca, // -0.18756, -0.98225 0xbfc7d0a7bbd2cb1b, 0xbfef70f6434b7eb7, // -0.18606, -0.98254 0xbfc79f429f59e11d, 0xbfef734a60446279, // -0.18455, -0.98282 0xbfc76dd9de50bf31, 0xbfef7599a3a12077, // -0.18304, -0.98311 0xbfc73c6d8055fe0a, 0xbfef77e40d068a90, // -0.18153, -0.98339 0xbfc70afd8d08c4ff, 0xbfef7a299c1a322a, // -0.18002, -0.98366 0xbfc6d98a0c08c8da, 0xbfef7c6a50826840, // -0.17851, -0.98394 0xbfc6a81304f64ab2, 0xbfef7ea629e63d6e, // -0.177, -0.98421 0xbfc676987f7216b8, 0xbfef80dd27ed8204, // -0.17549, -0.98448 0xbfc6451a831d830d, 0xbfef830f4a40c60c, // -0.17398, -0.98475 0xbfc61399179a6e94, 0xbfef853c9089595e, // -0.17247, -0.98501 0xbfc5e214448b3fc6, 0xbfef8764fa714ba9, // -0.17096, -0.98528 0xbfc5b08c1192e381, 0xbfef898887a36c84, // -0.16945, -0.98554 0xbfc57f008654cbde, 0xbfef8ba737cb4b78, // -0.16794, -0.9858 0xbfc54d71aa74ef02, 0xbfef8dc10a95380d, // -0.16643, -0.98605 0xbfc51bdf8597c5f2, 0xbfef8fd5ffae41db, // -0.16491, -0.98631 0xbfc4ea4a1f624b61, 0xbfef91e616c43891, // -0.1634, -0.98656 0xbfc4b8b17f79fa88, 0xbfef93f14f85ac08, // -0.16189, -0.98681 0xbfc48715ad84cdf5, 0xbfef95f7a9a1ec47, // -0.16037, -0.98706 0xbfc45576b1293e5a, 0xbfef97f924c9099b, // -0.15886, -0.9873 0xbfc423d4920e4166, 0xbfef99f5c0abd496, // -0.15734, -0.98754 0xbfc3f22f57db4893, 0xbfef9bed7cfbde29, // -0.15583, -0.98778 0xbfc3c0870a383ff6, 0xbfef9de0596b77a3, // -0.15431, -0.98802 0xbfc38edbb0cd8d14, 0xbfef9fce55adb2c8, // -0.1528, -0.98826 0xbfc35d2d53440db2, 0xbfefa1b7717661d5, // -0.15128, -0.98849 0xbfc32b7bf94516a7, 0xbfefa39bac7a1791, // -0.14976, -0.98872 0xbfc2f9c7aa7a72af, 0xbfefa57b066e2754, // -0.14825, -0.98895 0xbfc2c8106e8e613a, 0xbfefa7557f08a517, // -0.14673, -0.98918 0xbfc296564d2b953e, 0xbfefa92b1600657c, // -0.14521, -0.9894 0xbfc264994dfd340a, 0xbfefaafbcb0cfddc, // -0.1437, -0.98962 0xbfc232d978aed413, 0xbfefacc79de6c44f, // -0.14218, -0.98984 0xbfc20116d4ec7bce, 0xbfefae8e8e46cfbb, // -0.14066, -0.99006 0xbfc1cf516a62a077, 0xbfefb0509be6f7db, // -0.13914, -0.99027 0xbfc19d8940be24e7, 0xbfefb20dc681d54d, // -0.13762, -0.99049 0xbfc16bbe5fac5865, 0xbfefb3c60dd2c199, // -0.1361, -0.9907 0xbfc139f0cedaf576, 0xbfefb5797195d741, // -0.13458, -0.9909 0xbfc1082095f820b0, 0xbfefb727f187f1c7, // -0.13306, -0.99111 0xbfc0d64dbcb26786, 0xbfefb8d18d66adb7, // -0.13154, -0.99131 0xbfc0a4784ab8bf1d, 0xbfefba7644f068b5, // -0.13002, -0.99151 0xbfc072a047ba831d, 0xbfefbc1617e44186, // -0.1285, -0.99171 0xbfc040c5bb67747e, 0xbfefbdb106021816, // -0.12698, -0.99191 0xbfc00ee8ad6fb85b, 0xbfefbf470f0a8d88, // -0.12545, -0.9921 0xbfbfba124b07ad85, 0xbfefc0d832bf043a, // -0.12393, -0.99229 0xbfbf564e56a9730e, 0xbfefc26470e19fd3, // -0.12241, -0.99248 0xbfbef2858d27561b, 0xbfefc3ebc935454c, // -0.12089, -0.99267 0xbfbe8eb7fde4aa3e, 0xbfefc56e3b7d9af6, // -0.11937, -0.99285 0xbfbe2ae5b8457f77, 0xbfefc6ebc77f0887, // -0.11784, -0.99303 0xbfbdc70ecbae9fc8, 0xbfefc8646cfeb721, // -0.11632, -0.99321 0xbfbd633347858ce4, 0xbfefc9d82bc2915e, // -0.11479, -0.99339 0xbfbcff533b307dc1, 0xbfefcb4703914354, // -0.11327, -0.99356 0xbfbc9b6eb6165c42, 0xbfefccb0f4323aa3, // -0.11175, -0.99374 0xbfbc3785c79ec2d5, 0xbfefce15fd6da67b, // -0.11022, -0.99391 0xbfbbd3987f31fa0e, 0xbfefcf761f0c77a3, // -0.1087, -0.99407 0xbfbb6fa6ec38f64c, 0xbfefd0d158d86087, // -0.10717, -0.99424 0xbfbb0bb11e1d5559, 0xbfefd227aa9bd53b, // -0.10565, -0.9944 0xbfbaa7b724495c04, 0xbfefd37914220b84, // -0.10412, -0.99456 0xbfba43b90e27f3c4, 0xbfefd4c59536fae4, // -0.1026, -0.99472 0xbfb9dfb6eb24a85c, 0xbfefd60d2da75c9e, // -0.10107, -0.99488 0xbfb97bb0caaba56f, 0xbfefd74fdd40abbf, // -0.099544, -0.99503 0xbfb917a6bc29b42c, 0xbfefd88da3d12526, // -0.098017, -0.99518 0xbfb8b398cf0c38e0, 0xbfefd9c68127c78c, // -0.09649, -0.99533 0xbfb84f8712c130a0, 0xbfefdafa7514538c, // -0.094963, -0.99548 0xbfb7eb7196b72ee4, 0xbfefdc297f674ba9, // -0.093436, -0.99563 0xbfb787586a5d5b21, 0xbfefdd539ff1f456, // -0.091909, -0.99577 0xbfb7233b9d236e71, 0xbfefde78d68653fd, // -0.090381, -0.99591 0xbfb6bf1b3e79b129, 0xbfefdf9922f73307, // -0.088854, -0.99604 0xbfb65af75dd0f87b, 0xbfefe0b485181be3, // -0.087326, -0.99618 0xbfb5f6d00a9aa419, 0xbfefe1cafcbd5b09, // -0.085797, -0.99631 0xbfb592a554489bc8, 0xbfefe2dc89bbff08, // -0.084269, -0.99644 0xbfb52e774a4d4d0a, 0xbfefe3e92be9d886, // -0.08274, -0.99657 0xbfb4ca45fc1ba8b6, 0xbfefe4f0e31d7a4a, // -0.081211, -0.9967 0xbfb4661179272096, 0xbfefe5f3af2e3940, // -0.079682, -0.99682 0xbfb401d9d0e3a507, 0xbfefe6f18ff42c84, // -0.078153, -0.99694 0xbfb39d9f12c5a299, 0xbfefe7ea85482d60, // -0.076624, -0.99706 0xbfb339614e41ffa5, 0xbfefe8de8f03d75c, // -0.075094, -0.99718 0xbfb2d52092ce19f6, 0xbfefe9cdad01883a, // -0.073565, -0.99729 0xbfb270dcefdfc45b, 0xbfefeab7df1c6005, // -0.072035, -0.9974 0xbfb20c9674ed444c, 0xbfefeb9d2530410f, // -0.070505, -0.99751 0xbfb1a84d316d4f8a, 0xbfefec7d7f19cffc, // -0.068974, -0.99762 0xbfb1440134d709b2, 0xbfefed58ecb673c4, // -0.067444, -0.99772 0xbfb0dfb28ea201e6, 0xbfefee2f6de455ba, // -0.065913, -0.99783 0xbfb07b614e463064, 0xbfefef0102826191, // -0.064383, -0.99793 0xbfb0170d833bf421, 0xbfefefcdaa704562, // -0.062852, -0.99802 0xbfaf656e79f820e0, 0xbfeff095658e71ad, // -0.061321, -0.99812 0xbfae9cbd15ff5527, 0xbfeff15833be1965, // -0.05979, -0.99821 0xbfadd406f9808ec8, 0xbfeff21614e131ed, // -0.058258, -0.9983 0xbfad0b4c436f91d0, 0xbfeff2cf08da7321, // -0.056727, -0.99839 0xbfac428d12c0d7e3, 0xbfeff3830f8d575c, // -0.055195, -0.99848 0xbfab79c986698b78, 0xbfeff43228de1b77, // -0.053664, -0.99856 0xbfaab101bd5f8317, 0xbfeff4dc54b1bed3, // -0.052132, -0.99864 0xbfa9e835d6993c87, 0xbfeff58192ee0358, // -0.0506, -0.99872 0xbfa91f65f10dd814, 0xbfeff621e3796d7e, // -0.049068, -0.9988 0xbfa856922bb513c1, 0xbfeff6bd463b444d, // -0.047535, -0.99887 0xbfa78dbaa5874685, 0xbfeff753bb1b9164, // -0.046003, -0.99894 0xbfa6c4df7d7d5b84, 0xbfeff7e5420320f9, // -0.044471, -0.99901 0xbfa5fc00d290cd43, 0xbfeff871dadb81df, // -0.042938, -0.99908 0xbfa5331ec3bba0eb, 0xbfeff8f9858f058b, // -0.041406, -0.99914 0xbfa46a396ff86179, 0xbfeff97c4208c014, // -0.039873, -0.9992 0xbfa3a150f6421afc, 0xbfeff9fa10348837, // -0.03834, -0.99926 0xbfa2d865759455cd, 0xbfeffa72effef75d, // -0.036807, -0.99932 0xbfa20f770ceb11c6, 0xbfeffae6e1556998, // -0.035274, -0.99938 0xbfa14685db42c17e, 0xbfeffb55e425fdae, // -0.033741, -0.99943 0xbfa07d91ff984580, 0xbfeffbbff85f9515, // -0.032208, -0.99948 0xbf9f693731d1cf01, 0xbfeffc251df1d3f8, // -0.030675, -0.99953 0xbf9dd7458c64ab39, 0xbfeffc8554cd213a, // -0.029142, -0.99958 0xbf9c454f4ce53b1c, 0xbfeffce09ce2a679, // -0.027608, -0.99962 0xbf9ab354b1504fca, 0xbfeffd36f624500c, // -0.026075, -0.99966 0xbf992155f7a3667e, 0xbfeffd886084cd0d, // -0.024541, -0.9997 0xbf978f535ddc9f03, 0xbfeffdd4dbf78f52, // -0.023008, -0.99974 0xbf95fd4d21fab226, 0xbfeffe1c6870cb77, // -0.021474, -0.99977 0xbf946b4381fce81c, 0xbfeffe5f05e578db, // -0.01994, -0.9998 0xbf92d936bbe30efd, 0xbfeffe9cb44b51a1, // -0.018407, -0.99983 0xbf9147270dad7132, 0xbfeffed57398d2b7, // -0.016873, -0.99986 0xbf8f6a296ab997ca, 0xbfefff0943c53bd1, // -0.015339, -0.99988 0xbf8c45ffe1e48ad9, 0xbfefff3824c88f6f, // -0.013805, -0.9999 0xbf8921d1fcdec784, 0xbfefff62169b92db, // -0.012272, -0.99992 0xbf85fda037ac05e0, 0xbfefff871937ce2f, // -0.010738, -0.99994 0xbf82d96b0e509703, 0xbfefffa72c978c4f, //-0.0092038, -0.99996 0xbf7f6a65f9a2a3c5, 0xbfefffc250b5daef, //-0.0076698, -0.99997 0xbf7921f0fe670071, 0xbfefffd8858e8a92, //-0.0061359, -0.99998 0xbf72d97822f996bc, 0xbfefffe9cb1e2e8d, //-0.0046019, -0.99999 0xbf6921f8becca4ba, 0xbfeffff621621d02, // -0.003068, -1 0xbf5921faaee6472d, 0xbfeffffd88586ee6, // -0.001534, -1 0x0000000000000000, 0xbff0000000000000, // 0, -1 0x3f5921faaee6472d, 0xbfeffffd88586ee6, // 0.001534, -1 0x3f6921f8becca4ba, 0xbfeffff621621d02, // 0.003068, -1 0x3f72d97822f996bc, 0xbfefffe9cb1e2e8d, // 0.0046019, -0.99999 0x3f7921f0fe670071, 0xbfefffd8858e8a92, // 0.0061359, -0.99998 0x3f7f6a65f9a2a3c5, 0xbfefffc250b5daef, // 0.0076698, -0.99997 0x3f82d96b0e509703, 0xbfefffa72c978c4f, // 0.0092038, -0.99996 0x3f85fda037ac05e0, 0xbfefff871937ce2f, // 0.010738, -0.99994 0x3f8921d1fcdec784, 0xbfefff62169b92db, // 0.012272, -0.99992 0x3f8c45ffe1e48ad9, 0xbfefff3824c88f6f, // 0.013805, -0.9999 0x3f8f6a296ab997ca, 0xbfefff0943c53bd1, // 0.015339, -0.99988 0x3f9147270dad7132, 0xbfeffed57398d2b7, // 0.016873, -0.99986 0x3f92d936bbe30efd, 0xbfeffe9cb44b51a1, // 0.018407, -0.99983 0x3f946b4381fce81c, 0xbfeffe5f05e578db, // 0.01994, -0.9998 0x3f95fd4d21fab226, 0xbfeffe1c6870cb77, // 0.021474, -0.99977 0x3f978f535ddc9f03, 0xbfeffdd4dbf78f52, // 0.023008, -0.99974 0x3f992155f7a3667e, 0xbfeffd886084cd0d, // 0.024541, -0.9997 0x3f9ab354b1504fca, 0xbfeffd36f624500c, // 0.026075, -0.99966 0x3f9c454f4ce53b1c, 0xbfeffce09ce2a679, // 0.027608, -0.99962 0x3f9dd7458c64ab39, 0xbfeffc8554cd213a, // 0.029142, -0.99958 0x3f9f693731d1cf01, 0xbfeffc251df1d3f8, // 0.030675, -0.99953 0x3fa07d91ff984580, 0xbfeffbbff85f9515, // 0.032208, -0.99948 0x3fa14685db42c17e, 0xbfeffb55e425fdae, // 0.033741, -0.99943 0x3fa20f770ceb11c6, 0xbfeffae6e1556998, // 0.035274, -0.99938 0x3fa2d865759455cd, 0xbfeffa72effef75d, // 0.036807, -0.99932 0x3fa3a150f6421afc, 0xbfeff9fa10348837, // 0.03834, -0.99926 0x3fa46a396ff86179, 0xbfeff97c4208c014, // 0.039873, -0.9992 0x3fa5331ec3bba0eb, 0xbfeff8f9858f058b, // 0.041406, -0.99914 0x3fa5fc00d290cd43, 0xbfeff871dadb81df, // 0.042938, -0.99908 0x3fa6c4df7d7d5b84, 0xbfeff7e5420320f9, // 0.044471, -0.99901 0x3fa78dbaa5874685, 0xbfeff753bb1b9164, // 0.046003, -0.99894 0x3fa856922bb513c1, 0xbfeff6bd463b444d, // 0.047535, -0.99887 0x3fa91f65f10dd814, 0xbfeff621e3796d7e, // 0.049068, -0.9988 0x3fa9e835d6993c87, 0xbfeff58192ee0358, // 0.0506, -0.99872 0x3faab101bd5f8317, 0xbfeff4dc54b1bed3, // 0.052132, -0.99864 0x3fab79c986698b78, 0xbfeff43228de1b77, // 0.053664, -0.99856 0x3fac428d12c0d7e3, 0xbfeff3830f8d575c, // 0.055195, -0.99848 0x3fad0b4c436f91d0, 0xbfeff2cf08da7321, // 0.056727, -0.99839 0x3fadd406f9808ec8, 0xbfeff21614e131ed, // 0.058258, -0.9983 0x3fae9cbd15ff5527, 0xbfeff15833be1965, // 0.05979, -0.99821 0x3faf656e79f820e0, 0xbfeff095658e71ad, // 0.061321, -0.99812 0x3fb0170d833bf421, 0xbfefefcdaa704562, // 0.062852, -0.99802 0x3fb07b614e463064, 0xbfefef0102826191, // 0.064383, -0.99793 0x3fb0dfb28ea201e6, 0xbfefee2f6de455ba, // 0.065913, -0.99783 0x3fb1440134d709b2, 0xbfefed58ecb673c4, // 0.067444, -0.99772 0x3fb1a84d316d4f8a, 0xbfefec7d7f19cffc, // 0.068974, -0.99762 0x3fb20c9674ed444c, 0xbfefeb9d2530410f, // 0.070505, -0.99751 0x3fb270dcefdfc45b, 0xbfefeab7df1c6005, // 0.072035, -0.9974 0x3fb2d52092ce19f6, 0xbfefe9cdad01883a, // 0.073565, -0.99729 0x3fb339614e41ffa5, 0xbfefe8de8f03d75c, // 0.075094, -0.99718 0x3fb39d9f12c5a299, 0xbfefe7ea85482d60, // 0.076624, -0.99706 0x3fb401d9d0e3a507, 0xbfefe6f18ff42c84, // 0.078153, -0.99694 0x3fb4661179272096, 0xbfefe5f3af2e3940, // 0.079682, -0.99682 0x3fb4ca45fc1ba8b6, 0xbfefe4f0e31d7a4a, // 0.081211, -0.9967 0x3fb52e774a4d4d0a, 0xbfefe3e92be9d886, // 0.08274, -0.99657 0x3fb592a554489bc8, 0xbfefe2dc89bbff08, // 0.084269, -0.99644 0x3fb5f6d00a9aa419, 0xbfefe1cafcbd5b09, // 0.085797, -0.99631 0x3fb65af75dd0f87b, 0xbfefe0b485181be3, // 0.087326, -0.99618 0x3fb6bf1b3e79b129, 0xbfefdf9922f73307, // 0.088854, -0.99604 0x3fb7233b9d236e71, 0xbfefde78d68653fd, // 0.090381, -0.99591 0x3fb787586a5d5b21, 0xbfefdd539ff1f456, // 0.091909, -0.99577 0x3fb7eb7196b72ee4, 0xbfefdc297f674ba9, // 0.093436, -0.99563 0x3fb84f8712c130a0, 0xbfefdafa7514538c, // 0.094963, -0.99548 0x3fb8b398cf0c38e0, 0xbfefd9c68127c78c, // 0.09649, -0.99533 0x3fb917a6bc29b42c, 0xbfefd88da3d12526, // 0.098017, -0.99518 0x3fb97bb0caaba56f, 0xbfefd74fdd40abbf, // 0.099544, -0.99503 0x3fb9dfb6eb24a85c, 0xbfefd60d2da75c9e, // 0.10107, -0.99488 0x3fba43b90e27f3c4, 0xbfefd4c59536fae4, // 0.1026, -0.99472 0x3fbaa7b724495c04, 0xbfefd37914220b84, // 0.10412, -0.99456 0x3fbb0bb11e1d5559, 0xbfefd227aa9bd53b, // 0.10565, -0.9944 0x3fbb6fa6ec38f64c, 0xbfefd0d158d86087, // 0.10717, -0.99424 0x3fbbd3987f31fa0e, 0xbfefcf761f0c77a3, // 0.1087, -0.99407 0x3fbc3785c79ec2d5, 0xbfefce15fd6da67b, // 0.11022, -0.99391 0x3fbc9b6eb6165c42, 0xbfefccb0f4323aa3, // 0.11175, -0.99374 0x3fbcff533b307dc1, 0xbfefcb4703914354, // 0.11327, -0.99356 0x3fbd633347858ce4, 0xbfefc9d82bc2915e, // 0.11479, -0.99339 0x3fbdc70ecbae9fc8, 0xbfefc8646cfeb721, // 0.11632, -0.99321 0x3fbe2ae5b8457f77, 0xbfefc6ebc77f0887, // 0.11784, -0.99303 0x3fbe8eb7fde4aa3e, 0xbfefc56e3b7d9af6, // 0.11937, -0.99285 0x3fbef2858d27561b, 0xbfefc3ebc935454c, // 0.12089, -0.99267 0x3fbf564e56a9730e, 0xbfefc26470e19fd3, // 0.12241, -0.99248 0x3fbfba124b07ad85, 0xbfefc0d832bf043a, // 0.12393, -0.99229 0x3fc00ee8ad6fb85b, 0xbfefbf470f0a8d88, // 0.12545, -0.9921 0x3fc040c5bb67747e, 0xbfefbdb106021816, // 0.12698, -0.99191 0x3fc072a047ba831d, 0xbfefbc1617e44186, // 0.1285, -0.99171 0x3fc0a4784ab8bf1d, 0xbfefba7644f068b5, // 0.13002, -0.99151 0x3fc0d64dbcb26786, 0xbfefb8d18d66adb7, // 0.13154, -0.99131 0x3fc1082095f820b0, 0xbfefb727f187f1c7, // 0.13306, -0.99111 0x3fc139f0cedaf576, 0xbfefb5797195d741, // 0.13458, -0.9909 0x3fc16bbe5fac5865, 0xbfefb3c60dd2c199, // 0.1361, -0.9907 0x3fc19d8940be24e7, 0xbfefb20dc681d54d, // 0.13762, -0.99049 0x3fc1cf516a62a077, 0xbfefb0509be6f7db, // 0.13914, -0.99027 0x3fc20116d4ec7bce, 0xbfefae8e8e46cfbb, // 0.14066, -0.99006 0x3fc232d978aed413, 0xbfefacc79de6c44f, // 0.14218, -0.98984 0x3fc264994dfd340a, 0xbfefaafbcb0cfddc, // 0.1437, -0.98962 0x3fc296564d2b953e, 0xbfefa92b1600657c, // 0.14521, -0.9894 0x3fc2c8106e8e613a, 0xbfefa7557f08a517, // 0.14673, -0.98918 0x3fc2f9c7aa7a72af, 0xbfefa57b066e2754, // 0.14825, -0.98895 0x3fc32b7bf94516a7, 0xbfefa39bac7a1791, // 0.14976, -0.98872 0x3fc35d2d53440db2, 0xbfefa1b7717661d5, // 0.15128, -0.98849 0x3fc38edbb0cd8d14, 0xbfef9fce55adb2c8, // 0.1528, -0.98826 0x3fc3c0870a383ff6, 0xbfef9de0596b77a3, // 0.15431, -0.98802 0x3fc3f22f57db4893, 0xbfef9bed7cfbde29, // 0.15583, -0.98778 0x3fc423d4920e4166, 0xbfef99f5c0abd496, // 0.15734, -0.98754 0x3fc45576b1293e5a, 0xbfef97f924c9099b, // 0.15886, -0.9873 0x3fc48715ad84cdf5, 0xbfef95f7a9a1ec47, // 0.16037, -0.98706 0x3fc4b8b17f79fa88, 0xbfef93f14f85ac08, // 0.16189, -0.98681 0x3fc4ea4a1f624b61, 0xbfef91e616c43891, // 0.1634, -0.98656 0x3fc51bdf8597c5f2, 0xbfef8fd5ffae41db, // 0.16491, -0.98631 0x3fc54d71aa74ef02, 0xbfef8dc10a95380d, // 0.16643, -0.98605 0x3fc57f008654cbde, 0xbfef8ba737cb4b78, // 0.16794, -0.9858 0x3fc5b08c1192e381, 0xbfef898887a36c84, // 0.16945, -0.98554 0x3fc5e214448b3fc6, 0xbfef8764fa714ba9, // 0.17096, -0.98528 0x3fc61399179a6e94, 0xbfef853c9089595e, // 0.17247, -0.98501 0x3fc6451a831d830d, 0xbfef830f4a40c60c, // 0.17398, -0.98475 0x3fc676987f7216b8, 0xbfef80dd27ed8204, // 0.17549, -0.98448 0x3fc6a81304f64ab2, 0xbfef7ea629e63d6e, // 0.177, -0.98421 0x3fc6d98a0c08c8da, 0xbfef7c6a50826840, // 0.17851, -0.98394 0x3fc70afd8d08c4ff, 0xbfef7a299c1a322a, // 0.18002, -0.98366 0x3fc73c6d8055fe0a, 0xbfef77e40d068a90, // 0.18153, -0.98339 0x3fc76dd9de50bf31, 0xbfef7599a3a12077, // 0.18304, -0.98311 0x3fc79f429f59e11d, 0xbfef734a60446279, // 0.18455, -0.98282 0x3fc7d0a7bbd2cb1b, 0xbfef70f6434b7eb7, // 0.18606, -0.98254 0x3fc802092c1d744b, 0xbfef6e9d4d1262ca, // 0.18756, -0.98225 0x3fc83366e89c64c5, 0xbfef6c3f7df5bbb7, // 0.18907, -0.98196 0x3fc864c0e9b2b6cf, 0xbfef69dcd652f5de, // 0.19057, -0.98167 0x3fc8961727c41804, 0xbfef677556883cee, // 0.19208, -0.98138 0x3fc8c7699b34ca7e, 0xbfef6508fef47bd5, // 0.19359, -0.98108 0x3fc8f8b83c69a60a, 0xbfef6297cff75cb0, // 0.19509, -0.98079 0x3fc92a0303c8194f, 0xbfef6021c9f148c2, // 0.19659, -0.98048 0x3fc95b49e9b62af9, 0xbfef5da6ed43685d, // 0.1981, -0.98018 0x3fc98c8ce69a7aec, 0xbfef5b273a4fa2d9, // 0.1996, -0.97988 0x3fc9bdcbf2dc4366, 0xbfef58a2b1789e84, // 0.2011, -0.97957 0x3fc9ef0706e35a35, 0xbfef56195321c090, // 0.20261, -0.97926 0x3fca203e1b1831da, 0xbfef538b1faf2d07, // 0.20411, -0.97895 0x3fca517127e3dabc, 0xbfef50f81785c6b9, // 0.20561, -0.97863 0x3fca82a025b00451, 0xbfef4e603b0b2f2d, // 0.20711, -0.97832 0x3fcab3cb0ce6fe44, 0xbfef4bc38aa5c694, // 0.20861, -0.978 0x3fcae4f1d5f3b9ab, 0xbfef492206bcabb4, // 0.21011, -0.97768 0x3fcb16147941ca2a, 0xbfef467bafb7bbe0, // 0.21161, -0.97735 0x3fcb4732ef3d6722, 0xbfef43d085ff92dd, // 0.21311, -0.97703 0x3fcb784d30536cda, 0xbfef412089fd8adc, // 0.21461, -0.9767 0x3fcba96334f15dad, 0xbfef3e6bbc1bbc65, // 0.21611, -0.97637 0x3fcbda74f5856330, 0xbfef3bb21cc4fe47, // 0.2176, -0.97604 0x3fcc0b826a7e4f63, 0xbfef38f3ac64e589, // 0.2191, -0.9757 0x3fcc3c8b8c4b9dd7, 0xbfef36306b67c556, // 0.2206, -0.97536 0x3fcc6d90535d74dc, 0xbfef33685a3aaef0, // 0.22209, -0.97503 0x3fcc9e90b824a6a9, 0xbfef309b794b719f, // 0.22359, -0.97468 0x3fcccf8cb312b286, 0xbfef2dc9c9089a9d, // 0.22508, -0.97434 0x3fcd00843c99c5f9, 0xbfef2af349e17507, // 0.22658, -0.97399 0x3fcd31774d2cbdee, 0xbfef2817fc4609ce, // 0.22807, -0.97364 0x3fcd6265dd3f27e3, 0xbfef2537e0a71f9f, // 0.22957, -0.97329 0x3fcd934fe5454311, 0xbfef2252f7763ada, // 0.23106, -0.97294 0x3fcdc4355db40195, 0xbfef1f6941259d7a, // 0.23255, -0.97258 0x3fcdf5163f01099a, 0xbfef1c7abe284708, // 0.23404, -0.97223 0x3fce25f281a2b684, 0xbfef19876ef1f486, // 0.23553, -0.97187 0x3fce56ca1e101a1b, 0xbfef168f53f7205d, // 0.23702, -0.9715 0x3fce879d0cc0fdaf, 0xbfef13926dad024e, // 0.23851, -0.97114 0x3fceb86b462de348, 0xbfef1090bc898f5f, // 0.24, -0.97077 0x3fcee934c2d006c7, 0xbfef0d8a410379c5, // 0.24149, -0.9704 0x3fcf19f97b215f1a, 0xbfef0a7efb9230d7, // 0.24298, -0.97003 0x3fcf4ab9679c9f5c, 0xbfef076eecade0fa, // 0.24447, -0.96966 0x3fcf7b7480bd3801, 0xbfef045a14cf738c, // 0.24596, -0.96928 0x3fcfac2abeff57ff, 0xbfef014074708ed3, // 0.24744, -0.9689 0x3fcfdcdc1adfedf8, 0xbfeefe220c0b95ec, // 0.24893, -0.96852 0x3fd006c4466e54af, 0xbfeefafedc1ba8b7, // 0.25041, -0.96814 0x3fd01f1806b9fdd2, 0xbfeef7d6e51ca3c0, // 0.2519, -0.96775 0x3fd037694a928cac, 0xbfeef4aa278b2032, // 0.25338, -0.96737 0x3fd04fb80e37fdae, 0xbfeef178a3e473c2, // 0.25487, -0.96698 0x3fd068044deab002, 0xbfeeee425aa6b09a, // 0.25635, -0.96658 0x3fd0804e05eb661e, 0xbfeeeb074c50a544, // 0.25783, -0.96619 0x3fd09895327b465e, 0xbfeee7c77961dc9e, // 0.25931, -0.96579 0x3fd0b0d9cfdbdb90, 0xbfeee482e25a9dbc, // 0.26079, -0.96539 0x3fd0c91bda4f158d, 0xbfeee13987bbebdc, // 0.26227, -0.96499 0x3fd0e15b4e1749cd, 0xbfeeddeb6a078651, // 0.26375, -0.96459 0x3fd0f998277733f7, 0xbfeeda9889bfe86a, // 0.26523, -0.96418 0x3fd111d262b1f677, 0xbfeed740e7684963, // 0.26671, -0.96378 0x3fd12a09fc0b1b12, 0xbfeed3e483849c51, // 0.26819, -0.96337 0x3fd1423eefc69378, 0xbfeed0835e999009, // 0.26967, -0.96295 0x3fd15a713a28b9d9, 0xbfeecd1d792c8f10, // 0.27115, -0.96254 0x3fd172a0d7765177, 0xbfeec9b2d3c3bf84, // 0.27262, -0.96212 0x3fd18acdc3f4873a, 0xbfeec6436ee60309, // 0.2741, -0.9617 0x3fd1a2f7fbe8f243, 0xbfeec2cf4b1af6b2, // 0.27557, -0.96128 0x3fd1bb1f7b999480, 0xbfeebf5668eaf2ef, // 0.27705, -0.96086 0x3fd1d3443f4cdb3d, 0xbfeebbd8c8df0b74, // 0.27852, -0.96043 0x3fd1eb6643499fbb, 0xbfeeb8566b810f2a, // 0.27999, -0.96 0x3fd2038583d727bd, 0xbfeeb4cf515b8811, // 0.28146, -0.95957 0x3fd21ba1fd3d2623, 0xbfeeb1437af9bb34, // 0.28294, -0.95914 0x3fd233bbabc3bb72, 0xbfeeadb2e8e7a88e, // 0.28441, -0.9587 0x3fd24bd28bb37672, 0xbfeeaa1d9bb20af3, // 0.28588, -0.95827 0x3fd263e6995554ba, 0xbfeea68393e65800, // 0.28735, -0.95783 0x3fd27bf7d0f2c346, 0xbfeea2e4d212c000, // 0.28882, -0.95738 0x3fd294062ed59f05, 0xbfee9f4156c62dda, // 0.29028, -0.95694 0x3fd2ac11af483572, 0xbfee9b99229046f8, // 0.29175, -0.95649 0x3fd2c41a4e954520, 0xbfee97ec36016b30, // 0.29322, -0.95605 0x3fd2dc200907fe51, 0xbfee943a91aab4b4, // 0.29469, -0.95559 0x3fd2f422daec0386, 0xbfee9084361df7f3, // 0.29615, -0.95514 0x3fd30c22c08d6a13, 0xbfee8cc923edc388, // 0.29762, -0.95469 0x3fd3241fb638baaf, 0xbfee89095bad6025, // 0.29908, -0.95423 0x3fd33c19b83af207, 0xbfee8544ddf0d075, // 0.30054, -0.95377 0x3fd35410c2e18152, 0xbfee817bab4cd10d, // 0.30201, -0.95331 0x3fd36c04d27a4edf, 0xbfee7dadc456d850, // 0.30347, -0.95284 0x3fd383f5e353b6aa, 0xbfee79db29a5165a, // 0.30493, -0.95238 0x3fd39be3f1bc8aef, 0xbfee7603dbce74e9, // 0.30639, -0.95191 0x3fd3b3cefa0414b7, 0xbfee7227db6a9744, // 0.30785, -0.95144 0x3fd3cbb6f87a146e, 0xbfee6e472911da27, // 0.30931, -0.95096 0x3fd3e39be96ec271, 0xbfee6a61c55d53a7, // 0.31077, -0.95049 0x3fd3fb7dc932cfa4, 0xbfee6677b0e6d31e, // 0.31222, -0.95001 0x3fd4135c94176602, 0xbfee6288ec48e112, // 0.31368, -0.94953 0x3fd42b38466e2928, 0xbfee5e95781ebf1c, // 0.31514, -0.94905 0x3fd44310dc8936f0, 0xbfee5a9d550467d3, // 0.31659, -0.94856 0x3fd45ae652bb2800, 0xbfee56a083968eb1, // 0.31805, -0.94807 0x3fd472b8a5571054, 0xbfee529f04729ffc, // 0.3195, -0.94759 0x3fd48a87d0b07fd7, 0xbfee4e98d836c0af, // 0.32096, -0.94709 0x3fd4a253d11b82f3, 0xbfee4a8dff81ce5e, // 0.32241, -0.9466 0x3fd4ba1ca2eca31c, 0xbfee467e7af35f23, // 0.32386, -0.94611 0x3fd4d1e24278e76a, 0xbfee426a4b2bc17e, // 0.32531, -0.94561 0x3fd4e9a4ac15d520, 0xbfee3e5170cbfc46, // 0.32676, -0.94511 0x3fd50163dc197047, 0xbfee3a33ec75ce85, // 0.32821, -0.9446 0x3fd5191fceda3c35, 0xbfee3611becbaf69, // 0.32966, -0.9441 0x3fd530d880af3c24, 0xbfee31eae870ce25, // 0.33111, -0.94359 0x3fd5488dedeff3be, 0xbfee2dbf6a0911d9, // 0.33255, -0.94308 0x3fd5604012f467b4, 0xbfee298f4439197a, // 0.334, -0.94257 0x3fd577eeec151e47, 0xbfee255a77a63bb8, // 0.33545, -0.94206 0x3fd58f9a75ab1fdd, 0xbfee212104f686e5, // 0.33689, -0.94154 0x3fd5a742ac0ff78d, 0xbfee1ce2ecd0c0d8, // 0.33833, -0.94103 0x3fd5bee78b9db3b6, 0xbfee18a02fdc66d9, // 0.33978, -0.94051 0x3fd5d68910aee686, 0xbfee1458cec1ad83, // 0.34122, -0.93998 0x3fd5ee27379ea693, 0xbfee100cca2980ac, // 0.34266, -0.93946 0x3fd605c1fcc88f63, 0xbfee0bbc22bd8349, // 0.3441, -0.93893 0x3fd61d595c88c203, 0xbfee0766d9280f54, // 0.34554, -0.9384 0x3fd634ed533be58e, 0xbfee030cee1435b8, // 0.34698, -0.93787 0x3fd64c7ddd3f27c6, 0xbfedfeae622dbe2b, // 0.34842, -0.93734 0x3fd6640af6f03d9e, 0xbfedfa4b3621271d, // 0.34986, -0.9368 0x3fd67b949cad63ca, 0xbfedf5e36a9ba59c, // 0.35129, -0.93627 0x3fd6931acad55f51, 0xbfedf177004b2534, // 0.35273, -0.93573 0x3fd6aa9d7dc77e16, 0xbfeded05f7de47da, // 0.35416, -0.93518 0x3fd6c21cb1e39771, 0xbfede890520465ce, // 0.3556, -0.93464 0x3fd6d998638a0cb5, 0xbfede4160f6d8d81, // 0.35703, -0.93409 0x3fd6f1108f1bc9c5, 0xbfeddf9730ca837b, // 0.35846, -0.93354 0x3fd7088530fa459e, 0xbfeddb13b6ccc23d, // 0.3599, -0.93299 0x3fd71ff6458782ec, 0xbfedd68ba2267a25, // 0.36133, -0.93244 0x3fd73763c9261092, 0xbfedd1fef38a915a, // 0.36276, -0.93188 0x3fd74ecdb8390a3e, 0xbfedcd6dabaca3a5, // 0.36418, -0.93133 0x3fd766340f2418f6, 0xbfedc8d7cb410260, // 0.36561, -0.93077 0x3fd77d96ca4b73a6, 0xbfedc43d52fcb453, // 0.36704, -0.93021 0x3fd794f5e613dfae, 0xbfedbf9e4395759a, // 0.36847, -0.92964 0x3fd7ac515ee2b172, 0xbfedbafa9dc1b78d, // 0.36989, -0.92907 0x3fd7c3a9311dcce7, 0xbfedb6526238a09b, // 0.37132, -0.92851 0x3fd7dafd592ba621, 0xbfedb1a591b20c38, // 0.37274, -0.92794 0x3fd7f24dd37341e3, 0xbfedacf42ce68ab9, // 0.37416, -0.92736 0x3fd8099a9c5c362d, 0xbfeda83e348f613b, // 0.37559, -0.92679 0x3fd820e3b04eaac4, 0xbfeda383a9668988, // 0.37701, -0.92621 0x3fd838290bb359c8, 0xbfed9ec48c26b1f3, // 0.37843, -0.92563 0x3fd84f6aaaf3903f, 0xbfed9a00dd8b3d46, // 0.37985, -0.92505 0x3fd866a88a792ea0, 0xbfed95389e50429b, // 0.38127, -0.92447 0x3fd87de2a6aea963, 0xbfed906bcf328d46, // 0.38268, -0.92388 0x3fd89518fbff098e, 0xbfed8b9a70ef9cb4, // 0.3841, -0.92329 0x3fd8ac4b86d5ed44, 0xbfed86c48445a450, // 0.38552, -0.9227 0x3fd8c37a439f884f, 0xbfed81ea09f38b63, // 0.38693, -0.92211 0x3fd8daa52ec8a4af, 0xbfed7d0b02b8ecf9, // 0.38835, -0.92151 0x3fd8f1cc44bea329, 0xbfed78276f5617c6, // 0.38976, -0.92092 0x3fd908ef81ef7bd1, 0xbfed733f508c0dff, // 0.39117, -0.92032 0x3fd9200ee2c9be97, 0xbfed6e52a71c8547, // 0.39258, -0.91972 0x3fd9372a63bc93d7, 0xbfed696173c9e68b, // 0.39399, -0.91911 0x3fd94e420137bce3, 0xbfed646bb7574de5, // 0.3954, -0.91851 0x3fd96555b7ab948f, 0xbfed5f7172888a7f, // 0.39681, -0.9179 0x3fd97c6583890fc2, 0xbfed5a72a6221e73, // 0.39822, -0.91729 0x3fd993716141bdfe, 0xbfed556f52e93eb1, // 0.39962, -0.91668 0x3fd9aa794d47c9ee, 0xbfed506779a3d2d9, // 0.40103, -0.91606 0x3fd9c17d440df9f2, 0xbfed4b5b1b187524, // 0.40243, -0.91545 0x3fd9d87d4207b0ab, 0xbfed464a380e7242, // 0.40384, -0.91483 0x3fd9ef7943a8ed8a, 0xbfed4134d14dc93a, // 0.40524, -0.91421 0x3fda067145664d57, 0xbfed3c1ae79f2b4e, // 0.40664, -0.91359 0x3fda1d6543b50ac0, 0xbfed36fc7bcbfbdc, // 0.40804, -0.91296 0x3fda34553b0afee5, 0xbfed31d98e9e503a, // 0.40944, -0.91234 0x3fda4b4127dea1e4, 0xbfed2cb220e0ef9f, // 0.41084, -0.91171 0x3fda622906a70b63, 0xbfed2786335f52fc, // 0.41224, -0.91107 0x3fda790cd3dbf31a, 0xbfed2255c6e5a4e1, // 0.41364, -0.91044 0x3fda8fec8bf5b166, 0xbfed1d20dc40c15c, // 0.41503, -0.90981 0x3fdaa6c82b6d3fc9, 0xbfed17e7743e35dc, // 0.41643, -0.90917 0x3fdabd9faebc3980, 0xbfed12a98fac410c, // 0.41782, -0.90853 0x3fdad473125cdc08, 0xbfed0d672f59d2b9, // 0.41922, -0.90789 0x3fdaeb4252ca07ab, 0xbfed082054168bac, // 0.42061, -0.90724 0x3fdb020d6c7f4009, 0xbfed02d4feb2bd92, // 0.422, -0.9066 0x3fdb18d45bf8aca6, 0xbfecfd852fff6ad4, // 0.42339, -0.90595 0x3fdb2f971db31972, 0xbfecf830e8ce467b, // 0.42478, -0.9053 0x3fdb4655ae2bf757, 0xbfecf2d829f1b40e, // 0.42617, -0.90464 0x3fdb5d1009e15cc0, 0xbfeced7af43cc773, // 0.42756, -0.90399 0x3fdb73c62d520624, 0xbfece819488344ce, // 0.42894, -0.90333 0x3fdb8a7814fd5693, 0xbfece2b32799a060, // 0.43033, -0.90267 0x3fdba125bd63583e, 0xbfecdd489254fe65, // 0.43171, -0.90201 0x3fdbb7cf2304bd01, 0xbfecd7d9898b32f6, // 0.43309, -0.90135 0x3fdbce744262deee, 0xbfecd2660e12c1e6, // 0.43448, -0.90068 0x3fdbe51517ffc0d9, 0xbfecccee20c2de9f, // 0.43586, -0.90002 0x3fdbfbb1a05e0edc, 0xbfecc771c2736c09, // 0.43724, -0.89935 0x3fdc1249d8011ee7, 0xbfecc1f0f3fcfc5c, // 0.43862, -0.89867 0x3fdc28ddbb6cf145, 0xbfecbc6bb638d10b, // 0.43999, -0.898 0x3fdc3f6d47263129, 0xbfecb6e20a00da99, // 0.44137, -0.89732 0x3fdc55f877b23537, 0xbfecb153f02fb87d, // 0.44275, -0.89665 0x3fdc6c7f4997000a, 0xbfecabc169a0b901, // 0.44412, -0.89597 0x3fdc8301b95b40c2, 0xbfeca62a772fd919, // 0.4455, -0.89528 0x3fdc997fc3865388, 0xbfeca08f19b9c449, // 0.44687, -0.8946 0x3fdcaff964a0421d, 0xbfec9aef521bd480, // 0.44824, -0.89391 0x3fdcc66e9931c45d, 0xbfec954b213411f5, // 0.44961, -0.89322 0x3fdcdcdf5dc440ce, 0xbfec8fa287e13305, // 0.45098, -0.89253 0x3fdcf34baee1cd21, 0xbfec89f587029c13, // 0.45235, -0.89184 0x3fdd09b389152ec1, 0xbfec84441f785f61, // 0.45372, -0.89115 0x3fdd2016e8e9db5b, 0xbfec7e8e52233cf3, // 0.45508, -0.89045 0x3fdd3675caebf962, 0xbfec78d41fe4a267, // 0.45645, -0.88975 0x3fdd4cd02ba8609c, 0xbfec7315899eaad7, // 0.45781, -0.88905 0x3fdd632607ac9aa9, 0xbfec6d5290341eb2, // 0.45918, -0.88835 0x3fdd79775b86e389, 0xbfec678b3488739b, // 0.46054, -0.88764 0x3fdd8fc423c62a25, 0xbfec61bf777fcc48, // 0.4619, -0.88693 0x3fdda60c5cfa10d8, 0xbfec5bef59fef85a, // 0.46326, -0.88622 0x3fddbc5003b2edf8, 0xbfec561adceb743e, // 0.46462, -0.88551 0x3fddd28f1481cc58, 0xbfec5042012b6907, // 0.46598, -0.8848 0x3fdde8c98bf86bd6, 0xbfec4a64c7a5ac4c, // 0.46733, -0.88408 0x3fddfeff66a941de, 0xbfec44833141c004, // 0.46869, -0.88336 0x3fde1530a12779f4, 0xbfec3e9d3ee7d262, // 0.47004, -0.88264 0x3fde2b5d3806f63b, 0xbfec38b2f180bdb1, // 0.4714, -0.88192 0x3fde418527dc4ffa, 0xbfec32c449f60831, // 0.47275, -0.8812 0x3fde57a86d3cd824, 0xbfec2cd14931e3f1, // 0.4741, -0.88047 0x3fde6dc704be97e2, 0xbfec26d9f01f2eaf, // 0.47545, -0.87974 0x3fde83e0eaf85113, 0xbfec20de3fa971b0, // 0.4768, -0.87901 0x3fde99f61c817eda, 0xbfec1ade38bce19b, // 0.47815, -0.87828 0x3fdeb00695f25620, 0xbfec14d9dc465e58, // 0.47949, -0.87755 0x3fdec61253e3c61b, 0xbfec0ed12b3372e9, // 0.48084, -0.87681 0x3fdedc1952ef78d5, 0xbfec08c426725549, // 0.48218, -0.87607 0x3fdef21b8fafd3b5, 0xbfec02b2cef1e641, // 0.48353, -0.87533 0x3fdf081906bff7fd, 0xbfebfc9d25a1b147, // 0.48487, -0.87459 0x3fdf1e11b4bbc35c, 0xbfebf6832b71ec5b, // 0.48621, -0.87384 0x3fdf3405963fd068, 0xbfebf064e15377dd, // 0.48755, -0.87309 0x3fdf49f4a7e97729, 0xbfebea424837de6d, // 0.48889, -0.87235 0x3fdf5fdee656cda3, 0xbfebe41b611154c1, // 0.49023, -0.8716 0x3fdf75c44e26a852, 0xbfebddf02cd2b983, // 0.49156, -0.87084 0x3fdf8ba4dbf89aba, 0xbfebd7c0ac6f952a, // 0.4929, -0.87009 0x3fdfa1808c6cf7e0, 0xbfebd18ce0dc19d6, // 0.49423, -0.86933 0x3fdfb7575c24d2de, 0xbfebcb54cb0d2327, // 0.49557, -0.86857 0x3fdfcd2947c1ff57, 0xbfebc5186bf8361d, // 0.4969, -0.86781 0x3fdfe2f64be7120f, 0xbfebbed7c49380ea, // 0.49823, -0.86705 0x3fdff8be6537615e, 0xbfebb892d5d5dad5, // 0.49956, -0.86628 0x3fe00740c82b82e0, 0xbfebb249a0b6c40d, // 0.50089, -0.86551 0x3fe0121fe4f56d2c, 0xbfebabfc262e6586, // 0.50221, -0.86474 0x3fe01cfc874c3eb7, 0xbfeba5aa673590d2, // 0.50354, -0.86397 0x3fe027d6ad83287e, 0xbfeb9f5464c5bffc, // 0.50486, -0.8632 0x3fe032ae55edbd95, 0xbfeb98fa1fd9155e, // 0.50619, -0.86242 0x3fe03d837edff370, 0xbfeb929b996a5b7f, // 0.50751, -0.86165 0x3fe0485626ae221a, 0xbfeb8c38d27504e9, // 0.50883, -0.86087 0x3fe053264bad0483, 0xbfeb85d1cbf52c02, // 0.51015, -0.86009 0x3fe05df3ec31b8b6, 0xbfeb7f6686e792ea, // 0.51147, -0.8593 0x3fe068bf0691c028, 0xbfeb78f70449a34b, // 0.51279, -0.85852 0x3fe073879922ffed, 0xbfeb728345196e3e, // 0.5141, -0.85773 0x3fe07e4da23bc102, 0xbfeb6c0b4a55ac17, // 0.51542, -0.85694 0x3fe089112032b08c, 0xbfeb658f14fdbc47, // 0.51673, -0.85615 0x3fe093d2115ee018, 0xbfeb5f0ea611a532, // 0.51804, -0.85535 0x3fe09e907417c5e1, 0xbfeb5889fe921405, // 0.51936, -0.85456 0x3fe0a94c46b53d0b, 0xbfeb52011f805c92, // 0.52067, -0.85376 0x3fe0b405878f85ec, 0xbfeb4b7409de7925, // 0.52198, -0.85296 0x3fe0bebc34ff4646, 0xbfeb44e2beaf0a61, // 0.52328, -0.85216 0x3fe0c9704d5d898f, 0xbfeb3e4d3ef55712, // 0.52459, -0.85136 0x3fe0d421cf03c12b, 0xbfeb37b38bb54c09, // 0.5259, -0.85055 0x3fe0ded0b84bc4b5, 0xbfeb3115a5f37bf4, // 0.5272, -0.84974 0x3fe0e97d078fd23b, 0xbfeb2a738eb51f33, // 0.5285, -0.84893 0x3fe0f426bb2a8e7d, 0xbfeb23cd470013b4, // 0.5298, -0.84812 0x3fe0fecdd1770537, 0xbfeb1d22cfdadcc6, // 0.5311, -0.84731 0x3fe1097248d0a956, 0xbfeb16742a4ca2f5, // 0.5324, -0.84649 0x3fe114141f935545, 0xbfeb0fc1575d33db, // 0.5337, -0.84567 0x3fe11eb3541b4b22, 0xbfeb090a58150200, // 0.535, -0.84485 0x3fe1294fe4c5350a, 0xbfeb024f2d7d24a9, // 0.53629, -0.84403 0x3fe133e9cfee254e, 0xbfeafb8fd89f57b6, // 0.53759, -0.84321 0x3fe13e8113f396c1, 0xbfeaf4cc5a85fb73, // 0.53888, -0.84238 0x3fe14915af336ceb, 0xbfeaee04b43c1474, // 0.54017, -0.84155 0x3fe153a7a00bf453, 0xbfeae738e6cd4b67, // 0.54146, -0.84073 0x3fe15e36e4dbe2bc, 0xbfeae068f345ecef, // 0.54275, -0.83989 0x3fe168c37c025764, 0xbfead994dab2e979, // 0.54404, -0.83906 0x3fe1734d63dedb49, 0xbfead2bc9e21d511, // 0.54532, -0.83822 0x3fe17dd49ad16161, 0xbfeacbe03ea0e73b, // 0.54661, -0.83739 0x3fe188591f3a46e5, 0xbfeac4ffbd3efac8, // 0.54789, -0.83655 0x3fe192daef7a5386, 0xbfeabe1b1b0b8dac, // 0.54918, -0.83571 0x3fe19d5a09f2b9b8, 0xbfeab7325916c0d4, // 0.55046, -0.83486 0x3fe1a7d66d0516e6, 0xbfeab045787157ff, // 0.55174, -0.83402 0x3fe1b250171373be, 0xbfeaa9547a2cb98e, // 0.55302, -0.83317 0x3fe1bcc706804467, 0xbfeaa25f5f5aee60, // 0.55429, -0.83232 0x3fe1c73b39ae68c8, 0xbfea9b66290ea1a3, // 0.55557, -0.83147 0x3fe1d1acaf012cc2, 0xbfea9468d85b20ae, // 0.55685, -0.83062 0x3fe1dc1b64dc4872, 0xbfea8d676e545ad2, // 0.55812, -0.82976 0x3fe1e68759a3e074, 0xbfea8661ec0ee133, // 0.55939, -0.8289 0x3fe1f0f08bbc861b, 0xbfea7f58529fe69d, // 0.56066, -0.82805 0x3fe1fb56f98b37b8, 0xbfea784aa31d3f55, // 0.56193, -0.82718 0x3fe205baa17560d6, 0xbfea7138de9d60f5, // 0.5632, -0.82632 0x3fe2101b81e0da78, 0xbfea6a230637623b, // 0.56447, -0.82546 0x3fe21a799933eb58, 0xbfea63091b02fae2, // 0.56573, -0.82459 0x3fe224d4e5d5482e, 0xbfea5beb1e188375, // 0.567, -0.82372 0x3fe22f2d662c13e1, 0xbfea54c91090f524, // 0.56826, -0.82285 0x3fe23983189fdfd5, 0xbfea4da2f385e997, // 0.56952, -0.82198 0x3fe243d5fb98ac1f, 0xbfea4678c8119ac8, // 0.57078, -0.8211 0x3fe24e260d7ee7c9, 0xbfea3f4a8f4ee2d2, // 0.57204, -0.82023 0x3fe258734cbb7110, 0xbfea38184a593bc6, // 0.5733, -0.81935 0x3fe262bdb7b795a2, 0xbfea30e1fa4cbf81, // 0.57455, -0.81847 0x3fe26d054cdd12df, 0xbfea29a7a0462782, // 0.57581, -0.81758 0x3fe2774a0a961612, 0xbfea22693d62ccb9, // 0.57706, -0.8167 0x3fe2818bef4d3cba, 0xbfea1b26d2c0a75e, // 0.57831, -0.81581 0x3fe28bcaf96d94ba, 0xbfea13e0617e4ec7, // 0.57956, -0.81493 0x3fe2960727629ca8, 0xbfea0c95eabaf937, // 0.58081, -0.81404 0x3fe2a040779843fb, 0xbfea05476f967bb5, // 0.58206, -0.81314 0x3fe2aa76e87aeb58, 0xbfe9fdf4f13149de, // 0.58331, -0.81225 0x3fe2b4aa787764c4, 0xbfe9f69e70ac75bc, // 0.58455, -0.81135 0x3fe2bedb25faf3ea, 0xbfe9ef43ef29af94, // 0.5858, -0.81046 0x3fe2c908ef734e57, 0xbfe9e7e56dcb45bd, // 0.58704, -0.80956 0x3fe2d333d34e9bb7, 0xbfe9e082edb42472, // 0.58828, -0.80866 0x3fe2dd5bcffb7616, 0xbfe9d91c7007d5a6, // 0.58952, -0.80775 0x3fe2e780e3e8ea16, 0xbfe9d1b1f5ea80d6, // 0.59076, -0.80685 0x3fe2f1a30d86773a, 0xbfe9ca438080eadb, // 0.592, -0.80594 0x3fe2fbc24b441015, 0xbfe9c2d110f075c3, // 0.59323, -0.80503 0x3fe305de9b921a94, 0xbfe9bb5aa85f2098, // 0.59447, -0.80412 0x3fe30ff7fce17035, 0xbfe9b3e047f38741, // 0.5957, -0.80321 0x3fe31a0e6da35e44, 0xbfe9ac61f0d4e247, // 0.59693, -0.80229 0x3fe32421ec49a620, 0xbfe9a4dfa42b06b2, // 0.59816, -0.80138 0x3fe32e3277467d6b, 0xbfe99d59631e65d5, // 0.59939, -0.80046 0x3fe338400d0c8e57, 0xbfe995cf2ed80d22, // 0.60062, -0.79954 0x3fe3424aac0ef7d6, 0xbfe98e410881a600, // 0.60184, -0.79861 0x3fe34c5252c14de1, 0xbfe986aef1457594, // 0.60307, -0.79769 0x3fe35656ff9799ae, 0xbfe97f18ea4e5c9e, // 0.60429, -0.79676 0x3fe36058b10659f3, 0xbfe9777ef4c7d742, // 0.60551, -0.79584 0x3fe36a576582831b, 0xbfe96fe111ddfce0, // 0.60673, -0.79491 0x3fe374531b817f8d, 0xbfe9683f42bd7fe1, // 0.60795, -0.79398 0x3fe37e4bd1792fe2, 0xbfe960998893ad8c, // 0.60917, -0.79304 0x3fe3884185dfeb22, 0xbfe958efe48e6dd7, // 0.61038, -0.79211 0x3fe39234372c7f04, 0xbfe9514257dc4335, // 0.6116, -0.79117 0x3fe39c23e3d63029, 0xbfe94990e3ac4a6c, // 0.61281, -0.79023 0x3fe3a6108a54ba58, 0xbfe941db892e3a65, // 0.61402, -0.78929 0x3fe3affa292050b9, 0xbfe93a22499263fc, // 0.61523, -0.78835 0x3fe3b9e0beb19e18, 0xbfe932652609b1cf, // 0.61644, -0.7874 0x3fe3c3c44981c517, 0xbfe92aa41fc5a815, // 0.61765, -0.78646 0x3fe3cda4c80a6076, 0xbfe922df37f8646a, // 0.61885, -0.78551 0x3fe3d78238c58343, 0xbfe91b166fd49da2, // 0.62006, -0.78456 0x3fe3e15c9a2db922, 0xbfe91349c88da398, // 0.62126, -0.7836 0x3fe3eb33eabe0680, 0xbfe90b7943575efe, // 0.62246, -0.78265 0x3fe3f50828f1e8d2, 0xbfe903a4e1665133, // 0.62366, -0.78169 0x3fe3fed9534556d4, 0xbfe8fbcca3ef940d, // 0.62486, -0.78074 0x3fe408a76834c0c0, 0xbfe8f3f08c28d9ac, // 0.62606, -0.77978 0x3fe41272663d108c, 0xbfe8ec109b486c49, // 0.62725, -0.77882 0x3fe41c3a4bdbaa26, 0xbfe8e42cd2852e0a, // 0.62845, -0.77785 0x3fe425ff178e6bb1, 0xbfe8dc45331698cc, // 0.62964, -0.77689 0x3fe42fc0c7d3adbb, 0xbfe8d459be34bdfa, // 0.63083, -0.77592 0x3fe4397f5b2a4380, 0xbfe8cc6a75184655, // 0.63202, -0.77495 0x3fe4433ad0117b1d, 0xbfe8c47758fa71cb, // 0.63321, -0.77398 0x3fe44cf325091dd6, 0xbfe8bc806b151741, // 0.63439, -0.77301 0x3fe456a858917046, 0xbfe8b485aca2a468, // 0.63558, -0.77204 0x3fe4605a692b32a2, 0xbfe8ac871ede1d88, // 0.63676, -0.77106 0x3fe46a095557a0f1, 0xbfe8a484c3031d50, // 0.63794, -0.77008 0x3fe473b51b987347, 0xbfe89c7e9a4dd4ab, // 0.63912, -0.7691 0x3fe47d5dba6fde01, 0xbfe89474a5fb0a84, // 0.6403, -0.76812 0x3fe48703306091fe, 0xbfe88c66e7481ba1, // 0.64148, -0.76714 0x3fe490a57bedbcdf, 0xbfe884555f72fa6b, // 0.64266, -0.76615 0x3fe49a449b9b0938, 0xbfe87c400fba2ebf, // 0.64383, -0.76517 0x3fe4a3e08dec9ed6, 0xbfe87426f95cd5bd, // 0.645, -0.76418 0x3fe4ad79516722f0, 0xbfe86c0a1d9aa195, // 0.64618, -0.76319 0x3fe4b70ee48fb869, 0xbfe863e97db3d95a, // 0.64735, -0.7622 0x3fe4c0a145ec0004, 0xbfe85bc51ae958cc, // 0.64851, -0.7612 0x3fe4ca30740218a3, 0xbfe8539cf67c9029, // 0.64968, -0.76021 0x3fe4d3bc6d589f80, 0xbfe84b7111af83f9, // 0.65085, -0.75921 0x3fe4dd453076b064, 0xbfe843416dc4cce2, // 0.65201, -0.75821 0x3fe4e6cabbe3e5e9, 0xbfe83b0e0bff976e, // 0.65317, -0.75721 0x3fe4f04d0e2859aa, 0xbfe832d6eda3a3e0, // 0.65433, -0.75621 0x3fe4f9cc25cca486, 0xbfe82a9c13f545ff, // 0.65549, -0.7552 0x3fe503480159ded2, 0xbfe8225d803964e5, // 0.65665, -0.75419 0x3fe50cc09f59a09b, 0xbfe81a1b33b57acc, // 0.65781, -0.75319 0x3fe51635fe5601d7, 0xbfe811d52faf94dc, // 0.65896, -0.75218 0x3fe51fa81cd99aa6, 0xbfe8098b756e52fa, // 0.66011, -0.75117 0x3fe52916f96f8388, 0xbfe8013e0638e795, // 0.66127, -0.75015 0x3fe5328292a35596, 0xbfe7f8ece3571771, // 0.66242, -0.74914 0x3fe53beae7012abe, 0xbfe7f0980e113978, // 0.66356, -0.74812 0x3fe5454ff5159dfb, 0xbfe7e83f87b03686, // 0.66471, -0.7471 0x3fe54eb1bb6dcb8f, 0xbfe7dfe3517d8937, // 0.66586, -0.74608 0x3fe5581038975137, 0xbfe7d7836cc33db2, // 0.667, -0.74506 0x3fe5616b6b204e6e, 0xbfe7cf1fdacbf179, // 0.66814, -0.74403 0x3fe56ac35197649e, 0xbfe7c6b89ce2d333, // 0.66928, -0.74301 0x3fe57417ea8bb75c, 0xbfe7be4db453a27c, // 0.67042, -0.74198 0x3fe57d69348cec9f, 0xbfe7b5df226aafb0, // 0.67156, -0.74095 0x3fe586b72e2b2cfd, 0xbfe7ad6ce874dbb6, // 0.67269, -0.73992 0x3fe59001d5f723df, 0xbfe7a4f707bf97d2, // 0.67383, -0.73889 0x3fe599492a81ffbc, 0xbfe79c7d8198e56e, // 0.67496, -0.73785 0x3fe5a28d2a5d7250, 0xbfe79400574f55e4, // 0.67609, -0.73682 0x3fe5abcdd41bb0d8, 0xbfe78b7f8a320a52, // 0.67722, -0.73578 0x3fe5b50b264f7448, 0xbfe782fb1b90b35b, // 0.67835, -0.73474 0x3fe5be451f8bf980, 0xbfe77a730cbb9100, // 0.67948, -0.7337 0x3fe5c77bbe65018c, 0xbfe771e75f037261, // 0.6806, -0.73265 0x3fe5d0af016ed1d4, 0xbfe7695813b9b594, // 0.68172, -0.73161 0x3fe5d9dee73e345c, 0xbfe760c52c304764, // 0.68285, -0.73056 0x3fe5e30b6e6877f3, 0xbfe7582ea9b9a329, // 0.68397, -0.72951 0x3fe5ec3495837074, 0xbfe74f948da8d28d, // 0.68508, -0.72846 0x3fe5f55a5b2576f8, 0xbfe746f6d9516d59, // 0.6862, -0.72741 0x3fe5fe7cbde56a0f, 0xbfe73e558e079942, // 0.68732, -0.72636 0x3fe6079bbc5aadfa, 0xbfe735b0ad2009b2, // 0.68843, -0.7253 0x3fe610b7551d2cde, 0xbfe72d0837efff97, // 0.68954, -0.72425 0x3fe619cf86c55702, 0xbfe7245c2fcd492a, // 0.69065, -0.72319 0x3fe622e44fec22ff, 0xbfe71bac960e41bf, // 0.69176, -0.72213 0x3fe62bf5af2b0dfd, 0xbfe712f96c09d18d, // 0.69287, -0.72107 0x3fe63503a31c1be8, 0xbfe70a42b3176d7a, // 0.69397, -0.72 0x3fe63e0e2a59d7aa, 0xbfe701886c8f16e6, // 0.69508, -0.71894 0x3fe64715437f535b, 0xbfe6f8ca99c95b75, // 0.69618, -0.71787 0x3fe65018ed28287f, 0xbfe6f0093c1f54de, // 0.69728, -0.7168 0x3fe6591925f0783e, 0xbfe6e74454eaa8ae, // 0.69838, -0.71573 0x3fe66215ec74eb91, 0xbfe6de7be585881d, // 0.69947, -0.71466 0x3fe66b0f3f52b386, 0xbfe6d5afef4aafcc, // 0.70057, -0.71358 0x3fe674051d27896c, 0xbfe6cce07395679f, // 0.70166, -0.71251 0x3fe67cf78491af10, 0xbfe6c40d73c18275, // 0.70275, -0.71143 0x3fe685e6742feeef, 0xbfe6bb36f12b5e06, // 0.70385, -0.71035 0x3fe68ed1eaa19c71, 0xbfe6b25ced2fe29c, // 0.70493, -0.70927 0x3fe697b9e686941c, 0xbfe6a97f692c82ea, // 0.70602, -0.70819 0x3fe6a09e667f3bcc, 0xbfe6a09e667f3bcc, // 0.70711, -0.70711 0x3fe6a97f692c82ea, 0xbfe697b9e686941c, // 0.70819, -0.70602 0x3fe6b25ced2fe29c, 0xbfe68ed1eaa19c71, // 0.70927, -0.70493 0x3fe6bb36f12b5e06, 0xbfe685e6742feeef, // 0.71035, -0.70385 0x3fe6c40d73c18275, 0xbfe67cf78491af10, // 0.71143, -0.70275 0x3fe6cce07395679f, 0xbfe674051d27896c, // 0.71251, -0.70166 0x3fe6d5afef4aafcc, 0xbfe66b0f3f52b386, // 0.71358, -0.70057 0x3fe6de7be585881d, 0xbfe66215ec74eb91, // 0.71466, -0.69947 0x3fe6e74454eaa8ae, 0xbfe6591925f0783e, // 0.71573, -0.69838 0x3fe6f0093c1f54de, 0xbfe65018ed28287f, // 0.7168, -0.69728 0x3fe6f8ca99c95b75, 0xbfe64715437f535b, // 0.71787, -0.69618 0x3fe701886c8f16e6, 0xbfe63e0e2a59d7aa, // 0.71894, -0.69508 0x3fe70a42b3176d7a, 0xbfe63503a31c1be8, // 0.72, -0.69397 0x3fe712f96c09d18d, 0xbfe62bf5af2b0dfd, // 0.72107, -0.69287 0x3fe71bac960e41bf, 0xbfe622e44fec22ff, // 0.72213, -0.69176 0x3fe7245c2fcd492a, 0xbfe619cf86c55702, // 0.72319, -0.69065 0x3fe72d0837efff97, 0xbfe610b7551d2cde, // 0.72425, -0.68954 0x3fe735b0ad2009b2, 0xbfe6079bbc5aadfa, // 0.7253, -0.68843 0x3fe73e558e079942, 0xbfe5fe7cbde56a0f, // 0.72636, -0.68732 0x3fe746f6d9516d59, 0xbfe5f55a5b2576f8, // 0.72741, -0.6862 0x3fe74f948da8d28d, 0xbfe5ec3495837074, // 0.72846, -0.68508 0x3fe7582ea9b9a329, 0xbfe5e30b6e6877f3, // 0.72951, -0.68397 0x3fe760c52c304764, 0xbfe5d9dee73e345c, // 0.73056, -0.68285 0x3fe7695813b9b594, 0xbfe5d0af016ed1d4, // 0.73161, -0.68172 0x3fe771e75f037261, 0xbfe5c77bbe65018c, // 0.73265, -0.6806 0x3fe77a730cbb9100, 0xbfe5be451f8bf980, // 0.7337, -0.67948 0x3fe782fb1b90b35b, 0xbfe5b50b264f7448, // 0.73474, -0.67835 0x3fe78b7f8a320a52, 0xbfe5abcdd41bb0d8, // 0.73578, -0.67722 0x3fe79400574f55e4, 0xbfe5a28d2a5d7250, // 0.73682, -0.67609 0x3fe79c7d8198e56e, 0xbfe599492a81ffbc, // 0.73785, -0.67496 0x3fe7a4f707bf97d2, 0xbfe59001d5f723df, // 0.73889, -0.67383 0x3fe7ad6ce874dbb6, 0xbfe586b72e2b2cfd, // 0.73992, -0.67269 0x3fe7b5df226aafb0, 0xbfe57d69348cec9f, // 0.74095, -0.67156 0x3fe7be4db453a27c, 0xbfe57417ea8bb75c, // 0.74198, -0.67042 0x3fe7c6b89ce2d333, 0xbfe56ac35197649e, // 0.74301, -0.66928 0x3fe7cf1fdacbf179, 0xbfe5616b6b204e6e, // 0.74403, -0.66814 0x3fe7d7836cc33db2, 0xbfe5581038975137, // 0.74506, -0.667 0x3fe7dfe3517d8937, 0xbfe54eb1bb6dcb8f, // 0.74608, -0.66586 0x3fe7e83f87b03686, 0xbfe5454ff5159dfb, // 0.7471, -0.66471 0x3fe7f0980e113978, 0xbfe53beae7012abe, // 0.74812, -0.66356 0x3fe7f8ece3571771, 0xbfe5328292a35596, // 0.74914, -0.66242 0x3fe8013e0638e795, 0xbfe52916f96f8388, // 0.75015, -0.66127 0x3fe8098b756e52fa, 0xbfe51fa81cd99aa6, // 0.75117, -0.66011 0x3fe811d52faf94dc, 0xbfe51635fe5601d7, // 0.75218, -0.65896 0x3fe81a1b33b57acc, 0xbfe50cc09f59a09b, // 0.75319, -0.65781 0x3fe8225d803964e5, 0xbfe503480159ded2, // 0.75419, -0.65665 0x3fe82a9c13f545ff, 0xbfe4f9cc25cca486, // 0.7552, -0.65549 0x3fe832d6eda3a3e0, 0xbfe4f04d0e2859aa, // 0.75621, -0.65433 0x3fe83b0e0bff976e, 0xbfe4e6cabbe3e5e9, // 0.75721, -0.65317 0x3fe843416dc4cce2, 0xbfe4dd453076b064, // 0.75821, -0.65201 0x3fe84b7111af83f9, 0xbfe4d3bc6d589f80, // 0.75921, -0.65085 0x3fe8539cf67c9029, 0xbfe4ca30740218a3, // 0.76021, -0.64968 0x3fe85bc51ae958cc, 0xbfe4c0a145ec0004, // 0.7612, -0.64851 0x3fe863e97db3d95a, 0xbfe4b70ee48fb869, // 0.7622, -0.64735 0x3fe86c0a1d9aa195, 0xbfe4ad79516722f0, // 0.76319, -0.64618 0x3fe87426f95cd5bd, 0xbfe4a3e08dec9ed6, // 0.76418, -0.645 0x3fe87c400fba2ebf, 0xbfe49a449b9b0938, // 0.76517, -0.64383 0x3fe884555f72fa6b, 0xbfe490a57bedbcdf, // 0.76615, -0.64266 0x3fe88c66e7481ba1, 0xbfe48703306091fe, // 0.76714, -0.64148 0x3fe89474a5fb0a84, 0xbfe47d5dba6fde01, // 0.76812, -0.6403 0x3fe89c7e9a4dd4ab, 0xbfe473b51b987347, // 0.7691, -0.63912 0x3fe8a484c3031d50, 0xbfe46a095557a0f1, // 0.77008, -0.63794 0x3fe8ac871ede1d88, 0xbfe4605a692b32a2, // 0.77106, -0.63676 0x3fe8b485aca2a468, 0xbfe456a858917046, // 0.77204, -0.63558 0x3fe8bc806b151741, 0xbfe44cf325091dd6, // 0.77301, -0.63439 0x3fe8c47758fa71cb, 0xbfe4433ad0117b1d, // 0.77398, -0.63321 0x3fe8cc6a75184655, 0xbfe4397f5b2a4380, // 0.77495, -0.63202 0x3fe8d459be34bdfa, 0xbfe42fc0c7d3adbb, // 0.77592, -0.63083 0x3fe8dc45331698cc, 0xbfe425ff178e6bb1, // 0.77689, -0.62964 0x3fe8e42cd2852e0a, 0xbfe41c3a4bdbaa26, // 0.77785, -0.62845 0x3fe8ec109b486c49, 0xbfe41272663d108c, // 0.77882, -0.62725 0x3fe8f3f08c28d9ac, 0xbfe408a76834c0c0, // 0.77978, -0.62606 0x3fe8fbcca3ef940d, 0xbfe3fed9534556d4, // 0.78074, -0.62486 0x3fe903a4e1665133, 0xbfe3f50828f1e8d2, // 0.78169, -0.62366 0x3fe90b7943575efe, 0xbfe3eb33eabe0680, // 0.78265, -0.62246 0x3fe91349c88da398, 0xbfe3e15c9a2db922, // 0.7836, -0.62126 0x3fe91b166fd49da2, 0xbfe3d78238c58343, // 0.78456, -0.62006 0x3fe922df37f8646a, 0xbfe3cda4c80a6076, // 0.78551, -0.61885 0x3fe92aa41fc5a815, 0xbfe3c3c44981c517, // 0.78646, -0.61765 0x3fe932652609b1cf, 0xbfe3b9e0beb19e18, // 0.7874, -0.61644 0x3fe93a22499263fc, 0xbfe3affa292050b9, // 0.78835, -0.61523 0x3fe941db892e3a65, 0xbfe3a6108a54ba58, // 0.78929, -0.61402 0x3fe94990e3ac4a6c, 0xbfe39c23e3d63029, // 0.79023, -0.61281 0x3fe9514257dc4335, 0xbfe39234372c7f04, // 0.79117, -0.6116 0x3fe958efe48e6dd7, 0xbfe3884185dfeb22, // 0.79211, -0.61038 0x3fe960998893ad8c, 0xbfe37e4bd1792fe2, // 0.79304, -0.60917 0x3fe9683f42bd7fe1, 0xbfe374531b817f8d, // 0.79398, -0.60795 0x3fe96fe111ddfce0, 0xbfe36a576582831b, // 0.79491, -0.60673 0x3fe9777ef4c7d742, 0xbfe36058b10659f3, // 0.79584, -0.60551 0x3fe97f18ea4e5c9e, 0xbfe35656ff9799ae, // 0.79676, -0.60429 0x3fe986aef1457594, 0xbfe34c5252c14de1, // 0.79769, -0.60307 0x3fe98e410881a600, 0xbfe3424aac0ef7d6, // 0.79861, -0.60184 0x3fe995cf2ed80d22, 0xbfe338400d0c8e57, // 0.79954, -0.60062 0x3fe99d59631e65d5, 0xbfe32e3277467d6b, // 0.80046, -0.59939 0x3fe9a4dfa42b06b2, 0xbfe32421ec49a620, // 0.80138, -0.59816 0x3fe9ac61f0d4e247, 0xbfe31a0e6da35e44, // 0.80229, -0.59693 0x3fe9b3e047f38741, 0xbfe30ff7fce17035, // 0.80321, -0.5957 0x3fe9bb5aa85f2098, 0xbfe305de9b921a94, // 0.80412, -0.59447 0x3fe9c2d110f075c3, 0xbfe2fbc24b441015, // 0.80503, -0.59323 0x3fe9ca438080eadb, 0xbfe2f1a30d86773a, // 0.80594, -0.592 0x3fe9d1b1f5ea80d6, 0xbfe2e780e3e8ea16, // 0.80685, -0.59076 0x3fe9d91c7007d5a6, 0xbfe2dd5bcffb7616, // 0.80775, -0.58952 0x3fe9e082edb42472, 0xbfe2d333d34e9bb7, // 0.80866, -0.58828 0x3fe9e7e56dcb45bd, 0xbfe2c908ef734e57, // 0.80956, -0.58704 0x3fe9ef43ef29af94, 0xbfe2bedb25faf3ea, // 0.81046, -0.5858 0x3fe9f69e70ac75bc, 0xbfe2b4aa787764c4, // 0.81135, -0.58455 0x3fe9fdf4f13149de, 0xbfe2aa76e87aeb58, // 0.81225, -0.58331 0x3fea05476f967bb5, 0xbfe2a040779843fb, // 0.81314, -0.58206 0x3fea0c95eabaf937, 0xbfe2960727629ca8, // 0.81404, -0.58081 0x3fea13e0617e4ec7, 0xbfe28bcaf96d94ba, // 0.81493, -0.57956 0x3fea1b26d2c0a75e, 0xbfe2818bef4d3cba, // 0.81581, -0.57831 0x3fea22693d62ccb9, 0xbfe2774a0a961612, // 0.8167, -0.57706 0x3fea29a7a0462782, 0xbfe26d054cdd12df, // 0.81758, -0.57581 0x3fea30e1fa4cbf81, 0xbfe262bdb7b795a2, // 0.81847, -0.57455 0x3fea38184a593bc6, 0xbfe258734cbb7110, // 0.81935, -0.5733 0x3fea3f4a8f4ee2d2, 0xbfe24e260d7ee7c9, // 0.82023, -0.57204 0x3fea4678c8119ac8, 0xbfe243d5fb98ac1f, // 0.8211, -0.57078 0x3fea4da2f385e997, 0xbfe23983189fdfd5, // 0.82198, -0.56952 0x3fea54c91090f524, 0xbfe22f2d662c13e1, // 0.82285, -0.56826 0x3fea5beb1e188375, 0xbfe224d4e5d5482e, // 0.82372, -0.567 0x3fea63091b02fae2, 0xbfe21a799933eb58, // 0.82459, -0.56573 0x3fea6a230637623b, 0xbfe2101b81e0da78, // 0.82546, -0.56447 0x3fea7138de9d60f5, 0xbfe205baa17560d6, // 0.82632, -0.5632 0x3fea784aa31d3f55, 0xbfe1fb56f98b37b8, // 0.82718, -0.56193 0x3fea7f58529fe69d, 0xbfe1f0f08bbc861b, // 0.82805, -0.56066 0x3fea8661ec0ee133, 0xbfe1e68759a3e074, // 0.8289, -0.55939 0x3fea8d676e545ad2, 0xbfe1dc1b64dc4872, // 0.82976, -0.55812 0x3fea9468d85b20ae, 0xbfe1d1acaf012cc2, // 0.83062, -0.55685 0x3fea9b66290ea1a3, 0xbfe1c73b39ae68c8, // 0.83147, -0.55557 0x3feaa25f5f5aee60, 0xbfe1bcc706804467, // 0.83232, -0.55429 0x3feaa9547a2cb98e, 0xbfe1b250171373be, // 0.83317, -0.55302 0x3feab045787157ff, 0xbfe1a7d66d0516e6, // 0.83402, -0.55174 0x3feab7325916c0d4, 0xbfe19d5a09f2b9b8, // 0.83486, -0.55046 0x3feabe1b1b0b8dac, 0xbfe192daef7a5386, // 0.83571, -0.54918 0x3feac4ffbd3efac8, 0xbfe188591f3a46e5, // 0.83655, -0.54789 0x3feacbe03ea0e73b, 0xbfe17dd49ad16161, // 0.83739, -0.54661 0x3fead2bc9e21d511, 0xbfe1734d63dedb49, // 0.83822, -0.54532 0x3fead994dab2e979, 0xbfe168c37c025764, // 0.83906, -0.54404 0x3feae068f345ecef, 0xbfe15e36e4dbe2bc, // 0.83989, -0.54275 0x3feae738e6cd4b67, 0xbfe153a7a00bf453, // 0.84073, -0.54146 0x3feaee04b43c1474, 0xbfe14915af336ceb, // 0.84155, -0.54017 0x3feaf4cc5a85fb73, 0xbfe13e8113f396c1, // 0.84238, -0.53888 0x3feafb8fd89f57b6, 0xbfe133e9cfee254e, // 0.84321, -0.53759 0x3feb024f2d7d24a9, 0xbfe1294fe4c5350a, // 0.84403, -0.53629 0x3feb090a58150200, 0xbfe11eb3541b4b22, // 0.84485, -0.535 0x3feb0fc1575d33db, 0xbfe114141f935545, // 0.84567, -0.5337 0x3feb16742a4ca2f5, 0xbfe1097248d0a956, // 0.84649, -0.5324 0x3feb1d22cfdadcc6, 0xbfe0fecdd1770537, // 0.84731, -0.5311 0x3feb23cd470013b4, 0xbfe0f426bb2a8e7d, // 0.84812, -0.5298 0x3feb2a738eb51f33, 0xbfe0e97d078fd23b, // 0.84893, -0.5285 0x3feb3115a5f37bf4, 0xbfe0ded0b84bc4b5, // 0.84974, -0.5272 0x3feb37b38bb54c09, 0xbfe0d421cf03c12b, // 0.85055, -0.5259 0x3feb3e4d3ef55712, 0xbfe0c9704d5d898f, // 0.85136, -0.52459 0x3feb44e2beaf0a61, 0xbfe0bebc34ff4646, // 0.85216, -0.52328 0x3feb4b7409de7925, 0xbfe0b405878f85ec, // 0.85296, -0.52198 0x3feb52011f805c92, 0xbfe0a94c46b53d0b, // 0.85376, -0.52067 0x3feb5889fe921405, 0xbfe09e907417c5e1, // 0.85456, -0.51936 0x3feb5f0ea611a532, 0xbfe093d2115ee018, // 0.85535, -0.51804 0x3feb658f14fdbc47, 0xbfe089112032b08c, // 0.85615, -0.51673 0x3feb6c0b4a55ac17, 0xbfe07e4da23bc102, // 0.85694, -0.51542 0x3feb728345196e3e, 0xbfe073879922ffed, // 0.85773, -0.5141 0x3feb78f70449a34b, 0xbfe068bf0691c028, // 0.85852, -0.51279 0x3feb7f6686e792ea, 0xbfe05df3ec31b8b6, // 0.8593, -0.51147 0x3feb85d1cbf52c02, 0xbfe053264bad0483, // 0.86009, -0.51015 0x3feb8c38d27504e9, 0xbfe0485626ae221a, // 0.86087, -0.50883 0x3feb929b996a5b7f, 0xbfe03d837edff370, // 0.86165, -0.50751 0x3feb98fa1fd9155e, 0xbfe032ae55edbd95, // 0.86242, -0.50619 0x3feb9f5464c5bffc, 0xbfe027d6ad83287e, // 0.8632, -0.50486 0x3feba5aa673590d2, 0xbfe01cfc874c3eb7, // 0.86397, -0.50354 0x3febabfc262e6586, 0xbfe0121fe4f56d2c, // 0.86474, -0.50221 0x3febb249a0b6c40d, 0xbfe00740c82b82e0, // 0.86551, -0.50089 0x3febb892d5d5dad5, 0xbfdff8be6537615e, // 0.86628, -0.49956 0x3febbed7c49380ea, 0xbfdfe2f64be7120f, // 0.86705, -0.49823 0x3febc5186bf8361d, 0xbfdfcd2947c1ff57, // 0.86781, -0.4969 0x3febcb54cb0d2327, 0xbfdfb7575c24d2de, // 0.86857, -0.49557 0x3febd18ce0dc19d6, 0xbfdfa1808c6cf7e0, // 0.86933, -0.49423 0x3febd7c0ac6f952a, 0xbfdf8ba4dbf89aba, // 0.87009, -0.4929 0x3febddf02cd2b983, 0xbfdf75c44e26a852, // 0.87084, -0.49156 0x3febe41b611154c1, 0xbfdf5fdee656cda3, // 0.8716, -0.49023 0x3febea424837de6d, 0xbfdf49f4a7e97729, // 0.87235, -0.48889 0x3febf064e15377dd, 0xbfdf3405963fd068, // 0.87309, -0.48755 0x3febf6832b71ec5b, 0xbfdf1e11b4bbc35c, // 0.87384, -0.48621 0x3febfc9d25a1b147, 0xbfdf081906bff7fd, // 0.87459, -0.48487 0x3fec02b2cef1e641, 0xbfdef21b8fafd3b5, // 0.87533, -0.48353 0x3fec08c426725549, 0xbfdedc1952ef78d5, // 0.87607, -0.48218 0x3fec0ed12b3372e9, 0xbfdec61253e3c61b, // 0.87681, -0.48084 0x3fec14d9dc465e58, 0xbfdeb00695f25620, // 0.87755, -0.47949 0x3fec1ade38bce19b, 0xbfde99f61c817eda, // 0.87828, -0.47815 0x3fec20de3fa971b0, 0xbfde83e0eaf85113, // 0.87901, -0.4768 0x3fec26d9f01f2eaf, 0xbfde6dc704be97e2, // 0.87974, -0.47545 0x3fec2cd14931e3f1, 0xbfde57a86d3cd824, // 0.88047, -0.4741 0x3fec32c449f60831, 0xbfde418527dc4ffa, // 0.8812, -0.47275 0x3fec38b2f180bdb1, 0xbfde2b5d3806f63b, // 0.88192, -0.4714 0x3fec3e9d3ee7d262, 0xbfde1530a12779f4, // 0.88264, -0.47004 0x3fec44833141c004, 0xbfddfeff66a941de, // 0.88336, -0.46869 0x3fec4a64c7a5ac4c, 0xbfdde8c98bf86bd6, // 0.88408, -0.46733 0x3fec5042012b6907, 0xbfddd28f1481cc58, // 0.8848, -0.46598 0x3fec561adceb743e, 0xbfddbc5003b2edf8, // 0.88551, -0.46462 0x3fec5bef59fef85a, 0xbfdda60c5cfa10d8, // 0.88622, -0.46326 0x3fec61bf777fcc48, 0xbfdd8fc423c62a25, // 0.88693, -0.4619 0x3fec678b3488739b, 0xbfdd79775b86e389, // 0.88764, -0.46054 0x3fec6d5290341eb2, 0xbfdd632607ac9aa9, // 0.88835, -0.45918 0x3fec7315899eaad7, 0xbfdd4cd02ba8609c, // 0.88905, -0.45781 0x3fec78d41fe4a267, 0xbfdd3675caebf962, // 0.88975, -0.45645 0x3fec7e8e52233cf3, 0xbfdd2016e8e9db5b, // 0.89045, -0.45508 0x3fec84441f785f61, 0xbfdd09b389152ec1, // 0.89115, -0.45372 0x3fec89f587029c13, 0xbfdcf34baee1cd21, // 0.89184, -0.45235 0x3fec8fa287e13305, 0xbfdcdcdf5dc440ce, // 0.89253, -0.45098 0x3fec954b213411f5, 0xbfdcc66e9931c45d, // 0.89322, -0.44961 0x3fec9aef521bd480, 0xbfdcaff964a0421d, // 0.89391, -0.44824 0x3feca08f19b9c449, 0xbfdc997fc3865388, // 0.8946, -0.44687 0x3feca62a772fd919, 0xbfdc8301b95b40c2, // 0.89528, -0.4455 0x3fecabc169a0b901, 0xbfdc6c7f4997000a, // 0.89597, -0.44412 0x3fecb153f02fb87d, 0xbfdc55f877b23537, // 0.89665, -0.44275 0x3fecb6e20a00da99, 0xbfdc3f6d47263129, // 0.89732, -0.44137 0x3fecbc6bb638d10b, 0xbfdc28ddbb6cf145, // 0.898, -0.43999 0x3fecc1f0f3fcfc5c, 0xbfdc1249d8011ee7, // 0.89867, -0.43862 0x3fecc771c2736c09, 0xbfdbfbb1a05e0edc, // 0.89935, -0.43724 0x3fecccee20c2de9f, 0xbfdbe51517ffc0d9, // 0.90002, -0.43586 0x3fecd2660e12c1e6, 0xbfdbce744262deee, // 0.90068, -0.43448 0x3fecd7d9898b32f6, 0xbfdbb7cf2304bd01, // 0.90135, -0.43309 0x3fecdd489254fe65, 0xbfdba125bd63583e, // 0.90201, -0.43171 0x3fece2b32799a060, 0xbfdb8a7814fd5693, // 0.90267, -0.43033 0x3fece819488344ce, 0xbfdb73c62d520624, // 0.90333, -0.42894 0x3feced7af43cc773, 0xbfdb5d1009e15cc0, // 0.90399, -0.42756 0x3fecf2d829f1b40e, 0xbfdb4655ae2bf757, // 0.90464, -0.42617 0x3fecf830e8ce467b, 0xbfdb2f971db31972, // 0.9053, -0.42478 0x3fecfd852fff6ad4, 0xbfdb18d45bf8aca6, // 0.90595, -0.42339 0x3fed02d4feb2bd92, 0xbfdb020d6c7f4009, // 0.9066, -0.422 0x3fed082054168bac, 0xbfdaeb4252ca07ab, // 0.90724, -0.42061 0x3fed0d672f59d2b9, 0xbfdad473125cdc08, // 0.90789, -0.41922 0x3fed12a98fac410c, 0xbfdabd9faebc3980, // 0.90853, -0.41782 0x3fed17e7743e35dc, 0xbfdaa6c82b6d3fc9, // 0.90917, -0.41643 0x3fed1d20dc40c15c, 0xbfda8fec8bf5b166, // 0.90981, -0.41503 0x3fed2255c6e5a4e1, 0xbfda790cd3dbf31a, // 0.91044, -0.41364 0x3fed2786335f52fc, 0xbfda622906a70b63, // 0.91107, -0.41224 0x3fed2cb220e0ef9f, 0xbfda4b4127dea1e4, // 0.91171, -0.41084 0x3fed31d98e9e503a, 0xbfda34553b0afee5, // 0.91234, -0.40944 0x3fed36fc7bcbfbdc, 0xbfda1d6543b50ac0, // 0.91296, -0.40804 0x3fed3c1ae79f2b4e, 0xbfda067145664d57, // 0.91359, -0.40664 0x3fed4134d14dc93a, 0xbfd9ef7943a8ed8a, // 0.91421, -0.40524 0x3fed464a380e7242, 0xbfd9d87d4207b0ab, // 0.91483, -0.40384 0x3fed4b5b1b187524, 0xbfd9c17d440df9f2, // 0.91545, -0.40243 0x3fed506779a3d2d9, 0xbfd9aa794d47c9ee, // 0.91606, -0.40103 0x3fed556f52e93eb1, 0xbfd993716141bdfe, // 0.91668, -0.39962 0x3fed5a72a6221e73, 0xbfd97c6583890fc2, // 0.91729, -0.39822 0x3fed5f7172888a7f, 0xbfd96555b7ab948f, // 0.9179, -0.39681 0x3fed646bb7574de5, 0xbfd94e420137bce3, // 0.91851, -0.3954 0x3fed696173c9e68b, 0xbfd9372a63bc93d7, // 0.91911, -0.39399 0x3fed6e52a71c8547, 0xbfd9200ee2c9be97, // 0.91972, -0.39258 0x3fed733f508c0dff, 0xbfd908ef81ef7bd1, // 0.92032, -0.39117 0x3fed78276f5617c6, 0xbfd8f1cc44bea329, // 0.92092, -0.38976 0x3fed7d0b02b8ecf9, 0xbfd8daa52ec8a4af, // 0.92151, -0.38835 0x3fed81ea09f38b63, 0xbfd8c37a439f884f, // 0.92211, -0.38693 0x3fed86c48445a450, 0xbfd8ac4b86d5ed44, // 0.9227, -0.38552 0x3fed8b9a70ef9cb4, 0xbfd89518fbff098e, // 0.92329, -0.3841 0x3fed906bcf328d46, 0xbfd87de2a6aea963, // 0.92388, -0.38268 0x3fed95389e50429b, 0xbfd866a88a792ea0, // 0.92447, -0.38127 0x3fed9a00dd8b3d46, 0xbfd84f6aaaf3903f, // 0.92505, -0.37985 0x3fed9ec48c26b1f3, 0xbfd838290bb359c8, // 0.92563, -0.37843 0x3feda383a9668988, 0xbfd820e3b04eaac4, // 0.92621, -0.37701 0x3feda83e348f613b, 0xbfd8099a9c5c362d, // 0.92679, -0.37559 0x3fedacf42ce68ab9, 0xbfd7f24dd37341e3, // 0.92736, -0.37416 0x3fedb1a591b20c38, 0xbfd7dafd592ba621, // 0.92794, -0.37274 0x3fedb6526238a09b, 0xbfd7c3a9311dcce7, // 0.92851, -0.37132 0x3fedbafa9dc1b78d, 0xbfd7ac515ee2b172, // 0.92907, -0.36989 0x3fedbf9e4395759a, 0xbfd794f5e613dfae, // 0.92964, -0.36847 0x3fedc43d52fcb453, 0xbfd77d96ca4b73a6, // 0.93021, -0.36704 0x3fedc8d7cb410260, 0xbfd766340f2418f6, // 0.93077, -0.36561 0x3fedcd6dabaca3a5, 0xbfd74ecdb8390a3e, // 0.93133, -0.36418 0x3fedd1fef38a915a, 0xbfd73763c9261092, // 0.93188, -0.36276 0x3fedd68ba2267a25, 0xbfd71ff6458782ec, // 0.93244, -0.36133 0x3feddb13b6ccc23d, 0xbfd7088530fa459e, // 0.93299, -0.3599 0x3feddf9730ca837b, 0xbfd6f1108f1bc9c5, // 0.93354, -0.35846 0x3fede4160f6d8d81, 0xbfd6d998638a0cb5, // 0.93409, -0.35703 0x3fede890520465ce, 0xbfd6c21cb1e39771, // 0.93464, -0.3556 0x3feded05f7de47da, 0xbfd6aa9d7dc77e16, // 0.93518, -0.35416 0x3fedf177004b2534, 0xbfd6931acad55f51, // 0.93573, -0.35273 0x3fedf5e36a9ba59c, 0xbfd67b949cad63ca, // 0.93627, -0.35129 0x3fedfa4b3621271d, 0xbfd6640af6f03d9e, // 0.9368, -0.34986 0x3fedfeae622dbe2b, 0xbfd64c7ddd3f27c6, // 0.93734, -0.34842 0x3fee030cee1435b8, 0xbfd634ed533be58e, // 0.93787, -0.34698 0x3fee0766d9280f54, 0xbfd61d595c88c203, // 0.9384, -0.34554 0x3fee0bbc22bd8349, 0xbfd605c1fcc88f63, // 0.93893, -0.3441 0x3fee100cca2980ac, 0xbfd5ee27379ea693, // 0.93946, -0.34266 0x3fee1458cec1ad83, 0xbfd5d68910aee686, // 0.93998, -0.34122 0x3fee18a02fdc66d9, 0xbfd5bee78b9db3b6, // 0.94051, -0.33978 0x3fee1ce2ecd0c0d8, 0xbfd5a742ac0ff78d, // 0.94103, -0.33833 0x3fee212104f686e5, 0xbfd58f9a75ab1fdd, // 0.94154, -0.33689 0x3fee255a77a63bb8, 0xbfd577eeec151e47, // 0.94206, -0.33545 0x3fee298f4439197a, 0xbfd5604012f467b4, // 0.94257, -0.334 0x3fee2dbf6a0911d9, 0xbfd5488dedeff3be, // 0.94308, -0.33255 0x3fee31eae870ce25, 0xbfd530d880af3c24, // 0.94359, -0.33111 0x3fee3611becbaf69, 0xbfd5191fceda3c35, // 0.9441, -0.32966 0x3fee3a33ec75ce85, 0xbfd50163dc197047, // 0.9446, -0.32821 0x3fee3e5170cbfc46, 0xbfd4e9a4ac15d520, // 0.94511, -0.32676 0x3fee426a4b2bc17e, 0xbfd4d1e24278e76a, // 0.94561, -0.32531 0x3fee467e7af35f23, 0xbfd4ba1ca2eca31c, // 0.94611, -0.32386 0x3fee4a8dff81ce5e, 0xbfd4a253d11b82f3, // 0.9466, -0.32241 0x3fee4e98d836c0af, 0xbfd48a87d0b07fd7, // 0.94709, -0.32096 0x3fee529f04729ffc, 0xbfd472b8a5571054, // 0.94759, -0.3195 0x3fee56a083968eb1, 0xbfd45ae652bb2800, // 0.94807, -0.31805 0x3fee5a9d550467d3, 0xbfd44310dc8936f0, // 0.94856, -0.31659 0x3fee5e95781ebf1c, 0xbfd42b38466e2928, // 0.94905, -0.31514 0x3fee6288ec48e112, 0xbfd4135c94176602, // 0.94953, -0.31368 0x3fee6677b0e6d31e, 0xbfd3fb7dc932cfa4, // 0.95001, -0.31222 0x3fee6a61c55d53a7, 0xbfd3e39be96ec271, // 0.95049, -0.31077 0x3fee6e472911da27, 0xbfd3cbb6f87a146e, // 0.95096, -0.30931 0x3fee7227db6a9744, 0xbfd3b3cefa0414b7, // 0.95144, -0.30785 0x3fee7603dbce74e9, 0xbfd39be3f1bc8aef, // 0.95191, -0.30639 0x3fee79db29a5165a, 0xbfd383f5e353b6aa, // 0.95238, -0.30493 0x3fee7dadc456d850, 0xbfd36c04d27a4edf, // 0.95284, -0.30347 0x3fee817bab4cd10d, 0xbfd35410c2e18152, // 0.95331, -0.30201 0x3fee8544ddf0d075, 0xbfd33c19b83af207, // 0.95377, -0.30054 0x3fee89095bad6025, 0xbfd3241fb638baaf, // 0.95423, -0.29908 0x3fee8cc923edc388, 0xbfd30c22c08d6a13, // 0.95469, -0.29762 0x3fee9084361df7f3, 0xbfd2f422daec0386, // 0.95514, -0.29615 0x3fee943a91aab4b4, 0xbfd2dc200907fe51, // 0.95559, -0.29469 0x3fee97ec36016b30, 0xbfd2c41a4e954520, // 0.95605, -0.29322 0x3fee9b99229046f8, 0xbfd2ac11af483572, // 0.95649, -0.29175 0x3fee9f4156c62dda, 0xbfd294062ed59f05, // 0.95694, -0.29028 0x3feea2e4d212c000, 0xbfd27bf7d0f2c346, // 0.95738, -0.28882 0x3feea68393e65800, 0xbfd263e6995554ba, // 0.95783, -0.28735 0x3feeaa1d9bb20af3, 0xbfd24bd28bb37672, // 0.95827, -0.28588 0x3feeadb2e8e7a88e, 0xbfd233bbabc3bb72, // 0.9587, -0.28441 0x3feeb1437af9bb34, 0xbfd21ba1fd3d2623, // 0.95914, -0.28294 0x3feeb4cf515b8811, 0xbfd2038583d727bd, // 0.95957, -0.28146 0x3feeb8566b810f2a, 0xbfd1eb6643499fbb, // 0.96, -0.27999 0x3feebbd8c8df0b74, 0xbfd1d3443f4cdb3d, // 0.96043, -0.27852 0x3feebf5668eaf2ef, 0xbfd1bb1f7b999480, // 0.96086, -0.27705 0x3feec2cf4b1af6b2, 0xbfd1a2f7fbe8f243, // 0.96128, -0.27557 0x3feec6436ee60309, 0xbfd18acdc3f4873a, // 0.9617, -0.2741 0x3feec9b2d3c3bf84, 0xbfd172a0d7765177, // 0.96212, -0.27262 0x3feecd1d792c8f10, 0xbfd15a713a28b9d9, // 0.96254, -0.27115 0x3feed0835e999009, 0xbfd1423eefc69378, // 0.96295, -0.26967 0x3feed3e483849c51, 0xbfd12a09fc0b1b12, // 0.96337, -0.26819 0x3feed740e7684963, 0xbfd111d262b1f677, // 0.96378, -0.26671 0x3feeda9889bfe86a, 0xbfd0f998277733f7, // 0.96418, -0.26523 0x3feeddeb6a078651, 0xbfd0e15b4e1749cd, // 0.96459, -0.26375 0x3feee13987bbebdc, 0xbfd0c91bda4f158d, // 0.96499, -0.26227 0x3feee482e25a9dbc, 0xbfd0b0d9cfdbdb90, // 0.96539, -0.26079 0x3feee7c77961dc9e, 0xbfd09895327b465e, // 0.96579, -0.25931 0x3feeeb074c50a544, 0xbfd0804e05eb661e, // 0.96619, -0.25783 0x3feeee425aa6b09a, 0xbfd068044deab002, // 0.96658, -0.25635 0x3feef178a3e473c2, 0xbfd04fb80e37fdae, // 0.96698, -0.25487 0x3feef4aa278b2032, 0xbfd037694a928cac, // 0.96737, -0.25338 0x3feef7d6e51ca3c0, 0xbfd01f1806b9fdd2, // 0.96775, -0.2519 0x3feefafedc1ba8b7, 0xbfd006c4466e54af, // 0.96814, -0.25041 0x3feefe220c0b95ec, 0xbfcfdcdc1adfedf8, // 0.96852, -0.24893 0x3fef014074708ed3, 0xbfcfac2abeff57ff, // 0.9689, -0.24744 0x3fef045a14cf738c, 0xbfcf7b7480bd3801, // 0.96928, -0.24596 0x3fef076eecade0fa, 0xbfcf4ab9679c9f5c, // 0.96966, -0.24447 0x3fef0a7efb9230d7, 0xbfcf19f97b215f1a, // 0.97003, -0.24298 0x3fef0d8a410379c5, 0xbfcee934c2d006c7, // 0.9704, -0.24149 0x3fef1090bc898f5f, 0xbfceb86b462de348, // 0.97077, -0.24 0x3fef13926dad024e, 0xbfce879d0cc0fdaf, // 0.97114, -0.23851 0x3fef168f53f7205d, 0xbfce56ca1e101a1b, // 0.9715, -0.23702 0x3fef19876ef1f486, 0xbfce25f281a2b684, // 0.97187, -0.23553 0x3fef1c7abe284708, 0xbfcdf5163f01099a, // 0.97223, -0.23404 0x3fef1f6941259d7a, 0xbfcdc4355db40195, // 0.97258, -0.23255 0x3fef2252f7763ada, 0xbfcd934fe5454311, // 0.97294, -0.23106 0x3fef2537e0a71f9f, 0xbfcd6265dd3f27e3, // 0.97329, -0.22957 0x3fef2817fc4609ce, 0xbfcd31774d2cbdee, // 0.97364, -0.22807 0x3fef2af349e17507, 0xbfcd00843c99c5f9, // 0.97399, -0.22658 0x3fef2dc9c9089a9d, 0xbfcccf8cb312b286, // 0.97434, -0.22508 0x3fef309b794b719f, 0xbfcc9e90b824a6a9, // 0.97468, -0.22359 0x3fef33685a3aaef0, 0xbfcc6d90535d74dc, // 0.97503, -0.22209 0x3fef36306b67c556, 0xbfcc3c8b8c4b9dd7, // 0.97536, -0.2206 0x3fef38f3ac64e589, 0xbfcc0b826a7e4f63, // 0.9757, -0.2191 0x3fef3bb21cc4fe47, 0xbfcbda74f5856330, // 0.97604, -0.2176 0x3fef3e6bbc1bbc65, 0xbfcba96334f15dad, // 0.97637, -0.21611 0x3fef412089fd8adc, 0xbfcb784d30536cda, // 0.9767, -0.21461 0x3fef43d085ff92dd, 0xbfcb4732ef3d6722, // 0.97703, -0.21311 0x3fef467bafb7bbe0, 0xbfcb16147941ca2a, // 0.97735, -0.21161 0x3fef492206bcabb4, 0xbfcae4f1d5f3b9ab, // 0.97768, -0.21011 0x3fef4bc38aa5c694, 0xbfcab3cb0ce6fe44, // 0.978, -0.20861 0x3fef4e603b0b2f2d, 0xbfca82a025b00451, // 0.97832, -0.20711 0x3fef50f81785c6b9, 0xbfca517127e3dabc, // 0.97863, -0.20561 0x3fef538b1faf2d07, 0xbfca203e1b1831da, // 0.97895, -0.20411 0x3fef56195321c090, 0xbfc9ef0706e35a35, // 0.97926, -0.20261 0x3fef58a2b1789e84, 0xbfc9bdcbf2dc4366, // 0.97957, -0.2011 0x3fef5b273a4fa2d9, 0xbfc98c8ce69a7aec, // 0.97988, -0.1996 0x3fef5da6ed43685d, 0xbfc95b49e9b62af9, // 0.98018, -0.1981 0x3fef6021c9f148c2, 0xbfc92a0303c8194f, // 0.98048, -0.19659 0x3fef6297cff75cb0, 0xbfc8f8b83c69a60a, // 0.98079, -0.19509 0x3fef6508fef47bd5, 0xbfc8c7699b34ca7e, // 0.98108, -0.19359 0x3fef677556883cee, 0xbfc8961727c41804, // 0.98138, -0.19208 0x3fef69dcd652f5de, 0xbfc864c0e9b2b6cf, // 0.98167, -0.19057 0x3fef6c3f7df5bbb7, 0xbfc83366e89c64c5, // 0.98196, -0.18907 0x3fef6e9d4d1262ca, 0xbfc802092c1d744b, // 0.98225, -0.18756 0x3fef70f6434b7eb7, 0xbfc7d0a7bbd2cb1b, // 0.98254, -0.18606 0x3fef734a60446279, 0xbfc79f429f59e11d, // 0.98282, -0.18455 0x3fef7599a3a12077, 0xbfc76dd9de50bf31, // 0.98311, -0.18304 0x3fef77e40d068a90, 0xbfc73c6d8055fe0a, // 0.98339, -0.18153 0x3fef7a299c1a322a, 0xbfc70afd8d08c4ff, // 0.98366, -0.18002 0x3fef7c6a50826840, 0xbfc6d98a0c08c8da, // 0.98394, -0.17851 0x3fef7ea629e63d6e, 0xbfc6a81304f64ab2, // 0.98421, -0.177 0x3fef80dd27ed8204, 0xbfc676987f7216b8, // 0.98448, -0.17549 0x3fef830f4a40c60c, 0xbfc6451a831d830d, // 0.98475, -0.17398 0x3fef853c9089595e, 0xbfc61399179a6e94, // 0.98501, -0.17247 0x3fef8764fa714ba9, 0xbfc5e214448b3fc6, // 0.98528, -0.17096 0x3fef898887a36c84, 0xbfc5b08c1192e381, // 0.98554, -0.16945 0x3fef8ba737cb4b78, 0xbfc57f008654cbde, // 0.9858, -0.16794 0x3fef8dc10a95380d, 0xbfc54d71aa74ef02, // 0.98605, -0.16643 0x3fef8fd5ffae41db, 0xbfc51bdf8597c5f2, // 0.98631, -0.16491 0x3fef91e616c43891, 0xbfc4ea4a1f624b61, // 0.98656, -0.1634 0x3fef93f14f85ac08, 0xbfc4b8b17f79fa88, // 0.98681, -0.16189 0x3fef95f7a9a1ec47, 0xbfc48715ad84cdf5, // 0.98706, -0.16037 0x3fef97f924c9099b, 0xbfc45576b1293e5a, // 0.9873, -0.15886 0x3fef99f5c0abd496, 0xbfc423d4920e4166, // 0.98754, -0.15734 0x3fef9bed7cfbde29, 0xbfc3f22f57db4893, // 0.98778, -0.15583 0x3fef9de0596b77a3, 0xbfc3c0870a383ff6, // 0.98802, -0.15431 0x3fef9fce55adb2c8, 0xbfc38edbb0cd8d14, // 0.98826, -0.1528 0x3fefa1b7717661d5, 0xbfc35d2d53440db2, // 0.98849, -0.15128 0x3fefa39bac7a1791, 0xbfc32b7bf94516a7, // 0.98872, -0.14976 0x3fefa57b066e2754, 0xbfc2f9c7aa7a72af, // 0.98895, -0.14825 0x3fefa7557f08a517, 0xbfc2c8106e8e613a, // 0.98918, -0.14673 0x3fefa92b1600657c, 0xbfc296564d2b953e, // 0.9894, -0.14521 0x3fefaafbcb0cfddc, 0xbfc264994dfd340a, // 0.98962, -0.1437 0x3fefacc79de6c44f, 0xbfc232d978aed413, // 0.98984, -0.14218 0x3fefae8e8e46cfbb, 0xbfc20116d4ec7bce, // 0.99006, -0.14066 0x3fefb0509be6f7db, 0xbfc1cf516a62a077, // 0.99027, -0.13914 0x3fefb20dc681d54d, 0xbfc19d8940be24e7, // 0.99049, -0.13762 0x3fefb3c60dd2c199, 0xbfc16bbe5fac5865, // 0.9907, -0.1361 0x3fefb5797195d741, 0xbfc139f0cedaf576, // 0.9909, -0.13458 0x3fefb727f187f1c7, 0xbfc1082095f820b0, // 0.99111, -0.13306 0x3fefb8d18d66adb7, 0xbfc0d64dbcb26786, // 0.99131, -0.13154 0x3fefba7644f068b5, 0xbfc0a4784ab8bf1d, // 0.99151, -0.13002 0x3fefbc1617e44186, 0xbfc072a047ba831d, // 0.99171, -0.1285 0x3fefbdb106021816, 0xbfc040c5bb67747e, // 0.99191, -0.12698 0x3fefbf470f0a8d88, 0xbfc00ee8ad6fb85b, // 0.9921, -0.12545 0x3fefc0d832bf043a, 0xbfbfba124b07ad85, // 0.99229, -0.12393 0x3fefc26470e19fd3, 0xbfbf564e56a9730e, // 0.99248, -0.12241 0x3fefc3ebc935454c, 0xbfbef2858d27561b, // 0.99267, -0.12089 0x3fefc56e3b7d9af6, 0xbfbe8eb7fde4aa3e, // 0.99285, -0.11937 0x3fefc6ebc77f0887, 0xbfbe2ae5b8457f77, // 0.99303, -0.11784 0x3fefc8646cfeb721, 0xbfbdc70ecbae9fc8, // 0.99321, -0.11632 0x3fefc9d82bc2915e, 0xbfbd633347858ce4, // 0.99339, -0.11479 0x3fefcb4703914354, 0xbfbcff533b307dc1, // 0.99356, -0.11327 0x3fefccb0f4323aa3, 0xbfbc9b6eb6165c42, // 0.99374, -0.11175 0x3fefce15fd6da67b, 0xbfbc3785c79ec2d5, // 0.99391, -0.11022 0x3fefcf761f0c77a3, 0xbfbbd3987f31fa0e, // 0.99407, -0.1087 0x3fefd0d158d86087, 0xbfbb6fa6ec38f64c, // 0.99424, -0.10717 0x3fefd227aa9bd53b, 0xbfbb0bb11e1d5559, // 0.9944, -0.10565 0x3fefd37914220b84, 0xbfbaa7b724495c04, // 0.99456, -0.10412 0x3fefd4c59536fae4, 0xbfba43b90e27f3c4, // 0.99472, -0.1026 0x3fefd60d2da75c9e, 0xbfb9dfb6eb24a85c, // 0.99488, -0.10107 0x3fefd74fdd40abbf, 0xbfb97bb0caaba56f, // 0.99503, -0.099544 0x3fefd88da3d12526, 0xbfb917a6bc29b42c, // 0.99518, -0.098017 0x3fefd9c68127c78c, 0xbfb8b398cf0c38e0, // 0.99533, -0.09649 0x3fefdafa7514538c, 0xbfb84f8712c130a0, // 0.99548, -0.094963 0x3fefdc297f674ba9, 0xbfb7eb7196b72ee4, // 0.99563, -0.093436 0x3fefdd539ff1f456, 0xbfb787586a5d5b21, // 0.99577, -0.091909 0x3fefde78d68653fd, 0xbfb7233b9d236e71, // 0.99591, -0.090381 0x3fefdf9922f73307, 0xbfb6bf1b3e79b129, // 0.99604, -0.088854 0x3fefe0b485181be3, 0xbfb65af75dd0f87b, // 0.99618, -0.087326 0x3fefe1cafcbd5b09, 0xbfb5f6d00a9aa419, // 0.99631, -0.085797 0x3fefe2dc89bbff08, 0xbfb592a554489bc8, // 0.99644, -0.084269 0x3fefe3e92be9d886, 0xbfb52e774a4d4d0a, // 0.99657, -0.08274 0x3fefe4f0e31d7a4a, 0xbfb4ca45fc1ba8b6, // 0.9967, -0.081211 0x3fefe5f3af2e3940, 0xbfb4661179272096, // 0.99682, -0.079682 0x3fefe6f18ff42c84, 0xbfb401d9d0e3a507, // 0.99694, -0.078153 0x3fefe7ea85482d60, 0xbfb39d9f12c5a299, // 0.99706, -0.076624 0x3fefe8de8f03d75c, 0xbfb339614e41ffa5, // 0.99718, -0.075094 0x3fefe9cdad01883a, 0xbfb2d52092ce19f6, // 0.99729, -0.073565 0x3fefeab7df1c6005, 0xbfb270dcefdfc45b, // 0.9974, -0.072035 0x3fefeb9d2530410f, 0xbfb20c9674ed444c, // 0.99751, -0.070505 0x3fefec7d7f19cffc, 0xbfb1a84d316d4f8a, // 0.99762, -0.068974 0x3fefed58ecb673c4, 0xbfb1440134d709b2, // 0.99772, -0.067444 0x3fefee2f6de455ba, 0xbfb0dfb28ea201e6, // 0.99783, -0.065913 0x3fefef0102826191, 0xbfb07b614e463064, // 0.99793, -0.064383 0x3fefefcdaa704562, 0xbfb0170d833bf421, // 0.99802, -0.062852 0x3feff095658e71ad, 0xbfaf656e79f820e0, // 0.99812, -0.061321 0x3feff15833be1965, 0xbfae9cbd15ff5527, // 0.99821, -0.05979 0x3feff21614e131ed, 0xbfadd406f9808ec8, // 0.9983, -0.058258 0x3feff2cf08da7321, 0xbfad0b4c436f91d0, // 0.99839, -0.056727 0x3feff3830f8d575c, 0xbfac428d12c0d7e3, // 0.99848, -0.055195 0x3feff43228de1b77, 0xbfab79c986698b78, // 0.99856, -0.053664 0x3feff4dc54b1bed3, 0xbfaab101bd5f8317, // 0.99864, -0.052132 0x3feff58192ee0358, 0xbfa9e835d6993c87, // 0.99872, -0.0506 0x3feff621e3796d7e, 0xbfa91f65f10dd814, // 0.9988, -0.049068 0x3feff6bd463b444d, 0xbfa856922bb513c1, // 0.99887, -0.047535 0x3feff753bb1b9164, 0xbfa78dbaa5874685, // 0.99894, -0.046003 0x3feff7e5420320f9, 0xbfa6c4df7d7d5b84, // 0.99901, -0.044471 0x3feff871dadb81df, 0xbfa5fc00d290cd43, // 0.99908, -0.042938 0x3feff8f9858f058b, 0xbfa5331ec3bba0eb, // 0.99914, -0.041406 0x3feff97c4208c014, 0xbfa46a396ff86179, // 0.9992, -0.039873 0x3feff9fa10348837, 0xbfa3a150f6421afc, // 0.99926, -0.03834 0x3feffa72effef75d, 0xbfa2d865759455cd, // 0.99932, -0.036807 0x3feffae6e1556998, 0xbfa20f770ceb11c6, // 0.99938, -0.035274 0x3feffb55e425fdae, 0xbfa14685db42c17e, // 0.99943, -0.033741 0x3feffbbff85f9515, 0xbfa07d91ff984580, // 0.99948, -0.032208 0x3feffc251df1d3f8, 0xbf9f693731d1cf01, // 0.99953, -0.030675 0x3feffc8554cd213a, 0xbf9dd7458c64ab39, // 0.99958, -0.029142 0x3feffce09ce2a679, 0xbf9c454f4ce53b1c, // 0.99962, -0.027608 0x3feffd36f624500c, 0xbf9ab354b1504fca, // 0.99966, -0.026075 0x3feffd886084cd0d, 0xbf992155f7a3667e, // 0.9997, -0.024541 0x3feffdd4dbf78f52, 0xbf978f535ddc9f03, // 0.99974, -0.023008 0x3feffe1c6870cb77, 0xbf95fd4d21fab226, // 0.99977, -0.021474 0x3feffe5f05e578db, 0xbf946b4381fce81c, // 0.9998, -0.01994 0x3feffe9cb44b51a1, 0xbf92d936bbe30efd, // 0.99983, -0.018407 0x3feffed57398d2b7, 0xbf9147270dad7132, // 0.99986, -0.016873 0x3fefff0943c53bd1, 0xbf8f6a296ab997ca, // 0.99988, -0.015339 0x3fefff3824c88f6f, 0xbf8c45ffe1e48ad9, // 0.9999, -0.013805 0x3fefff62169b92db, 0xbf8921d1fcdec784, // 0.99992, -0.012272 0x3fefff871937ce2f, 0xbf85fda037ac05e0, // 0.99994, -0.010738 0x3fefffa72c978c4f, 0xbf82d96b0e509703, // 0.99996,-0.0092038 0x3fefffc250b5daef, 0xbf7f6a65f9a2a3c5, // 0.99997,-0.0076698 0x3fefffd8858e8a92, 0xbf7921f0fe670071, // 0.99998,-0.0061359 0x3fefffe9cb1e2e8d, 0xbf72d97822f996bc, // 0.99999,-0.0046019 0x3feffff621621d02, 0xbf6921f8becca4ba, // 1, -0.003068 0x3feffffd88586ee6, 0xbf5921faaee6472d, // 1, -0.001534 }; /** @par Example code for Floating-point Twiddle factors Generation: @par
for (i = 0; i < N/; i++)
  {
 	twiddleCoef[2*i]   = cos(i * 2*PI/(float)N);
 	twiddleCoef[2*i+1] = sin(i * 2*PI/(float)N);
  } 
@par where N = 16, PI = 3.14159265358979 @par Cos and Sin values are in interleaved fashion */ const float32_t twiddleCoef_16[32] ARM_DSP_TABLE_ATTRIBUTE = { 1.000000000f, 0.000000000f, 0.923879533f, 0.382683432f, 0.707106781f, 0.707106781f, 0.382683432f, 0.923879533f, 0.000000000f, 1.000000000f, -0.382683432f, 0.923879533f, -0.707106781f, 0.707106781f, -0.923879533f, 0.382683432f, -1.000000000f, 0.000000000f, -0.923879533f, -0.382683432f, -0.707106781f, -0.707106781f, -0.382683432f, -0.923879533f, -0.000000000f, -1.000000000f, 0.382683432f, -0.923879533f, 0.707106781f, -0.707106781f, 0.923879533f, -0.382683432f }; /** @par Example code for Floating-point Twiddle factors Generation: @par
for (i = 0; i< N/; i++)
  {
 	twiddleCoef[2*i]   = cos(i * 2*PI/(float)N);
 	twiddleCoef[2*i+1] = sin(i * 2*PI/(float)N);
  } 
@par where N = 32, PI = 3.14159265358979 @par Cos and Sin values are in interleaved fashion */ const float32_t twiddleCoef_32[64] ARM_DSP_TABLE_ATTRIBUTE = { 1.000000000f, 0.000000000f, 0.980785280f, 0.195090322f, 0.923879533f, 0.382683432f, 0.831469612f, 0.555570233f, 0.707106781f, 0.707106781f, 0.555570233f, 0.831469612f, 0.382683432f, 0.923879533f, 0.195090322f, 0.980785280f, 0.000000000f, 1.000000000f, -0.195090322f, 0.980785280f, -0.382683432f, 0.923879533f, -0.555570233f, 0.831469612f, -0.707106781f, 0.707106781f, -0.831469612f, 0.555570233f, -0.923879533f, 0.382683432f, -0.980785280f, 0.195090322f, -1.000000000f, 0.000000000f, -0.980785280f, -0.195090322f, -0.923879533f, -0.382683432f, -0.831469612f, -0.555570233f, -0.707106781f, -0.707106781f, -0.555570233f, -0.831469612f, -0.382683432f, -0.923879533f, -0.195090322f, -0.980785280f, -0.000000000f, -1.000000000f, 0.195090322f, -0.980785280f, 0.382683432f, -0.923879533f, 0.555570233f, -0.831469612f, 0.707106781f, -0.707106781f, 0.831469612f, -0.555570233f, 0.923879533f, -0.382683432f, 0.980785280f, -0.195090322f }; /** @par Example code for Floating-point Twiddle factors Generation: @par
for(i = 0; i < N/; i++)
  {
 	twiddleCoef[2*i]   = cos(i * 2*PI/(float)N);
 	twiddleCoef[2*i+1] = sin(i * 2*PI/(float)N);
  } 
@par where N = 64, PI = 3.14159265358979 @par Cos and Sin values are in interleaved fashion */ const float32_t twiddleCoef_64[128] ARM_DSP_TABLE_ATTRIBUTE = { 1.000000000f, 0.000000000f, 0.995184727f, 0.098017140f, 0.980785280f, 0.195090322f, 0.956940336f, 0.290284677f, 0.923879533f, 0.382683432f, 0.881921264f, 0.471396737f, 0.831469612f, 0.555570233f, 0.773010453f, 0.634393284f, 0.707106781f, 0.707106781f, 0.634393284f, 0.773010453f, 0.555570233f, 0.831469612f, 0.471396737f, 0.881921264f, 0.382683432f, 0.923879533f, 0.290284677f, 0.956940336f, 0.195090322f, 0.980785280f, 0.098017140f, 0.995184727f, 0.000000000f, 1.000000000f, -0.098017140f, 0.995184727f, -0.195090322f, 0.980785280f, -0.290284677f, 0.956940336f, -0.382683432f, 0.923879533f, -0.471396737f, 0.881921264f, -0.555570233f, 0.831469612f, -0.634393284f, 0.773010453f, -0.707106781f, 0.707106781f, -0.773010453f, 0.634393284f, -0.831469612f, 0.555570233f, -0.881921264f, 0.471396737f, -0.923879533f, 0.382683432f, -0.956940336f, 0.290284677f, -0.980785280f, 0.195090322f, -0.995184727f, 0.098017140f, -1.000000000f, 0.000000000f, -0.995184727f, -0.098017140f, -0.980785280f, -0.195090322f, -0.956940336f, -0.290284677f, -0.923879533f, -0.382683432f, -0.881921264f, -0.471396737f, -0.831469612f, -0.555570233f, -0.773010453f, -0.634393284f, -0.707106781f, -0.707106781f, -0.634393284f, -0.773010453f, -0.555570233f, -0.831469612f, -0.471396737f, -0.881921264f, -0.382683432f, -0.923879533f, -0.290284677f, -0.956940336f, -0.195090322f, -0.980785280f, -0.098017140f, -0.995184727f, -0.000000000f, -1.000000000f, 0.098017140f, -0.995184727f, 0.195090322f, -0.980785280f, 0.290284677f, -0.956940336f, 0.382683432f, -0.923879533f, 0.471396737f, -0.881921264f, 0.555570233f, -0.831469612f, 0.634393284f, -0.773010453f, 0.707106781f, -0.707106781f, 0.773010453f, -0.634393284f, 0.831469612f, -0.555570233f, 0.881921264f, -0.471396737f, 0.923879533f, -0.382683432f, 0.956940336f, -0.290284677f, 0.980785280f, -0.195090322f, 0.995184727f, -0.098017140f }; /** @par Example code for Floating-point Twiddle factors Generation: @par
for (i = 0; i< N/; i++)
  {
 	twiddleCoef[2*i]   = cos(i * 2*PI/(float)N);
 	twiddleCoef[2*i+1] = sin(i * 2*PI/(float)N);
  } 
@par where N = 128, PI = 3.14159265358979 @par Cos and Sin values are in interleaved fashion */ const float32_t twiddleCoef_128[256] ARM_DSP_TABLE_ATTRIBUTE = { 1.000000000f, 0.000000000f, 0.998795456f, 0.049067674f, 0.995184727f, 0.098017140f, 0.989176510f, 0.146730474f, 0.980785280f, 0.195090322f, 0.970031253f, 0.242980180f, 0.956940336f, 0.290284677f, 0.941544065f, 0.336889853f, 0.923879533f, 0.382683432f, 0.903989293f, 0.427555093f, 0.881921264f, 0.471396737f, 0.857728610f, 0.514102744f, 0.831469612f, 0.555570233f, 0.803207531f, 0.595699304f, 0.773010453f, 0.634393284f, 0.740951125f, 0.671558955f, 0.707106781f, 0.707106781f, 0.671558955f, 0.740951125f, 0.634393284f, 0.773010453f, 0.595699304f, 0.803207531f, 0.555570233f, 0.831469612f, 0.514102744f, 0.857728610f, 0.471396737f, 0.881921264f, 0.427555093f, 0.903989293f, 0.382683432f, 0.923879533f, 0.336889853f, 0.941544065f, 0.290284677f, 0.956940336f, 0.242980180f, 0.970031253f, 0.195090322f, 0.980785280f, 0.146730474f, 0.989176510f, 0.098017140f, 0.995184727f, 0.049067674f, 0.998795456f, 0.000000000f, 1.000000000f, -0.049067674f, 0.998795456f, -0.098017140f, 0.995184727f, -0.146730474f, 0.989176510f, -0.195090322f, 0.980785280f, -0.242980180f, 0.970031253f, -0.290284677f, 0.956940336f, -0.336889853f, 0.941544065f, -0.382683432f, 0.923879533f, -0.427555093f, 0.903989293f, -0.471396737f, 0.881921264f, -0.514102744f, 0.857728610f, -0.555570233f, 0.831469612f, -0.595699304f, 0.803207531f, -0.634393284f, 0.773010453f, -0.671558955f, 0.740951125f, -0.707106781f, 0.707106781f, -0.740951125f, 0.671558955f, -0.773010453f, 0.634393284f, -0.803207531f, 0.595699304f, -0.831469612f, 0.555570233f, -0.857728610f, 0.514102744f, -0.881921264f, 0.471396737f, -0.903989293f, 0.427555093f, -0.923879533f, 0.382683432f, -0.941544065f, 0.336889853f, -0.956940336f, 0.290284677f, -0.970031253f, 0.242980180f, -0.980785280f, 0.195090322f, -0.989176510f, 0.146730474f, -0.995184727f, 0.098017140f, -0.998795456f, 0.049067674f, -1.000000000f, 0.000000000f, -0.998795456f, -0.049067674f, -0.995184727f, -0.098017140f, -0.989176510f, -0.146730474f, -0.980785280f, -0.195090322f, -0.970031253f, -0.242980180f, -0.956940336f, -0.290284677f, -0.941544065f, -0.336889853f, -0.923879533f, -0.382683432f, -0.903989293f, -0.427555093f, -0.881921264f, -0.471396737f, -0.857728610f, -0.514102744f, -0.831469612f, -0.555570233f, -0.803207531f, -0.595699304f, -0.773010453f, -0.634393284f, -0.740951125f, -0.671558955f, -0.707106781f, -0.707106781f, -0.671558955f, -0.740951125f, -0.634393284f, -0.773010453f, -0.595699304f, -0.803207531f, -0.555570233f, -0.831469612f, -0.514102744f, -0.857728610f, -0.471396737f, -0.881921264f, -0.427555093f, -0.903989293f, -0.382683432f, -0.923879533f, -0.336889853f, -0.941544065f, -0.290284677f, -0.956940336f, -0.242980180f, -0.970031253f, -0.195090322f, -0.980785280f, -0.146730474f, -0.989176510f, -0.098017140f, -0.995184727f, -0.049067674f, -0.998795456f, -0.000000000f, -1.000000000f, 0.049067674f, -0.998795456f, 0.098017140f, -0.995184727f, 0.146730474f, -0.989176510f, 0.195090322f, -0.980785280f, 0.242980180f, -0.970031253f, 0.290284677f, -0.956940336f, 0.336889853f, -0.941544065f, 0.382683432f, -0.923879533f, 0.427555093f, -0.903989293f, 0.471396737f, -0.881921264f, 0.514102744f, -0.857728610f, 0.555570233f, -0.831469612f, 0.595699304f, -0.803207531f, 0.634393284f, -0.773010453f, 0.671558955f, -0.740951125f, 0.707106781f, -0.707106781f, 0.740951125f, -0.671558955f, 0.773010453f, -0.634393284f, 0.803207531f, -0.595699304f, 0.831469612f, -0.555570233f, 0.857728610f, -0.514102744f, 0.881921264f, -0.471396737f, 0.903989293f, -0.427555093f, 0.923879533f, -0.382683432f, 0.941544065f, -0.336889853f, 0.956940336f, -0.290284677f, 0.970031253f, -0.242980180f, 0.980785280f, -0.195090322f, 0.989176510f, -0.146730474f, 0.995184727f, -0.098017140f, 0.998795456f, -0.049067674f }; /** @par Example code for Floating-point Twiddle factors Generation: @par
for(i = 0; i< N/; i++)
  {
 	twiddleCoef[2*i]   = cos(i * 2*PI/(float)N);
 	twiddleCoef[2*i+1] = sin(i * 2*PI/(float)N);
  } 
@par where N = 256, PI = 3.14159265358979 @par Cos and Sin values are in interleaved fashion */ const float32_t twiddleCoef_256[512] ARM_DSP_TABLE_ATTRIBUTE = { 1.000000000f, 0.000000000f, 0.999698819f, 0.024541229f, 0.998795456f, 0.049067674f, 0.997290457f, 0.073564564f, 0.995184727f, 0.098017140f, 0.992479535f, 0.122410675f, 0.989176510f, 0.146730474f, 0.985277642f, 0.170961889f, 0.980785280f, 0.195090322f, 0.975702130f, 0.219101240f, 0.970031253f, 0.242980180f, 0.963776066f, 0.266712757f, 0.956940336f, 0.290284677f, 0.949528181f, 0.313681740f, 0.941544065f, 0.336889853f, 0.932992799f, 0.359895037f, 0.923879533f, 0.382683432f, 0.914209756f, 0.405241314f, 0.903989293f, 0.427555093f, 0.893224301f, 0.449611330f, 0.881921264f, 0.471396737f, 0.870086991f, 0.492898192f, 0.857728610f, 0.514102744f, 0.844853565f, 0.534997620f, 0.831469612f, 0.555570233f, 0.817584813f, 0.575808191f, 0.803207531f, 0.595699304f, 0.788346428f, 0.615231591f, 0.773010453f, 0.634393284f, 0.757208847f, 0.653172843f, 0.740951125f, 0.671558955f, 0.724247083f, 0.689540545f, 0.707106781f, 0.707106781f, 0.689540545f, 0.724247083f, 0.671558955f, 0.740951125f, 0.653172843f, 0.757208847f, 0.634393284f, 0.773010453f, 0.615231591f, 0.788346428f, 0.595699304f, 0.803207531f, 0.575808191f, 0.817584813f, 0.555570233f, 0.831469612f, 0.534997620f, 0.844853565f, 0.514102744f, 0.857728610f, 0.492898192f, 0.870086991f, 0.471396737f, 0.881921264f, 0.449611330f, 0.893224301f, 0.427555093f, 0.903989293f, 0.405241314f, 0.914209756f, 0.382683432f, 0.923879533f, 0.359895037f, 0.932992799f, 0.336889853f, 0.941544065f, 0.313681740f, 0.949528181f, 0.290284677f, 0.956940336f, 0.266712757f, 0.963776066f, 0.242980180f, 0.970031253f, 0.219101240f, 0.975702130f, 0.195090322f, 0.980785280f, 0.170961889f, 0.985277642f, 0.146730474f, 0.989176510f, 0.122410675f, 0.992479535f, 0.098017140f, 0.995184727f, 0.073564564f, 0.997290457f, 0.049067674f, 0.998795456f, 0.024541229f, 0.999698819f, 0.000000000f, 1.000000000f, -0.024541229f, 0.999698819f, -0.049067674f, 0.998795456f, -0.073564564f, 0.997290457f, -0.098017140f, 0.995184727f, -0.122410675f, 0.992479535f, -0.146730474f, 0.989176510f, -0.170961889f, 0.985277642f, -0.195090322f, 0.980785280f, -0.219101240f, 0.975702130f, -0.242980180f, 0.970031253f, -0.266712757f, 0.963776066f, -0.290284677f, 0.956940336f, -0.313681740f, 0.949528181f, -0.336889853f, 0.941544065f, -0.359895037f, 0.932992799f, -0.382683432f, 0.923879533f, -0.405241314f, 0.914209756f, -0.427555093f, 0.903989293f, -0.449611330f, 0.893224301f, -0.471396737f, 0.881921264f, -0.492898192f, 0.870086991f, -0.514102744f, 0.857728610f, -0.534997620f, 0.844853565f, -0.555570233f, 0.831469612f, -0.575808191f, 0.817584813f, -0.595699304f, 0.803207531f, -0.615231591f, 0.788346428f, -0.634393284f, 0.773010453f, -0.653172843f, 0.757208847f, -0.671558955f, 0.740951125f, -0.689540545f, 0.724247083f, -0.707106781f, 0.707106781f, -0.724247083f, 0.689540545f, -0.740951125f, 0.671558955f, -0.757208847f, 0.653172843f, -0.773010453f, 0.634393284f, -0.788346428f, 0.615231591f, -0.803207531f, 0.595699304f, -0.817584813f, 0.575808191f, -0.831469612f, 0.555570233f, -0.844853565f, 0.534997620f, -0.857728610f, 0.514102744f, -0.870086991f, 0.492898192f, -0.881921264f, 0.471396737f, -0.893224301f, 0.449611330f, -0.903989293f, 0.427555093f, -0.914209756f, 0.405241314f, -0.923879533f, 0.382683432f, -0.932992799f, 0.359895037f, -0.941544065f, 0.336889853f, -0.949528181f, 0.313681740f, -0.956940336f, 0.290284677f, -0.963776066f, 0.266712757f, -0.970031253f, 0.242980180f, -0.975702130f, 0.219101240f, -0.980785280f, 0.195090322f, -0.985277642f, 0.170961889f, -0.989176510f, 0.146730474f, -0.992479535f, 0.122410675f, -0.995184727f, 0.098017140f, -0.997290457f, 0.073564564f, -0.998795456f, 0.049067674f, -0.999698819f, 0.024541229f, -1.000000000f, 0.000000000f, -0.999698819f, -0.024541229f, -0.998795456f, -0.049067674f, -0.997290457f, -0.073564564f, -0.995184727f, -0.098017140f, -0.992479535f, -0.122410675f, -0.989176510f, -0.146730474f, -0.985277642f, -0.170961889f, -0.980785280f, -0.195090322f, -0.975702130f, -0.219101240f, -0.970031253f, -0.242980180f, -0.963776066f, -0.266712757f, -0.956940336f, -0.290284677f, -0.949528181f, -0.313681740f, -0.941544065f, -0.336889853f, -0.932992799f, -0.359895037f, -0.923879533f, -0.382683432f, -0.914209756f, -0.405241314f, -0.903989293f, -0.427555093f, -0.893224301f, -0.449611330f, -0.881921264f, -0.471396737f, -0.870086991f, -0.492898192f, -0.857728610f, -0.514102744f, -0.844853565f, -0.534997620f, -0.831469612f, -0.555570233f, -0.817584813f, -0.575808191f, -0.803207531f, -0.595699304f, -0.788346428f, -0.615231591f, -0.773010453f, -0.634393284f, -0.757208847f, -0.653172843f, -0.740951125f, -0.671558955f, -0.724247083f, -0.689540545f, -0.707106781f, -0.707106781f, -0.689540545f, -0.724247083f, -0.671558955f, -0.740951125f, -0.653172843f, -0.757208847f, -0.634393284f, -0.773010453f, -0.615231591f, -0.788346428f, -0.595699304f, -0.803207531f, -0.575808191f, -0.817584813f, -0.555570233f, -0.831469612f, -0.534997620f, -0.844853565f, -0.514102744f, -0.857728610f, -0.492898192f, -0.870086991f, -0.471396737f, -0.881921264f, -0.449611330f, -0.893224301f, -0.427555093f, -0.903989293f, -0.405241314f, -0.914209756f, -0.382683432f, -0.923879533f, -0.359895037f, -0.932992799f, -0.336889853f, -0.941544065f, -0.313681740f, -0.949528181f, -0.290284677f, -0.956940336f, -0.266712757f, -0.963776066f, -0.242980180f, -0.970031253f, -0.219101240f, -0.975702130f, -0.195090322f, -0.980785280f, -0.170961889f, -0.985277642f, -0.146730474f, -0.989176510f, -0.122410675f, -0.992479535f, -0.098017140f, -0.995184727f, -0.073564564f, -0.997290457f, -0.049067674f, -0.998795456f, -0.024541229f, -0.999698819f, -0.000000000f, -1.000000000f, 0.024541229f, -0.999698819f, 0.049067674f, -0.998795456f, 0.073564564f, -0.997290457f, 0.098017140f, -0.995184727f, 0.122410675f, -0.992479535f, 0.146730474f, -0.989176510f, 0.170961889f, -0.985277642f, 0.195090322f, -0.980785280f, 0.219101240f, -0.975702130f, 0.242980180f, -0.970031253f, 0.266712757f, -0.963776066f, 0.290284677f, -0.956940336f, 0.313681740f, -0.949528181f, 0.336889853f, -0.941544065f, 0.359895037f, -0.932992799f, 0.382683432f, -0.923879533f, 0.405241314f, -0.914209756f, 0.427555093f, -0.903989293f, 0.449611330f, -0.893224301f, 0.471396737f, -0.881921264f, 0.492898192f, -0.870086991f, 0.514102744f, -0.857728610f, 0.534997620f, -0.844853565f, 0.555570233f, -0.831469612f, 0.575808191f, -0.817584813f, 0.595699304f, -0.803207531f, 0.615231591f, -0.788346428f, 0.634393284f, -0.773010453f, 0.653172843f, -0.757208847f, 0.671558955f, -0.740951125f, 0.689540545f, -0.724247083f, 0.707106781f, -0.707106781f, 0.724247083f, -0.689540545f, 0.740951125f, -0.671558955f, 0.757208847f, -0.653172843f, 0.773010453f, -0.634393284f, 0.788346428f, -0.615231591f, 0.803207531f, -0.595699304f, 0.817584813f, -0.575808191f, 0.831469612f, -0.555570233f, 0.844853565f, -0.534997620f, 0.857728610f, -0.514102744f, 0.870086991f, -0.492898192f, 0.881921264f, -0.471396737f, 0.893224301f, -0.449611330f, 0.903989293f, -0.427555093f, 0.914209756f, -0.405241314f, 0.923879533f, -0.382683432f, 0.932992799f, -0.359895037f, 0.941544065f, -0.336889853f, 0.949528181f, -0.313681740f, 0.956940336f, -0.290284677f, 0.963776066f, -0.266712757f, 0.970031253f, -0.242980180f, 0.975702130f, -0.219101240f, 0.980785280f, -0.195090322f, 0.985277642f, -0.170961889f, 0.989176510f, -0.146730474f, 0.992479535f, -0.122410675f, 0.995184727f, -0.098017140f, 0.997290457f, -0.073564564f, 0.998795456f, -0.049067674f, 0.999698819f, -0.024541229f }; /** @par Example code for Floating-point Twiddle factors Generation: @par
for (i = 0; i< N/; i++)
  {
 	twiddleCoef[2*i]   = cos(i * 2*PI/(float)N);
 	twiddleCoef[2*i+1] = sin(i * 2*PI/(float)N);
  } 
@par where N = 512, PI = 3.14159265358979 @par Cos and Sin values are in interleaved fashion */ const float32_t twiddleCoef_512[1024] ARM_DSP_TABLE_ATTRIBUTE = { 1.000000000f, 0.000000000f, 0.999924702f, 0.012271538f, 0.999698819f, 0.024541229f, 0.999322385f, 0.036807223f, 0.998795456f, 0.049067674f, 0.998118113f, 0.061320736f, 0.997290457f, 0.073564564f, 0.996312612f, 0.085797312f, 0.995184727f, 0.098017140f, 0.993906970f, 0.110222207f, 0.992479535f, 0.122410675f, 0.990902635f, 0.134580709f, 0.989176510f, 0.146730474f, 0.987301418f, 0.158858143f, 0.985277642f, 0.170961889f, 0.983105487f, 0.183039888f, 0.980785280f, 0.195090322f, 0.978317371f, 0.207111376f, 0.975702130f, 0.219101240f, 0.972939952f, 0.231058108f, 0.970031253f, 0.242980180f, 0.966976471f, 0.254865660f, 0.963776066f, 0.266712757f, 0.960430519f, 0.278519689f, 0.956940336f, 0.290284677f, 0.953306040f, 0.302005949f, 0.949528181f, 0.313681740f, 0.945607325f, 0.325310292f, 0.941544065f, 0.336889853f, 0.937339012f, 0.348418680f, 0.932992799f, 0.359895037f, 0.928506080f, 0.371317194f, 0.923879533f, 0.382683432f, 0.919113852f, 0.393992040f, 0.914209756f, 0.405241314f, 0.909167983f, 0.416429560f, 0.903989293f, 0.427555093f, 0.898674466f, 0.438616239f, 0.893224301f, 0.449611330f, 0.887639620f, 0.460538711f, 0.881921264f, 0.471396737f, 0.876070094f, 0.482183772f, 0.870086991f, 0.492898192f, 0.863972856f, 0.503538384f, 0.857728610f, 0.514102744f, 0.851355193f, 0.524589683f, 0.844853565f, 0.534997620f, 0.838224706f, 0.545324988f, 0.831469612f, 0.555570233f, 0.824589303f, 0.565731811f, 0.817584813f, 0.575808191f, 0.810457198f, 0.585797857f, 0.803207531f, 0.595699304f, 0.795836905f, 0.605511041f, 0.788346428f, 0.615231591f, 0.780737229f, 0.624859488f, 0.773010453f, 0.634393284f, 0.765167266f, 0.643831543f, 0.757208847f, 0.653172843f, 0.749136395f, 0.662415778f, 0.740951125f, 0.671558955f, 0.732654272f, 0.680600998f, 0.724247083f, 0.689540545f, 0.715730825f, 0.698376249f, 0.707106781f, 0.707106781f, 0.698376249f, 0.715730825f, 0.689540545f, 0.724247083f, 0.680600998f, 0.732654272f, 0.671558955f, 0.740951125f, 0.662415778f, 0.749136395f, 0.653172843f, 0.757208847f, 0.643831543f, 0.765167266f, 0.634393284f, 0.773010453f, 0.624859488f, 0.780737229f, 0.615231591f, 0.788346428f, 0.605511041f, 0.795836905f, 0.595699304f, 0.803207531f, 0.585797857f, 0.810457198f, 0.575808191f, 0.817584813f, 0.565731811f, 0.824589303f, 0.555570233f, 0.831469612f, 0.545324988f, 0.838224706f, 0.534997620f, 0.844853565f, 0.524589683f, 0.851355193f, 0.514102744f, 0.857728610f, 0.503538384f, 0.863972856f, 0.492898192f, 0.870086991f, 0.482183772f, 0.876070094f, 0.471396737f, 0.881921264f, 0.460538711f, 0.887639620f, 0.449611330f, 0.893224301f, 0.438616239f, 0.898674466f, 0.427555093f, 0.903989293f, 0.416429560f, 0.909167983f, 0.405241314f, 0.914209756f, 0.393992040f, 0.919113852f, 0.382683432f, 0.923879533f, 0.371317194f, 0.928506080f, 0.359895037f, 0.932992799f, 0.348418680f, 0.937339012f, 0.336889853f, 0.941544065f, 0.325310292f, 0.945607325f, 0.313681740f, 0.949528181f, 0.302005949f, 0.953306040f, 0.290284677f, 0.956940336f, 0.278519689f, 0.960430519f, 0.266712757f, 0.963776066f, 0.254865660f, 0.966976471f, 0.242980180f, 0.970031253f, 0.231058108f, 0.972939952f, 0.219101240f, 0.975702130f, 0.207111376f, 0.978317371f, 0.195090322f, 0.980785280f, 0.183039888f, 0.983105487f, 0.170961889f, 0.985277642f, 0.158858143f, 0.987301418f, 0.146730474f, 0.989176510f, 0.134580709f, 0.990902635f, 0.122410675f, 0.992479535f, 0.110222207f, 0.993906970f, 0.098017140f, 0.995184727f, 0.085797312f, 0.996312612f, 0.073564564f, 0.997290457f, 0.061320736f, 0.998118113f, 0.049067674f, 0.998795456f, 0.036807223f, 0.999322385f, 0.024541229f, 0.999698819f, 0.012271538f, 0.999924702f, 0.000000000f, 1.000000000f, -0.012271538f, 0.999924702f, -0.024541229f, 0.999698819f, -0.036807223f, 0.999322385f, -0.049067674f, 0.998795456f, -0.061320736f, 0.998118113f, -0.073564564f, 0.997290457f, -0.085797312f, 0.996312612f, -0.098017140f, 0.995184727f, -0.110222207f, 0.993906970f, -0.122410675f, 0.992479535f, -0.134580709f, 0.990902635f, -0.146730474f, 0.989176510f, -0.158858143f, 0.987301418f, -0.170961889f, 0.985277642f, -0.183039888f, 0.983105487f, -0.195090322f, 0.980785280f, -0.207111376f, 0.978317371f, -0.219101240f, 0.975702130f, -0.231058108f, 0.972939952f, -0.242980180f, 0.970031253f, -0.254865660f, 0.966976471f, -0.266712757f, 0.963776066f, -0.278519689f, 0.960430519f, -0.290284677f, 0.956940336f, -0.302005949f, 0.953306040f, -0.313681740f, 0.949528181f, -0.325310292f, 0.945607325f, -0.336889853f, 0.941544065f, -0.348418680f, 0.937339012f, -0.359895037f, 0.932992799f, -0.371317194f, 0.928506080f, -0.382683432f, 0.923879533f, -0.393992040f, 0.919113852f, -0.405241314f, 0.914209756f, -0.416429560f, 0.909167983f, -0.427555093f, 0.903989293f, -0.438616239f, 0.898674466f, -0.449611330f, 0.893224301f, -0.460538711f, 0.887639620f, -0.471396737f, 0.881921264f, -0.482183772f, 0.876070094f, -0.492898192f, 0.870086991f, -0.503538384f, 0.863972856f, -0.514102744f, 0.857728610f, -0.524589683f, 0.851355193f, -0.534997620f, 0.844853565f, -0.545324988f, 0.838224706f, -0.555570233f, 0.831469612f, -0.565731811f, 0.824589303f, -0.575808191f, 0.817584813f, -0.585797857f, 0.810457198f, -0.595699304f, 0.803207531f, -0.605511041f, 0.795836905f, -0.615231591f, 0.788346428f, -0.624859488f, 0.780737229f, -0.634393284f, 0.773010453f, -0.643831543f, 0.765167266f, -0.653172843f, 0.757208847f, -0.662415778f, 0.749136395f, -0.671558955f, 0.740951125f, -0.680600998f, 0.732654272f, -0.689540545f, 0.724247083f, -0.698376249f, 0.715730825f, -0.707106781f, 0.707106781f, -0.715730825f, 0.698376249f, -0.724247083f, 0.689540545f, -0.732654272f, 0.680600998f, -0.740951125f, 0.671558955f, -0.749136395f, 0.662415778f, -0.757208847f, 0.653172843f, -0.765167266f, 0.643831543f, -0.773010453f, 0.634393284f, -0.780737229f, 0.624859488f, -0.788346428f, 0.615231591f, -0.795836905f, 0.605511041f, -0.803207531f, 0.595699304f, -0.810457198f, 0.585797857f, -0.817584813f, 0.575808191f, -0.824589303f, 0.565731811f, -0.831469612f, 0.555570233f, -0.838224706f, 0.545324988f, -0.844853565f, 0.534997620f, -0.851355193f, 0.524589683f, -0.857728610f, 0.514102744f, -0.863972856f, 0.503538384f, -0.870086991f, 0.492898192f, -0.876070094f, 0.482183772f, -0.881921264f, 0.471396737f, -0.887639620f, 0.460538711f, -0.893224301f, 0.449611330f, -0.898674466f, 0.438616239f, -0.903989293f, 0.427555093f, -0.909167983f, 0.416429560f, -0.914209756f, 0.405241314f, -0.919113852f, 0.393992040f, -0.923879533f, 0.382683432f, -0.928506080f, 0.371317194f, -0.932992799f, 0.359895037f, -0.937339012f, 0.348418680f, -0.941544065f, 0.336889853f, -0.945607325f, 0.325310292f, -0.949528181f, 0.313681740f, -0.953306040f, 0.302005949f, -0.956940336f, 0.290284677f, -0.960430519f, 0.278519689f, -0.963776066f, 0.266712757f, -0.966976471f, 0.254865660f, -0.970031253f, 0.242980180f, -0.972939952f, 0.231058108f, -0.975702130f, 0.219101240f, -0.978317371f, 0.207111376f, -0.980785280f, 0.195090322f, -0.983105487f, 0.183039888f, -0.985277642f, 0.170961889f, -0.987301418f, 0.158858143f, -0.989176510f, 0.146730474f, -0.990902635f, 0.134580709f, -0.992479535f, 0.122410675f, -0.993906970f, 0.110222207f, -0.995184727f, 0.098017140f, -0.996312612f, 0.085797312f, -0.997290457f, 0.073564564f, -0.998118113f, 0.061320736f, -0.998795456f, 0.049067674f, -0.999322385f, 0.036807223f, -0.999698819f, 0.024541229f, -0.999924702f, 0.012271538f, -1.000000000f, 0.000000000f, -0.999924702f, -0.012271538f, -0.999698819f, -0.024541229f, -0.999322385f, -0.036807223f, -0.998795456f, -0.049067674f, -0.998118113f, -0.061320736f, -0.997290457f, -0.073564564f, -0.996312612f, -0.085797312f, -0.995184727f, -0.098017140f, -0.993906970f, -0.110222207f, -0.992479535f, -0.122410675f, -0.990902635f, -0.134580709f, -0.989176510f, -0.146730474f, -0.987301418f, -0.158858143f, -0.985277642f, -0.170961889f, -0.983105487f, -0.183039888f, -0.980785280f, -0.195090322f, -0.978317371f, -0.207111376f, -0.975702130f, -0.219101240f, -0.972939952f, -0.231058108f, -0.970031253f, -0.242980180f, -0.966976471f, -0.254865660f, -0.963776066f, -0.266712757f, -0.960430519f, -0.278519689f, -0.956940336f, -0.290284677f, -0.953306040f, -0.302005949f, -0.949528181f, -0.313681740f, -0.945607325f, -0.325310292f, -0.941544065f, -0.336889853f, -0.937339012f, -0.348418680f, -0.932992799f, -0.359895037f, -0.928506080f, -0.371317194f, -0.923879533f, -0.382683432f, -0.919113852f, -0.393992040f, -0.914209756f, -0.405241314f, -0.909167983f, -0.416429560f, -0.903989293f, -0.427555093f, -0.898674466f, -0.438616239f, -0.893224301f, -0.449611330f, -0.887639620f, -0.460538711f, -0.881921264f, -0.471396737f, -0.876070094f, -0.482183772f, -0.870086991f, -0.492898192f, -0.863972856f, -0.503538384f, -0.857728610f, -0.514102744f, -0.851355193f, -0.524589683f, -0.844853565f, -0.534997620f, -0.838224706f, -0.545324988f, -0.831469612f, -0.555570233f, -0.824589303f, -0.565731811f, -0.817584813f, -0.575808191f, -0.810457198f, -0.585797857f, -0.803207531f, -0.595699304f, -0.795836905f, -0.605511041f, -0.788346428f, -0.615231591f, -0.780737229f, -0.624859488f, -0.773010453f, -0.634393284f, -0.765167266f, -0.643831543f, -0.757208847f, -0.653172843f, -0.749136395f, -0.662415778f, -0.740951125f, -0.671558955f, -0.732654272f, -0.680600998f, -0.724247083f, -0.689540545f, -0.715730825f, -0.698376249f, -0.707106781f, -0.707106781f, -0.698376249f, -0.715730825f, -0.689540545f, -0.724247083f, -0.680600998f, -0.732654272f, -0.671558955f, -0.740951125f, -0.662415778f, -0.749136395f, -0.653172843f, -0.757208847f, -0.643831543f, -0.765167266f, -0.634393284f, -0.773010453f, -0.624859488f, -0.780737229f, -0.615231591f, -0.788346428f, -0.605511041f, -0.795836905f, -0.595699304f, -0.803207531f, -0.585797857f, -0.810457198f, -0.575808191f, -0.817584813f, -0.565731811f, -0.824589303f, -0.555570233f, -0.831469612f, -0.545324988f, -0.838224706f, -0.534997620f, -0.844853565f, -0.524589683f, -0.851355193f, -0.514102744f, -0.857728610f, -0.503538384f, -0.863972856f, -0.492898192f, -0.870086991f, -0.482183772f, -0.876070094f, -0.471396737f, -0.881921264f, -0.460538711f, -0.887639620f, -0.449611330f, -0.893224301f, -0.438616239f, -0.898674466f, -0.427555093f, -0.903989293f, -0.416429560f, -0.909167983f, -0.405241314f, -0.914209756f, -0.393992040f, -0.919113852f, -0.382683432f, -0.923879533f, -0.371317194f, -0.928506080f, -0.359895037f, -0.932992799f, -0.348418680f, -0.937339012f, -0.336889853f, -0.941544065f, -0.325310292f, -0.945607325f, -0.313681740f, -0.949528181f, -0.302005949f, -0.953306040f, -0.290284677f, -0.956940336f, -0.278519689f, -0.960430519f, -0.266712757f, -0.963776066f, -0.254865660f, -0.966976471f, -0.242980180f, -0.970031253f, -0.231058108f, -0.972939952f, -0.219101240f, -0.975702130f, -0.207111376f, -0.978317371f, -0.195090322f, -0.980785280f, -0.183039888f, -0.983105487f, -0.170961889f, -0.985277642f, -0.158858143f, -0.987301418f, -0.146730474f, -0.989176510f, -0.134580709f, -0.990902635f, -0.122410675f, -0.992479535f, -0.110222207f, -0.993906970f, -0.098017140f, -0.995184727f, -0.085797312f, -0.996312612f, -0.073564564f, -0.997290457f, -0.061320736f, -0.998118113f, -0.049067674f, -0.998795456f, -0.036807223f, -0.999322385f, -0.024541229f, -0.999698819f, -0.012271538f, -0.999924702f, -0.000000000f, -1.000000000f, 0.012271538f, -0.999924702f, 0.024541229f, -0.999698819f, 0.036807223f, -0.999322385f, 0.049067674f, -0.998795456f, 0.061320736f, -0.998118113f, 0.073564564f, -0.997290457f, 0.085797312f, -0.996312612f, 0.098017140f, -0.995184727f, 0.110222207f, -0.993906970f, 0.122410675f, -0.992479535f, 0.134580709f, -0.990902635f, 0.146730474f, -0.989176510f, 0.158858143f, -0.987301418f, 0.170961889f, -0.985277642f, 0.183039888f, -0.983105487f, 0.195090322f, -0.980785280f, 0.207111376f, -0.978317371f, 0.219101240f, -0.975702130f, 0.231058108f, -0.972939952f, 0.242980180f, -0.970031253f, 0.254865660f, -0.966976471f, 0.266712757f, -0.963776066f, 0.278519689f, -0.960430519f, 0.290284677f, -0.956940336f, 0.302005949f, -0.953306040f, 0.313681740f, -0.949528181f, 0.325310292f, -0.945607325f, 0.336889853f, -0.941544065f, 0.348418680f, -0.937339012f, 0.359895037f, -0.932992799f, 0.371317194f, -0.928506080f, 0.382683432f, -0.923879533f, 0.393992040f, -0.919113852f, 0.405241314f, -0.914209756f, 0.416429560f, -0.909167983f, 0.427555093f, -0.903989293f, 0.438616239f, -0.898674466f, 0.449611330f, -0.893224301f, 0.460538711f, -0.887639620f, 0.471396737f, -0.881921264f, 0.482183772f, -0.876070094f, 0.492898192f, -0.870086991f, 0.503538384f, -0.863972856f, 0.514102744f, -0.857728610f, 0.524589683f, -0.851355193f, 0.534997620f, -0.844853565f, 0.545324988f, -0.838224706f, 0.555570233f, -0.831469612f, 0.565731811f, -0.824589303f, 0.575808191f, -0.817584813f, 0.585797857f, -0.810457198f, 0.595699304f, -0.803207531f, 0.605511041f, -0.795836905f, 0.615231591f, -0.788346428f, 0.624859488f, -0.780737229f, 0.634393284f, -0.773010453f, 0.643831543f, -0.765167266f, 0.653172843f, -0.757208847f, 0.662415778f, -0.749136395f, 0.671558955f, -0.740951125f, 0.680600998f, -0.732654272f, 0.689540545f, -0.724247083f, 0.698376249f, -0.715730825f, 0.707106781f, -0.707106781f, 0.715730825f, -0.698376249f, 0.724247083f, -0.689540545f, 0.732654272f, -0.680600998f, 0.740951125f, -0.671558955f, 0.749136395f, -0.662415778f, 0.757208847f, -0.653172843f, 0.765167266f, -0.643831543f, 0.773010453f, -0.634393284f, 0.780737229f, -0.624859488f, 0.788346428f, -0.615231591f, 0.795836905f, -0.605511041f, 0.803207531f, -0.595699304f, 0.810457198f, -0.585797857f, 0.817584813f, -0.575808191f, 0.824589303f, -0.565731811f, 0.831469612f, -0.555570233f, 0.838224706f, -0.545324988f, 0.844853565f, -0.534997620f, 0.851355193f, -0.524589683f, 0.857728610f, -0.514102744f, 0.863972856f, -0.503538384f, 0.870086991f, -0.492898192f, 0.876070094f, -0.482183772f, 0.881921264f, -0.471396737f, 0.887639620f, -0.460538711f, 0.893224301f, -0.449611330f, 0.898674466f, -0.438616239f, 0.903989293f, -0.427555093f, 0.909167983f, -0.416429560f, 0.914209756f, -0.405241314f, 0.919113852f, -0.393992040f, 0.923879533f, -0.382683432f, 0.928506080f, -0.371317194f, 0.932992799f, -0.359895037f, 0.937339012f, -0.348418680f, 0.941544065f, -0.336889853f, 0.945607325f, -0.325310292f, 0.949528181f, -0.313681740f, 0.953306040f, -0.302005949f, 0.956940336f, -0.290284677f, 0.960430519f, -0.278519689f, 0.963776066f, -0.266712757f, 0.966976471f, -0.254865660f, 0.970031253f, -0.242980180f, 0.972939952f, -0.231058108f, 0.975702130f, -0.219101240f, 0.978317371f, -0.207111376f, 0.980785280f, -0.195090322f, 0.983105487f, -0.183039888f, 0.985277642f, -0.170961889f, 0.987301418f, -0.158858143f, 0.989176510f, -0.146730474f, 0.990902635f, -0.134580709f, 0.992479535f, -0.122410675f, 0.993906970f, -0.110222207f, 0.995184727f, -0.098017140f, 0.996312612f, -0.085797312f, 0.997290457f, -0.073564564f, 0.998118113f, -0.061320736f, 0.998795456f, -0.049067674f, 0.999322385f, -0.036807223f, 0.999698819f, -0.024541229f, 0.999924702f, -0.012271538f }; /** @par Example code for Floating-point Twiddle factors Generation: @par
for (i = 0; i< N/; i++)
  {
 	twiddleCoef[2*i]   = cos(i * 2*PI/(float)N);
 	twiddleCoef[2*i+1] = sin(i * 2*PI/(float)N);
  } 
@par where N = 1024, PI = 3.14159265358979 @par Cos and Sin values are in interleaved fashion */ const float32_t twiddleCoef_1024[2048] ARM_DSP_TABLE_ATTRIBUTE = { 1.000000000f, 0.000000000f, 0.999981175f, 0.006135885f, 0.999924702f, 0.012271538f, 0.999830582f, 0.018406730f, 0.999698819f, 0.024541229f, 0.999529418f, 0.030674803f, 0.999322385f, 0.036807223f, 0.999077728f, 0.042938257f, 0.998795456f, 0.049067674f, 0.998475581f, 0.055195244f, 0.998118113f, 0.061320736f, 0.997723067f, 0.067443920f, 0.997290457f, 0.073564564f, 0.996820299f, 0.079682438f, 0.996312612f, 0.085797312f, 0.995767414f, 0.091908956f, 0.995184727f, 0.098017140f, 0.994564571f, 0.104121634f, 0.993906970f, 0.110222207f, 0.993211949f, 0.116318631f, 0.992479535f, 0.122410675f, 0.991709754f, 0.128498111f, 0.990902635f, 0.134580709f, 0.990058210f, 0.140658239f, 0.989176510f, 0.146730474f, 0.988257568f, 0.152797185f, 0.987301418f, 0.158858143f, 0.986308097f, 0.164913120f, 0.985277642f, 0.170961889f, 0.984210092f, 0.177004220f, 0.983105487f, 0.183039888f, 0.981963869f, 0.189068664f, 0.980785280f, 0.195090322f, 0.979569766f, 0.201104635f, 0.978317371f, 0.207111376f, 0.977028143f, 0.213110320f, 0.975702130f, 0.219101240f, 0.974339383f, 0.225083911f, 0.972939952f, 0.231058108f, 0.971503891f, 0.237023606f, 0.970031253f, 0.242980180f, 0.968522094f, 0.248927606f, 0.966976471f, 0.254865660f, 0.965394442f, 0.260794118f, 0.963776066f, 0.266712757f, 0.962121404f, 0.272621355f, 0.960430519f, 0.278519689f, 0.958703475f, 0.284407537f, 0.956940336f, 0.290284677f, 0.955141168f, 0.296150888f, 0.953306040f, 0.302005949f, 0.951435021f, 0.307849640f, 0.949528181f, 0.313681740f, 0.947585591f, 0.319502031f, 0.945607325f, 0.325310292f, 0.943593458f, 0.331106306f, 0.941544065f, 0.336889853f, 0.939459224f, 0.342660717f, 0.937339012f, 0.348418680f, 0.935183510f, 0.354163525f, 0.932992799f, 0.359895037f, 0.930766961f, 0.365612998f, 0.928506080f, 0.371317194f, 0.926210242f, 0.377007410f, 0.923879533f, 0.382683432f, 0.921514039f, 0.388345047f, 0.919113852f, 0.393992040f, 0.916679060f, 0.399624200f, 0.914209756f, 0.405241314f, 0.911706032f, 0.410843171f, 0.909167983f, 0.416429560f, 0.906595705f, 0.422000271f, 0.903989293f, 0.427555093f, 0.901348847f, 0.433093819f, 0.898674466f, 0.438616239f, 0.895966250f, 0.444122145f, 0.893224301f, 0.449611330f, 0.890448723f, 0.455083587f, 0.887639620f, 0.460538711f, 0.884797098f, 0.465976496f, 0.881921264f, 0.471396737f, 0.879012226f, 0.476799230f, 0.876070094f, 0.482183772f, 0.873094978f, 0.487550160f, 0.870086991f, 0.492898192f, 0.867046246f, 0.498227667f, 0.863972856f, 0.503538384f, 0.860866939f, 0.508830143f, 0.857728610f, 0.514102744f, 0.854557988f, 0.519355990f, 0.851355193f, 0.524589683f, 0.848120345f, 0.529803625f, 0.844853565f, 0.534997620f, 0.841554977f, 0.540171473f, 0.838224706f, 0.545324988f, 0.834862875f, 0.550457973f, 0.831469612f, 0.555570233f, 0.828045045f, 0.560661576f, 0.824589303f, 0.565731811f, 0.821102515f, 0.570780746f, 0.817584813f, 0.575808191f, 0.814036330f, 0.580813958f, 0.810457198f, 0.585797857f, 0.806847554f, 0.590759702f, 0.803207531f, 0.595699304f, 0.799537269f, 0.600616479f, 0.795836905f, 0.605511041f, 0.792106577f, 0.610382806f, 0.788346428f, 0.615231591f, 0.784556597f, 0.620057212f, 0.780737229f, 0.624859488f, 0.776888466f, 0.629638239f, 0.773010453f, 0.634393284f, 0.769103338f, 0.639124445f, 0.765167266f, 0.643831543f, 0.761202385f, 0.648514401f, 0.757208847f, 0.653172843f, 0.753186799f, 0.657806693f, 0.749136395f, 0.662415778f, 0.745057785f, 0.666999922f, 0.740951125f, 0.671558955f, 0.736816569f, 0.676092704f, 0.732654272f, 0.680600998f, 0.728464390f, 0.685083668f, 0.724247083f, 0.689540545f, 0.720002508f, 0.693971461f, 0.715730825f, 0.698376249f, 0.711432196f, 0.702754744f, 0.707106781f, 0.707106781f, 0.702754744f, 0.711432196f, 0.698376249f, 0.715730825f, 0.693971461f, 0.720002508f, 0.689540545f, 0.724247083f, 0.685083668f, 0.728464390f, 0.680600998f, 0.732654272f, 0.676092704f, 0.736816569f, 0.671558955f, 0.740951125f, 0.666999922f, 0.745057785f, 0.662415778f, 0.749136395f, 0.657806693f, 0.753186799f, 0.653172843f, 0.757208847f, 0.648514401f, 0.761202385f, 0.643831543f, 0.765167266f, 0.639124445f, 0.769103338f, 0.634393284f, 0.773010453f, 0.629638239f, 0.776888466f, 0.624859488f, 0.780737229f, 0.620057212f, 0.784556597f, 0.615231591f, 0.788346428f, 0.610382806f, 0.792106577f, 0.605511041f, 0.795836905f, 0.600616479f, 0.799537269f, 0.595699304f, 0.803207531f, 0.590759702f, 0.806847554f, 0.585797857f, 0.810457198f, 0.580813958f, 0.814036330f, 0.575808191f, 0.817584813f, 0.570780746f, 0.821102515f, 0.565731811f, 0.824589303f, 0.560661576f, 0.828045045f, 0.555570233f, 0.831469612f, 0.550457973f, 0.834862875f, 0.545324988f, 0.838224706f, 0.540171473f, 0.841554977f, 0.534997620f, 0.844853565f, 0.529803625f, 0.848120345f, 0.524589683f, 0.851355193f, 0.519355990f, 0.854557988f, 0.514102744f, 0.857728610f, 0.508830143f, 0.860866939f, 0.503538384f, 0.863972856f, 0.498227667f, 0.867046246f, 0.492898192f, 0.870086991f, 0.487550160f, 0.873094978f, 0.482183772f, 0.876070094f, 0.476799230f, 0.879012226f, 0.471396737f, 0.881921264f, 0.465976496f, 0.884797098f, 0.460538711f, 0.887639620f, 0.455083587f, 0.890448723f, 0.449611330f, 0.893224301f, 0.444122145f, 0.895966250f, 0.438616239f, 0.898674466f, 0.433093819f, 0.901348847f, 0.427555093f, 0.903989293f, 0.422000271f, 0.906595705f, 0.416429560f, 0.909167983f, 0.410843171f, 0.911706032f, 0.405241314f, 0.914209756f, 0.399624200f, 0.916679060f, 0.393992040f, 0.919113852f, 0.388345047f, 0.921514039f, 0.382683432f, 0.923879533f, 0.377007410f, 0.926210242f, 0.371317194f, 0.928506080f, 0.365612998f, 0.930766961f, 0.359895037f, 0.932992799f, 0.354163525f, 0.935183510f, 0.348418680f, 0.937339012f, 0.342660717f, 0.939459224f, 0.336889853f, 0.941544065f, 0.331106306f, 0.943593458f, 0.325310292f, 0.945607325f, 0.319502031f, 0.947585591f, 0.313681740f, 0.949528181f, 0.307849640f, 0.951435021f, 0.302005949f, 0.953306040f, 0.296150888f, 0.955141168f, 0.290284677f, 0.956940336f, 0.284407537f, 0.958703475f, 0.278519689f, 0.960430519f, 0.272621355f, 0.962121404f, 0.266712757f, 0.963776066f, 0.260794118f, 0.965394442f, 0.254865660f, 0.966976471f, 0.248927606f, 0.968522094f, 0.242980180f, 0.970031253f, 0.237023606f, 0.971503891f, 0.231058108f, 0.972939952f, 0.225083911f, 0.974339383f, 0.219101240f, 0.975702130f, 0.213110320f, 0.977028143f, 0.207111376f, 0.978317371f, 0.201104635f, 0.979569766f, 0.195090322f, 0.980785280f, 0.189068664f, 0.981963869f, 0.183039888f, 0.983105487f, 0.177004220f, 0.984210092f, 0.170961889f, 0.985277642f, 0.164913120f, 0.986308097f, 0.158858143f, 0.987301418f, 0.152797185f, 0.988257568f, 0.146730474f, 0.989176510f, 0.140658239f, 0.990058210f, 0.134580709f, 0.990902635f, 0.128498111f, 0.991709754f, 0.122410675f, 0.992479535f, 0.116318631f, 0.993211949f, 0.110222207f, 0.993906970f, 0.104121634f, 0.994564571f, 0.098017140f, 0.995184727f, 0.091908956f, 0.995767414f, 0.085797312f, 0.996312612f, 0.079682438f, 0.996820299f, 0.073564564f, 0.997290457f, 0.067443920f, 0.997723067f, 0.061320736f, 0.998118113f, 0.055195244f, 0.998475581f, 0.049067674f, 0.998795456f, 0.042938257f, 0.999077728f, 0.036807223f, 0.999322385f, 0.030674803f, 0.999529418f, 0.024541229f, 0.999698819f, 0.018406730f, 0.999830582f, 0.012271538f, 0.999924702f, 0.006135885f, 0.999981175f, 0.000000000f, 1.000000000f, -0.006135885f, 0.999981175f, -0.012271538f, 0.999924702f, -0.018406730f, 0.999830582f, -0.024541229f, 0.999698819f, -0.030674803f, 0.999529418f, -0.036807223f, 0.999322385f, -0.042938257f, 0.999077728f, -0.049067674f, 0.998795456f, -0.055195244f, 0.998475581f, -0.061320736f, 0.998118113f, -0.067443920f, 0.997723067f, -0.073564564f, 0.997290457f, -0.079682438f, 0.996820299f, -0.085797312f, 0.996312612f, -0.091908956f, 0.995767414f, -0.098017140f, 0.995184727f, -0.104121634f, 0.994564571f, -0.110222207f, 0.993906970f, -0.116318631f, 0.993211949f, -0.122410675f, 0.992479535f, -0.128498111f, 0.991709754f, -0.134580709f, 0.990902635f, -0.140658239f, 0.990058210f, -0.146730474f, 0.989176510f, -0.152797185f, 0.988257568f, -0.158858143f, 0.987301418f, -0.164913120f, 0.986308097f, -0.170961889f, 0.985277642f, -0.177004220f, 0.984210092f, -0.183039888f, 0.983105487f, -0.189068664f, 0.981963869f, -0.195090322f, 0.980785280f, -0.201104635f, 0.979569766f, -0.207111376f, 0.978317371f, -0.213110320f, 0.977028143f, -0.219101240f, 0.975702130f, -0.225083911f, 0.974339383f, -0.231058108f, 0.972939952f, -0.237023606f, 0.971503891f, -0.242980180f, 0.970031253f, -0.248927606f, 0.968522094f, -0.254865660f, 0.966976471f, -0.260794118f, 0.965394442f, -0.266712757f, 0.963776066f, -0.272621355f, 0.962121404f, -0.278519689f, 0.960430519f, -0.284407537f, 0.958703475f, -0.290284677f, 0.956940336f, -0.296150888f, 0.955141168f, -0.302005949f, 0.953306040f, -0.307849640f, 0.951435021f, -0.313681740f, 0.949528181f, -0.319502031f, 0.947585591f, -0.325310292f, 0.945607325f, -0.331106306f, 0.943593458f, -0.336889853f, 0.941544065f, -0.342660717f, 0.939459224f, -0.348418680f, 0.937339012f, -0.354163525f, 0.935183510f, -0.359895037f, 0.932992799f, -0.365612998f, 0.930766961f, -0.371317194f, 0.928506080f, -0.377007410f, 0.926210242f, -0.382683432f, 0.923879533f, -0.388345047f, 0.921514039f, -0.393992040f, 0.919113852f, -0.399624200f, 0.916679060f, -0.405241314f, 0.914209756f, -0.410843171f, 0.911706032f, -0.416429560f, 0.909167983f, -0.422000271f, 0.906595705f, -0.427555093f, 0.903989293f, -0.433093819f, 0.901348847f, -0.438616239f, 0.898674466f, -0.444122145f, 0.895966250f, -0.449611330f, 0.893224301f, -0.455083587f, 0.890448723f, -0.460538711f, 0.887639620f, -0.465976496f, 0.884797098f, -0.471396737f, 0.881921264f, -0.476799230f, 0.879012226f, -0.482183772f, 0.876070094f, -0.487550160f, 0.873094978f, -0.492898192f, 0.870086991f, -0.498227667f, 0.867046246f, -0.503538384f, 0.863972856f, -0.508830143f, 0.860866939f, -0.514102744f, 0.857728610f, -0.519355990f, 0.854557988f, -0.524589683f, 0.851355193f, -0.529803625f, 0.848120345f, -0.534997620f, 0.844853565f, -0.540171473f, 0.841554977f, -0.545324988f, 0.838224706f, -0.550457973f, 0.834862875f, -0.555570233f, 0.831469612f, -0.560661576f, 0.828045045f, -0.565731811f, 0.824589303f, -0.570780746f, 0.821102515f, -0.575808191f, 0.817584813f, -0.580813958f, 0.814036330f, -0.585797857f, 0.810457198f, -0.590759702f, 0.806847554f, -0.595699304f, 0.803207531f, -0.600616479f, 0.799537269f, -0.605511041f, 0.795836905f, -0.610382806f, 0.792106577f, -0.615231591f, 0.788346428f, -0.620057212f, 0.784556597f, -0.624859488f, 0.780737229f, -0.629638239f, 0.776888466f, -0.634393284f, 0.773010453f, -0.639124445f, 0.769103338f, -0.643831543f, 0.765167266f, -0.648514401f, 0.761202385f, -0.653172843f, 0.757208847f, -0.657806693f, 0.753186799f, -0.662415778f, 0.749136395f, -0.666999922f, 0.745057785f, -0.671558955f, 0.740951125f, -0.676092704f, 0.736816569f, -0.680600998f, 0.732654272f, -0.685083668f, 0.728464390f, -0.689540545f, 0.724247083f, -0.693971461f, 0.720002508f, -0.698376249f, 0.715730825f, -0.702754744f, 0.711432196f, -0.707106781f, 0.707106781f, -0.711432196f, 0.702754744f, -0.715730825f, 0.698376249f, -0.720002508f, 0.693971461f, -0.724247083f, 0.689540545f, -0.728464390f, 0.685083668f, -0.732654272f, 0.680600998f, -0.736816569f, 0.676092704f, -0.740951125f, 0.671558955f, -0.745057785f, 0.666999922f, -0.749136395f, 0.662415778f, -0.753186799f, 0.657806693f, -0.757208847f, 0.653172843f, -0.761202385f, 0.648514401f, -0.765167266f, 0.643831543f, -0.769103338f, 0.639124445f, -0.773010453f, 0.634393284f, -0.776888466f, 0.629638239f, -0.780737229f, 0.624859488f, -0.784556597f, 0.620057212f, -0.788346428f, 0.615231591f, -0.792106577f, 0.610382806f, -0.795836905f, 0.605511041f, -0.799537269f, 0.600616479f, -0.803207531f, 0.595699304f, -0.806847554f, 0.590759702f, -0.810457198f, 0.585797857f, -0.814036330f, 0.580813958f, -0.817584813f, 0.575808191f, -0.821102515f, 0.570780746f, -0.824589303f, 0.565731811f, -0.828045045f, 0.560661576f, -0.831469612f, 0.555570233f, -0.834862875f, 0.550457973f, -0.838224706f, 0.545324988f, -0.841554977f, 0.540171473f, -0.844853565f, 0.534997620f, -0.848120345f, 0.529803625f, -0.851355193f, 0.524589683f, -0.854557988f, 0.519355990f, -0.857728610f, 0.514102744f, -0.860866939f, 0.508830143f, -0.863972856f, 0.503538384f, -0.867046246f, 0.498227667f, -0.870086991f, 0.492898192f, -0.873094978f, 0.487550160f, -0.876070094f, 0.482183772f, -0.879012226f, 0.476799230f, -0.881921264f, 0.471396737f, -0.884797098f, 0.465976496f, -0.887639620f, 0.460538711f, -0.890448723f, 0.455083587f, -0.893224301f, 0.449611330f, -0.895966250f, 0.444122145f, -0.898674466f, 0.438616239f, -0.901348847f, 0.433093819f, -0.903989293f, 0.427555093f, -0.906595705f, 0.422000271f, -0.909167983f, 0.416429560f, -0.911706032f, 0.410843171f, -0.914209756f, 0.405241314f, -0.916679060f, 0.399624200f, -0.919113852f, 0.393992040f, -0.921514039f, 0.388345047f, -0.923879533f, 0.382683432f, -0.926210242f, 0.377007410f, -0.928506080f, 0.371317194f, -0.930766961f, 0.365612998f, -0.932992799f, 0.359895037f, -0.935183510f, 0.354163525f, -0.937339012f, 0.348418680f, -0.939459224f, 0.342660717f, -0.941544065f, 0.336889853f, -0.943593458f, 0.331106306f, -0.945607325f, 0.325310292f, -0.947585591f, 0.319502031f, -0.949528181f, 0.313681740f, -0.951435021f, 0.307849640f, -0.953306040f, 0.302005949f, -0.955141168f, 0.296150888f, -0.956940336f, 0.290284677f, -0.958703475f, 0.284407537f, -0.960430519f, 0.278519689f, -0.962121404f, 0.272621355f, -0.963776066f, 0.266712757f, -0.965394442f, 0.260794118f, -0.966976471f, 0.254865660f, -0.968522094f, 0.248927606f, -0.970031253f, 0.242980180f, -0.971503891f, 0.237023606f, -0.972939952f, 0.231058108f, -0.974339383f, 0.225083911f, -0.975702130f, 0.219101240f, -0.977028143f, 0.213110320f, -0.978317371f, 0.207111376f, -0.979569766f, 0.201104635f, -0.980785280f, 0.195090322f, -0.981963869f, 0.189068664f, -0.983105487f, 0.183039888f, -0.984210092f, 0.177004220f, -0.985277642f, 0.170961889f, -0.986308097f, 0.164913120f, -0.987301418f, 0.158858143f, -0.988257568f, 0.152797185f, -0.989176510f, 0.146730474f, -0.990058210f, 0.140658239f, -0.990902635f, 0.134580709f, -0.991709754f, 0.128498111f, -0.992479535f, 0.122410675f, -0.993211949f, 0.116318631f, -0.993906970f, 0.110222207f, -0.994564571f, 0.104121634f, -0.995184727f, 0.098017140f, -0.995767414f, 0.091908956f, -0.996312612f, 0.085797312f, -0.996820299f, 0.079682438f, -0.997290457f, 0.073564564f, -0.997723067f, 0.067443920f, -0.998118113f, 0.061320736f, -0.998475581f, 0.055195244f, -0.998795456f, 0.049067674f, -0.999077728f, 0.042938257f, -0.999322385f, 0.036807223f, -0.999529418f, 0.030674803f, -0.999698819f, 0.024541229f, -0.999830582f, 0.018406730f, -0.999924702f, 0.012271538f, -0.999981175f, 0.006135885f, -1.000000000f, 0.000000000f, -0.999981175f, -0.006135885f, -0.999924702f, -0.012271538f, -0.999830582f, -0.018406730f, -0.999698819f, -0.024541229f, -0.999529418f, -0.030674803f, -0.999322385f, -0.036807223f, -0.999077728f, -0.042938257f, -0.998795456f, -0.049067674f, -0.998475581f, -0.055195244f, -0.998118113f, -0.061320736f, -0.997723067f, -0.067443920f, -0.997290457f, -0.073564564f, -0.996820299f, -0.079682438f, -0.996312612f, -0.085797312f, -0.995767414f, -0.091908956f, -0.995184727f, -0.098017140f, -0.994564571f, -0.104121634f, -0.993906970f, -0.110222207f, -0.993211949f, -0.116318631f, -0.992479535f, -0.122410675f, -0.991709754f, -0.128498111f, -0.990902635f, -0.134580709f, -0.990058210f, -0.140658239f, -0.989176510f, -0.146730474f, -0.988257568f, -0.152797185f, -0.987301418f, -0.158858143f, -0.986308097f, -0.164913120f, -0.985277642f, -0.170961889f, -0.984210092f, -0.177004220f, -0.983105487f, -0.183039888f, -0.981963869f, -0.189068664f, -0.980785280f, -0.195090322f, -0.979569766f, -0.201104635f, -0.978317371f, -0.207111376f, -0.977028143f, -0.213110320f, -0.975702130f, -0.219101240f, -0.974339383f, -0.225083911f, -0.972939952f, -0.231058108f, -0.971503891f, -0.237023606f, -0.970031253f, -0.242980180f, -0.968522094f, -0.248927606f, -0.966976471f, -0.254865660f, -0.965394442f, -0.260794118f, -0.963776066f, -0.266712757f, -0.962121404f, -0.272621355f, -0.960430519f, -0.278519689f, -0.958703475f, -0.284407537f, -0.956940336f, -0.290284677f, -0.955141168f, -0.296150888f, -0.953306040f, -0.302005949f, -0.951435021f, -0.307849640f, -0.949528181f, -0.313681740f, -0.947585591f, -0.319502031f, -0.945607325f, -0.325310292f, -0.943593458f, -0.331106306f, -0.941544065f, -0.336889853f, -0.939459224f, -0.342660717f, -0.937339012f, -0.348418680f, -0.935183510f, -0.354163525f, -0.932992799f, -0.359895037f, -0.930766961f, -0.365612998f, -0.928506080f, -0.371317194f, -0.926210242f, -0.377007410f, -0.923879533f, -0.382683432f, -0.921514039f, -0.388345047f, -0.919113852f, -0.393992040f, -0.916679060f, -0.399624200f, -0.914209756f, -0.405241314f, -0.911706032f, -0.410843171f, -0.909167983f, -0.416429560f, -0.906595705f, -0.422000271f, -0.903989293f, -0.427555093f, -0.901348847f, -0.433093819f, -0.898674466f, -0.438616239f, -0.895966250f, -0.444122145f, -0.893224301f, -0.449611330f, -0.890448723f, -0.455083587f, -0.887639620f, -0.460538711f, -0.884797098f, -0.465976496f, -0.881921264f, -0.471396737f, -0.879012226f, -0.476799230f, -0.876070094f, -0.482183772f, -0.873094978f, -0.487550160f, -0.870086991f, -0.492898192f, -0.867046246f, -0.498227667f, -0.863972856f, -0.503538384f, -0.860866939f, -0.508830143f, -0.857728610f, -0.514102744f, -0.854557988f, -0.519355990f, -0.851355193f, -0.524589683f, -0.848120345f, -0.529803625f, -0.844853565f, -0.534997620f, -0.841554977f, -0.540171473f, -0.838224706f, -0.545324988f, -0.834862875f, -0.550457973f, -0.831469612f, -0.555570233f, -0.828045045f, -0.560661576f, -0.824589303f, -0.565731811f, -0.821102515f, -0.570780746f, -0.817584813f, -0.575808191f, -0.814036330f, -0.580813958f, -0.810457198f, -0.585797857f, -0.806847554f, -0.590759702f, -0.803207531f, -0.595699304f, -0.799537269f, -0.600616479f, -0.795836905f, -0.605511041f, -0.792106577f, -0.610382806f, -0.788346428f, -0.615231591f, -0.784556597f, -0.620057212f, -0.780737229f, -0.624859488f, -0.776888466f, -0.629638239f, -0.773010453f, -0.634393284f, -0.769103338f, -0.639124445f, -0.765167266f, -0.643831543f, -0.761202385f, -0.648514401f, -0.757208847f, -0.653172843f, -0.753186799f, -0.657806693f, -0.749136395f, -0.662415778f, -0.745057785f, -0.666999922f, -0.740951125f, -0.671558955f, -0.736816569f, -0.676092704f, -0.732654272f, -0.680600998f, -0.728464390f, -0.685083668f, -0.724247083f, -0.689540545f, -0.720002508f, -0.693971461f, -0.715730825f, -0.698376249f, -0.711432196f, -0.702754744f, -0.707106781f, -0.707106781f, -0.702754744f, -0.711432196f, -0.698376249f, -0.715730825f, -0.693971461f, -0.720002508f, -0.689540545f, -0.724247083f, -0.685083668f, -0.728464390f, -0.680600998f, -0.732654272f, -0.676092704f, -0.736816569f, -0.671558955f, -0.740951125f, -0.666999922f, -0.745057785f, -0.662415778f, -0.749136395f, -0.657806693f, -0.753186799f, -0.653172843f, -0.757208847f, -0.648514401f, -0.761202385f, -0.643831543f, -0.765167266f, -0.639124445f, -0.769103338f, -0.634393284f, -0.773010453f, -0.629638239f, -0.776888466f, -0.624859488f, -0.780737229f, -0.620057212f, -0.784556597f, -0.615231591f, -0.788346428f, -0.610382806f, -0.792106577f, -0.605511041f, -0.795836905f, -0.600616479f, -0.799537269f, -0.595699304f, -0.803207531f, -0.590759702f, -0.806847554f, -0.585797857f, -0.810457198f, -0.580813958f, -0.814036330f, -0.575808191f, -0.817584813f, -0.570780746f, -0.821102515f, -0.565731811f, -0.824589303f, -0.560661576f, -0.828045045f, -0.555570233f, -0.831469612f, -0.550457973f, -0.834862875f, -0.545324988f, -0.838224706f, -0.540171473f, -0.841554977f, -0.534997620f, -0.844853565f, -0.529803625f, -0.848120345f, -0.524589683f, -0.851355193f, -0.519355990f, -0.854557988f, -0.514102744f, -0.857728610f, -0.508830143f, -0.860866939f, -0.503538384f, -0.863972856f, -0.498227667f, -0.867046246f, -0.492898192f, -0.870086991f, -0.487550160f, -0.873094978f, -0.482183772f, -0.876070094f, -0.476799230f, -0.879012226f, -0.471396737f, -0.881921264f, -0.465976496f, -0.884797098f, -0.460538711f, -0.887639620f, -0.455083587f, -0.890448723f, -0.449611330f, -0.893224301f, -0.444122145f, -0.895966250f, -0.438616239f, -0.898674466f, -0.433093819f, -0.901348847f, -0.427555093f, -0.903989293f, -0.422000271f, -0.906595705f, -0.416429560f, -0.909167983f, -0.410843171f, -0.911706032f, -0.405241314f, -0.914209756f, -0.399624200f, -0.916679060f, -0.393992040f, -0.919113852f, -0.388345047f, -0.921514039f, -0.382683432f, -0.923879533f, -0.377007410f, -0.926210242f, -0.371317194f, -0.928506080f, -0.365612998f, -0.930766961f, -0.359895037f, -0.932992799f, -0.354163525f, -0.935183510f, -0.348418680f, -0.937339012f, -0.342660717f, -0.939459224f, -0.336889853f, -0.941544065f, -0.331106306f, -0.943593458f, -0.325310292f, -0.945607325f, -0.319502031f, -0.947585591f, -0.313681740f, -0.949528181f, -0.307849640f, -0.951435021f, -0.302005949f, -0.953306040f, -0.296150888f, -0.955141168f, -0.290284677f, -0.956940336f, -0.284407537f, -0.958703475f, -0.278519689f, -0.960430519f, -0.272621355f, -0.962121404f, -0.266712757f, -0.963776066f, -0.260794118f, -0.965394442f, -0.254865660f, -0.966976471f, -0.248927606f, -0.968522094f, -0.242980180f, -0.970031253f, -0.237023606f, -0.971503891f, -0.231058108f, -0.972939952f, -0.225083911f, -0.974339383f, -0.219101240f, -0.975702130f, -0.213110320f, -0.977028143f, -0.207111376f, -0.978317371f, -0.201104635f, -0.979569766f, -0.195090322f, -0.980785280f, -0.189068664f, -0.981963869f, -0.183039888f, -0.983105487f, -0.177004220f, -0.984210092f, -0.170961889f, -0.985277642f, -0.164913120f, -0.986308097f, -0.158858143f, -0.987301418f, -0.152797185f, -0.988257568f, -0.146730474f, -0.989176510f, -0.140658239f, -0.990058210f, -0.134580709f, -0.990902635f, -0.128498111f, -0.991709754f, -0.122410675f, -0.992479535f, -0.116318631f, -0.993211949f, -0.110222207f, -0.993906970f, -0.104121634f, -0.994564571f, -0.098017140f, -0.995184727f, -0.091908956f, -0.995767414f, -0.085797312f, -0.996312612f, -0.079682438f, -0.996820299f, -0.073564564f, -0.997290457f, -0.067443920f, -0.997723067f, -0.061320736f, -0.998118113f, -0.055195244f, -0.998475581f, -0.049067674f, -0.998795456f, -0.042938257f, -0.999077728f, -0.036807223f, -0.999322385f, -0.030674803f, -0.999529418f, -0.024541229f, -0.999698819f, -0.018406730f, -0.999830582f, -0.012271538f, -0.999924702f, -0.006135885f, -0.999981175f, -0.000000000f, -1.000000000f, 0.006135885f, -0.999981175f, 0.012271538f, -0.999924702f, 0.018406730f, -0.999830582f, 0.024541229f, -0.999698819f, 0.030674803f, -0.999529418f, 0.036807223f, -0.999322385f, 0.042938257f, -0.999077728f, 0.049067674f, -0.998795456f, 0.055195244f, -0.998475581f, 0.061320736f, -0.998118113f, 0.067443920f, -0.997723067f, 0.073564564f, -0.997290457f, 0.079682438f, -0.996820299f, 0.085797312f, -0.996312612f, 0.091908956f, -0.995767414f, 0.098017140f, -0.995184727f, 0.104121634f, -0.994564571f, 0.110222207f, -0.993906970f, 0.116318631f, -0.993211949f, 0.122410675f, -0.992479535f, 0.128498111f, -0.991709754f, 0.134580709f, -0.990902635f, 0.140658239f, -0.990058210f, 0.146730474f, -0.989176510f, 0.152797185f, -0.988257568f, 0.158858143f, -0.987301418f, 0.164913120f, -0.986308097f, 0.170961889f, -0.985277642f, 0.177004220f, -0.984210092f, 0.183039888f, -0.983105487f, 0.189068664f, -0.981963869f, 0.195090322f, -0.980785280f, 0.201104635f, -0.979569766f, 0.207111376f, -0.978317371f, 0.213110320f, -0.977028143f, 0.219101240f, -0.975702130f, 0.225083911f, -0.974339383f, 0.231058108f, -0.972939952f, 0.237023606f, -0.971503891f, 0.242980180f, -0.970031253f, 0.248927606f, -0.968522094f, 0.254865660f, -0.966976471f, 0.260794118f, -0.965394442f, 0.266712757f, -0.963776066f, 0.272621355f, -0.962121404f, 0.278519689f, -0.960430519f, 0.284407537f, -0.958703475f, 0.290284677f, -0.956940336f, 0.296150888f, -0.955141168f, 0.302005949f, -0.953306040f, 0.307849640f, -0.951435021f, 0.313681740f, -0.949528181f, 0.319502031f, -0.947585591f, 0.325310292f, -0.945607325f, 0.331106306f, -0.943593458f, 0.336889853f, -0.941544065f, 0.342660717f, -0.939459224f, 0.348418680f, -0.937339012f, 0.354163525f, -0.935183510f, 0.359895037f, -0.932992799f, 0.365612998f, -0.930766961f, 0.371317194f, -0.928506080f, 0.377007410f, -0.926210242f, 0.382683432f, -0.923879533f, 0.388345047f, -0.921514039f, 0.393992040f, -0.919113852f, 0.399624200f, -0.916679060f, 0.405241314f, -0.914209756f, 0.410843171f, -0.911706032f, 0.416429560f, -0.909167983f, 0.422000271f, -0.906595705f, 0.427555093f, -0.903989293f, 0.433093819f, -0.901348847f, 0.438616239f, -0.898674466f, 0.444122145f, -0.895966250f, 0.449611330f, -0.893224301f, 0.455083587f, -0.890448723f, 0.460538711f, -0.887639620f, 0.465976496f, -0.884797098f, 0.471396737f, -0.881921264f, 0.476799230f, -0.879012226f, 0.482183772f, -0.876070094f, 0.487550160f, -0.873094978f, 0.492898192f, -0.870086991f, 0.498227667f, -0.867046246f, 0.503538384f, -0.863972856f, 0.508830143f, -0.860866939f, 0.514102744f, -0.857728610f, 0.519355990f, -0.854557988f, 0.524589683f, -0.851355193f, 0.529803625f, -0.848120345f, 0.534997620f, -0.844853565f, 0.540171473f, -0.841554977f, 0.545324988f, -0.838224706f, 0.550457973f, -0.834862875f, 0.555570233f, -0.831469612f, 0.560661576f, -0.828045045f, 0.565731811f, -0.824589303f, 0.570780746f, -0.821102515f, 0.575808191f, -0.817584813f, 0.580813958f, -0.814036330f, 0.585797857f, -0.810457198f, 0.590759702f, -0.806847554f, 0.595699304f, -0.803207531f, 0.600616479f, -0.799537269f, 0.605511041f, -0.795836905f, 0.610382806f, -0.792106577f, 0.615231591f, -0.788346428f, 0.620057212f, -0.784556597f, 0.624859488f, -0.780737229f, 0.629638239f, -0.776888466f, 0.634393284f, -0.773010453f, 0.639124445f, -0.769103338f, 0.643831543f, -0.765167266f, 0.648514401f, -0.761202385f, 0.653172843f, -0.757208847f, 0.657806693f, -0.753186799f, 0.662415778f, -0.749136395f, 0.666999922f, -0.745057785f, 0.671558955f, -0.740951125f, 0.676092704f, -0.736816569f, 0.680600998f, -0.732654272f, 0.685083668f, -0.728464390f, 0.689540545f, -0.724247083f, 0.693971461f, -0.720002508f, 0.698376249f, -0.715730825f, 0.702754744f, -0.711432196f, 0.707106781f, -0.707106781f, 0.711432196f, -0.702754744f, 0.715730825f, -0.698376249f, 0.720002508f, -0.693971461f, 0.724247083f, -0.689540545f, 0.728464390f, -0.685083668f, 0.732654272f, -0.680600998f, 0.736816569f, -0.676092704f, 0.740951125f, -0.671558955f, 0.745057785f, -0.666999922f, 0.749136395f, -0.662415778f, 0.753186799f, -0.657806693f, 0.757208847f, -0.653172843f, 0.761202385f, -0.648514401f, 0.765167266f, -0.643831543f, 0.769103338f, -0.639124445f, 0.773010453f, -0.634393284f, 0.776888466f, -0.629638239f, 0.780737229f, -0.624859488f, 0.784556597f, -0.620057212f, 0.788346428f, -0.615231591f, 0.792106577f, -0.610382806f, 0.795836905f, -0.605511041f, 0.799537269f, -0.600616479f, 0.803207531f, -0.595699304f, 0.806847554f, -0.590759702f, 0.810457198f, -0.585797857f, 0.814036330f, -0.580813958f, 0.817584813f, -0.575808191f, 0.821102515f, -0.570780746f, 0.824589303f, -0.565731811f, 0.828045045f, -0.560661576f, 0.831469612f, -0.555570233f, 0.834862875f, -0.550457973f, 0.838224706f, -0.545324988f, 0.841554977f, -0.540171473f, 0.844853565f, -0.534997620f, 0.848120345f, -0.529803625f, 0.851355193f, -0.524589683f, 0.854557988f, -0.519355990f, 0.857728610f, -0.514102744f, 0.860866939f, -0.508830143f, 0.863972856f, -0.503538384f, 0.867046246f, -0.498227667f, 0.870086991f, -0.492898192f, 0.873094978f, -0.487550160f, 0.876070094f, -0.482183772f, 0.879012226f, -0.476799230f, 0.881921264f, -0.471396737f, 0.884797098f, -0.465976496f, 0.887639620f, -0.460538711f, 0.890448723f, -0.455083587f, 0.893224301f, -0.449611330f, 0.895966250f, -0.444122145f, 0.898674466f, -0.438616239f, 0.901348847f, -0.433093819f, 0.903989293f, -0.427555093f, 0.906595705f, -0.422000271f, 0.909167983f, -0.416429560f, 0.911706032f, -0.410843171f, 0.914209756f, -0.405241314f, 0.916679060f, -0.399624200f, 0.919113852f, -0.393992040f, 0.921514039f, -0.388345047f, 0.923879533f, -0.382683432f, 0.926210242f, -0.377007410f, 0.928506080f, -0.371317194f, 0.930766961f, -0.365612998f, 0.932992799f, -0.359895037f, 0.935183510f, -0.354163525f, 0.937339012f, -0.348418680f, 0.939459224f, -0.342660717f, 0.941544065f, -0.336889853f, 0.943593458f, -0.331106306f, 0.945607325f, -0.325310292f, 0.947585591f, -0.319502031f, 0.949528181f, -0.313681740f, 0.951435021f, -0.307849640f, 0.953306040f, -0.302005949f, 0.955141168f, -0.296150888f, 0.956940336f, -0.290284677f, 0.958703475f, -0.284407537f, 0.960430519f, -0.278519689f, 0.962121404f, -0.272621355f, 0.963776066f, -0.266712757f, 0.965394442f, -0.260794118f, 0.966976471f, -0.254865660f, 0.968522094f, -0.248927606f, 0.970031253f, -0.242980180f, 0.971503891f, -0.237023606f, 0.972939952f, -0.231058108f, 0.974339383f, -0.225083911f, 0.975702130f, -0.219101240f, 0.977028143f, -0.213110320f, 0.978317371f, -0.207111376f, 0.979569766f, -0.201104635f, 0.980785280f, -0.195090322f, 0.981963869f, -0.189068664f, 0.983105487f, -0.183039888f, 0.984210092f, -0.177004220f, 0.985277642f, -0.170961889f, 0.986308097f, -0.164913120f, 0.987301418f, -0.158858143f, 0.988257568f, -0.152797185f, 0.989176510f, -0.146730474f, 0.990058210f, -0.140658239f, 0.990902635f, -0.134580709f, 0.991709754f, -0.128498111f, 0.992479535f, -0.122410675f, 0.993211949f, -0.116318631f, 0.993906970f, -0.110222207f, 0.994564571f, -0.104121634f, 0.995184727f, -0.098017140f, 0.995767414f, -0.091908956f, 0.996312612f, -0.085797312f, 0.996820299f, -0.079682438f, 0.997290457f, -0.073564564f, 0.997723067f, -0.067443920f, 0.998118113f, -0.061320736f, 0.998475581f, -0.055195244f, 0.998795456f, -0.049067674f, 0.999077728f, -0.042938257f, 0.999322385f, -0.036807223f, 0.999529418f, -0.030674803f, 0.999698819f, -0.024541229f, 0.999830582f, -0.018406730f, 0.999924702f, -0.012271538f, 0.999981175f, -0.006135885f }; /** @par Example code for Floating-point Twiddle factors Generation: @par
for (i = 0; i< N/; i++)
  {
 	twiddleCoef[2*i]   = cos(i * 2*PI/(float)N);
 	twiddleCoef[2*i+1] = sin(i * 2*PI/(float)N);
  } 
@par where N = 2048, PI = 3.14159265358979 @par Cos and Sin values are in interleaved fashion */ const float32_t twiddleCoef_2048[4096] ARM_DSP_TABLE_ATTRIBUTE = { 1.000000000f, 0.000000000f, 0.999995294f, 0.003067957f, 0.999981175f, 0.006135885f, 0.999957645f, 0.009203755f, 0.999924702f, 0.012271538f, 0.999882347f, 0.015339206f, 0.999830582f, 0.018406730f, 0.999769405f, 0.021474080f, 0.999698819f, 0.024541229f, 0.999618822f, 0.027608146f, 0.999529418f, 0.030674803f, 0.999430605f, 0.033741172f, 0.999322385f, 0.036807223f, 0.999204759f, 0.039872928f, 0.999077728f, 0.042938257f, 0.998941293f, 0.046003182f, 0.998795456f, 0.049067674f, 0.998640218f, 0.052131705f, 0.998475581f, 0.055195244f, 0.998301545f, 0.058258265f, 0.998118113f, 0.061320736f, 0.997925286f, 0.064382631f, 0.997723067f, 0.067443920f, 0.997511456f, 0.070504573f, 0.997290457f, 0.073564564f, 0.997060070f, 0.076623861f, 0.996820299f, 0.079682438f, 0.996571146f, 0.082740265f, 0.996312612f, 0.085797312f, 0.996044701f, 0.088853553f, 0.995767414f, 0.091908956f, 0.995480755f, 0.094963495f, 0.995184727f, 0.098017140f, 0.994879331f, 0.101069863f, 0.994564571f, 0.104121634f, 0.994240449f, 0.107172425f, 0.993906970f, 0.110222207f, 0.993564136f, 0.113270952f, 0.993211949f, 0.116318631f, 0.992850414f, 0.119365215f, 0.992479535f, 0.122410675f, 0.992099313f, 0.125454983f, 0.991709754f, 0.128498111f, 0.991310860f, 0.131540029f, 0.990902635f, 0.134580709f, 0.990485084f, 0.137620122f, 0.990058210f, 0.140658239f, 0.989622017f, 0.143695033f, 0.989176510f, 0.146730474f, 0.988721692f, 0.149764535f, 0.988257568f, 0.152797185f, 0.987784142f, 0.155828398f, 0.987301418f, 0.158858143f, 0.986809402f, 0.161886394f, 0.986308097f, 0.164913120f, 0.985797509f, 0.167938295f, 0.985277642f, 0.170961889f, 0.984748502f, 0.173983873f, 0.984210092f, 0.177004220f, 0.983662419f, 0.180022901f, 0.983105487f, 0.183039888f, 0.982539302f, 0.186055152f, 0.981963869f, 0.189068664f, 0.981379193f, 0.192080397f, 0.980785280f, 0.195090322f, 0.980182136f, 0.198098411f, 0.979569766f, 0.201104635f, 0.978948175f, 0.204108966f, 0.978317371f, 0.207111376f, 0.977677358f, 0.210111837f, 0.977028143f, 0.213110320f, 0.976369731f, 0.216106797f, 0.975702130f, 0.219101240f, 0.975025345f, 0.222093621f, 0.974339383f, 0.225083911f, 0.973644250f, 0.228072083f, 0.972939952f, 0.231058108f, 0.972226497f, 0.234041959f, 0.971503891f, 0.237023606f, 0.970772141f, 0.240003022f, 0.970031253f, 0.242980180f, 0.969281235f, 0.245955050f, 0.968522094f, 0.248927606f, 0.967753837f, 0.251897818f, 0.966976471f, 0.254865660f, 0.966190003f, 0.257831102f, 0.965394442f, 0.260794118f, 0.964589793f, 0.263754679f, 0.963776066f, 0.266712757f, 0.962953267f, 0.269668326f, 0.962121404f, 0.272621355f, 0.961280486f, 0.275571819f, 0.960430519f, 0.278519689f, 0.959571513f, 0.281464938f, 0.958703475f, 0.284407537f, 0.957826413f, 0.287347460f, 0.956940336f, 0.290284677f, 0.956045251f, 0.293219163f, 0.955141168f, 0.296150888f, 0.954228095f, 0.299079826f, 0.953306040f, 0.302005949f, 0.952375013f, 0.304929230f, 0.951435021f, 0.307849640f, 0.950486074f, 0.310767153f, 0.949528181f, 0.313681740f, 0.948561350f, 0.316593376f, 0.947585591f, 0.319502031f, 0.946600913f, 0.322407679f, 0.945607325f, 0.325310292f, 0.944604837f, 0.328209844f, 0.943593458f, 0.331106306f, 0.942573198f, 0.333999651f, 0.941544065f, 0.336889853f, 0.940506071f, 0.339776884f, 0.939459224f, 0.342660717f, 0.938403534f, 0.345541325f, 0.937339012f, 0.348418680f, 0.936265667f, 0.351292756f, 0.935183510f, 0.354163525f, 0.934092550f, 0.357030961f, 0.932992799f, 0.359895037f, 0.931884266f, 0.362755724f, 0.930766961f, 0.365612998f, 0.929640896f, 0.368466830f, 0.928506080f, 0.371317194f, 0.927362526f, 0.374164063f, 0.926210242f, 0.377007410f, 0.925049241f, 0.379847209f, 0.923879533f, 0.382683432f, 0.922701128f, 0.385516054f, 0.921514039f, 0.388345047f, 0.920318277f, 0.391170384f, 0.919113852f, 0.393992040f, 0.917900776f, 0.396809987f, 0.916679060f, 0.399624200f, 0.915448716f, 0.402434651f, 0.914209756f, 0.405241314f, 0.912962190f, 0.408044163f, 0.911706032f, 0.410843171f, 0.910441292f, 0.413638312f, 0.909167983f, 0.416429560f, 0.907886116f, 0.419216888f, 0.906595705f, 0.422000271f, 0.905296759f, 0.424779681f, 0.903989293f, 0.427555093f, 0.902673318f, 0.430326481f, 0.901348847f, 0.433093819f, 0.900015892f, 0.435857080f, 0.898674466f, 0.438616239f, 0.897324581f, 0.441371269f, 0.895966250f, 0.444122145f, 0.894599486f, 0.446868840f, 0.893224301f, 0.449611330f, 0.891840709f, 0.452349587f, 0.890448723f, 0.455083587f, 0.889048356f, 0.457813304f, 0.887639620f, 0.460538711f, 0.886222530f, 0.463259784f, 0.884797098f, 0.465976496f, 0.883363339f, 0.468688822f, 0.881921264f, 0.471396737f, 0.880470889f, 0.474100215f, 0.879012226f, 0.476799230f, 0.877545290f, 0.479493758f, 0.876070094f, 0.482183772f, 0.874586652f, 0.484869248f, 0.873094978f, 0.487550160f, 0.871595087f, 0.490226483f, 0.870086991f, 0.492898192f, 0.868570706f, 0.495565262f, 0.867046246f, 0.498227667f, 0.865513624f, 0.500885383f, 0.863972856f, 0.503538384f, 0.862423956f, 0.506186645f, 0.860866939f, 0.508830143f, 0.859301818f, 0.511468850f, 0.857728610f, 0.514102744f, 0.856147328f, 0.516731799f, 0.854557988f, 0.519355990f, 0.852960605f, 0.521975293f, 0.851355193f, 0.524589683f, 0.849741768f, 0.527199135f, 0.848120345f, 0.529803625f, 0.846490939f, 0.532403128f, 0.844853565f, 0.534997620f, 0.843208240f, 0.537587076f, 0.841554977f, 0.540171473f, 0.839893794f, 0.542750785f, 0.838224706f, 0.545324988f, 0.836547727f, 0.547894059f, 0.834862875f, 0.550457973f, 0.833170165f, 0.553016706f, 0.831469612f, 0.555570233f, 0.829761234f, 0.558118531f, 0.828045045f, 0.560661576f, 0.826321063f, 0.563199344f, 0.824589303f, 0.565731811f, 0.822849781f, 0.568258953f, 0.821102515f, 0.570780746f, 0.819347520f, 0.573297167f, 0.817584813f, 0.575808191f, 0.815814411f, 0.578313796f, 0.814036330f, 0.580813958f, 0.812250587f, 0.583308653f, 0.810457198f, 0.585797857f, 0.808656182f, 0.588281548f, 0.806847554f, 0.590759702f, 0.805031331f, 0.593232295f, 0.803207531f, 0.595699304f, 0.801376172f, 0.598160707f, 0.799537269f, 0.600616479f, 0.797690841f, 0.603066599f, 0.795836905f, 0.605511041f, 0.793975478f, 0.607949785f, 0.792106577f, 0.610382806f, 0.790230221f, 0.612810082f, 0.788346428f, 0.615231591f, 0.786455214f, 0.617647308f, 0.784556597f, 0.620057212f, 0.782650596f, 0.622461279f, 0.780737229f, 0.624859488f, 0.778816512f, 0.627251815f, 0.776888466f, 0.629638239f, 0.774953107f, 0.632018736f, 0.773010453f, 0.634393284f, 0.771060524f, 0.636761861f, 0.769103338f, 0.639124445f, 0.767138912f, 0.641481013f, 0.765167266f, 0.643831543f, 0.763188417f, 0.646176013f, 0.761202385f, 0.648514401f, 0.759209189f, 0.650846685f, 0.757208847f, 0.653172843f, 0.755201377f, 0.655492853f, 0.753186799f, 0.657806693f, 0.751165132f, 0.660114342f, 0.749136395f, 0.662415778f, 0.747100606f, 0.664710978f, 0.745057785f, 0.666999922f, 0.743007952f, 0.669282588f, 0.740951125f, 0.671558955f, 0.738887324f, 0.673829000f, 0.736816569f, 0.676092704f, 0.734738878f, 0.678350043f, 0.732654272f, 0.680600998f, 0.730562769f, 0.682845546f, 0.728464390f, 0.685083668f, 0.726359155f, 0.687315341f, 0.724247083f, 0.689540545f, 0.722128194f, 0.691759258f, 0.720002508f, 0.693971461f, 0.717870045f, 0.696177131f, 0.715730825f, 0.698376249f, 0.713584869f, 0.700568794f, 0.711432196f, 0.702754744f, 0.709272826f, 0.704934080f, 0.707106781f, 0.707106781f, 0.704934080f, 0.709272826f, 0.702754744f, 0.711432196f, 0.700568794f, 0.713584869f, 0.698376249f, 0.715730825f, 0.696177131f, 0.717870045f, 0.693971461f, 0.720002508f, 0.691759258f, 0.722128194f, 0.689540545f, 0.724247083f, 0.687315341f, 0.726359155f, 0.685083668f, 0.728464390f, 0.682845546f, 0.730562769f, 0.680600998f, 0.732654272f, 0.678350043f, 0.734738878f, 0.676092704f, 0.736816569f, 0.673829000f, 0.738887324f, 0.671558955f, 0.740951125f, 0.669282588f, 0.743007952f, 0.666999922f, 0.745057785f, 0.664710978f, 0.747100606f, 0.662415778f, 0.749136395f, 0.660114342f, 0.751165132f, 0.657806693f, 0.753186799f, 0.655492853f, 0.755201377f, 0.653172843f, 0.757208847f, 0.650846685f, 0.759209189f, 0.648514401f, 0.761202385f, 0.646176013f, 0.763188417f, 0.643831543f, 0.765167266f, 0.641481013f, 0.767138912f, 0.639124445f, 0.769103338f, 0.636761861f, 0.771060524f, 0.634393284f, 0.773010453f, 0.632018736f, 0.774953107f, 0.629638239f, 0.776888466f, 0.627251815f, 0.778816512f, 0.624859488f, 0.780737229f, 0.622461279f, 0.782650596f, 0.620057212f, 0.784556597f, 0.617647308f, 0.786455214f, 0.615231591f, 0.788346428f, 0.612810082f, 0.790230221f, 0.610382806f, 0.792106577f, 0.607949785f, 0.793975478f, 0.605511041f, 0.795836905f, 0.603066599f, 0.797690841f, 0.600616479f, 0.799537269f, 0.598160707f, 0.801376172f, 0.595699304f, 0.803207531f, 0.593232295f, 0.805031331f, 0.590759702f, 0.806847554f, 0.588281548f, 0.808656182f, 0.585797857f, 0.810457198f, 0.583308653f, 0.812250587f, 0.580813958f, 0.814036330f, 0.578313796f, 0.815814411f, 0.575808191f, 0.817584813f, 0.573297167f, 0.819347520f, 0.570780746f, 0.821102515f, 0.568258953f, 0.822849781f, 0.565731811f, 0.824589303f, 0.563199344f, 0.826321063f, 0.560661576f, 0.828045045f, 0.558118531f, 0.829761234f, 0.555570233f, 0.831469612f, 0.553016706f, 0.833170165f, 0.550457973f, 0.834862875f, 0.547894059f, 0.836547727f, 0.545324988f, 0.838224706f, 0.542750785f, 0.839893794f, 0.540171473f, 0.841554977f, 0.537587076f, 0.843208240f, 0.534997620f, 0.844853565f, 0.532403128f, 0.846490939f, 0.529803625f, 0.848120345f, 0.527199135f, 0.849741768f, 0.524589683f, 0.851355193f, 0.521975293f, 0.852960605f, 0.519355990f, 0.854557988f, 0.516731799f, 0.856147328f, 0.514102744f, 0.857728610f, 0.511468850f, 0.859301818f, 0.508830143f, 0.860866939f, 0.506186645f, 0.862423956f, 0.503538384f, 0.863972856f, 0.500885383f, 0.865513624f, 0.498227667f, 0.867046246f, 0.495565262f, 0.868570706f, 0.492898192f, 0.870086991f, 0.490226483f, 0.871595087f, 0.487550160f, 0.873094978f, 0.484869248f, 0.874586652f, 0.482183772f, 0.876070094f, 0.479493758f, 0.877545290f, 0.476799230f, 0.879012226f, 0.474100215f, 0.880470889f, 0.471396737f, 0.881921264f, 0.468688822f, 0.883363339f, 0.465976496f, 0.884797098f, 0.463259784f, 0.886222530f, 0.460538711f, 0.887639620f, 0.457813304f, 0.889048356f, 0.455083587f, 0.890448723f, 0.452349587f, 0.891840709f, 0.449611330f, 0.893224301f, 0.446868840f, 0.894599486f, 0.444122145f, 0.895966250f, 0.441371269f, 0.897324581f, 0.438616239f, 0.898674466f, 0.435857080f, 0.900015892f, 0.433093819f, 0.901348847f, 0.430326481f, 0.902673318f, 0.427555093f, 0.903989293f, 0.424779681f, 0.905296759f, 0.422000271f, 0.906595705f, 0.419216888f, 0.907886116f, 0.416429560f, 0.909167983f, 0.413638312f, 0.910441292f, 0.410843171f, 0.911706032f, 0.408044163f, 0.912962190f, 0.405241314f, 0.914209756f, 0.402434651f, 0.915448716f, 0.399624200f, 0.916679060f, 0.396809987f, 0.917900776f, 0.393992040f, 0.919113852f, 0.391170384f, 0.920318277f, 0.388345047f, 0.921514039f, 0.385516054f, 0.922701128f, 0.382683432f, 0.923879533f, 0.379847209f, 0.925049241f, 0.377007410f, 0.926210242f, 0.374164063f, 0.927362526f, 0.371317194f, 0.928506080f, 0.368466830f, 0.929640896f, 0.365612998f, 0.930766961f, 0.362755724f, 0.931884266f, 0.359895037f, 0.932992799f, 0.357030961f, 0.934092550f, 0.354163525f, 0.935183510f, 0.351292756f, 0.936265667f, 0.348418680f, 0.937339012f, 0.345541325f, 0.938403534f, 0.342660717f, 0.939459224f, 0.339776884f, 0.940506071f, 0.336889853f, 0.941544065f, 0.333999651f, 0.942573198f, 0.331106306f, 0.943593458f, 0.328209844f, 0.944604837f, 0.325310292f, 0.945607325f, 0.322407679f, 0.946600913f, 0.319502031f, 0.947585591f, 0.316593376f, 0.948561350f, 0.313681740f, 0.949528181f, 0.310767153f, 0.950486074f, 0.307849640f, 0.951435021f, 0.304929230f, 0.952375013f, 0.302005949f, 0.953306040f, 0.299079826f, 0.954228095f, 0.296150888f, 0.955141168f, 0.293219163f, 0.956045251f, 0.290284677f, 0.956940336f, 0.287347460f, 0.957826413f, 0.284407537f, 0.958703475f, 0.281464938f, 0.959571513f, 0.278519689f, 0.960430519f, 0.275571819f, 0.961280486f, 0.272621355f, 0.962121404f, 0.269668326f, 0.962953267f, 0.266712757f, 0.963776066f, 0.263754679f, 0.964589793f, 0.260794118f, 0.965394442f, 0.257831102f, 0.966190003f, 0.254865660f, 0.966976471f, 0.251897818f, 0.967753837f, 0.248927606f, 0.968522094f, 0.245955050f, 0.969281235f, 0.242980180f, 0.970031253f, 0.240003022f, 0.970772141f, 0.237023606f, 0.971503891f, 0.234041959f, 0.972226497f, 0.231058108f, 0.972939952f, 0.228072083f, 0.973644250f, 0.225083911f, 0.974339383f, 0.222093621f, 0.975025345f, 0.219101240f, 0.975702130f, 0.216106797f, 0.976369731f, 0.213110320f, 0.977028143f, 0.210111837f, 0.977677358f, 0.207111376f, 0.978317371f, 0.204108966f, 0.978948175f, 0.201104635f, 0.979569766f, 0.198098411f, 0.980182136f, 0.195090322f, 0.980785280f, 0.192080397f, 0.981379193f, 0.189068664f, 0.981963869f, 0.186055152f, 0.982539302f, 0.183039888f, 0.983105487f, 0.180022901f, 0.983662419f, 0.177004220f, 0.984210092f, 0.173983873f, 0.984748502f, 0.170961889f, 0.985277642f, 0.167938295f, 0.985797509f, 0.164913120f, 0.986308097f, 0.161886394f, 0.986809402f, 0.158858143f, 0.987301418f, 0.155828398f, 0.987784142f, 0.152797185f, 0.988257568f, 0.149764535f, 0.988721692f, 0.146730474f, 0.989176510f, 0.143695033f, 0.989622017f, 0.140658239f, 0.990058210f, 0.137620122f, 0.990485084f, 0.134580709f, 0.990902635f, 0.131540029f, 0.991310860f, 0.128498111f, 0.991709754f, 0.125454983f, 0.992099313f, 0.122410675f, 0.992479535f, 0.119365215f, 0.992850414f, 0.116318631f, 0.993211949f, 0.113270952f, 0.993564136f, 0.110222207f, 0.993906970f, 0.107172425f, 0.994240449f, 0.104121634f, 0.994564571f, 0.101069863f, 0.994879331f, 0.098017140f, 0.995184727f, 0.094963495f, 0.995480755f, 0.091908956f, 0.995767414f, 0.088853553f, 0.996044701f, 0.085797312f, 0.996312612f, 0.082740265f, 0.996571146f, 0.079682438f, 0.996820299f, 0.076623861f, 0.997060070f, 0.073564564f, 0.997290457f, 0.070504573f, 0.997511456f, 0.067443920f, 0.997723067f, 0.064382631f, 0.997925286f, 0.061320736f, 0.998118113f, 0.058258265f, 0.998301545f, 0.055195244f, 0.998475581f, 0.052131705f, 0.998640218f, 0.049067674f, 0.998795456f, 0.046003182f, 0.998941293f, 0.042938257f, 0.999077728f, 0.039872928f, 0.999204759f, 0.036807223f, 0.999322385f, 0.033741172f, 0.999430605f, 0.030674803f, 0.999529418f, 0.027608146f, 0.999618822f, 0.024541229f, 0.999698819f, 0.021474080f, 0.999769405f, 0.018406730f, 0.999830582f, 0.015339206f, 0.999882347f, 0.012271538f, 0.999924702f, 0.009203755f, 0.999957645f, 0.006135885f, 0.999981175f, 0.003067957f, 0.999995294f, 0.000000000f, 1.000000000f, -0.003067957f, 0.999995294f, -0.006135885f, 0.999981175f, -0.009203755f, 0.999957645f, -0.012271538f, 0.999924702f, -0.015339206f, 0.999882347f, -0.018406730f, 0.999830582f, -0.021474080f, 0.999769405f, -0.024541229f, 0.999698819f, -0.027608146f, 0.999618822f, -0.030674803f, 0.999529418f, -0.033741172f, 0.999430605f, -0.036807223f, 0.999322385f, -0.039872928f, 0.999204759f, -0.042938257f, 0.999077728f, -0.046003182f, 0.998941293f, -0.049067674f, 0.998795456f, -0.052131705f, 0.998640218f, -0.055195244f, 0.998475581f, -0.058258265f, 0.998301545f, -0.061320736f, 0.998118113f, -0.064382631f, 0.997925286f, -0.067443920f, 0.997723067f, -0.070504573f, 0.997511456f, -0.073564564f, 0.997290457f, -0.076623861f, 0.997060070f, -0.079682438f, 0.996820299f, -0.082740265f, 0.996571146f, -0.085797312f, 0.996312612f, -0.088853553f, 0.996044701f, -0.091908956f, 0.995767414f, -0.094963495f, 0.995480755f, -0.098017140f, 0.995184727f, -0.101069863f, 0.994879331f, -0.104121634f, 0.994564571f, -0.107172425f, 0.994240449f, -0.110222207f, 0.993906970f, -0.113270952f, 0.993564136f, -0.116318631f, 0.993211949f, -0.119365215f, 0.992850414f, -0.122410675f, 0.992479535f, -0.125454983f, 0.992099313f, -0.128498111f, 0.991709754f, -0.131540029f, 0.991310860f, -0.134580709f, 0.990902635f, -0.137620122f, 0.990485084f, -0.140658239f, 0.990058210f, -0.143695033f, 0.989622017f, -0.146730474f, 0.989176510f, -0.149764535f, 0.988721692f, -0.152797185f, 0.988257568f, -0.155828398f, 0.987784142f, -0.158858143f, 0.987301418f, -0.161886394f, 0.986809402f, -0.164913120f, 0.986308097f, -0.167938295f, 0.985797509f, -0.170961889f, 0.985277642f, -0.173983873f, 0.984748502f, -0.177004220f, 0.984210092f, -0.180022901f, 0.983662419f, -0.183039888f, 0.983105487f, -0.186055152f, 0.982539302f, -0.189068664f, 0.981963869f, -0.192080397f, 0.981379193f, -0.195090322f, 0.980785280f, -0.198098411f, 0.980182136f, -0.201104635f, 0.979569766f, -0.204108966f, 0.978948175f, -0.207111376f, 0.978317371f, -0.210111837f, 0.977677358f, -0.213110320f, 0.977028143f, -0.216106797f, 0.976369731f, -0.219101240f, 0.975702130f, -0.222093621f, 0.975025345f, -0.225083911f, 0.974339383f, -0.228072083f, 0.973644250f, -0.231058108f, 0.972939952f, -0.234041959f, 0.972226497f, -0.237023606f, 0.971503891f, -0.240003022f, 0.970772141f, -0.242980180f, 0.970031253f, -0.245955050f, 0.969281235f, -0.248927606f, 0.968522094f, -0.251897818f, 0.967753837f, -0.254865660f, 0.966976471f, -0.257831102f, 0.966190003f, -0.260794118f, 0.965394442f, -0.263754679f, 0.964589793f, -0.266712757f, 0.963776066f, -0.269668326f, 0.962953267f, -0.272621355f, 0.962121404f, -0.275571819f, 0.961280486f, -0.278519689f, 0.960430519f, -0.281464938f, 0.959571513f, -0.284407537f, 0.958703475f, -0.287347460f, 0.957826413f, -0.290284677f, 0.956940336f, -0.293219163f, 0.956045251f, -0.296150888f, 0.955141168f, -0.299079826f, 0.954228095f, -0.302005949f, 0.953306040f, -0.304929230f, 0.952375013f, -0.307849640f, 0.951435021f, -0.310767153f, 0.950486074f, -0.313681740f, 0.949528181f, -0.316593376f, 0.948561350f, -0.319502031f, 0.947585591f, -0.322407679f, 0.946600913f, -0.325310292f, 0.945607325f, -0.328209844f, 0.944604837f, -0.331106306f, 0.943593458f, -0.333999651f, 0.942573198f, -0.336889853f, 0.941544065f, -0.339776884f, 0.940506071f, -0.342660717f, 0.939459224f, -0.345541325f, 0.938403534f, -0.348418680f, 0.937339012f, -0.351292756f, 0.936265667f, -0.354163525f, 0.935183510f, -0.357030961f, 0.934092550f, -0.359895037f, 0.932992799f, -0.362755724f, 0.931884266f, -0.365612998f, 0.930766961f, -0.368466830f, 0.929640896f, -0.371317194f, 0.928506080f, -0.374164063f, 0.927362526f, -0.377007410f, 0.926210242f, -0.379847209f, 0.925049241f, -0.382683432f, 0.923879533f, -0.385516054f, 0.922701128f, -0.388345047f, 0.921514039f, -0.391170384f, 0.920318277f, -0.393992040f, 0.919113852f, -0.396809987f, 0.917900776f, -0.399624200f, 0.916679060f, -0.402434651f, 0.915448716f, -0.405241314f, 0.914209756f, -0.408044163f, 0.912962190f, -0.410843171f, 0.911706032f, -0.413638312f, 0.910441292f, -0.416429560f, 0.909167983f, -0.419216888f, 0.907886116f, -0.422000271f, 0.906595705f, -0.424779681f, 0.905296759f, -0.427555093f, 0.903989293f, -0.430326481f, 0.902673318f, -0.433093819f, 0.901348847f, -0.435857080f, 0.900015892f, -0.438616239f, 0.898674466f, -0.441371269f, 0.897324581f, -0.444122145f, 0.895966250f, -0.446868840f, 0.894599486f, -0.449611330f, 0.893224301f, -0.452349587f, 0.891840709f, -0.455083587f, 0.890448723f, -0.457813304f, 0.889048356f, -0.460538711f, 0.887639620f, -0.463259784f, 0.886222530f, -0.465976496f, 0.884797098f, -0.468688822f, 0.883363339f, -0.471396737f, 0.881921264f, -0.474100215f, 0.880470889f, -0.476799230f, 0.879012226f, -0.479493758f, 0.877545290f, -0.482183772f, 0.876070094f, -0.484869248f, 0.874586652f, -0.487550160f, 0.873094978f, -0.490226483f, 0.871595087f, -0.492898192f, 0.870086991f, -0.495565262f, 0.868570706f, -0.498227667f, 0.867046246f, -0.500885383f, 0.865513624f, -0.503538384f, 0.863972856f, -0.506186645f, 0.862423956f, -0.508830143f, 0.860866939f, -0.511468850f, 0.859301818f, -0.514102744f, 0.857728610f, -0.516731799f, 0.856147328f, -0.519355990f, 0.854557988f, -0.521975293f, 0.852960605f, -0.524589683f, 0.851355193f, -0.527199135f, 0.849741768f, -0.529803625f, 0.848120345f, -0.532403128f, 0.846490939f, -0.534997620f, 0.844853565f, -0.537587076f, 0.843208240f, -0.540171473f, 0.841554977f, -0.542750785f, 0.839893794f, -0.545324988f, 0.838224706f, -0.547894059f, 0.836547727f, -0.550457973f, 0.834862875f, -0.553016706f, 0.833170165f, -0.555570233f, 0.831469612f, -0.558118531f, 0.829761234f, -0.560661576f, 0.828045045f, -0.563199344f, 0.826321063f, -0.565731811f, 0.824589303f, -0.568258953f, 0.822849781f, -0.570780746f, 0.821102515f, -0.573297167f, 0.819347520f, -0.575808191f, 0.817584813f, -0.578313796f, 0.815814411f, -0.580813958f, 0.814036330f, -0.583308653f, 0.812250587f, -0.585797857f, 0.810457198f, -0.588281548f, 0.808656182f, -0.590759702f, 0.806847554f, -0.593232295f, 0.805031331f, -0.595699304f, 0.803207531f, -0.598160707f, 0.801376172f, -0.600616479f, 0.799537269f, -0.603066599f, 0.797690841f, -0.605511041f, 0.795836905f, -0.607949785f, 0.793975478f, -0.610382806f, 0.792106577f, -0.612810082f, 0.790230221f, -0.615231591f, 0.788346428f, -0.617647308f, 0.786455214f, -0.620057212f, 0.784556597f, -0.622461279f, 0.782650596f, -0.624859488f, 0.780737229f, -0.627251815f, 0.778816512f, -0.629638239f, 0.776888466f, -0.632018736f, 0.774953107f, -0.634393284f, 0.773010453f, -0.636761861f, 0.771060524f, -0.639124445f, 0.769103338f, -0.641481013f, 0.767138912f, -0.643831543f, 0.765167266f, -0.646176013f, 0.763188417f, -0.648514401f, 0.761202385f, -0.650846685f, 0.759209189f, -0.653172843f, 0.757208847f, -0.655492853f, 0.755201377f, -0.657806693f, 0.753186799f, -0.660114342f, 0.751165132f, -0.662415778f, 0.749136395f, -0.664710978f, 0.747100606f, -0.666999922f, 0.745057785f, -0.669282588f, 0.743007952f, -0.671558955f, 0.740951125f, -0.673829000f, 0.738887324f, -0.676092704f, 0.736816569f, -0.678350043f, 0.734738878f, -0.680600998f, 0.732654272f, -0.682845546f, 0.730562769f, -0.685083668f, 0.728464390f, -0.687315341f, 0.726359155f, -0.689540545f, 0.724247083f, -0.691759258f, 0.722128194f, -0.693971461f, 0.720002508f, -0.696177131f, 0.717870045f, -0.698376249f, 0.715730825f, -0.700568794f, 0.713584869f, -0.702754744f, 0.711432196f, -0.704934080f, 0.709272826f, -0.707106781f, 0.707106781f, -0.709272826f, 0.704934080f, -0.711432196f, 0.702754744f, -0.713584869f, 0.700568794f, -0.715730825f, 0.698376249f, -0.717870045f, 0.696177131f, -0.720002508f, 0.693971461f, -0.722128194f, 0.691759258f, -0.724247083f, 0.689540545f, -0.726359155f, 0.687315341f, -0.728464390f, 0.685083668f, -0.730562769f, 0.682845546f, -0.732654272f, 0.680600998f, -0.734738878f, 0.678350043f, -0.736816569f, 0.676092704f, -0.738887324f, 0.673829000f, -0.740951125f, 0.671558955f, -0.743007952f, 0.669282588f, -0.745057785f, 0.666999922f, -0.747100606f, 0.664710978f, -0.749136395f, 0.662415778f, -0.751165132f, 0.660114342f, -0.753186799f, 0.657806693f, -0.755201377f, 0.655492853f, -0.757208847f, 0.653172843f, -0.759209189f, 0.650846685f, -0.761202385f, 0.648514401f, -0.763188417f, 0.646176013f, -0.765167266f, 0.643831543f, -0.767138912f, 0.641481013f, -0.769103338f, 0.639124445f, -0.771060524f, 0.636761861f, -0.773010453f, 0.634393284f, -0.774953107f, 0.632018736f, -0.776888466f, 0.629638239f, -0.778816512f, 0.627251815f, -0.780737229f, 0.624859488f, -0.782650596f, 0.622461279f, -0.784556597f, 0.620057212f, -0.786455214f, 0.617647308f, -0.788346428f, 0.615231591f, -0.790230221f, 0.612810082f, -0.792106577f, 0.610382806f, -0.793975478f, 0.607949785f, -0.795836905f, 0.605511041f, -0.797690841f, 0.603066599f, -0.799537269f, 0.600616479f, -0.801376172f, 0.598160707f, -0.803207531f, 0.595699304f, -0.805031331f, 0.593232295f, -0.806847554f, 0.590759702f, -0.808656182f, 0.588281548f, -0.810457198f, 0.585797857f, -0.812250587f, 0.583308653f, -0.814036330f, 0.580813958f, -0.815814411f, 0.578313796f, -0.817584813f, 0.575808191f, -0.819347520f, 0.573297167f, -0.821102515f, 0.570780746f, -0.822849781f, 0.568258953f, -0.824589303f, 0.565731811f, -0.826321063f, 0.563199344f, -0.828045045f, 0.560661576f, -0.829761234f, 0.558118531f, -0.831469612f, 0.555570233f, -0.833170165f, 0.553016706f, -0.834862875f, 0.550457973f, -0.836547727f, 0.547894059f, -0.838224706f, 0.545324988f, -0.839893794f, 0.542750785f, -0.841554977f, 0.540171473f, -0.843208240f, 0.537587076f, -0.844853565f, 0.534997620f, -0.846490939f, 0.532403128f, -0.848120345f, 0.529803625f, -0.849741768f, 0.527199135f, -0.851355193f, 0.524589683f, -0.852960605f, 0.521975293f, -0.854557988f, 0.519355990f, -0.856147328f, 0.516731799f, -0.857728610f, 0.514102744f, -0.859301818f, 0.511468850f, -0.860866939f, 0.508830143f, -0.862423956f, 0.506186645f, -0.863972856f, 0.503538384f, -0.865513624f, 0.500885383f, -0.867046246f, 0.498227667f, -0.868570706f, 0.495565262f, -0.870086991f, 0.492898192f, -0.871595087f, 0.490226483f, -0.873094978f, 0.487550160f, -0.874586652f, 0.484869248f, -0.876070094f, 0.482183772f, -0.877545290f, 0.479493758f, -0.879012226f, 0.476799230f, -0.880470889f, 0.474100215f, -0.881921264f, 0.471396737f, -0.883363339f, 0.468688822f, -0.884797098f, 0.465976496f, -0.886222530f, 0.463259784f, -0.887639620f, 0.460538711f, -0.889048356f, 0.457813304f, -0.890448723f, 0.455083587f, -0.891840709f, 0.452349587f, -0.893224301f, 0.449611330f, -0.894599486f, 0.446868840f, -0.895966250f, 0.444122145f, -0.897324581f, 0.441371269f, -0.898674466f, 0.438616239f, -0.900015892f, 0.435857080f, -0.901348847f, 0.433093819f, -0.902673318f, 0.430326481f, -0.903989293f, 0.427555093f, -0.905296759f, 0.424779681f, -0.906595705f, 0.422000271f, -0.907886116f, 0.419216888f, -0.909167983f, 0.416429560f, -0.910441292f, 0.413638312f, -0.911706032f, 0.410843171f, -0.912962190f, 0.408044163f, -0.914209756f, 0.405241314f, -0.915448716f, 0.402434651f, -0.916679060f, 0.399624200f, -0.917900776f, 0.396809987f, -0.919113852f, 0.393992040f, -0.920318277f, 0.391170384f, -0.921514039f, 0.388345047f, -0.922701128f, 0.385516054f, -0.923879533f, 0.382683432f, -0.925049241f, 0.379847209f, -0.926210242f, 0.377007410f, -0.927362526f, 0.374164063f, -0.928506080f, 0.371317194f, -0.929640896f, 0.368466830f, -0.930766961f, 0.365612998f, -0.931884266f, 0.362755724f, -0.932992799f, 0.359895037f, -0.934092550f, 0.357030961f, -0.935183510f, 0.354163525f, -0.936265667f, 0.351292756f, -0.937339012f, 0.348418680f, -0.938403534f, 0.345541325f, -0.939459224f, 0.342660717f, -0.940506071f, 0.339776884f, -0.941544065f, 0.336889853f, -0.942573198f, 0.333999651f, -0.943593458f, 0.331106306f, -0.944604837f, 0.328209844f, -0.945607325f, 0.325310292f, -0.946600913f, 0.322407679f, -0.947585591f, 0.319502031f, -0.948561350f, 0.316593376f, -0.949528181f, 0.313681740f, -0.950486074f, 0.310767153f, -0.951435021f, 0.307849640f, -0.952375013f, 0.304929230f, -0.953306040f, 0.302005949f, -0.954228095f, 0.299079826f, -0.955141168f, 0.296150888f, -0.956045251f, 0.293219163f, -0.956940336f, 0.290284677f, -0.957826413f, 0.287347460f, -0.958703475f, 0.284407537f, -0.959571513f, 0.281464938f, -0.960430519f, 0.278519689f, -0.961280486f, 0.275571819f, -0.962121404f, 0.272621355f, -0.962953267f, 0.269668326f, -0.963776066f, 0.266712757f, -0.964589793f, 0.263754679f, -0.965394442f, 0.260794118f, -0.966190003f, 0.257831102f, -0.966976471f, 0.254865660f, -0.967753837f, 0.251897818f, -0.968522094f, 0.248927606f, -0.969281235f, 0.245955050f, -0.970031253f, 0.242980180f, -0.970772141f, 0.240003022f, -0.971503891f, 0.237023606f, -0.972226497f, 0.234041959f, -0.972939952f, 0.231058108f, -0.973644250f, 0.228072083f, -0.974339383f, 0.225083911f, -0.975025345f, 0.222093621f, -0.975702130f, 0.219101240f, -0.976369731f, 0.216106797f, -0.977028143f, 0.213110320f, -0.977677358f, 0.210111837f, -0.978317371f, 0.207111376f, -0.978948175f, 0.204108966f, -0.979569766f, 0.201104635f, -0.980182136f, 0.198098411f, -0.980785280f, 0.195090322f, -0.981379193f, 0.192080397f, -0.981963869f, 0.189068664f, -0.982539302f, 0.186055152f, -0.983105487f, 0.183039888f, -0.983662419f, 0.180022901f, -0.984210092f, 0.177004220f, -0.984748502f, 0.173983873f, -0.985277642f, 0.170961889f, -0.985797509f, 0.167938295f, -0.986308097f, 0.164913120f, -0.986809402f, 0.161886394f, -0.987301418f, 0.158858143f, -0.987784142f, 0.155828398f, -0.988257568f, 0.152797185f, -0.988721692f, 0.149764535f, -0.989176510f, 0.146730474f, -0.989622017f, 0.143695033f, -0.990058210f, 0.140658239f, -0.990485084f, 0.137620122f, -0.990902635f, 0.134580709f, -0.991310860f, 0.131540029f, -0.991709754f, 0.128498111f, -0.992099313f, 0.125454983f, -0.992479535f, 0.122410675f, -0.992850414f, 0.119365215f, -0.993211949f, 0.116318631f, -0.993564136f, 0.113270952f, -0.993906970f, 0.110222207f, -0.994240449f, 0.107172425f, -0.994564571f, 0.104121634f, -0.994879331f, 0.101069863f, -0.995184727f, 0.098017140f, -0.995480755f, 0.094963495f, -0.995767414f, 0.091908956f, -0.996044701f, 0.088853553f, -0.996312612f, 0.085797312f, -0.996571146f, 0.082740265f, -0.996820299f, 0.079682438f, -0.997060070f, 0.076623861f, -0.997290457f, 0.073564564f, -0.997511456f, 0.070504573f, -0.997723067f, 0.067443920f, -0.997925286f, 0.064382631f, -0.998118113f, 0.061320736f, -0.998301545f, 0.058258265f, -0.998475581f, 0.055195244f, -0.998640218f, 0.052131705f, -0.998795456f, 0.049067674f, -0.998941293f, 0.046003182f, -0.999077728f, 0.042938257f, -0.999204759f, 0.039872928f, -0.999322385f, 0.036807223f, -0.999430605f, 0.033741172f, -0.999529418f, 0.030674803f, -0.999618822f, 0.027608146f, -0.999698819f, 0.024541229f, -0.999769405f, 0.021474080f, -0.999830582f, 0.018406730f, -0.999882347f, 0.015339206f, -0.999924702f, 0.012271538f, -0.999957645f, 0.009203755f, -0.999981175f, 0.006135885f, -0.999995294f, 0.003067957f, -1.000000000f, 0.000000000f, -0.999995294f, -0.003067957f, -0.999981175f, -0.006135885f, -0.999957645f, -0.009203755f, -0.999924702f, -0.012271538f, -0.999882347f, -0.015339206f, -0.999830582f, -0.018406730f, -0.999769405f, -0.021474080f, -0.999698819f, -0.024541229f, -0.999618822f, -0.027608146f, -0.999529418f, -0.030674803f, -0.999430605f, -0.033741172f, -0.999322385f, -0.036807223f, -0.999204759f, -0.039872928f, -0.999077728f, -0.042938257f, -0.998941293f, -0.046003182f, -0.998795456f, -0.049067674f, -0.998640218f, -0.052131705f, -0.998475581f, -0.055195244f, -0.998301545f, -0.058258265f, -0.998118113f, -0.061320736f, -0.997925286f, -0.064382631f, -0.997723067f, -0.067443920f, -0.997511456f, -0.070504573f, -0.997290457f, -0.073564564f, -0.997060070f, -0.076623861f, -0.996820299f, -0.079682438f, -0.996571146f, -0.082740265f, -0.996312612f, -0.085797312f, -0.996044701f, -0.088853553f, -0.995767414f, -0.091908956f, -0.995480755f, -0.094963495f, -0.995184727f, -0.098017140f, -0.994879331f, -0.101069863f, -0.994564571f, -0.104121634f, -0.994240449f, -0.107172425f, -0.993906970f, -0.110222207f, -0.993564136f, -0.113270952f, -0.993211949f, -0.116318631f, -0.992850414f, -0.119365215f, -0.992479535f, -0.122410675f, -0.992099313f, -0.125454983f, -0.991709754f, -0.128498111f, -0.991310860f, -0.131540029f, -0.990902635f, -0.134580709f, -0.990485084f, -0.137620122f, -0.990058210f, -0.140658239f, -0.989622017f, -0.143695033f, -0.989176510f, -0.146730474f, -0.988721692f, -0.149764535f, -0.988257568f, -0.152797185f, -0.987784142f, -0.155828398f, -0.987301418f, -0.158858143f, -0.986809402f, -0.161886394f, -0.986308097f, -0.164913120f, -0.985797509f, -0.167938295f, -0.985277642f, -0.170961889f, -0.984748502f, -0.173983873f, -0.984210092f, -0.177004220f, -0.983662419f, -0.180022901f, -0.983105487f, -0.183039888f, -0.982539302f, -0.186055152f, -0.981963869f, -0.189068664f, -0.981379193f, -0.192080397f, -0.980785280f, -0.195090322f, -0.980182136f, -0.198098411f, -0.979569766f, -0.201104635f, -0.978948175f, -0.204108966f, -0.978317371f, -0.207111376f, -0.977677358f, -0.210111837f, -0.977028143f, -0.213110320f, -0.976369731f, -0.216106797f, -0.975702130f, -0.219101240f, -0.975025345f, -0.222093621f, -0.974339383f, -0.225083911f, -0.973644250f, -0.228072083f, -0.972939952f, -0.231058108f, -0.972226497f, -0.234041959f, -0.971503891f, -0.237023606f, -0.970772141f, -0.240003022f, -0.970031253f, -0.242980180f, -0.969281235f, -0.245955050f, -0.968522094f, -0.248927606f, -0.967753837f, -0.251897818f, -0.966976471f, -0.254865660f, -0.966190003f, -0.257831102f, -0.965394442f, -0.260794118f, -0.964589793f, -0.263754679f, -0.963776066f, -0.266712757f, -0.962953267f, -0.269668326f, -0.962121404f, -0.272621355f, -0.961280486f, -0.275571819f, -0.960430519f, -0.278519689f, -0.959571513f, -0.281464938f, -0.958703475f, -0.284407537f, -0.957826413f, -0.287347460f, -0.956940336f, -0.290284677f, -0.956045251f, -0.293219163f, -0.955141168f, -0.296150888f, -0.954228095f, -0.299079826f, -0.953306040f, -0.302005949f, -0.952375013f, -0.304929230f, -0.951435021f, -0.307849640f, -0.950486074f, -0.310767153f, -0.949528181f, -0.313681740f, -0.948561350f, -0.316593376f, -0.947585591f, -0.319502031f, -0.946600913f, -0.322407679f, -0.945607325f, -0.325310292f, -0.944604837f, -0.328209844f, -0.943593458f, -0.331106306f, -0.942573198f, -0.333999651f, -0.941544065f, -0.336889853f, -0.940506071f, -0.339776884f, -0.939459224f, -0.342660717f, -0.938403534f, -0.345541325f, -0.937339012f, -0.348418680f, -0.936265667f, -0.351292756f, -0.935183510f, -0.354163525f, -0.934092550f, -0.357030961f, -0.932992799f, -0.359895037f, -0.931884266f, -0.362755724f, -0.930766961f, -0.365612998f, -0.929640896f, -0.368466830f, -0.928506080f, -0.371317194f, -0.927362526f, -0.374164063f, -0.926210242f, -0.377007410f, -0.925049241f, -0.379847209f, -0.923879533f, -0.382683432f, -0.922701128f, -0.385516054f, -0.921514039f, -0.388345047f, -0.920318277f, -0.391170384f, -0.919113852f, -0.393992040f, -0.917900776f, -0.396809987f, -0.916679060f, -0.399624200f, -0.915448716f, -0.402434651f, -0.914209756f, -0.405241314f, -0.912962190f, -0.408044163f, -0.911706032f, -0.410843171f, -0.910441292f, -0.413638312f, -0.909167983f, -0.416429560f, -0.907886116f, -0.419216888f, -0.906595705f, -0.422000271f, -0.905296759f, -0.424779681f, -0.903989293f, -0.427555093f, -0.902673318f, -0.430326481f, -0.901348847f, -0.433093819f, -0.900015892f, -0.435857080f, -0.898674466f, -0.438616239f, -0.897324581f, -0.441371269f, -0.895966250f, -0.444122145f, -0.894599486f, -0.446868840f, -0.893224301f, -0.449611330f, -0.891840709f, -0.452349587f, -0.890448723f, -0.455083587f, -0.889048356f, -0.457813304f, -0.887639620f, -0.460538711f, -0.886222530f, -0.463259784f, -0.884797098f, -0.465976496f, -0.883363339f, -0.468688822f, -0.881921264f, -0.471396737f, -0.880470889f, -0.474100215f, -0.879012226f, -0.476799230f, -0.877545290f, -0.479493758f, -0.876070094f, -0.482183772f, -0.874586652f, -0.484869248f, -0.873094978f, -0.487550160f, -0.871595087f, -0.490226483f, -0.870086991f, -0.492898192f, -0.868570706f, -0.495565262f, -0.867046246f, -0.498227667f, -0.865513624f, -0.500885383f, -0.863972856f, -0.503538384f, -0.862423956f, -0.506186645f, -0.860866939f, -0.508830143f, -0.859301818f, -0.511468850f, -0.857728610f, -0.514102744f, -0.856147328f, -0.516731799f, -0.854557988f, -0.519355990f, -0.852960605f, -0.521975293f, -0.851355193f, -0.524589683f, -0.849741768f, -0.527199135f, -0.848120345f, -0.529803625f, -0.846490939f, -0.532403128f, -0.844853565f, -0.534997620f, -0.843208240f, -0.537587076f, -0.841554977f, -0.540171473f, -0.839893794f, -0.542750785f, -0.838224706f, -0.545324988f, -0.836547727f, -0.547894059f, -0.834862875f, -0.550457973f, -0.833170165f, -0.553016706f, -0.831469612f, -0.555570233f, -0.829761234f, -0.558118531f, -0.828045045f, -0.560661576f, -0.826321063f, -0.563199344f, -0.824589303f, -0.565731811f, -0.822849781f, -0.568258953f, -0.821102515f, -0.570780746f, -0.819347520f, -0.573297167f, -0.817584813f, -0.575808191f, -0.815814411f, -0.578313796f, -0.814036330f, -0.580813958f, -0.812250587f, -0.583308653f, -0.810457198f, -0.585797857f, -0.808656182f, -0.588281548f, -0.806847554f, -0.590759702f, -0.805031331f, -0.593232295f, -0.803207531f, -0.595699304f, -0.801376172f, -0.598160707f, -0.799537269f, -0.600616479f, -0.797690841f, -0.603066599f, -0.795836905f, -0.605511041f, -0.793975478f, -0.607949785f, -0.792106577f, -0.610382806f, -0.790230221f, -0.612810082f, -0.788346428f, -0.615231591f, -0.786455214f, -0.617647308f, -0.784556597f, -0.620057212f, -0.782650596f, -0.622461279f, -0.780737229f, -0.624859488f, -0.778816512f, -0.627251815f, -0.776888466f, -0.629638239f, -0.774953107f, -0.632018736f, -0.773010453f, -0.634393284f, -0.771060524f, -0.636761861f, -0.769103338f, -0.639124445f, -0.767138912f, -0.641481013f, -0.765167266f, -0.643831543f, -0.763188417f, -0.646176013f, -0.761202385f, -0.648514401f, -0.759209189f, -0.650846685f, -0.757208847f, -0.653172843f, -0.755201377f, -0.655492853f, -0.753186799f, -0.657806693f, -0.751165132f, -0.660114342f, -0.749136395f, -0.662415778f, -0.747100606f, -0.664710978f, -0.745057785f, -0.666999922f, -0.743007952f, -0.669282588f, -0.740951125f, -0.671558955f, -0.738887324f, -0.673829000f, -0.736816569f, -0.676092704f, -0.734738878f, -0.678350043f, -0.732654272f, -0.680600998f, -0.730562769f, -0.682845546f, -0.728464390f, -0.685083668f, -0.726359155f, -0.687315341f, -0.724247083f, -0.689540545f, -0.722128194f, -0.691759258f, -0.720002508f, -0.693971461f, -0.717870045f, -0.696177131f, -0.715730825f, -0.698376249f, -0.713584869f, -0.700568794f, -0.711432196f, -0.702754744f, -0.709272826f, -0.704934080f, -0.707106781f, -0.707106781f, -0.704934080f, -0.709272826f, -0.702754744f, -0.711432196f, -0.700568794f, -0.713584869f, -0.698376249f, -0.715730825f, -0.696177131f, -0.717870045f, -0.693971461f, -0.720002508f, -0.691759258f, -0.722128194f, -0.689540545f, -0.724247083f, -0.687315341f, -0.726359155f, -0.685083668f, -0.728464390f, -0.682845546f, -0.730562769f, -0.680600998f, -0.732654272f, -0.678350043f, -0.734738878f, -0.676092704f, -0.736816569f, -0.673829000f, -0.738887324f, -0.671558955f, -0.740951125f, -0.669282588f, -0.743007952f, -0.666999922f, -0.745057785f, -0.664710978f, -0.747100606f, -0.662415778f, -0.749136395f, -0.660114342f, -0.751165132f, -0.657806693f, -0.753186799f, -0.655492853f, -0.755201377f, -0.653172843f, -0.757208847f, -0.650846685f, -0.759209189f, -0.648514401f, -0.761202385f, -0.646176013f, -0.763188417f, -0.643831543f, -0.765167266f, -0.641481013f, -0.767138912f, -0.639124445f, -0.769103338f, -0.636761861f, -0.771060524f, -0.634393284f, -0.773010453f, -0.632018736f, -0.774953107f, -0.629638239f, -0.776888466f, -0.627251815f, -0.778816512f, -0.624859488f, -0.780737229f, -0.622461279f, -0.782650596f, -0.620057212f, -0.784556597f, -0.617647308f, -0.786455214f, -0.615231591f, -0.788346428f, -0.612810082f, -0.790230221f, -0.610382806f, -0.792106577f, -0.607949785f, -0.793975478f, -0.605511041f, -0.795836905f, -0.603066599f, -0.797690841f, -0.600616479f, -0.799537269f, -0.598160707f, -0.801376172f, -0.595699304f, -0.803207531f, -0.593232295f, -0.805031331f, -0.590759702f, -0.806847554f, -0.588281548f, -0.808656182f, -0.585797857f, -0.810457198f, -0.583308653f, -0.812250587f, -0.580813958f, -0.814036330f, -0.578313796f, -0.815814411f, -0.575808191f, -0.817584813f, -0.573297167f, -0.819347520f, -0.570780746f, -0.821102515f, -0.568258953f, -0.822849781f, -0.565731811f, -0.824589303f, -0.563199344f, -0.826321063f, -0.560661576f, -0.828045045f, -0.558118531f, -0.829761234f, -0.555570233f, -0.831469612f, -0.553016706f, -0.833170165f, -0.550457973f, -0.834862875f, -0.547894059f, -0.836547727f, -0.545324988f, -0.838224706f, -0.542750785f, -0.839893794f, -0.540171473f, -0.841554977f, -0.537587076f, -0.843208240f, -0.534997620f, -0.844853565f, -0.532403128f, -0.846490939f, -0.529803625f, -0.848120345f, -0.527199135f, -0.849741768f, -0.524589683f, -0.851355193f, -0.521975293f, -0.852960605f, -0.519355990f, -0.854557988f, -0.516731799f, -0.856147328f, -0.514102744f, -0.857728610f, -0.511468850f, -0.859301818f, -0.508830143f, -0.860866939f, -0.506186645f, -0.862423956f, -0.503538384f, -0.863972856f, -0.500885383f, -0.865513624f, -0.498227667f, -0.867046246f, -0.495565262f, -0.868570706f, -0.492898192f, -0.870086991f, -0.490226483f, -0.871595087f, -0.487550160f, -0.873094978f, -0.484869248f, -0.874586652f, -0.482183772f, -0.876070094f, -0.479493758f, -0.877545290f, -0.476799230f, -0.879012226f, -0.474100215f, -0.880470889f, -0.471396737f, -0.881921264f, -0.468688822f, -0.883363339f, -0.465976496f, -0.884797098f, -0.463259784f, -0.886222530f, -0.460538711f, -0.887639620f, -0.457813304f, -0.889048356f, -0.455083587f, -0.890448723f, -0.452349587f, -0.891840709f, -0.449611330f, -0.893224301f, -0.446868840f, -0.894599486f, -0.444122145f, -0.895966250f, -0.441371269f, -0.897324581f, -0.438616239f, -0.898674466f, -0.435857080f, -0.900015892f, -0.433093819f, -0.901348847f, -0.430326481f, -0.902673318f, -0.427555093f, -0.903989293f, -0.424779681f, -0.905296759f, -0.422000271f, -0.906595705f, -0.419216888f, -0.907886116f, -0.416429560f, -0.909167983f, -0.413638312f, -0.910441292f, -0.410843171f, -0.911706032f, -0.408044163f, -0.912962190f, -0.405241314f, -0.914209756f, -0.402434651f, -0.915448716f, -0.399624200f, -0.916679060f, -0.396809987f, -0.917900776f, -0.393992040f, -0.919113852f, -0.391170384f, -0.920318277f, -0.388345047f, -0.921514039f, -0.385516054f, -0.922701128f, -0.382683432f, -0.923879533f, -0.379847209f, -0.925049241f, -0.377007410f, -0.926210242f, -0.374164063f, -0.927362526f, -0.371317194f, -0.928506080f, -0.368466830f, -0.929640896f, -0.365612998f, -0.930766961f, -0.362755724f, -0.931884266f, -0.359895037f, -0.932992799f, -0.357030961f, -0.934092550f, -0.354163525f, -0.935183510f, -0.351292756f, -0.936265667f, -0.348418680f, -0.937339012f, -0.345541325f, -0.938403534f, -0.342660717f, -0.939459224f, -0.339776884f, -0.940506071f, -0.336889853f, -0.941544065f, -0.333999651f, -0.942573198f, -0.331106306f, -0.943593458f, -0.328209844f, -0.944604837f, -0.325310292f, -0.945607325f, -0.322407679f, -0.946600913f, -0.319502031f, -0.947585591f, -0.316593376f, -0.948561350f, -0.313681740f, -0.949528181f, -0.310767153f, -0.950486074f, -0.307849640f, -0.951435021f, -0.304929230f, -0.952375013f, -0.302005949f, -0.953306040f, -0.299079826f, -0.954228095f, -0.296150888f, -0.955141168f, -0.293219163f, -0.956045251f, -0.290284677f, -0.956940336f, -0.287347460f, -0.957826413f, -0.284407537f, -0.958703475f, -0.281464938f, -0.959571513f, -0.278519689f, -0.960430519f, -0.275571819f, -0.961280486f, -0.272621355f, -0.962121404f, -0.269668326f, -0.962953267f, -0.266712757f, -0.963776066f, -0.263754679f, -0.964589793f, -0.260794118f, -0.965394442f, -0.257831102f, -0.966190003f, -0.254865660f, -0.966976471f, -0.251897818f, -0.967753837f, -0.248927606f, -0.968522094f, -0.245955050f, -0.969281235f, -0.242980180f, -0.970031253f, -0.240003022f, -0.970772141f, -0.237023606f, -0.971503891f, -0.234041959f, -0.972226497f, -0.231058108f, -0.972939952f, -0.228072083f, -0.973644250f, -0.225083911f, -0.974339383f, -0.222093621f, -0.975025345f, -0.219101240f, -0.975702130f, -0.216106797f, -0.976369731f, -0.213110320f, -0.977028143f, -0.210111837f, -0.977677358f, -0.207111376f, -0.978317371f, -0.204108966f, -0.978948175f, -0.201104635f, -0.979569766f, -0.198098411f, -0.980182136f, -0.195090322f, -0.980785280f, -0.192080397f, -0.981379193f, -0.189068664f, -0.981963869f, -0.186055152f, -0.982539302f, -0.183039888f, -0.983105487f, -0.180022901f, -0.983662419f, -0.177004220f, -0.984210092f, -0.173983873f, -0.984748502f, -0.170961889f, -0.985277642f, -0.167938295f, -0.985797509f, -0.164913120f, -0.986308097f, -0.161886394f, -0.986809402f, -0.158858143f, -0.987301418f, -0.155828398f, -0.987784142f, -0.152797185f, -0.988257568f, -0.149764535f, -0.988721692f, -0.146730474f, -0.989176510f, -0.143695033f, -0.989622017f, -0.140658239f, -0.990058210f, -0.137620122f, -0.990485084f, -0.134580709f, -0.990902635f, -0.131540029f, -0.991310860f, -0.128498111f, -0.991709754f, -0.125454983f, -0.992099313f, -0.122410675f, -0.992479535f, -0.119365215f, -0.992850414f, -0.116318631f, -0.993211949f, -0.113270952f, -0.993564136f, -0.110222207f, -0.993906970f, -0.107172425f, -0.994240449f, -0.104121634f, -0.994564571f, -0.101069863f, -0.994879331f, -0.098017140f, -0.995184727f, -0.094963495f, -0.995480755f, -0.091908956f, -0.995767414f, -0.088853553f, -0.996044701f, -0.085797312f, -0.996312612f, -0.082740265f, -0.996571146f, -0.079682438f, -0.996820299f, -0.076623861f, -0.997060070f, -0.073564564f, -0.997290457f, -0.070504573f, -0.997511456f, -0.067443920f, -0.997723067f, -0.064382631f, -0.997925286f, -0.061320736f, -0.998118113f, -0.058258265f, -0.998301545f, -0.055195244f, -0.998475581f, -0.052131705f, -0.998640218f, -0.049067674f, -0.998795456f, -0.046003182f, -0.998941293f, -0.042938257f, -0.999077728f, -0.039872928f, -0.999204759f, -0.036807223f, -0.999322385f, -0.033741172f, -0.999430605f, -0.030674803f, -0.999529418f, -0.027608146f, -0.999618822f, -0.024541229f, -0.999698819f, -0.021474080f, -0.999769405f, -0.018406730f, -0.999830582f, -0.015339206f, -0.999882347f, -0.012271538f, -0.999924702f, -0.009203755f, -0.999957645f, -0.006135885f, -0.999981175f, -0.003067957f, -0.999995294f, -0.000000000f, -1.000000000f, 0.003067957f, -0.999995294f, 0.006135885f, -0.999981175f, 0.009203755f, -0.999957645f, 0.012271538f, -0.999924702f, 0.015339206f, -0.999882347f, 0.018406730f, -0.999830582f, 0.021474080f, -0.999769405f, 0.024541229f, -0.999698819f, 0.027608146f, -0.999618822f, 0.030674803f, -0.999529418f, 0.033741172f, -0.999430605f, 0.036807223f, -0.999322385f, 0.039872928f, -0.999204759f, 0.042938257f, -0.999077728f, 0.046003182f, -0.998941293f, 0.049067674f, -0.998795456f, 0.052131705f, -0.998640218f, 0.055195244f, -0.998475581f, 0.058258265f, -0.998301545f, 0.061320736f, -0.998118113f, 0.064382631f, -0.997925286f, 0.067443920f, -0.997723067f, 0.070504573f, -0.997511456f, 0.073564564f, -0.997290457f, 0.076623861f, -0.997060070f, 0.079682438f, -0.996820299f, 0.082740265f, -0.996571146f, 0.085797312f, -0.996312612f, 0.088853553f, -0.996044701f, 0.091908956f, -0.995767414f, 0.094963495f, -0.995480755f, 0.098017140f, -0.995184727f, 0.101069863f, -0.994879331f, 0.104121634f, -0.994564571f, 0.107172425f, -0.994240449f, 0.110222207f, -0.993906970f, 0.113270952f, -0.993564136f, 0.116318631f, -0.993211949f, 0.119365215f, -0.992850414f, 0.122410675f, -0.992479535f, 0.125454983f, -0.992099313f, 0.128498111f, -0.991709754f, 0.131540029f, -0.991310860f, 0.134580709f, -0.990902635f, 0.137620122f, -0.990485084f, 0.140658239f, -0.990058210f, 0.143695033f, -0.989622017f, 0.146730474f, -0.989176510f, 0.149764535f, -0.988721692f, 0.152797185f, -0.988257568f, 0.155828398f, -0.987784142f, 0.158858143f, -0.987301418f, 0.161886394f, -0.986809402f, 0.164913120f, -0.986308097f, 0.167938295f, -0.985797509f, 0.170961889f, -0.985277642f, 0.173983873f, -0.984748502f, 0.177004220f, -0.984210092f, 0.180022901f, -0.983662419f, 0.183039888f, -0.983105487f, 0.186055152f, -0.982539302f, 0.189068664f, -0.981963869f, 0.192080397f, -0.981379193f, 0.195090322f, -0.980785280f, 0.198098411f, -0.980182136f, 0.201104635f, -0.979569766f, 0.204108966f, -0.978948175f, 0.207111376f, -0.978317371f, 0.210111837f, -0.977677358f, 0.213110320f, -0.977028143f, 0.216106797f, -0.976369731f, 0.219101240f, -0.975702130f, 0.222093621f, -0.975025345f, 0.225083911f, -0.974339383f, 0.228072083f, -0.973644250f, 0.231058108f, -0.972939952f, 0.234041959f, -0.972226497f, 0.237023606f, -0.971503891f, 0.240003022f, -0.970772141f, 0.242980180f, -0.970031253f, 0.245955050f, -0.969281235f, 0.248927606f, -0.968522094f, 0.251897818f, -0.967753837f, 0.254865660f, -0.966976471f, 0.257831102f, -0.966190003f, 0.260794118f, -0.965394442f, 0.263754679f, -0.964589793f, 0.266712757f, -0.963776066f, 0.269668326f, -0.962953267f, 0.272621355f, -0.962121404f, 0.275571819f, -0.961280486f, 0.278519689f, -0.960430519f, 0.281464938f, -0.959571513f, 0.284407537f, -0.958703475f, 0.287347460f, -0.957826413f, 0.290284677f, -0.956940336f, 0.293219163f, -0.956045251f, 0.296150888f, -0.955141168f, 0.299079826f, -0.954228095f, 0.302005949f, -0.953306040f, 0.304929230f, -0.952375013f, 0.307849640f, -0.951435021f, 0.310767153f, -0.950486074f, 0.313681740f, -0.949528181f, 0.316593376f, -0.948561350f, 0.319502031f, -0.947585591f, 0.322407679f, -0.946600913f, 0.325310292f, -0.945607325f, 0.328209844f, -0.944604837f, 0.331106306f, -0.943593458f, 0.333999651f, -0.942573198f, 0.336889853f, -0.941544065f, 0.339776884f, -0.940506071f, 0.342660717f, -0.939459224f, 0.345541325f, -0.938403534f, 0.348418680f, -0.937339012f, 0.351292756f, -0.936265667f, 0.354163525f, -0.935183510f, 0.357030961f, -0.934092550f, 0.359895037f, -0.932992799f, 0.362755724f, -0.931884266f, 0.365612998f, -0.930766961f, 0.368466830f, -0.929640896f, 0.371317194f, -0.928506080f, 0.374164063f, -0.927362526f, 0.377007410f, -0.926210242f, 0.379847209f, -0.925049241f, 0.382683432f, -0.923879533f, 0.385516054f, -0.922701128f, 0.388345047f, -0.921514039f, 0.391170384f, -0.920318277f, 0.393992040f, -0.919113852f, 0.396809987f, -0.917900776f, 0.399624200f, -0.916679060f, 0.402434651f, -0.915448716f, 0.405241314f, -0.914209756f, 0.408044163f, -0.912962190f, 0.410843171f, -0.911706032f, 0.413638312f, -0.910441292f, 0.416429560f, -0.909167983f, 0.419216888f, -0.907886116f, 0.422000271f, -0.906595705f, 0.424779681f, -0.905296759f, 0.427555093f, -0.903989293f, 0.430326481f, -0.902673318f, 0.433093819f, -0.901348847f, 0.435857080f, -0.900015892f, 0.438616239f, -0.898674466f, 0.441371269f, -0.897324581f, 0.444122145f, -0.895966250f, 0.446868840f, -0.894599486f, 0.449611330f, -0.893224301f, 0.452349587f, -0.891840709f, 0.455083587f, -0.890448723f, 0.457813304f, -0.889048356f, 0.460538711f, -0.887639620f, 0.463259784f, -0.886222530f, 0.465976496f, -0.884797098f, 0.468688822f, -0.883363339f, 0.471396737f, -0.881921264f, 0.474100215f, -0.880470889f, 0.476799230f, -0.879012226f, 0.479493758f, -0.877545290f, 0.482183772f, -0.876070094f, 0.484869248f, -0.874586652f, 0.487550160f, -0.873094978f, 0.490226483f, -0.871595087f, 0.492898192f, -0.870086991f, 0.495565262f, -0.868570706f, 0.498227667f, -0.867046246f, 0.500885383f, -0.865513624f, 0.503538384f, -0.863972856f, 0.506186645f, -0.862423956f, 0.508830143f, -0.860866939f, 0.511468850f, -0.859301818f, 0.514102744f, -0.857728610f, 0.516731799f, -0.856147328f, 0.519355990f, -0.854557988f, 0.521975293f, -0.852960605f, 0.524589683f, -0.851355193f, 0.527199135f, -0.849741768f, 0.529803625f, -0.848120345f, 0.532403128f, -0.846490939f, 0.534997620f, -0.844853565f, 0.537587076f, -0.843208240f, 0.540171473f, -0.841554977f, 0.542750785f, -0.839893794f, 0.545324988f, -0.838224706f, 0.547894059f, -0.836547727f, 0.550457973f, -0.834862875f, 0.553016706f, -0.833170165f, 0.555570233f, -0.831469612f, 0.558118531f, -0.829761234f, 0.560661576f, -0.828045045f, 0.563199344f, -0.826321063f, 0.565731811f, -0.824589303f, 0.568258953f, -0.822849781f, 0.570780746f, -0.821102515f, 0.573297167f, -0.819347520f, 0.575808191f, -0.817584813f, 0.578313796f, -0.815814411f, 0.580813958f, -0.814036330f, 0.583308653f, -0.812250587f, 0.585797857f, -0.810457198f, 0.588281548f, -0.808656182f, 0.590759702f, -0.806847554f, 0.593232295f, -0.805031331f, 0.595699304f, -0.803207531f, 0.598160707f, -0.801376172f, 0.600616479f, -0.799537269f, 0.603066599f, -0.797690841f, 0.605511041f, -0.795836905f, 0.607949785f, -0.793975478f, 0.610382806f, -0.792106577f, 0.612810082f, -0.790230221f, 0.615231591f, -0.788346428f, 0.617647308f, -0.786455214f, 0.620057212f, -0.784556597f, 0.622461279f, -0.782650596f, 0.624859488f, -0.780737229f, 0.627251815f, -0.778816512f, 0.629638239f, -0.776888466f, 0.632018736f, -0.774953107f, 0.634393284f, -0.773010453f, 0.636761861f, -0.771060524f, 0.639124445f, -0.769103338f, 0.641481013f, -0.767138912f, 0.643831543f, -0.765167266f, 0.646176013f, -0.763188417f, 0.648514401f, -0.761202385f, 0.650846685f, -0.759209189f, 0.653172843f, -0.757208847f, 0.655492853f, -0.755201377f, 0.657806693f, -0.753186799f, 0.660114342f, -0.751165132f, 0.662415778f, -0.749136395f, 0.664710978f, -0.747100606f, 0.666999922f, -0.745057785f, 0.669282588f, -0.743007952f, 0.671558955f, -0.740951125f, 0.673829000f, -0.738887324f, 0.676092704f, -0.736816569f, 0.678350043f, -0.734738878f, 0.680600998f, -0.732654272f, 0.682845546f, -0.730562769f, 0.685083668f, -0.728464390f, 0.687315341f, -0.726359155f, 0.689540545f, -0.724247083f, 0.691759258f, -0.722128194f, 0.693971461f, -0.720002508f, 0.696177131f, -0.717870045f, 0.698376249f, -0.715730825f, 0.700568794f, -0.713584869f, 0.702754744f, -0.711432196f, 0.704934080f, -0.709272826f, 0.707106781f, -0.707106781f, 0.709272826f, -0.704934080f, 0.711432196f, -0.702754744f, 0.713584869f, -0.700568794f, 0.715730825f, -0.698376249f, 0.717870045f, -0.696177131f, 0.720002508f, -0.693971461f, 0.722128194f, -0.691759258f, 0.724247083f, -0.689540545f, 0.726359155f, -0.687315341f, 0.728464390f, -0.685083668f, 0.730562769f, -0.682845546f, 0.732654272f, -0.680600998f, 0.734738878f, -0.678350043f, 0.736816569f, -0.676092704f, 0.738887324f, -0.673829000f, 0.740951125f, -0.671558955f, 0.743007952f, -0.669282588f, 0.745057785f, -0.666999922f, 0.747100606f, -0.664710978f, 0.749136395f, -0.662415778f, 0.751165132f, -0.660114342f, 0.753186799f, -0.657806693f, 0.755201377f, -0.655492853f, 0.757208847f, -0.653172843f, 0.759209189f, -0.650846685f, 0.761202385f, -0.648514401f, 0.763188417f, -0.646176013f, 0.765167266f, -0.643831543f, 0.767138912f, -0.641481013f, 0.769103338f, -0.639124445f, 0.771060524f, -0.636761861f, 0.773010453f, -0.634393284f, 0.774953107f, -0.632018736f, 0.776888466f, -0.629638239f, 0.778816512f, -0.627251815f, 0.780737229f, -0.624859488f, 0.782650596f, -0.622461279f, 0.784556597f, -0.620057212f, 0.786455214f, -0.617647308f, 0.788346428f, -0.615231591f, 0.790230221f, -0.612810082f, 0.792106577f, -0.610382806f, 0.793975478f, -0.607949785f, 0.795836905f, -0.605511041f, 0.797690841f, -0.603066599f, 0.799537269f, -0.600616479f, 0.801376172f, -0.598160707f, 0.803207531f, -0.595699304f, 0.805031331f, -0.593232295f, 0.806847554f, -0.590759702f, 0.808656182f, -0.588281548f, 0.810457198f, -0.585797857f, 0.812250587f, -0.583308653f, 0.814036330f, -0.580813958f, 0.815814411f, -0.578313796f, 0.817584813f, -0.575808191f, 0.819347520f, -0.573297167f, 0.821102515f, -0.570780746f, 0.822849781f, -0.568258953f, 0.824589303f, -0.565731811f, 0.826321063f, -0.563199344f, 0.828045045f, -0.560661576f, 0.829761234f, -0.558118531f, 0.831469612f, -0.555570233f, 0.833170165f, -0.553016706f, 0.834862875f, -0.550457973f, 0.836547727f, -0.547894059f, 0.838224706f, -0.545324988f, 0.839893794f, -0.542750785f, 0.841554977f, -0.540171473f, 0.843208240f, -0.537587076f, 0.844853565f, -0.534997620f, 0.846490939f, -0.532403128f, 0.848120345f, -0.529803625f, 0.849741768f, -0.527199135f, 0.851355193f, -0.524589683f, 0.852960605f, -0.521975293f, 0.854557988f, -0.519355990f, 0.856147328f, -0.516731799f, 0.857728610f, -0.514102744f, 0.859301818f, -0.511468850f, 0.860866939f, -0.508830143f, 0.862423956f, -0.506186645f, 0.863972856f, -0.503538384f, 0.865513624f, -0.500885383f, 0.867046246f, -0.498227667f, 0.868570706f, -0.495565262f, 0.870086991f, -0.492898192f, 0.871595087f, -0.490226483f, 0.873094978f, -0.487550160f, 0.874586652f, -0.484869248f, 0.876070094f, -0.482183772f, 0.877545290f, -0.479493758f, 0.879012226f, -0.476799230f, 0.880470889f, -0.474100215f, 0.881921264f, -0.471396737f, 0.883363339f, -0.468688822f, 0.884797098f, -0.465976496f, 0.886222530f, -0.463259784f, 0.887639620f, -0.460538711f, 0.889048356f, -0.457813304f, 0.890448723f, -0.455083587f, 0.891840709f, -0.452349587f, 0.893224301f, -0.449611330f, 0.894599486f, -0.446868840f, 0.895966250f, -0.444122145f, 0.897324581f, -0.441371269f, 0.898674466f, -0.438616239f, 0.900015892f, -0.435857080f, 0.901348847f, -0.433093819f, 0.902673318f, -0.430326481f, 0.903989293f, -0.427555093f, 0.905296759f, -0.424779681f, 0.906595705f, -0.422000271f, 0.907886116f, -0.419216888f, 0.909167983f, -0.416429560f, 0.910441292f, -0.413638312f, 0.911706032f, -0.410843171f, 0.912962190f, -0.408044163f, 0.914209756f, -0.405241314f, 0.915448716f, -0.402434651f, 0.916679060f, -0.399624200f, 0.917900776f, -0.396809987f, 0.919113852f, -0.393992040f, 0.920318277f, -0.391170384f, 0.921514039f, -0.388345047f, 0.922701128f, -0.385516054f, 0.923879533f, -0.382683432f, 0.925049241f, -0.379847209f, 0.926210242f, -0.377007410f, 0.927362526f, -0.374164063f, 0.928506080f, -0.371317194f, 0.929640896f, -0.368466830f, 0.930766961f, -0.365612998f, 0.931884266f, -0.362755724f, 0.932992799f, -0.359895037f, 0.934092550f, -0.357030961f, 0.935183510f, -0.354163525f, 0.936265667f, -0.351292756f, 0.937339012f, -0.348418680f, 0.938403534f, -0.345541325f, 0.939459224f, -0.342660717f, 0.940506071f, -0.339776884f, 0.941544065f, -0.336889853f, 0.942573198f, -0.333999651f, 0.943593458f, -0.331106306f, 0.944604837f, -0.328209844f, 0.945607325f, -0.325310292f, 0.946600913f, -0.322407679f, 0.947585591f, -0.319502031f, 0.948561350f, -0.316593376f, 0.949528181f, -0.313681740f, 0.950486074f, -0.310767153f, 0.951435021f, -0.307849640f, 0.952375013f, -0.304929230f, 0.953306040f, -0.302005949f, 0.954228095f, -0.299079826f, 0.955141168f, -0.296150888f, 0.956045251f, -0.293219163f, 0.956940336f, -0.290284677f, 0.957826413f, -0.287347460f, 0.958703475f, -0.284407537f, 0.959571513f, -0.281464938f, 0.960430519f, -0.278519689f, 0.961280486f, -0.275571819f, 0.962121404f, -0.272621355f, 0.962953267f, -0.269668326f, 0.963776066f, -0.266712757f, 0.964589793f, -0.263754679f, 0.965394442f, -0.260794118f, 0.966190003f, -0.257831102f, 0.966976471f, -0.254865660f, 0.967753837f, -0.251897818f, 0.968522094f, -0.248927606f, 0.969281235f, -0.245955050f, 0.970031253f, -0.242980180f, 0.970772141f, -0.240003022f, 0.971503891f, -0.237023606f, 0.972226497f, -0.234041959f, 0.972939952f, -0.231058108f, 0.973644250f, -0.228072083f, 0.974339383f, -0.225083911f, 0.975025345f, -0.222093621f, 0.975702130f, -0.219101240f, 0.976369731f, -0.216106797f, 0.977028143f, -0.213110320f, 0.977677358f, -0.210111837f, 0.978317371f, -0.207111376f, 0.978948175f, -0.204108966f, 0.979569766f, -0.201104635f, 0.980182136f, -0.198098411f, 0.980785280f, -0.195090322f, 0.981379193f, -0.192080397f, 0.981963869f, -0.189068664f, 0.982539302f, -0.186055152f, 0.983105487f, -0.183039888f, 0.983662419f, -0.180022901f, 0.984210092f, -0.177004220f, 0.984748502f, -0.173983873f, 0.985277642f, -0.170961889f, 0.985797509f, -0.167938295f, 0.986308097f, -0.164913120f, 0.986809402f, -0.161886394f, 0.987301418f, -0.158858143f, 0.987784142f, -0.155828398f, 0.988257568f, -0.152797185f, 0.988721692f, -0.149764535f, 0.989176510f, -0.146730474f, 0.989622017f, -0.143695033f, 0.990058210f, -0.140658239f, 0.990485084f, -0.137620122f, 0.990902635f, -0.134580709f, 0.991310860f, -0.131540029f, 0.991709754f, -0.128498111f, 0.992099313f, -0.125454983f, 0.992479535f, -0.122410675f, 0.992850414f, -0.119365215f, 0.993211949f, -0.116318631f, 0.993564136f, -0.113270952f, 0.993906970f, -0.110222207f, 0.994240449f, -0.107172425f, 0.994564571f, -0.104121634f, 0.994879331f, -0.101069863f, 0.995184727f, -0.098017140f, 0.995480755f, -0.094963495f, 0.995767414f, -0.091908956f, 0.996044701f, -0.088853553f, 0.996312612f, -0.085797312f, 0.996571146f, -0.082740265f, 0.996820299f, -0.079682438f, 0.997060070f, -0.076623861f, 0.997290457f, -0.073564564f, 0.997511456f, -0.070504573f, 0.997723067f, -0.067443920f, 0.997925286f, -0.064382631f, 0.998118113f, -0.061320736f, 0.998301545f, -0.058258265f, 0.998475581f, -0.055195244f, 0.998640218f, -0.052131705f, 0.998795456f, -0.049067674f, 0.998941293f, -0.046003182f, 0.999077728f, -0.042938257f, 0.999204759f, -0.039872928f, 0.999322385f, -0.036807223f, 0.999430605f, -0.033741172f, 0.999529418f, -0.030674803f, 0.999618822f, -0.027608146f, 0.999698819f, -0.024541229f, 0.999769405f, -0.021474080f, 0.999830582f, -0.018406730f, 0.999882347f, -0.015339206f, 0.999924702f, -0.012271538f, 0.999957645f, -0.009203755f, 0.999981175f, -0.006135885f, 0.999995294f, -0.003067957f }; /** @par Example code for Floating-point Twiddle factors Generation: @par
for (i = 0; i< N/; i++)
  {
 	twiddleCoef[2*i]   = cos(i * 2*PI/(float)N);
 	twiddleCoef[2*i+1] = sin(i * 2*PI/(float)N);
  } 
@par where N = 4096, PI = 3.14159265358979 @par Cos and Sin values are in interleaved fashion */ const float32_t twiddleCoef_4096[8192] ARM_DSP_TABLE_ATTRIBUTE = { 1.000000000f, 0.000000000f, 0.999998823f, 0.001533980f, 0.999995294f, 0.003067957f, 0.999989411f, 0.004601926f, 0.999981175f, 0.006135885f, 0.999970586f, 0.007669829f, 0.999957645f, 0.009203755f, 0.999942350f, 0.010737659f, 0.999924702f, 0.012271538f, 0.999904701f, 0.013805389f, 0.999882347f, 0.015339206f, 0.999857641f, 0.016872988f, 0.999830582f, 0.018406730f, 0.999801170f, 0.019940429f, 0.999769405f, 0.021474080f, 0.999735288f, 0.023007681f, 0.999698819f, 0.024541229f, 0.999659997f, 0.026074718f, 0.999618822f, 0.027608146f, 0.999575296f, 0.029141509f, 0.999529418f, 0.030674803f, 0.999481187f, 0.032208025f, 0.999430605f, 0.033741172f, 0.999377670f, 0.035274239f, 0.999322385f, 0.036807223f, 0.999264747f, 0.038340120f, 0.999204759f, 0.039872928f, 0.999142419f, 0.041405641f, 0.999077728f, 0.042938257f, 0.999010686f, 0.044470772f, 0.998941293f, 0.046003182f, 0.998869550f, 0.047535484f, 0.998795456f, 0.049067674f, 0.998719012f, 0.050599749f, 0.998640218f, 0.052131705f, 0.998559074f, 0.053663538f, 0.998475581f, 0.055195244f, 0.998389737f, 0.056726821f, 0.998301545f, 0.058258265f, 0.998211003f, 0.059789571f, 0.998118113f, 0.061320736f, 0.998022874f, 0.062851758f, 0.997925286f, 0.064382631f, 0.997825350f, 0.065913353f, 0.997723067f, 0.067443920f, 0.997618435f, 0.068974328f, 0.997511456f, 0.070504573f, 0.997402130f, 0.072034653f, 0.997290457f, 0.073564564f, 0.997176437f, 0.075094301f, 0.997060070f, 0.076623861f, 0.996941358f, 0.078153242f, 0.996820299f, 0.079682438f, 0.996696895f, 0.081211447f, 0.996571146f, 0.082740265f, 0.996443051f, 0.084268888f, 0.996312612f, 0.085797312f, 0.996179829f, 0.087325535f, 0.996044701f, 0.088853553f, 0.995907229f, 0.090381361f, 0.995767414f, 0.091908956f, 0.995625256f, 0.093436336f, 0.995480755f, 0.094963495f, 0.995333912f, 0.096490431f, 0.995184727f, 0.098017140f, 0.995033199f, 0.099543619f, 0.994879331f, 0.101069863f, 0.994723121f, 0.102595869f, 0.994564571f, 0.104121634f, 0.994403680f, 0.105647154f, 0.994240449f, 0.107172425f, 0.994074879f, 0.108697444f, 0.993906970f, 0.110222207f, 0.993736722f, 0.111746711f, 0.993564136f, 0.113270952f, 0.993389211f, 0.114794927f, 0.993211949f, 0.116318631f, 0.993032350f, 0.117842062f, 0.992850414f, 0.119365215f, 0.992666142f, 0.120888087f, 0.992479535f, 0.122410675f, 0.992290591f, 0.123932975f, 0.992099313f, 0.125454983f, 0.991905700f, 0.126976696f, 0.991709754f, 0.128498111f, 0.991511473f, 0.130019223f, 0.991310860f, 0.131540029f, 0.991107914f, 0.133060525f, 0.990902635f, 0.134580709f, 0.990695025f, 0.136100575f, 0.990485084f, 0.137620122f, 0.990272812f, 0.139139344f, 0.990058210f, 0.140658239f, 0.989841278f, 0.142176804f, 0.989622017f, 0.143695033f, 0.989400428f, 0.145212925f, 0.989176510f, 0.146730474f, 0.988950265f, 0.148247679f, 0.988721692f, 0.149764535f, 0.988490793f, 0.151281038f, 0.988257568f, 0.152797185f, 0.988022017f, 0.154312973f, 0.987784142f, 0.155828398f, 0.987543942f, 0.157343456f, 0.987301418f, 0.158858143f, 0.987056571f, 0.160372457f, 0.986809402f, 0.161886394f, 0.986559910f, 0.163399949f, 0.986308097f, 0.164913120f, 0.986053963f, 0.166425904f, 0.985797509f, 0.167938295f, 0.985538735f, 0.169450291f, 0.985277642f, 0.170961889f, 0.985014231f, 0.172473084f, 0.984748502f, 0.173983873f, 0.984480455f, 0.175494253f, 0.984210092f, 0.177004220f, 0.983937413f, 0.178513771f, 0.983662419f, 0.180022901f, 0.983385110f, 0.181531608f, 0.983105487f, 0.183039888f, 0.982823551f, 0.184547737f, 0.982539302f, 0.186055152f, 0.982252741f, 0.187562129f, 0.981963869f, 0.189068664f, 0.981672686f, 0.190574755f, 0.981379193f, 0.192080397f, 0.981083391f, 0.193585587f, 0.980785280f, 0.195090322f, 0.980484862f, 0.196594598f, 0.980182136f, 0.198098411f, 0.979877104f, 0.199601758f, 0.979569766f, 0.201104635f, 0.979260123f, 0.202607039f, 0.978948175f, 0.204108966f, 0.978633924f, 0.205610413f, 0.978317371f, 0.207111376f, 0.977998515f, 0.208611852f, 0.977677358f, 0.210111837f, 0.977353900f, 0.211611327f, 0.977028143f, 0.213110320f, 0.976700086f, 0.214608811f, 0.976369731f, 0.216106797f, 0.976037079f, 0.217604275f, 0.975702130f, 0.219101240f, 0.975364885f, 0.220597690f, 0.975025345f, 0.222093621f, 0.974683511f, 0.223589029f, 0.974339383f, 0.225083911f, 0.973992962f, 0.226578264f, 0.973644250f, 0.228072083f, 0.973293246f, 0.229565366f, 0.972939952f, 0.231058108f, 0.972584369f, 0.232550307f, 0.972226497f, 0.234041959f, 0.971866337f, 0.235533059f, 0.971503891f, 0.237023606f, 0.971139158f, 0.238513595f, 0.970772141f, 0.240003022f, 0.970402839f, 0.241491885f, 0.970031253f, 0.242980180f, 0.969657385f, 0.244467903f, 0.969281235f, 0.245955050f, 0.968902805f, 0.247441619f, 0.968522094f, 0.248927606f, 0.968139105f, 0.250413007f, 0.967753837f, 0.251897818f, 0.967366292f, 0.253382037f, 0.966976471f, 0.254865660f, 0.966584374f, 0.256348682f, 0.966190003f, 0.257831102f, 0.965793359f, 0.259312915f, 0.965394442f, 0.260794118f, 0.964993253f, 0.262274707f, 0.964589793f, 0.263754679f, 0.964184064f, 0.265234030f, 0.963776066f, 0.266712757f, 0.963365800f, 0.268190857f, 0.962953267f, 0.269668326f, 0.962538468f, 0.271145160f, 0.962121404f, 0.272621355f, 0.961702077f, 0.274096910f, 0.961280486f, 0.275571819f, 0.960856633f, 0.277046080f, 0.960430519f, 0.278519689f, 0.960002146f, 0.279992643f, 0.959571513f, 0.281464938f, 0.959138622f, 0.282936570f, 0.958703475f, 0.284407537f, 0.958266071f, 0.285877835f, 0.957826413f, 0.287347460f, 0.957384501f, 0.288816408f, 0.956940336f, 0.290284677f, 0.956493919f, 0.291752263f, 0.956045251f, 0.293219163f, 0.955594334f, 0.294685372f, 0.955141168f, 0.296150888f, 0.954685755f, 0.297615707f, 0.954228095f, 0.299079826f, 0.953768190f, 0.300543241f, 0.953306040f, 0.302005949f, 0.952841648f, 0.303467947f, 0.952375013f, 0.304929230f, 0.951906137f, 0.306389795f, 0.951435021f, 0.307849640f, 0.950961666f, 0.309308760f, 0.950486074f, 0.310767153f, 0.950008245f, 0.312224814f, 0.949528181f, 0.313681740f, 0.949045882f, 0.315137929f, 0.948561350f, 0.316593376f, 0.948074586f, 0.318048077f, 0.947585591f, 0.319502031f, 0.947094366f, 0.320955232f, 0.946600913f, 0.322407679f, 0.946105232f, 0.323859367f, 0.945607325f, 0.325310292f, 0.945107193f, 0.326760452f, 0.944604837f, 0.328209844f, 0.944100258f, 0.329658463f, 0.943593458f, 0.331106306f, 0.943084437f, 0.332553370f, 0.942573198f, 0.333999651f, 0.942059740f, 0.335445147f, 0.941544065f, 0.336889853f, 0.941026175f, 0.338333767f, 0.940506071f, 0.339776884f, 0.939983753f, 0.341219202f, 0.939459224f, 0.342660717f, 0.938932484f, 0.344101426f, 0.938403534f, 0.345541325f, 0.937872376f, 0.346980411f, 0.937339012f, 0.348418680f, 0.936803442f, 0.349856130f, 0.936265667f, 0.351292756f, 0.935725689f, 0.352728556f, 0.935183510f, 0.354163525f, 0.934639130f, 0.355597662f, 0.934092550f, 0.357030961f, 0.933543773f, 0.358463421f, 0.932992799f, 0.359895037f, 0.932439629f, 0.361325806f, 0.931884266f, 0.362755724f, 0.931326709f, 0.364184790f, 0.930766961f, 0.365612998f, 0.930205023f, 0.367040346f, 0.929640896f, 0.368466830f, 0.929074581f, 0.369892447f, 0.928506080f, 0.371317194f, 0.927935395f, 0.372741067f, 0.927362526f, 0.374164063f, 0.926787474f, 0.375586178f, 0.926210242f, 0.377007410f, 0.925630831f, 0.378427755f, 0.925049241f, 0.379847209f, 0.924465474f, 0.381265769f, 0.923879533f, 0.382683432f, 0.923291417f, 0.384100195f, 0.922701128f, 0.385516054f, 0.922108669f, 0.386931006f, 0.921514039f, 0.388345047f, 0.920917242f, 0.389758174f, 0.920318277f, 0.391170384f, 0.919717146f, 0.392581674f, 0.919113852f, 0.393992040f, 0.918508394f, 0.395401479f, 0.917900776f, 0.396809987f, 0.917290997f, 0.398217562f, 0.916679060f, 0.399624200f, 0.916064966f, 0.401029897f, 0.915448716f, 0.402434651f, 0.914830312f, 0.403838458f, 0.914209756f, 0.405241314f, 0.913587048f, 0.406643217f, 0.912962190f, 0.408044163f, 0.912335185f, 0.409444149f, 0.911706032f, 0.410843171f, 0.911074734f, 0.412241227f, 0.910441292f, 0.413638312f, 0.909805708f, 0.415034424f, 0.909167983f, 0.416429560f, 0.908528119f, 0.417823716f, 0.907886116f, 0.419216888f, 0.907241978f, 0.420609074f, 0.906595705f, 0.422000271f, 0.905947298f, 0.423390474f, 0.905296759f, 0.424779681f, 0.904644091f, 0.426167889f, 0.903989293f, 0.427555093f, 0.903332368f, 0.428941292f, 0.902673318f, 0.430326481f, 0.902012144f, 0.431710658f, 0.901348847f, 0.433093819f, 0.900683429f, 0.434475961f, 0.900015892f, 0.435857080f, 0.899346237f, 0.437237174f, 0.898674466f, 0.438616239f, 0.898000580f, 0.439994271f, 0.897324581f, 0.441371269f, 0.896646470f, 0.442747228f, 0.895966250f, 0.444122145f, 0.895283921f, 0.445496017f, 0.894599486f, 0.446868840f, 0.893912945f, 0.448240612f, 0.893224301f, 0.449611330f, 0.892533555f, 0.450980989f, 0.891840709f, 0.452349587f, 0.891145765f, 0.453717121f, 0.890448723f, 0.455083587f, 0.889749586f, 0.456448982f, 0.889048356f, 0.457813304f, 0.888345033f, 0.459176548f, 0.887639620f, 0.460538711f, 0.886932119f, 0.461899791f, 0.886222530f, 0.463259784f, 0.885510856f, 0.464618686f, 0.884797098f, 0.465976496f, 0.884081259f, 0.467333209f, 0.883363339f, 0.468688822f, 0.882643340f, 0.470043332f, 0.881921264f, 0.471396737f, 0.881197113f, 0.472749032f, 0.880470889f, 0.474100215f, 0.879742593f, 0.475450282f, 0.879012226f, 0.476799230f, 0.878279792f, 0.478147056f, 0.877545290f, 0.479493758f, 0.876808724f, 0.480839331f, 0.876070094f, 0.482183772f, 0.875329403f, 0.483527079f, 0.874586652f, 0.484869248f, 0.873841843f, 0.486210276f, 0.873094978f, 0.487550160f, 0.872346059f, 0.488888897f, 0.871595087f, 0.490226483f, 0.870842063f, 0.491562916f, 0.870086991f, 0.492898192f, 0.869329871f, 0.494232309f, 0.868570706f, 0.495565262f, 0.867809497f, 0.496897049f, 0.867046246f, 0.498227667f, 0.866280954f, 0.499557113f, 0.865513624f, 0.500885383f, 0.864744258f, 0.502212474f, 0.863972856f, 0.503538384f, 0.863199422f, 0.504863109f, 0.862423956f, 0.506186645f, 0.861646461f, 0.507508991f, 0.860866939f, 0.508830143f, 0.860085390f, 0.510150097f, 0.859301818f, 0.511468850f, 0.858516224f, 0.512786401f, 0.857728610f, 0.514102744f, 0.856938977f, 0.515417878f, 0.856147328f, 0.516731799f, 0.855353665f, 0.518044504f, 0.854557988f, 0.519355990f, 0.853760301f, 0.520666254f, 0.852960605f, 0.521975293f, 0.852158902f, 0.523283103f, 0.851355193f, 0.524589683f, 0.850549481f, 0.525895027f, 0.849741768f, 0.527199135f, 0.848932055f, 0.528502002f, 0.848120345f, 0.529803625f, 0.847306639f, 0.531104001f, 0.846490939f, 0.532403128f, 0.845673247f, 0.533701002f, 0.844853565f, 0.534997620f, 0.844031895f, 0.536292979f, 0.843208240f, 0.537587076f, 0.842382600f, 0.538879909f, 0.841554977f, 0.540171473f, 0.840725375f, 0.541461766f, 0.839893794f, 0.542750785f, 0.839060237f, 0.544038527f, 0.838224706f, 0.545324988f, 0.837387202f, 0.546610167f, 0.836547727f, 0.547894059f, 0.835706284f, 0.549176662f, 0.834862875f, 0.550457973f, 0.834017501f, 0.551737988f, 0.833170165f, 0.553016706f, 0.832320868f, 0.554294121f, 0.831469612f, 0.555570233f, 0.830616400f, 0.556845037f, 0.829761234f, 0.558118531f, 0.828904115f, 0.559390712f, 0.828045045f, 0.560661576f, 0.827184027f, 0.561931121f, 0.826321063f, 0.563199344f, 0.825456154f, 0.564466242f, 0.824589303f, 0.565731811f, 0.823720511f, 0.566996049f, 0.822849781f, 0.568258953f, 0.821977115f, 0.569520519f, 0.821102515f, 0.570780746f, 0.820225983f, 0.572039629f, 0.819347520f, 0.573297167f, 0.818467130f, 0.574553355f, 0.817584813f, 0.575808191f, 0.816700573f, 0.577061673f, 0.815814411f, 0.578313796f, 0.814926329f, 0.579564559f, 0.814036330f, 0.580813958f, 0.813144415f, 0.582061990f, 0.812250587f, 0.583308653f, 0.811354847f, 0.584553943f, 0.810457198f, 0.585797857f, 0.809557642f, 0.587040394f, 0.808656182f, 0.588281548f, 0.807752818f, 0.589521319f, 0.806847554f, 0.590759702f, 0.805940391f, 0.591996695f, 0.805031331f, 0.593232295f, 0.804120377f, 0.594466499f, 0.803207531f, 0.595699304f, 0.802292796f, 0.596930708f, 0.801376172f, 0.598160707f, 0.800457662f, 0.599389298f, 0.799537269f, 0.600616479f, 0.798614995f, 0.601842247f, 0.797690841f, 0.603066599f, 0.796764810f, 0.604289531f, 0.795836905f, 0.605511041f, 0.794907126f, 0.606731127f, 0.793975478f, 0.607949785f, 0.793041960f, 0.609167012f, 0.792106577f, 0.610382806f, 0.791169330f, 0.611597164f, 0.790230221f, 0.612810082f, 0.789289253f, 0.614021559f, 0.788346428f, 0.615231591f, 0.787401747f, 0.616440175f, 0.786455214f, 0.617647308f, 0.785506830f, 0.618852988f, 0.784556597f, 0.620057212f, 0.783604519f, 0.621259977f, 0.782650596f, 0.622461279f, 0.781694832f, 0.623661118f, 0.780737229f, 0.624859488f, 0.779777788f, 0.626056388f, 0.778816512f, 0.627251815f, 0.777853404f, 0.628445767f, 0.776888466f, 0.629638239f, 0.775921699f, 0.630829230f, 0.774953107f, 0.632018736f, 0.773982691f, 0.633206755f, 0.773010453f, 0.634393284f, 0.772036397f, 0.635578320f, 0.771060524f, 0.636761861f, 0.770082837f, 0.637943904f, 0.769103338f, 0.639124445f, 0.768122029f, 0.640303482f, 0.767138912f, 0.641481013f, 0.766153990f, 0.642657034f, 0.765167266f, 0.643831543f, 0.764178741f, 0.645004537f, 0.763188417f, 0.646176013f, 0.762196298f, 0.647345969f, 0.761202385f, 0.648514401f, 0.760206682f, 0.649681307f, 0.759209189f, 0.650846685f, 0.758209910f, 0.652010531f, 0.757208847f, 0.653172843f, 0.756206001f, 0.654333618f, 0.755201377f, 0.655492853f, 0.754194975f, 0.656650546f, 0.753186799f, 0.657806693f, 0.752176850f, 0.658961293f, 0.751165132f, 0.660114342f, 0.750151646f, 0.661265838f, 0.749136395f, 0.662415778f, 0.748119380f, 0.663564159f, 0.747100606f, 0.664710978f, 0.746080074f, 0.665856234f, 0.745057785f, 0.666999922f, 0.744033744f, 0.668142041f, 0.743007952f, 0.669282588f, 0.741980412f, 0.670421560f, 0.740951125f, 0.671558955f, 0.739920095f, 0.672694769f, 0.738887324f, 0.673829000f, 0.737852815f, 0.674961646f, 0.736816569f, 0.676092704f, 0.735778589f, 0.677222170f, 0.734738878f, 0.678350043f, 0.733697438f, 0.679476320f, 0.732654272f, 0.680600998f, 0.731609381f, 0.681724074f, 0.730562769f, 0.682845546f, 0.729514438f, 0.683965412f, 0.728464390f, 0.685083668f, 0.727412629f, 0.686200312f, 0.726359155f, 0.687315341f, 0.725303972f, 0.688428753f, 0.724247083f, 0.689540545f, 0.723188489f, 0.690650714f, 0.722128194f, 0.691759258f, 0.721066199f, 0.692866175f, 0.720002508f, 0.693971461f, 0.718937122f, 0.695075114f, 0.717870045f, 0.696177131f, 0.716801279f, 0.697277511f, 0.715730825f, 0.698376249f, 0.714658688f, 0.699473345f, 0.713584869f, 0.700568794f, 0.712509371f, 0.701662595f, 0.711432196f, 0.702754744f, 0.710353347f, 0.703845241f, 0.709272826f, 0.704934080f, 0.708190637f, 0.706021261f, 0.707106781f, 0.707106781f, 0.706021261f, 0.708190637f, 0.704934080f, 0.709272826f, 0.703845241f, 0.710353347f, 0.702754744f, 0.711432196f, 0.701662595f, 0.712509371f, 0.700568794f, 0.713584869f, 0.699473345f, 0.714658688f, 0.698376249f, 0.715730825f, 0.697277511f, 0.716801279f, 0.696177131f, 0.717870045f, 0.695075114f, 0.718937122f, 0.693971461f, 0.720002508f, 0.692866175f, 0.721066199f, 0.691759258f, 0.722128194f, 0.690650714f, 0.723188489f, 0.689540545f, 0.724247083f, 0.688428753f, 0.725303972f, 0.687315341f, 0.726359155f, 0.686200312f, 0.727412629f, 0.685083668f, 0.728464390f, 0.683965412f, 0.729514438f, 0.682845546f, 0.730562769f, 0.681724074f, 0.731609381f, 0.680600998f, 0.732654272f, 0.679476320f, 0.733697438f, 0.678350043f, 0.734738878f, 0.677222170f, 0.735778589f, 0.676092704f, 0.736816569f, 0.674961646f, 0.737852815f, 0.673829000f, 0.738887324f, 0.672694769f, 0.739920095f, 0.671558955f, 0.740951125f, 0.670421560f, 0.741980412f, 0.669282588f, 0.743007952f, 0.668142041f, 0.744033744f, 0.666999922f, 0.745057785f, 0.665856234f, 0.746080074f, 0.664710978f, 0.747100606f, 0.663564159f, 0.748119380f, 0.662415778f, 0.749136395f, 0.661265838f, 0.750151646f, 0.660114342f, 0.751165132f, 0.658961293f, 0.752176850f, 0.657806693f, 0.753186799f, 0.656650546f, 0.754194975f, 0.655492853f, 0.755201377f, 0.654333618f, 0.756206001f, 0.653172843f, 0.757208847f, 0.652010531f, 0.758209910f, 0.650846685f, 0.759209189f, 0.649681307f, 0.760206682f, 0.648514401f, 0.761202385f, 0.647345969f, 0.762196298f, 0.646176013f, 0.763188417f, 0.645004537f, 0.764178741f, 0.643831543f, 0.765167266f, 0.642657034f, 0.766153990f, 0.641481013f, 0.767138912f, 0.640303482f, 0.768122029f, 0.639124445f, 0.769103338f, 0.637943904f, 0.770082837f, 0.636761861f, 0.771060524f, 0.635578320f, 0.772036397f, 0.634393284f, 0.773010453f, 0.633206755f, 0.773982691f, 0.632018736f, 0.774953107f, 0.630829230f, 0.775921699f, 0.629638239f, 0.776888466f, 0.628445767f, 0.777853404f, 0.627251815f, 0.778816512f, 0.626056388f, 0.779777788f, 0.624859488f, 0.780737229f, 0.623661118f, 0.781694832f, 0.622461279f, 0.782650596f, 0.621259977f, 0.783604519f, 0.620057212f, 0.784556597f, 0.618852988f, 0.785506830f, 0.617647308f, 0.786455214f, 0.616440175f, 0.787401747f, 0.615231591f, 0.788346428f, 0.614021559f, 0.789289253f, 0.612810082f, 0.790230221f, 0.611597164f, 0.791169330f, 0.610382806f, 0.792106577f, 0.609167012f, 0.793041960f, 0.607949785f, 0.793975478f, 0.606731127f, 0.794907126f, 0.605511041f, 0.795836905f, 0.604289531f, 0.796764810f, 0.603066599f, 0.797690841f, 0.601842247f, 0.798614995f, 0.600616479f, 0.799537269f, 0.599389298f, 0.800457662f, 0.598160707f, 0.801376172f, 0.596930708f, 0.802292796f, 0.595699304f, 0.803207531f, 0.594466499f, 0.804120377f, 0.593232295f, 0.805031331f, 0.591996695f, 0.805940391f, 0.590759702f, 0.806847554f, 0.589521319f, 0.807752818f, 0.588281548f, 0.808656182f, 0.587040394f, 0.809557642f, 0.585797857f, 0.810457198f, 0.584553943f, 0.811354847f, 0.583308653f, 0.812250587f, 0.582061990f, 0.813144415f, 0.580813958f, 0.814036330f, 0.579564559f, 0.814926329f, 0.578313796f, 0.815814411f, 0.577061673f, 0.816700573f, 0.575808191f, 0.817584813f, 0.574553355f, 0.818467130f, 0.573297167f, 0.819347520f, 0.572039629f, 0.820225983f, 0.570780746f, 0.821102515f, 0.569520519f, 0.821977115f, 0.568258953f, 0.822849781f, 0.566996049f, 0.823720511f, 0.565731811f, 0.824589303f, 0.564466242f, 0.825456154f, 0.563199344f, 0.826321063f, 0.561931121f, 0.827184027f, 0.560661576f, 0.828045045f, 0.559390712f, 0.828904115f, 0.558118531f, 0.829761234f, 0.556845037f, 0.830616400f, 0.555570233f, 0.831469612f, 0.554294121f, 0.832320868f, 0.553016706f, 0.833170165f, 0.551737988f, 0.834017501f, 0.550457973f, 0.834862875f, 0.549176662f, 0.835706284f, 0.547894059f, 0.836547727f, 0.546610167f, 0.837387202f, 0.545324988f, 0.838224706f, 0.544038527f, 0.839060237f, 0.542750785f, 0.839893794f, 0.541461766f, 0.840725375f, 0.540171473f, 0.841554977f, 0.538879909f, 0.842382600f, 0.537587076f, 0.843208240f, 0.536292979f, 0.844031895f, 0.534997620f, 0.844853565f, 0.533701002f, 0.845673247f, 0.532403128f, 0.846490939f, 0.531104001f, 0.847306639f, 0.529803625f, 0.848120345f, 0.528502002f, 0.848932055f, 0.527199135f, 0.849741768f, 0.525895027f, 0.850549481f, 0.524589683f, 0.851355193f, 0.523283103f, 0.852158902f, 0.521975293f, 0.852960605f, 0.520666254f, 0.853760301f, 0.519355990f, 0.854557988f, 0.518044504f, 0.855353665f, 0.516731799f, 0.856147328f, 0.515417878f, 0.856938977f, 0.514102744f, 0.857728610f, 0.512786401f, 0.858516224f, 0.511468850f, 0.859301818f, 0.510150097f, 0.860085390f, 0.508830143f, 0.860866939f, 0.507508991f, 0.861646461f, 0.506186645f, 0.862423956f, 0.504863109f, 0.863199422f, 0.503538384f, 0.863972856f, 0.502212474f, 0.864744258f, 0.500885383f, 0.865513624f, 0.499557113f, 0.866280954f, 0.498227667f, 0.867046246f, 0.496897049f, 0.867809497f, 0.495565262f, 0.868570706f, 0.494232309f, 0.869329871f, 0.492898192f, 0.870086991f, 0.491562916f, 0.870842063f, 0.490226483f, 0.871595087f, 0.488888897f, 0.872346059f, 0.487550160f, 0.873094978f, 0.486210276f, 0.873841843f, 0.484869248f, 0.874586652f, 0.483527079f, 0.875329403f, 0.482183772f, 0.876070094f, 0.480839331f, 0.876808724f, 0.479493758f, 0.877545290f, 0.478147056f, 0.878279792f, 0.476799230f, 0.879012226f, 0.475450282f, 0.879742593f, 0.474100215f, 0.880470889f, 0.472749032f, 0.881197113f, 0.471396737f, 0.881921264f, 0.470043332f, 0.882643340f, 0.468688822f, 0.883363339f, 0.467333209f, 0.884081259f, 0.465976496f, 0.884797098f, 0.464618686f, 0.885510856f, 0.463259784f, 0.886222530f, 0.461899791f, 0.886932119f, 0.460538711f, 0.887639620f, 0.459176548f, 0.888345033f, 0.457813304f, 0.889048356f, 0.456448982f, 0.889749586f, 0.455083587f, 0.890448723f, 0.453717121f, 0.891145765f, 0.452349587f, 0.891840709f, 0.450980989f, 0.892533555f, 0.449611330f, 0.893224301f, 0.448240612f, 0.893912945f, 0.446868840f, 0.894599486f, 0.445496017f, 0.895283921f, 0.444122145f, 0.895966250f, 0.442747228f, 0.896646470f, 0.441371269f, 0.897324581f, 0.439994271f, 0.898000580f, 0.438616239f, 0.898674466f, 0.437237174f, 0.899346237f, 0.435857080f, 0.900015892f, 0.434475961f, 0.900683429f, 0.433093819f, 0.901348847f, 0.431710658f, 0.902012144f, 0.430326481f, 0.902673318f, 0.428941292f, 0.903332368f, 0.427555093f, 0.903989293f, 0.426167889f, 0.904644091f, 0.424779681f, 0.905296759f, 0.423390474f, 0.905947298f, 0.422000271f, 0.906595705f, 0.420609074f, 0.907241978f, 0.419216888f, 0.907886116f, 0.417823716f, 0.908528119f, 0.416429560f, 0.909167983f, 0.415034424f, 0.909805708f, 0.413638312f, 0.910441292f, 0.412241227f, 0.911074734f, 0.410843171f, 0.911706032f, 0.409444149f, 0.912335185f, 0.408044163f, 0.912962190f, 0.406643217f, 0.913587048f, 0.405241314f, 0.914209756f, 0.403838458f, 0.914830312f, 0.402434651f, 0.915448716f, 0.401029897f, 0.916064966f, 0.399624200f, 0.916679060f, 0.398217562f, 0.917290997f, 0.396809987f, 0.917900776f, 0.395401479f, 0.918508394f, 0.393992040f, 0.919113852f, 0.392581674f, 0.919717146f, 0.391170384f, 0.920318277f, 0.389758174f, 0.920917242f, 0.388345047f, 0.921514039f, 0.386931006f, 0.922108669f, 0.385516054f, 0.922701128f, 0.384100195f, 0.923291417f, 0.382683432f, 0.923879533f, 0.381265769f, 0.924465474f, 0.379847209f, 0.925049241f, 0.378427755f, 0.925630831f, 0.377007410f, 0.926210242f, 0.375586178f, 0.926787474f, 0.374164063f, 0.927362526f, 0.372741067f, 0.927935395f, 0.371317194f, 0.928506080f, 0.369892447f, 0.929074581f, 0.368466830f, 0.929640896f, 0.367040346f, 0.930205023f, 0.365612998f, 0.930766961f, 0.364184790f, 0.931326709f, 0.362755724f, 0.931884266f, 0.361325806f, 0.932439629f, 0.359895037f, 0.932992799f, 0.358463421f, 0.933543773f, 0.357030961f, 0.934092550f, 0.355597662f, 0.934639130f, 0.354163525f, 0.935183510f, 0.352728556f, 0.935725689f, 0.351292756f, 0.936265667f, 0.349856130f, 0.936803442f, 0.348418680f, 0.937339012f, 0.346980411f, 0.937872376f, 0.345541325f, 0.938403534f, 0.344101426f, 0.938932484f, 0.342660717f, 0.939459224f, 0.341219202f, 0.939983753f, 0.339776884f, 0.940506071f, 0.338333767f, 0.941026175f, 0.336889853f, 0.941544065f, 0.335445147f, 0.942059740f, 0.333999651f, 0.942573198f, 0.332553370f, 0.943084437f, 0.331106306f, 0.943593458f, 0.329658463f, 0.944100258f, 0.328209844f, 0.944604837f, 0.326760452f, 0.945107193f, 0.325310292f, 0.945607325f, 0.323859367f, 0.946105232f, 0.322407679f, 0.946600913f, 0.320955232f, 0.947094366f, 0.319502031f, 0.947585591f, 0.318048077f, 0.948074586f, 0.316593376f, 0.948561350f, 0.315137929f, 0.949045882f, 0.313681740f, 0.949528181f, 0.312224814f, 0.950008245f, 0.310767153f, 0.950486074f, 0.309308760f, 0.950961666f, 0.307849640f, 0.951435021f, 0.306389795f, 0.951906137f, 0.304929230f, 0.952375013f, 0.303467947f, 0.952841648f, 0.302005949f, 0.953306040f, 0.300543241f, 0.953768190f, 0.299079826f, 0.954228095f, 0.297615707f, 0.954685755f, 0.296150888f, 0.955141168f, 0.294685372f, 0.955594334f, 0.293219163f, 0.956045251f, 0.291752263f, 0.956493919f, 0.290284677f, 0.956940336f, 0.288816408f, 0.957384501f, 0.287347460f, 0.957826413f, 0.285877835f, 0.958266071f, 0.284407537f, 0.958703475f, 0.282936570f, 0.959138622f, 0.281464938f, 0.959571513f, 0.279992643f, 0.960002146f, 0.278519689f, 0.960430519f, 0.277046080f, 0.960856633f, 0.275571819f, 0.961280486f, 0.274096910f, 0.961702077f, 0.272621355f, 0.962121404f, 0.271145160f, 0.962538468f, 0.269668326f, 0.962953267f, 0.268190857f, 0.963365800f, 0.266712757f, 0.963776066f, 0.265234030f, 0.964184064f, 0.263754679f, 0.964589793f, 0.262274707f, 0.964993253f, 0.260794118f, 0.965394442f, 0.259312915f, 0.965793359f, 0.257831102f, 0.966190003f, 0.256348682f, 0.966584374f, 0.254865660f, 0.966976471f, 0.253382037f, 0.967366292f, 0.251897818f, 0.967753837f, 0.250413007f, 0.968139105f, 0.248927606f, 0.968522094f, 0.247441619f, 0.968902805f, 0.245955050f, 0.969281235f, 0.244467903f, 0.969657385f, 0.242980180f, 0.970031253f, 0.241491885f, 0.970402839f, 0.240003022f, 0.970772141f, 0.238513595f, 0.971139158f, 0.237023606f, 0.971503891f, 0.235533059f, 0.971866337f, 0.234041959f, 0.972226497f, 0.232550307f, 0.972584369f, 0.231058108f, 0.972939952f, 0.229565366f, 0.973293246f, 0.228072083f, 0.973644250f, 0.226578264f, 0.973992962f, 0.225083911f, 0.974339383f, 0.223589029f, 0.974683511f, 0.222093621f, 0.975025345f, 0.220597690f, 0.975364885f, 0.219101240f, 0.975702130f, 0.217604275f, 0.976037079f, 0.216106797f, 0.976369731f, 0.214608811f, 0.976700086f, 0.213110320f, 0.977028143f, 0.211611327f, 0.977353900f, 0.210111837f, 0.977677358f, 0.208611852f, 0.977998515f, 0.207111376f, 0.978317371f, 0.205610413f, 0.978633924f, 0.204108966f, 0.978948175f, 0.202607039f, 0.979260123f, 0.201104635f, 0.979569766f, 0.199601758f, 0.979877104f, 0.198098411f, 0.980182136f, 0.196594598f, 0.980484862f, 0.195090322f, 0.980785280f, 0.193585587f, 0.981083391f, 0.192080397f, 0.981379193f, 0.190574755f, 0.981672686f, 0.189068664f, 0.981963869f, 0.187562129f, 0.982252741f, 0.186055152f, 0.982539302f, 0.184547737f, 0.982823551f, 0.183039888f, 0.983105487f, 0.181531608f, 0.983385110f, 0.180022901f, 0.983662419f, 0.178513771f, 0.983937413f, 0.177004220f, 0.984210092f, 0.175494253f, 0.984480455f, 0.173983873f, 0.984748502f, 0.172473084f, 0.985014231f, 0.170961889f, 0.985277642f, 0.169450291f, 0.985538735f, 0.167938295f, 0.985797509f, 0.166425904f, 0.986053963f, 0.164913120f, 0.986308097f, 0.163399949f, 0.986559910f, 0.161886394f, 0.986809402f, 0.160372457f, 0.987056571f, 0.158858143f, 0.987301418f, 0.157343456f, 0.987543942f, 0.155828398f, 0.987784142f, 0.154312973f, 0.988022017f, 0.152797185f, 0.988257568f, 0.151281038f, 0.988490793f, 0.149764535f, 0.988721692f, 0.148247679f, 0.988950265f, 0.146730474f, 0.989176510f, 0.145212925f, 0.989400428f, 0.143695033f, 0.989622017f, 0.142176804f, 0.989841278f, 0.140658239f, 0.990058210f, 0.139139344f, 0.990272812f, 0.137620122f, 0.990485084f, 0.136100575f, 0.990695025f, 0.134580709f, 0.990902635f, 0.133060525f, 0.991107914f, 0.131540029f, 0.991310860f, 0.130019223f, 0.991511473f, 0.128498111f, 0.991709754f, 0.126976696f, 0.991905700f, 0.125454983f, 0.992099313f, 0.123932975f, 0.992290591f, 0.122410675f, 0.992479535f, 0.120888087f, 0.992666142f, 0.119365215f, 0.992850414f, 0.117842062f, 0.993032350f, 0.116318631f, 0.993211949f, 0.114794927f, 0.993389211f, 0.113270952f, 0.993564136f, 0.111746711f, 0.993736722f, 0.110222207f, 0.993906970f, 0.108697444f, 0.994074879f, 0.107172425f, 0.994240449f, 0.105647154f, 0.994403680f, 0.104121634f, 0.994564571f, 0.102595869f, 0.994723121f, 0.101069863f, 0.994879331f, 0.099543619f, 0.995033199f, 0.098017140f, 0.995184727f, 0.096490431f, 0.995333912f, 0.094963495f, 0.995480755f, 0.093436336f, 0.995625256f, 0.091908956f, 0.995767414f, 0.090381361f, 0.995907229f, 0.088853553f, 0.996044701f, 0.087325535f, 0.996179829f, 0.085797312f, 0.996312612f, 0.084268888f, 0.996443051f, 0.082740265f, 0.996571146f, 0.081211447f, 0.996696895f, 0.079682438f, 0.996820299f, 0.078153242f, 0.996941358f, 0.076623861f, 0.997060070f, 0.075094301f, 0.997176437f, 0.073564564f, 0.997290457f, 0.072034653f, 0.997402130f, 0.070504573f, 0.997511456f, 0.068974328f, 0.997618435f, 0.067443920f, 0.997723067f, 0.065913353f, 0.997825350f, 0.064382631f, 0.997925286f, 0.062851758f, 0.998022874f, 0.061320736f, 0.998118113f, 0.059789571f, 0.998211003f, 0.058258265f, 0.998301545f, 0.056726821f, 0.998389737f, 0.055195244f, 0.998475581f, 0.053663538f, 0.998559074f, 0.052131705f, 0.998640218f, 0.050599749f, 0.998719012f, 0.049067674f, 0.998795456f, 0.047535484f, 0.998869550f, 0.046003182f, 0.998941293f, 0.044470772f, 0.999010686f, 0.042938257f, 0.999077728f, 0.041405641f, 0.999142419f, 0.039872928f, 0.999204759f, 0.038340120f, 0.999264747f, 0.036807223f, 0.999322385f, 0.035274239f, 0.999377670f, 0.033741172f, 0.999430605f, 0.032208025f, 0.999481187f, 0.030674803f, 0.999529418f, 0.029141509f, 0.999575296f, 0.027608146f, 0.999618822f, 0.026074718f, 0.999659997f, 0.024541229f, 0.999698819f, 0.023007681f, 0.999735288f, 0.021474080f, 0.999769405f, 0.019940429f, 0.999801170f, 0.018406730f, 0.999830582f, 0.016872988f, 0.999857641f, 0.015339206f, 0.999882347f, 0.013805389f, 0.999904701f, 0.012271538f, 0.999924702f, 0.010737659f, 0.999942350f, 0.009203755f, 0.999957645f, 0.007669829f, 0.999970586f, 0.006135885f, 0.999981175f, 0.004601926f, 0.999989411f, 0.003067957f, 0.999995294f, 0.001533980f, 0.999998823f, 0.000000000f, 1.000000000f, -0.001533980f, 0.999998823f, -0.003067957f, 0.999995294f, -0.004601926f, 0.999989411f, -0.006135885f, 0.999981175f, -0.007669829f, 0.999970586f, -0.009203755f, 0.999957645f, -0.010737659f, 0.999942350f, -0.012271538f, 0.999924702f, -0.013805389f, 0.999904701f, -0.015339206f, 0.999882347f, -0.016872988f, 0.999857641f, -0.018406730f, 0.999830582f, -0.019940429f, 0.999801170f, -0.021474080f, 0.999769405f, -0.023007681f, 0.999735288f, -0.024541229f, 0.999698819f, -0.026074718f, 0.999659997f, -0.027608146f, 0.999618822f, -0.029141509f, 0.999575296f, -0.030674803f, 0.999529418f, -0.032208025f, 0.999481187f, -0.033741172f, 0.999430605f, -0.035274239f, 0.999377670f, -0.036807223f, 0.999322385f, -0.038340120f, 0.999264747f, -0.039872928f, 0.999204759f, -0.041405641f, 0.999142419f, -0.042938257f, 0.999077728f, -0.044470772f, 0.999010686f, -0.046003182f, 0.998941293f, -0.047535484f, 0.998869550f, -0.049067674f, 0.998795456f, -0.050599749f, 0.998719012f, -0.052131705f, 0.998640218f, -0.053663538f, 0.998559074f, -0.055195244f, 0.998475581f, -0.056726821f, 0.998389737f, -0.058258265f, 0.998301545f, -0.059789571f, 0.998211003f, -0.061320736f, 0.998118113f, -0.062851758f, 0.998022874f, -0.064382631f, 0.997925286f, -0.065913353f, 0.997825350f, -0.067443920f, 0.997723067f, -0.068974328f, 0.997618435f, -0.070504573f, 0.997511456f, -0.072034653f, 0.997402130f, -0.073564564f, 0.997290457f, -0.075094301f, 0.997176437f, -0.076623861f, 0.997060070f, -0.078153242f, 0.996941358f, -0.079682438f, 0.996820299f, -0.081211447f, 0.996696895f, -0.082740265f, 0.996571146f, -0.084268888f, 0.996443051f, -0.085797312f, 0.996312612f, -0.087325535f, 0.996179829f, -0.088853553f, 0.996044701f, -0.090381361f, 0.995907229f, -0.091908956f, 0.995767414f, -0.093436336f, 0.995625256f, -0.094963495f, 0.995480755f, -0.096490431f, 0.995333912f, -0.098017140f, 0.995184727f, -0.099543619f, 0.995033199f, -0.101069863f, 0.994879331f, -0.102595869f, 0.994723121f, -0.104121634f, 0.994564571f, -0.105647154f, 0.994403680f, -0.107172425f, 0.994240449f, -0.108697444f, 0.994074879f, -0.110222207f, 0.993906970f, -0.111746711f, 0.993736722f, -0.113270952f, 0.993564136f, -0.114794927f, 0.993389211f, -0.116318631f, 0.993211949f, -0.117842062f, 0.993032350f, -0.119365215f, 0.992850414f, -0.120888087f, 0.992666142f, -0.122410675f, 0.992479535f, -0.123932975f, 0.992290591f, -0.125454983f, 0.992099313f, -0.126976696f, 0.991905700f, -0.128498111f, 0.991709754f, -0.130019223f, 0.991511473f, -0.131540029f, 0.991310860f, -0.133060525f, 0.991107914f, -0.134580709f, 0.990902635f, -0.136100575f, 0.990695025f, -0.137620122f, 0.990485084f, -0.139139344f, 0.990272812f, -0.140658239f, 0.990058210f, -0.142176804f, 0.989841278f, -0.143695033f, 0.989622017f, -0.145212925f, 0.989400428f, -0.146730474f, 0.989176510f, -0.148247679f, 0.988950265f, -0.149764535f, 0.988721692f, -0.151281038f, 0.988490793f, -0.152797185f, 0.988257568f, -0.154312973f, 0.988022017f, -0.155828398f, 0.987784142f, -0.157343456f, 0.987543942f, -0.158858143f, 0.987301418f, -0.160372457f, 0.987056571f, -0.161886394f, 0.986809402f, -0.163399949f, 0.986559910f, -0.164913120f, 0.986308097f, -0.166425904f, 0.986053963f, -0.167938295f, 0.985797509f, -0.169450291f, 0.985538735f, -0.170961889f, 0.985277642f, -0.172473084f, 0.985014231f, -0.173983873f, 0.984748502f, -0.175494253f, 0.984480455f, -0.177004220f, 0.984210092f, -0.178513771f, 0.983937413f, -0.180022901f, 0.983662419f, -0.181531608f, 0.983385110f, -0.183039888f, 0.983105487f, -0.184547737f, 0.982823551f, -0.186055152f, 0.982539302f, -0.187562129f, 0.982252741f, -0.189068664f, 0.981963869f, -0.190574755f, 0.981672686f, -0.192080397f, 0.981379193f, -0.193585587f, 0.981083391f, -0.195090322f, 0.980785280f, -0.196594598f, 0.980484862f, -0.198098411f, 0.980182136f, -0.199601758f, 0.979877104f, -0.201104635f, 0.979569766f, -0.202607039f, 0.979260123f, -0.204108966f, 0.978948175f, -0.205610413f, 0.978633924f, -0.207111376f, 0.978317371f, -0.208611852f, 0.977998515f, -0.210111837f, 0.977677358f, -0.211611327f, 0.977353900f, -0.213110320f, 0.977028143f, -0.214608811f, 0.976700086f, -0.216106797f, 0.976369731f, -0.217604275f, 0.976037079f, -0.219101240f, 0.975702130f, -0.220597690f, 0.975364885f, -0.222093621f, 0.975025345f, -0.223589029f, 0.974683511f, -0.225083911f, 0.974339383f, -0.226578264f, 0.973992962f, -0.228072083f, 0.973644250f, -0.229565366f, 0.973293246f, -0.231058108f, 0.972939952f, -0.232550307f, 0.972584369f, -0.234041959f, 0.972226497f, -0.235533059f, 0.971866337f, -0.237023606f, 0.971503891f, -0.238513595f, 0.971139158f, -0.240003022f, 0.970772141f, -0.241491885f, 0.970402839f, -0.242980180f, 0.970031253f, -0.244467903f, 0.969657385f, -0.245955050f, 0.969281235f, -0.247441619f, 0.968902805f, -0.248927606f, 0.968522094f, -0.250413007f, 0.968139105f, -0.251897818f, 0.967753837f, -0.253382037f, 0.967366292f, -0.254865660f, 0.966976471f, -0.256348682f, 0.966584374f, -0.257831102f, 0.966190003f, -0.259312915f, 0.965793359f, -0.260794118f, 0.965394442f, -0.262274707f, 0.964993253f, -0.263754679f, 0.964589793f, -0.265234030f, 0.964184064f, -0.266712757f, 0.963776066f, -0.268190857f, 0.963365800f, -0.269668326f, 0.962953267f, -0.271145160f, 0.962538468f, -0.272621355f, 0.962121404f, -0.274096910f, 0.961702077f, -0.275571819f, 0.961280486f, -0.277046080f, 0.960856633f, -0.278519689f, 0.960430519f, -0.279992643f, 0.960002146f, -0.281464938f, 0.959571513f, -0.282936570f, 0.959138622f, -0.284407537f, 0.958703475f, -0.285877835f, 0.958266071f, -0.287347460f, 0.957826413f, -0.288816408f, 0.957384501f, -0.290284677f, 0.956940336f, -0.291752263f, 0.956493919f, -0.293219163f, 0.956045251f, -0.294685372f, 0.955594334f, -0.296150888f, 0.955141168f, -0.297615707f, 0.954685755f, -0.299079826f, 0.954228095f, -0.300543241f, 0.953768190f, -0.302005949f, 0.953306040f, -0.303467947f, 0.952841648f, -0.304929230f, 0.952375013f, -0.306389795f, 0.951906137f, -0.307849640f, 0.951435021f, -0.309308760f, 0.950961666f, -0.310767153f, 0.950486074f, -0.312224814f, 0.950008245f, -0.313681740f, 0.949528181f, -0.315137929f, 0.949045882f, -0.316593376f, 0.948561350f, -0.318048077f, 0.948074586f, -0.319502031f, 0.947585591f, -0.320955232f, 0.947094366f, -0.322407679f, 0.946600913f, -0.323859367f, 0.946105232f, -0.325310292f, 0.945607325f, -0.326760452f, 0.945107193f, -0.328209844f, 0.944604837f, -0.329658463f, 0.944100258f, -0.331106306f, 0.943593458f, -0.332553370f, 0.943084437f, -0.333999651f, 0.942573198f, -0.335445147f, 0.942059740f, -0.336889853f, 0.941544065f, -0.338333767f, 0.941026175f, -0.339776884f, 0.940506071f, -0.341219202f, 0.939983753f, -0.342660717f, 0.939459224f, -0.344101426f, 0.938932484f, -0.345541325f, 0.938403534f, -0.346980411f, 0.937872376f, -0.348418680f, 0.937339012f, -0.349856130f, 0.936803442f, -0.351292756f, 0.936265667f, -0.352728556f, 0.935725689f, -0.354163525f, 0.935183510f, -0.355597662f, 0.934639130f, -0.357030961f, 0.934092550f, -0.358463421f, 0.933543773f, -0.359895037f, 0.932992799f, -0.361325806f, 0.932439629f, -0.362755724f, 0.931884266f, -0.364184790f, 0.931326709f, -0.365612998f, 0.930766961f, -0.367040346f, 0.930205023f, -0.368466830f, 0.929640896f, -0.369892447f, 0.929074581f, -0.371317194f, 0.928506080f, -0.372741067f, 0.927935395f, -0.374164063f, 0.927362526f, -0.375586178f, 0.926787474f, -0.377007410f, 0.926210242f, -0.378427755f, 0.925630831f, -0.379847209f, 0.925049241f, -0.381265769f, 0.924465474f, -0.382683432f, 0.923879533f, -0.384100195f, 0.923291417f, -0.385516054f, 0.922701128f, -0.386931006f, 0.922108669f, -0.388345047f, 0.921514039f, -0.389758174f, 0.920917242f, -0.391170384f, 0.920318277f, -0.392581674f, 0.919717146f, -0.393992040f, 0.919113852f, -0.395401479f, 0.918508394f, -0.396809987f, 0.917900776f, -0.398217562f, 0.917290997f, -0.399624200f, 0.916679060f, -0.401029897f, 0.916064966f, -0.402434651f, 0.915448716f, -0.403838458f, 0.914830312f, -0.405241314f, 0.914209756f, -0.406643217f, 0.913587048f, -0.408044163f, 0.912962190f, -0.409444149f, 0.912335185f, -0.410843171f, 0.911706032f, -0.412241227f, 0.911074734f, -0.413638312f, 0.910441292f, -0.415034424f, 0.909805708f, -0.416429560f, 0.909167983f, -0.417823716f, 0.908528119f, -0.419216888f, 0.907886116f, -0.420609074f, 0.907241978f, -0.422000271f, 0.906595705f, -0.423390474f, 0.905947298f, -0.424779681f, 0.905296759f, -0.426167889f, 0.904644091f, -0.427555093f, 0.903989293f, -0.428941292f, 0.903332368f, -0.430326481f, 0.902673318f, -0.431710658f, 0.902012144f, -0.433093819f, 0.901348847f, -0.434475961f, 0.900683429f, -0.435857080f, 0.900015892f, -0.437237174f, 0.899346237f, -0.438616239f, 0.898674466f, -0.439994271f, 0.898000580f, -0.441371269f, 0.897324581f, -0.442747228f, 0.896646470f, -0.444122145f, 0.895966250f, -0.445496017f, 0.895283921f, -0.446868840f, 0.894599486f, -0.448240612f, 0.893912945f, -0.449611330f, 0.893224301f, -0.450980989f, 0.892533555f, -0.452349587f, 0.891840709f, -0.453717121f, 0.891145765f, -0.455083587f, 0.890448723f, -0.456448982f, 0.889749586f, -0.457813304f, 0.889048356f, -0.459176548f, 0.888345033f, -0.460538711f, 0.887639620f, -0.461899791f, 0.886932119f, -0.463259784f, 0.886222530f, -0.464618686f, 0.885510856f, -0.465976496f, 0.884797098f, -0.467333209f, 0.884081259f, -0.468688822f, 0.883363339f, -0.470043332f, 0.882643340f, -0.471396737f, 0.881921264f, -0.472749032f, 0.881197113f, -0.474100215f, 0.880470889f, -0.475450282f, 0.879742593f, -0.476799230f, 0.879012226f, -0.478147056f, 0.878279792f, -0.479493758f, 0.877545290f, -0.480839331f, 0.876808724f, -0.482183772f, 0.876070094f, -0.483527079f, 0.875329403f, -0.484869248f, 0.874586652f, -0.486210276f, 0.873841843f, -0.487550160f, 0.873094978f, -0.488888897f, 0.872346059f, -0.490226483f, 0.871595087f, -0.491562916f, 0.870842063f, -0.492898192f, 0.870086991f, -0.494232309f, 0.869329871f, -0.495565262f, 0.868570706f, -0.496897049f, 0.867809497f, -0.498227667f, 0.867046246f, -0.499557113f, 0.866280954f, -0.500885383f, 0.865513624f, -0.502212474f, 0.864744258f, -0.503538384f, 0.863972856f, -0.504863109f, 0.863199422f, -0.506186645f, 0.862423956f, -0.507508991f, 0.861646461f, -0.508830143f, 0.860866939f, -0.510150097f, 0.860085390f, -0.511468850f, 0.859301818f, -0.512786401f, 0.858516224f, -0.514102744f, 0.857728610f, -0.515417878f, 0.856938977f, -0.516731799f, 0.856147328f, -0.518044504f, 0.855353665f, -0.519355990f, 0.854557988f, -0.520666254f, 0.853760301f, -0.521975293f, 0.852960605f, -0.523283103f, 0.852158902f, -0.524589683f, 0.851355193f, -0.525895027f, 0.850549481f, -0.527199135f, 0.849741768f, -0.528502002f, 0.848932055f, -0.529803625f, 0.848120345f, -0.531104001f, 0.847306639f, -0.532403128f, 0.846490939f, -0.533701002f, 0.845673247f, -0.534997620f, 0.844853565f, -0.536292979f, 0.844031895f, -0.537587076f, 0.843208240f, -0.538879909f, 0.842382600f, -0.540171473f, 0.841554977f, -0.541461766f, 0.840725375f, -0.542750785f, 0.839893794f, -0.544038527f, 0.839060237f, -0.545324988f, 0.838224706f, -0.546610167f, 0.837387202f, -0.547894059f, 0.836547727f, -0.549176662f, 0.835706284f, -0.550457973f, 0.834862875f, -0.551737988f, 0.834017501f, -0.553016706f, 0.833170165f, -0.554294121f, 0.832320868f, -0.555570233f, 0.831469612f, -0.556845037f, 0.830616400f, -0.558118531f, 0.829761234f, -0.559390712f, 0.828904115f, -0.560661576f, 0.828045045f, -0.561931121f, 0.827184027f, -0.563199344f, 0.826321063f, -0.564466242f, 0.825456154f, -0.565731811f, 0.824589303f, -0.566996049f, 0.823720511f, -0.568258953f, 0.822849781f, -0.569520519f, 0.821977115f, -0.570780746f, 0.821102515f, -0.572039629f, 0.820225983f, -0.573297167f, 0.819347520f, -0.574553355f, 0.818467130f, -0.575808191f, 0.817584813f, -0.577061673f, 0.816700573f, -0.578313796f, 0.815814411f, -0.579564559f, 0.814926329f, -0.580813958f, 0.814036330f, -0.582061990f, 0.813144415f, -0.583308653f, 0.812250587f, -0.584553943f, 0.811354847f, -0.585797857f, 0.810457198f, -0.587040394f, 0.809557642f, -0.588281548f, 0.808656182f, -0.589521319f, 0.807752818f, -0.590759702f, 0.806847554f, -0.591996695f, 0.805940391f, -0.593232295f, 0.805031331f, -0.594466499f, 0.804120377f, -0.595699304f, 0.803207531f, -0.596930708f, 0.802292796f, -0.598160707f, 0.801376172f, -0.599389298f, 0.800457662f, -0.600616479f, 0.799537269f, -0.601842247f, 0.798614995f, -0.603066599f, 0.797690841f, -0.604289531f, 0.796764810f, -0.605511041f, 0.795836905f, -0.606731127f, 0.794907126f, -0.607949785f, 0.793975478f, -0.609167012f, 0.793041960f, -0.610382806f, 0.792106577f, -0.611597164f, 0.791169330f, -0.612810082f, 0.790230221f, -0.614021559f, 0.789289253f, -0.615231591f, 0.788346428f, -0.616440175f, 0.787401747f, -0.617647308f, 0.786455214f, -0.618852988f, 0.785506830f, -0.620057212f, 0.784556597f, -0.621259977f, 0.783604519f, -0.622461279f, 0.782650596f, -0.623661118f, 0.781694832f, -0.624859488f, 0.780737229f, -0.626056388f, 0.779777788f, -0.627251815f, 0.778816512f, -0.628445767f, 0.777853404f, -0.629638239f, 0.776888466f, -0.630829230f, 0.775921699f, -0.632018736f, 0.774953107f, -0.633206755f, 0.773982691f, -0.634393284f, 0.773010453f, -0.635578320f, 0.772036397f, -0.636761861f, 0.771060524f, -0.637943904f, 0.770082837f, -0.639124445f, 0.769103338f, -0.640303482f, 0.768122029f, -0.641481013f, 0.767138912f, -0.642657034f, 0.766153990f, -0.643831543f, 0.765167266f, -0.645004537f, 0.764178741f, -0.646176013f, 0.763188417f, -0.647345969f, 0.762196298f, -0.648514401f, 0.761202385f, -0.649681307f, 0.760206682f, -0.650846685f, 0.759209189f, -0.652010531f, 0.758209910f, -0.653172843f, 0.757208847f, -0.654333618f, 0.756206001f, -0.655492853f, 0.755201377f, -0.656650546f, 0.754194975f, -0.657806693f, 0.753186799f, -0.658961293f, 0.752176850f, -0.660114342f, 0.751165132f, -0.661265838f, 0.750151646f, -0.662415778f, 0.749136395f, -0.663564159f, 0.748119380f, -0.664710978f, 0.747100606f, -0.665856234f, 0.746080074f, -0.666999922f, 0.745057785f, -0.668142041f, 0.744033744f, -0.669282588f, 0.743007952f, -0.670421560f, 0.741980412f, -0.671558955f, 0.740951125f, -0.672694769f, 0.739920095f, -0.673829000f, 0.738887324f, -0.674961646f, 0.737852815f, -0.676092704f, 0.736816569f, -0.677222170f, 0.735778589f, -0.678350043f, 0.734738878f, -0.679476320f, 0.733697438f, -0.680600998f, 0.732654272f, -0.681724074f, 0.731609381f, -0.682845546f, 0.730562769f, -0.683965412f, 0.729514438f, -0.685083668f, 0.728464390f, -0.686200312f, 0.727412629f, -0.687315341f, 0.726359155f, -0.688428753f, 0.725303972f, -0.689540545f, 0.724247083f, -0.690650714f, 0.723188489f, -0.691759258f, 0.722128194f, -0.692866175f, 0.721066199f, -0.693971461f, 0.720002508f, -0.695075114f, 0.718937122f, -0.696177131f, 0.717870045f, -0.697277511f, 0.716801279f, -0.698376249f, 0.715730825f, -0.699473345f, 0.714658688f, -0.700568794f, 0.713584869f, -0.701662595f, 0.712509371f, -0.702754744f, 0.711432196f, -0.703845241f, 0.710353347f, -0.704934080f, 0.709272826f, -0.706021261f, 0.708190637f, -0.707106781f, 0.707106781f, -0.708190637f, 0.706021261f, -0.709272826f, 0.704934080f, -0.710353347f, 0.703845241f, -0.711432196f, 0.702754744f, -0.712509371f, 0.701662595f, -0.713584869f, 0.700568794f, -0.714658688f, 0.699473345f, -0.715730825f, 0.698376249f, -0.716801279f, 0.697277511f, -0.717870045f, 0.696177131f, -0.718937122f, 0.695075114f, -0.720002508f, 0.693971461f, -0.721066199f, 0.692866175f, -0.722128194f, 0.691759258f, -0.723188489f, 0.690650714f, -0.724247083f, 0.689540545f, -0.725303972f, 0.688428753f, -0.726359155f, 0.687315341f, -0.727412629f, 0.686200312f, -0.728464390f, 0.685083668f, -0.729514438f, 0.683965412f, -0.730562769f, 0.682845546f, -0.731609381f, 0.681724074f, -0.732654272f, 0.680600998f, -0.733697438f, 0.679476320f, -0.734738878f, 0.678350043f, -0.735778589f, 0.677222170f, -0.736816569f, 0.676092704f, -0.737852815f, 0.674961646f, -0.738887324f, 0.673829000f, -0.739920095f, 0.672694769f, -0.740951125f, 0.671558955f, -0.741980412f, 0.670421560f, -0.743007952f, 0.669282588f, -0.744033744f, 0.668142041f, -0.745057785f, 0.666999922f, -0.746080074f, 0.665856234f, -0.747100606f, 0.664710978f, -0.748119380f, 0.663564159f, -0.749136395f, 0.662415778f, -0.750151646f, 0.661265838f, -0.751165132f, 0.660114342f, -0.752176850f, 0.658961293f, -0.753186799f, 0.657806693f, -0.754194975f, 0.656650546f, -0.755201377f, 0.655492853f, -0.756206001f, 0.654333618f, -0.757208847f, 0.653172843f, -0.758209910f, 0.652010531f, -0.759209189f, 0.650846685f, -0.760206682f, 0.649681307f, -0.761202385f, 0.648514401f, -0.762196298f, 0.647345969f, -0.763188417f, 0.646176013f, -0.764178741f, 0.645004537f, -0.765167266f, 0.643831543f, -0.766153990f, 0.642657034f, -0.767138912f, 0.641481013f, -0.768122029f, 0.640303482f, -0.769103338f, 0.639124445f, -0.770082837f, 0.637943904f, -0.771060524f, 0.636761861f, -0.772036397f, 0.635578320f, -0.773010453f, 0.634393284f, -0.773982691f, 0.633206755f, -0.774953107f, 0.632018736f, -0.775921699f, 0.630829230f, -0.776888466f, 0.629638239f, -0.777853404f, 0.628445767f, -0.778816512f, 0.627251815f, -0.779777788f, 0.626056388f, -0.780737229f, 0.624859488f, -0.781694832f, 0.623661118f, -0.782650596f, 0.622461279f, -0.783604519f, 0.621259977f, -0.784556597f, 0.620057212f, -0.785506830f, 0.618852988f, -0.786455214f, 0.617647308f, -0.787401747f, 0.616440175f, -0.788346428f, 0.615231591f, -0.789289253f, 0.614021559f, -0.790230221f, 0.612810082f, -0.791169330f, 0.611597164f, -0.792106577f, 0.610382806f, -0.793041960f, 0.609167012f, -0.793975478f, 0.607949785f, -0.794907126f, 0.606731127f, -0.795836905f, 0.605511041f, -0.796764810f, 0.604289531f, -0.797690841f, 0.603066599f, -0.798614995f, 0.601842247f, -0.799537269f, 0.600616479f, -0.800457662f, 0.599389298f, -0.801376172f, 0.598160707f, -0.802292796f, 0.596930708f, -0.803207531f, 0.595699304f, -0.804120377f, 0.594466499f, -0.805031331f, 0.593232295f, -0.805940391f, 0.591996695f, -0.806847554f, 0.590759702f, -0.807752818f, 0.589521319f, -0.808656182f, 0.588281548f, -0.809557642f, 0.587040394f, -0.810457198f, 0.585797857f, -0.811354847f, 0.584553943f, -0.812250587f, 0.583308653f, -0.813144415f, 0.582061990f, -0.814036330f, 0.580813958f, -0.814926329f, 0.579564559f, -0.815814411f, 0.578313796f, -0.816700573f, 0.577061673f, -0.817584813f, 0.575808191f, -0.818467130f, 0.574553355f, -0.819347520f, 0.573297167f, -0.820225983f, 0.572039629f, -0.821102515f, 0.570780746f, -0.821977115f, 0.569520519f, -0.822849781f, 0.568258953f, -0.823720511f, 0.566996049f, -0.824589303f, 0.565731811f, -0.825456154f, 0.564466242f, -0.826321063f, 0.563199344f, -0.827184027f, 0.561931121f, -0.828045045f, 0.560661576f, -0.828904115f, 0.559390712f, -0.829761234f, 0.558118531f, -0.830616400f, 0.556845037f, -0.831469612f, 0.555570233f, -0.832320868f, 0.554294121f, -0.833170165f, 0.553016706f, -0.834017501f, 0.551737988f, -0.834862875f, 0.550457973f, -0.835706284f, 0.549176662f, -0.836547727f, 0.547894059f, -0.837387202f, 0.546610167f, -0.838224706f, 0.545324988f, -0.839060237f, 0.544038527f, -0.839893794f, 0.542750785f, -0.840725375f, 0.541461766f, -0.841554977f, 0.540171473f, -0.842382600f, 0.538879909f, -0.843208240f, 0.537587076f, -0.844031895f, 0.536292979f, -0.844853565f, 0.534997620f, -0.845673247f, 0.533701002f, -0.846490939f, 0.532403128f, -0.847306639f, 0.531104001f, -0.848120345f, 0.529803625f, -0.848932055f, 0.528502002f, -0.849741768f, 0.527199135f, -0.850549481f, 0.525895027f, -0.851355193f, 0.524589683f, -0.852158902f, 0.523283103f, -0.852960605f, 0.521975293f, -0.853760301f, 0.520666254f, -0.854557988f, 0.519355990f, -0.855353665f, 0.518044504f, -0.856147328f, 0.516731799f, -0.856938977f, 0.515417878f, -0.857728610f, 0.514102744f, -0.858516224f, 0.512786401f, -0.859301818f, 0.511468850f, -0.860085390f, 0.510150097f, -0.860866939f, 0.508830143f, -0.861646461f, 0.507508991f, -0.862423956f, 0.506186645f, -0.863199422f, 0.504863109f, -0.863972856f, 0.503538384f, -0.864744258f, 0.502212474f, -0.865513624f, 0.500885383f, -0.866280954f, 0.499557113f, -0.867046246f, 0.498227667f, -0.867809497f, 0.496897049f, -0.868570706f, 0.495565262f, -0.869329871f, 0.494232309f, -0.870086991f, 0.492898192f, -0.870842063f, 0.491562916f, -0.871595087f, 0.490226483f, -0.872346059f, 0.488888897f, -0.873094978f, 0.487550160f, -0.873841843f, 0.486210276f, -0.874586652f, 0.484869248f, -0.875329403f, 0.483527079f, -0.876070094f, 0.482183772f, -0.876808724f, 0.480839331f, -0.877545290f, 0.479493758f, -0.878279792f, 0.478147056f, -0.879012226f, 0.476799230f, -0.879742593f, 0.475450282f, -0.880470889f, 0.474100215f, -0.881197113f, 0.472749032f, -0.881921264f, 0.471396737f, -0.882643340f, 0.470043332f, -0.883363339f, 0.468688822f, -0.884081259f, 0.467333209f, -0.884797098f, 0.465976496f, -0.885510856f, 0.464618686f, -0.886222530f, 0.463259784f, -0.886932119f, 0.461899791f, -0.887639620f, 0.460538711f, -0.888345033f, 0.459176548f, -0.889048356f, 0.457813304f, -0.889749586f, 0.456448982f, -0.890448723f, 0.455083587f, -0.891145765f, 0.453717121f, -0.891840709f, 0.452349587f, -0.892533555f, 0.450980989f, -0.893224301f, 0.449611330f, -0.893912945f, 0.448240612f, -0.894599486f, 0.446868840f, -0.895283921f, 0.445496017f, -0.895966250f, 0.444122145f, -0.896646470f, 0.442747228f, -0.897324581f, 0.441371269f, -0.898000580f, 0.439994271f, -0.898674466f, 0.438616239f, -0.899346237f, 0.437237174f, -0.900015892f, 0.435857080f, -0.900683429f, 0.434475961f, -0.901348847f, 0.433093819f, -0.902012144f, 0.431710658f, -0.902673318f, 0.430326481f, -0.903332368f, 0.428941292f, -0.903989293f, 0.427555093f, -0.904644091f, 0.426167889f, -0.905296759f, 0.424779681f, -0.905947298f, 0.423390474f, -0.906595705f, 0.422000271f, -0.907241978f, 0.420609074f, -0.907886116f, 0.419216888f, -0.908528119f, 0.417823716f, -0.909167983f, 0.416429560f, -0.909805708f, 0.415034424f, -0.910441292f, 0.413638312f, -0.911074734f, 0.412241227f, -0.911706032f, 0.410843171f, -0.912335185f, 0.409444149f, -0.912962190f, 0.408044163f, -0.913587048f, 0.406643217f, -0.914209756f, 0.405241314f, -0.914830312f, 0.403838458f, -0.915448716f, 0.402434651f, -0.916064966f, 0.401029897f, -0.916679060f, 0.399624200f, -0.917290997f, 0.398217562f, -0.917900776f, 0.396809987f, -0.918508394f, 0.395401479f, -0.919113852f, 0.393992040f, -0.919717146f, 0.392581674f, -0.920318277f, 0.391170384f, -0.920917242f, 0.389758174f, -0.921514039f, 0.388345047f, -0.922108669f, 0.386931006f, -0.922701128f, 0.385516054f, -0.923291417f, 0.384100195f, -0.923879533f, 0.382683432f, -0.924465474f, 0.381265769f, -0.925049241f, 0.379847209f, -0.925630831f, 0.378427755f, -0.926210242f, 0.377007410f, -0.926787474f, 0.375586178f, -0.927362526f, 0.374164063f, -0.927935395f, 0.372741067f, -0.928506080f, 0.371317194f, -0.929074581f, 0.369892447f, -0.929640896f, 0.368466830f, -0.930205023f, 0.367040346f, -0.930766961f, 0.365612998f, -0.931326709f, 0.364184790f, -0.931884266f, 0.362755724f, -0.932439629f, 0.361325806f, -0.932992799f, 0.359895037f, -0.933543773f, 0.358463421f, -0.934092550f, 0.357030961f, -0.934639130f, 0.355597662f, -0.935183510f, 0.354163525f, -0.935725689f, 0.352728556f, -0.936265667f, 0.351292756f, -0.936803442f, 0.349856130f, -0.937339012f, 0.348418680f, -0.937872376f, 0.346980411f, -0.938403534f, 0.345541325f, -0.938932484f, 0.344101426f, -0.939459224f, 0.342660717f, -0.939983753f, 0.341219202f, -0.940506071f, 0.339776884f, -0.941026175f, 0.338333767f, -0.941544065f, 0.336889853f, -0.942059740f, 0.335445147f, -0.942573198f, 0.333999651f, -0.943084437f, 0.332553370f, -0.943593458f, 0.331106306f, -0.944100258f, 0.329658463f, -0.944604837f, 0.328209844f, -0.945107193f, 0.326760452f, -0.945607325f, 0.325310292f, -0.946105232f, 0.323859367f, -0.946600913f, 0.322407679f, -0.947094366f, 0.320955232f, -0.947585591f, 0.319502031f, -0.948074586f, 0.318048077f, -0.948561350f, 0.316593376f, -0.949045882f, 0.315137929f, -0.949528181f, 0.313681740f, -0.950008245f, 0.312224814f, -0.950486074f, 0.310767153f, -0.950961666f, 0.309308760f, -0.951435021f, 0.307849640f, -0.951906137f, 0.306389795f, -0.952375013f, 0.304929230f, -0.952841648f, 0.303467947f, -0.953306040f, 0.302005949f, -0.953768190f, 0.300543241f, -0.954228095f, 0.299079826f, -0.954685755f, 0.297615707f, -0.955141168f, 0.296150888f, -0.955594334f, 0.294685372f, -0.956045251f, 0.293219163f, -0.956493919f, 0.291752263f, -0.956940336f, 0.290284677f, -0.957384501f, 0.288816408f, -0.957826413f, 0.287347460f, -0.958266071f, 0.285877835f, -0.958703475f, 0.284407537f, -0.959138622f, 0.282936570f, -0.959571513f, 0.281464938f, -0.960002146f, 0.279992643f, -0.960430519f, 0.278519689f, -0.960856633f, 0.277046080f, -0.961280486f, 0.275571819f, -0.961702077f, 0.274096910f, -0.962121404f, 0.272621355f, -0.962538468f, 0.271145160f, -0.962953267f, 0.269668326f, -0.963365800f, 0.268190857f, -0.963776066f, 0.266712757f, -0.964184064f, 0.265234030f, -0.964589793f, 0.263754679f, -0.964993253f, 0.262274707f, -0.965394442f, 0.260794118f, -0.965793359f, 0.259312915f, -0.966190003f, 0.257831102f, -0.966584374f, 0.256348682f, -0.966976471f, 0.254865660f, -0.967366292f, 0.253382037f, -0.967753837f, 0.251897818f, -0.968139105f, 0.250413007f, -0.968522094f, 0.248927606f, -0.968902805f, 0.247441619f, -0.969281235f, 0.245955050f, -0.969657385f, 0.244467903f, -0.970031253f, 0.242980180f, -0.970402839f, 0.241491885f, -0.970772141f, 0.240003022f, -0.971139158f, 0.238513595f, -0.971503891f, 0.237023606f, -0.971866337f, 0.235533059f, -0.972226497f, 0.234041959f, -0.972584369f, 0.232550307f, -0.972939952f, 0.231058108f, -0.973293246f, 0.229565366f, -0.973644250f, 0.228072083f, -0.973992962f, 0.226578264f, -0.974339383f, 0.225083911f, -0.974683511f, 0.223589029f, -0.975025345f, 0.222093621f, -0.975364885f, 0.220597690f, -0.975702130f, 0.219101240f, -0.976037079f, 0.217604275f, -0.976369731f, 0.216106797f, -0.976700086f, 0.214608811f, -0.977028143f, 0.213110320f, -0.977353900f, 0.211611327f, -0.977677358f, 0.210111837f, -0.977998515f, 0.208611852f, -0.978317371f, 0.207111376f, -0.978633924f, 0.205610413f, -0.978948175f, 0.204108966f, -0.979260123f, 0.202607039f, -0.979569766f, 0.201104635f, -0.979877104f, 0.199601758f, -0.980182136f, 0.198098411f, -0.980484862f, 0.196594598f, -0.980785280f, 0.195090322f, -0.981083391f, 0.193585587f, -0.981379193f, 0.192080397f, -0.981672686f, 0.190574755f, -0.981963869f, 0.189068664f, -0.982252741f, 0.187562129f, -0.982539302f, 0.186055152f, -0.982823551f, 0.184547737f, -0.983105487f, 0.183039888f, -0.983385110f, 0.181531608f, -0.983662419f, 0.180022901f, -0.983937413f, 0.178513771f, -0.984210092f, 0.177004220f, -0.984480455f, 0.175494253f, -0.984748502f, 0.173983873f, -0.985014231f, 0.172473084f, -0.985277642f, 0.170961889f, -0.985538735f, 0.169450291f, -0.985797509f, 0.167938295f, -0.986053963f, 0.166425904f, -0.986308097f, 0.164913120f, -0.986559910f, 0.163399949f, -0.986809402f, 0.161886394f, -0.987056571f, 0.160372457f, -0.987301418f, 0.158858143f, -0.987543942f, 0.157343456f, -0.987784142f, 0.155828398f, -0.988022017f, 0.154312973f, -0.988257568f, 0.152797185f, -0.988490793f, 0.151281038f, -0.988721692f, 0.149764535f, -0.988950265f, 0.148247679f, -0.989176510f, 0.146730474f, -0.989400428f, 0.145212925f, -0.989622017f, 0.143695033f, -0.989841278f, 0.142176804f, -0.990058210f, 0.140658239f, -0.990272812f, 0.139139344f, -0.990485084f, 0.137620122f, -0.990695025f, 0.136100575f, -0.990902635f, 0.134580709f, -0.991107914f, 0.133060525f, -0.991310860f, 0.131540029f, -0.991511473f, 0.130019223f, -0.991709754f, 0.128498111f, -0.991905700f, 0.126976696f, -0.992099313f, 0.125454983f, -0.992290591f, 0.123932975f, -0.992479535f, 0.122410675f, -0.992666142f, 0.120888087f, -0.992850414f, 0.119365215f, -0.993032350f, 0.117842062f, -0.993211949f, 0.116318631f, -0.993389211f, 0.114794927f, -0.993564136f, 0.113270952f, -0.993736722f, 0.111746711f, -0.993906970f, 0.110222207f, -0.994074879f, 0.108697444f, -0.994240449f, 0.107172425f, -0.994403680f, 0.105647154f, -0.994564571f, 0.104121634f, -0.994723121f, 0.102595869f, -0.994879331f, 0.101069863f, -0.995033199f, 0.099543619f, -0.995184727f, 0.098017140f, -0.995333912f, 0.096490431f, -0.995480755f, 0.094963495f, -0.995625256f, 0.093436336f, -0.995767414f, 0.091908956f, -0.995907229f, 0.090381361f, -0.996044701f, 0.088853553f, -0.996179829f, 0.087325535f, -0.996312612f, 0.085797312f, -0.996443051f, 0.084268888f, -0.996571146f, 0.082740265f, -0.996696895f, 0.081211447f, -0.996820299f, 0.079682438f, -0.996941358f, 0.078153242f, -0.997060070f, 0.076623861f, -0.997176437f, 0.075094301f, -0.997290457f, 0.073564564f, -0.997402130f, 0.072034653f, -0.997511456f, 0.070504573f, -0.997618435f, 0.068974328f, -0.997723067f, 0.067443920f, -0.997825350f, 0.065913353f, -0.997925286f, 0.064382631f, -0.998022874f, 0.062851758f, -0.998118113f, 0.061320736f, -0.998211003f, 0.059789571f, -0.998301545f, 0.058258265f, -0.998389737f, 0.056726821f, -0.998475581f, 0.055195244f, -0.998559074f, 0.053663538f, -0.998640218f, 0.052131705f, -0.998719012f, 0.050599749f, -0.998795456f, 0.049067674f, -0.998869550f, 0.047535484f, -0.998941293f, 0.046003182f, -0.999010686f, 0.044470772f, -0.999077728f, 0.042938257f, -0.999142419f, 0.041405641f, -0.999204759f, 0.039872928f, -0.999264747f, 0.038340120f, -0.999322385f, 0.036807223f, -0.999377670f, 0.035274239f, -0.999430605f, 0.033741172f, -0.999481187f, 0.032208025f, -0.999529418f, 0.030674803f, -0.999575296f, 0.029141509f, -0.999618822f, 0.027608146f, -0.999659997f, 0.026074718f, -0.999698819f, 0.024541229f, -0.999735288f, 0.023007681f, -0.999769405f, 0.021474080f, -0.999801170f, 0.019940429f, -0.999830582f, 0.018406730f, -0.999857641f, 0.016872988f, -0.999882347f, 0.015339206f, -0.999904701f, 0.013805389f, -0.999924702f, 0.012271538f, -0.999942350f, 0.010737659f, -0.999957645f, 0.009203755f, -0.999970586f, 0.007669829f, -0.999981175f, 0.006135885f, -0.999989411f, 0.004601926f, -0.999995294f, 0.003067957f, -0.999998823f, 0.001533980f, -1.000000000f, 0.000000000f, -0.999998823f, -0.001533980f, -0.999995294f, -0.003067957f, -0.999989411f, -0.004601926f, -0.999981175f, -0.006135885f, -0.999970586f, -0.007669829f, -0.999957645f, -0.009203755f, -0.999942350f, -0.010737659f, -0.999924702f, -0.012271538f, -0.999904701f, -0.013805389f, -0.999882347f, -0.015339206f, -0.999857641f, -0.016872988f, -0.999830582f, -0.018406730f, -0.999801170f, -0.019940429f, -0.999769405f, -0.021474080f, -0.999735288f, -0.023007681f, -0.999698819f, -0.024541229f, -0.999659997f, -0.026074718f, -0.999618822f, -0.027608146f, -0.999575296f, -0.029141509f, -0.999529418f, -0.030674803f, -0.999481187f, -0.032208025f, -0.999430605f, -0.033741172f, -0.999377670f, -0.035274239f, -0.999322385f, -0.036807223f, -0.999264747f, -0.038340120f, -0.999204759f, -0.039872928f, -0.999142419f, -0.041405641f, -0.999077728f, -0.042938257f, -0.999010686f, -0.044470772f, -0.998941293f, -0.046003182f, -0.998869550f, -0.047535484f, -0.998795456f, -0.049067674f, -0.998719012f, -0.050599749f, -0.998640218f, -0.052131705f, -0.998559074f, -0.053663538f, -0.998475581f, -0.055195244f, -0.998389737f, -0.056726821f, -0.998301545f, -0.058258265f, -0.998211003f, -0.059789571f, -0.998118113f, -0.061320736f, -0.998022874f, -0.062851758f, -0.997925286f, -0.064382631f, -0.997825350f, -0.065913353f, -0.997723067f, -0.067443920f, -0.997618435f, -0.068974328f, -0.997511456f, -0.070504573f, -0.997402130f, -0.072034653f, -0.997290457f, -0.073564564f, -0.997176437f, -0.075094301f, -0.997060070f, -0.076623861f, -0.996941358f, -0.078153242f, -0.996820299f, -0.079682438f, -0.996696895f, -0.081211447f, -0.996571146f, -0.082740265f, -0.996443051f, -0.084268888f, -0.996312612f, -0.085797312f, -0.996179829f, -0.087325535f, -0.996044701f, -0.088853553f, -0.995907229f, -0.090381361f, -0.995767414f, -0.091908956f, -0.995625256f, -0.093436336f, -0.995480755f, -0.094963495f, -0.995333912f, -0.096490431f, -0.995184727f, -0.098017140f, -0.995033199f, -0.099543619f, -0.994879331f, -0.101069863f, -0.994723121f, -0.102595869f, -0.994564571f, -0.104121634f, -0.994403680f, -0.105647154f, -0.994240449f, -0.107172425f, -0.994074879f, -0.108697444f, -0.993906970f, -0.110222207f, -0.993736722f, -0.111746711f, -0.993564136f, -0.113270952f, -0.993389211f, -0.114794927f, -0.993211949f, -0.116318631f, -0.993032350f, -0.117842062f, -0.992850414f, -0.119365215f, -0.992666142f, -0.120888087f, -0.992479535f, -0.122410675f, -0.992290591f, -0.123932975f, -0.992099313f, -0.125454983f, -0.991905700f, -0.126976696f, -0.991709754f, -0.128498111f, -0.991511473f, -0.130019223f, -0.991310860f, -0.131540029f, -0.991107914f, -0.133060525f, -0.990902635f, -0.134580709f, -0.990695025f, -0.136100575f, -0.990485084f, -0.137620122f, -0.990272812f, -0.139139344f, -0.990058210f, -0.140658239f, -0.989841278f, -0.142176804f, -0.989622017f, -0.143695033f, -0.989400428f, -0.145212925f, -0.989176510f, -0.146730474f, -0.988950265f, -0.148247679f, -0.988721692f, -0.149764535f, -0.988490793f, -0.151281038f, -0.988257568f, -0.152797185f, -0.988022017f, -0.154312973f, -0.987784142f, -0.155828398f, -0.987543942f, -0.157343456f, -0.987301418f, -0.158858143f, -0.987056571f, -0.160372457f, -0.986809402f, -0.161886394f, -0.986559910f, -0.163399949f, -0.986308097f, -0.164913120f, -0.986053963f, -0.166425904f, -0.985797509f, -0.167938295f, -0.985538735f, -0.169450291f, -0.985277642f, -0.170961889f, -0.985014231f, -0.172473084f, -0.984748502f, -0.173983873f, -0.984480455f, -0.175494253f, -0.984210092f, -0.177004220f, -0.983937413f, -0.178513771f, -0.983662419f, -0.180022901f, -0.983385110f, -0.181531608f, -0.983105487f, -0.183039888f, -0.982823551f, -0.184547737f, -0.982539302f, -0.186055152f, -0.982252741f, -0.187562129f, -0.981963869f, -0.189068664f, -0.981672686f, -0.190574755f, -0.981379193f, -0.192080397f, -0.981083391f, -0.193585587f, -0.980785280f, -0.195090322f, -0.980484862f, -0.196594598f, -0.980182136f, -0.198098411f, -0.979877104f, -0.199601758f, -0.979569766f, -0.201104635f, -0.979260123f, -0.202607039f, -0.978948175f, -0.204108966f, -0.978633924f, -0.205610413f, -0.978317371f, -0.207111376f, -0.977998515f, -0.208611852f, -0.977677358f, -0.210111837f, -0.977353900f, -0.211611327f, -0.977028143f, -0.213110320f, -0.976700086f, -0.214608811f, -0.976369731f, -0.216106797f, -0.976037079f, -0.217604275f, -0.975702130f, -0.219101240f, -0.975364885f, -0.220597690f, -0.975025345f, -0.222093621f, -0.974683511f, -0.223589029f, -0.974339383f, -0.225083911f, -0.973992962f, -0.226578264f, -0.973644250f, -0.228072083f, -0.973293246f, -0.229565366f, -0.972939952f, -0.231058108f, -0.972584369f, -0.232550307f, -0.972226497f, -0.234041959f, -0.971866337f, -0.235533059f, -0.971503891f, -0.237023606f, -0.971139158f, -0.238513595f, -0.970772141f, -0.240003022f, -0.970402839f, -0.241491885f, -0.970031253f, -0.242980180f, -0.969657385f, -0.244467903f, -0.969281235f, -0.245955050f, -0.968902805f, -0.247441619f, -0.968522094f, -0.248927606f, -0.968139105f, -0.250413007f, -0.967753837f, -0.251897818f, -0.967366292f, -0.253382037f, -0.966976471f, -0.254865660f, -0.966584374f, -0.256348682f, -0.966190003f, -0.257831102f, -0.965793359f, -0.259312915f, -0.965394442f, -0.260794118f, -0.964993253f, -0.262274707f, -0.964589793f, -0.263754679f, -0.964184064f, -0.265234030f, -0.963776066f, -0.266712757f, -0.963365800f, -0.268190857f, -0.962953267f, -0.269668326f, -0.962538468f, -0.271145160f, -0.962121404f, -0.272621355f, -0.961702077f, -0.274096910f, -0.961280486f, -0.275571819f, -0.960856633f, -0.277046080f, -0.960430519f, -0.278519689f, -0.960002146f, -0.279992643f, -0.959571513f, -0.281464938f, -0.959138622f, -0.282936570f, -0.958703475f, -0.284407537f, -0.958266071f, -0.285877835f, -0.957826413f, -0.287347460f, -0.957384501f, -0.288816408f, -0.956940336f, -0.290284677f, -0.956493919f, -0.291752263f, -0.956045251f, -0.293219163f, -0.955594334f, -0.294685372f, -0.955141168f, -0.296150888f, -0.954685755f, -0.297615707f, -0.954228095f, -0.299079826f, -0.953768190f, -0.300543241f, -0.953306040f, -0.302005949f, -0.952841648f, -0.303467947f, -0.952375013f, -0.304929230f, -0.951906137f, -0.306389795f, -0.951435021f, -0.307849640f, -0.950961666f, -0.309308760f, -0.950486074f, -0.310767153f, -0.950008245f, -0.312224814f, -0.949528181f, -0.313681740f, -0.949045882f, -0.315137929f, -0.948561350f, -0.316593376f, -0.948074586f, -0.318048077f, -0.947585591f, -0.319502031f, -0.947094366f, -0.320955232f, -0.946600913f, -0.322407679f, -0.946105232f, -0.323859367f, -0.945607325f, -0.325310292f, -0.945107193f, -0.326760452f, -0.944604837f, -0.328209844f, -0.944100258f, -0.329658463f, -0.943593458f, -0.331106306f, -0.943084437f, -0.332553370f, -0.942573198f, -0.333999651f, -0.942059740f, -0.335445147f, -0.941544065f, -0.336889853f, -0.941026175f, -0.338333767f, -0.940506071f, -0.339776884f, -0.939983753f, -0.341219202f, -0.939459224f, -0.342660717f, -0.938932484f, -0.344101426f, -0.938403534f, -0.345541325f, -0.937872376f, -0.346980411f, -0.937339012f, -0.348418680f, -0.936803442f, -0.349856130f, -0.936265667f, -0.351292756f, -0.935725689f, -0.352728556f, -0.935183510f, -0.354163525f, -0.934639130f, -0.355597662f, -0.934092550f, -0.357030961f, -0.933543773f, -0.358463421f, -0.932992799f, -0.359895037f, -0.932439629f, -0.361325806f, -0.931884266f, -0.362755724f, -0.931326709f, -0.364184790f, -0.930766961f, -0.365612998f, -0.930205023f, -0.367040346f, -0.929640896f, -0.368466830f, -0.929074581f, -0.369892447f, -0.928506080f, -0.371317194f, -0.927935395f, -0.372741067f, -0.927362526f, -0.374164063f, -0.926787474f, -0.375586178f, -0.926210242f, -0.377007410f, -0.925630831f, -0.378427755f, -0.925049241f, -0.379847209f, -0.924465474f, -0.381265769f, -0.923879533f, -0.382683432f, -0.923291417f, -0.384100195f, -0.922701128f, -0.385516054f, -0.922108669f, -0.386931006f, -0.921514039f, -0.388345047f, -0.920917242f, -0.389758174f, -0.920318277f, -0.391170384f, -0.919717146f, -0.392581674f, -0.919113852f, -0.393992040f, -0.918508394f, -0.395401479f, -0.917900776f, -0.396809987f, -0.917290997f, -0.398217562f, -0.916679060f, -0.399624200f, -0.916064966f, -0.401029897f, -0.915448716f, -0.402434651f, -0.914830312f, -0.403838458f, -0.914209756f, -0.405241314f, -0.913587048f, -0.406643217f, -0.912962190f, -0.408044163f, -0.912335185f, -0.409444149f, -0.911706032f, -0.410843171f, -0.911074734f, -0.412241227f, -0.910441292f, -0.413638312f, -0.909805708f, -0.415034424f, -0.909167983f, -0.416429560f, -0.908528119f, -0.417823716f, -0.907886116f, -0.419216888f, -0.907241978f, -0.420609074f, -0.906595705f, -0.422000271f, -0.905947298f, -0.423390474f, -0.905296759f, -0.424779681f, -0.904644091f, -0.426167889f, -0.903989293f, -0.427555093f, -0.903332368f, -0.428941292f, -0.902673318f, -0.430326481f, -0.902012144f, -0.431710658f, -0.901348847f, -0.433093819f, -0.900683429f, -0.434475961f, -0.900015892f, -0.435857080f, -0.899346237f, -0.437237174f, -0.898674466f, -0.438616239f, -0.898000580f, -0.439994271f, -0.897324581f, -0.441371269f, -0.896646470f, -0.442747228f, -0.895966250f, -0.444122145f, -0.895283921f, -0.445496017f, -0.894599486f, -0.446868840f, -0.893912945f, -0.448240612f, -0.893224301f, -0.449611330f, -0.892533555f, -0.450980989f, -0.891840709f, -0.452349587f, -0.891145765f, -0.453717121f, -0.890448723f, -0.455083587f, -0.889749586f, -0.456448982f, -0.889048356f, -0.457813304f, -0.888345033f, -0.459176548f, -0.887639620f, -0.460538711f, -0.886932119f, -0.461899791f, -0.886222530f, -0.463259784f, -0.885510856f, -0.464618686f, -0.884797098f, -0.465976496f, -0.884081259f, -0.467333209f, -0.883363339f, -0.468688822f, -0.882643340f, -0.470043332f, -0.881921264f, -0.471396737f, -0.881197113f, -0.472749032f, -0.880470889f, -0.474100215f, -0.879742593f, -0.475450282f, -0.879012226f, -0.476799230f, -0.878279792f, -0.478147056f, -0.877545290f, -0.479493758f, -0.876808724f, -0.480839331f, -0.876070094f, -0.482183772f, -0.875329403f, -0.483527079f, -0.874586652f, -0.484869248f, -0.873841843f, -0.486210276f, -0.873094978f, -0.487550160f, -0.872346059f, -0.488888897f, -0.871595087f, -0.490226483f, -0.870842063f, -0.491562916f, -0.870086991f, -0.492898192f, -0.869329871f, -0.494232309f, -0.868570706f, -0.495565262f, -0.867809497f, -0.496897049f, -0.867046246f, -0.498227667f, -0.866280954f, -0.499557113f, -0.865513624f, -0.500885383f, -0.864744258f, -0.502212474f, -0.863972856f, -0.503538384f, -0.863199422f, -0.504863109f, -0.862423956f, -0.506186645f, -0.861646461f, -0.507508991f, -0.860866939f, -0.508830143f, -0.860085390f, -0.510150097f, -0.859301818f, -0.511468850f, -0.858516224f, -0.512786401f, -0.857728610f, -0.514102744f, -0.856938977f, -0.515417878f, -0.856147328f, -0.516731799f, -0.855353665f, -0.518044504f, -0.854557988f, -0.519355990f, -0.853760301f, -0.520666254f, -0.852960605f, -0.521975293f, -0.852158902f, -0.523283103f, -0.851355193f, -0.524589683f, -0.850549481f, -0.525895027f, -0.849741768f, -0.527199135f, -0.848932055f, -0.528502002f, -0.848120345f, -0.529803625f, -0.847306639f, -0.531104001f, -0.846490939f, -0.532403128f, -0.845673247f, -0.533701002f, -0.844853565f, -0.534997620f, -0.844031895f, -0.536292979f, -0.843208240f, -0.537587076f, -0.842382600f, -0.538879909f, -0.841554977f, -0.540171473f, -0.840725375f, -0.541461766f, -0.839893794f, -0.542750785f, -0.839060237f, -0.544038527f, -0.838224706f, -0.545324988f, -0.837387202f, -0.546610167f, -0.836547727f, -0.547894059f, -0.835706284f, -0.549176662f, -0.834862875f, -0.550457973f, -0.834017501f, -0.551737988f, -0.833170165f, -0.553016706f, -0.832320868f, -0.554294121f, -0.831469612f, -0.555570233f, -0.830616400f, -0.556845037f, -0.829761234f, -0.558118531f, -0.828904115f, -0.559390712f, -0.828045045f, -0.560661576f, -0.827184027f, -0.561931121f, -0.826321063f, -0.563199344f, -0.825456154f, -0.564466242f, -0.824589303f, -0.565731811f, -0.823720511f, -0.566996049f, -0.822849781f, -0.568258953f, -0.821977115f, -0.569520519f, -0.821102515f, -0.570780746f, -0.820225983f, -0.572039629f, -0.819347520f, -0.573297167f, -0.818467130f, -0.574553355f, -0.817584813f, -0.575808191f, -0.816700573f, -0.577061673f, -0.815814411f, -0.578313796f, -0.814926329f, -0.579564559f, -0.814036330f, -0.580813958f, -0.813144415f, -0.582061990f, -0.812250587f, -0.583308653f, -0.811354847f, -0.584553943f, -0.810457198f, -0.585797857f, -0.809557642f, -0.587040394f, -0.808656182f, -0.588281548f, -0.807752818f, -0.589521319f, -0.806847554f, -0.590759702f, -0.805940391f, -0.591996695f, -0.805031331f, -0.593232295f, -0.804120377f, -0.594466499f, -0.803207531f, -0.595699304f, -0.802292796f, -0.596930708f, -0.801376172f, -0.598160707f, -0.800457662f, -0.599389298f, -0.799537269f, -0.600616479f, -0.798614995f, -0.601842247f, -0.797690841f, -0.603066599f, -0.796764810f, -0.604289531f, -0.795836905f, -0.605511041f, -0.794907126f, -0.606731127f, -0.793975478f, -0.607949785f, -0.793041960f, -0.609167012f, -0.792106577f, -0.610382806f, -0.791169330f, -0.611597164f, -0.790230221f, -0.612810082f, -0.789289253f, -0.614021559f, -0.788346428f, -0.615231591f, -0.787401747f, -0.616440175f, -0.786455214f, -0.617647308f, -0.785506830f, -0.618852988f, -0.784556597f, -0.620057212f, -0.783604519f, -0.621259977f, -0.782650596f, -0.622461279f, -0.781694832f, -0.623661118f, -0.780737229f, -0.624859488f, -0.779777788f, -0.626056388f, -0.778816512f, -0.627251815f, -0.777853404f, -0.628445767f, -0.776888466f, -0.629638239f, -0.775921699f, -0.630829230f, -0.774953107f, -0.632018736f, -0.773982691f, -0.633206755f, -0.773010453f, -0.634393284f, -0.772036397f, -0.635578320f, -0.771060524f, -0.636761861f, -0.770082837f, -0.637943904f, -0.769103338f, -0.639124445f, -0.768122029f, -0.640303482f, -0.767138912f, -0.641481013f, -0.766153990f, -0.642657034f, -0.765167266f, -0.643831543f, -0.764178741f, -0.645004537f, -0.763188417f, -0.646176013f, -0.762196298f, -0.647345969f, -0.761202385f, -0.648514401f, -0.760206682f, -0.649681307f, -0.759209189f, -0.650846685f, -0.758209910f, -0.652010531f, -0.757208847f, -0.653172843f, -0.756206001f, -0.654333618f, -0.755201377f, -0.655492853f, -0.754194975f, -0.656650546f, -0.753186799f, -0.657806693f, -0.752176850f, -0.658961293f, -0.751165132f, -0.660114342f, -0.750151646f, -0.661265838f, -0.749136395f, -0.662415778f, -0.748119380f, -0.663564159f, -0.747100606f, -0.664710978f, -0.746080074f, -0.665856234f, -0.745057785f, -0.666999922f, -0.744033744f, -0.668142041f, -0.743007952f, -0.669282588f, -0.741980412f, -0.670421560f, -0.740951125f, -0.671558955f, -0.739920095f, -0.672694769f, -0.738887324f, -0.673829000f, -0.737852815f, -0.674961646f, -0.736816569f, -0.676092704f, -0.735778589f, -0.677222170f, -0.734738878f, -0.678350043f, -0.733697438f, -0.679476320f, -0.732654272f, -0.680600998f, -0.731609381f, -0.681724074f, -0.730562769f, -0.682845546f, -0.729514438f, -0.683965412f, -0.728464390f, -0.685083668f, -0.727412629f, -0.686200312f, -0.726359155f, -0.687315341f, -0.725303972f, -0.688428753f, -0.724247083f, -0.689540545f, -0.723188489f, -0.690650714f, -0.722128194f, -0.691759258f, -0.721066199f, -0.692866175f, -0.720002508f, -0.693971461f, -0.718937122f, -0.695075114f, -0.717870045f, -0.696177131f, -0.716801279f, -0.697277511f, -0.715730825f, -0.698376249f, -0.714658688f, -0.699473345f, -0.713584869f, -0.700568794f, -0.712509371f, -0.701662595f, -0.711432196f, -0.702754744f, -0.710353347f, -0.703845241f, -0.709272826f, -0.704934080f, -0.708190637f, -0.706021261f, -0.707106781f, -0.707106781f, -0.706021261f, -0.708190637f, -0.704934080f, -0.709272826f, -0.703845241f, -0.710353347f, -0.702754744f, -0.711432196f, -0.701662595f, -0.712509371f, -0.700568794f, -0.713584869f, -0.699473345f, -0.714658688f, -0.698376249f, -0.715730825f, -0.697277511f, -0.716801279f, -0.696177131f, -0.717870045f, -0.695075114f, -0.718937122f, -0.693971461f, -0.720002508f, -0.692866175f, -0.721066199f, -0.691759258f, -0.722128194f, -0.690650714f, -0.723188489f, -0.689540545f, -0.724247083f, -0.688428753f, -0.725303972f, -0.687315341f, -0.726359155f, -0.686200312f, -0.727412629f, -0.685083668f, -0.728464390f, -0.683965412f, -0.729514438f, -0.682845546f, -0.730562769f, -0.681724074f, -0.731609381f, -0.680600998f, -0.732654272f, -0.679476320f, -0.733697438f, -0.678350043f, -0.734738878f, -0.677222170f, -0.735778589f, -0.676092704f, -0.736816569f, -0.674961646f, -0.737852815f, -0.673829000f, -0.738887324f, -0.672694769f, -0.739920095f, -0.671558955f, -0.740951125f, -0.670421560f, -0.741980412f, -0.669282588f, -0.743007952f, -0.668142041f, -0.744033744f, -0.666999922f, -0.745057785f, -0.665856234f, -0.746080074f, -0.664710978f, -0.747100606f, -0.663564159f, -0.748119380f, -0.662415778f, -0.749136395f, -0.661265838f, -0.750151646f, -0.660114342f, -0.751165132f, -0.658961293f, -0.752176850f, -0.657806693f, -0.753186799f, -0.656650546f, -0.754194975f, -0.655492853f, -0.755201377f, -0.654333618f, -0.756206001f, -0.653172843f, -0.757208847f, -0.652010531f, -0.758209910f, -0.650846685f, -0.759209189f, -0.649681307f, -0.760206682f, -0.648514401f, -0.761202385f, -0.647345969f, -0.762196298f, -0.646176013f, -0.763188417f, -0.645004537f, -0.764178741f, -0.643831543f, -0.765167266f, -0.642657034f, -0.766153990f, -0.641481013f, -0.767138912f, -0.640303482f, -0.768122029f, -0.639124445f, -0.769103338f, -0.637943904f, -0.770082837f, -0.636761861f, -0.771060524f, -0.635578320f, -0.772036397f, -0.634393284f, -0.773010453f, -0.633206755f, -0.773982691f, -0.632018736f, -0.774953107f, -0.630829230f, -0.775921699f, -0.629638239f, -0.776888466f, -0.628445767f, -0.777853404f, -0.627251815f, -0.778816512f, -0.626056388f, -0.779777788f, -0.624859488f, -0.780737229f, -0.623661118f, -0.781694832f, -0.622461279f, -0.782650596f, -0.621259977f, -0.783604519f, -0.620057212f, -0.784556597f, -0.618852988f, -0.785506830f, -0.617647308f, -0.786455214f, -0.616440175f, -0.787401747f, -0.615231591f, -0.788346428f, -0.614021559f, -0.789289253f, -0.612810082f, -0.790230221f, -0.611597164f, -0.791169330f, -0.610382806f, -0.792106577f, -0.609167012f, -0.793041960f, -0.607949785f, -0.793975478f, -0.606731127f, -0.794907126f, -0.605511041f, -0.795836905f, -0.604289531f, -0.796764810f, -0.603066599f, -0.797690841f, -0.601842247f, -0.798614995f, -0.600616479f, -0.799537269f, -0.599389298f, -0.800457662f, -0.598160707f, -0.801376172f, -0.596930708f, -0.802292796f, -0.595699304f, -0.803207531f, -0.594466499f, -0.804120377f, -0.593232295f, -0.805031331f, -0.591996695f, -0.805940391f, -0.590759702f, -0.806847554f, -0.589521319f, -0.807752818f, -0.588281548f, -0.808656182f, -0.587040394f, -0.809557642f, -0.585797857f, -0.810457198f, -0.584553943f, -0.811354847f, -0.583308653f, -0.812250587f, -0.582061990f, -0.813144415f, -0.580813958f, -0.814036330f, -0.579564559f, -0.814926329f, -0.578313796f, -0.815814411f, -0.577061673f, -0.816700573f, -0.575808191f, -0.817584813f, -0.574553355f, -0.818467130f, -0.573297167f, -0.819347520f, -0.572039629f, -0.820225983f, -0.570780746f, -0.821102515f, -0.569520519f, -0.821977115f, -0.568258953f, -0.822849781f, -0.566996049f, -0.823720511f, -0.565731811f, -0.824589303f, -0.564466242f, -0.825456154f, -0.563199344f, -0.826321063f, -0.561931121f, -0.827184027f, -0.560661576f, -0.828045045f, -0.559390712f, -0.828904115f, -0.558118531f, -0.829761234f, -0.556845037f, -0.830616400f, -0.555570233f, -0.831469612f, -0.554294121f, -0.832320868f, -0.553016706f, -0.833170165f, -0.551737988f, -0.834017501f, -0.550457973f, -0.834862875f, -0.549176662f, -0.835706284f, -0.547894059f, -0.836547727f, -0.546610167f, -0.837387202f, -0.545324988f, -0.838224706f, -0.544038527f, -0.839060237f, -0.542750785f, -0.839893794f, -0.541461766f, -0.840725375f, -0.540171473f, -0.841554977f, -0.538879909f, -0.842382600f, -0.537587076f, -0.843208240f, -0.536292979f, -0.844031895f, -0.534997620f, -0.844853565f, -0.533701002f, -0.845673247f, -0.532403128f, -0.846490939f, -0.531104001f, -0.847306639f, -0.529803625f, -0.848120345f, -0.528502002f, -0.848932055f, -0.527199135f, -0.849741768f, -0.525895027f, -0.850549481f, -0.524589683f, -0.851355193f, -0.523283103f, -0.852158902f, -0.521975293f, -0.852960605f, -0.520666254f, -0.853760301f, -0.519355990f, -0.854557988f, -0.518044504f, -0.855353665f, -0.516731799f, -0.856147328f, -0.515417878f, -0.856938977f, -0.514102744f, -0.857728610f, -0.512786401f, -0.858516224f, -0.511468850f, -0.859301818f, -0.510150097f, -0.860085390f, -0.508830143f, -0.860866939f, -0.507508991f, -0.861646461f, -0.506186645f, -0.862423956f, -0.504863109f, -0.863199422f, -0.503538384f, -0.863972856f, -0.502212474f, -0.864744258f, -0.500885383f, -0.865513624f, -0.499557113f, -0.866280954f, -0.498227667f, -0.867046246f, -0.496897049f, -0.867809497f, -0.495565262f, -0.868570706f, -0.494232309f, -0.869329871f, -0.492898192f, -0.870086991f, -0.491562916f, -0.870842063f, -0.490226483f, -0.871595087f, -0.488888897f, -0.872346059f, -0.487550160f, -0.873094978f, -0.486210276f, -0.873841843f, -0.484869248f, -0.874586652f, -0.483527079f, -0.875329403f, -0.482183772f, -0.876070094f, -0.480839331f, -0.876808724f, -0.479493758f, -0.877545290f, -0.478147056f, -0.878279792f, -0.476799230f, -0.879012226f, -0.475450282f, -0.879742593f, -0.474100215f, -0.880470889f, -0.472749032f, -0.881197113f, -0.471396737f, -0.881921264f, -0.470043332f, -0.882643340f, -0.468688822f, -0.883363339f, -0.467333209f, -0.884081259f, -0.465976496f, -0.884797098f, -0.464618686f, -0.885510856f, -0.463259784f, -0.886222530f, -0.461899791f, -0.886932119f, -0.460538711f, -0.887639620f, -0.459176548f, -0.888345033f, -0.457813304f, -0.889048356f, -0.456448982f, -0.889749586f, -0.455083587f, -0.890448723f, -0.453717121f, -0.891145765f, -0.452349587f, -0.891840709f, -0.450980989f, -0.892533555f, -0.449611330f, -0.893224301f, -0.448240612f, -0.893912945f, -0.446868840f, -0.894599486f, -0.445496017f, -0.895283921f, -0.444122145f, -0.895966250f, -0.442747228f, -0.896646470f, -0.441371269f, -0.897324581f, -0.439994271f, -0.898000580f, -0.438616239f, -0.898674466f, -0.437237174f, -0.899346237f, -0.435857080f, -0.900015892f, -0.434475961f, -0.900683429f, -0.433093819f, -0.901348847f, -0.431710658f, -0.902012144f, -0.430326481f, -0.902673318f, -0.428941292f, -0.903332368f, -0.427555093f, -0.903989293f, -0.426167889f, -0.904644091f, -0.424779681f, -0.905296759f, -0.423390474f, -0.905947298f, -0.422000271f, -0.906595705f, -0.420609074f, -0.907241978f, -0.419216888f, -0.907886116f, -0.417823716f, -0.908528119f, -0.416429560f, -0.909167983f, -0.415034424f, -0.909805708f, -0.413638312f, -0.910441292f, -0.412241227f, -0.911074734f, -0.410843171f, -0.911706032f, -0.409444149f, -0.912335185f, -0.408044163f, -0.912962190f, -0.406643217f, -0.913587048f, -0.405241314f, -0.914209756f, -0.403838458f, -0.914830312f, -0.402434651f, -0.915448716f, -0.401029897f, -0.916064966f, -0.399624200f, -0.916679060f, -0.398217562f, -0.917290997f, -0.396809987f, -0.917900776f, -0.395401479f, -0.918508394f, -0.393992040f, -0.919113852f, -0.392581674f, -0.919717146f, -0.391170384f, -0.920318277f, -0.389758174f, -0.920917242f, -0.388345047f, -0.921514039f, -0.386931006f, -0.922108669f, -0.385516054f, -0.922701128f, -0.384100195f, -0.923291417f, -0.382683432f, -0.923879533f, -0.381265769f, -0.924465474f, -0.379847209f, -0.925049241f, -0.378427755f, -0.925630831f, -0.377007410f, -0.926210242f, -0.375586178f, -0.926787474f, -0.374164063f, -0.927362526f, -0.372741067f, -0.927935395f, -0.371317194f, -0.928506080f, -0.369892447f, -0.929074581f, -0.368466830f, -0.929640896f, -0.367040346f, -0.930205023f, -0.365612998f, -0.930766961f, -0.364184790f, -0.931326709f, -0.362755724f, -0.931884266f, -0.361325806f, -0.932439629f, -0.359895037f, -0.932992799f, -0.358463421f, -0.933543773f, -0.357030961f, -0.934092550f, -0.355597662f, -0.934639130f, -0.354163525f, -0.935183510f, -0.352728556f, -0.935725689f, -0.351292756f, -0.936265667f, -0.349856130f, -0.936803442f, -0.348418680f, -0.937339012f, -0.346980411f, -0.937872376f, -0.345541325f, -0.938403534f, -0.344101426f, -0.938932484f, -0.342660717f, -0.939459224f, -0.341219202f, -0.939983753f, -0.339776884f, -0.940506071f, -0.338333767f, -0.941026175f, -0.336889853f, -0.941544065f, -0.335445147f, -0.942059740f, -0.333999651f, -0.942573198f, -0.332553370f, -0.943084437f, -0.331106306f, -0.943593458f, -0.329658463f, -0.944100258f, -0.328209844f, -0.944604837f, -0.326760452f, -0.945107193f, -0.325310292f, -0.945607325f, -0.323859367f, -0.946105232f, -0.322407679f, -0.946600913f, -0.320955232f, -0.947094366f, -0.319502031f, -0.947585591f, -0.318048077f, -0.948074586f, -0.316593376f, -0.948561350f, -0.315137929f, -0.949045882f, -0.313681740f, -0.949528181f, -0.312224814f, -0.950008245f, -0.310767153f, -0.950486074f, -0.309308760f, -0.950961666f, -0.307849640f, -0.951435021f, -0.306389795f, -0.951906137f, -0.304929230f, -0.952375013f, -0.303467947f, -0.952841648f, -0.302005949f, -0.953306040f, -0.300543241f, -0.953768190f, -0.299079826f, -0.954228095f, -0.297615707f, -0.954685755f, -0.296150888f, -0.955141168f, -0.294685372f, -0.955594334f, -0.293219163f, -0.956045251f, -0.291752263f, -0.956493919f, -0.290284677f, -0.956940336f, -0.288816408f, -0.957384501f, -0.287347460f, -0.957826413f, -0.285877835f, -0.958266071f, -0.284407537f, -0.958703475f, -0.282936570f, -0.959138622f, -0.281464938f, -0.959571513f, -0.279992643f, -0.960002146f, -0.278519689f, -0.960430519f, -0.277046080f, -0.960856633f, -0.275571819f, -0.961280486f, -0.274096910f, -0.961702077f, -0.272621355f, -0.962121404f, -0.271145160f, -0.962538468f, -0.269668326f, -0.962953267f, -0.268190857f, -0.963365800f, -0.266712757f, -0.963776066f, -0.265234030f, -0.964184064f, -0.263754679f, -0.964589793f, -0.262274707f, -0.964993253f, -0.260794118f, -0.965394442f, -0.259312915f, -0.965793359f, -0.257831102f, -0.966190003f, -0.256348682f, -0.966584374f, -0.254865660f, -0.966976471f, -0.253382037f, -0.967366292f, -0.251897818f, -0.967753837f, -0.250413007f, -0.968139105f, -0.248927606f, -0.968522094f, -0.247441619f, -0.968902805f, -0.245955050f, -0.969281235f, -0.244467903f, -0.969657385f, -0.242980180f, -0.970031253f, -0.241491885f, -0.970402839f, -0.240003022f, -0.970772141f, -0.238513595f, -0.971139158f, -0.237023606f, -0.971503891f, -0.235533059f, -0.971866337f, -0.234041959f, -0.972226497f, -0.232550307f, -0.972584369f, -0.231058108f, -0.972939952f, -0.229565366f, -0.973293246f, -0.228072083f, -0.973644250f, -0.226578264f, -0.973992962f, -0.225083911f, -0.974339383f, -0.223589029f, -0.974683511f, -0.222093621f, -0.975025345f, -0.220597690f, -0.975364885f, -0.219101240f, -0.975702130f, -0.217604275f, -0.976037079f, -0.216106797f, -0.976369731f, -0.214608811f, -0.976700086f, -0.213110320f, -0.977028143f, -0.211611327f, -0.977353900f, -0.210111837f, -0.977677358f, -0.208611852f, -0.977998515f, -0.207111376f, -0.978317371f, -0.205610413f, -0.978633924f, -0.204108966f, -0.978948175f, -0.202607039f, -0.979260123f, -0.201104635f, -0.979569766f, -0.199601758f, -0.979877104f, -0.198098411f, -0.980182136f, -0.196594598f, -0.980484862f, -0.195090322f, -0.980785280f, -0.193585587f, -0.981083391f, -0.192080397f, -0.981379193f, -0.190574755f, -0.981672686f, -0.189068664f, -0.981963869f, -0.187562129f, -0.982252741f, -0.186055152f, -0.982539302f, -0.184547737f, -0.982823551f, -0.183039888f, -0.983105487f, -0.181531608f, -0.983385110f, -0.180022901f, -0.983662419f, -0.178513771f, -0.983937413f, -0.177004220f, -0.984210092f, -0.175494253f, -0.984480455f, -0.173983873f, -0.984748502f, -0.172473084f, -0.985014231f, -0.170961889f, -0.985277642f, -0.169450291f, -0.985538735f, -0.167938295f, -0.985797509f, -0.166425904f, -0.986053963f, -0.164913120f, -0.986308097f, -0.163399949f, -0.986559910f, -0.161886394f, -0.986809402f, -0.160372457f, -0.987056571f, -0.158858143f, -0.987301418f, -0.157343456f, -0.987543942f, -0.155828398f, -0.987784142f, -0.154312973f, -0.988022017f, -0.152797185f, -0.988257568f, -0.151281038f, -0.988490793f, -0.149764535f, -0.988721692f, -0.148247679f, -0.988950265f, -0.146730474f, -0.989176510f, -0.145212925f, -0.989400428f, -0.143695033f, -0.989622017f, -0.142176804f, -0.989841278f, -0.140658239f, -0.990058210f, -0.139139344f, -0.990272812f, -0.137620122f, -0.990485084f, -0.136100575f, -0.990695025f, -0.134580709f, -0.990902635f, -0.133060525f, -0.991107914f, -0.131540029f, -0.991310860f, -0.130019223f, -0.991511473f, -0.128498111f, -0.991709754f, -0.126976696f, -0.991905700f, -0.125454983f, -0.992099313f, -0.123932975f, -0.992290591f, -0.122410675f, -0.992479535f, -0.120888087f, -0.992666142f, -0.119365215f, -0.992850414f, -0.117842062f, -0.993032350f, -0.116318631f, -0.993211949f, -0.114794927f, -0.993389211f, -0.113270952f, -0.993564136f, -0.111746711f, -0.993736722f, -0.110222207f, -0.993906970f, -0.108697444f, -0.994074879f, -0.107172425f, -0.994240449f, -0.105647154f, -0.994403680f, -0.104121634f, -0.994564571f, -0.102595869f, -0.994723121f, -0.101069863f, -0.994879331f, -0.099543619f, -0.995033199f, -0.098017140f, -0.995184727f, -0.096490431f, -0.995333912f, -0.094963495f, -0.995480755f, -0.093436336f, -0.995625256f, -0.091908956f, -0.995767414f, -0.090381361f, -0.995907229f, -0.088853553f, -0.996044701f, -0.087325535f, -0.996179829f, -0.085797312f, -0.996312612f, -0.084268888f, -0.996443051f, -0.082740265f, -0.996571146f, -0.081211447f, -0.996696895f, -0.079682438f, -0.996820299f, -0.078153242f, -0.996941358f, -0.076623861f, -0.997060070f, -0.075094301f, -0.997176437f, -0.073564564f, -0.997290457f, -0.072034653f, -0.997402130f, -0.070504573f, -0.997511456f, -0.068974328f, -0.997618435f, -0.067443920f, -0.997723067f, -0.065913353f, -0.997825350f, -0.064382631f, -0.997925286f, -0.062851758f, -0.998022874f, -0.061320736f, -0.998118113f, -0.059789571f, -0.998211003f, -0.058258265f, -0.998301545f, -0.056726821f, -0.998389737f, -0.055195244f, -0.998475581f, -0.053663538f, -0.998559074f, -0.052131705f, -0.998640218f, -0.050599749f, -0.998719012f, -0.049067674f, -0.998795456f, -0.047535484f, -0.998869550f, -0.046003182f, -0.998941293f, -0.044470772f, -0.999010686f, -0.042938257f, -0.999077728f, -0.041405641f, -0.999142419f, -0.039872928f, -0.999204759f, -0.038340120f, -0.999264747f, -0.036807223f, -0.999322385f, -0.035274239f, -0.999377670f, -0.033741172f, -0.999430605f, -0.032208025f, -0.999481187f, -0.030674803f, -0.999529418f, -0.029141509f, -0.999575296f, -0.027608146f, -0.999618822f, -0.026074718f, -0.999659997f, -0.024541229f, -0.999698819f, -0.023007681f, -0.999735288f, -0.021474080f, -0.999769405f, -0.019940429f, -0.999801170f, -0.018406730f, -0.999830582f, -0.016872988f, -0.999857641f, -0.015339206f, -0.999882347f, -0.013805389f, -0.999904701f, -0.012271538f, -0.999924702f, -0.010737659f, -0.999942350f, -0.009203755f, -0.999957645f, -0.007669829f, -0.999970586f, -0.006135885f, -0.999981175f, -0.004601926f, -0.999989411f, -0.003067957f, -0.999995294f, -0.001533980f, -0.999998823f, -0.000000000f, -1.000000000f, 0.001533980f, -0.999998823f, 0.003067957f, -0.999995294f, 0.004601926f, -0.999989411f, 0.006135885f, -0.999981175f, 0.007669829f, -0.999970586f, 0.009203755f, -0.999957645f, 0.010737659f, -0.999942350f, 0.012271538f, -0.999924702f, 0.013805389f, -0.999904701f, 0.015339206f, -0.999882347f, 0.016872988f, -0.999857641f, 0.018406730f, -0.999830582f, 0.019940429f, -0.999801170f, 0.021474080f, -0.999769405f, 0.023007681f, -0.999735288f, 0.024541229f, -0.999698819f, 0.026074718f, -0.999659997f, 0.027608146f, -0.999618822f, 0.029141509f, -0.999575296f, 0.030674803f, -0.999529418f, 0.032208025f, -0.999481187f, 0.033741172f, -0.999430605f, 0.035274239f, -0.999377670f, 0.036807223f, -0.999322385f, 0.038340120f, -0.999264747f, 0.039872928f, -0.999204759f, 0.041405641f, -0.999142419f, 0.042938257f, -0.999077728f, 0.044470772f, -0.999010686f, 0.046003182f, -0.998941293f, 0.047535484f, -0.998869550f, 0.049067674f, -0.998795456f, 0.050599749f, -0.998719012f, 0.052131705f, -0.998640218f, 0.053663538f, -0.998559074f, 0.055195244f, -0.998475581f, 0.056726821f, -0.998389737f, 0.058258265f, -0.998301545f, 0.059789571f, -0.998211003f, 0.061320736f, -0.998118113f, 0.062851758f, -0.998022874f, 0.064382631f, -0.997925286f, 0.065913353f, -0.997825350f, 0.067443920f, -0.997723067f, 0.068974328f, -0.997618435f, 0.070504573f, -0.997511456f, 0.072034653f, -0.997402130f, 0.073564564f, -0.997290457f, 0.075094301f, -0.997176437f, 0.076623861f, -0.997060070f, 0.078153242f, -0.996941358f, 0.079682438f, -0.996820299f, 0.081211447f, -0.996696895f, 0.082740265f, -0.996571146f, 0.084268888f, -0.996443051f, 0.085797312f, -0.996312612f, 0.087325535f, -0.996179829f, 0.088853553f, -0.996044701f, 0.090381361f, -0.995907229f, 0.091908956f, -0.995767414f, 0.093436336f, -0.995625256f, 0.094963495f, -0.995480755f, 0.096490431f, -0.995333912f, 0.098017140f, -0.995184727f, 0.099543619f, -0.995033199f, 0.101069863f, -0.994879331f, 0.102595869f, -0.994723121f, 0.104121634f, -0.994564571f, 0.105647154f, -0.994403680f, 0.107172425f, -0.994240449f, 0.108697444f, -0.994074879f, 0.110222207f, -0.993906970f, 0.111746711f, -0.993736722f, 0.113270952f, -0.993564136f, 0.114794927f, -0.993389211f, 0.116318631f, -0.993211949f, 0.117842062f, -0.993032350f, 0.119365215f, -0.992850414f, 0.120888087f, -0.992666142f, 0.122410675f, -0.992479535f, 0.123932975f, -0.992290591f, 0.125454983f, -0.992099313f, 0.126976696f, -0.991905700f, 0.128498111f, -0.991709754f, 0.130019223f, -0.991511473f, 0.131540029f, -0.991310860f, 0.133060525f, -0.991107914f, 0.134580709f, -0.990902635f, 0.136100575f, -0.990695025f, 0.137620122f, -0.990485084f, 0.139139344f, -0.990272812f, 0.140658239f, -0.990058210f, 0.142176804f, -0.989841278f, 0.143695033f, -0.989622017f, 0.145212925f, -0.989400428f, 0.146730474f, -0.989176510f, 0.148247679f, -0.988950265f, 0.149764535f, -0.988721692f, 0.151281038f, -0.988490793f, 0.152797185f, -0.988257568f, 0.154312973f, -0.988022017f, 0.155828398f, -0.987784142f, 0.157343456f, -0.987543942f, 0.158858143f, -0.987301418f, 0.160372457f, -0.987056571f, 0.161886394f, -0.986809402f, 0.163399949f, -0.986559910f, 0.164913120f, -0.986308097f, 0.166425904f, -0.986053963f, 0.167938295f, -0.985797509f, 0.169450291f, -0.985538735f, 0.170961889f, -0.985277642f, 0.172473084f, -0.985014231f, 0.173983873f, -0.984748502f, 0.175494253f, -0.984480455f, 0.177004220f, -0.984210092f, 0.178513771f, -0.983937413f, 0.180022901f, -0.983662419f, 0.181531608f, -0.983385110f, 0.183039888f, -0.983105487f, 0.184547737f, -0.982823551f, 0.186055152f, -0.982539302f, 0.187562129f, -0.982252741f, 0.189068664f, -0.981963869f, 0.190574755f, -0.981672686f, 0.192080397f, -0.981379193f, 0.193585587f, -0.981083391f, 0.195090322f, -0.980785280f, 0.196594598f, -0.980484862f, 0.198098411f, -0.980182136f, 0.199601758f, -0.979877104f, 0.201104635f, -0.979569766f, 0.202607039f, -0.979260123f, 0.204108966f, -0.978948175f, 0.205610413f, -0.978633924f, 0.207111376f, -0.978317371f, 0.208611852f, -0.977998515f, 0.210111837f, -0.977677358f, 0.211611327f, -0.977353900f, 0.213110320f, -0.977028143f, 0.214608811f, -0.976700086f, 0.216106797f, -0.976369731f, 0.217604275f, -0.976037079f, 0.219101240f, -0.975702130f, 0.220597690f, -0.975364885f, 0.222093621f, -0.975025345f, 0.223589029f, -0.974683511f, 0.225083911f, -0.974339383f, 0.226578264f, -0.973992962f, 0.228072083f, -0.973644250f, 0.229565366f, -0.973293246f, 0.231058108f, -0.972939952f, 0.232550307f, -0.972584369f, 0.234041959f, -0.972226497f, 0.235533059f, -0.971866337f, 0.237023606f, -0.971503891f, 0.238513595f, -0.971139158f, 0.240003022f, -0.970772141f, 0.241491885f, -0.970402839f, 0.242980180f, -0.970031253f, 0.244467903f, -0.969657385f, 0.245955050f, -0.969281235f, 0.247441619f, -0.968902805f, 0.248927606f, -0.968522094f, 0.250413007f, -0.968139105f, 0.251897818f, -0.967753837f, 0.253382037f, -0.967366292f, 0.254865660f, -0.966976471f, 0.256348682f, -0.966584374f, 0.257831102f, -0.966190003f, 0.259312915f, -0.965793359f, 0.260794118f, -0.965394442f, 0.262274707f, -0.964993253f, 0.263754679f, -0.964589793f, 0.265234030f, -0.964184064f, 0.266712757f, -0.963776066f, 0.268190857f, -0.963365800f, 0.269668326f, -0.962953267f, 0.271145160f, -0.962538468f, 0.272621355f, -0.962121404f, 0.274096910f, -0.961702077f, 0.275571819f, -0.961280486f, 0.277046080f, -0.960856633f, 0.278519689f, -0.960430519f, 0.279992643f, -0.960002146f, 0.281464938f, -0.959571513f, 0.282936570f, -0.959138622f, 0.284407537f, -0.958703475f, 0.285877835f, -0.958266071f, 0.287347460f, -0.957826413f, 0.288816408f, -0.957384501f, 0.290284677f, -0.956940336f, 0.291752263f, -0.956493919f, 0.293219163f, -0.956045251f, 0.294685372f, -0.955594334f, 0.296150888f, -0.955141168f, 0.297615707f, -0.954685755f, 0.299079826f, -0.954228095f, 0.300543241f, -0.953768190f, 0.302005949f, -0.953306040f, 0.303467947f, -0.952841648f, 0.304929230f, -0.952375013f, 0.306389795f, -0.951906137f, 0.307849640f, -0.951435021f, 0.309308760f, -0.950961666f, 0.310767153f, -0.950486074f, 0.312224814f, -0.950008245f, 0.313681740f, -0.949528181f, 0.315137929f, -0.949045882f, 0.316593376f, -0.948561350f, 0.318048077f, -0.948074586f, 0.319502031f, -0.947585591f, 0.320955232f, -0.947094366f, 0.322407679f, -0.946600913f, 0.323859367f, -0.946105232f, 0.325310292f, -0.945607325f, 0.326760452f, -0.945107193f, 0.328209844f, -0.944604837f, 0.329658463f, -0.944100258f, 0.331106306f, -0.943593458f, 0.332553370f, -0.943084437f, 0.333999651f, -0.942573198f, 0.335445147f, -0.942059740f, 0.336889853f, -0.941544065f, 0.338333767f, -0.941026175f, 0.339776884f, -0.940506071f, 0.341219202f, -0.939983753f, 0.342660717f, -0.939459224f, 0.344101426f, -0.938932484f, 0.345541325f, -0.938403534f, 0.346980411f, -0.937872376f, 0.348418680f, -0.937339012f, 0.349856130f, -0.936803442f, 0.351292756f, -0.936265667f, 0.352728556f, -0.935725689f, 0.354163525f, -0.935183510f, 0.355597662f, -0.934639130f, 0.357030961f, -0.934092550f, 0.358463421f, -0.933543773f, 0.359895037f, -0.932992799f, 0.361325806f, -0.932439629f, 0.362755724f, -0.931884266f, 0.364184790f, -0.931326709f, 0.365612998f, -0.930766961f, 0.367040346f, -0.930205023f, 0.368466830f, -0.929640896f, 0.369892447f, -0.929074581f, 0.371317194f, -0.928506080f, 0.372741067f, -0.927935395f, 0.374164063f, -0.927362526f, 0.375586178f, -0.926787474f, 0.377007410f, -0.926210242f, 0.378427755f, -0.925630831f, 0.379847209f, -0.925049241f, 0.381265769f, -0.924465474f, 0.382683432f, -0.923879533f, 0.384100195f, -0.923291417f, 0.385516054f, -0.922701128f, 0.386931006f, -0.922108669f, 0.388345047f, -0.921514039f, 0.389758174f, -0.920917242f, 0.391170384f, -0.920318277f, 0.392581674f, -0.919717146f, 0.393992040f, -0.919113852f, 0.395401479f, -0.918508394f, 0.396809987f, -0.917900776f, 0.398217562f, -0.917290997f, 0.399624200f, -0.916679060f, 0.401029897f, -0.916064966f, 0.402434651f, -0.915448716f, 0.403838458f, -0.914830312f, 0.405241314f, -0.914209756f, 0.406643217f, -0.913587048f, 0.408044163f, -0.912962190f, 0.409444149f, -0.912335185f, 0.410843171f, -0.911706032f, 0.412241227f, -0.911074734f, 0.413638312f, -0.910441292f, 0.415034424f, -0.909805708f, 0.416429560f, -0.909167983f, 0.417823716f, -0.908528119f, 0.419216888f, -0.907886116f, 0.420609074f, -0.907241978f, 0.422000271f, -0.906595705f, 0.423390474f, -0.905947298f, 0.424779681f, -0.905296759f, 0.426167889f, -0.904644091f, 0.427555093f, -0.903989293f, 0.428941292f, -0.903332368f, 0.430326481f, -0.902673318f, 0.431710658f, -0.902012144f, 0.433093819f, -0.901348847f, 0.434475961f, -0.900683429f, 0.435857080f, -0.900015892f, 0.437237174f, -0.899346237f, 0.438616239f, -0.898674466f, 0.439994271f, -0.898000580f, 0.441371269f, -0.897324581f, 0.442747228f, -0.896646470f, 0.444122145f, -0.895966250f, 0.445496017f, -0.895283921f, 0.446868840f, -0.894599486f, 0.448240612f, -0.893912945f, 0.449611330f, -0.893224301f, 0.450980989f, -0.892533555f, 0.452349587f, -0.891840709f, 0.453717121f, -0.891145765f, 0.455083587f, -0.890448723f, 0.456448982f, -0.889749586f, 0.457813304f, -0.889048356f, 0.459176548f, -0.888345033f, 0.460538711f, -0.887639620f, 0.461899791f, -0.886932119f, 0.463259784f, -0.886222530f, 0.464618686f, -0.885510856f, 0.465976496f, -0.884797098f, 0.467333209f, -0.884081259f, 0.468688822f, -0.883363339f, 0.470043332f, -0.882643340f, 0.471396737f, -0.881921264f, 0.472749032f, -0.881197113f, 0.474100215f, -0.880470889f, 0.475450282f, -0.879742593f, 0.476799230f, -0.879012226f, 0.478147056f, -0.878279792f, 0.479493758f, -0.877545290f, 0.480839331f, -0.876808724f, 0.482183772f, -0.876070094f, 0.483527079f, -0.875329403f, 0.484869248f, -0.874586652f, 0.486210276f, -0.873841843f, 0.487550160f, -0.873094978f, 0.488888897f, -0.872346059f, 0.490226483f, -0.871595087f, 0.491562916f, -0.870842063f, 0.492898192f, -0.870086991f, 0.494232309f, -0.869329871f, 0.495565262f, -0.868570706f, 0.496897049f, -0.867809497f, 0.498227667f, -0.867046246f, 0.499557113f, -0.866280954f, 0.500885383f, -0.865513624f, 0.502212474f, -0.864744258f, 0.503538384f, -0.863972856f, 0.504863109f, -0.863199422f, 0.506186645f, -0.862423956f, 0.507508991f, -0.861646461f, 0.508830143f, -0.860866939f, 0.510150097f, -0.860085390f, 0.511468850f, -0.859301818f, 0.512786401f, -0.858516224f, 0.514102744f, -0.857728610f, 0.515417878f, -0.856938977f, 0.516731799f, -0.856147328f, 0.518044504f, -0.855353665f, 0.519355990f, -0.854557988f, 0.520666254f, -0.853760301f, 0.521975293f, -0.852960605f, 0.523283103f, -0.852158902f, 0.524589683f, -0.851355193f, 0.525895027f, -0.850549481f, 0.527199135f, -0.849741768f, 0.528502002f, -0.848932055f, 0.529803625f, -0.848120345f, 0.531104001f, -0.847306639f, 0.532403128f, -0.846490939f, 0.533701002f, -0.845673247f, 0.534997620f, -0.844853565f, 0.536292979f, -0.844031895f, 0.537587076f, -0.843208240f, 0.538879909f, -0.842382600f, 0.540171473f, -0.841554977f, 0.541461766f, -0.840725375f, 0.542750785f, -0.839893794f, 0.544038527f, -0.839060237f, 0.545324988f, -0.838224706f, 0.546610167f, -0.837387202f, 0.547894059f, -0.836547727f, 0.549176662f, -0.835706284f, 0.550457973f, -0.834862875f, 0.551737988f, -0.834017501f, 0.553016706f, -0.833170165f, 0.554294121f, -0.832320868f, 0.555570233f, -0.831469612f, 0.556845037f, -0.830616400f, 0.558118531f, -0.829761234f, 0.559390712f, -0.828904115f, 0.560661576f, -0.828045045f, 0.561931121f, -0.827184027f, 0.563199344f, -0.826321063f, 0.564466242f, -0.825456154f, 0.565731811f, -0.824589303f, 0.566996049f, -0.823720511f, 0.568258953f, -0.822849781f, 0.569520519f, -0.821977115f, 0.570780746f, -0.821102515f, 0.572039629f, -0.820225983f, 0.573297167f, -0.819347520f, 0.574553355f, -0.818467130f, 0.575808191f, -0.817584813f, 0.577061673f, -0.816700573f, 0.578313796f, -0.815814411f, 0.579564559f, -0.814926329f, 0.580813958f, -0.814036330f, 0.582061990f, -0.813144415f, 0.583308653f, -0.812250587f, 0.584553943f, -0.811354847f, 0.585797857f, -0.810457198f, 0.587040394f, -0.809557642f, 0.588281548f, -0.808656182f, 0.589521319f, -0.807752818f, 0.590759702f, -0.806847554f, 0.591996695f, -0.805940391f, 0.593232295f, -0.805031331f, 0.594466499f, -0.804120377f, 0.595699304f, -0.803207531f, 0.596930708f, -0.802292796f, 0.598160707f, -0.801376172f, 0.599389298f, -0.800457662f, 0.600616479f, -0.799537269f, 0.601842247f, -0.798614995f, 0.603066599f, -0.797690841f, 0.604289531f, -0.796764810f, 0.605511041f, -0.795836905f, 0.606731127f, -0.794907126f, 0.607949785f, -0.793975478f, 0.609167012f, -0.793041960f, 0.610382806f, -0.792106577f, 0.611597164f, -0.791169330f, 0.612810082f, -0.790230221f, 0.614021559f, -0.789289253f, 0.615231591f, -0.788346428f, 0.616440175f, -0.787401747f, 0.617647308f, -0.786455214f, 0.618852988f, -0.785506830f, 0.620057212f, -0.784556597f, 0.621259977f, -0.783604519f, 0.622461279f, -0.782650596f, 0.623661118f, -0.781694832f, 0.624859488f, -0.780737229f, 0.626056388f, -0.779777788f, 0.627251815f, -0.778816512f, 0.628445767f, -0.777853404f, 0.629638239f, -0.776888466f, 0.630829230f, -0.775921699f, 0.632018736f, -0.774953107f, 0.633206755f, -0.773982691f, 0.634393284f, -0.773010453f, 0.635578320f, -0.772036397f, 0.636761861f, -0.771060524f, 0.637943904f, -0.770082837f, 0.639124445f, -0.769103338f, 0.640303482f, -0.768122029f, 0.641481013f, -0.767138912f, 0.642657034f, -0.766153990f, 0.643831543f, -0.765167266f, 0.645004537f, -0.764178741f, 0.646176013f, -0.763188417f, 0.647345969f, -0.762196298f, 0.648514401f, -0.761202385f, 0.649681307f, -0.760206682f, 0.650846685f, -0.759209189f, 0.652010531f, -0.758209910f, 0.653172843f, -0.757208847f, 0.654333618f, -0.756206001f, 0.655492853f, -0.755201377f, 0.656650546f, -0.754194975f, 0.657806693f, -0.753186799f, 0.658961293f, -0.752176850f, 0.660114342f, -0.751165132f, 0.661265838f, -0.750151646f, 0.662415778f, -0.749136395f, 0.663564159f, -0.748119380f, 0.664710978f, -0.747100606f, 0.665856234f, -0.746080074f, 0.666999922f, -0.745057785f, 0.668142041f, -0.744033744f, 0.669282588f, -0.743007952f, 0.670421560f, -0.741980412f, 0.671558955f, -0.740951125f, 0.672694769f, -0.739920095f, 0.673829000f, -0.738887324f, 0.674961646f, -0.737852815f, 0.676092704f, -0.736816569f, 0.677222170f, -0.735778589f, 0.678350043f, -0.734738878f, 0.679476320f, -0.733697438f, 0.680600998f, -0.732654272f, 0.681724074f, -0.731609381f, 0.682845546f, -0.730562769f, 0.683965412f, -0.729514438f, 0.685083668f, -0.728464390f, 0.686200312f, -0.727412629f, 0.687315341f, -0.726359155f, 0.688428753f, -0.725303972f, 0.689540545f, -0.724247083f, 0.690650714f, -0.723188489f, 0.691759258f, -0.722128194f, 0.692866175f, -0.721066199f, 0.693971461f, -0.720002508f, 0.695075114f, -0.718937122f, 0.696177131f, -0.717870045f, 0.697277511f, -0.716801279f, 0.698376249f, -0.715730825f, 0.699473345f, -0.714658688f, 0.700568794f, -0.713584869f, 0.701662595f, -0.712509371f, 0.702754744f, -0.711432196f, 0.703845241f, -0.710353347f, 0.704934080f, -0.709272826f, 0.706021261f, -0.708190637f, 0.707106781f, -0.707106781f, 0.708190637f, -0.706021261f, 0.709272826f, -0.704934080f, 0.710353347f, -0.703845241f, 0.711432196f, -0.702754744f, 0.712509371f, -0.701662595f, 0.713584869f, -0.700568794f, 0.714658688f, -0.699473345f, 0.715730825f, -0.698376249f, 0.716801279f, -0.697277511f, 0.717870045f, -0.696177131f, 0.718937122f, -0.695075114f, 0.720002508f, -0.693971461f, 0.721066199f, -0.692866175f, 0.722128194f, -0.691759258f, 0.723188489f, -0.690650714f, 0.724247083f, -0.689540545f, 0.725303972f, -0.688428753f, 0.726359155f, -0.687315341f, 0.727412629f, -0.686200312f, 0.728464390f, -0.685083668f, 0.729514438f, -0.683965412f, 0.730562769f, -0.682845546f, 0.731609381f, -0.681724074f, 0.732654272f, -0.680600998f, 0.733697438f, -0.679476320f, 0.734738878f, -0.678350043f, 0.735778589f, -0.677222170f, 0.736816569f, -0.676092704f, 0.737852815f, -0.674961646f, 0.738887324f, -0.673829000f, 0.739920095f, -0.672694769f, 0.740951125f, -0.671558955f, 0.741980412f, -0.670421560f, 0.743007952f, -0.669282588f, 0.744033744f, -0.668142041f, 0.745057785f, -0.666999922f, 0.746080074f, -0.665856234f, 0.747100606f, -0.664710978f, 0.748119380f, -0.663564159f, 0.749136395f, -0.662415778f, 0.750151646f, -0.661265838f, 0.751165132f, -0.660114342f, 0.752176850f, -0.658961293f, 0.753186799f, -0.657806693f, 0.754194975f, -0.656650546f, 0.755201377f, -0.655492853f, 0.756206001f, -0.654333618f, 0.757208847f, -0.653172843f, 0.758209910f, -0.652010531f, 0.759209189f, -0.650846685f, 0.760206682f, -0.649681307f, 0.761202385f, -0.648514401f, 0.762196298f, -0.647345969f, 0.763188417f, -0.646176013f, 0.764178741f, -0.645004537f, 0.765167266f, -0.643831543f, 0.766153990f, -0.642657034f, 0.767138912f, -0.641481013f, 0.768122029f, -0.640303482f, 0.769103338f, -0.639124445f, 0.770082837f, -0.637943904f, 0.771060524f, -0.636761861f, 0.772036397f, -0.635578320f, 0.773010453f, -0.634393284f, 0.773982691f, -0.633206755f, 0.774953107f, -0.632018736f, 0.775921699f, -0.630829230f, 0.776888466f, -0.629638239f, 0.777853404f, -0.628445767f, 0.778816512f, -0.627251815f, 0.779777788f, -0.626056388f, 0.780737229f, -0.624859488f, 0.781694832f, -0.623661118f, 0.782650596f, -0.622461279f, 0.783604519f, -0.621259977f, 0.784556597f, -0.620057212f, 0.785506830f, -0.618852988f, 0.786455214f, -0.617647308f, 0.787401747f, -0.616440175f, 0.788346428f, -0.615231591f, 0.789289253f, -0.614021559f, 0.790230221f, -0.612810082f, 0.791169330f, -0.611597164f, 0.792106577f, -0.610382806f, 0.793041960f, -0.609167012f, 0.793975478f, -0.607949785f, 0.794907126f, -0.606731127f, 0.795836905f, -0.605511041f, 0.796764810f, -0.604289531f, 0.797690841f, -0.603066599f, 0.798614995f, -0.601842247f, 0.799537269f, -0.600616479f, 0.800457662f, -0.599389298f, 0.801376172f, -0.598160707f, 0.802292796f, -0.596930708f, 0.803207531f, -0.595699304f, 0.804120377f, -0.594466499f, 0.805031331f, -0.593232295f, 0.805940391f, -0.591996695f, 0.806847554f, -0.590759702f, 0.807752818f, -0.589521319f, 0.808656182f, -0.588281548f, 0.809557642f, -0.587040394f, 0.810457198f, -0.585797857f, 0.811354847f, -0.584553943f, 0.812250587f, -0.583308653f, 0.813144415f, -0.582061990f, 0.814036330f, -0.580813958f, 0.814926329f, -0.579564559f, 0.815814411f, -0.578313796f, 0.816700573f, -0.577061673f, 0.817584813f, -0.575808191f, 0.818467130f, -0.574553355f, 0.819347520f, -0.573297167f, 0.820225983f, -0.572039629f, 0.821102515f, -0.570780746f, 0.821977115f, -0.569520519f, 0.822849781f, -0.568258953f, 0.823720511f, -0.566996049f, 0.824589303f, -0.565731811f, 0.825456154f, -0.564466242f, 0.826321063f, -0.563199344f, 0.827184027f, -0.561931121f, 0.828045045f, -0.560661576f, 0.828904115f, -0.559390712f, 0.829761234f, -0.558118531f, 0.830616400f, -0.556845037f, 0.831469612f, -0.555570233f, 0.832320868f, -0.554294121f, 0.833170165f, -0.553016706f, 0.834017501f, -0.551737988f, 0.834862875f, -0.550457973f, 0.835706284f, -0.549176662f, 0.836547727f, -0.547894059f, 0.837387202f, -0.546610167f, 0.838224706f, -0.545324988f, 0.839060237f, -0.544038527f, 0.839893794f, -0.542750785f, 0.840725375f, -0.541461766f, 0.841554977f, -0.540171473f, 0.842382600f, -0.538879909f, 0.843208240f, -0.537587076f, 0.844031895f, -0.536292979f, 0.844853565f, -0.534997620f, 0.845673247f, -0.533701002f, 0.846490939f, -0.532403128f, 0.847306639f, -0.531104001f, 0.848120345f, -0.529803625f, 0.848932055f, -0.528502002f, 0.849741768f, -0.527199135f, 0.850549481f, -0.525895027f, 0.851355193f, -0.524589683f, 0.852158902f, -0.523283103f, 0.852960605f, -0.521975293f, 0.853760301f, -0.520666254f, 0.854557988f, -0.519355990f, 0.855353665f, -0.518044504f, 0.856147328f, -0.516731799f, 0.856938977f, -0.515417878f, 0.857728610f, -0.514102744f, 0.858516224f, -0.512786401f, 0.859301818f, -0.511468850f, 0.860085390f, -0.510150097f, 0.860866939f, -0.508830143f, 0.861646461f, -0.507508991f, 0.862423956f, -0.506186645f, 0.863199422f, -0.504863109f, 0.863972856f, -0.503538384f, 0.864744258f, -0.502212474f, 0.865513624f, -0.500885383f, 0.866280954f, -0.499557113f, 0.867046246f, -0.498227667f, 0.867809497f, -0.496897049f, 0.868570706f, -0.495565262f, 0.869329871f, -0.494232309f, 0.870086991f, -0.492898192f, 0.870842063f, -0.491562916f, 0.871595087f, -0.490226483f, 0.872346059f, -0.488888897f, 0.873094978f, -0.487550160f, 0.873841843f, -0.486210276f, 0.874586652f, -0.484869248f, 0.875329403f, -0.483527079f, 0.876070094f, -0.482183772f, 0.876808724f, -0.480839331f, 0.877545290f, -0.479493758f, 0.878279792f, -0.478147056f, 0.879012226f, -0.476799230f, 0.879742593f, -0.475450282f, 0.880470889f, -0.474100215f, 0.881197113f, -0.472749032f, 0.881921264f, -0.471396737f, 0.882643340f, -0.470043332f, 0.883363339f, -0.468688822f, 0.884081259f, -0.467333209f, 0.884797098f, -0.465976496f, 0.885510856f, -0.464618686f, 0.886222530f, -0.463259784f, 0.886932119f, -0.461899791f, 0.887639620f, -0.460538711f, 0.888345033f, -0.459176548f, 0.889048356f, -0.457813304f, 0.889749586f, -0.456448982f, 0.890448723f, -0.455083587f, 0.891145765f, -0.453717121f, 0.891840709f, -0.452349587f, 0.892533555f, -0.450980989f, 0.893224301f, -0.449611330f, 0.893912945f, -0.448240612f, 0.894599486f, -0.446868840f, 0.895283921f, -0.445496017f, 0.895966250f, -0.444122145f, 0.896646470f, -0.442747228f, 0.897324581f, -0.441371269f, 0.898000580f, -0.439994271f, 0.898674466f, -0.438616239f, 0.899346237f, -0.437237174f, 0.900015892f, -0.435857080f, 0.900683429f, -0.434475961f, 0.901348847f, -0.433093819f, 0.902012144f, -0.431710658f, 0.902673318f, -0.430326481f, 0.903332368f, -0.428941292f, 0.903989293f, -0.427555093f, 0.904644091f, -0.426167889f, 0.905296759f, -0.424779681f, 0.905947298f, -0.423390474f, 0.906595705f, -0.422000271f, 0.907241978f, -0.420609074f, 0.907886116f, -0.419216888f, 0.908528119f, -0.417823716f, 0.909167983f, -0.416429560f, 0.909805708f, -0.415034424f, 0.910441292f, -0.413638312f, 0.911074734f, -0.412241227f, 0.911706032f, -0.410843171f, 0.912335185f, -0.409444149f, 0.912962190f, -0.408044163f, 0.913587048f, -0.406643217f, 0.914209756f, -0.405241314f, 0.914830312f, -0.403838458f, 0.915448716f, -0.402434651f, 0.916064966f, -0.401029897f, 0.916679060f, -0.399624200f, 0.917290997f, -0.398217562f, 0.917900776f, -0.396809987f, 0.918508394f, -0.395401479f, 0.919113852f, -0.393992040f, 0.919717146f, -0.392581674f, 0.920318277f, -0.391170384f, 0.920917242f, -0.389758174f, 0.921514039f, -0.388345047f, 0.922108669f, -0.386931006f, 0.922701128f, -0.385516054f, 0.923291417f, -0.384100195f, 0.923879533f, -0.382683432f, 0.924465474f, -0.381265769f, 0.925049241f, -0.379847209f, 0.925630831f, -0.378427755f, 0.926210242f, -0.377007410f, 0.926787474f, -0.375586178f, 0.927362526f, -0.374164063f, 0.927935395f, -0.372741067f, 0.928506080f, -0.371317194f, 0.929074581f, -0.369892447f, 0.929640896f, -0.368466830f, 0.930205023f, -0.367040346f, 0.930766961f, -0.365612998f, 0.931326709f, -0.364184790f, 0.931884266f, -0.362755724f, 0.932439629f, -0.361325806f, 0.932992799f, -0.359895037f, 0.933543773f, -0.358463421f, 0.934092550f, -0.357030961f, 0.934639130f, -0.355597662f, 0.935183510f, -0.354163525f, 0.935725689f, -0.352728556f, 0.936265667f, -0.351292756f, 0.936803442f, -0.349856130f, 0.937339012f, -0.348418680f, 0.937872376f, -0.346980411f, 0.938403534f, -0.345541325f, 0.938932484f, -0.344101426f, 0.939459224f, -0.342660717f, 0.939983753f, -0.341219202f, 0.940506071f, -0.339776884f, 0.941026175f, -0.338333767f, 0.941544065f, -0.336889853f, 0.942059740f, -0.335445147f, 0.942573198f, -0.333999651f, 0.943084437f, -0.332553370f, 0.943593458f, -0.331106306f, 0.944100258f, -0.329658463f, 0.944604837f, -0.328209844f, 0.945107193f, -0.326760452f, 0.945607325f, -0.325310292f, 0.946105232f, -0.323859367f, 0.946600913f, -0.322407679f, 0.947094366f, -0.320955232f, 0.947585591f, -0.319502031f, 0.948074586f, -0.318048077f, 0.948561350f, -0.316593376f, 0.949045882f, -0.315137929f, 0.949528181f, -0.313681740f, 0.950008245f, -0.312224814f, 0.950486074f, -0.310767153f, 0.950961666f, -0.309308760f, 0.951435021f, -0.307849640f, 0.951906137f, -0.306389795f, 0.952375013f, -0.304929230f, 0.952841648f, -0.303467947f, 0.953306040f, -0.302005949f, 0.953768190f, -0.300543241f, 0.954228095f, -0.299079826f, 0.954685755f, -0.297615707f, 0.955141168f, -0.296150888f, 0.955594334f, -0.294685372f, 0.956045251f, -0.293219163f, 0.956493919f, -0.291752263f, 0.956940336f, -0.290284677f, 0.957384501f, -0.288816408f, 0.957826413f, -0.287347460f, 0.958266071f, -0.285877835f, 0.958703475f, -0.284407537f, 0.959138622f, -0.282936570f, 0.959571513f, -0.281464938f, 0.960002146f, -0.279992643f, 0.960430519f, -0.278519689f, 0.960856633f, -0.277046080f, 0.961280486f, -0.275571819f, 0.961702077f, -0.274096910f, 0.962121404f, -0.272621355f, 0.962538468f, -0.271145160f, 0.962953267f, -0.269668326f, 0.963365800f, -0.268190857f, 0.963776066f, -0.266712757f, 0.964184064f, -0.265234030f, 0.964589793f, -0.263754679f, 0.964993253f, -0.262274707f, 0.965394442f, -0.260794118f, 0.965793359f, -0.259312915f, 0.966190003f, -0.257831102f, 0.966584374f, -0.256348682f, 0.966976471f, -0.254865660f, 0.967366292f, -0.253382037f, 0.967753837f, -0.251897818f, 0.968139105f, -0.250413007f, 0.968522094f, -0.248927606f, 0.968902805f, -0.247441619f, 0.969281235f, -0.245955050f, 0.969657385f, -0.244467903f, 0.970031253f, -0.242980180f, 0.970402839f, -0.241491885f, 0.970772141f, -0.240003022f, 0.971139158f, -0.238513595f, 0.971503891f, -0.237023606f, 0.971866337f, -0.235533059f, 0.972226497f, -0.234041959f, 0.972584369f, -0.232550307f, 0.972939952f, -0.231058108f, 0.973293246f, -0.229565366f, 0.973644250f, -0.228072083f, 0.973992962f, -0.226578264f, 0.974339383f, -0.225083911f, 0.974683511f, -0.223589029f, 0.975025345f, -0.222093621f, 0.975364885f, -0.220597690f, 0.975702130f, -0.219101240f, 0.976037079f, -0.217604275f, 0.976369731f, -0.216106797f, 0.976700086f, -0.214608811f, 0.977028143f, -0.213110320f, 0.977353900f, -0.211611327f, 0.977677358f, -0.210111837f, 0.977998515f, -0.208611852f, 0.978317371f, -0.207111376f, 0.978633924f, -0.205610413f, 0.978948175f, -0.204108966f, 0.979260123f, -0.202607039f, 0.979569766f, -0.201104635f, 0.979877104f, -0.199601758f, 0.980182136f, -0.198098411f, 0.980484862f, -0.196594598f, 0.980785280f, -0.195090322f, 0.981083391f, -0.193585587f, 0.981379193f, -0.192080397f, 0.981672686f, -0.190574755f, 0.981963869f, -0.189068664f, 0.982252741f, -0.187562129f, 0.982539302f, -0.186055152f, 0.982823551f, -0.184547737f, 0.983105487f, -0.183039888f, 0.983385110f, -0.181531608f, 0.983662419f, -0.180022901f, 0.983937413f, -0.178513771f, 0.984210092f, -0.177004220f, 0.984480455f, -0.175494253f, 0.984748502f, -0.173983873f, 0.985014231f, -0.172473084f, 0.985277642f, -0.170961889f, 0.985538735f, -0.169450291f, 0.985797509f, -0.167938295f, 0.986053963f, -0.166425904f, 0.986308097f, -0.164913120f, 0.986559910f, -0.163399949f, 0.986809402f, -0.161886394f, 0.987056571f, -0.160372457f, 0.987301418f, -0.158858143f, 0.987543942f, -0.157343456f, 0.987784142f, -0.155828398f, 0.988022017f, -0.154312973f, 0.988257568f, -0.152797185f, 0.988490793f, -0.151281038f, 0.988721692f, -0.149764535f, 0.988950265f, -0.148247679f, 0.989176510f, -0.146730474f, 0.989400428f, -0.145212925f, 0.989622017f, -0.143695033f, 0.989841278f, -0.142176804f, 0.990058210f, -0.140658239f, 0.990272812f, -0.139139344f, 0.990485084f, -0.137620122f, 0.990695025f, -0.136100575f, 0.990902635f, -0.134580709f, 0.991107914f, -0.133060525f, 0.991310860f, -0.131540029f, 0.991511473f, -0.130019223f, 0.991709754f, -0.128498111f, 0.991905700f, -0.126976696f, 0.992099313f, -0.125454983f, 0.992290591f, -0.123932975f, 0.992479535f, -0.122410675f, 0.992666142f, -0.120888087f, 0.992850414f, -0.119365215f, 0.993032350f, -0.117842062f, 0.993211949f, -0.116318631f, 0.993389211f, -0.114794927f, 0.993564136f, -0.113270952f, 0.993736722f, -0.111746711f, 0.993906970f, -0.110222207f, 0.994074879f, -0.108697444f, 0.994240449f, -0.107172425f, 0.994403680f, -0.105647154f, 0.994564571f, -0.104121634f, 0.994723121f, -0.102595869f, 0.994879331f, -0.101069863f, 0.995033199f, -0.099543619f, 0.995184727f, -0.098017140f, 0.995333912f, -0.096490431f, 0.995480755f, -0.094963495f, 0.995625256f, -0.093436336f, 0.995767414f, -0.091908956f, 0.995907229f, -0.090381361f, 0.996044701f, -0.088853553f, 0.996179829f, -0.087325535f, 0.996312612f, -0.085797312f, 0.996443051f, -0.084268888f, 0.996571146f, -0.082740265f, 0.996696895f, -0.081211447f, 0.996820299f, -0.079682438f, 0.996941358f, -0.078153242f, 0.997060070f, -0.076623861f, 0.997176437f, -0.075094301f, 0.997290457f, -0.073564564f, 0.997402130f, -0.072034653f, 0.997511456f, -0.070504573f, 0.997618435f, -0.068974328f, 0.997723067f, -0.067443920f, 0.997825350f, -0.065913353f, 0.997925286f, -0.064382631f, 0.998022874f, -0.062851758f, 0.998118113f, -0.061320736f, 0.998211003f, -0.059789571f, 0.998301545f, -0.058258265f, 0.998389737f, -0.056726821f, 0.998475581f, -0.055195244f, 0.998559074f, -0.053663538f, 0.998640218f, -0.052131705f, 0.998719012f, -0.050599749f, 0.998795456f, -0.049067674f, 0.998869550f, -0.047535484f, 0.998941293f, -0.046003182f, 0.999010686f, -0.044470772f, 0.999077728f, -0.042938257f, 0.999142419f, -0.041405641f, 0.999204759f, -0.039872928f, 0.999264747f, -0.038340120f, 0.999322385f, -0.036807223f, 0.999377670f, -0.035274239f, 0.999430605f, -0.033741172f, 0.999481187f, -0.032208025f, 0.999529418f, -0.030674803f, 0.999575296f, -0.029141509f, 0.999618822f, -0.027608146f, 0.999659997f, -0.026074718f, 0.999698819f, -0.024541229f, 0.999735288f, -0.023007681f, 0.999769405f, -0.021474080f, 0.999801170f, -0.019940429f, 0.999830582f, -0.018406730f, 0.999857641f, -0.016872988f, 0.999882347f, -0.015339206f, 0.999904701f, -0.013805389f, 0.999924702f, -0.012271538f, 0.999942350f, -0.010737659f, 0.999957645f, -0.009203755f, 0.999970586f, -0.007669829f, 0.999981175f, -0.006135885f, 0.999989411f, -0.004601926f, 0.999995294f, -0.003067957f, 0.999998823f, -0.001533980f }; /** @brief Q31 Twiddle factors Table */ /** @par Example code for Q31 Twiddle factors Generation:: @par
 for(i = 0; i< 3N/4; i++)
  {
     twiddleCoefQ31[2*i]   = cos(i * 2*PI/(float)N);
     twiddleCoefQ31[2*i+1] = sin(i * 2*PI/(float)N);
  } 
@par where N = 16, PI = 3.14159265358979 @par Cos and Sin values are interleaved fashion @par Convert Floating point to Q31(Fixed point 1.31): round(twiddleCoefQ31(i) * pow(2, 31)) */ const q31_t twiddleCoef_16_q31[24] ARM_DSP_TABLE_ATTRIBUTE = { (q31_t)0x7FFFFFFF, (q31_t)0x00000000, (q31_t)0x7641AF3C, (q31_t)0x30FBC54D, (q31_t)0x5A82799A, (q31_t)0x5A82799A, (q31_t)0x30FBC54D, (q31_t)0x7641AF3C, (q31_t)0x00000000, (q31_t)0x7FFFFFFF, (q31_t)0xCF043AB2, (q31_t)0x7641AF3C, (q31_t)0xA57D8666, (q31_t)0x5A82799A, (q31_t)0x89BE50C3, (q31_t)0x30FBC54D, (q31_t)0x80000000, (q31_t)0x00000000, (q31_t)0x89BE50C3, (q31_t)0xCF043AB2, (q31_t)0xA57D8666, (q31_t)0xA57D8666, (q31_t)0xCF043AB2, (q31_t)0x89BE50C3 }; /** @par Example code for Q31 Twiddle factors Generation:: @par
for (i = 0; i< 3N/4; i++)
  {
     twiddleCoefQ31[2*i]   = cos(i * 2*PI/(float)N);
     twiddleCoefQ31[2*i+1] = sin(i * 2*PI/(float)N);
  } 
@par where N = 32, PI = 3.14159265358979 @par Cos and Sin values are interleaved fashion @par Convert Floating point to Q31(Fixed point 1.31): round(twiddleCoefQ31(i) * pow(2, 31)) */ const q31_t twiddleCoef_32_q31[48] ARM_DSP_TABLE_ATTRIBUTE = { (q31_t)0x7FFFFFFF, (q31_t)0x00000000, (q31_t)0x7D8A5F3F, (q31_t)0x18F8B83C, (q31_t)0x7641AF3C, (q31_t)0x30FBC54D, (q31_t)0x6A6D98A4, (q31_t)0x471CECE6, (q31_t)0x5A82799A, (q31_t)0x5A82799A, (q31_t)0x471CECE6, (q31_t)0x6A6D98A4, (q31_t)0x30FBC54D, (q31_t)0x7641AF3C, (q31_t)0x18F8B83C, (q31_t)0x7D8A5F3F, (q31_t)0x00000000, (q31_t)0x7FFFFFFF, (q31_t)0xE70747C3, (q31_t)0x7D8A5F3F, (q31_t)0xCF043AB2, (q31_t)0x7641AF3C, (q31_t)0xB8E31319, (q31_t)0x6A6D98A4, (q31_t)0xA57D8666, (q31_t)0x5A82799A, (q31_t)0x9592675B, (q31_t)0x471CECE6, (q31_t)0x89BE50C3, (q31_t)0x30FBC54D, (q31_t)0x8275A0C0, (q31_t)0x18F8B83C, (q31_t)0x80000000, (q31_t)0x00000000, (q31_t)0x8275A0C0, (q31_t)0xE70747C3, (q31_t)0x89BE50C3, (q31_t)0xCF043AB2, (q31_t)0x9592675B, (q31_t)0xB8E31319, (q31_t)0xA57D8666, (q31_t)0xA57D8666, (q31_t)0xB8E31319, (q31_t)0x9592675B, (q31_t)0xCF043AB2, (q31_t)0x89BE50C3, (q31_t)0xE70747C3, (q31_t)0x8275A0C0 }; /** @par Example code for Q31 Twiddle factors Generation:: @par
for (i = 0; i< 3N/4; i++)
  {
     twiddleCoefQ31[2*i]   = cos(i * 2*PI/(float)N);
     twiddleCoefQ31[2*i+1] = sin(i * 2*PI/(float)N);
  } 
@par where N = 64, PI = 3.14159265358979 @par Cos and Sin values are interleaved fashion @par Convert Floating point to Q31(Fixed point 1.31): round(twiddleCoefQ31(i) * pow(2, 31)) */ const q31_t twiddleCoef_64_q31[96] ARM_DSP_TABLE_ATTRIBUTE = { (q31_t)0x7FFFFFFF, (q31_t)0x00000000, (q31_t)0x7F62368F, (q31_t)0x0C8BD35E, (q31_t)0x7D8A5F3F, (q31_t)0x18F8B83C, (q31_t)0x7A7D055B, (q31_t)0x25280C5D, (q31_t)0x7641AF3C, (q31_t)0x30FBC54D, (q31_t)0x70E2CBC6, (q31_t)0x3C56BA70, (q31_t)0x6A6D98A4, (q31_t)0x471CECE6, (q31_t)0x62F201AC, (q31_t)0x5133CC94, (q31_t)0x5A82799A, (q31_t)0x5A82799A, (q31_t)0x5133CC94, (q31_t)0x62F201AC, (q31_t)0x471CECE6, (q31_t)0x6A6D98A4, (q31_t)0x3C56BA70, (q31_t)0x70E2CBC6, (q31_t)0x30FBC54D, (q31_t)0x7641AF3C, (q31_t)0x25280C5D, (q31_t)0x7A7D055B, (q31_t)0x18F8B83C, (q31_t)0x7D8A5F3F, (q31_t)0x0C8BD35E, (q31_t)0x7F62368F, (q31_t)0x00000000, (q31_t)0x7FFFFFFF, (q31_t)0xF3742CA1, (q31_t)0x7F62368F, (q31_t)0xE70747C3, (q31_t)0x7D8A5F3F, (q31_t)0xDAD7F3A2, (q31_t)0x7A7D055B, (q31_t)0xCF043AB2, (q31_t)0x7641AF3C, (q31_t)0xC3A9458F, (q31_t)0x70E2CBC6, (q31_t)0xB8E31319, (q31_t)0x6A6D98A4, (q31_t)0xAECC336B, (q31_t)0x62F201AC, (q31_t)0xA57D8666, (q31_t)0x5A82799A, (q31_t)0x9D0DFE53, (q31_t)0x5133CC94, (q31_t)0x9592675B, (q31_t)0x471CECE6, (q31_t)0x8F1D343A, (q31_t)0x3C56BA70, (q31_t)0x89BE50C3, (q31_t)0x30FBC54D, (q31_t)0x8582FAA4, (q31_t)0x25280C5D, (q31_t)0x8275A0C0, (q31_t)0x18F8B83C, (q31_t)0x809DC970, (q31_t)0x0C8BD35E, (q31_t)0x80000000, (q31_t)0x00000000, (q31_t)0x809DC970, (q31_t)0xF3742CA1, (q31_t)0x8275A0C0, (q31_t)0xE70747C3, (q31_t)0x8582FAA4, (q31_t)0xDAD7F3A2, (q31_t)0x89BE50C3, (q31_t)0xCF043AB2, (q31_t)0x8F1D343A, (q31_t)0xC3A9458F, (q31_t)0x9592675B, (q31_t)0xB8E31319, (q31_t)0x9D0DFE53, (q31_t)0xAECC336B, (q31_t)0xA57D8666, (q31_t)0xA57D8666, (q31_t)0xAECC336B, (q31_t)0x9D0DFE53, (q31_t)0xB8E31319, (q31_t)0x9592675B, (q31_t)0xC3A9458F, (q31_t)0x8F1D343A, (q31_t)0xCF043AB2, (q31_t)0x89BE50C3, (q31_t)0xDAD7F3A2, (q31_t)0x8582FAA4, (q31_t)0xE70747C3, (q31_t)0x8275A0C0, (q31_t)0xF3742CA1, (q31_t)0x809DC970 }; /** @par Example code for Q31 Twiddle factors Generation:: @par
for (i = 0; i < 3N/4; i++)
  {
     twiddleCoefQ31[2*i]   = cos(i * 2*PI/(float)N);
     twiddleCoefQ31[2*i+1] = sin(i * 2*PI/(float)N);
  } 
@par where N = 128, PI = 3.14159265358979 @par Cos and Sin values are interleaved fashion @par Convert Floating point to Q31(Fixed point 1.31): round(twiddleCoefQ31(i) * pow(2, 31)) */ const q31_t twiddleCoef_128_q31[192] ARM_DSP_TABLE_ATTRIBUTE = { (q31_t)0x7FFFFFFF, (q31_t)0x00000000, (q31_t)0x7FD8878D, (q31_t)0x0647D97C, (q31_t)0x7F62368F, (q31_t)0x0C8BD35E, (q31_t)0x7E9D55FC, (q31_t)0x12C8106E, (q31_t)0x7D8A5F3F, (q31_t)0x18F8B83C, (q31_t)0x7C29FBEE, (q31_t)0x1F19F97B, (q31_t)0x7A7D055B, (q31_t)0x25280C5D, (q31_t)0x78848413, (q31_t)0x2B1F34EB, (q31_t)0x7641AF3C, (q31_t)0x30FBC54D, (q31_t)0x73B5EBD0, (q31_t)0x36BA2013, (q31_t)0x70E2CBC6, (q31_t)0x3C56BA70, (q31_t)0x6DCA0D14, (q31_t)0x41CE1E64, (q31_t)0x6A6D98A4, (q31_t)0x471CECE6, (q31_t)0x66CF811F, (q31_t)0x4C3FDFF3, (q31_t)0x62F201AC, (q31_t)0x5133CC94, (q31_t)0x5ED77C89, (q31_t)0x55F5A4D2, (q31_t)0x5A82799A, (q31_t)0x5A82799A, (q31_t)0x55F5A4D2, (q31_t)0x5ED77C89, (q31_t)0x5133CC94, (q31_t)0x62F201AC, (q31_t)0x4C3FDFF3, (q31_t)0x66CF811F, (q31_t)0x471CECE6, (q31_t)0x6A6D98A4, (q31_t)0x41CE1E64, (q31_t)0x6DCA0D14, (q31_t)0x3C56BA70, (q31_t)0x70E2CBC6, (q31_t)0x36BA2013, (q31_t)0x73B5EBD0, (q31_t)0x30FBC54D, (q31_t)0x7641AF3C, (q31_t)0x2B1F34EB, (q31_t)0x78848413, (q31_t)0x25280C5D, (q31_t)0x7A7D055B, (q31_t)0x1F19F97B, (q31_t)0x7C29FBEE, (q31_t)0x18F8B83C, (q31_t)0x7D8A5F3F, (q31_t)0x12C8106E, (q31_t)0x7E9D55FC, (q31_t)0x0C8BD35E, (q31_t)0x7F62368F, (q31_t)0x0647D97C, (q31_t)0x7FD8878D, (q31_t)0x00000000, (q31_t)0x7FFFFFFF, (q31_t)0xF9B82683, (q31_t)0x7FD8878D, (q31_t)0xF3742CA1, (q31_t)0x7F62368F, (q31_t)0xED37EF91, (q31_t)0x7E9D55FC, (q31_t)0xE70747C3, (q31_t)0x7D8A5F3F, (q31_t)0xE0E60684, (q31_t)0x7C29FBEE, (q31_t)0xDAD7F3A2, (q31_t)0x7A7D055B, (q31_t)0xD4E0CB14, (q31_t)0x78848413, (q31_t)0xCF043AB2, (q31_t)0x7641AF3C, (q31_t)0xC945DFEC, (q31_t)0x73B5EBD0, (q31_t)0xC3A9458F, (q31_t)0x70E2CBC6, (q31_t)0xBE31E19B, (q31_t)0x6DCA0D14, (q31_t)0xB8E31319, (q31_t)0x6A6D98A4, (q31_t)0xB3C0200C, (q31_t)0x66CF811F, (q31_t)0xAECC336B, (q31_t)0x62F201AC, (q31_t)0xAA0A5B2D, (q31_t)0x5ED77C89, (q31_t)0xA57D8666, (q31_t)0x5A82799A, (q31_t)0xA1288376, (q31_t)0x55F5A4D2, (q31_t)0x9D0DFE53, (q31_t)0x5133CC94, (q31_t)0x99307EE0, (q31_t)0x4C3FDFF3, (q31_t)0x9592675B, (q31_t)0x471CECE6, (q31_t)0x9235F2EB, (q31_t)0x41CE1E64, (q31_t)0x8F1D343A, (q31_t)0x3C56BA70, (q31_t)0x8C4A142F, (q31_t)0x36BA2013, (q31_t)0x89BE50C3, (q31_t)0x30FBC54D, (q31_t)0x877B7BEC, (q31_t)0x2B1F34EB, (q31_t)0x8582FAA4, (q31_t)0x25280C5D, (q31_t)0x83D60411, (q31_t)0x1F19F97B, (q31_t)0x8275A0C0, (q31_t)0x18F8B83C, (q31_t)0x8162AA03, (q31_t)0x12C8106E, (q31_t)0x809DC970, (q31_t)0x0C8BD35E, (q31_t)0x80277872, (q31_t)0x0647D97C, (q31_t)0x80000000, (q31_t)0x00000000, (q31_t)0x80277872, (q31_t)0xF9B82683, (q31_t)0x809DC970, (q31_t)0xF3742CA1, (q31_t)0x8162AA03, (q31_t)0xED37EF91, (q31_t)0x8275A0C0, (q31_t)0xE70747C3, (q31_t)0x83D60411, (q31_t)0xE0E60684, (q31_t)0x8582FAA4, (q31_t)0xDAD7F3A2, (q31_t)0x877B7BEC, (q31_t)0xD4E0CB14, (q31_t)0x89BE50C3, (q31_t)0xCF043AB2, (q31_t)0x8C4A142F, (q31_t)0xC945DFEC, (q31_t)0x8F1D343A, (q31_t)0xC3A9458F, (q31_t)0x9235F2EB, (q31_t)0xBE31E19B, (q31_t)0x9592675B, (q31_t)0xB8E31319, (q31_t)0x99307EE0, (q31_t)0xB3C0200C, (q31_t)0x9D0DFE53, (q31_t)0xAECC336B, (q31_t)0xA1288376, (q31_t)0xAA0A5B2D, (q31_t)0xA57D8666, (q31_t)0xA57D8666, (q31_t)0xAA0A5B2D, (q31_t)0xA1288376, (q31_t)0xAECC336B, (q31_t)0x9D0DFE53, (q31_t)0xB3C0200C, (q31_t)0x99307EE0, (q31_t)0xB8E31319, (q31_t)0x9592675B, (q31_t)0xBE31E19B, (q31_t)0x9235F2EB, (q31_t)0xC3A9458F, (q31_t)0x8F1D343A, (q31_t)0xC945DFEC, (q31_t)0x8C4A142F, (q31_t)0xCF043AB2, (q31_t)0x89BE50C3, (q31_t)0xD4E0CB14, (q31_t)0x877B7BEC, (q31_t)0xDAD7F3A2, (q31_t)0x8582FAA4, (q31_t)0xE0E60684, (q31_t)0x83D60411, (q31_t)0xE70747C3, (q31_t)0x8275A0C0, (q31_t)0xED37EF91, (q31_t)0x8162AA03, (q31_t)0xF3742CA1, (q31_t)0x809DC970, (q31_t)0xF9B82683, (q31_t)0x80277872 }; /** @par Example code for Q31 Twiddle factors Generation:: @par
for (i = 0; i< 3N/4; i++)
  {
     twiddleCoefQ31[2*i]   = cos(i * 2*PI/(float)N);
     twiddleCoefQ31[2*i+1] = sin(i * 2*PI/(float)N);
  } 
@par where N = 256, PI = 3.14159265358979 @par Cos and Sin values are interleaved fashion @par Convert Floating point to Q31(Fixed point 1.31): round(twiddleCoefQ31(i) * pow(2, 31)) */ const q31_t twiddleCoef_256_q31[384] ARM_DSP_TABLE_ATTRIBUTE = { (q31_t)0x7FFFFFFF, (q31_t)0x00000000, (q31_t)0x7FF62182, (q31_t)0x03242ABF, (q31_t)0x7FD8878D, (q31_t)0x0647D97C, (q31_t)0x7FA736B4, (q31_t)0x096A9049, (q31_t)0x7F62368F, (q31_t)0x0C8BD35E, (q31_t)0x7F0991C3, (q31_t)0x0FAB272B, (q31_t)0x7E9D55FC, (q31_t)0x12C8106E, (q31_t)0x7E1D93E9, (q31_t)0x15E21444, (q31_t)0x7D8A5F3F, (q31_t)0x18F8B83C, (q31_t)0x7CE3CEB1, (q31_t)0x1C0B826A, (q31_t)0x7C29FBEE, (q31_t)0x1F19F97B, (q31_t)0x7B5D039D, (q31_t)0x2223A4C5, (q31_t)0x7A7D055B, (q31_t)0x25280C5D, (q31_t)0x798A23B1, (q31_t)0x2826B928, (q31_t)0x78848413, (q31_t)0x2B1F34EB, (q31_t)0x776C4EDB, (q31_t)0x2E110A62, (q31_t)0x7641AF3C, (q31_t)0x30FBC54D, (q31_t)0x7504D345, (q31_t)0x33DEF287, (q31_t)0x73B5EBD0, (q31_t)0x36BA2013, (q31_t)0x72552C84, (q31_t)0x398CDD32, (q31_t)0x70E2CBC6, (q31_t)0x3C56BA70, (q31_t)0x6F5F02B1, (q31_t)0x3F1749B7, (q31_t)0x6DCA0D14, (q31_t)0x41CE1E64, (q31_t)0x6C242960, (q31_t)0x447ACD50, (q31_t)0x6A6D98A4, (q31_t)0x471CECE6, (q31_t)0x68A69E81, (q31_t)0x49B41533, (q31_t)0x66CF811F, (q31_t)0x4C3FDFF3, (q31_t)0x64E88926, (q31_t)0x4EBFE8A4, (q31_t)0x62F201AC, (q31_t)0x5133CC94, (q31_t)0x60EC3830, (q31_t)0x539B2AEF, (q31_t)0x5ED77C89, (q31_t)0x55F5A4D2, (q31_t)0x5CB420DF, (q31_t)0x5842DD54, (q31_t)0x5A82799A, (q31_t)0x5A82799A, (q31_t)0x5842DD54, (q31_t)0x5CB420DF, (q31_t)0x55F5A4D2, (q31_t)0x5ED77C89, (q31_t)0x539B2AEF, (q31_t)0x60EC3830, (q31_t)0x5133CC94, (q31_t)0x62F201AC, (q31_t)0x4EBFE8A4, (q31_t)0x64E88926, (q31_t)0x4C3FDFF3, (q31_t)0x66CF811F, (q31_t)0x49B41533, (q31_t)0x68A69E81, (q31_t)0x471CECE6, (q31_t)0x6A6D98A4, (q31_t)0x447ACD50, (q31_t)0x6C242960, (q31_t)0x41CE1E64, (q31_t)0x6DCA0D14, (q31_t)0x3F1749B7, (q31_t)0x6F5F02B1, (q31_t)0x3C56BA70, (q31_t)0x70E2CBC6, (q31_t)0x398CDD32, (q31_t)0x72552C84, (q31_t)0x36BA2013, (q31_t)0x73B5EBD0, (q31_t)0x33DEF287, (q31_t)0x7504D345, (q31_t)0x30FBC54D, (q31_t)0x7641AF3C, (q31_t)0x2E110A62, (q31_t)0x776C4EDB, (q31_t)0x2B1F34EB, (q31_t)0x78848413, (q31_t)0x2826B928, (q31_t)0x798A23B1, (q31_t)0x25280C5D, (q31_t)0x7A7D055B, (q31_t)0x2223A4C5, (q31_t)0x7B5D039D, (q31_t)0x1F19F97B, (q31_t)0x7C29FBEE, (q31_t)0x1C0B826A, (q31_t)0x7CE3CEB1, (q31_t)0x18F8B83C, (q31_t)0x7D8A5F3F, (q31_t)0x15E21444, (q31_t)0x7E1D93E9, (q31_t)0x12C8106E, (q31_t)0x7E9D55FC, (q31_t)0x0FAB272B, (q31_t)0x7F0991C3, (q31_t)0x0C8BD35E, (q31_t)0x7F62368F, (q31_t)0x096A9049, (q31_t)0x7FA736B4, (q31_t)0x0647D97C, (q31_t)0x7FD8878D, (q31_t)0x03242ABF, (q31_t)0x7FF62182, (q31_t)0x00000000, (q31_t)0x7FFFFFFF, (q31_t)0xFCDBD541, (q31_t)0x7FF62182, (q31_t)0xF9B82683, (q31_t)0x7FD8878D, (q31_t)0xF6956FB6, (q31_t)0x7FA736B4, (q31_t)0xF3742CA1, (q31_t)0x7F62368F, (q31_t)0xF054D8D4, (q31_t)0x7F0991C3, (q31_t)0xED37EF91, (q31_t)0x7E9D55FC, (q31_t)0xEA1DEBBB, (q31_t)0x7E1D93E9, (q31_t)0xE70747C3, (q31_t)0x7D8A5F3F, (q31_t)0xE3F47D95, (q31_t)0x7CE3CEB1, (q31_t)0xE0E60684, (q31_t)0x7C29FBEE, (q31_t)0xDDDC5B3A, (q31_t)0x7B5D039D, (q31_t)0xDAD7F3A2, (q31_t)0x7A7D055B, (q31_t)0xD7D946D7, (q31_t)0x798A23B1, (q31_t)0xD4E0CB14, (q31_t)0x78848413, (q31_t)0xD1EEF59E, (q31_t)0x776C4EDB, (q31_t)0xCF043AB2, (q31_t)0x7641AF3C, (q31_t)0xCC210D78, (q31_t)0x7504D345, (q31_t)0xC945DFEC, (q31_t)0x73B5EBD0, (q31_t)0xC67322CD, (q31_t)0x72552C84, (q31_t)0xC3A9458F, (q31_t)0x70E2CBC6, (q31_t)0xC0E8B648, (q31_t)0x6F5F02B1, (q31_t)0xBE31E19B, (q31_t)0x6DCA0D14, (q31_t)0xBB8532AF, (q31_t)0x6C242960, (q31_t)0xB8E31319, (q31_t)0x6A6D98A4, (q31_t)0xB64BEACC, (q31_t)0x68A69E81, (q31_t)0xB3C0200C, (q31_t)0x66CF811F, (q31_t)0xB140175B, (q31_t)0x64E88926, (q31_t)0xAECC336B, (q31_t)0x62F201AC, (q31_t)0xAC64D510, (q31_t)0x60EC3830, (q31_t)0xAA0A5B2D, (q31_t)0x5ED77C89, (q31_t)0xA7BD22AB, (q31_t)0x5CB420DF, (q31_t)0xA57D8666, (q31_t)0x5A82799A, (q31_t)0xA34BDF20, (q31_t)0x5842DD54, (q31_t)0xA1288376, (q31_t)0x55F5A4D2, (q31_t)0x9F13C7D0, (q31_t)0x539B2AEF, (q31_t)0x9D0DFE53, (q31_t)0x5133CC94, (q31_t)0x9B1776D9, (q31_t)0x4EBFE8A4, (q31_t)0x99307EE0, (q31_t)0x4C3FDFF3, (q31_t)0x9759617E, (q31_t)0x49B41533, (q31_t)0x9592675B, (q31_t)0x471CECE6, (q31_t)0x93DBD69F, (q31_t)0x447ACD50, (q31_t)0x9235F2EB, (q31_t)0x41CE1E64, (q31_t)0x90A0FD4E, (q31_t)0x3F1749B7, (q31_t)0x8F1D343A, (q31_t)0x3C56BA70, (q31_t)0x8DAAD37B, (q31_t)0x398CDD32, (q31_t)0x8C4A142F, (q31_t)0x36BA2013, (q31_t)0x8AFB2CBA, (q31_t)0x33DEF287, (q31_t)0x89BE50C3, (q31_t)0x30FBC54D, (q31_t)0x8893B124, (q31_t)0x2E110A62, (q31_t)0x877B7BEC, (q31_t)0x2B1F34EB, (q31_t)0x8675DC4E, (q31_t)0x2826B928, (q31_t)0x8582FAA4, (q31_t)0x25280C5D, (q31_t)0x84A2FC62, (q31_t)0x2223A4C5, (q31_t)0x83D60411, (q31_t)0x1F19F97B, (q31_t)0x831C314E, (q31_t)0x1C0B826A, (q31_t)0x8275A0C0, (q31_t)0x18F8B83C, (q31_t)0x81E26C16, (q31_t)0x15E21444, (q31_t)0x8162AA03, (q31_t)0x12C8106E, (q31_t)0x80F66E3C, (q31_t)0x0FAB272B, (q31_t)0x809DC970, (q31_t)0x0C8BD35E, (q31_t)0x8058C94C, (q31_t)0x096A9049, (q31_t)0x80277872, (q31_t)0x0647D97C, (q31_t)0x8009DE7D, (q31_t)0x03242ABF, (q31_t)0x80000000, (q31_t)0x00000000, (q31_t)0x8009DE7D, (q31_t)0xFCDBD541, (q31_t)0x80277872, (q31_t)0xF9B82683, (q31_t)0x8058C94C, (q31_t)0xF6956FB6, (q31_t)0x809DC970, (q31_t)0xF3742CA1, (q31_t)0x80F66E3C, (q31_t)0xF054D8D4, (q31_t)0x8162AA03, (q31_t)0xED37EF91, (q31_t)0x81E26C16, (q31_t)0xEA1DEBBB, (q31_t)0x8275A0C0, (q31_t)0xE70747C3, (q31_t)0x831C314E, (q31_t)0xE3F47D95, (q31_t)0x83D60411, (q31_t)0xE0E60684, (q31_t)0x84A2FC62, (q31_t)0xDDDC5B3A, (q31_t)0x8582FAA4, (q31_t)0xDAD7F3A2, (q31_t)0x8675DC4E, (q31_t)0xD7D946D7, (q31_t)0x877B7BEC, (q31_t)0xD4E0CB14, (q31_t)0x8893B124, (q31_t)0xD1EEF59E, (q31_t)0x89BE50C3, (q31_t)0xCF043AB2, (q31_t)0x8AFB2CBA, (q31_t)0xCC210D78, (q31_t)0x8C4A142F, (q31_t)0xC945DFEC, (q31_t)0x8DAAD37B, (q31_t)0xC67322CD, (q31_t)0x8F1D343A, (q31_t)0xC3A9458F, (q31_t)0x90A0FD4E, (q31_t)0xC0E8B648, (q31_t)0x9235F2EB, (q31_t)0xBE31E19B, (q31_t)0x93DBD69F, (q31_t)0xBB8532AF, (q31_t)0x9592675B, (q31_t)0xB8E31319, (q31_t)0x9759617E, (q31_t)0xB64BEACC, (q31_t)0x99307EE0, (q31_t)0xB3C0200C, (q31_t)0x9B1776D9, (q31_t)0xB140175B, (q31_t)0x9D0DFE53, (q31_t)0xAECC336B, (q31_t)0x9F13C7D0, (q31_t)0xAC64D510, (q31_t)0xA1288376, (q31_t)0xAA0A5B2D, (q31_t)0xA34BDF20, (q31_t)0xA7BD22AB, (q31_t)0xA57D8666, (q31_t)0xA57D8666, (q31_t)0xA7BD22AB, (q31_t)0xA34BDF20, (q31_t)0xAA0A5B2D, (q31_t)0xA1288376, (q31_t)0xAC64D510, (q31_t)0x9F13C7D0, (q31_t)0xAECC336B, (q31_t)0x9D0DFE53, (q31_t)0xB140175B, (q31_t)0x9B1776D9, (q31_t)0xB3C0200C, (q31_t)0x99307EE0, (q31_t)0xB64BEACC, (q31_t)0x9759617E, (q31_t)0xB8E31319, (q31_t)0x9592675B, (q31_t)0xBB8532AF, (q31_t)0x93DBD69F, (q31_t)0xBE31E19B, (q31_t)0x9235F2EB, (q31_t)0xC0E8B648, (q31_t)0x90A0FD4E, (q31_t)0xC3A9458F, (q31_t)0x8F1D343A, (q31_t)0xC67322CD, (q31_t)0x8DAAD37B, (q31_t)0xC945DFEC, (q31_t)0x8C4A142F, (q31_t)0xCC210D78, (q31_t)0x8AFB2CBA, (q31_t)0xCF043AB2, (q31_t)0x89BE50C3, (q31_t)0xD1EEF59E, (q31_t)0x8893B124, (q31_t)0xD4E0CB14, (q31_t)0x877B7BEC, (q31_t)0xD7D946D7, (q31_t)0x8675DC4E, (q31_t)0xDAD7F3A2, (q31_t)0x8582FAA4, (q31_t)0xDDDC5B3A, (q31_t)0x84A2FC62, (q31_t)0xE0E60684, (q31_t)0x83D60411, (q31_t)0xE3F47D95, (q31_t)0x831C314E, (q31_t)0xE70747C3, (q31_t)0x8275A0C0, (q31_t)0xEA1DEBBB, (q31_t)0x81E26C16, (q31_t)0xED37EF91, (q31_t)0x8162AA03, (q31_t)0xF054D8D4, (q31_t)0x80F66E3C, (q31_t)0xF3742CA1, (q31_t)0x809DC970, (q31_t)0xF6956FB6, (q31_t)0x8058C94C, (q31_t)0xF9B82683, (q31_t)0x80277872, (q31_t)0xFCDBD541, (q31_t)0x8009DE7D }; /** @par Example code for Q31 Twiddle factors Generation:: @par
for (i = 0; i< 3N/4; i++)
  {
     twiddleCoefQ31[2*i]   = cos(i * 2*PI/(float)N);
     twiddleCoefQ31[2*i+1] = sin(i * 2*PI/(float)N);
  } 
@par where N = 512, PI = 3.14159265358979 @par Cos and Sin values are interleaved fashion @par Convert Floating point to Q31(Fixed point 1.31): round(twiddleCoefQ31(i) * pow(2, 31)) */ const q31_t twiddleCoef_512_q31[768] ARM_DSP_TABLE_ATTRIBUTE = { (q31_t)0x7FFFFFFF, (q31_t)0x00000000, (q31_t)0x7FFD885A, (q31_t)0x01921D1F, (q31_t)0x7FF62182, (q31_t)0x03242ABF, (q31_t)0x7FE9CBC0, (q31_t)0x04B6195D, (q31_t)0x7FD8878D, (q31_t)0x0647D97C, (q31_t)0x7FC25596, (q31_t)0x07D95B9E, (q31_t)0x7FA736B4, (q31_t)0x096A9049, (q31_t)0x7F872BF3, (q31_t)0x0AFB6805, (q31_t)0x7F62368F, (q31_t)0x0C8BD35E, (q31_t)0x7F3857F5, (q31_t)0x0E1BC2E3, (q31_t)0x7F0991C3, (q31_t)0x0FAB272B, (q31_t)0x7ED5E5C6, (q31_t)0x1139F0CE, (q31_t)0x7E9D55FC, (q31_t)0x12C8106E, (q31_t)0x7E5FE493, (q31_t)0x145576B1, (q31_t)0x7E1D93E9, (q31_t)0x15E21444, (q31_t)0x7DD6668E, (q31_t)0x176DD9DE, (q31_t)0x7D8A5F3F, (q31_t)0x18F8B83C, (q31_t)0x7D3980EC, (q31_t)0x1A82A025, (q31_t)0x7CE3CEB1, (q31_t)0x1C0B826A, (q31_t)0x7C894BDD, (q31_t)0x1D934FE5, (q31_t)0x7C29FBEE, (q31_t)0x1F19F97B, (q31_t)0x7BC5E28F, (q31_t)0x209F701C, (q31_t)0x7B5D039D, (q31_t)0x2223A4C5, (q31_t)0x7AEF6323, (q31_t)0x23A6887E, (q31_t)0x7A7D055B, (q31_t)0x25280C5D, (q31_t)0x7A05EEAD, (q31_t)0x26A82185, (q31_t)0x798A23B1, (q31_t)0x2826B928, (q31_t)0x7909A92C, (q31_t)0x29A3C484, (q31_t)0x78848413, (q31_t)0x2B1F34EB, (q31_t)0x77FAB988, (q31_t)0x2C98FBBA, (q31_t)0x776C4EDB, (q31_t)0x2E110A62, (q31_t)0x76D94988, (q31_t)0x2F875262, (q31_t)0x7641AF3C, (q31_t)0x30FBC54D, (q31_t)0x75A585CF, (q31_t)0x326E54C7, (q31_t)0x7504D345, (q31_t)0x33DEF287, (q31_t)0x745F9DD1, (q31_t)0x354D9056, (q31_t)0x73B5EBD0, (q31_t)0x36BA2013, (q31_t)0x7307C3D0, (q31_t)0x382493B0, (q31_t)0x72552C84, (q31_t)0x398CDD32, (q31_t)0x719E2CD2, (q31_t)0x3AF2EEB7, (q31_t)0x70E2CBC6, (q31_t)0x3C56BA70, (q31_t)0x70231099, (q31_t)0x3DB832A5, (q31_t)0x6F5F02B1, (q31_t)0x3F1749B7, (q31_t)0x6E96A99C, (q31_t)0x4073F21D, (q31_t)0x6DCA0D14, (q31_t)0x41CE1E64, (q31_t)0x6CF934FB, (q31_t)0x4325C135, (q31_t)0x6C242960, (q31_t)0x447ACD50, (q31_t)0x6B4AF278, (q31_t)0x45CD358F, (q31_t)0x6A6D98A4, (q31_t)0x471CECE6, (q31_t)0x698C246C, (q31_t)0x4869E664, (q31_t)0x68A69E81, (q31_t)0x49B41533, (q31_t)0x67BD0FBC, (q31_t)0x4AFB6C97, (q31_t)0x66CF811F, (q31_t)0x4C3FDFF3, (q31_t)0x65DDFBD3, (q31_t)0x4D8162C4, (q31_t)0x64E88926, (q31_t)0x4EBFE8A4, (q31_t)0x63EF328F, (q31_t)0x4FFB654D, (q31_t)0x62F201AC, (q31_t)0x5133CC94, (q31_t)0x61F1003E, (q31_t)0x5269126E, (q31_t)0x60EC3830, (q31_t)0x539B2AEF, (q31_t)0x5FE3B38D, (q31_t)0x54CA0A4A, (q31_t)0x5ED77C89, (q31_t)0x55F5A4D2, (q31_t)0x5DC79D7C, (q31_t)0x571DEEF9, (q31_t)0x5CB420DF, (q31_t)0x5842DD54, (q31_t)0x5B9D1153, (q31_t)0x59646497, (q31_t)0x5A82799A, (q31_t)0x5A82799A, (q31_t)0x59646497, (q31_t)0x5B9D1153, (q31_t)0x5842DD54, (q31_t)0x5CB420DF, (q31_t)0x571DEEF9, (q31_t)0x5DC79D7C, (q31_t)0x55F5A4D2, (q31_t)0x5ED77C89, (q31_t)0x54CA0A4A, (q31_t)0x5FE3B38D, (q31_t)0x539B2AEF, (q31_t)0x60EC3830, (q31_t)0x5269126E, (q31_t)0x61F1003E, (q31_t)0x5133CC94, (q31_t)0x62F201AC, (q31_t)0x4FFB654D, (q31_t)0x63EF328F, (q31_t)0x4EBFE8A4, (q31_t)0x64E88926, (q31_t)0x4D8162C4, (q31_t)0x65DDFBD3, (q31_t)0x4C3FDFF3, (q31_t)0x66CF811F, (q31_t)0x4AFB6C97, (q31_t)0x67BD0FBC, (q31_t)0x49B41533, (q31_t)0x68A69E81, (q31_t)0x4869E664, (q31_t)0x698C246C, (q31_t)0x471CECE6, (q31_t)0x6A6D98A4, (q31_t)0x45CD358F, (q31_t)0x6B4AF278, (q31_t)0x447ACD50, (q31_t)0x6C242960, (q31_t)0x4325C135, (q31_t)0x6CF934FB, (q31_t)0x41CE1E64, (q31_t)0x6DCA0D14, (q31_t)0x4073F21D, (q31_t)0x6E96A99C, (q31_t)0x3F1749B7, (q31_t)0x6F5F02B1, (q31_t)0x3DB832A5, (q31_t)0x70231099, (q31_t)0x3C56BA70, (q31_t)0x70E2CBC6, (q31_t)0x3AF2EEB7, (q31_t)0x719E2CD2, (q31_t)0x398CDD32, (q31_t)0x72552C84, (q31_t)0x382493B0, (q31_t)0x7307C3D0, (q31_t)0x36BA2013, (q31_t)0x73B5EBD0, (q31_t)0x354D9056, (q31_t)0x745F9DD1, (q31_t)0x33DEF287, (q31_t)0x7504D345, (q31_t)0x326E54C7, (q31_t)0x75A585CF, (q31_t)0x30FBC54D, (q31_t)0x7641AF3C, (q31_t)0x2F875262, (q31_t)0x76D94988, (q31_t)0x2E110A62, (q31_t)0x776C4EDB, (q31_t)0x2C98FBBA, (q31_t)0x77FAB988, (q31_t)0x2B1F34EB, (q31_t)0x78848413, (q31_t)0x29A3C484, (q31_t)0x7909A92C, (q31_t)0x2826B928, (q31_t)0x798A23B1, (q31_t)0x26A82185, (q31_t)0x7A05EEAD, (q31_t)0x25280C5D, (q31_t)0x7A7D055B, (q31_t)0x23A6887E, (q31_t)0x7AEF6323, (q31_t)0x2223A4C5, (q31_t)0x7B5D039D, (q31_t)0x209F701C, (q31_t)0x7BC5E28F, (q31_t)0x1F19F97B, (q31_t)0x7C29FBEE, (q31_t)0x1D934FE5, (q31_t)0x7C894BDD, (q31_t)0x1C0B826A, (q31_t)0x7CE3CEB1, (q31_t)0x1A82A025, (q31_t)0x7D3980EC, (q31_t)0x18F8B83C, (q31_t)0x7D8A5F3F, (q31_t)0x176DD9DE, (q31_t)0x7DD6668E, (q31_t)0x15E21444, (q31_t)0x7E1D93E9, (q31_t)0x145576B1, (q31_t)0x7E5FE493, (q31_t)0x12C8106E, (q31_t)0x7E9D55FC, (q31_t)0x1139F0CE, (q31_t)0x7ED5E5C6, (q31_t)0x0FAB272B, (q31_t)0x7F0991C3, (q31_t)0x0E1BC2E3, (q31_t)0x7F3857F5, (q31_t)0x0C8BD35E, (q31_t)0x7F62368F, (q31_t)0x0AFB6805, (q31_t)0x7F872BF3, (q31_t)0x096A9049, (q31_t)0x7FA736B4, (q31_t)0x07D95B9E, (q31_t)0x7FC25596, (q31_t)0x0647D97C, (q31_t)0x7FD8878D, (q31_t)0x04B6195D, (q31_t)0x7FE9CBC0, (q31_t)0x03242ABF, (q31_t)0x7FF62182, (q31_t)0x01921D1F, (q31_t)0x7FFD885A, (q31_t)0x00000000, (q31_t)0x7FFFFFFF, (q31_t)0xFE6DE2E0, (q31_t)0x7FFD885A, (q31_t)0xFCDBD541, (q31_t)0x7FF62182, (q31_t)0xFB49E6A2, (q31_t)0x7FE9CBC0, (q31_t)0xF9B82683, (q31_t)0x7FD8878D, (q31_t)0xF826A461, (q31_t)0x7FC25596, (q31_t)0xF6956FB6, (q31_t)0x7FA736B4, (q31_t)0xF50497FA, (q31_t)0x7F872BF3, (q31_t)0xF3742CA1, (q31_t)0x7F62368F, (q31_t)0xF1E43D1C, (q31_t)0x7F3857F5, (q31_t)0xF054D8D4, (q31_t)0x7F0991C3, (q31_t)0xEEC60F31, (q31_t)0x7ED5E5C6, (q31_t)0xED37EF91, (q31_t)0x7E9D55FC, (q31_t)0xEBAA894E, (q31_t)0x7E5FE493, (q31_t)0xEA1DEBBB, (q31_t)0x7E1D93E9, (q31_t)0xE8922621, (q31_t)0x7DD6668E, (q31_t)0xE70747C3, (q31_t)0x7D8A5F3F, (q31_t)0xE57D5FDA, (q31_t)0x7D3980EC, (q31_t)0xE3F47D95, (q31_t)0x7CE3CEB1, (q31_t)0xE26CB01A, (q31_t)0x7C894BDD, (q31_t)0xE0E60684, (q31_t)0x7C29FBEE, (q31_t)0xDF608FE3, (q31_t)0x7BC5E28F, (q31_t)0xDDDC5B3A, (q31_t)0x7B5D039D, (q31_t)0xDC597781, (q31_t)0x7AEF6323, (q31_t)0xDAD7F3A2, (q31_t)0x7A7D055B, (q31_t)0xD957DE7A, (q31_t)0x7A05EEAD, (q31_t)0xD7D946D7, (q31_t)0x798A23B1, (q31_t)0xD65C3B7B, (q31_t)0x7909A92C, (q31_t)0xD4E0CB14, (q31_t)0x78848413, (q31_t)0xD3670445, (q31_t)0x77FAB988, (q31_t)0xD1EEF59E, (q31_t)0x776C4EDB, (q31_t)0xD078AD9D, (q31_t)0x76D94988, (q31_t)0xCF043AB2, (q31_t)0x7641AF3C, (q31_t)0xCD91AB38, (q31_t)0x75A585CF, (q31_t)0xCC210D78, (q31_t)0x7504D345, (q31_t)0xCAB26FA9, (q31_t)0x745F9DD1, (q31_t)0xC945DFEC, (q31_t)0x73B5EBD0, (q31_t)0xC7DB6C50, (q31_t)0x7307C3D0, (q31_t)0xC67322CD, (q31_t)0x72552C84, (q31_t)0xC50D1148, (q31_t)0x719E2CD2, (q31_t)0xC3A9458F, (q31_t)0x70E2CBC6, (q31_t)0xC247CD5A, (q31_t)0x70231099, (q31_t)0xC0E8B648, (q31_t)0x6F5F02B1, (q31_t)0xBF8C0DE2, (q31_t)0x6E96A99C, (q31_t)0xBE31E19B, (q31_t)0x6DCA0D14, (q31_t)0xBCDA3ECA, (q31_t)0x6CF934FB, (q31_t)0xBB8532AF, (q31_t)0x6C242960, (q31_t)0xBA32CA70, (q31_t)0x6B4AF278, (q31_t)0xB8E31319, (q31_t)0x6A6D98A4, (q31_t)0xB796199B, (q31_t)0x698C246C, (q31_t)0xB64BEACC, (q31_t)0x68A69E81, (q31_t)0xB5049368, (q31_t)0x67BD0FBC, (q31_t)0xB3C0200C, (q31_t)0x66CF811F, (q31_t)0xB27E9D3B, (q31_t)0x65DDFBD3, (q31_t)0xB140175B, (q31_t)0x64E88926, (q31_t)0xB0049AB2, (q31_t)0x63EF328F, (q31_t)0xAECC336B, (q31_t)0x62F201AC, (q31_t)0xAD96ED91, (q31_t)0x61F1003E, (q31_t)0xAC64D510, (q31_t)0x60EC3830, (q31_t)0xAB35F5B5, (q31_t)0x5FE3B38D, (q31_t)0xAA0A5B2D, (q31_t)0x5ED77C89, (q31_t)0xA8E21106, (q31_t)0x5DC79D7C, (q31_t)0xA7BD22AB, (q31_t)0x5CB420DF, (q31_t)0xA69B9B68, (q31_t)0x5B9D1153, (q31_t)0xA57D8666, (q31_t)0x5A82799A, (q31_t)0xA462EEAC, (q31_t)0x59646497, (q31_t)0xA34BDF20, (q31_t)0x5842DD54, (q31_t)0xA2386283, (q31_t)0x571DEEF9, (q31_t)0xA1288376, (q31_t)0x55F5A4D2, (q31_t)0xA01C4C72, (q31_t)0x54CA0A4A, (q31_t)0x9F13C7D0, (q31_t)0x539B2AEF, (q31_t)0x9E0EFFC1, (q31_t)0x5269126E, (q31_t)0x9D0DFE53, (q31_t)0x5133CC94, (q31_t)0x9C10CD70, (q31_t)0x4FFB654D, (q31_t)0x9B1776D9, (q31_t)0x4EBFE8A4, (q31_t)0x9A22042C, (q31_t)0x4D8162C4, (q31_t)0x99307EE0, (q31_t)0x4C3FDFF3, (q31_t)0x9842F043, (q31_t)0x4AFB6C97, (q31_t)0x9759617E, (q31_t)0x49B41533, (q31_t)0x9673DB94, (q31_t)0x4869E664, (q31_t)0x9592675B, (q31_t)0x471CECE6, (q31_t)0x94B50D87, (q31_t)0x45CD358F, (q31_t)0x93DBD69F, (q31_t)0x447ACD50, (q31_t)0x9306CB04, (q31_t)0x4325C135, (q31_t)0x9235F2EB, (q31_t)0x41CE1E64, (q31_t)0x91695663, (q31_t)0x4073F21D, (q31_t)0x90A0FD4E, (q31_t)0x3F1749B7, (q31_t)0x8FDCEF66, (q31_t)0x3DB832A5, (q31_t)0x8F1D343A, (q31_t)0x3C56BA70, (q31_t)0x8E61D32D, (q31_t)0x3AF2EEB7, (q31_t)0x8DAAD37B, (q31_t)0x398CDD32, (q31_t)0x8CF83C30, (q31_t)0x382493B0, (q31_t)0x8C4A142F, (q31_t)0x36BA2013, (q31_t)0x8BA0622F, (q31_t)0x354D9056, (q31_t)0x8AFB2CBA, (q31_t)0x33DEF287, (q31_t)0x8A5A7A30, (q31_t)0x326E54C7, (q31_t)0x89BE50C3, (q31_t)0x30FBC54D, (q31_t)0x8926B677, (q31_t)0x2F875262, (q31_t)0x8893B124, (q31_t)0x2E110A62, (q31_t)0x88054677, (q31_t)0x2C98FBBA, (q31_t)0x877B7BEC, (q31_t)0x2B1F34EB, (q31_t)0x86F656D3, (q31_t)0x29A3C484, (q31_t)0x8675DC4E, (q31_t)0x2826B928, (q31_t)0x85FA1152, (q31_t)0x26A82185, (q31_t)0x8582FAA4, (q31_t)0x25280C5D, (q31_t)0x85109CDC, (q31_t)0x23A6887E, (q31_t)0x84A2FC62, (q31_t)0x2223A4C5, (q31_t)0x843A1D70, (q31_t)0x209F701C, (q31_t)0x83D60411, (q31_t)0x1F19F97B, (q31_t)0x8376B422, (q31_t)0x1D934FE5, (q31_t)0x831C314E, (q31_t)0x1C0B826A, (q31_t)0x82C67F13, (q31_t)0x1A82A025, (q31_t)0x8275A0C0, (q31_t)0x18F8B83C, (q31_t)0x82299971, (q31_t)0x176DD9DE, (q31_t)0x81E26C16, (q31_t)0x15E21444, (q31_t)0x81A01B6C, (q31_t)0x145576B1, (q31_t)0x8162AA03, (q31_t)0x12C8106E, (q31_t)0x812A1A39, (q31_t)0x1139F0CE, (q31_t)0x80F66E3C, (q31_t)0x0FAB272B, (q31_t)0x80C7A80A, (q31_t)0x0E1BC2E3, (q31_t)0x809DC970, (q31_t)0x0C8BD35E, (q31_t)0x8078D40D, (q31_t)0x0AFB6805, (q31_t)0x8058C94C, (q31_t)0x096A9049, (q31_t)0x803DAA69, (q31_t)0x07D95B9E, (q31_t)0x80277872, (q31_t)0x0647D97C, (q31_t)0x80163440, (q31_t)0x04B6195D, (q31_t)0x8009DE7D, (q31_t)0x03242ABF, (q31_t)0x800277A5, (q31_t)0x01921D1F, (q31_t)0x80000000, (q31_t)0x00000000, (q31_t)0x800277A5, (q31_t)0xFE6DE2E0, (q31_t)0x8009DE7D, (q31_t)0xFCDBD541, (q31_t)0x80163440, (q31_t)0xFB49E6A2, (q31_t)0x80277872, (q31_t)0xF9B82683, (q31_t)0x803DAA69, (q31_t)0xF826A461, (q31_t)0x8058C94C, (q31_t)0xF6956FB6, (q31_t)0x8078D40D, (q31_t)0xF50497FA, (q31_t)0x809DC970, (q31_t)0xF3742CA1, (q31_t)0x80C7A80A, (q31_t)0xF1E43D1C, (q31_t)0x80F66E3C, (q31_t)0xF054D8D4, (q31_t)0x812A1A39, (q31_t)0xEEC60F31, (q31_t)0x8162AA03, (q31_t)0xED37EF91, (q31_t)0x81A01B6C, (q31_t)0xEBAA894E, (q31_t)0x81E26C16, (q31_t)0xEA1DEBBB, (q31_t)0x82299971, (q31_t)0xE8922621, (q31_t)0x8275A0C0, (q31_t)0xE70747C3, (q31_t)0x82C67F13, (q31_t)0xE57D5FDA, (q31_t)0x831C314E, (q31_t)0xE3F47D95, (q31_t)0x8376B422, (q31_t)0xE26CB01A, (q31_t)0x83D60411, (q31_t)0xE0E60684, (q31_t)0x843A1D70, (q31_t)0xDF608FE3, (q31_t)0x84A2FC62, (q31_t)0xDDDC5B3A, (q31_t)0x85109CDC, (q31_t)0xDC597781, (q31_t)0x8582FAA4, (q31_t)0xDAD7F3A2, (q31_t)0x85FA1152, (q31_t)0xD957DE7A, (q31_t)0x8675DC4E, (q31_t)0xD7D946D7, (q31_t)0x86F656D3, (q31_t)0xD65C3B7B, (q31_t)0x877B7BEC, (q31_t)0xD4E0CB14, (q31_t)0x88054677, (q31_t)0xD3670445, (q31_t)0x8893B124, (q31_t)0xD1EEF59E, (q31_t)0x8926B677, (q31_t)0xD078AD9D, (q31_t)0x89BE50C3, (q31_t)0xCF043AB2, (q31_t)0x8A5A7A30, (q31_t)0xCD91AB38, (q31_t)0x8AFB2CBA, (q31_t)0xCC210D78, (q31_t)0x8BA0622F, (q31_t)0xCAB26FA9, (q31_t)0x8C4A142F, (q31_t)0xC945DFEC, (q31_t)0x8CF83C30, (q31_t)0xC7DB6C50, (q31_t)0x8DAAD37B, (q31_t)0xC67322CD, (q31_t)0x8E61D32D, (q31_t)0xC50D1148, (q31_t)0x8F1D343A, (q31_t)0xC3A9458F, (q31_t)0x8FDCEF66, (q31_t)0xC247CD5A, (q31_t)0x90A0FD4E, (q31_t)0xC0E8B648, (q31_t)0x91695663, (q31_t)0xBF8C0DE2, (q31_t)0x9235F2EB, (q31_t)0xBE31E19B, (q31_t)0x9306CB04, (q31_t)0xBCDA3ECA, (q31_t)0x93DBD69F, (q31_t)0xBB8532AF, (q31_t)0x94B50D87, (q31_t)0xBA32CA70, (q31_t)0x9592675B, (q31_t)0xB8E31319, (q31_t)0x9673DB94, (q31_t)0xB796199B, (q31_t)0x9759617E, (q31_t)0xB64BEACC, (q31_t)0x9842F043, (q31_t)0xB5049368, (q31_t)0x99307EE0, (q31_t)0xB3C0200C, (q31_t)0x9A22042C, (q31_t)0xB27E9D3B, (q31_t)0x9B1776D9, (q31_t)0xB140175B, (q31_t)0x9C10CD70, (q31_t)0xB0049AB2, (q31_t)0x9D0DFE53, (q31_t)0xAECC336B, (q31_t)0x9E0EFFC1, (q31_t)0xAD96ED91, (q31_t)0x9F13C7D0, (q31_t)0xAC64D510, (q31_t)0xA01C4C72, (q31_t)0xAB35F5B5, (q31_t)0xA1288376, (q31_t)0xAA0A5B2D, (q31_t)0xA2386283, (q31_t)0xA8E21106, (q31_t)0xA34BDF20, (q31_t)0xA7BD22AB, (q31_t)0xA462EEAC, (q31_t)0xA69B9B68, (q31_t)0xA57D8666, (q31_t)0xA57D8666, (q31_t)0xA69B9B68, (q31_t)0xA462EEAC, (q31_t)0xA7BD22AB, (q31_t)0xA34BDF20, (q31_t)0xA8E21106, (q31_t)0xA2386283, (q31_t)0xAA0A5B2D, (q31_t)0xA1288376, (q31_t)0xAB35F5B5, (q31_t)0xA01C4C72, (q31_t)0xAC64D510, (q31_t)0x9F13C7D0, (q31_t)0xAD96ED91, (q31_t)0x9E0EFFC1, (q31_t)0xAECC336B, (q31_t)0x9D0DFE53, (q31_t)0xB0049AB2, (q31_t)0x9C10CD70, (q31_t)0xB140175B, (q31_t)0x9B1776D9, (q31_t)0xB27E9D3B, (q31_t)0x9A22042C, (q31_t)0xB3C0200C, (q31_t)0x99307EE0, (q31_t)0xB5049368, (q31_t)0x9842F043, (q31_t)0xB64BEACC, (q31_t)0x9759617E, (q31_t)0xB796199B, (q31_t)0x9673DB94, (q31_t)0xB8E31319, (q31_t)0x9592675B, (q31_t)0xBA32CA70, (q31_t)0x94B50D87, (q31_t)0xBB8532AF, (q31_t)0x93DBD69F, (q31_t)0xBCDA3ECA, (q31_t)0x9306CB04, (q31_t)0xBE31E19B, (q31_t)0x9235F2EB, (q31_t)0xBF8C0DE2, (q31_t)0x91695663, (q31_t)0xC0E8B648, (q31_t)0x90A0FD4E, (q31_t)0xC247CD5A, (q31_t)0x8FDCEF66, (q31_t)0xC3A9458F, (q31_t)0x8F1D343A, (q31_t)0xC50D1148, (q31_t)0x8E61D32D, (q31_t)0xC67322CD, (q31_t)0x8DAAD37B, (q31_t)0xC7DB6C50, (q31_t)0x8CF83C30, (q31_t)0xC945DFEC, (q31_t)0x8C4A142F, (q31_t)0xCAB26FA9, (q31_t)0x8BA0622F, (q31_t)0xCC210D78, (q31_t)0x8AFB2CBA, (q31_t)0xCD91AB38, (q31_t)0x8A5A7A30, (q31_t)0xCF043AB2, (q31_t)0x89BE50C3, (q31_t)0xD078AD9D, (q31_t)0x8926B677, (q31_t)0xD1EEF59E, (q31_t)0x8893B124, (q31_t)0xD3670445, (q31_t)0x88054677, (q31_t)0xD4E0CB14, (q31_t)0x877B7BEC, (q31_t)0xD65C3B7B, (q31_t)0x86F656D3, (q31_t)0xD7D946D7, (q31_t)0x8675DC4E, (q31_t)0xD957DE7A, (q31_t)0x85FA1152, (q31_t)0xDAD7F3A2, (q31_t)0x8582FAA4, (q31_t)0xDC597781, (q31_t)0x85109CDC, (q31_t)0xDDDC5B3A, (q31_t)0x84A2FC62, (q31_t)0xDF608FE3, (q31_t)0x843A1D70, (q31_t)0xE0E60684, (q31_t)0x83D60411, (q31_t)0xE26CB01A, (q31_t)0x8376B422, (q31_t)0xE3F47D95, (q31_t)0x831C314E, (q31_t)0xE57D5FDA, (q31_t)0x82C67F13, (q31_t)0xE70747C3, (q31_t)0x8275A0C0, (q31_t)0xE8922621, (q31_t)0x82299971, (q31_t)0xEA1DEBBB, (q31_t)0x81E26C16, (q31_t)0xEBAA894E, (q31_t)0x81A01B6C, (q31_t)0xED37EF91, (q31_t)0x8162AA03, (q31_t)0xEEC60F31, (q31_t)0x812A1A39, (q31_t)0xF054D8D4, (q31_t)0x80F66E3C, (q31_t)0xF1E43D1C, (q31_t)0x80C7A80A, (q31_t)0xF3742CA1, (q31_t)0x809DC970, (q31_t)0xF50497FA, (q31_t)0x8078D40D, (q31_t)0xF6956FB6, (q31_t)0x8058C94C, (q31_t)0xF826A461, (q31_t)0x803DAA69, (q31_t)0xF9B82683, (q31_t)0x80277872, (q31_t)0xFB49E6A2, (q31_t)0x80163440, (q31_t)0xFCDBD541, (q31_t)0x8009DE7D, (q31_t)0xFE6DE2E0, (q31_t)0x800277A5 }; /** @par Example code for Q31 Twiddle factors Generation:: @par
for (i = 0; i< 3N/4; i++)
  {
     twiddleCoefQ31[2*i]   = cos(i * 2*PI/(float)N);
     twiddleCoefQ31[2*i+1] = sin(i * 2*PI/(float)N);
  } 
@par where N = 1024, PI = 3.14159265358979 @par Cos and Sin values are interleaved fashion @par Convert Floating point to Q31(Fixed point 1.31): round(twiddleCoefQ31(i) * pow(2, 31)) */ const q31_t twiddleCoef_1024_q31[1536] ARM_DSP_TABLE_ATTRIBUTE = { (q31_t)0x7FFFFFFF, (q31_t)0x00000000, (q31_t)0x7FFF6216, (q31_t)0x00C90F88, (q31_t)0x7FFD885A, (q31_t)0x01921D1F, (q31_t)0x7FFA72D1, (q31_t)0x025B26D7, (q31_t)0x7FF62182, (q31_t)0x03242ABF, (q31_t)0x7FF09477, (q31_t)0x03ED26E6, (q31_t)0x7FE9CBC0, (q31_t)0x04B6195D, (q31_t)0x7FE1C76B, (q31_t)0x057F0034, (q31_t)0x7FD8878D, (q31_t)0x0647D97C, (q31_t)0x7FCE0C3E, (q31_t)0x0710A344, (q31_t)0x7FC25596, (q31_t)0x07D95B9E, (q31_t)0x7FB563B2, (q31_t)0x08A2009A, (q31_t)0x7FA736B4, (q31_t)0x096A9049, (q31_t)0x7F97CEBC, (q31_t)0x0A3308BC, (q31_t)0x7F872BF3, (q31_t)0x0AFB6805, (q31_t)0x7F754E7F, (q31_t)0x0BC3AC35, (q31_t)0x7F62368F, (q31_t)0x0C8BD35E, (q31_t)0x7F4DE450, (q31_t)0x0D53DB92, (q31_t)0x7F3857F5, (q31_t)0x0E1BC2E3, (q31_t)0x7F2191B4, (q31_t)0x0EE38765, (q31_t)0x7F0991C3, (q31_t)0x0FAB272B, (q31_t)0x7EF0585F, (q31_t)0x1072A047, (q31_t)0x7ED5E5C6, (q31_t)0x1139F0CE, (q31_t)0x7EBA3A39, (q31_t)0x120116D4, (q31_t)0x7E9D55FC, (q31_t)0x12C8106E, (q31_t)0x7E7F3956, (q31_t)0x138EDBB0, (q31_t)0x7E5FE493, (q31_t)0x145576B1, (q31_t)0x7E3F57FE, (q31_t)0x151BDF85, (q31_t)0x7E1D93E9, (q31_t)0x15E21444, (q31_t)0x7DFA98A7, (q31_t)0x16A81305, (q31_t)0x7DD6668E, (q31_t)0x176DD9DE, (q31_t)0x7DB0FDF7, (q31_t)0x183366E8, (q31_t)0x7D8A5F3F, (q31_t)0x18F8B83C, (q31_t)0x7D628AC5, (q31_t)0x19BDCBF2, (q31_t)0x7D3980EC, (q31_t)0x1A82A025, (q31_t)0x7D0F4218, (q31_t)0x1B4732EF, (q31_t)0x7CE3CEB1, (q31_t)0x1C0B826A, (q31_t)0x7CB72724, (q31_t)0x1CCF8CB3, (q31_t)0x7C894BDD, (q31_t)0x1D934FE5, (q31_t)0x7C5A3D4F, (q31_t)0x1E56CA1E, (q31_t)0x7C29FBEE, (q31_t)0x1F19F97B, (q31_t)0x7BF88830, (q31_t)0x1FDCDC1A, (q31_t)0x7BC5E28F, (q31_t)0x209F701C, (q31_t)0x7B920B89, (q31_t)0x2161B39F, (q31_t)0x7B5D039D, (q31_t)0x2223A4C5, (q31_t)0x7B26CB4F, (q31_t)0x22E541AE, (q31_t)0x7AEF6323, (q31_t)0x23A6887E, (q31_t)0x7AB6CBA3, (q31_t)0x24677757, (q31_t)0x7A7D055B, (q31_t)0x25280C5D, (q31_t)0x7A4210D8, (q31_t)0x25E845B5, (q31_t)0x7A05EEAD, (q31_t)0x26A82185, (q31_t)0x79C89F6D, (q31_t)0x27679DF4, (q31_t)0x798A23B1, (q31_t)0x2826B928, (q31_t)0x794A7C11, (q31_t)0x28E5714A, (q31_t)0x7909A92C, (q31_t)0x29A3C484, (q31_t)0x78C7ABA1, (q31_t)0x2A61B101, (q31_t)0x78848413, (q31_t)0x2B1F34EB, (q31_t)0x78403328, (q31_t)0x2BDC4E6F, (q31_t)0x77FAB988, (q31_t)0x2C98FBBA, (q31_t)0x77B417DF, (q31_t)0x2D553AFB, (q31_t)0x776C4EDB, (q31_t)0x2E110A62, (q31_t)0x77235F2D, (q31_t)0x2ECC681E, (q31_t)0x76D94988, (q31_t)0x2F875262, (q31_t)0x768E0EA5, (q31_t)0x3041C760, (q31_t)0x7641AF3C, (q31_t)0x30FBC54D, (q31_t)0x75F42C0A, (q31_t)0x31B54A5D, (q31_t)0x75A585CF, (q31_t)0x326E54C7, (q31_t)0x7555BD4B, (q31_t)0x3326E2C2, (q31_t)0x7504D345, (q31_t)0x33DEF287, (q31_t)0x74B2C883, (q31_t)0x3496824F, (q31_t)0x745F9DD1, (q31_t)0x354D9056, (q31_t)0x740B53FA, (q31_t)0x36041AD9, (q31_t)0x73B5EBD0, (q31_t)0x36BA2013, (q31_t)0x735F6626, (q31_t)0x376F9E46, (q31_t)0x7307C3D0, (q31_t)0x382493B0, (q31_t)0x72AF05A6, (q31_t)0x38D8FE93, (q31_t)0x72552C84, (q31_t)0x398CDD32, (q31_t)0x71FA3948, (q31_t)0x3A402DD1, (q31_t)0x719E2CD2, (q31_t)0x3AF2EEB7, (q31_t)0x71410804, (q31_t)0x3BA51E29, (q31_t)0x70E2CBC6, (q31_t)0x3C56BA70, (q31_t)0x708378FE, (q31_t)0x3D07C1D5, (q31_t)0x70231099, (q31_t)0x3DB832A5, (q31_t)0x6FC19385, (q31_t)0x3E680B2C, (q31_t)0x6F5F02B1, (q31_t)0x3F1749B7, (q31_t)0x6EFB5F12, (q31_t)0x3FC5EC97, (q31_t)0x6E96A99C, (q31_t)0x4073F21D, (q31_t)0x6E30E349, (q31_t)0x4121589A, (q31_t)0x6DCA0D14, (q31_t)0x41CE1E64, (q31_t)0x6D6227FA, (q31_t)0x427A41D0, (q31_t)0x6CF934FB, (q31_t)0x4325C135, (q31_t)0x6C8F351C, (q31_t)0x43D09AEC, (q31_t)0x6C242960, (q31_t)0x447ACD50, (q31_t)0x6BB812D0, (q31_t)0x452456BC, (q31_t)0x6B4AF278, (q31_t)0x45CD358F, (q31_t)0x6ADCC964, (q31_t)0x46756827, (q31_t)0x6A6D98A4, (q31_t)0x471CECE6, (q31_t)0x69FD614A, (q31_t)0x47C3C22E, (q31_t)0x698C246C, (q31_t)0x4869E664, (q31_t)0x6919E320, (q31_t)0x490F57EE, (q31_t)0x68A69E81, (q31_t)0x49B41533, (q31_t)0x683257AA, (q31_t)0x4A581C9D, (q31_t)0x67BD0FBC, (q31_t)0x4AFB6C97, (q31_t)0x6746C7D7, (q31_t)0x4B9E038F, (q31_t)0x66CF811F, (q31_t)0x4C3FDFF3, (q31_t)0x66573CBB, (q31_t)0x4CE10034, (q31_t)0x65DDFBD3, (q31_t)0x4D8162C4, (q31_t)0x6563BF92, (q31_t)0x4E210617, (q31_t)0x64E88926, (q31_t)0x4EBFE8A4, (q31_t)0x646C59BF, (q31_t)0x4F5E08E3, (q31_t)0x63EF328F, (q31_t)0x4FFB654D, (q31_t)0x637114CC, (q31_t)0x5097FC5E, (q31_t)0x62F201AC, (q31_t)0x5133CC94, (q31_t)0x6271FA69, (q31_t)0x51CED46E, (q31_t)0x61F1003E, (q31_t)0x5269126E, (q31_t)0x616F146B, (q31_t)0x53028517, (q31_t)0x60EC3830, (q31_t)0x539B2AEF, (q31_t)0x60686CCE, (q31_t)0x5433027D, (q31_t)0x5FE3B38D, (q31_t)0x54CA0A4A, (q31_t)0x5F5E0DB3, (q31_t)0x556040E2, (q31_t)0x5ED77C89, (q31_t)0x55F5A4D2, (q31_t)0x5E50015D, (q31_t)0x568A34A9, (q31_t)0x5DC79D7C, (q31_t)0x571DEEF9, (q31_t)0x5D3E5236, (q31_t)0x57B0D256, (q31_t)0x5CB420DF, (q31_t)0x5842DD54, (q31_t)0x5C290ACC, (q31_t)0x58D40E8C, (q31_t)0x5B9D1153, (q31_t)0x59646497, (q31_t)0x5B1035CF, (q31_t)0x59F3DE12, (q31_t)0x5A82799A, (q31_t)0x5A82799A, (q31_t)0x59F3DE12, (q31_t)0x5B1035CF, (q31_t)0x59646497, (q31_t)0x5B9D1153, (q31_t)0x58D40E8C, (q31_t)0x5C290ACC, (q31_t)0x5842DD54, (q31_t)0x5CB420DF, (q31_t)0x57B0D256, (q31_t)0x5D3E5236, (q31_t)0x571DEEF9, (q31_t)0x5DC79D7C, (q31_t)0x568A34A9, (q31_t)0x5E50015D, (q31_t)0x55F5A4D2, (q31_t)0x5ED77C89, (q31_t)0x556040E2, (q31_t)0x5F5E0DB3, (q31_t)0x54CA0A4A, (q31_t)0x5FE3B38D, (q31_t)0x5433027D, (q31_t)0x60686CCE, (q31_t)0x539B2AEF, (q31_t)0x60EC3830, (q31_t)0x53028517, (q31_t)0x616F146B, (q31_t)0x5269126E, (q31_t)0x61F1003E, (q31_t)0x51CED46E, (q31_t)0x6271FA69, (q31_t)0x5133CC94, (q31_t)0x62F201AC, (q31_t)0x5097FC5E, (q31_t)0x637114CC, (q31_t)0x4FFB654D, (q31_t)0x63EF328F, (q31_t)0x4F5E08E3, (q31_t)0x646C59BF, (q31_t)0x4EBFE8A4, (q31_t)0x64E88926, (q31_t)0x4E210617, (q31_t)0x6563BF92, (q31_t)0x4D8162C4, (q31_t)0x65DDFBD3, (q31_t)0x4CE10034, (q31_t)0x66573CBB, (q31_t)0x4C3FDFF3, (q31_t)0x66CF811F, (q31_t)0x4B9E038F, (q31_t)0x6746C7D7, (q31_t)0x4AFB6C97, (q31_t)0x67BD0FBC, (q31_t)0x4A581C9D, (q31_t)0x683257AA, (q31_t)0x49B41533, (q31_t)0x68A69E81, (q31_t)0x490F57EE, (q31_t)0x6919E320, (q31_t)0x4869E664, (q31_t)0x698C246C, (q31_t)0x47C3C22E, (q31_t)0x69FD614A, (q31_t)0x471CECE6, (q31_t)0x6A6D98A4, (q31_t)0x46756827, (q31_t)0x6ADCC964, (q31_t)0x45CD358F, (q31_t)0x6B4AF278, (q31_t)0x452456BC, (q31_t)0x6BB812D0, (q31_t)0x447ACD50, (q31_t)0x6C242960, (q31_t)0x43D09AEC, (q31_t)0x6C8F351C, (q31_t)0x4325C135, (q31_t)0x6CF934FB, (q31_t)0x427A41D0, (q31_t)0x6D6227FA, (q31_t)0x41CE1E64, (q31_t)0x6DCA0D14, (q31_t)0x4121589A, (q31_t)0x6E30E349, (q31_t)0x4073F21D, (q31_t)0x6E96A99C, (q31_t)0x3FC5EC97, (q31_t)0x6EFB5F12, (q31_t)0x3F1749B7, (q31_t)0x6F5F02B1, (q31_t)0x3E680B2C, (q31_t)0x6FC19385, (q31_t)0x3DB832A5, (q31_t)0x70231099, (q31_t)0x3D07C1D5, (q31_t)0x708378FE, (q31_t)0x3C56BA70, (q31_t)0x70E2CBC6, (q31_t)0x3BA51E29, (q31_t)0x71410804, (q31_t)0x3AF2EEB7, (q31_t)0x719E2CD2, (q31_t)0x3A402DD1, (q31_t)0x71FA3948, (q31_t)0x398CDD32, (q31_t)0x72552C84, (q31_t)0x38D8FE93, (q31_t)0x72AF05A6, (q31_t)0x382493B0, (q31_t)0x7307C3D0, (q31_t)0x376F9E46, (q31_t)0x735F6626, (q31_t)0x36BA2013, (q31_t)0x73B5EBD0, (q31_t)0x36041AD9, (q31_t)0x740B53FA, (q31_t)0x354D9056, (q31_t)0x745F9DD1, (q31_t)0x3496824F, (q31_t)0x74B2C883, (q31_t)0x33DEF287, (q31_t)0x7504D345, (q31_t)0x3326E2C2, (q31_t)0x7555BD4B, (q31_t)0x326E54C7, (q31_t)0x75A585CF, (q31_t)0x31B54A5D, (q31_t)0x75F42C0A, (q31_t)0x30FBC54D, (q31_t)0x7641AF3C, (q31_t)0x3041C760, (q31_t)0x768E0EA5, (q31_t)0x2F875262, (q31_t)0x76D94988, (q31_t)0x2ECC681E, (q31_t)0x77235F2D, (q31_t)0x2E110A62, (q31_t)0x776C4EDB, (q31_t)0x2D553AFB, (q31_t)0x77B417DF, (q31_t)0x2C98FBBA, (q31_t)0x77FAB988, (q31_t)0x2BDC4E6F, (q31_t)0x78403328, (q31_t)0x2B1F34EB, (q31_t)0x78848413, (q31_t)0x2A61B101, (q31_t)0x78C7ABA1, (q31_t)0x29A3C484, (q31_t)0x7909A92C, (q31_t)0x28E5714A, (q31_t)0x794A7C11, (q31_t)0x2826B928, (q31_t)0x798A23B1, (q31_t)0x27679DF4, (q31_t)0x79C89F6D, (q31_t)0x26A82185, (q31_t)0x7A05EEAD, (q31_t)0x25E845B5, (q31_t)0x7A4210D8, (q31_t)0x25280C5D, (q31_t)0x7A7D055B, (q31_t)0x24677757, (q31_t)0x7AB6CBA3, (q31_t)0x23A6887E, (q31_t)0x7AEF6323, (q31_t)0x22E541AE, (q31_t)0x7B26CB4F, (q31_t)0x2223A4C5, (q31_t)0x7B5D039D, (q31_t)0x2161B39F, (q31_t)0x7B920B89, (q31_t)0x209F701C, (q31_t)0x7BC5E28F, (q31_t)0x1FDCDC1A, (q31_t)0x7BF88830, (q31_t)0x1F19F97B, (q31_t)0x7C29FBEE, (q31_t)0x1E56CA1E, (q31_t)0x7C5A3D4F, (q31_t)0x1D934FE5, (q31_t)0x7C894BDD, (q31_t)0x1CCF8CB3, (q31_t)0x7CB72724, (q31_t)0x1C0B826A, (q31_t)0x7CE3CEB1, (q31_t)0x1B4732EF, (q31_t)0x7D0F4218, (q31_t)0x1A82A025, (q31_t)0x7D3980EC, (q31_t)0x19BDCBF2, (q31_t)0x7D628AC5, (q31_t)0x18F8B83C, (q31_t)0x7D8A5F3F, (q31_t)0x183366E8, (q31_t)0x7DB0FDF7, (q31_t)0x176DD9DE, (q31_t)0x7DD6668E, (q31_t)0x16A81305, (q31_t)0x7DFA98A7, (q31_t)0x15E21444, (q31_t)0x7E1D93E9, (q31_t)0x151BDF85, (q31_t)0x7E3F57FE, (q31_t)0x145576B1, (q31_t)0x7E5FE493, (q31_t)0x138EDBB0, (q31_t)0x7E7F3956, (q31_t)0x12C8106E, (q31_t)0x7E9D55FC, (q31_t)0x120116D4, (q31_t)0x7EBA3A39, (q31_t)0x1139F0CE, (q31_t)0x7ED5E5C6, (q31_t)0x1072A047, (q31_t)0x7EF0585F, (q31_t)0x0FAB272B, (q31_t)0x7F0991C3, (q31_t)0x0EE38765, (q31_t)0x7F2191B4, (q31_t)0x0E1BC2E3, (q31_t)0x7F3857F5, (q31_t)0x0D53DB92, (q31_t)0x7F4DE450, (q31_t)0x0C8BD35E, (q31_t)0x7F62368F, (q31_t)0x0BC3AC35, (q31_t)0x7F754E7F, (q31_t)0x0AFB6805, (q31_t)0x7F872BF3, (q31_t)0x0A3308BC, (q31_t)0x7F97CEBC, (q31_t)0x096A9049, (q31_t)0x7FA736B4, (q31_t)0x08A2009A, (q31_t)0x7FB563B2, (q31_t)0x07D95B9E, (q31_t)0x7FC25596, (q31_t)0x0710A344, (q31_t)0x7FCE0C3E, (q31_t)0x0647D97C, (q31_t)0x7FD8878D, (q31_t)0x057F0034, (q31_t)0x7FE1C76B, (q31_t)0x04B6195D, (q31_t)0x7FE9CBC0, (q31_t)0x03ED26E6, (q31_t)0x7FF09477, (q31_t)0x03242ABF, (q31_t)0x7FF62182, (q31_t)0x025B26D7, (q31_t)0x7FFA72D1, (q31_t)0x01921D1F, (q31_t)0x7FFD885A, (q31_t)0x00C90F88, (q31_t)0x7FFF6216, (q31_t)0x00000000, (q31_t)0x7FFFFFFF, (q31_t)0xFF36F078, (q31_t)0x7FFF6216, (q31_t)0xFE6DE2E0, (q31_t)0x7FFD885A, (q31_t)0xFDA4D928, (q31_t)0x7FFA72D1, (q31_t)0xFCDBD541, (q31_t)0x7FF62182, (q31_t)0xFC12D919, (q31_t)0x7FF09477, (q31_t)0xFB49E6A2, (q31_t)0x7FE9CBC0, (q31_t)0xFA80FFCB, (q31_t)0x7FE1C76B, (q31_t)0xF9B82683, (q31_t)0x7FD8878D, (q31_t)0xF8EF5CBB, (q31_t)0x7FCE0C3E, (q31_t)0xF826A461, (q31_t)0x7FC25596, (q31_t)0xF75DFF65, (q31_t)0x7FB563B2, (q31_t)0xF6956FB6, (q31_t)0x7FA736B4, (q31_t)0xF5CCF743, (q31_t)0x7F97CEBC, (q31_t)0xF50497FA, (q31_t)0x7F872BF3, (q31_t)0xF43C53CA, (q31_t)0x7F754E7F, (q31_t)0xF3742CA1, (q31_t)0x7F62368F, (q31_t)0xF2AC246D, (q31_t)0x7F4DE450, (q31_t)0xF1E43D1C, (q31_t)0x7F3857F5, (q31_t)0xF11C789A, (q31_t)0x7F2191B4, (q31_t)0xF054D8D4, (q31_t)0x7F0991C3, (q31_t)0xEF8D5FB8, (q31_t)0x7EF0585F, (q31_t)0xEEC60F31, (q31_t)0x7ED5E5C6, (q31_t)0xEDFEE92B, (q31_t)0x7EBA3A39, (q31_t)0xED37EF91, (q31_t)0x7E9D55FC, (q31_t)0xEC71244F, (q31_t)0x7E7F3956, (q31_t)0xEBAA894E, (q31_t)0x7E5FE493, (q31_t)0xEAE4207A, (q31_t)0x7E3F57FE, (q31_t)0xEA1DEBBB, (q31_t)0x7E1D93E9, (q31_t)0xE957ECFB, (q31_t)0x7DFA98A7, (q31_t)0xE8922621, (q31_t)0x7DD6668E, (q31_t)0xE7CC9917, (q31_t)0x7DB0FDF7, (q31_t)0xE70747C3, (q31_t)0x7D8A5F3F, (q31_t)0xE642340D, (q31_t)0x7D628AC5, (q31_t)0xE57D5FDA, (q31_t)0x7D3980EC, (q31_t)0xE4B8CD10, (q31_t)0x7D0F4218, (q31_t)0xE3F47D95, (q31_t)0x7CE3CEB1, (q31_t)0xE330734C, (q31_t)0x7CB72724, (q31_t)0xE26CB01A, (q31_t)0x7C894BDD, (q31_t)0xE1A935E1, (q31_t)0x7C5A3D4F, (q31_t)0xE0E60684, (q31_t)0x7C29FBEE, (q31_t)0xE02323E5, (q31_t)0x7BF88830, (q31_t)0xDF608FE3, (q31_t)0x7BC5E28F, (q31_t)0xDE9E4C60, (q31_t)0x7B920B89, (q31_t)0xDDDC5B3A, (q31_t)0x7B5D039D, (q31_t)0xDD1ABE51, (q31_t)0x7B26CB4F, (q31_t)0xDC597781, (q31_t)0x7AEF6323, (q31_t)0xDB9888A8, (q31_t)0x7AB6CBA3, (q31_t)0xDAD7F3A2, (q31_t)0x7A7D055B, (q31_t)0xDA17BA4A, (q31_t)0x7A4210D8, (q31_t)0xD957DE7A, (q31_t)0x7A05EEAD, (q31_t)0xD898620C, (q31_t)0x79C89F6D, (q31_t)0xD7D946D7, (q31_t)0x798A23B1, (q31_t)0xD71A8EB5, (q31_t)0x794A7C11, (q31_t)0xD65C3B7B, (q31_t)0x7909A92C, (q31_t)0xD59E4EFE, (q31_t)0x78C7ABA1, (q31_t)0xD4E0CB14, (q31_t)0x78848413, (q31_t)0xD423B190, (q31_t)0x78403328, (q31_t)0xD3670445, (q31_t)0x77FAB988, (q31_t)0xD2AAC504, (q31_t)0x77B417DF, (q31_t)0xD1EEF59E, (q31_t)0x776C4EDB, (q31_t)0xD13397E1, (q31_t)0x77235F2D, (q31_t)0xD078AD9D, (q31_t)0x76D94988, (q31_t)0xCFBE389F, (q31_t)0x768E0EA5, (q31_t)0xCF043AB2, (q31_t)0x7641AF3C, (q31_t)0xCE4AB5A2, (q31_t)0x75F42C0A, (q31_t)0xCD91AB38, (q31_t)0x75A585CF, (q31_t)0xCCD91D3D, (q31_t)0x7555BD4B, (q31_t)0xCC210D78, (q31_t)0x7504D345, (q31_t)0xCB697DB0, (q31_t)0x74B2C883, (q31_t)0xCAB26FA9, (q31_t)0x745F9DD1, (q31_t)0xC9FBE527, (q31_t)0x740B53FA, (q31_t)0xC945DFEC, (q31_t)0x73B5EBD0, (q31_t)0xC89061BA, (q31_t)0x735F6626, (q31_t)0xC7DB6C50, (q31_t)0x7307C3D0, (q31_t)0xC727016C, (q31_t)0x72AF05A6, (q31_t)0xC67322CD, (q31_t)0x72552C84, (q31_t)0xC5BFD22E, (q31_t)0x71FA3948, (q31_t)0xC50D1148, (q31_t)0x719E2CD2, (q31_t)0xC45AE1D7, (q31_t)0x71410804, (q31_t)0xC3A9458F, (q31_t)0x70E2CBC6, (q31_t)0xC2F83E2A, (q31_t)0x708378FE, (q31_t)0xC247CD5A, (q31_t)0x70231099, (q31_t)0xC197F4D3, (q31_t)0x6FC19385, (q31_t)0xC0E8B648, (q31_t)0x6F5F02B1, (q31_t)0xC03A1368, (q31_t)0x6EFB5F12, (q31_t)0xBF8C0DE2, (q31_t)0x6E96A99C, (q31_t)0xBEDEA765, (q31_t)0x6E30E349, (q31_t)0xBE31E19B, (q31_t)0x6DCA0D14, (q31_t)0xBD85BE2F, (q31_t)0x6D6227FA, (q31_t)0xBCDA3ECA, (q31_t)0x6CF934FB, (q31_t)0xBC2F6513, (q31_t)0x6C8F351C, (q31_t)0xBB8532AF, (q31_t)0x6C242960, (q31_t)0xBADBA943, (q31_t)0x6BB812D0, (q31_t)0xBA32CA70, (q31_t)0x6B4AF278, (q31_t)0xB98A97D8, (q31_t)0x6ADCC964, (q31_t)0xB8E31319, (q31_t)0x6A6D98A4, (q31_t)0xB83C3DD1, (q31_t)0x69FD614A, (q31_t)0xB796199B, (q31_t)0x698C246C, (q31_t)0xB6F0A811, (q31_t)0x6919E320, (q31_t)0xB64BEACC, (q31_t)0x68A69E81, (q31_t)0xB5A7E362, (q31_t)0x683257AA, (q31_t)0xB5049368, (q31_t)0x67BD0FBC, (q31_t)0xB461FC70, (q31_t)0x6746C7D7, (q31_t)0xB3C0200C, (q31_t)0x66CF811F, (q31_t)0xB31EFFCB, (q31_t)0x66573CBB, (q31_t)0xB27E9D3B, (q31_t)0x65DDFBD3, (q31_t)0xB1DEF9E8, (q31_t)0x6563BF92, (q31_t)0xB140175B, (q31_t)0x64E88926, (q31_t)0xB0A1F71C, (q31_t)0x646C59BF, (q31_t)0xB0049AB2, (q31_t)0x63EF328F, (q31_t)0xAF6803A1, (q31_t)0x637114CC, (q31_t)0xAECC336B, (q31_t)0x62F201AC, (q31_t)0xAE312B91, (q31_t)0x6271FA69, (q31_t)0xAD96ED91, (q31_t)0x61F1003E, (q31_t)0xACFD7AE8, (q31_t)0x616F146B, (q31_t)0xAC64D510, (q31_t)0x60EC3830, (q31_t)0xABCCFD82, (q31_t)0x60686CCE, (q31_t)0xAB35F5B5, (q31_t)0x5FE3B38D, (q31_t)0xAA9FBF1D, (q31_t)0x5F5E0DB3, (q31_t)0xAA0A5B2D, (q31_t)0x5ED77C89, (q31_t)0xA975CB56, (q31_t)0x5E50015D, (q31_t)0xA8E21106, (q31_t)0x5DC79D7C, (q31_t)0xA84F2DA9, (q31_t)0x5D3E5236, (q31_t)0xA7BD22AB, (q31_t)0x5CB420DF, (q31_t)0xA72BF173, (q31_t)0x5C290ACC, (q31_t)0xA69B9B68, (q31_t)0x5B9D1153, (q31_t)0xA60C21ED, (q31_t)0x5B1035CF, (q31_t)0xA57D8666, (q31_t)0x5A82799A, (q31_t)0xA4EFCA31, (q31_t)0x59F3DE12, (q31_t)0xA462EEAC, (q31_t)0x59646497, (q31_t)0xA3D6F533, (q31_t)0x58D40E8C, (q31_t)0xA34BDF20, (q31_t)0x5842DD54, (q31_t)0xA2C1ADC9, (q31_t)0x57B0D256, (q31_t)0xA2386283, (q31_t)0x571DEEF9, (q31_t)0xA1AFFEA2, (q31_t)0x568A34A9, (q31_t)0xA1288376, (q31_t)0x55F5A4D2, (q31_t)0xA0A1F24C, (q31_t)0x556040E2, (q31_t)0xA01C4C72, (q31_t)0x54CA0A4A, (q31_t)0x9F979331, (q31_t)0x5433027D, (q31_t)0x9F13C7D0, (q31_t)0x539B2AEF, (q31_t)0x9E90EB94, (q31_t)0x53028517, (q31_t)0x9E0EFFC1, (q31_t)0x5269126E, (q31_t)0x9D8E0596, (q31_t)0x51CED46E, (q31_t)0x9D0DFE53, (q31_t)0x5133CC94, (q31_t)0x9C8EEB33, (q31_t)0x5097FC5E, (q31_t)0x9C10CD70, (q31_t)0x4FFB654D, (q31_t)0x9B93A640, (q31_t)0x4F5E08E3, (q31_t)0x9B1776D9, (q31_t)0x4EBFE8A4, (q31_t)0x9A9C406D, (q31_t)0x4E210617, (q31_t)0x9A22042C, (q31_t)0x4D8162C4, (q31_t)0x99A8C344, (q31_t)0x4CE10034, (q31_t)0x99307EE0, (q31_t)0x4C3FDFF3, (q31_t)0x98B93828, (q31_t)0x4B9E038F, (q31_t)0x9842F043, (q31_t)0x4AFB6C97, (q31_t)0x97CDA855, (q31_t)0x4A581C9D, (q31_t)0x9759617E, (q31_t)0x49B41533, (q31_t)0x96E61CDF, (q31_t)0x490F57EE, (q31_t)0x9673DB94, (q31_t)0x4869E664, (q31_t)0x96029EB5, (q31_t)0x47C3C22E, (q31_t)0x9592675B, (q31_t)0x471CECE6, (q31_t)0x9523369B, (q31_t)0x46756827, (q31_t)0x94B50D87, (q31_t)0x45CD358F, (q31_t)0x9447ED2F, (q31_t)0x452456BC, (q31_t)0x93DBD69F, (q31_t)0x447ACD50, (q31_t)0x9370CAE4, (q31_t)0x43D09AEC, (q31_t)0x9306CB04, (q31_t)0x4325C135, (q31_t)0x929DD805, (q31_t)0x427A41D0, (q31_t)0x9235F2EB, (q31_t)0x41CE1E64, (q31_t)0x91CF1CB6, (q31_t)0x4121589A, (q31_t)0x91695663, (q31_t)0x4073F21D, (q31_t)0x9104A0ED, (q31_t)0x3FC5EC97, (q31_t)0x90A0FD4E, (q31_t)0x3F1749B7, (q31_t)0x903E6C7A, (q31_t)0x3E680B2C, (q31_t)0x8FDCEF66, (q31_t)0x3DB832A5, (q31_t)0x8F7C8701, (q31_t)0x3D07C1D5, (q31_t)0x8F1D343A, (q31_t)0x3C56BA70, (q31_t)0x8EBEF7FB, (q31_t)0x3BA51E29, (q31_t)0x8E61D32D, (q31_t)0x3AF2EEB7, (q31_t)0x8E05C6B7, (q31_t)0x3A402DD1, (q31_t)0x8DAAD37B, (q31_t)0x398CDD32, (q31_t)0x8D50FA59, (q31_t)0x38D8FE93, (q31_t)0x8CF83C30, (q31_t)0x382493B0, (q31_t)0x8CA099D9, (q31_t)0x376F9E46, (q31_t)0x8C4A142F, (q31_t)0x36BA2013, (q31_t)0x8BF4AC05, (q31_t)0x36041AD9, (q31_t)0x8BA0622F, (q31_t)0x354D9056, (q31_t)0x8B4D377C, (q31_t)0x3496824F, (q31_t)0x8AFB2CBA, (q31_t)0x33DEF287, (q31_t)0x8AAA42B4, (q31_t)0x3326E2C2, (q31_t)0x8A5A7A30, (q31_t)0x326E54C7, (q31_t)0x8A0BD3F5, (q31_t)0x31B54A5D, (q31_t)0x89BE50C3, (q31_t)0x30FBC54D, (q31_t)0x8971F15A, (q31_t)0x3041C760, (q31_t)0x8926B677, (q31_t)0x2F875262, (q31_t)0x88DCA0D3, (q31_t)0x2ECC681E, (q31_t)0x8893B124, (q31_t)0x2E110A62, (q31_t)0x884BE820, (q31_t)0x2D553AFB, (q31_t)0x88054677, (q31_t)0x2C98FBBA, (q31_t)0x87BFCCD7, (q31_t)0x2BDC4E6F, (q31_t)0x877B7BEC, (q31_t)0x2B1F34EB, (q31_t)0x8738545E, (q31_t)0x2A61B101, (q31_t)0x86F656D3, (q31_t)0x29A3C484, (q31_t)0x86B583EE, (q31_t)0x28E5714A, (q31_t)0x8675DC4E, (q31_t)0x2826B928, (q31_t)0x86376092, (q31_t)0x27679DF4, (q31_t)0x85FA1152, (q31_t)0x26A82185, (q31_t)0x85BDEF27, (q31_t)0x25E845B5, (q31_t)0x8582FAA4, (q31_t)0x25280C5D, (q31_t)0x8549345C, (q31_t)0x24677757, (q31_t)0x85109CDC, (q31_t)0x23A6887E, (q31_t)0x84D934B0, (q31_t)0x22E541AE, (q31_t)0x84A2FC62, (q31_t)0x2223A4C5, (q31_t)0x846DF476, (q31_t)0x2161B39F, (q31_t)0x843A1D70, (q31_t)0x209F701C, (q31_t)0x840777CF, (q31_t)0x1FDCDC1A, (q31_t)0x83D60411, (q31_t)0x1F19F97B, (q31_t)0x83A5C2B0, (q31_t)0x1E56CA1E, (q31_t)0x8376B422, (q31_t)0x1D934FE5, (q31_t)0x8348D8DB, (q31_t)0x1CCF8CB3, (q31_t)0x831C314E, (q31_t)0x1C0B826A, (q31_t)0x82F0BDE8, (q31_t)0x1B4732EF, (q31_t)0x82C67F13, (q31_t)0x1A82A025, (q31_t)0x829D753A, (q31_t)0x19BDCBF2, (q31_t)0x8275A0C0, (q31_t)0x18F8B83C, (q31_t)0x824F0208, (q31_t)0x183366E8, (q31_t)0x82299971, (q31_t)0x176DD9DE, (q31_t)0x82056758, (q31_t)0x16A81305, (q31_t)0x81E26C16, (q31_t)0x15E21444, (q31_t)0x81C0A801, (q31_t)0x151BDF85, (q31_t)0x81A01B6C, (q31_t)0x145576B1, (q31_t)0x8180C6A9, (q31_t)0x138EDBB0, (q31_t)0x8162AA03, (q31_t)0x12C8106E, (q31_t)0x8145C5C6, (q31_t)0x120116D4, (q31_t)0x812A1A39, (q31_t)0x1139F0CE, (q31_t)0x810FA7A0, (q31_t)0x1072A047, (q31_t)0x80F66E3C, (q31_t)0x0FAB272B, (q31_t)0x80DE6E4C, (q31_t)0x0EE38765, (q31_t)0x80C7A80A, (q31_t)0x0E1BC2E3, (q31_t)0x80B21BAF, (q31_t)0x0D53DB92, (q31_t)0x809DC970, (q31_t)0x0C8BD35E, (q31_t)0x808AB180, (q31_t)0x0BC3AC35, (q31_t)0x8078D40D, (q31_t)0x0AFB6805, (q31_t)0x80683143, (q31_t)0x0A3308BC, (q31_t)0x8058C94C, (q31_t)0x096A9049, (q31_t)0x804A9C4D, (q31_t)0x08A2009A, (q31_t)0x803DAA69, (q31_t)0x07D95B9E, (q31_t)0x8031F3C1, (q31_t)0x0710A344, (q31_t)0x80277872, (q31_t)0x0647D97C, (q31_t)0x801E3894, (q31_t)0x057F0034, (q31_t)0x80163440, (q31_t)0x04B6195D, (q31_t)0x800F6B88, (q31_t)0x03ED26E6, (q31_t)0x8009DE7D, (q31_t)0x03242ABF, (q31_t)0x80058D2E, (q31_t)0x025B26D7, (q31_t)0x800277A5, (q31_t)0x01921D1F, (q31_t)0x80009DE9, (q31_t)0x00C90F88, (q31_t)0x80000000, (q31_t)0x00000000, (q31_t)0x80009DE9, (q31_t)0xFF36F078, (q31_t)0x800277A5, (q31_t)0xFE6DE2E0, (q31_t)0x80058D2E, (q31_t)0xFDA4D928, (q31_t)0x8009DE7D, (q31_t)0xFCDBD541, (q31_t)0x800F6B88, (q31_t)0xFC12D919, (q31_t)0x80163440, (q31_t)0xFB49E6A2, (q31_t)0x801E3894, (q31_t)0xFA80FFCB, (q31_t)0x80277872, (q31_t)0xF9B82683, (q31_t)0x8031F3C1, (q31_t)0xF8EF5CBB, (q31_t)0x803DAA69, (q31_t)0xF826A461, (q31_t)0x804A9C4D, (q31_t)0xF75DFF65, (q31_t)0x8058C94C, (q31_t)0xF6956FB6, (q31_t)0x80683143, (q31_t)0xF5CCF743, (q31_t)0x8078D40D, (q31_t)0xF50497FA, (q31_t)0x808AB180, (q31_t)0xF43C53CA, (q31_t)0x809DC970, (q31_t)0xF3742CA1, (q31_t)0x80B21BAF, (q31_t)0xF2AC246D, (q31_t)0x80C7A80A, (q31_t)0xF1E43D1C, (q31_t)0x80DE6E4C, (q31_t)0xF11C789A, (q31_t)0x80F66E3C, (q31_t)0xF054D8D4, (q31_t)0x810FA7A0, (q31_t)0xEF8D5FB8, (q31_t)0x812A1A39, (q31_t)0xEEC60F31, (q31_t)0x8145C5C6, (q31_t)0xEDFEE92B, (q31_t)0x8162AA03, (q31_t)0xED37EF91, (q31_t)0x8180C6A9, (q31_t)0xEC71244F, (q31_t)0x81A01B6C, (q31_t)0xEBAA894E, (q31_t)0x81C0A801, (q31_t)0xEAE4207A, (q31_t)0x81E26C16, (q31_t)0xEA1DEBBB, (q31_t)0x82056758, (q31_t)0xE957ECFB, (q31_t)0x82299971, (q31_t)0xE8922621, (q31_t)0x824F0208, (q31_t)0xE7CC9917, (q31_t)0x8275A0C0, (q31_t)0xE70747C3, (q31_t)0x829D753A, (q31_t)0xE642340D, (q31_t)0x82C67F13, (q31_t)0xE57D5FDA, (q31_t)0x82F0BDE8, (q31_t)0xE4B8CD10, (q31_t)0x831C314E, (q31_t)0xE3F47D95, (q31_t)0x8348D8DB, (q31_t)0xE330734C, (q31_t)0x8376B422, (q31_t)0xE26CB01A, (q31_t)0x83A5C2B0, (q31_t)0xE1A935E1, (q31_t)0x83D60411, (q31_t)0xE0E60684, (q31_t)0x840777CF, (q31_t)0xE02323E5, (q31_t)0x843A1D70, (q31_t)0xDF608FE3, (q31_t)0x846DF476, (q31_t)0xDE9E4C60, (q31_t)0x84A2FC62, (q31_t)0xDDDC5B3A, (q31_t)0x84D934B0, (q31_t)0xDD1ABE51, (q31_t)0x85109CDC, (q31_t)0xDC597781, (q31_t)0x8549345C, (q31_t)0xDB9888A8, (q31_t)0x8582FAA4, (q31_t)0xDAD7F3A2, (q31_t)0x85BDEF27, (q31_t)0xDA17BA4A, (q31_t)0x85FA1152, (q31_t)0xD957DE7A, (q31_t)0x86376092, (q31_t)0xD898620C, (q31_t)0x8675DC4E, (q31_t)0xD7D946D7, (q31_t)0x86B583EE, (q31_t)0xD71A8EB5, (q31_t)0x86F656D3, (q31_t)0xD65C3B7B, (q31_t)0x8738545E, (q31_t)0xD59E4EFE, (q31_t)0x877B7BEC, (q31_t)0xD4E0CB14, (q31_t)0x87BFCCD7, (q31_t)0xD423B190, (q31_t)0x88054677, (q31_t)0xD3670445, (q31_t)0x884BE820, (q31_t)0xD2AAC504, (q31_t)0x8893B124, (q31_t)0xD1EEF59E, (q31_t)0x88DCA0D3, (q31_t)0xD13397E1, (q31_t)0x8926B677, (q31_t)0xD078AD9D, (q31_t)0x8971F15A, (q31_t)0xCFBE389F, (q31_t)0x89BE50C3, (q31_t)0xCF043AB2, (q31_t)0x8A0BD3F5, (q31_t)0xCE4AB5A2, (q31_t)0x8A5A7A30, (q31_t)0xCD91AB38, (q31_t)0x8AAA42B4, (q31_t)0xCCD91D3D, (q31_t)0x8AFB2CBA, (q31_t)0xCC210D78, (q31_t)0x8B4D377C, (q31_t)0xCB697DB0, (q31_t)0x8BA0622F, (q31_t)0xCAB26FA9, (q31_t)0x8BF4AC05, (q31_t)0xC9FBE527, (q31_t)0x8C4A142F, (q31_t)0xC945DFEC, (q31_t)0x8CA099D9, (q31_t)0xC89061BA, (q31_t)0x8CF83C30, (q31_t)0xC7DB6C50, (q31_t)0x8D50FA59, (q31_t)0xC727016C, (q31_t)0x8DAAD37B, (q31_t)0xC67322CD, (q31_t)0x8E05C6B7, (q31_t)0xC5BFD22E, (q31_t)0x8E61D32D, (q31_t)0xC50D1148, (q31_t)0x8EBEF7FB, (q31_t)0xC45AE1D7, (q31_t)0x8F1D343A, (q31_t)0xC3A9458F, (q31_t)0x8F7C8701, (q31_t)0xC2F83E2A, (q31_t)0x8FDCEF66, (q31_t)0xC247CD5A, (q31_t)0x903E6C7A, (q31_t)0xC197F4D3, (q31_t)0x90A0FD4E, (q31_t)0xC0E8B648, (q31_t)0x9104A0ED, (q31_t)0xC03A1368, (q31_t)0x91695663, (q31_t)0xBF8C0DE2, (q31_t)0x91CF1CB6, (q31_t)0xBEDEA765, (q31_t)0x9235F2EB, (q31_t)0xBE31E19B, (q31_t)0x929DD805, (q31_t)0xBD85BE2F, (q31_t)0x9306CB04, (q31_t)0xBCDA3ECA, (q31_t)0x9370CAE4, (q31_t)0xBC2F6513, (q31_t)0x93DBD69F, (q31_t)0xBB8532AF, (q31_t)0x9447ED2F, (q31_t)0xBADBA943, (q31_t)0x94B50D87, (q31_t)0xBA32CA70, (q31_t)0x9523369B, (q31_t)0xB98A97D8, (q31_t)0x9592675B, (q31_t)0xB8E31319, (q31_t)0x96029EB5, (q31_t)0xB83C3DD1, (q31_t)0x9673DB94, (q31_t)0xB796199B, (q31_t)0x96E61CDF, (q31_t)0xB6F0A811, (q31_t)0x9759617E, (q31_t)0xB64BEACC, (q31_t)0x97CDA855, (q31_t)0xB5A7E362, (q31_t)0x9842F043, (q31_t)0xB5049368, (q31_t)0x98B93828, (q31_t)0xB461FC70, (q31_t)0x99307EE0, (q31_t)0xB3C0200C, (q31_t)0x99A8C344, (q31_t)0xB31EFFCB, (q31_t)0x9A22042C, (q31_t)0xB27E9D3B, (q31_t)0x9A9C406D, (q31_t)0xB1DEF9E8, (q31_t)0x9B1776D9, (q31_t)0xB140175B, (q31_t)0x9B93A640, (q31_t)0xB0A1F71C, (q31_t)0x9C10CD70, (q31_t)0xB0049AB2, (q31_t)0x9C8EEB33, (q31_t)0xAF6803A1, (q31_t)0x9D0DFE53, (q31_t)0xAECC336B, (q31_t)0x9D8E0596, (q31_t)0xAE312B91, (q31_t)0x9E0EFFC1, (q31_t)0xAD96ED91, (q31_t)0x9E90EB94, (q31_t)0xACFD7AE8, (q31_t)0x9F13C7D0, (q31_t)0xAC64D510, (q31_t)0x9F979331, (q31_t)0xABCCFD82, (q31_t)0xA01C4C72, (q31_t)0xAB35F5B5, (q31_t)0xA0A1F24C, (q31_t)0xAA9FBF1D, (q31_t)0xA1288376, (q31_t)0xAA0A5B2D, (q31_t)0xA1AFFEA2, (q31_t)0xA975CB56, (q31_t)0xA2386283, (q31_t)0xA8E21106, (q31_t)0xA2C1ADC9, (q31_t)0xA84F2DA9, (q31_t)0xA34BDF20, (q31_t)0xA7BD22AB, (q31_t)0xA3D6F533, (q31_t)0xA72BF173, (q31_t)0xA462EEAC, (q31_t)0xA69B9B68, (q31_t)0xA4EFCA31, (q31_t)0xA60C21ED, (q31_t)0xA57D8666, (q31_t)0xA57D8666, (q31_t)0xA60C21ED, (q31_t)0xA4EFCA31, (q31_t)0xA69B9B68, (q31_t)0xA462EEAC, (q31_t)0xA72BF173, (q31_t)0xA3D6F533, (q31_t)0xA7BD22AB, (q31_t)0xA34BDF20, (q31_t)0xA84F2DA9, (q31_t)0xA2C1ADC9, (q31_t)0xA8E21106, (q31_t)0xA2386283, (q31_t)0xA975CB56, (q31_t)0xA1AFFEA2, (q31_t)0xAA0A5B2D, (q31_t)0xA1288376, (q31_t)0xAA9FBF1D, (q31_t)0xA0A1F24C, (q31_t)0xAB35F5B5, (q31_t)0xA01C4C72, (q31_t)0xABCCFD82, (q31_t)0x9F979331, (q31_t)0xAC64D510, (q31_t)0x9F13C7D0, (q31_t)0xACFD7AE8, (q31_t)0x9E90EB94, (q31_t)0xAD96ED91, (q31_t)0x9E0EFFC1, (q31_t)0xAE312B91, (q31_t)0x9D8E0596, (q31_t)0xAECC336B, (q31_t)0x9D0DFE53, (q31_t)0xAF6803A1, (q31_t)0x9C8EEB33, (q31_t)0xB0049AB2, (q31_t)0x9C10CD70, (q31_t)0xB0A1F71C, (q31_t)0x9B93A640, (q31_t)0xB140175B, (q31_t)0x9B1776D9, (q31_t)0xB1DEF9E8, (q31_t)0x9A9C406D, (q31_t)0xB27E9D3B, (q31_t)0x9A22042C, (q31_t)0xB31EFFCB, (q31_t)0x99A8C344, (q31_t)0xB3C0200C, (q31_t)0x99307EE0, (q31_t)0xB461FC70, (q31_t)0x98B93828, (q31_t)0xB5049368, (q31_t)0x9842F043, (q31_t)0xB5A7E362, (q31_t)0x97CDA855, (q31_t)0xB64BEACC, (q31_t)0x9759617E, (q31_t)0xB6F0A811, (q31_t)0x96E61CDF, (q31_t)0xB796199B, (q31_t)0x9673DB94, (q31_t)0xB83C3DD1, (q31_t)0x96029EB5, (q31_t)0xB8E31319, (q31_t)0x9592675B, (q31_t)0xB98A97D8, (q31_t)0x9523369B, (q31_t)0xBA32CA70, (q31_t)0x94B50D87, (q31_t)0xBADBA943, (q31_t)0x9447ED2F, (q31_t)0xBB8532AF, (q31_t)0x93DBD69F, (q31_t)0xBC2F6513, (q31_t)0x9370CAE4, (q31_t)0xBCDA3ECA, (q31_t)0x9306CB04, (q31_t)0xBD85BE2F, (q31_t)0x929DD805, (q31_t)0xBE31E19B, (q31_t)0x9235F2EB, (q31_t)0xBEDEA765, (q31_t)0x91CF1CB6, (q31_t)0xBF8C0DE2, (q31_t)0x91695663, (q31_t)0xC03A1368, (q31_t)0x9104A0ED, (q31_t)0xC0E8B648, (q31_t)0x90A0FD4E, (q31_t)0xC197F4D3, (q31_t)0x903E6C7A, (q31_t)0xC247CD5A, (q31_t)0x8FDCEF66, (q31_t)0xC2F83E2A, (q31_t)0x8F7C8701, (q31_t)0xC3A9458F, (q31_t)0x8F1D343A, (q31_t)0xC45AE1D7, (q31_t)0x8EBEF7FB, (q31_t)0xC50D1148, (q31_t)0x8E61D32D, (q31_t)0xC5BFD22E, (q31_t)0x8E05C6B7, (q31_t)0xC67322CD, (q31_t)0x8DAAD37B, (q31_t)0xC727016C, (q31_t)0x8D50FA59, (q31_t)0xC7DB6C50, (q31_t)0x8CF83C30, (q31_t)0xC89061BA, (q31_t)0x8CA099D9, (q31_t)0xC945DFEC, (q31_t)0x8C4A142F, (q31_t)0xC9FBE527, (q31_t)0x8BF4AC05, (q31_t)0xCAB26FA9, (q31_t)0x8BA0622F, (q31_t)0xCB697DB0, (q31_t)0x8B4D377C, (q31_t)0xCC210D78, (q31_t)0x8AFB2CBA, (q31_t)0xCCD91D3D, (q31_t)0x8AAA42B4, (q31_t)0xCD91AB38, (q31_t)0x8A5A7A30, (q31_t)0xCE4AB5A2, (q31_t)0x8A0BD3F5, (q31_t)0xCF043AB2, (q31_t)0x89BE50C3, (q31_t)0xCFBE389F, (q31_t)0x8971F15A, (q31_t)0xD078AD9D, (q31_t)0x8926B677, (q31_t)0xD13397E1, (q31_t)0x88DCA0D3, (q31_t)0xD1EEF59E, (q31_t)0x8893B124, (q31_t)0xD2AAC504, (q31_t)0x884BE820, (q31_t)0xD3670445, (q31_t)0x88054677, (q31_t)0xD423B190, (q31_t)0x87BFCCD7, (q31_t)0xD4E0CB14, (q31_t)0x877B7BEC, (q31_t)0xD59E4EFE, (q31_t)0x8738545E, (q31_t)0xD65C3B7B, (q31_t)0x86F656D3, (q31_t)0xD71A8EB5, (q31_t)0x86B583EE, (q31_t)0xD7D946D7, (q31_t)0x8675DC4E, (q31_t)0xD898620C, (q31_t)0x86376092, (q31_t)0xD957DE7A, (q31_t)0x85FA1152, (q31_t)0xDA17BA4A, (q31_t)0x85BDEF27, (q31_t)0xDAD7F3A2, (q31_t)0x8582FAA4, (q31_t)0xDB9888A8, (q31_t)0x8549345C, (q31_t)0xDC597781, (q31_t)0x85109CDC, (q31_t)0xDD1ABE51, (q31_t)0x84D934B0, (q31_t)0xDDDC5B3A, (q31_t)0x84A2FC62, (q31_t)0xDE9E4C60, (q31_t)0x846DF476, (q31_t)0xDF608FE3, (q31_t)0x843A1D70, (q31_t)0xE02323E5, (q31_t)0x840777CF, (q31_t)0xE0E60684, (q31_t)0x83D60411, (q31_t)0xE1A935E1, (q31_t)0x83A5C2B0, (q31_t)0xE26CB01A, (q31_t)0x8376B422, (q31_t)0xE330734C, (q31_t)0x8348D8DB, (q31_t)0xE3F47D95, (q31_t)0x831C314E, (q31_t)0xE4B8CD10, (q31_t)0x82F0BDE8, (q31_t)0xE57D5FDA, (q31_t)0x82C67F13, (q31_t)0xE642340D, (q31_t)0x829D753A, (q31_t)0xE70747C3, (q31_t)0x8275A0C0, (q31_t)0xE7CC9917, (q31_t)0x824F0208, (q31_t)0xE8922621, (q31_t)0x82299971, (q31_t)0xE957ECFB, (q31_t)0x82056758, (q31_t)0xEA1DEBBB, (q31_t)0x81E26C16, (q31_t)0xEAE4207A, (q31_t)0x81C0A801, (q31_t)0xEBAA894E, (q31_t)0x81A01B6C, (q31_t)0xEC71244F, (q31_t)0x8180C6A9, (q31_t)0xED37EF91, (q31_t)0x8162AA03, (q31_t)0xEDFEE92B, (q31_t)0x8145C5C6, (q31_t)0xEEC60F31, (q31_t)0x812A1A39, (q31_t)0xEF8D5FB8, (q31_t)0x810FA7A0, (q31_t)0xF054D8D4, (q31_t)0x80F66E3C, (q31_t)0xF11C789A, (q31_t)0x80DE6E4C, (q31_t)0xF1E43D1C, (q31_t)0x80C7A80A, (q31_t)0xF2AC246D, (q31_t)0x80B21BAF, (q31_t)0xF3742CA1, (q31_t)0x809DC970, (q31_t)0xF43C53CA, (q31_t)0x808AB180, (q31_t)0xF50497FA, (q31_t)0x8078D40D, (q31_t)0xF5CCF743, (q31_t)0x80683143, (q31_t)0xF6956FB6, (q31_t)0x8058C94C, (q31_t)0xF75DFF65, (q31_t)0x804A9C4D, (q31_t)0xF826A461, (q31_t)0x803DAA69, (q31_t)0xF8EF5CBB, (q31_t)0x8031F3C1, (q31_t)0xF9B82683, (q31_t)0x80277872, (q31_t)0xFA80FFCB, (q31_t)0x801E3894, (q31_t)0xFB49E6A2, (q31_t)0x80163440, (q31_t)0xFC12D919, (q31_t)0x800F6B88, (q31_t)0xFCDBD541, (q31_t)0x8009DE7D, (q31_t)0xFDA4D928, (q31_t)0x80058D2E, (q31_t)0xFE6DE2E0, (q31_t)0x800277A5, (q31_t)0xFF36F078, (q31_t)0x80009DE9 }; /** @par Example code for Q31 Twiddle factors Generation:: @par
for (i = 0; i< 3N/4; i++)
  {
     twiddleCoefQ31[2*i]   = cos(i * 2*PI/(float)N);
     twiddleCoefQ31[2*i+1] = sin(i * 2*PI/(float)N);
  } 
@par where N = 2048, PI = 3.14159265358979 @par Cos and Sin values are interleaved fashion @par Convert Floating point to Q31(Fixed point 1.31): round(twiddleCoefQ31(i) * pow(2, 31)) */ const q31_t twiddleCoef_2048_q31[3072] ARM_DSP_TABLE_ATTRIBUTE = { (q31_t)0x7FFFFFFF, (q31_t)0x00000000, (q31_t)0x7FFFD885, (q31_t)0x006487E3, (q31_t)0x7FFF6216, (q31_t)0x00C90F88, (q31_t)0x7FFE9CB2, (q31_t)0x012D96B0, (q31_t)0x7FFD885A, (q31_t)0x01921D1F, (q31_t)0x7FFC250F, (q31_t)0x01F6A296, (q31_t)0x7FFA72D1, (q31_t)0x025B26D7, (q31_t)0x7FF871A1, (q31_t)0x02BFA9A4, (q31_t)0x7FF62182, (q31_t)0x03242ABF, (q31_t)0x7FF38273, (q31_t)0x0388A9E9, (q31_t)0x7FF09477, (q31_t)0x03ED26E6, (q31_t)0x7FED5790, (q31_t)0x0451A176, (q31_t)0x7FE9CBC0, (q31_t)0x04B6195D, (q31_t)0x7FE5F108, (q31_t)0x051A8E5C, (q31_t)0x7FE1C76B, (q31_t)0x057F0034, (q31_t)0x7FDD4EEC, (q31_t)0x05E36EA9, (q31_t)0x7FD8878D, (q31_t)0x0647D97C, (q31_t)0x7FD37152, (q31_t)0x06AC406F, (q31_t)0x7FCE0C3E, (q31_t)0x0710A344, (q31_t)0x7FC85853, (q31_t)0x077501BE, (q31_t)0x7FC25596, (q31_t)0x07D95B9E, (q31_t)0x7FBC040A, (q31_t)0x083DB0A7, (q31_t)0x7FB563B2, (q31_t)0x08A2009A, (q31_t)0x7FAE7494, (q31_t)0x09064B3A, (q31_t)0x7FA736B4, (q31_t)0x096A9049, (q31_t)0x7F9FAA15, (q31_t)0x09CECF89, (q31_t)0x7F97CEBC, (q31_t)0x0A3308BC, (q31_t)0x7F8FA4AF, (q31_t)0x0A973BA5, (q31_t)0x7F872BF3, (q31_t)0x0AFB6805, (q31_t)0x7F7E648B, (q31_t)0x0B5F8D9F, (q31_t)0x7F754E7F, (q31_t)0x0BC3AC35, (q31_t)0x7F6BE9D4, (q31_t)0x0C27C389, (q31_t)0x7F62368F, (q31_t)0x0C8BD35E, (q31_t)0x7F5834B6, (q31_t)0x0CEFDB75, (q31_t)0x7F4DE450, (q31_t)0x0D53DB92, (q31_t)0x7F434563, (q31_t)0x0DB7D376, (q31_t)0x7F3857F5, (q31_t)0x0E1BC2E3, (q31_t)0x7F2D1C0E, (q31_t)0x0E7FA99D, (q31_t)0x7F2191B4, (q31_t)0x0EE38765, (q31_t)0x7F15B8EE, (q31_t)0x0F475BFE, (q31_t)0x7F0991C3, (q31_t)0x0FAB272B, (q31_t)0x7EFD1C3C, (q31_t)0x100EE8AD, (q31_t)0x7EF0585F, (q31_t)0x1072A047, (q31_t)0x7EE34635, (q31_t)0x10D64DBC, (q31_t)0x7ED5E5C6, (q31_t)0x1139F0CE, (q31_t)0x7EC8371A, (q31_t)0x119D8940, (q31_t)0x7EBA3A39, (q31_t)0x120116D4, (q31_t)0x7EABEF2C, (q31_t)0x1264994E, (q31_t)0x7E9D55FC, (q31_t)0x12C8106E, (q31_t)0x7E8E6EB1, (q31_t)0x132B7BF9, (q31_t)0x7E7F3956, (q31_t)0x138EDBB0, (q31_t)0x7E6FB5F3, (q31_t)0x13F22F57, (q31_t)0x7E5FE493, (q31_t)0x145576B1, (q31_t)0x7E4FC53E, (q31_t)0x14B8B17F, (q31_t)0x7E3F57FE, (q31_t)0x151BDF85, (q31_t)0x7E2E9CDF, (q31_t)0x157F0086, (q31_t)0x7E1D93E9, (q31_t)0x15E21444, (q31_t)0x7E0C3D29, (q31_t)0x16451A83, (q31_t)0x7DFA98A7, (q31_t)0x16A81305, (q31_t)0x7DE8A670, (q31_t)0x170AFD8D, (q31_t)0x7DD6668E, (q31_t)0x176DD9DE, (q31_t)0x7DC3D90D, (q31_t)0x17D0A7BB, (q31_t)0x7DB0FDF7, (q31_t)0x183366E8, (q31_t)0x7D9DD55A, (q31_t)0x18961727, (q31_t)0x7D8A5F3F, (q31_t)0x18F8B83C, (q31_t)0x7D769BB5, (q31_t)0x195B49E9, (q31_t)0x7D628AC5, (q31_t)0x19BDCBF2, (q31_t)0x7D4E2C7E, (q31_t)0x1A203E1B, (q31_t)0x7D3980EC, (q31_t)0x1A82A025, (q31_t)0x7D24881A, (q31_t)0x1AE4F1D6, (q31_t)0x7D0F4218, (q31_t)0x1B4732EF, (q31_t)0x7CF9AEF0, (q31_t)0x1BA96334, (q31_t)0x7CE3CEB1, (q31_t)0x1C0B826A, (q31_t)0x7CCDA168, (q31_t)0x1C6D9053, (q31_t)0x7CB72724, (q31_t)0x1CCF8CB3, (q31_t)0x7CA05FF1, (q31_t)0x1D31774D, (q31_t)0x7C894BDD, (q31_t)0x1D934FE5, (q31_t)0x7C71EAF8, (q31_t)0x1DF5163F, (q31_t)0x7C5A3D4F, (q31_t)0x1E56CA1E, (q31_t)0x7C4242F2, (q31_t)0x1EB86B46, (q31_t)0x7C29FBEE, (q31_t)0x1F19F97B, (q31_t)0x7C116853, (q31_t)0x1F7B7480, (q31_t)0x7BF88830, (q31_t)0x1FDCDC1A, (q31_t)0x7BDF5B94, (q31_t)0x203E300D, (q31_t)0x7BC5E28F, (q31_t)0x209F701C, (q31_t)0x7BAC1D31, (q31_t)0x21009C0B, (q31_t)0x7B920B89, (q31_t)0x2161B39F, (q31_t)0x7B77ADA8, (q31_t)0x21C2B69C, (q31_t)0x7B5D039D, (q31_t)0x2223A4C5, (q31_t)0x7B420D7A, (q31_t)0x22847DDF, (q31_t)0x7B26CB4F, (q31_t)0x22E541AE, (q31_t)0x7B0B3D2C, (q31_t)0x2345EFF7, (q31_t)0x7AEF6323, (q31_t)0x23A6887E, (q31_t)0x7AD33D45, (q31_t)0x24070B07, (q31_t)0x7AB6CBA3, (q31_t)0x24677757, (q31_t)0x7A9A0E4F, (q31_t)0x24C7CD32, (q31_t)0x7A7D055B, (q31_t)0x25280C5D, (q31_t)0x7A5FB0D8, (q31_t)0x2588349D, (q31_t)0x7A4210D8, (q31_t)0x25E845B5, (q31_t)0x7A24256E, (q31_t)0x26483F6C, (q31_t)0x7A05EEAD, (q31_t)0x26A82185, (q31_t)0x79E76CA6, (q31_t)0x2707EBC6, (q31_t)0x79C89F6D, (q31_t)0x27679DF4, (q31_t)0x79A98715, (q31_t)0x27C737D2, (q31_t)0x798A23B1, (q31_t)0x2826B928, (q31_t)0x796A7554, (q31_t)0x288621B9, (q31_t)0x794A7C11, (q31_t)0x28E5714A, (q31_t)0x792A37FE, (q31_t)0x2944A7A2, (q31_t)0x7909A92C, (q31_t)0x29A3C484, (q31_t)0x78E8CFB1, (q31_t)0x2A02C7B8, (q31_t)0x78C7ABA1, (q31_t)0x2A61B101, (q31_t)0x78A63D10, (q31_t)0x2AC08025, (q31_t)0x78848413, (q31_t)0x2B1F34EB, (q31_t)0x786280BF, (q31_t)0x2B7DCF17, (q31_t)0x78403328, (q31_t)0x2BDC4E6F, (q31_t)0x781D9B64, (q31_t)0x2C3AB2B9, (q31_t)0x77FAB988, (q31_t)0x2C98FBBA, (q31_t)0x77D78DAA, (q31_t)0x2CF72939, (q31_t)0x77B417DF, (q31_t)0x2D553AFB, (q31_t)0x7790583D, (q31_t)0x2DB330C7, (q31_t)0x776C4EDB, (q31_t)0x2E110A62, (q31_t)0x7747FBCE, (q31_t)0x2E6EC792, (q31_t)0x77235F2D, (q31_t)0x2ECC681E, (q31_t)0x76FE790E, (q31_t)0x2F29EBCC, (q31_t)0x76D94988, (q31_t)0x2F875262, (q31_t)0x76B3D0B3, (q31_t)0x2FE49BA6, (q31_t)0x768E0EA5, (q31_t)0x3041C760, (q31_t)0x76680376, (q31_t)0x309ED555, (q31_t)0x7641AF3C, (q31_t)0x30FBC54D, (q31_t)0x761B1211, (q31_t)0x3158970D, (q31_t)0x75F42C0A, (q31_t)0x31B54A5D, (q31_t)0x75CCFD42, (q31_t)0x3211DF03, (q31_t)0x75A585CF, (q31_t)0x326E54C7, (q31_t)0x757DC5CA, (q31_t)0x32CAAB6F, (q31_t)0x7555BD4B, (q31_t)0x3326E2C2, (q31_t)0x752D6C6C, (q31_t)0x3382FA88, (q31_t)0x7504D345, (q31_t)0x33DEF287, (q31_t)0x74DBF1EF, (q31_t)0x343ACA87, (q31_t)0x74B2C883, (q31_t)0x3496824F, (q31_t)0x7489571B, (q31_t)0x34F219A7, (q31_t)0x745F9DD1, (q31_t)0x354D9056, (q31_t)0x74359CBD, (q31_t)0x35A8E624, (q31_t)0x740B53FA, (q31_t)0x36041AD9, (q31_t)0x73E0C3A3, (q31_t)0x365F2E3B, (q31_t)0x73B5EBD0, (q31_t)0x36BA2013, (q31_t)0x738ACC9E, (q31_t)0x3714F02A, (q31_t)0x735F6626, (q31_t)0x376F9E46, (q31_t)0x7333B883, (q31_t)0x37CA2A30, (q31_t)0x7307C3D0, (q31_t)0x382493B0, (q31_t)0x72DB8828, (q31_t)0x387EDA8E, (q31_t)0x72AF05A6, (q31_t)0x38D8FE93, (q31_t)0x72823C66, (q31_t)0x3932FF87, (q31_t)0x72552C84, (q31_t)0x398CDD32, (q31_t)0x7227D61C, (q31_t)0x39E6975D, (q31_t)0x71FA3948, (q31_t)0x3A402DD1, (q31_t)0x71CC5626, (q31_t)0x3A99A057, (q31_t)0x719E2CD2, (q31_t)0x3AF2EEB7, (q31_t)0x716FBD68, (q31_t)0x3B4C18BA, (q31_t)0x71410804, (q31_t)0x3BA51E29, (q31_t)0x71120CC5, (q31_t)0x3BFDFECD, (q31_t)0x70E2CBC6, (q31_t)0x3C56BA70, (q31_t)0x70B34524, (q31_t)0x3CAF50DA, (q31_t)0x708378FE, (q31_t)0x3D07C1D5, (q31_t)0x70536771, (q31_t)0x3D600D2B, (q31_t)0x70231099, (q31_t)0x3DB832A5, (q31_t)0x6FF27496, (q31_t)0x3E10320D, (q31_t)0x6FC19385, (q31_t)0x3E680B2C, (q31_t)0x6F906D84, (q31_t)0x3EBFBDCC, (q31_t)0x6F5F02B1, (q31_t)0x3F1749B7, (q31_t)0x6F2D532C, (q31_t)0x3F6EAEB8, (q31_t)0x6EFB5F12, (q31_t)0x3FC5EC97, (q31_t)0x6EC92682, (q31_t)0x401D0320, (q31_t)0x6E96A99C, (q31_t)0x4073F21D, (q31_t)0x6E63E87F, (q31_t)0x40CAB957, (q31_t)0x6E30E349, (q31_t)0x4121589A, (q31_t)0x6DFD9A1B, (q31_t)0x4177CFB0, (q31_t)0x6DCA0D14, (q31_t)0x41CE1E64, (q31_t)0x6D963C54, (q31_t)0x42244480, (q31_t)0x6D6227FA, (q31_t)0x427A41D0, (q31_t)0x6D2DD027, (q31_t)0x42D0161E, (q31_t)0x6CF934FB, (q31_t)0x4325C135, (q31_t)0x6CC45697, (q31_t)0x437B42E1, (q31_t)0x6C8F351C, (q31_t)0x43D09AEC, (q31_t)0x6C59D0A9, (q31_t)0x4425C923, (q31_t)0x6C242960, (q31_t)0x447ACD50, (q31_t)0x6BEE3F62, (q31_t)0x44CFA73F, (q31_t)0x6BB812D0, (q31_t)0x452456BC, (q31_t)0x6B81A3CD, (q31_t)0x4578DB93, (q31_t)0x6B4AF278, (q31_t)0x45CD358F, (q31_t)0x6B13FEF5, (q31_t)0x4621647C, (q31_t)0x6ADCC964, (q31_t)0x46756827, (q31_t)0x6AA551E8, (q31_t)0x46C9405C, (q31_t)0x6A6D98A4, (q31_t)0x471CECE6, (q31_t)0x6A359DB9, (q31_t)0x47706D93, (q31_t)0x69FD614A, (q31_t)0x47C3C22E, (q31_t)0x69C4E37A, (q31_t)0x4816EA85, (q31_t)0x698C246C, (q31_t)0x4869E664, (q31_t)0x69532442, (q31_t)0x48BCB598, (q31_t)0x6919E320, (q31_t)0x490F57EE, (q31_t)0x68E06129, (q31_t)0x4961CD32, (q31_t)0x68A69E81, (q31_t)0x49B41533, (q31_t)0x686C9B4B, (q31_t)0x4A062FBD, (q31_t)0x683257AA, (q31_t)0x4A581C9D, (q31_t)0x67F7D3C4, (q31_t)0x4AA9DBA1, (q31_t)0x67BD0FBC, (q31_t)0x4AFB6C97, (q31_t)0x67820BB6, (q31_t)0x4B4CCF4D, (q31_t)0x6746C7D7, (q31_t)0x4B9E038F, (q31_t)0x670B4443, (q31_t)0x4BEF092D, (q31_t)0x66CF811F, (q31_t)0x4C3FDFF3, (q31_t)0x66937E90, (q31_t)0x4C9087B1, (q31_t)0x66573CBB, (q31_t)0x4CE10034, (q31_t)0x661ABBC5, (q31_t)0x4D31494B, (q31_t)0x65DDFBD3, (q31_t)0x4D8162C4, (q31_t)0x65A0FD0B, (q31_t)0x4DD14C6E, (q31_t)0x6563BF92, (q31_t)0x4E210617, (q31_t)0x6526438E, (q31_t)0x4E708F8F, (q31_t)0x64E88926, (q31_t)0x4EBFE8A4, (q31_t)0x64AA907F, (q31_t)0x4F0F1126, (q31_t)0x646C59BF, (q31_t)0x4F5E08E3, (q31_t)0x642DE50D, (q31_t)0x4FACCFAB, (q31_t)0x63EF328F, (q31_t)0x4FFB654D, (q31_t)0x63B0426D, (q31_t)0x5049C999, (q31_t)0x637114CC, (q31_t)0x5097FC5E, (q31_t)0x6331A9D4, (q31_t)0x50E5FD6C, (q31_t)0x62F201AC, (q31_t)0x5133CC94, (q31_t)0x62B21C7B, (q31_t)0x518169A4, (q31_t)0x6271FA69, (q31_t)0x51CED46E, (q31_t)0x62319B9D, (q31_t)0x521C0CC1, (q31_t)0x61F1003E, (q31_t)0x5269126E, (q31_t)0x61B02876, (q31_t)0x52B5E545, (q31_t)0x616F146B, (q31_t)0x53028517, (q31_t)0x612DC446, (q31_t)0x534EF1B5, (q31_t)0x60EC3830, (q31_t)0x539B2AEF, (q31_t)0x60AA704F, (q31_t)0x53E73097, (q31_t)0x60686CCE, (q31_t)0x5433027D, (q31_t)0x60262DD5, (q31_t)0x547EA073, (q31_t)0x5FE3B38D, (q31_t)0x54CA0A4A, (q31_t)0x5FA0FE1E, (q31_t)0x55153FD4, (q31_t)0x5F5E0DB3, (q31_t)0x556040E2, (q31_t)0x5F1AE273, (q31_t)0x55AB0D46, (q31_t)0x5ED77C89, (q31_t)0x55F5A4D2, (q31_t)0x5E93DC1F, (q31_t)0x56400757, (q31_t)0x5E50015D, (q31_t)0x568A34A9, (q31_t)0x5E0BEC6E, (q31_t)0x56D42C99, (q31_t)0x5DC79D7C, (q31_t)0x571DEEF9, (q31_t)0x5D8314B0, (q31_t)0x57677B9D, (q31_t)0x5D3E5236, (q31_t)0x57B0D256, (q31_t)0x5CF95638, (q31_t)0x57F9F2F7, (q31_t)0x5CB420DF, (q31_t)0x5842DD54, (q31_t)0x5C6EB258, (q31_t)0x588B913F, (q31_t)0x5C290ACC, (q31_t)0x58D40E8C, (q31_t)0x5BE32A67, (q31_t)0x591C550E, (q31_t)0x5B9D1153, (q31_t)0x59646497, (q31_t)0x5B56BFBD, (q31_t)0x59AC3CFD, (q31_t)0x5B1035CF, (q31_t)0x59F3DE12, (q31_t)0x5AC973B4, (q31_t)0x5A3B47AA, (q31_t)0x5A82799A, (q31_t)0x5A82799A, (q31_t)0x5A3B47AA, (q31_t)0x5AC973B4, (q31_t)0x59F3DE12, (q31_t)0x5B1035CF, (q31_t)0x59AC3CFD, (q31_t)0x5B56BFBD, (q31_t)0x59646497, (q31_t)0x5B9D1153, (q31_t)0x591C550E, (q31_t)0x5BE32A67, (q31_t)0x58D40E8C, (q31_t)0x5C290ACC, (q31_t)0x588B913F, (q31_t)0x5C6EB258, (q31_t)0x5842DD54, (q31_t)0x5CB420DF, (q31_t)0x57F9F2F7, (q31_t)0x5CF95638, (q31_t)0x57B0D256, (q31_t)0x5D3E5236, (q31_t)0x57677B9D, (q31_t)0x5D8314B0, (q31_t)0x571DEEF9, (q31_t)0x5DC79D7C, (q31_t)0x56D42C99, (q31_t)0x5E0BEC6E, (q31_t)0x568A34A9, (q31_t)0x5E50015D, (q31_t)0x56400757, (q31_t)0x5E93DC1F, (q31_t)0x55F5A4D2, (q31_t)0x5ED77C89, (q31_t)0x55AB0D46, (q31_t)0x5F1AE273, (q31_t)0x556040E2, (q31_t)0x5F5E0DB3, (q31_t)0x55153FD4, (q31_t)0x5FA0FE1E, (q31_t)0x54CA0A4A, (q31_t)0x5FE3B38D, (q31_t)0x547EA073, (q31_t)0x60262DD5, (q31_t)0x5433027D, (q31_t)0x60686CCE, (q31_t)0x53E73097, (q31_t)0x60AA704F, (q31_t)0x539B2AEF, (q31_t)0x60EC3830, (q31_t)0x534EF1B5, (q31_t)0x612DC446, (q31_t)0x53028517, (q31_t)0x616F146B, (q31_t)0x52B5E545, (q31_t)0x61B02876, (q31_t)0x5269126E, (q31_t)0x61F1003E, (q31_t)0x521C0CC1, (q31_t)0x62319B9D, (q31_t)0x51CED46E, (q31_t)0x6271FA69, (q31_t)0x518169A4, (q31_t)0x62B21C7B, (q31_t)0x5133CC94, (q31_t)0x62F201AC, (q31_t)0x50E5FD6C, (q31_t)0x6331A9D4, (q31_t)0x5097FC5E, (q31_t)0x637114CC, (q31_t)0x5049C999, (q31_t)0x63B0426D, (q31_t)0x4FFB654D, (q31_t)0x63EF328F, (q31_t)0x4FACCFAB, (q31_t)0x642DE50D, (q31_t)0x4F5E08E3, (q31_t)0x646C59BF, (q31_t)0x4F0F1126, (q31_t)0x64AA907F, (q31_t)0x4EBFE8A4, (q31_t)0x64E88926, (q31_t)0x4E708F8F, (q31_t)0x6526438E, (q31_t)0x4E210617, (q31_t)0x6563BF92, (q31_t)0x4DD14C6E, (q31_t)0x65A0FD0B, (q31_t)0x4D8162C4, (q31_t)0x65DDFBD3, (q31_t)0x4D31494B, (q31_t)0x661ABBC5, (q31_t)0x4CE10034, (q31_t)0x66573CBB, (q31_t)0x4C9087B1, (q31_t)0x66937E90, (q31_t)0x4C3FDFF3, (q31_t)0x66CF811F, (q31_t)0x4BEF092D, (q31_t)0x670B4443, (q31_t)0x4B9E038F, (q31_t)0x6746C7D7, (q31_t)0x4B4CCF4D, (q31_t)0x67820BB6, (q31_t)0x4AFB6C97, (q31_t)0x67BD0FBC, (q31_t)0x4AA9DBA1, (q31_t)0x67F7D3C4, (q31_t)0x4A581C9D, (q31_t)0x683257AA, (q31_t)0x4A062FBD, (q31_t)0x686C9B4B, (q31_t)0x49B41533, (q31_t)0x68A69E81, (q31_t)0x4961CD32, (q31_t)0x68E06129, (q31_t)0x490F57EE, (q31_t)0x6919E320, (q31_t)0x48BCB598, (q31_t)0x69532442, (q31_t)0x4869E664, (q31_t)0x698C246C, (q31_t)0x4816EA85, (q31_t)0x69C4E37A, (q31_t)0x47C3C22E, (q31_t)0x69FD614A, (q31_t)0x47706D93, (q31_t)0x6A359DB9, (q31_t)0x471CECE6, (q31_t)0x6A6D98A4, (q31_t)0x46C9405C, (q31_t)0x6AA551E8, (q31_t)0x46756827, (q31_t)0x6ADCC964, (q31_t)0x4621647C, (q31_t)0x6B13FEF5, (q31_t)0x45CD358F, (q31_t)0x6B4AF278, (q31_t)0x4578DB93, (q31_t)0x6B81A3CD, (q31_t)0x452456BC, (q31_t)0x6BB812D0, (q31_t)0x44CFA73F, (q31_t)0x6BEE3F62, (q31_t)0x447ACD50, (q31_t)0x6C242960, (q31_t)0x4425C923, (q31_t)0x6C59D0A9, (q31_t)0x43D09AEC, (q31_t)0x6C8F351C, (q31_t)0x437B42E1, (q31_t)0x6CC45697, (q31_t)0x4325C135, (q31_t)0x6CF934FB, (q31_t)0x42D0161E, (q31_t)0x6D2DD027, (q31_t)0x427A41D0, (q31_t)0x6D6227FA, (q31_t)0x42244480, (q31_t)0x6D963C54, (q31_t)0x41CE1E64, (q31_t)0x6DCA0D14, (q31_t)0x4177CFB0, (q31_t)0x6DFD9A1B, (q31_t)0x4121589A, (q31_t)0x6E30E349, (q31_t)0x40CAB957, (q31_t)0x6E63E87F, (q31_t)0x4073F21D, (q31_t)0x6E96A99C, (q31_t)0x401D0320, (q31_t)0x6EC92682, (q31_t)0x3FC5EC97, (q31_t)0x6EFB5F12, (q31_t)0x3F6EAEB8, (q31_t)0x6F2D532C, (q31_t)0x3F1749B7, (q31_t)0x6F5F02B1, (q31_t)0x3EBFBDCC, (q31_t)0x6F906D84, (q31_t)0x3E680B2C, (q31_t)0x6FC19385, (q31_t)0x3E10320D, (q31_t)0x6FF27496, (q31_t)0x3DB832A5, (q31_t)0x70231099, (q31_t)0x3D600D2B, (q31_t)0x70536771, (q31_t)0x3D07C1D5, (q31_t)0x708378FE, (q31_t)0x3CAF50DA, (q31_t)0x70B34524, (q31_t)0x3C56BA70, (q31_t)0x70E2CBC6, (q31_t)0x3BFDFECD, (q31_t)0x71120CC5, (q31_t)0x3BA51E29, (q31_t)0x71410804, (q31_t)0x3B4C18BA, (q31_t)0x716FBD68, (q31_t)0x3AF2EEB7, (q31_t)0x719E2CD2, (q31_t)0x3A99A057, (q31_t)0x71CC5626, (q31_t)0x3A402DD1, (q31_t)0x71FA3948, (q31_t)0x39E6975D, (q31_t)0x7227D61C, (q31_t)0x398CDD32, (q31_t)0x72552C84, (q31_t)0x3932FF87, (q31_t)0x72823C66, (q31_t)0x38D8FE93, (q31_t)0x72AF05A6, (q31_t)0x387EDA8E, (q31_t)0x72DB8828, (q31_t)0x382493B0, (q31_t)0x7307C3D0, (q31_t)0x37CA2A30, (q31_t)0x7333B883, (q31_t)0x376F9E46, (q31_t)0x735F6626, (q31_t)0x3714F02A, (q31_t)0x738ACC9E, (q31_t)0x36BA2013, (q31_t)0x73B5EBD0, (q31_t)0x365F2E3B, (q31_t)0x73E0C3A3, (q31_t)0x36041AD9, (q31_t)0x740B53FA, (q31_t)0x35A8E624, (q31_t)0x74359CBD, (q31_t)0x354D9056, (q31_t)0x745F9DD1, (q31_t)0x34F219A7, (q31_t)0x7489571B, (q31_t)0x3496824F, (q31_t)0x74B2C883, (q31_t)0x343ACA87, (q31_t)0x74DBF1EF, (q31_t)0x33DEF287, (q31_t)0x7504D345, (q31_t)0x3382FA88, (q31_t)0x752D6C6C, (q31_t)0x3326E2C2, (q31_t)0x7555BD4B, (q31_t)0x32CAAB6F, (q31_t)0x757DC5CA, (q31_t)0x326E54C7, (q31_t)0x75A585CF, (q31_t)0x3211DF03, (q31_t)0x75CCFD42, (q31_t)0x31B54A5D, (q31_t)0x75F42C0A, (q31_t)0x3158970D, (q31_t)0x761B1211, (q31_t)0x30FBC54D, (q31_t)0x7641AF3C, (q31_t)0x309ED555, (q31_t)0x76680376, (q31_t)0x3041C760, (q31_t)0x768E0EA5, (q31_t)0x2FE49BA6, (q31_t)0x76B3D0B3, (q31_t)0x2F875262, (q31_t)0x76D94988, (q31_t)0x2F29EBCC, (q31_t)0x76FE790E, (q31_t)0x2ECC681E, (q31_t)0x77235F2D, (q31_t)0x2E6EC792, (q31_t)0x7747FBCE, (q31_t)0x2E110A62, (q31_t)0x776C4EDB, (q31_t)0x2DB330C7, (q31_t)0x7790583D, (q31_t)0x2D553AFB, (q31_t)0x77B417DF, (q31_t)0x2CF72939, (q31_t)0x77D78DAA, (q31_t)0x2C98FBBA, (q31_t)0x77FAB988, (q31_t)0x2C3AB2B9, (q31_t)0x781D9B64, (q31_t)0x2BDC4E6F, (q31_t)0x78403328, (q31_t)0x2B7DCF17, (q31_t)0x786280BF, (q31_t)0x2B1F34EB, (q31_t)0x78848413, (q31_t)0x2AC08025, (q31_t)0x78A63D10, (q31_t)0x2A61B101, (q31_t)0x78C7ABA1, (q31_t)0x2A02C7B8, (q31_t)0x78E8CFB1, (q31_t)0x29A3C484, (q31_t)0x7909A92C, (q31_t)0x2944A7A2, (q31_t)0x792A37FE, (q31_t)0x28E5714A, (q31_t)0x794A7C11, (q31_t)0x288621B9, (q31_t)0x796A7554, (q31_t)0x2826B928, (q31_t)0x798A23B1, (q31_t)0x27C737D2, (q31_t)0x79A98715, (q31_t)0x27679DF4, (q31_t)0x79C89F6D, (q31_t)0x2707EBC6, (q31_t)0x79E76CA6, (q31_t)0x26A82185, (q31_t)0x7A05EEAD, (q31_t)0x26483F6C, (q31_t)0x7A24256E, (q31_t)0x25E845B5, (q31_t)0x7A4210D8, (q31_t)0x2588349D, (q31_t)0x7A5FB0D8, (q31_t)0x25280C5D, (q31_t)0x7A7D055B, (q31_t)0x24C7CD32, (q31_t)0x7A9A0E4F, (q31_t)0x24677757, (q31_t)0x7AB6CBA3, (q31_t)0x24070B07, (q31_t)0x7AD33D45, (q31_t)0x23A6887E, (q31_t)0x7AEF6323, (q31_t)0x2345EFF7, (q31_t)0x7B0B3D2C, (q31_t)0x22E541AE, (q31_t)0x7B26CB4F, (q31_t)0x22847DDF, (q31_t)0x7B420D7A, (q31_t)0x2223A4C5, (q31_t)0x7B5D039D, (q31_t)0x21C2B69C, (q31_t)0x7B77ADA8, (q31_t)0x2161B39F, (q31_t)0x7B920B89, (q31_t)0x21009C0B, (q31_t)0x7BAC1D31, (q31_t)0x209F701C, (q31_t)0x7BC5E28F, (q31_t)0x203E300D, (q31_t)0x7BDF5B94, (q31_t)0x1FDCDC1A, (q31_t)0x7BF88830, (q31_t)0x1F7B7480, (q31_t)0x7C116853, (q31_t)0x1F19F97B, (q31_t)0x7C29FBEE, (q31_t)0x1EB86B46, (q31_t)0x7C4242F2, (q31_t)0x1E56CA1E, (q31_t)0x7C5A3D4F, (q31_t)0x1DF5163F, (q31_t)0x7C71EAF8, (q31_t)0x1D934FE5, (q31_t)0x7C894BDD, (q31_t)0x1D31774D, (q31_t)0x7CA05FF1, (q31_t)0x1CCF8CB3, (q31_t)0x7CB72724, (q31_t)0x1C6D9053, (q31_t)0x7CCDA168, (q31_t)0x1C0B826A, (q31_t)0x7CE3CEB1, (q31_t)0x1BA96334, (q31_t)0x7CF9AEF0, (q31_t)0x1B4732EF, (q31_t)0x7D0F4218, (q31_t)0x1AE4F1D6, (q31_t)0x7D24881A, (q31_t)0x1A82A025, (q31_t)0x7D3980EC, (q31_t)0x1A203E1B, (q31_t)0x7D4E2C7E, (q31_t)0x19BDCBF2, (q31_t)0x7D628AC5, (q31_t)0x195B49E9, (q31_t)0x7D769BB5, (q31_t)0x18F8B83C, (q31_t)0x7D8A5F3F, (q31_t)0x18961727, (q31_t)0x7D9DD55A, (q31_t)0x183366E8, (q31_t)0x7DB0FDF7, (q31_t)0x17D0A7BB, (q31_t)0x7DC3D90D, (q31_t)0x176DD9DE, (q31_t)0x7DD6668E, (q31_t)0x170AFD8D, (q31_t)0x7DE8A670, (q31_t)0x16A81305, (q31_t)0x7DFA98A7, (q31_t)0x16451A83, (q31_t)0x7E0C3D29, (q31_t)0x15E21444, (q31_t)0x7E1D93E9, (q31_t)0x157F0086, (q31_t)0x7E2E9CDF, (q31_t)0x151BDF85, (q31_t)0x7E3F57FE, (q31_t)0x14B8B17F, (q31_t)0x7E4FC53E, (q31_t)0x145576B1, (q31_t)0x7E5FE493, (q31_t)0x13F22F57, (q31_t)0x7E6FB5F3, (q31_t)0x138EDBB0, (q31_t)0x7E7F3956, (q31_t)0x132B7BF9, (q31_t)0x7E8E6EB1, (q31_t)0x12C8106E, (q31_t)0x7E9D55FC, (q31_t)0x1264994E, (q31_t)0x7EABEF2C, (q31_t)0x120116D4, (q31_t)0x7EBA3A39, (q31_t)0x119D8940, (q31_t)0x7EC8371A, (q31_t)0x1139F0CE, (q31_t)0x7ED5E5C6, (q31_t)0x10D64DBC, (q31_t)0x7EE34635, (q31_t)0x1072A047, (q31_t)0x7EF0585F, (q31_t)0x100EE8AD, (q31_t)0x7EFD1C3C, (q31_t)0x0FAB272B, (q31_t)0x7F0991C3, (q31_t)0x0F475BFE, (q31_t)0x7F15B8EE, (q31_t)0x0EE38765, (q31_t)0x7F2191B4, (q31_t)0x0E7FA99D, (q31_t)0x7F2D1C0E, (q31_t)0x0E1BC2E3, (q31_t)0x7F3857F5, (q31_t)0x0DB7D376, (q31_t)0x7F434563, (q31_t)0x0D53DB92, (q31_t)0x7F4DE450, (q31_t)0x0CEFDB75, (q31_t)0x7F5834B6, (q31_t)0x0C8BD35E, (q31_t)0x7F62368F, (q31_t)0x0C27C389, (q31_t)0x7F6BE9D4, (q31_t)0x0BC3AC35, (q31_t)0x7F754E7F, (q31_t)0x0B5F8D9F, (q31_t)0x7F7E648B, (q31_t)0x0AFB6805, (q31_t)0x7F872BF3, (q31_t)0x0A973BA5, (q31_t)0x7F8FA4AF, (q31_t)0x0A3308BC, (q31_t)0x7F97CEBC, (q31_t)0x09CECF89, (q31_t)0x7F9FAA15, (q31_t)0x096A9049, (q31_t)0x7FA736B4, (q31_t)0x09064B3A, (q31_t)0x7FAE7494, (q31_t)0x08A2009A, (q31_t)0x7FB563B2, (q31_t)0x083DB0A7, (q31_t)0x7FBC040A, (q31_t)0x07D95B9E, (q31_t)0x7FC25596, (q31_t)0x077501BE, (q31_t)0x7FC85853, (q31_t)0x0710A344, (q31_t)0x7FCE0C3E, (q31_t)0x06AC406F, (q31_t)0x7FD37152, (q31_t)0x0647D97C, (q31_t)0x7FD8878D, (q31_t)0x05E36EA9, (q31_t)0x7FDD4EEC, (q31_t)0x057F0034, (q31_t)0x7FE1C76B, (q31_t)0x051A8E5C, (q31_t)0x7FE5F108, (q31_t)0x04B6195D, (q31_t)0x7FE9CBC0, (q31_t)0x0451A176, (q31_t)0x7FED5790, (q31_t)0x03ED26E6, (q31_t)0x7FF09477, (q31_t)0x0388A9E9, (q31_t)0x7FF38273, (q31_t)0x03242ABF, (q31_t)0x7FF62182, (q31_t)0x02BFA9A4, (q31_t)0x7FF871A1, (q31_t)0x025B26D7, (q31_t)0x7FFA72D1, (q31_t)0x01F6A296, (q31_t)0x7FFC250F, (q31_t)0x01921D1F, (q31_t)0x7FFD885A, (q31_t)0x012D96B0, (q31_t)0x7FFE9CB2, (q31_t)0x00C90F88, (q31_t)0x7FFF6216, (q31_t)0x006487E3, (q31_t)0x7FFFD885, (q31_t)0x00000000, (q31_t)0x7FFFFFFF, (q31_t)0xFF9B781D, (q31_t)0x7FFFD885, (q31_t)0xFF36F078, (q31_t)0x7FFF6216, (q31_t)0xFED2694F, (q31_t)0x7FFE9CB2, (q31_t)0xFE6DE2E0, (q31_t)0x7FFD885A, (q31_t)0xFE095D69, (q31_t)0x7FFC250F, (q31_t)0xFDA4D928, (q31_t)0x7FFA72D1, (q31_t)0xFD40565B, (q31_t)0x7FF871A1, (q31_t)0xFCDBD541, (q31_t)0x7FF62182, (q31_t)0xFC775616, (q31_t)0x7FF38273, (q31_t)0xFC12D919, (q31_t)0x7FF09477, (q31_t)0xFBAE5E89, (q31_t)0x7FED5790, (q31_t)0xFB49E6A2, (q31_t)0x7FE9CBC0, (q31_t)0xFAE571A4, (q31_t)0x7FE5F108, (q31_t)0xFA80FFCB, (q31_t)0x7FE1C76B, (q31_t)0xFA1C9156, (q31_t)0x7FDD4EEC, (q31_t)0xF9B82683, (q31_t)0x7FD8878D, (q31_t)0xF953BF90, (q31_t)0x7FD37152, (q31_t)0xF8EF5CBB, (q31_t)0x7FCE0C3E, (q31_t)0xF88AFE41, (q31_t)0x7FC85853, (q31_t)0xF826A461, (q31_t)0x7FC25596, (q31_t)0xF7C24F58, (q31_t)0x7FBC040A, (q31_t)0xF75DFF65, (q31_t)0x7FB563B2, (q31_t)0xF6F9B4C5, (q31_t)0x7FAE7494, (q31_t)0xF6956FB6, (q31_t)0x7FA736B4, (q31_t)0xF6313076, (q31_t)0x7F9FAA15, (q31_t)0xF5CCF743, (q31_t)0x7F97CEBC, (q31_t)0xF568C45A, (q31_t)0x7F8FA4AF, (q31_t)0xF50497FA, (q31_t)0x7F872BF3, (q31_t)0xF4A07260, (q31_t)0x7F7E648B, (q31_t)0xF43C53CA, (q31_t)0x7F754E7F, (q31_t)0xF3D83C76, (q31_t)0x7F6BE9D4, (q31_t)0xF3742CA1, (q31_t)0x7F62368F, (q31_t)0xF310248A, (q31_t)0x7F5834B6, (q31_t)0xF2AC246D, (q31_t)0x7F4DE450, (q31_t)0xF2482C89, (q31_t)0x7F434563, (q31_t)0xF1E43D1C, (q31_t)0x7F3857F5, (q31_t)0xF1805662, (q31_t)0x7F2D1C0E, (q31_t)0xF11C789A, (q31_t)0x7F2191B4, (q31_t)0xF0B8A401, (q31_t)0x7F15B8EE, (q31_t)0xF054D8D4, (q31_t)0x7F0991C3, (q31_t)0xEFF11752, (q31_t)0x7EFD1C3C, (q31_t)0xEF8D5FB8, (q31_t)0x7EF0585F, (q31_t)0xEF29B243, (q31_t)0x7EE34635, (q31_t)0xEEC60F31, (q31_t)0x7ED5E5C6, (q31_t)0xEE6276BF, (q31_t)0x7EC8371A, (q31_t)0xEDFEE92B, (q31_t)0x7EBA3A39, (q31_t)0xED9B66B2, (q31_t)0x7EABEF2C, (q31_t)0xED37EF91, (q31_t)0x7E9D55FC, (q31_t)0xECD48406, (q31_t)0x7E8E6EB1, (q31_t)0xEC71244F, (q31_t)0x7E7F3956, (q31_t)0xEC0DD0A8, (q31_t)0x7E6FB5F3, (q31_t)0xEBAA894E, (q31_t)0x7E5FE493, (q31_t)0xEB474E80, (q31_t)0x7E4FC53E, (q31_t)0xEAE4207A, (q31_t)0x7E3F57FE, (q31_t)0xEA80FF79, (q31_t)0x7E2E9CDF, (q31_t)0xEA1DEBBB, (q31_t)0x7E1D93E9, (q31_t)0xE9BAE57C, (q31_t)0x7E0C3D29, (q31_t)0xE957ECFB, (q31_t)0x7DFA98A7, (q31_t)0xE8F50273, (q31_t)0x7DE8A670, (q31_t)0xE8922621, (q31_t)0x7DD6668E, (q31_t)0xE82F5844, (q31_t)0x7DC3D90D, (q31_t)0xE7CC9917, (q31_t)0x7DB0FDF7, (q31_t)0xE769E8D8, (q31_t)0x7D9DD55A, (q31_t)0xE70747C3, (q31_t)0x7D8A5F3F, (q31_t)0xE6A4B616, (q31_t)0x7D769BB5, (q31_t)0xE642340D, (q31_t)0x7D628AC5, (q31_t)0xE5DFC1E4, (q31_t)0x7D4E2C7E, (q31_t)0xE57D5FDA, (q31_t)0x7D3980EC, (q31_t)0xE51B0E2A, (q31_t)0x7D24881A, (q31_t)0xE4B8CD10, (q31_t)0x7D0F4218, (q31_t)0xE4569CCB, (q31_t)0x7CF9AEF0, (q31_t)0xE3F47D95, (q31_t)0x7CE3CEB1, (q31_t)0xE3926FAC, (q31_t)0x7CCDA168, (q31_t)0xE330734C, (q31_t)0x7CB72724, (q31_t)0xE2CE88B2, (q31_t)0x7CA05FF1, (q31_t)0xE26CB01A, (q31_t)0x7C894BDD, (q31_t)0xE20AE9C1, (q31_t)0x7C71EAF8, (q31_t)0xE1A935E1, (q31_t)0x7C5A3D4F, (q31_t)0xE14794B9, (q31_t)0x7C4242F2, (q31_t)0xE0E60684, (q31_t)0x7C29FBEE, (q31_t)0xE0848B7F, (q31_t)0x7C116853, (q31_t)0xE02323E5, (q31_t)0x7BF88830, (q31_t)0xDFC1CFF2, (q31_t)0x7BDF5B94, (q31_t)0xDF608FE3, (q31_t)0x7BC5E28F, (q31_t)0xDEFF63F4, (q31_t)0x7BAC1D31, (q31_t)0xDE9E4C60, (q31_t)0x7B920B89, (q31_t)0xDE3D4963, (q31_t)0x7B77ADA8, (q31_t)0xDDDC5B3A, (q31_t)0x7B5D039D, (q31_t)0xDD7B8220, (q31_t)0x7B420D7A, (q31_t)0xDD1ABE51, (q31_t)0x7B26CB4F, (q31_t)0xDCBA1008, (q31_t)0x7B0B3D2C, (q31_t)0xDC597781, (q31_t)0x7AEF6323, (q31_t)0xDBF8F4F8, (q31_t)0x7AD33D45, (q31_t)0xDB9888A8, (q31_t)0x7AB6CBA3, (q31_t)0xDB3832CD, (q31_t)0x7A9A0E4F, (q31_t)0xDAD7F3A2, (q31_t)0x7A7D055B, (q31_t)0xDA77CB62, (q31_t)0x7A5FB0D8, (q31_t)0xDA17BA4A, (q31_t)0x7A4210D8, (q31_t)0xD9B7C093, (q31_t)0x7A24256E, (q31_t)0xD957DE7A, (q31_t)0x7A05EEAD, (q31_t)0xD8F81439, (q31_t)0x79E76CA6, (q31_t)0xD898620C, (q31_t)0x79C89F6D, (q31_t)0xD838C82D, (q31_t)0x79A98715, (q31_t)0xD7D946D7, (q31_t)0x798A23B1, (q31_t)0xD779DE46, (q31_t)0x796A7554, (q31_t)0xD71A8EB5, (q31_t)0x794A7C11, (q31_t)0xD6BB585D, (q31_t)0x792A37FE, (q31_t)0xD65C3B7B, (q31_t)0x7909A92C, (q31_t)0xD5FD3847, (q31_t)0x78E8CFB1, (q31_t)0xD59E4EFE, (q31_t)0x78C7ABA1, (q31_t)0xD53F7FDA, (q31_t)0x78A63D10, (q31_t)0xD4E0CB14, (q31_t)0x78848413, (q31_t)0xD48230E8, (q31_t)0x786280BF, (q31_t)0xD423B190, (q31_t)0x78403328, (q31_t)0xD3C54D46, (q31_t)0x781D9B64, (q31_t)0xD3670445, (q31_t)0x77FAB988, (q31_t)0xD308D6C6, (q31_t)0x77D78DAA, (q31_t)0xD2AAC504, (q31_t)0x77B417DF, (q31_t)0xD24CCF38, (q31_t)0x7790583D, (q31_t)0xD1EEF59E, (q31_t)0x776C4EDB, (q31_t)0xD191386D, (q31_t)0x7747FBCE, (q31_t)0xD13397E1, (q31_t)0x77235F2D, (q31_t)0xD0D61433, (q31_t)0x76FE790E, (q31_t)0xD078AD9D, (q31_t)0x76D94988, (q31_t)0xD01B6459, (q31_t)0x76B3D0B3, (q31_t)0xCFBE389F, (q31_t)0x768E0EA5, (q31_t)0xCF612AAA, (q31_t)0x76680376, (q31_t)0xCF043AB2, (q31_t)0x7641AF3C, (q31_t)0xCEA768F2, (q31_t)0x761B1211, (q31_t)0xCE4AB5A2, (q31_t)0x75F42C0A, (q31_t)0xCDEE20FC, (q31_t)0x75CCFD42, (q31_t)0xCD91AB38, (q31_t)0x75A585CF, (q31_t)0xCD355490, (q31_t)0x757DC5CA, (q31_t)0xCCD91D3D, (q31_t)0x7555BD4B, (q31_t)0xCC7D0577, (q31_t)0x752D6C6C, (q31_t)0xCC210D78, (q31_t)0x7504D345, (q31_t)0xCBC53578, (q31_t)0x74DBF1EF, (q31_t)0xCB697DB0, (q31_t)0x74B2C883, (q31_t)0xCB0DE658, (q31_t)0x7489571B, (q31_t)0xCAB26FA9, (q31_t)0x745F9DD1, (q31_t)0xCA5719DB, (q31_t)0x74359CBD, (q31_t)0xC9FBE527, (q31_t)0x740B53FA, (q31_t)0xC9A0D1C4, (q31_t)0x73E0C3A3, (q31_t)0xC945DFEC, (q31_t)0x73B5EBD0, (q31_t)0xC8EB0FD6, (q31_t)0x738ACC9E, (q31_t)0xC89061BA, (q31_t)0x735F6626, (q31_t)0xC835D5D0, (q31_t)0x7333B883, (q31_t)0xC7DB6C50, (q31_t)0x7307C3D0, (q31_t)0xC7812571, (q31_t)0x72DB8828, (q31_t)0xC727016C, (q31_t)0x72AF05A6, (q31_t)0xC6CD0079, (q31_t)0x72823C66, (q31_t)0xC67322CD, (q31_t)0x72552C84, (q31_t)0xC61968A2, (q31_t)0x7227D61C, (q31_t)0xC5BFD22E, (q31_t)0x71FA3948, (q31_t)0xC5665FA8, (q31_t)0x71CC5626, (q31_t)0xC50D1148, (q31_t)0x719E2CD2, (q31_t)0xC4B3E746, (q31_t)0x716FBD68, (q31_t)0xC45AE1D7, (q31_t)0x71410804, (q31_t)0xC4020132, (q31_t)0x71120CC5, (q31_t)0xC3A9458F, (q31_t)0x70E2CBC6, (q31_t)0xC350AF25, (q31_t)0x70B34524, (q31_t)0xC2F83E2A, (q31_t)0x708378FE, (q31_t)0xC29FF2D4, (q31_t)0x70536771, (q31_t)0xC247CD5A, (q31_t)0x70231099, (q31_t)0xC1EFCDF2, (q31_t)0x6FF27496, (q31_t)0xC197F4D3, (q31_t)0x6FC19385, (q31_t)0xC1404233, (q31_t)0x6F906D84, (q31_t)0xC0E8B648, (q31_t)0x6F5F02B1, (q31_t)0xC0915147, (q31_t)0x6F2D532C, (q31_t)0xC03A1368, (q31_t)0x6EFB5F12, (q31_t)0xBFE2FCDF, (q31_t)0x6EC92682, (q31_t)0xBF8C0DE2, (q31_t)0x6E96A99C, (q31_t)0xBF3546A8, (q31_t)0x6E63E87F, (q31_t)0xBEDEA765, (q31_t)0x6E30E349, (q31_t)0xBE88304F, (q31_t)0x6DFD9A1B, (q31_t)0xBE31E19B, (q31_t)0x6DCA0D14, (q31_t)0xBDDBBB7F, (q31_t)0x6D963C54, (q31_t)0xBD85BE2F, (q31_t)0x6D6227FA, (q31_t)0xBD2FE9E1, (q31_t)0x6D2DD027, (q31_t)0xBCDA3ECA, (q31_t)0x6CF934FB, (q31_t)0xBC84BD1E, (q31_t)0x6CC45697, (q31_t)0xBC2F6513, (q31_t)0x6C8F351C, (q31_t)0xBBDA36DC, (q31_t)0x6C59D0A9, (q31_t)0xBB8532AF, (q31_t)0x6C242960, (q31_t)0xBB3058C0, (q31_t)0x6BEE3F62, (q31_t)0xBADBA943, (q31_t)0x6BB812D0, (q31_t)0xBA87246C, (q31_t)0x6B81A3CD, (q31_t)0xBA32CA70, (q31_t)0x6B4AF278, (q31_t)0xB9DE9B83, (q31_t)0x6B13FEF5, (q31_t)0xB98A97D8, (q31_t)0x6ADCC964, (q31_t)0xB936BFA3, (q31_t)0x6AA551E8, (q31_t)0xB8E31319, (q31_t)0x6A6D98A4, (q31_t)0xB88F926C, (q31_t)0x6A359DB9, (q31_t)0xB83C3DD1, (q31_t)0x69FD614A, (q31_t)0xB7E9157A, (q31_t)0x69C4E37A, (q31_t)0xB796199B, (q31_t)0x698C246C, (q31_t)0xB7434A67, (q31_t)0x69532442, (q31_t)0xB6F0A811, (q31_t)0x6919E320, (q31_t)0xB69E32CD, (q31_t)0x68E06129, (q31_t)0xB64BEACC, (q31_t)0x68A69E81, (q31_t)0xB5F9D042, (q31_t)0x686C9B4B, (q31_t)0xB5A7E362, (q31_t)0x683257AA, (q31_t)0xB556245E, (q31_t)0x67F7D3C4, (q31_t)0xB5049368, (q31_t)0x67BD0FBC, (q31_t)0xB4B330B2, (q31_t)0x67820BB6, (q31_t)0xB461FC70, (q31_t)0x6746C7D7, (q31_t)0xB410F6D2, (q31_t)0x670B4443, (q31_t)0xB3C0200C, (q31_t)0x66CF811F, (q31_t)0xB36F784E, (q31_t)0x66937E90, (q31_t)0xB31EFFCB, (q31_t)0x66573CBB, (q31_t)0xB2CEB6B5, (q31_t)0x661ABBC5, (q31_t)0xB27E9D3B, (q31_t)0x65DDFBD3, (q31_t)0xB22EB392, (q31_t)0x65A0FD0B, (q31_t)0xB1DEF9E8, (q31_t)0x6563BF92, (q31_t)0xB18F7070, (q31_t)0x6526438E, (q31_t)0xB140175B, (q31_t)0x64E88926, (q31_t)0xB0F0EEDA, (q31_t)0x64AA907F, (q31_t)0xB0A1F71C, (q31_t)0x646C59BF, (q31_t)0xB0533055, (q31_t)0x642DE50D, (q31_t)0xB0049AB2, (q31_t)0x63EF328F, (q31_t)0xAFB63667, (q31_t)0x63B0426D, (q31_t)0xAF6803A1, (q31_t)0x637114CC, (q31_t)0xAF1A0293, (q31_t)0x6331A9D4, (q31_t)0xAECC336B, (q31_t)0x62F201AC, (q31_t)0xAE7E965B, (q31_t)0x62B21C7B, (q31_t)0xAE312B91, (q31_t)0x6271FA69, (q31_t)0xADE3F33E, (q31_t)0x62319B9D, (q31_t)0xAD96ED91, (q31_t)0x61F1003E, (q31_t)0xAD4A1ABA, (q31_t)0x61B02876, (q31_t)0xACFD7AE8, (q31_t)0x616F146B, (q31_t)0xACB10E4A, (q31_t)0x612DC446, (q31_t)0xAC64D510, (q31_t)0x60EC3830, (q31_t)0xAC18CF68, (q31_t)0x60AA704F, (q31_t)0xABCCFD82, (q31_t)0x60686CCE, (q31_t)0xAB815F8C, (q31_t)0x60262DD5, (q31_t)0xAB35F5B5, (q31_t)0x5FE3B38D, (q31_t)0xAAEAC02B, (q31_t)0x5FA0FE1E, (q31_t)0xAA9FBF1D, (q31_t)0x5F5E0DB3, (q31_t)0xAA54F2B9, (q31_t)0x5F1AE273, (q31_t)0xAA0A5B2D, (q31_t)0x5ED77C89, (q31_t)0xA9BFF8A8, (q31_t)0x5E93DC1F, (q31_t)0xA975CB56, (q31_t)0x5E50015D, (q31_t)0xA92BD366, (q31_t)0x5E0BEC6E, (q31_t)0xA8E21106, (q31_t)0x5DC79D7C, (q31_t)0xA8988463, (q31_t)0x5D8314B0, (q31_t)0xA84F2DA9, (q31_t)0x5D3E5236, (q31_t)0xA8060D08, (q31_t)0x5CF95638, (q31_t)0xA7BD22AB, (q31_t)0x5CB420DF, (q31_t)0xA7746EC0, (q31_t)0x5C6EB258, (q31_t)0xA72BF173, (q31_t)0x5C290ACC, (q31_t)0xA6E3AAF2, (q31_t)0x5BE32A67, (q31_t)0xA69B9B68, (q31_t)0x5B9D1153, (q31_t)0xA653C302, (q31_t)0x5B56BFBD, (q31_t)0xA60C21ED, (q31_t)0x5B1035CF, (q31_t)0xA5C4B855, (q31_t)0x5AC973B4, (q31_t)0xA57D8666, (q31_t)0x5A82799A, (q31_t)0xA5368C4B, (q31_t)0x5A3B47AA, (q31_t)0xA4EFCA31, (q31_t)0x59F3DE12, (q31_t)0xA4A94042, (q31_t)0x59AC3CFD, (q31_t)0xA462EEAC, (q31_t)0x59646497, (q31_t)0xA41CD598, (q31_t)0x591C550E, (q31_t)0xA3D6F533, (q31_t)0x58D40E8C, (q31_t)0xA3914DA7, (q31_t)0x588B913F, (q31_t)0xA34BDF20, (q31_t)0x5842DD54, (q31_t)0xA306A9C7, (q31_t)0x57F9F2F7, (q31_t)0xA2C1ADC9, (q31_t)0x57B0D256, (q31_t)0xA27CEB4F, (q31_t)0x57677B9D, (q31_t)0xA2386283, (q31_t)0x571DEEF9, (q31_t)0xA1F41391, (q31_t)0x56D42C99, (q31_t)0xA1AFFEA2, (q31_t)0x568A34A9, (q31_t)0xA16C23E1, (q31_t)0x56400757, (q31_t)0xA1288376, (q31_t)0x55F5A4D2, (q31_t)0xA0E51D8C, (q31_t)0x55AB0D46, (q31_t)0xA0A1F24C, (q31_t)0x556040E2, (q31_t)0xA05F01E1, (q31_t)0x55153FD4, (q31_t)0xA01C4C72, (q31_t)0x54CA0A4A, (q31_t)0x9FD9D22A, (q31_t)0x547EA073, (q31_t)0x9F979331, (q31_t)0x5433027D, (q31_t)0x9F558FB0, (q31_t)0x53E73097, (q31_t)0x9F13C7D0, (q31_t)0x539B2AEF, (q31_t)0x9ED23BB9, (q31_t)0x534EF1B5, (q31_t)0x9E90EB94, (q31_t)0x53028517, (q31_t)0x9E4FD789, (q31_t)0x52B5E545, (q31_t)0x9E0EFFC1, (q31_t)0x5269126E, (q31_t)0x9DCE6462, (q31_t)0x521C0CC1, (q31_t)0x9D8E0596, (q31_t)0x51CED46E, (q31_t)0x9D4DE384, (q31_t)0x518169A4, (q31_t)0x9D0DFE53, (q31_t)0x5133CC94, (q31_t)0x9CCE562B, (q31_t)0x50E5FD6C, (q31_t)0x9C8EEB33, (q31_t)0x5097FC5E, (q31_t)0x9C4FBD92, (q31_t)0x5049C999, (q31_t)0x9C10CD70, (q31_t)0x4FFB654D, (q31_t)0x9BD21AF2, (q31_t)0x4FACCFAB, (q31_t)0x9B93A640, (q31_t)0x4F5E08E3, (q31_t)0x9B556F80, (q31_t)0x4F0F1126, (q31_t)0x9B1776D9, (q31_t)0x4EBFE8A4, (q31_t)0x9AD9BC71, (q31_t)0x4E708F8F, (q31_t)0x9A9C406D, (q31_t)0x4E210617, (q31_t)0x9A5F02F5, (q31_t)0x4DD14C6E, (q31_t)0x9A22042C, (q31_t)0x4D8162C4, (q31_t)0x99E5443A, (q31_t)0x4D31494B, (q31_t)0x99A8C344, (q31_t)0x4CE10034, (q31_t)0x996C816F, (q31_t)0x4C9087B1, (q31_t)0x99307EE0, (q31_t)0x4C3FDFF3, (q31_t)0x98F4BBBC, (q31_t)0x4BEF092D, (q31_t)0x98B93828, (q31_t)0x4B9E038F, (q31_t)0x987DF449, (q31_t)0x4B4CCF4D, (q31_t)0x9842F043, (q31_t)0x4AFB6C97, (q31_t)0x98082C3B, (q31_t)0x4AA9DBA1, (q31_t)0x97CDA855, (q31_t)0x4A581C9D, (q31_t)0x979364B5, (q31_t)0x4A062FBD, (q31_t)0x9759617E, (q31_t)0x49B41533, (q31_t)0x971F9ED6, (q31_t)0x4961CD32, (q31_t)0x96E61CDF, (q31_t)0x490F57EE, (q31_t)0x96ACDBBD, (q31_t)0x48BCB598, (q31_t)0x9673DB94, (q31_t)0x4869E664, (q31_t)0x963B1C85, (q31_t)0x4816EA85, (q31_t)0x96029EB5, (q31_t)0x47C3C22E, (q31_t)0x95CA6246, (q31_t)0x47706D93, (q31_t)0x9592675B, (q31_t)0x471CECE6, (q31_t)0x955AAE17, (q31_t)0x46C9405C, (q31_t)0x9523369B, (q31_t)0x46756827, (q31_t)0x94EC010B, (q31_t)0x4621647C, (q31_t)0x94B50D87, (q31_t)0x45CD358F, (q31_t)0x947E5C32, (q31_t)0x4578DB93, (q31_t)0x9447ED2F, (q31_t)0x452456BC, (q31_t)0x9411C09D, (q31_t)0x44CFA73F, (q31_t)0x93DBD69F, (q31_t)0x447ACD50, (q31_t)0x93A62F56, (q31_t)0x4425C923, (q31_t)0x9370CAE4, (q31_t)0x43D09AEC, (q31_t)0x933BA968, (q31_t)0x437B42E1, (q31_t)0x9306CB04, (q31_t)0x4325C135, (q31_t)0x92D22FD8, (q31_t)0x42D0161E, (q31_t)0x929DD805, (q31_t)0x427A41D0, (q31_t)0x9269C3AC, (q31_t)0x42244480, (q31_t)0x9235F2EB, (q31_t)0x41CE1E64, (q31_t)0x920265E4, (q31_t)0x4177CFB0, (q31_t)0x91CF1CB6, (q31_t)0x4121589A, (q31_t)0x919C1780, (q31_t)0x40CAB957, (q31_t)0x91695663, (q31_t)0x4073F21D, (q31_t)0x9136D97D, (q31_t)0x401D0320, (q31_t)0x9104A0ED, (q31_t)0x3FC5EC97, (q31_t)0x90D2ACD3, (q31_t)0x3F6EAEB8, (q31_t)0x90A0FD4E, (q31_t)0x3F1749B7, (q31_t)0x906F927B, (q31_t)0x3EBFBDCC, (q31_t)0x903E6C7A, (q31_t)0x3E680B2C, (q31_t)0x900D8B69, (q31_t)0x3E10320D, (q31_t)0x8FDCEF66, (q31_t)0x3DB832A5, (q31_t)0x8FAC988E, (q31_t)0x3D600D2B, (q31_t)0x8F7C8701, (q31_t)0x3D07C1D5, (q31_t)0x8F4CBADB, (q31_t)0x3CAF50DA, (q31_t)0x8F1D343A, (q31_t)0x3C56BA70, (q31_t)0x8EEDF33B, (q31_t)0x3BFDFECD, (q31_t)0x8EBEF7FB, (q31_t)0x3BA51E29, (q31_t)0x8E904298, (q31_t)0x3B4C18BA, (q31_t)0x8E61D32D, (q31_t)0x3AF2EEB7, (q31_t)0x8E33A9D9, (q31_t)0x3A99A057, (q31_t)0x8E05C6B7, (q31_t)0x3A402DD1, (q31_t)0x8DD829E4, (q31_t)0x39E6975D, (q31_t)0x8DAAD37B, (q31_t)0x398CDD32, (q31_t)0x8D7DC399, (q31_t)0x3932FF87, (q31_t)0x8D50FA59, (q31_t)0x38D8FE93, (q31_t)0x8D2477D8, (q31_t)0x387EDA8E, (q31_t)0x8CF83C30, (q31_t)0x382493B0, (q31_t)0x8CCC477D, (q31_t)0x37CA2A30, (q31_t)0x8CA099D9, (q31_t)0x376F9E46, (q31_t)0x8C753361, (q31_t)0x3714F02A, (q31_t)0x8C4A142F, (q31_t)0x36BA2013, (q31_t)0x8C1F3C5C, (q31_t)0x365F2E3B, (q31_t)0x8BF4AC05, (q31_t)0x36041AD9, (q31_t)0x8BCA6342, (q31_t)0x35A8E624, (q31_t)0x8BA0622F, (q31_t)0x354D9056, (q31_t)0x8B76A8E4, (q31_t)0x34F219A7, (q31_t)0x8B4D377C, (q31_t)0x3496824F, (q31_t)0x8B240E10, (q31_t)0x343ACA87, (q31_t)0x8AFB2CBA, (q31_t)0x33DEF287, (q31_t)0x8AD29393, (q31_t)0x3382FA88, (q31_t)0x8AAA42B4, (q31_t)0x3326E2C2, (q31_t)0x8A823A35, (q31_t)0x32CAAB6F, (q31_t)0x8A5A7A30, (q31_t)0x326E54C7, (q31_t)0x8A3302BD, (q31_t)0x3211DF03, (q31_t)0x8A0BD3F5, (q31_t)0x31B54A5D, (q31_t)0x89E4EDEE, (q31_t)0x3158970D, (q31_t)0x89BE50C3, (q31_t)0x30FBC54D, (q31_t)0x8997FC89, (q31_t)0x309ED555, (q31_t)0x8971F15A, (q31_t)0x3041C760, (q31_t)0x894C2F4C, (q31_t)0x2FE49BA6, (q31_t)0x8926B677, (q31_t)0x2F875262, (q31_t)0x890186F1, (q31_t)0x2F29EBCC, (q31_t)0x88DCA0D3, (q31_t)0x2ECC681E, (q31_t)0x88B80431, (q31_t)0x2E6EC792, (q31_t)0x8893B124, (q31_t)0x2E110A62, (q31_t)0x886FA7C2, (q31_t)0x2DB330C7, (q31_t)0x884BE820, (q31_t)0x2D553AFB, (q31_t)0x88287255, (q31_t)0x2CF72939, (q31_t)0x88054677, (q31_t)0x2C98FBBA, (q31_t)0x87E2649B, (q31_t)0x2C3AB2B9, (q31_t)0x87BFCCD7, (q31_t)0x2BDC4E6F, (q31_t)0x879D7F40, (q31_t)0x2B7DCF17, (q31_t)0x877B7BEC, (q31_t)0x2B1F34EB, (q31_t)0x8759C2EF, (q31_t)0x2AC08025, (q31_t)0x8738545E, (q31_t)0x2A61B101, (q31_t)0x8717304E, (q31_t)0x2A02C7B8, (q31_t)0x86F656D3, (q31_t)0x29A3C484, (q31_t)0x86D5C802, (q31_t)0x2944A7A2, (q31_t)0x86B583EE, (q31_t)0x28E5714A, (q31_t)0x86958AAB, (q31_t)0x288621B9, (q31_t)0x8675DC4E, (q31_t)0x2826B928, (q31_t)0x865678EA, (q31_t)0x27C737D2, (q31_t)0x86376092, (q31_t)0x27679DF4, (q31_t)0x86189359, (q31_t)0x2707EBC6, (q31_t)0x85FA1152, (q31_t)0x26A82185, (q31_t)0x85DBDA91, (q31_t)0x26483F6C, (q31_t)0x85BDEF27, (q31_t)0x25E845B5, (q31_t)0x85A04F28, (q31_t)0x2588349D, (q31_t)0x8582FAA4, (q31_t)0x25280C5D, (q31_t)0x8565F1B0, (q31_t)0x24C7CD32, (q31_t)0x8549345C, (q31_t)0x24677757, (q31_t)0x852CC2BA, (q31_t)0x24070B07, (q31_t)0x85109CDC, (q31_t)0x23A6887E, (q31_t)0x84F4C2D3, (q31_t)0x2345EFF7, (q31_t)0x84D934B0, (q31_t)0x22E541AE, (q31_t)0x84BDF285, (q31_t)0x22847DDF, (q31_t)0x84A2FC62, (q31_t)0x2223A4C5, (q31_t)0x84885257, (q31_t)0x21C2B69C, (q31_t)0x846DF476, (q31_t)0x2161B39F, (q31_t)0x8453E2CE, (q31_t)0x21009C0B, (q31_t)0x843A1D70, (q31_t)0x209F701C, (q31_t)0x8420A46B, (q31_t)0x203E300D, (q31_t)0x840777CF, (q31_t)0x1FDCDC1A, (q31_t)0x83EE97AC, (q31_t)0x1F7B7480, (q31_t)0x83D60411, (q31_t)0x1F19F97B, (q31_t)0x83BDBD0D, (q31_t)0x1EB86B46, (q31_t)0x83A5C2B0, (q31_t)0x1E56CA1E, (q31_t)0x838E1507, (q31_t)0x1DF5163F, (q31_t)0x8376B422, (q31_t)0x1D934FE5, (q31_t)0x835FA00E, (q31_t)0x1D31774D, (q31_t)0x8348D8DB, (q31_t)0x1CCF8CB3, (q31_t)0x83325E97, (q31_t)0x1C6D9053, (q31_t)0x831C314E, (q31_t)0x1C0B826A, (q31_t)0x8306510F, (q31_t)0x1BA96334, (q31_t)0x82F0BDE8, (q31_t)0x1B4732EF, (q31_t)0x82DB77E5, (q31_t)0x1AE4F1D6, (q31_t)0x82C67F13, (q31_t)0x1A82A025, (q31_t)0x82B1D381, (q31_t)0x1A203E1B, (q31_t)0x829D753A, (q31_t)0x19BDCBF2, (q31_t)0x8289644A, (q31_t)0x195B49E9, (q31_t)0x8275A0C0, (q31_t)0x18F8B83C, (q31_t)0x82622AA5, (q31_t)0x18961727, (q31_t)0x824F0208, (q31_t)0x183366E8, (q31_t)0x823C26F2, (q31_t)0x17D0A7BB, (q31_t)0x82299971, (q31_t)0x176DD9DE, (q31_t)0x8217598F, (q31_t)0x170AFD8D, (q31_t)0x82056758, (q31_t)0x16A81305, (q31_t)0x81F3C2D7, (q31_t)0x16451A83, (q31_t)0x81E26C16, (q31_t)0x15E21444, (q31_t)0x81D16320, (q31_t)0x157F0086, (q31_t)0x81C0A801, (q31_t)0x151BDF85, (q31_t)0x81B03AC1, (q31_t)0x14B8B17F, (q31_t)0x81A01B6C, (q31_t)0x145576B1, (q31_t)0x81904A0C, (q31_t)0x13F22F57, (q31_t)0x8180C6A9, (q31_t)0x138EDBB0, (q31_t)0x8171914E, (q31_t)0x132B7BF9, (q31_t)0x8162AA03, (q31_t)0x12C8106E, (q31_t)0x815410D3, (q31_t)0x1264994E, (q31_t)0x8145C5C6, (q31_t)0x120116D4, (q31_t)0x8137C8E6, (q31_t)0x119D8940, (q31_t)0x812A1A39, (q31_t)0x1139F0CE, (q31_t)0x811CB9CA, (q31_t)0x10D64DBC, (q31_t)0x810FA7A0, (q31_t)0x1072A047, (q31_t)0x8102E3C3, (q31_t)0x100EE8AD, (q31_t)0x80F66E3C, (q31_t)0x0FAB272B, (q31_t)0x80EA4712, (q31_t)0x0F475BFE, (q31_t)0x80DE6E4C, (q31_t)0x0EE38765, (q31_t)0x80D2E3F1, (q31_t)0x0E7FA99D, (q31_t)0x80C7A80A, (q31_t)0x0E1BC2E3, (q31_t)0x80BCBA9C, (q31_t)0x0DB7D376, (q31_t)0x80B21BAF, (q31_t)0x0D53DB92, (q31_t)0x80A7CB49, (q31_t)0x0CEFDB75, (q31_t)0x809DC970, (q31_t)0x0C8BD35E, (q31_t)0x8094162B, (q31_t)0x0C27C389, (q31_t)0x808AB180, (q31_t)0x0BC3AC35, (q31_t)0x80819B74, (q31_t)0x0B5F8D9F, (q31_t)0x8078D40D, (q31_t)0x0AFB6805, (q31_t)0x80705B50, (q31_t)0x0A973BA5, (q31_t)0x80683143, (q31_t)0x0A3308BC, (q31_t)0x806055EA, (q31_t)0x09CECF89, (q31_t)0x8058C94C, (q31_t)0x096A9049, (q31_t)0x80518B6B, (q31_t)0x09064B3A, (q31_t)0x804A9C4D, (q31_t)0x08A2009A, (q31_t)0x8043FBF6, (q31_t)0x083DB0A7, (q31_t)0x803DAA69, (q31_t)0x07D95B9E, (q31_t)0x8037A7AC, (q31_t)0x077501BE, (q31_t)0x8031F3C1, (q31_t)0x0710A344, (q31_t)0x802C8EAD, (q31_t)0x06AC406F, (q31_t)0x80277872, (q31_t)0x0647D97C, (q31_t)0x8022B113, (q31_t)0x05E36EA9, (q31_t)0x801E3894, (q31_t)0x057F0034, (q31_t)0x801A0EF7, (q31_t)0x051A8E5C, (q31_t)0x80163440, (q31_t)0x04B6195D, (q31_t)0x8012A86F, (q31_t)0x0451A176, (q31_t)0x800F6B88, (q31_t)0x03ED26E6, (q31_t)0x800C7D8C, (q31_t)0x0388A9E9, (q31_t)0x8009DE7D, (q31_t)0x03242ABF, (q31_t)0x80078E5E, (q31_t)0x02BFA9A4, (q31_t)0x80058D2E, (q31_t)0x025B26D7, (q31_t)0x8003DAF0, (q31_t)0x01F6A296, (q31_t)0x800277A5, (q31_t)0x01921D1F, (q31_t)0x8001634D, (q31_t)0x012D96B0, (q31_t)0x80009DE9, (q31_t)0x00C90F88, (q31_t)0x8000277A, (q31_t)0x006487E3, (q31_t)0x80000000, (q31_t)0x00000000, (q31_t)0x8000277A, (q31_t)0xFF9B781D, (q31_t)0x80009DE9, (q31_t)0xFF36F078, (q31_t)0x8001634D, (q31_t)0xFED2694F, (q31_t)0x800277A5, (q31_t)0xFE6DE2E0, (q31_t)0x8003DAF0, (q31_t)0xFE095D69, (q31_t)0x80058D2E, (q31_t)0xFDA4D928, (q31_t)0x80078E5E, (q31_t)0xFD40565B, (q31_t)0x8009DE7D, (q31_t)0xFCDBD541, (q31_t)0x800C7D8C, (q31_t)0xFC775616, (q31_t)0x800F6B88, (q31_t)0xFC12D919, (q31_t)0x8012A86F, (q31_t)0xFBAE5E89, (q31_t)0x80163440, (q31_t)0xFB49E6A2, (q31_t)0x801A0EF7, (q31_t)0xFAE571A4, (q31_t)0x801E3894, (q31_t)0xFA80FFCB, (q31_t)0x8022B113, (q31_t)0xFA1C9156, (q31_t)0x80277872, (q31_t)0xF9B82683, (q31_t)0x802C8EAD, (q31_t)0xF953BF90, (q31_t)0x8031F3C1, (q31_t)0xF8EF5CBB, (q31_t)0x8037A7AC, (q31_t)0xF88AFE41, (q31_t)0x803DAA69, (q31_t)0xF826A461, (q31_t)0x8043FBF6, (q31_t)0xF7C24F58, (q31_t)0x804A9C4D, (q31_t)0xF75DFF65, (q31_t)0x80518B6B, (q31_t)0xF6F9B4C5, (q31_t)0x8058C94C, (q31_t)0xF6956FB6, (q31_t)0x806055EA, (q31_t)0xF6313076, (q31_t)0x80683143, (q31_t)0xF5CCF743, (q31_t)0x80705B50, (q31_t)0xF568C45A, (q31_t)0x8078D40D, (q31_t)0xF50497FA, (q31_t)0x80819B74, (q31_t)0xF4A07260, (q31_t)0x808AB180, (q31_t)0xF43C53CA, (q31_t)0x8094162B, (q31_t)0xF3D83C76, (q31_t)0x809DC970, (q31_t)0xF3742CA1, (q31_t)0x80A7CB49, (q31_t)0xF310248A, (q31_t)0x80B21BAF, (q31_t)0xF2AC246D, (q31_t)0x80BCBA9C, (q31_t)0xF2482C89, (q31_t)0x80C7A80A, (q31_t)0xF1E43D1C, (q31_t)0x80D2E3F1, (q31_t)0xF1805662, (q31_t)0x80DE6E4C, (q31_t)0xF11C789A, (q31_t)0x80EA4712, (q31_t)0xF0B8A401, (q31_t)0x80F66E3C, (q31_t)0xF054D8D4, (q31_t)0x8102E3C3, (q31_t)0xEFF11752, (q31_t)0x810FA7A0, (q31_t)0xEF8D5FB8, (q31_t)0x811CB9CA, (q31_t)0xEF29B243, (q31_t)0x812A1A39, (q31_t)0xEEC60F31, (q31_t)0x8137C8E6, (q31_t)0xEE6276BF, (q31_t)0x8145C5C6, (q31_t)0xEDFEE92B, (q31_t)0x815410D3, (q31_t)0xED9B66B2, (q31_t)0x8162AA03, (q31_t)0xED37EF91, (q31_t)0x8171914E, (q31_t)0xECD48406, (q31_t)0x8180C6A9, (q31_t)0xEC71244F, (q31_t)0x81904A0C, (q31_t)0xEC0DD0A8, (q31_t)0x81A01B6C, (q31_t)0xEBAA894E, (q31_t)0x81B03AC1, (q31_t)0xEB474E80, (q31_t)0x81C0A801, (q31_t)0xEAE4207A, (q31_t)0x81D16320, (q31_t)0xEA80FF79, (q31_t)0x81E26C16, (q31_t)0xEA1DEBBB, (q31_t)0x81F3C2D7, (q31_t)0xE9BAE57C, (q31_t)0x82056758, (q31_t)0xE957ECFB, (q31_t)0x8217598F, (q31_t)0xE8F50273, (q31_t)0x82299971, (q31_t)0xE8922621, (q31_t)0x823C26F2, (q31_t)0xE82F5844, (q31_t)0x824F0208, (q31_t)0xE7CC9917, (q31_t)0x82622AA5, (q31_t)0xE769E8D8, (q31_t)0x8275A0C0, (q31_t)0xE70747C3, (q31_t)0x8289644A, (q31_t)0xE6A4B616, (q31_t)0x829D753A, (q31_t)0xE642340D, (q31_t)0x82B1D381, (q31_t)0xE5DFC1E4, (q31_t)0x82C67F13, (q31_t)0xE57D5FDA, (q31_t)0x82DB77E5, (q31_t)0xE51B0E2A, (q31_t)0x82F0BDE8, (q31_t)0xE4B8CD10, (q31_t)0x8306510F, (q31_t)0xE4569CCB, (q31_t)0x831C314E, (q31_t)0xE3F47D95, (q31_t)0x83325E97, (q31_t)0xE3926FAC, (q31_t)0x8348D8DB, (q31_t)0xE330734C, (q31_t)0x835FA00E, (q31_t)0xE2CE88B2, (q31_t)0x8376B422, (q31_t)0xE26CB01A, (q31_t)0x838E1507, (q31_t)0xE20AE9C1, (q31_t)0x83A5C2B0, (q31_t)0xE1A935E1, (q31_t)0x83BDBD0D, (q31_t)0xE14794B9, (q31_t)0x83D60411, (q31_t)0xE0E60684, (q31_t)0x83EE97AC, (q31_t)0xE0848B7F, (q31_t)0x840777CF, (q31_t)0xE02323E5, (q31_t)0x8420A46B, (q31_t)0xDFC1CFF2, (q31_t)0x843A1D70, (q31_t)0xDF608FE3, (q31_t)0x8453E2CE, (q31_t)0xDEFF63F4, (q31_t)0x846DF476, (q31_t)0xDE9E4C60, (q31_t)0x84885257, (q31_t)0xDE3D4963, (q31_t)0x84A2FC62, (q31_t)0xDDDC5B3A, (q31_t)0x84BDF285, (q31_t)0xDD7B8220, (q31_t)0x84D934B0, (q31_t)0xDD1ABE51, (q31_t)0x84F4C2D3, (q31_t)0xDCBA1008, (q31_t)0x85109CDC, (q31_t)0xDC597781, (q31_t)0x852CC2BA, (q31_t)0xDBF8F4F8, (q31_t)0x8549345C, (q31_t)0xDB9888A8, (q31_t)0x8565F1B0, (q31_t)0xDB3832CD, (q31_t)0x8582FAA4, (q31_t)0xDAD7F3A2, (q31_t)0x85A04F28, (q31_t)0xDA77CB62, (q31_t)0x85BDEF27, (q31_t)0xDA17BA4A, (q31_t)0x85DBDA91, (q31_t)0xD9B7C093, (q31_t)0x85FA1152, (q31_t)0xD957DE7A, (q31_t)0x86189359, (q31_t)0xD8F81439, (q31_t)0x86376092, (q31_t)0xD898620C, (q31_t)0x865678EA, (q31_t)0xD838C82D, (q31_t)0x8675DC4E, (q31_t)0xD7D946D7, (q31_t)0x86958AAB, (q31_t)0xD779DE46, (q31_t)0x86B583EE, (q31_t)0xD71A8EB5, (q31_t)0x86D5C802, (q31_t)0xD6BB585D, (q31_t)0x86F656D3, (q31_t)0xD65C3B7B, (q31_t)0x8717304E, (q31_t)0xD5FD3847, (q31_t)0x8738545E, (q31_t)0xD59E4EFE, (q31_t)0x8759C2EF, (q31_t)0xD53F7FDA, (q31_t)0x877B7BEC, (q31_t)0xD4E0CB14, (q31_t)0x879D7F40, (q31_t)0xD48230E8, (q31_t)0x87BFCCD7, (q31_t)0xD423B190, (q31_t)0x87E2649B, (q31_t)0xD3C54D46, (q31_t)0x88054677, (q31_t)0xD3670445, (q31_t)0x88287255, (q31_t)0xD308D6C6, (q31_t)0x884BE820, (q31_t)0xD2AAC504, (q31_t)0x886FA7C2, (q31_t)0xD24CCF38, (q31_t)0x8893B124, (q31_t)0xD1EEF59E, (q31_t)0x88B80431, (q31_t)0xD191386D, (q31_t)0x88DCA0D3, (q31_t)0xD13397E1, (q31_t)0x890186F1, (q31_t)0xD0D61433, (q31_t)0x8926B677, (q31_t)0xD078AD9D, (q31_t)0x894C2F4C, (q31_t)0xD01B6459, (q31_t)0x8971F15A, (q31_t)0xCFBE389F, (q31_t)0x8997FC89, (q31_t)0xCF612AAA, (q31_t)0x89BE50C3, (q31_t)0xCF043AB2, (q31_t)0x89E4EDEE, (q31_t)0xCEA768F2, (q31_t)0x8A0BD3F5, (q31_t)0xCE4AB5A2, (q31_t)0x8A3302BD, (q31_t)0xCDEE20FC, (q31_t)0x8A5A7A30, (q31_t)0xCD91AB38, (q31_t)0x8A823A35, (q31_t)0xCD355490, (q31_t)0x8AAA42B4, (q31_t)0xCCD91D3D, (q31_t)0x8AD29393, (q31_t)0xCC7D0577, (q31_t)0x8AFB2CBA, (q31_t)0xCC210D78, (q31_t)0x8B240E10, (q31_t)0xCBC53578, (q31_t)0x8B4D377C, (q31_t)0xCB697DB0, (q31_t)0x8B76A8E4, (q31_t)0xCB0DE658, (q31_t)0x8BA0622F, (q31_t)0xCAB26FA9, (q31_t)0x8BCA6342, (q31_t)0xCA5719DB, (q31_t)0x8BF4AC05, (q31_t)0xC9FBE527, (q31_t)0x8C1F3C5C, (q31_t)0xC9A0D1C4, (q31_t)0x8C4A142F, (q31_t)0xC945DFEC, (q31_t)0x8C753361, (q31_t)0xC8EB0FD6, (q31_t)0x8CA099D9, (q31_t)0xC89061BA, (q31_t)0x8CCC477D, (q31_t)0xC835D5D0, (q31_t)0x8CF83C30, (q31_t)0xC7DB6C50, (q31_t)0x8D2477D8, (q31_t)0xC7812571, (q31_t)0x8D50FA59, (q31_t)0xC727016C, (q31_t)0x8D7DC399, (q31_t)0xC6CD0079, (q31_t)0x8DAAD37B, (q31_t)0xC67322CD, (q31_t)0x8DD829E4, (q31_t)0xC61968A2, (q31_t)0x8E05C6B7, (q31_t)0xC5BFD22E, (q31_t)0x8E33A9D9, (q31_t)0xC5665FA8, (q31_t)0x8E61D32D, (q31_t)0xC50D1148, (q31_t)0x8E904298, (q31_t)0xC4B3E746, (q31_t)0x8EBEF7FB, (q31_t)0xC45AE1D7, (q31_t)0x8EEDF33B, (q31_t)0xC4020132, (q31_t)0x8F1D343A, (q31_t)0xC3A9458F, (q31_t)0x8F4CBADB, (q31_t)0xC350AF25, (q31_t)0x8F7C8701, (q31_t)0xC2F83E2A, (q31_t)0x8FAC988E, (q31_t)0xC29FF2D4, (q31_t)0x8FDCEF66, (q31_t)0xC247CD5A, (q31_t)0x900D8B69, (q31_t)0xC1EFCDF2, (q31_t)0x903E6C7A, (q31_t)0xC197F4D3, (q31_t)0x906F927B, (q31_t)0xC1404233, (q31_t)0x90A0FD4E, (q31_t)0xC0E8B648, (q31_t)0x90D2ACD3, (q31_t)0xC0915147, (q31_t)0x9104A0ED, (q31_t)0xC03A1368, (q31_t)0x9136D97D, (q31_t)0xBFE2FCDF, (q31_t)0x91695663, (q31_t)0xBF8C0DE2, (q31_t)0x919C1780, (q31_t)0xBF3546A8, (q31_t)0x91CF1CB6, (q31_t)0xBEDEA765, (q31_t)0x920265E4, (q31_t)0xBE88304F, (q31_t)0x9235F2EB, (q31_t)0xBE31E19B, (q31_t)0x9269C3AC, (q31_t)0xBDDBBB7F, (q31_t)0x929DD805, (q31_t)0xBD85BE2F, (q31_t)0x92D22FD8, (q31_t)0xBD2FE9E1, (q31_t)0x9306CB04, (q31_t)0xBCDA3ECA, (q31_t)0x933BA968, (q31_t)0xBC84BD1E, (q31_t)0x9370CAE4, (q31_t)0xBC2F6513, (q31_t)0x93A62F56, (q31_t)0xBBDA36DC, (q31_t)0x93DBD69F, (q31_t)0xBB8532AF, (q31_t)0x9411C09D, (q31_t)0xBB3058C0, (q31_t)0x9447ED2F, (q31_t)0xBADBA943, (q31_t)0x947E5C32, (q31_t)0xBA87246C, (q31_t)0x94B50D87, (q31_t)0xBA32CA70, (q31_t)0x94EC010B, (q31_t)0xB9DE9B83, (q31_t)0x9523369B, (q31_t)0xB98A97D8, (q31_t)0x955AAE17, (q31_t)0xB936BFA3, (q31_t)0x9592675B, (q31_t)0xB8E31319, (q31_t)0x95CA6246, (q31_t)0xB88F926C, (q31_t)0x96029EB5, (q31_t)0xB83C3DD1, (q31_t)0x963B1C85, (q31_t)0xB7E9157A, (q31_t)0x9673DB94, (q31_t)0xB796199B, (q31_t)0x96ACDBBD, (q31_t)0xB7434A67, (q31_t)0x96E61CDF, (q31_t)0xB6F0A811, (q31_t)0x971F9ED6, (q31_t)0xB69E32CD, (q31_t)0x9759617E, (q31_t)0xB64BEACC, (q31_t)0x979364B5, (q31_t)0xB5F9D042, (q31_t)0x97CDA855, (q31_t)0xB5A7E362, (q31_t)0x98082C3B, (q31_t)0xB556245E, (q31_t)0x9842F043, (q31_t)0xB5049368, (q31_t)0x987DF449, (q31_t)0xB4B330B2, (q31_t)0x98B93828, (q31_t)0xB461FC70, (q31_t)0x98F4BBBC, (q31_t)0xB410F6D2, (q31_t)0x99307EE0, (q31_t)0xB3C0200C, (q31_t)0x996C816F, (q31_t)0xB36F784E, (q31_t)0x99A8C344, (q31_t)0xB31EFFCB, (q31_t)0x99E5443A, (q31_t)0xB2CEB6B5, (q31_t)0x9A22042C, (q31_t)0xB27E9D3B, (q31_t)0x9A5F02F5, (q31_t)0xB22EB392, (q31_t)0x9A9C406D, (q31_t)0xB1DEF9E8, (q31_t)0x9AD9BC71, (q31_t)0xB18F7070, (q31_t)0x9B1776D9, (q31_t)0xB140175B, (q31_t)0x9B556F80, (q31_t)0xB0F0EEDA, (q31_t)0x9B93A640, (q31_t)0xB0A1F71C, (q31_t)0x9BD21AF2, (q31_t)0xB0533055, (q31_t)0x9C10CD70, (q31_t)0xB0049AB2, (q31_t)0x9C4FBD92, (q31_t)0xAFB63667, (q31_t)0x9C8EEB33, (q31_t)0xAF6803A1, (q31_t)0x9CCE562B, (q31_t)0xAF1A0293, (q31_t)0x9D0DFE53, (q31_t)0xAECC336B, (q31_t)0x9D4DE384, (q31_t)0xAE7E965B, (q31_t)0x9D8E0596, (q31_t)0xAE312B91, (q31_t)0x9DCE6462, (q31_t)0xADE3F33E, (q31_t)0x9E0EFFC1, (q31_t)0xAD96ED91, (q31_t)0x9E4FD789, (q31_t)0xAD4A1ABA, (q31_t)0x9E90EB94, (q31_t)0xACFD7AE8, (q31_t)0x9ED23BB9, (q31_t)0xACB10E4A, (q31_t)0x9F13C7D0, (q31_t)0xAC64D510, (q31_t)0x9F558FB0, (q31_t)0xAC18CF68, (q31_t)0x9F979331, (q31_t)0xABCCFD82, (q31_t)0x9FD9D22A, (q31_t)0xAB815F8C, (q31_t)0xA01C4C72, (q31_t)0xAB35F5B5, (q31_t)0xA05F01E1, (q31_t)0xAAEAC02B, (q31_t)0xA0A1F24C, (q31_t)0xAA9FBF1D, (q31_t)0xA0E51D8C, (q31_t)0xAA54F2B9, (q31_t)0xA1288376, (q31_t)0xAA0A5B2D, (q31_t)0xA16C23E1, (q31_t)0xA9BFF8A8, (q31_t)0xA1AFFEA2, (q31_t)0xA975CB56, (q31_t)0xA1F41391, (q31_t)0xA92BD366, (q31_t)0xA2386283, (q31_t)0xA8E21106, (q31_t)0xA27CEB4F, (q31_t)0xA8988463, (q31_t)0xA2C1ADC9, (q31_t)0xA84F2DA9, (q31_t)0xA306A9C7, (q31_t)0xA8060D08, (q31_t)0xA34BDF20, (q31_t)0xA7BD22AB, (q31_t)0xA3914DA7, (q31_t)0xA7746EC0, (q31_t)0xA3D6F533, (q31_t)0xA72BF173, (q31_t)0xA41CD598, (q31_t)0xA6E3AAF2, (q31_t)0xA462EEAC, (q31_t)0xA69B9B68, (q31_t)0xA4A94042, (q31_t)0xA653C302, (q31_t)0xA4EFCA31, (q31_t)0xA60C21ED, (q31_t)0xA5368C4B, (q31_t)0xA5C4B855, (q31_t)0xA57D8666, (q31_t)0xA57D8666, (q31_t)0xA5C4B855, (q31_t)0xA5368C4B, (q31_t)0xA60C21ED, (q31_t)0xA4EFCA31, (q31_t)0xA653C302, (q31_t)0xA4A94042, (q31_t)0xA69B9B68, (q31_t)0xA462EEAC, (q31_t)0xA6E3AAF2, (q31_t)0xA41CD598, (q31_t)0xA72BF173, (q31_t)0xA3D6F533, (q31_t)0xA7746EC0, (q31_t)0xA3914DA7, (q31_t)0xA7BD22AB, (q31_t)0xA34BDF20, (q31_t)0xA8060D08, (q31_t)0xA306A9C7, (q31_t)0xA84F2DA9, (q31_t)0xA2C1ADC9, (q31_t)0xA8988463, (q31_t)0xA27CEB4F, (q31_t)0xA8E21106, (q31_t)0xA2386283, (q31_t)0xA92BD366, (q31_t)0xA1F41391, (q31_t)0xA975CB56, (q31_t)0xA1AFFEA2, (q31_t)0xA9BFF8A8, (q31_t)0xA16C23E1, (q31_t)0xAA0A5B2D, (q31_t)0xA1288376, (q31_t)0xAA54F2B9, (q31_t)0xA0E51D8C, (q31_t)0xAA9FBF1D, (q31_t)0xA0A1F24C, (q31_t)0xAAEAC02B, (q31_t)0xA05F01E1, (q31_t)0xAB35F5B5, (q31_t)0xA01C4C72, (q31_t)0xAB815F8C, (q31_t)0x9FD9D22A, (q31_t)0xABCCFD82, (q31_t)0x9F979331, (q31_t)0xAC18CF68, (q31_t)0x9F558FB0, (q31_t)0xAC64D510, (q31_t)0x9F13C7D0, (q31_t)0xACB10E4A, (q31_t)0x9ED23BB9, (q31_t)0xACFD7AE8, (q31_t)0x9E90EB94, (q31_t)0xAD4A1ABA, (q31_t)0x9E4FD789, (q31_t)0xAD96ED91, (q31_t)0x9E0EFFC1, (q31_t)0xADE3F33E, (q31_t)0x9DCE6462, (q31_t)0xAE312B91, (q31_t)0x9D8E0596, (q31_t)0xAE7E965B, (q31_t)0x9D4DE384, (q31_t)0xAECC336B, (q31_t)0x9D0DFE53, (q31_t)0xAF1A0293, (q31_t)0x9CCE562B, (q31_t)0xAF6803A1, (q31_t)0x9C8EEB33, (q31_t)0xAFB63667, (q31_t)0x9C4FBD92, (q31_t)0xB0049AB2, (q31_t)0x9C10CD70, (q31_t)0xB0533055, (q31_t)0x9BD21AF2, (q31_t)0xB0A1F71C, (q31_t)0x9B93A640, (q31_t)0xB0F0EEDA, (q31_t)0x9B556F80, (q31_t)0xB140175B, (q31_t)0x9B1776D9, (q31_t)0xB18F7070, (q31_t)0x9AD9BC71, (q31_t)0xB1DEF9E8, (q31_t)0x9A9C406D, (q31_t)0xB22EB392, (q31_t)0x9A5F02F5, (q31_t)0xB27E9D3B, (q31_t)0x9A22042C, (q31_t)0xB2CEB6B5, (q31_t)0x99E5443A, (q31_t)0xB31EFFCB, (q31_t)0x99A8C344, (q31_t)0xB36F784E, (q31_t)0x996C816F, (q31_t)0xB3C0200C, (q31_t)0x99307EE0, (q31_t)0xB410F6D2, (q31_t)0x98F4BBBC, (q31_t)0xB461FC70, (q31_t)0x98B93828, (q31_t)0xB4B330B2, (q31_t)0x987DF449, (q31_t)0xB5049368, (q31_t)0x9842F043, (q31_t)0xB556245E, (q31_t)0x98082C3B, (q31_t)0xB5A7E362, (q31_t)0x97CDA855, (q31_t)0xB5F9D042, (q31_t)0x979364B5, (q31_t)0xB64BEACC, (q31_t)0x9759617E, (q31_t)0xB69E32CD, (q31_t)0x971F9ED6, (q31_t)0xB6F0A811, (q31_t)0x96E61CDF, (q31_t)0xB7434A67, (q31_t)0x96ACDBBD, (q31_t)0xB796199B, (q31_t)0x9673DB94, (q31_t)0xB7E9157A, (q31_t)0x963B1C85, (q31_t)0xB83C3DD1, (q31_t)0x96029EB5, (q31_t)0xB88F926C, (q31_t)0x95CA6246, (q31_t)0xB8E31319, (q31_t)0x9592675B, (q31_t)0xB936BFA3, (q31_t)0x955AAE17, (q31_t)0xB98A97D8, (q31_t)0x9523369B, (q31_t)0xB9DE9B83, (q31_t)0x94EC010B, (q31_t)0xBA32CA70, (q31_t)0x94B50D87, (q31_t)0xBA87246C, (q31_t)0x947E5C32, (q31_t)0xBADBA943, (q31_t)0x9447ED2F, (q31_t)0xBB3058C0, (q31_t)0x9411C09D, (q31_t)0xBB8532AF, (q31_t)0x93DBD69F, (q31_t)0xBBDA36DC, (q31_t)0x93A62F56, (q31_t)0xBC2F6513, (q31_t)0x9370CAE4, (q31_t)0xBC84BD1E, (q31_t)0x933BA968, (q31_t)0xBCDA3ECA, (q31_t)0x9306CB04, (q31_t)0xBD2FE9E1, (q31_t)0x92D22FD8, (q31_t)0xBD85BE2F, (q31_t)0x929DD805, (q31_t)0xBDDBBB7F, (q31_t)0x9269C3AC, (q31_t)0xBE31E19B, (q31_t)0x9235F2EB, (q31_t)0xBE88304F, (q31_t)0x920265E4, (q31_t)0xBEDEA765, (q31_t)0x91CF1CB6, (q31_t)0xBF3546A8, (q31_t)0x919C1780, (q31_t)0xBF8C0DE2, (q31_t)0x91695663, (q31_t)0xBFE2FCDF, (q31_t)0x9136D97D, (q31_t)0xC03A1368, (q31_t)0x9104A0ED, (q31_t)0xC0915147, (q31_t)0x90D2ACD3, (q31_t)0xC0E8B648, (q31_t)0x90A0FD4E, (q31_t)0xC1404233, (q31_t)0x906F927B, (q31_t)0xC197F4D3, (q31_t)0x903E6C7A, (q31_t)0xC1EFCDF2, (q31_t)0x900D8B69, (q31_t)0xC247CD5A, (q31_t)0x8FDCEF66, (q31_t)0xC29FF2D4, (q31_t)0x8FAC988E, (q31_t)0xC2F83E2A, (q31_t)0x8F7C8701, (q31_t)0xC350AF25, (q31_t)0x8F4CBADB, (q31_t)0xC3A9458F, (q31_t)0x8F1D343A, (q31_t)0xC4020132, (q31_t)0x8EEDF33B, (q31_t)0xC45AE1D7, (q31_t)0x8EBEF7FB, (q31_t)0xC4B3E746, (q31_t)0x8E904298, (q31_t)0xC50D1148, (q31_t)0x8E61D32D, (q31_t)0xC5665FA8, (q31_t)0x8E33A9D9, (q31_t)0xC5BFD22E, (q31_t)0x8E05C6B7, (q31_t)0xC61968A2, (q31_t)0x8DD829E4, (q31_t)0xC67322CD, (q31_t)0x8DAAD37B, (q31_t)0xC6CD0079, (q31_t)0x8D7DC399, (q31_t)0xC727016C, (q31_t)0x8D50FA59, (q31_t)0xC7812571, (q31_t)0x8D2477D8, (q31_t)0xC7DB6C50, (q31_t)0x8CF83C30, (q31_t)0xC835D5D0, (q31_t)0x8CCC477D, (q31_t)0xC89061BA, (q31_t)0x8CA099D9, (q31_t)0xC8EB0FD6, (q31_t)0x8C753361, (q31_t)0xC945DFEC, (q31_t)0x8C4A142F, (q31_t)0xC9A0D1C4, (q31_t)0x8C1F3C5C, (q31_t)0xC9FBE527, (q31_t)0x8BF4AC05, (q31_t)0xCA5719DB, (q31_t)0x8BCA6342, (q31_t)0xCAB26FA9, (q31_t)0x8BA0622F, (q31_t)0xCB0DE658, (q31_t)0x8B76A8E4, (q31_t)0xCB697DB0, (q31_t)0x8B4D377C, (q31_t)0xCBC53578, (q31_t)0x8B240E10, (q31_t)0xCC210D78, (q31_t)0x8AFB2CBA, (q31_t)0xCC7D0577, (q31_t)0x8AD29393, (q31_t)0xCCD91D3D, (q31_t)0x8AAA42B4, (q31_t)0xCD355490, (q31_t)0x8A823A35, (q31_t)0xCD91AB38, (q31_t)0x8A5A7A30, (q31_t)0xCDEE20FC, (q31_t)0x8A3302BD, (q31_t)0xCE4AB5A2, (q31_t)0x8A0BD3F5, (q31_t)0xCEA768F2, (q31_t)0x89E4EDEE, (q31_t)0xCF043AB2, (q31_t)0x89BE50C3, (q31_t)0xCF612AAA, (q31_t)0x8997FC89, (q31_t)0xCFBE389F, (q31_t)0x8971F15A, (q31_t)0xD01B6459, (q31_t)0x894C2F4C, (q31_t)0xD078AD9D, (q31_t)0x8926B677, (q31_t)0xD0D61433, (q31_t)0x890186F1, (q31_t)0xD13397E1, (q31_t)0x88DCA0D3, (q31_t)0xD191386D, (q31_t)0x88B80431, (q31_t)0xD1EEF59E, (q31_t)0x8893B124, (q31_t)0xD24CCF38, (q31_t)0x886FA7C2, (q31_t)0xD2AAC504, (q31_t)0x884BE820, (q31_t)0xD308D6C6, (q31_t)0x88287255, (q31_t)0xD3670445, (q31_t)0x88054677, (q31_t)0xD3C54D46, (q31_t)0x87E2649B, (q31_t)0xD423B190, (q31_t)0x87BFCCD7, (q31_t)0xD48230E8, (q31_t)0x879D7F40, (q31_t)0xD4E0CB14, (q31_t)0x877B7BEC, (q31_t)0xD53F7FDA, (q31_t)0x8759C2EF, (q31_t)0xD59E4EFE, (q31_t)0x8738545E, (q31_t)0xD5FD3847, (q31_t)0x8717304E, (q31_t)0xD65C3B7B, (q31_t)0x86F656D3, (q31_t)0xD6BB585D, (q31_t)0x86D5C802, (q31_t)0xD71A8EB5, (q31_t)0x86B583EE, (q31_t)0xD779DE46, (q31_t)0x86958AAB, (q31_t)0xD7D946D7, (q31_t)0x8675DC4E, (q31_t)0xD838C82D, (q31_t)0x865678EA, (q31_t)0xD898620C, (q31_t)0x86376092, (q31_t)0xD8F81439, (q31_t)0x86189359, (q31_t)0xD957DE7A, (q31_t)0x85FA1152, (q31_t)0xD9B7C093, (q31_t)0x85DBDA91, (q31_t)0xDA17BA4A, (q31_t)0x85BDEF27, (q31_t)0xDA77CB62, (q31_t)0x85A04F28, (q31_t)0xDAD7F3A2, (q31_t)0x8582FAA4, (q31_t)0xDB3832CD, (q31_t)0x8565F1B0, (q31_t)0xDB9888A8, (q31_t)0x8549345C, (q31_t)0xDBF8F4F8, (q31_t)0x852CC2BA, (q31_t)0xDC597781, (q31_t)0x85109CDC, (q31_t)0xDCBA1008, (q31_t)0x84F4C2D3, (q31_t)0xDD1ABE51, (q31_t)0x84D934B0, (q31_t)0xDD7B8220, (q31_t)0x84BDF285, (q31_t)0xDDDC5B3A, (q31_t)0x84A2FC62, (q31_t)0xDE3D4963, (q31_t)0x84885257, (q31_t)0xDE9E4C60, (q31_t)0x846DF476, (q31_t)0xDEFF63F4, (q31_t)0x8453E2CE, (q31_t)0xDF608FE3, (q31_t)0x843A1D70, (q31_t)0xDFC1CFF2, (q31_t)0x8420A46B, (q31_t)0xE02323E5, (q31_t)0x840777CF, (q31_t)0xE0848B7F, (q31_t)0x83EE97AC, (q31_t)0xE0E60684, (q31_t)0x83D60411, (q31_t)0xE14794B9, (q31_t)0x83BDBD0D, (q31_t)0xE1A935E1, (q31_t)0x83A5C2B0, (q31_t)0xE20AE9C1, (q31_t)0x838E1507, (q31_t)0xE26CB01A, (q31_t)0x8376B422, (q31_t)0xE2CE88B2, (q31_t)0x835FA00E, (q31_t)0xE330734C, (q31_t)0x8348D8DB, (q31_t)0xE3926FAC, (q31_t)0x83325E97, (q31_t)0xE3F47D95, (q31_t)0x831C314E, (q31_t)0xE4569CCB, (q31_t)0x8306510F, (q31_t)0xE4B8CD10, (q31_t)0x82F0BDE8, (q31_t)0xE51B0E2A, (q31_t)0x82DB77E5, (q31_t)0xE57D5FDA, (q31_t)0x82C67F13, (q31_t)0xE5DFC1E4, (q31_t)0x82B1D381, (q31_t)0xE642340D, (q31_t)0x829D753A, (q31_t)0xE6A4B616, (q31_t)0x8289644A, (q31_t)0xE70747C3, (q31_t)0x8275A0C0, (q31_t)0xE769E8D8, (q31_t)0x82622AA5, (q31_t)0xE7CC9917, (q31_t)0x824F0208, (q31_t)0xE82F5844, (q31_t)0x823C26F2, (q31_t)0xE8922621, (q31_t)0x82299971, (q31_t)0xE8F50273, (q31_t)0x8217598F, (q31_t)0xE957ECFB, (q31_t)0x82056758, (q31_t)0xE9BAE57C, (q31_t)0x81F3C2D7, (q31_t)0xEA1DEBBB, (q31_t)0x81E26C16, (q31_t)0xEA80FF79, (q31_t)0x81D16320, (q31_t)0xEAE4207A, (q31_t)0x81C0A801, (q31_t)0xEB474E80, (q31_t)0x81B03AC1, (q31_t)0xEBAA894E, (q31_t)0x81A01B6C, (q31_t)0xEC0DD0A8, (q31_t)0x81904A0C, (q31_t)0xEC71244F, (q31_t)0x8180C6A9, (q31_t)0xECD48406, (q31_t)0x8171914E, (q31_t)0xED37EF91, (q31_t)0x8162AA03, (q31_t)0xED9B66B2, (q31_t)0x815410D3, (q31_t)0xEDFEE92B, (q31_t)0x8145C5C6, (q31_t)0xEE6276BF, (q31_t)0x8137C8E6, (q31_t)0xEEC60F31, (q31_t)0x812A1A39, (q31_t)0xEF29B243, (q31_t)0x811CB9CA, (q31_t)0xEF8D5FB8, (q31_t)0x810FA7A0, (q31_t)0xEFF11752, (q31_t)0x8102E3C3, (q31_t)0xF054D8D4, (q31_t)0x80F66E3C, (q31_t)0xF0B8A401, (q31_t)0x80EA4712, (q31_t)0xF11C789A, (q31_t)0x80DE6E4C, (q31_t)0xF1805662, (q31_t)0x80D2E3F1, (q31_t)0xF1E43D1C, (q31_t)0x80C7A80A, (q31_t)0xF2482C89, (q31_t)0x80BCBA9C, (q31_t)0xF2AC246D, (q31_t)0x80B21BAF, (q31_t)0xF310248A, (q31_t)0x80A7CB49, (q31_t)0xF3742CA1, (q31_t)0x809DC970, (q31_t)0xF3D83C76, (q31_t)0x8094162B, (q31_t)0xF43C53CA, (q31_t)0x808AB180, (q31_t)0xF4A07260, (q31_t)0x80819B74, (q31_t)0xF50497FA, (q31_t)0x8078D40D, (q31_t)0xF568C45A, (q31_t)0x80705B50, (q31_t)0xF5CCF743, (q31_t)0x80683143, (q31_t)0xF6313076, (q31_t)0x806055EA, (q31_t)0xF6956FB6, (q31_t)0x8058C94C, (q31_t)0xF6F9B4C5, (q31_t)0x80518B6B, (q31_t)0xF75DFF65, (q31_t)0x804A9C4D, (q31_t)0xF7C24F58, (q31_t)0x8043FBF6, (q31_t)0xF826A461, (q31_t)0x803DAA69, (q31_t)0xF88AFE41, (q31_t)0x8037A7AC, (q31_t)0xF8EF5CBB, (q31_t)0x8031F3C1, (q31_t)0xF953BF90, (q31_t)0x802C8EAD, (q31_t)0xF9B82683, (q31_t)0x80277872, (q31_t)0xFA1C9156, (q31_t)0x8022B113, (q31_t)0xFA80FFCB, (q31_t)0x801E3894, (q31_t)0xFAE571A4, (q31_t)0x801A0EF7, (q31_t)0xFB49E6A2, (q31_t)0x80163440, (q31_t)0xFBAE5E89, (q31_t)0x8012A86F, (q31_t)0xFC12D919, (q31_t)0x800F6B88, (q31_t)0xFC775616, (q31_t)0x800C7D8C, (q31_t)0xFCDBD541, (q31_t)0x8009DE7D, (q31_t)0xFD40565B, (q31_t)0x80078E5E, (q31_t)0xFDA4D928, (q31_t)0x80058D2E, (q31_t)0xFE095D69, (q31_t)0x8003DAF0, (q31_t)0xFE6DE2E0, (q31_t)0x800277A5, (q31_t)0xFED2694F, (q31_t)0x8001634D, (q31_t)0xFF36F078, (q31_t)0x80009DE9, (q31_t)0xFF9B781D, (q31_t)0x8000277A }; /** @par Example code for Q31 Twiddle factors Generation:: @par
for (i = 0; i< 3N/4; i++)
  {
     twiddleCoefQ31[2*i]   = cos(i * 2*PI/(float)N);
     twiddleCoefQ31[2*i+1] = sin(i * 2*PI/(float)N);
  } 
@par where N = 4096, PI = 3.14159265358979 @par Cos and Sin values are interleaved fashion @par Convert Floating point to Q31(Fixed point 1.31): round(twiddleCoefQ31(i) * pow(2, 31)) */ const q31_t twiddleCoef_4096_q31[6144] ARM_DSP_TABLE_ATTRIBUTE = { (q31_t)0x7FFFFFFF, (q31_t)0x00000000, (q31_t)0x7FFFF621, (q31_t)0x003243F5, (q31_t)0x7FFFD885, (q31_t)0x006487E3, (q31_t)0x7FFFA72C, (q31_t)0x0096CBC1, (q31_t)0x7FFF6216, (q31_t)0x00C90F88, (q31_t)0x7FFF0942, (q31_t)0x00FB532F, (q31_t)0x7FFE9CB2, (q31_t)0x012D96B0, (q31_t)0x7FFE1C64, (q31_t)0x015FDA03, (q31_t)0x7FFD885A, (q31_t)0x01921D1F, (q31_t)0x7FFCE093, (q31_t)0x01C45FFE, (q31_t)0x7FFC250F, (q31_t)0x01F6A296, (q31_t)0x7FFB55CE, (q31_t)0x0228E4E1, (q31_t)0x7FFA72D1, (q31_t)0x025B26D7, (q31_t)0x7FF97C17, (q31_t)0x028D6870, (q31_t)0x7FF871A1, (q31_t)0x02BFA9A4, (q31_t)0x7FF7536F, (q31_t)0x02F1EA6B, (q31_t)0x7FF62182, (q31_t)0x03242ABF, (q31_t)0x7FF4DBD8, (q31_t)0x03566A96, (q31_t)0x7FF38273, (q31_t)0x0388A9E9, (q31_t)0x7FF21553, (q31_t)0x03BAE8B1, (q31_t)0x7FF09477, (q31_t)0x03ED26E6, (q31_t)0x7FEEFFE1, (q31_t)0x041F647F, (q31_t)0x7FED5790, (q31_t)0x0451A176, (q31_t)0x7FEB9B85, (q31_t)0x0483DDC3, (q31_t)0x7FE9CBC0, (q31_t)0x04B6195D, (q31_t)0x7FE7E840, (q31_t)0x04E8543D, (q31_t)0x7FE5F108, (q31_t)0x051A8E5C, (q31_t)0x7FE3E616, (q31_t)0x054CC7B0, (q31_t)0x7FE1C76B, (q31_t)0x057F0034, (q31_t)0x7FDF9508, (q31_t)0x05B137DF, (q31_t)0x7FDD4EEC, (q31_t)0x05E36EA9, (q31_t)0x7FDAF518, (q31_t)0x0615A48A, (q31_t)0x7FD8878D, (q31_t)0x0647D97C, (q31_t)0x7FD6064B, (q31_t)0x067A0D75, (q31_t)0x7FD37152, (q31_t)0x06AC406F, (q31_t)0x7FD0C8A3, (q31_t)0x06DE7261, (q31_t)0x7FCE0C3E, (q31_t)0x0710A344, (q31_t)0x7FCB3C23, (q31_t)0x0742D310, (q31_t)0x7FC85853, (q31_t)0x077501BE, (q31_t)0x7FC560CF, (q31_t)0x07A72F45, (q31_t)0x7FC25596, (q31_t)0x07D95B9E, (q31_t)0x7FBF36A9, (q31_t)0x080B86C1, (q31_t)0x7FBC040A, (q31_t)0x083DB0A7, (q31_t)0x7FB8BDB7, (q31_t)0x086FD947, (q31_t)0x7FB563B2, (q31_t)0x08A2009A, (q31_t)0x7FB1F5FC, (q31_t)0x08D42698, (q31_t)0x7FAE7494, (q31_t)0x09064B3A, (q31_t)0x7FAADF7C, (q31_t)0x09386E77, (q31_t)0x7FA736B4, (q31_t)0x096A9049, (q31_t)0x7FA37A3C, (q31_t)0x099CB0A7, (q31_t)0x7F9FAA15, (q31_t)0x09CECF89, (q31_t)0x7F9BC63F, (q31_t)0x0A00ECE8, (q31_t)0x7F97CEBC, (q31_t)0x0A3308BC, (q31_t)0x7F93C38C, (q31_t)0x0A6522FE, (q31_t)0x7F8FA4AF, (q31_t)0x0A973BA5, (q31_t)0x7F8B7226, (q31_t)0x0AC952AA, (q31_t)0x7F872BF3, (q31_t)0x0AFB6805, (q31_t)0x7F82D214, (q31_t)0x0B2D7BAE, (q31_t)0x7F7E648B, (q31_t)0x0B5F8D9F, (q31_t)0x7F79E35A, (q31_t)0x0B919DCE, (q31_t)0x7F754E7F, (q31_t)0x0BC3AC35, (q31_t)0x7F70A5FD, (q31_t)0x0BF5B8CB, (q31_t)0x7F6BE9D4, (q31_t)0x0C27C389, (q31_t)0x7F671A04, (q31_t)0x0C59CC67, (q31_t)0x7F62368F, (q31_t)0x0C8BD35E, (q31_t)0x7F5D3F75, (q31_t)0x0CBDD865, (q31_t)0x7F5834B6, (q31_t)0x0CEFDB75, (q31_t)0x7F531654, (q31_t)0x0D21DC87, (q31_t)0x7F4DE450, (q31_t)0x0D53DB92, (q31_t)0x7F489EAA, (q31_t)0x0D85D88F, (q31_t)0x7F434563, (q31_t)0x0DB7D376, (q31_t)0x7F3DD87C, (q31_t)0x0DE9CC3F, (q31_t)0x7F3857F5, (q31_t)0x0E1BC2E3, (q31_t)0x7F32C3D0, (q31_t)0x0E4DB75B, (q31_t)0x7F2D1C0E, (q31_t)0x0E7FA99D, (q31_t)0x7F2760AF, (q31_t)0x0EB199A3, (q31_t)0x7F2191B4, (q31_t)0x0EE38765, (q31_t)0x7F1BAF1E, (q31_t)0x0F1572DC, (q31_t)0x7F15B8EE, (q31_t)0x0F475BFE, (q31_t)0x7F0FAF24, (q31_t)0x0F7942C6, (q31_t)0x7F0991C3, (q31_t)0x0FAB272B, (q31_t)0x7F0360CB, (q31_t)0x0FDD0925, (q31_t)0x7EFD1C3C, (q31_t)0x100EE8AD, (q31_t)0x7EF6C418, (q31_t)0x1040C5BB, (q31_t)0x7EF0585F, (q31_t)0x1072A047, (q31_t)0x7EE9D913, (q31_t)0x10A4784A, (q31_t)0x7EE34635, (q31_t)0x10D64DBC, (q31_t)0x7EDC9FC6, (q31_t)0x11082096, (q31_t)0x7ED5E5C6, (q31_t)0x1139F0CE, (q31_t)0x7ECF1837, (q31_t)0x116BBE5F, (q31_t)0x7EC8371A, (q31_t)0x119D8940, (q31_t)0x7EC1426F, (q31_t)0x11CF516A, (q31_t)0x7EBA3A39, (q31_t)0x120116D4, (q31_t)0x7EB31E77, (q31_t)0x1232D978, (q31_t)0x7EABEF2C, (q31_t)0x1264994E, (q31_t)0x7EA4AC58, (q31_t)0x1296564D, (q31_t)0x7E9D55FC, (q31_t)0x12C8106E, (q31_t)0x7E95EC19, (q31_t)0x12F9C7AA, (q31_t)0x7E8E6EB1, (q31_t)0x132B7BF9, (q31_t)0x7E86DDC5, (q31_t)0x135D2D53, (q31_t)0x7E7F3956, (q31_t)0x138EDBB0, (q31_t)0x7E778165, (q31_t)0x13C0870A, (q31_t)0x7E6FB5F3, (q31_t)0x13F22F57, (q31_t)0x7E67D702, (q31_t)0x1423D492, (q31_t)0x7E5FE493, (q31_t)0x145576B1, (q31_t)0x7E57DEA6, (q31_t)0x148715AD, (q31_t)0x7E4FC53E, (q31_t)0x14B8B17F, (q31_t)0x7E47985B, (q31_t)0x14EA4A1F, (q31_t)0x7E3F57FE, (q31_t)0x151BDF85, (q31_t)0x7E37042A, (q31_t)0x154D71AA, (q31_t)0x7E2E9CDF, (q31_t)0x157F0086, (q31_t)0x7E26221E, (q31_t)0x15B08C11, (q31_t)0x7E1D93E9, (q31_t)0x15E21444, (q31_t)0x7E14F242, (q31_t)0x16139917, (q31_t)0x7E0C3D29, (q31_t)0x16451A83, (q31_t)0x7E03749F, (q31_t)0x1676987F, (q31_t)0x7DFA98A7, (q31_t)0x16A81305, (q31_t)0x7DF1A942, (q31_t)0x16D98A0C, (q31_t)0x7DE8A670, (q31_t)0x170AFD8D, (q31_t)0x7DDF9034, (q31_t)0x173C6D80, (q31_t)0x7DD6668E, (q31_t)0x176DD9DE, (q31_t)0x7DCD2981, (q31_t)0x179F429F, (q31_t)0x7DC3D90D, (q31_t)0x17D0A7BB, (q31_t)0x7DBA7534, (q31_t)0x1802092C, (q31_t)0x7DB0FDF7, (q31_t)0x183366E8, (q31_t)0x7DA77359, (q31_t)0x1864C0E9, (q31_t)0x7D9DD55A, (q31_t)0x18961727, (q31_t)0x7D9423FB, (q31_t)0x18C7699B, (q31_t)0x7D8A5F3F, (q31_t)0x18F8B83C, (q31_t)0x7D808727, (q31_t)0x192A0303, (q31_t)0x7D769BB5, (q31_t)0x195B49E9, (q31_t)0x7D6C9CE9, (q31_t)0x198C8CE6, (q31_t)0x7D628AC5, (q31_t)0x19BDCBF2, (q31_t)0x7D58654C, (q31_t)0x19EF0706, (q31_t)0x7D4E2C7E, (q31_t)0x1A203E1B, (q31_t)0x7D43E05E, (q31_t)0x1A517127, (q31_t)0x7D3980EC, (q31_t)0x1A82A025, (q31_t)0x7D2F0E2A, (q31_t)0x1AB3CB0C, (q31_t)0x7D24881A, (q31_t)0x1AE4F1D6, (q31_t)0x7D19EEBE, (q31_t)0x1B161479, (q31_t)0x7D0F4218, (q31_t)0x1B4732EF, (q31_t)0x7D048228, (q31_t)0x1B784D30, (q31_t)0x7CF9AEF0, (q31_t)0x1BA96334, (q31_t)0x7CEEC873, (q31_t)0x1BDA74F5, (q31_t)0x7CE3CEB1, (q31_t)0x1C0B826A, (q31_t)0x7CD8C1AD, (q31_t)0x1C3C8B8C, (q31_t)0x7CCDA168, (q31_t)0x1C6D9053, (q31_t)0x7CC26DE5, (q31_t)0x1C9E90B8, (q31_t)0x7CB72724, (q31_t)0x1CCF8CB3, (q31_t)0x7CABCD27, (q31_t)0x1D00843C, (q31_t)0x7CA05FF1, (q31_t)0x1D31774D, (q31_t)0x7C94DF82, (q31_t)0x1D6265DD, (q31_t)0x7C894BDD, (q31_t)0x1D934FE5, (q31_t)0x7C7DA504, (q31_t)0x1DC4355D, (q31_t)0x7C71EAF8, (q31_t)0x1DF5163F, (q31_t)0x7C661DBB, (q31_t)0x1E25F281, (q31_t)0x7C5A3D4F, (q31_t)0x1E56CA1E, (q31_t)0x7C4E49B6, (q31_t)0x1E879D0C, (q31_t)0x7C4242F2, (q31_t)0x1EB86B46, (q31_t)0x7C362904, (q31_t)0x1EE934C2, (q31_t)0x7C29FBEE, (q31_t)0x1F19F97B, (q31_t)0x7C1DBBB2, (q31_t)0x1F4AB967, (q31_t)0x7C116853, (q31_t)0x1F7B7480, (q31_t)0x7C0501D1, (q31_t)0x1FAC2ABF, (q31_t)0x7BF88830, (q31_t)0x1FDCDC1A, (q31_t)0x7BEBFB70, (q31_t)0x200D888C, (q31_t)0x7BDF5B94, (q31_t)0x203E300D, (q31_t)0x7BD2A89E, (q31_t)0x206ED295, (q31_t)0x7BC5E28F, (q31_t)0x209F701C, (q31_t)0x7BB9096A, (q31_t)0x20D0089B, (q31_t)0x7BAC1D31, (q31_t)0x21009C0B, (q31_t)0x7B9F1DE5, (q31_t)0x21312A65, (q31_t)0x7B920B89, (q31_t)0x2161B39F, (q31_t)0x7B84E61E, (q31_t)0x219237B4, (q31_t)0x7B77ADA8, (q31_t)0x21C2B69C, (q31_t)0x7B6A6227, (q31_t)0x21F3304E, (q31_t)0x7B5D039D, (q31_t)0x2223A4C5, (q31_t)0x7B4F920E, (q31_t)0x225413F8, (q31_t)0x7B420D7A, (q31_t)0x22847DDF, (q31_t)0x7B3475E4, (q31_t)0x22B4E274, (q31_t)0x7B26CB4F, (q31_t)0x22E541AE, (q31_t)0x7B190DBB, (q31_t)0x23159B87, (q31_t)0x7B0B3D2C, (q31_t)0x2345EFF7, (q31_t)0x7AFD59A3, (q31_t)0x23763EF7, (q31_t)0x7AEF6323, (q31_t)0x23A6887E, (q31_t)0x7AE159AE, (q31_t)0x23D6CC86, (q31_t)0x7AD33D45, (q31_t)0x24070B07, (q31_t)0x7AC50DEB, (q31_t)0x243743FA, (q31_t)0x7AB6CBA3, (q31_t)0x24677757, (q31_t)0x7AA8766E, (q31_t)0x2497A517, (q31_t)0x7A9A0E4F, (q31_t)0x24C7CD32, (q31_t)0x7A8B9348, (q31_t)0x24F7EFA1, (q31_t)0x7A7D055B, (q31_t)0x25280C5D, (q31_t)0x7A6E648A, (q31_t)0x2558235E, (q31_t)0x7A5FB0D8, (q31_t)0x2588349D, (q31_t)0x7A50EA46, (q31_t)0x25B84012, (q31_t)0x7A4210D8, (q31_t)0x25E845B5, (q31_t)0x7A33248F, (q31_t)0x26184581, (q31_t)0x7A24256E, (q31_t)0x26483F6C, (q31_t)0x7A151377, (q31_t)0x26783370, (q31_t)0x7A05EEAD, (q31_t)0x26A82185, (q31_t)0x79F6B711, (q31_t)0x26D809A5, (q31_t)0x79E76CA6, (q31_t)0x2707EBC6, (q31_t)0x79D80F6F, (q31_t)0x2737C7E3, (q31_t)0x79C89F6D, (q31_t)0x27679DF4, (q31_t)0x79B91CA4, (q31_t)0x27976DF1, (q31_t)0x79A98715, (q31_t)0x27C737D2, (q31_t)0x7999DEC3, (q31_t)0x27F6FB92, (q31_t)0x798A23B1, (q31_t)0x2826B928, (q31_t)0x797A55E0, (q31_t)0x2856708C, (q31_t)0x796A7554, (q31_t)0x288621B9, (q31_t)0x795A820E, (q31_t)0x28B5CCA5, (q31_t)0x794A7C11, (q31_t)0x28E5714A, (q31_t)0x793A6360, (q31_t)0x29150FA1, (q31_t)0x792A37FE, (q31_t)0x2944A7A2, (q31_t)0x7919F9EB, (q31_t)0x29743945, (q31_t)0x7909A92C, (q31_t)0x29A3C484, (q31_t)0x78F945C3, (q31_t)0x29D34958, (q31_t)0x78E8CFB1, (q31_t)0x2A02C7B8, (q31_t)0x78D846FB, (q31_t)0x2A323F9D, (q31_t)0x78C7ABA1, (q31_t)0x2A61B101, (q31_t)0x78B6FDA8, (q31_t)0x2A911BDB, (q31_t)0x78A63D10, (q31_t)0x2AC08025, (q31_t)0x789569DE, (q31_t)0x2AEFDDD8, (q31_t)0x78848413, (q31_t)0x2B1F34EB, (q31_t)0x78738BB3, (q31_t)0x2B4E8558, (q31_t)0x786280BF, (q31_t)0x2B7DCF17, (q31_t)0x7851633B, (q31_t)0x2BAD1221, (q31_t)0x78403328, (q31_t)0x2BDC4E6F, (q31_t)0x782EF08B, (q31_t)0x2C0B83F9, (q31_t)0x781D9B64, (q31_t)0x2C3AB2B9, (q31_t)0x780C33B8, (q31_t)0x2C69DAA6, (q31_t)0x77FAB988, (q31_t)0x2C98FBBA, (q31_t)0x77E92CD8, (q31_t)0x2CC815ED, (q31_t)0x77D78DAA, (q31_t)0x2CF72939, (q31_t)0x77C5DC01, (q31_t)0x2D263595, (q31_t)0x77B417DF, (q31_t)0x2D553AFB, (q31_t)0x77A24148, (q31_t)0x2D843963, (q31_t)0x7790583D, (q31_t)0x2DB330C7, (q31_t)0x777E5CC3, (q31_t)0x2DE2211E, (q31_t)0x776C4EDB, (q31_t)0x2E110A62, (q31_t)0x775A2E88, (q31_t)0x2E3FEC8B, (q31_t)0x7747FBCE, (q31_t)0x2E6EC792, (q31_t)0x7735B6AE, (q31_t)0x2E9D9B70, (q31_t)0x77235F2D, (q31_t)0x2ECC681E, (q31_t)0x7710F54B, (q31_t)0x2EFB2D94, (q31_t)0x76FE790E, (q31_t)0x2F29EBCC, (q31_t)0x76EBEA77, (q31_t)0x2F58A2BD, (q31_t)0x76D94988, (q31_t)0x2F875262, (q31_t)0x76C69646, (q31_t)0x2FB5FAB2, (q31_t)0x76B3D0B3, (q31_t)0x2FE49BA6, (q31_t)0x76A0F8D2, (q31_t)0x30133538, (q31_t)0x768E0EA5, (q31_t)0x3041C760, (q31_t)0x767B1230, (q31_t)0x30705217, (q31_t)0x76680376, (q31_t)0x309ED555, (q31_t)0x7654E279, (q31_t)0x30CD5114, (q31_t)0x7641AF3C, (q31_t)0x30FBC54D, (q31_t)0x762E69C3, (q31_t)0x312A31F8, (q31_t)0x761B1211, (q31_t)0x3158970D, (q31_t)0x7607A827, (q31_t)0x3186F487, (q31_t)0x75F42C0A, (q31_t)0x31B54A5D, (q31_t)0x75E09DBD, (q31_t)0x31E39889, (q31_t)0x75CCFD42, (q31_t)0x3211DF03, (q31_t)0x75B94A9C, (q31_t)0x32401DC5, (q31_t)0x75A585CF, (q31_t)0x326E54C7, (q31_t)0x7591AEDD, (q31_t)0x329C8402, (q31_t)0x757DC5CA, (q31_t)0x32CAAB6F, (q31_t)0x7569CA98, (q31_t)0x32F8CB07, (q31_t)0x7555BD4B, (q31_t)0x3326E2C2, (q31_t)0x75419DE6, (q31_t)0x3354F29A, (q31_t)0x752D6C6C, (q31_t)0x3382FA88, (q31_t)0x751928E0, (q31_t)0x33B0FA84, (q31_t)0x7504D345, (q31_t)0x33DEF287, (q31_t)0x74F06B9E, (q31_t)0x340CE28A, (q31_t)0x74DBF1EF, (q31_t)0x343ACA87, (q31_t)0x74C7663A, (q31_t)0x3468AA76, (q31_t)0x74B2C883, (q31_t)0x3496824F, (q31_t)0x749E18CD, (q31_t)0x34C4520D, (q31_t)0x7489571B, (q31_t)0x34F219A7, (q31_t)0x74748371, (q31_t)0x351FD917, (q31_t)0x745F9DD1, (q31_t)0x354D9056, (q31_t)0x744AA63E, (q31_t)0x357B3F5D, (q31_t)0x74359CBD, (q31_t)0x35A8E624, (q31_t)0x74208150, (q31_t)0x35D684A5, (q31_t)0x740B53FA, (q31_t)0x36041AD9, (q31_t)0x73F614C0, (q31_t)0x3631A8B7, (q31_t)0x73E0C3A3, (q31_t)0x365F2E3B, (q31_t)0x73CB60A7, (q31_t)0x368CAB5C, (q31_t)0x73B5EBD0, (q31_t)0x36BA2013, (q31_t)0x73A06522, (q31_t)0x36E78C5A, (q31_t)0x738ACC9E, (q31_t)0x3714F02A, (q31_t)0x73752249, (q31_t)0x37424B7A, (q31_t)0x735F6626, (q31_t)0x376F9E46, (q31_t)0x73499838, (q31_t)0x379CE884, (q31_t)0x7333B883, (q31_t)0x37CA2A30, (q31_t)0x731DC709, (q31_t)0x37F76340, (q31_t)0x7307C3D0, (q31_t)0x382493B0, (q31_t)0x72F1AED8, (q31_t)0x3851BB76, (q31_t)0x72DB8828, (q31_t)0x387EDA8E, (q31_t)0x72C54FC0, (q31_t)0x38ABF0EF, (q31_t)0x72AF05A6, (q31_t)0x38D8FE93, (q31_t)0x7298A9DC, (q31_t)0x39060372, (q31_t)0x72823C66, (q31_t)0x3932FF87, (q31_t)0x726BBD48, (q31_t)0x395FF2C9, (q31_t)0x72552C84, (q31_t)0x398CDD32, (q31_t)0x723E8A1F, (q31_t)0x39B9BEBB, (q31_t)0x7227D61C, (q31_t)0x39E6975D, (q31_t)0x7211107D, (q31_t)0x3A136712, (q31_t)0x71FA3948, (q31_t)0x3A402DD1, (q31_t)0x71E3507F, (q31_t)0x3A6CEB95, (q31_t)0x71CC5626, (q31_t)0x3A99A057, (q31_t)0x71B54A40, (q31_t)0x3AC64C0F, (q31_t)0x719E2CD2, (q31_t)0x3AF2EEB7, (q31_t)0x7186FDDE, (q31_t)0x3B1F8847, (q31_t)0x716FBD68, (q31_t)0x3B4C18BA, (q31_t)0x71586B73, (q31_t)0x3B78A007, (q31_t)0x71410804, (q31_t)0x3BA51E29, (q31_t)0x7129931E, (q31_t)0x3BD19317, (q31_t)0x71120CC5, (q31_t)0x3BFDFECD, (q31_t)0x70FA74FB, (q31_t)0x3C2A6142, (q31_t)0x70E2CBC6, (q31_t)0x3C56BA70, (q31_t)0x70CB1127, (q31_t)0x3C830A4F, (q31_t)0x70B34524, (q31_t)0x3CAF50DA, (q31_t)0x709B67C0, (q31_t)0x3CDB8E09, (q31_t)0x708378FE, (q31_t)0x3D07C1D5, (q31_t)0x706B78E3, (q31_t)0x3D33EC39, (q31_t)0x70536771, (q31_t)0x3D600D2B, (q31_t)0x703B44AC, (q31_t)0x3D8C24A7, (q31_t)0x70231099, (q31_t)0x3DB832A5, (q31_t)0x700ACB3B, (q31_t)0x3DE4371F, (q31_t)0x6FF27496, (q31_t)0x3E10320D, (q31_t)0x6FDA0CAD, (q31_t)0x3E3C2369, (q31_t)0x6FC19385, (q31_t)0x3E680B2C, (q31_t)0x6FA90920, (q31_t)0x3E93E94F, (q31_t)0x6F906D84, (q31_t)0x3EBFBDCC, (q31_t)0x6F77C0B3, (q31_t)0x3EEB889C, (q31_t)0x6F5F02B1, (q31_t)0x3F1749B7, (q31_t)0x6F463383, (q31_t)0x3F430118, (q31_t)0x6F2D532C, (q31_t)0x3F6EAEB8, (q31_t)0x6F1461AF, (q31_t)0x3F9A528F, (q31_t)0x6EFB5F12, (q31_t)0x3FC5EC97, (q31_t)0x6EE24B57, (q31_t)0x3FF17CCA, (q31_t)0x6EC92682, (q31_t)0x401D0320, (q31_t)0x6EAFF098, (q31_t)0x40487F93, (q31_t)0x6E96A99C, (q31_t)0x4073F21D, (q31_t)0x6E7D5193, (q31_t)0x409F5AB6, (q31_t)0x6E63E87F, (q31_t)0x40CAB957, (q31_t)0x6E4A6E65, (q31_t)0x40F60DFB, (q31_t)0x6E30E349, (q31_t)0x4121589A, (q31_t)0x6E17472F, (q31_t)0x414C992E, (q31_t)0x6DFD9A1B, (q31_t)0x4177CFB0, (q31_t)0x6DE3DC11, (q31_t)0x41A2FC1A, (q31_t)0x6DCA0D14, (q31_t)0x41CE1E64, (q31_t)0x6DB02D29, (q31_t)0x41F93688, (q31_t)0x6D963C54, (q31_t)0x42244480, (q31_t)0x6D7C3A98, (q31_t)0x424F4845, (q31_t)0x6D6227FA, (q31_t)0x427A41D0, (q31_t)0x6D48047E, (q31_t)0x42A5311A, (q31_t)0x6D2DD027, (q31_t)0x42D0161E, (q31_t)0x6D138AFA, (q31_t)0x42FAF0D4, (q31_t)0x6CF934FB, (q31_t)0x4325C135, (q31_t)0x6CDECE2E, (q31_t)0x4350873C, (q31_t)0x6CC45697, (q31_t)0x437B42E1, (q31_t)0x6CA9CE3A, (q31_t)0x43A5F41E, (q31_t)0x6C8F351C, (q31_t)0x43D09AEC, (q31_t)0x6C748B3F, (q31_t)0x43FB3745, (q31_t)0x6C59D0A9, (q31_t)0x4425C923, (q31_t)0x6C3F055D, (q31_t)0x4450507E, (q31_t)0x6C242960, (q31_t)0x447ACD50, (q31_t)0x6C093CB6, (q31_t)0x44A53F93, (q31_t)0x6BEE3F62, (q31_t)0x44CFA73F, (q31_t)0x6BD3316A, (q31_t)0x44FA044F, (q31_t)0x6BB812D0, (q31_t)0x452456BC, (q31_t)0x6B9CE39B, (q31_t)0x454E9E80, (q31_t)0x6B81A3CD, (q31_t)0x4578DB93, (q31_t)0x6B66536A, (q31_t)0x45A30DF0, (q31_t)0x6B4AF278, (q31_t)0x45CD358F, (q31_t)0x6B2F80FA, (q31_t)0x45F7526B, (q31_t)0x6B13FEF5, (q31_t)0x4621647C, (q31_t)0x6AF86C6C, (q31_t)0x464B6BBD, (q31_t)0x6ADCC964, (q31_t)0x46756827, (q31_t)0x6AC115E1, (q31_t)0x469F59B4, (q31_t)0x6AA551E8, (q31_t)0x46C9405C, (q31_t)0x6A897D7D, (q31_t)0x46F31C1A, (q31_t)0x6A6D98A4, (q31_t)0x471CECE6, (q31_t)0x6A51A361, (q31_t)0x4746B2BC, (q31_t)0x6A359DB9, (q31_t)0x47706D93, (q31_t)0x6A1987B0, (q31_t)0x479A1D66, (q31_t)0x69FD614A, (q31_t)0x47C3C22E, (q31_t)0x69E12A8C, (q31_t)0x47ED5BE6, (q31_t)0x69C4E37A, (q31_t)0x4816EA85, (q31_t)0x69A88C18, (q31_t)0x48406E07, (q31_t)0x698C246C, (q31_t)0x4869E664, (q31_t)0x696FAC78, (q31_t)0x48935397, (q31_t)0x69532442, (q31_t)0x48BCB598, (q31_t)0x69368BCE, (q31_t)0x48E60C62, (q31_t)0x6919E320, (q31_t)0x490F57EE, (q31_t)0x68FD2A3D, (q31_t)0x49389836, (q31_t)0x68E06129, (q31_t)0x4961CD32, (q31_t)0x68C387E9, (q31_t)0x498AF6DE, (q31_t)0x68A69E81, (q31_t)0x49B41533, (q31_t)0x6889A4F5, (q31_t)0x49DD282A, (q31_t)0x686C9B4B, (q31_t)0x4A062FBD, (q31_t)0x684F8186, (q31_t)0x4A2F2BE5, (q31_t)0x683257AA, (q31_t)0x4A581C9D, (q31_t)0x68151DBE, (q31_t)0x4A8101DE, (q31_t)0x67F7D3C4, (q31_t)0x4AA9DBA1, (q31_t)0x67DA79C2, (q31_t)0x4AD2A9E1, (q31_t)0x67BD0FBC, (q31_t)0x4AFB6C97, (q31_t)0x679F95B7, (q31_t)0x4B2423BD, (q31_t)0x67820BB6, (q31_t)0x4B4CCF4D, (q31_t)0x676471C0, (q31_t)0x4B756F3F, (q31_t)0x6746C7D7, (q31_t)0x4B9E038F, (q31_t)0x67290E02, (q31_t)0x4BC68C36, (q31_t)0x670B4443, (q31_t)0x4BEF092D, (q31_t)0x66ED6AA1, (q31_t)0x4C177A6E, (q31_t)0x66CF811F, (q31_t)0x4C3FDFF3, (q31_t)0x66B187C3, (q31_t)0x4C6839B6, (q31_t)0x66937E90, (q31_t)0x4C9087B1, (q31_t)0x6675658C, (q31_t)0x4CB8C9DD, (q31_t)0x66573CBB, (q31_t)0x4CE10034, (q31_t)0x66390422, (q31_t)0x4D092AB0, (q31_t)0x661ABBC5, (q31_t)0x4D31494B, (q31_t)0x65FC63A9, (q31_t)0x4D595BFE, (q31_t)0x65DDFBD3, (q31_t)0x4D8162C4, (q31_t)0x65BF8447, (q31_t)0x4DA95D96, (q31_t)0x65A0FD0B, (q31_t)0x4DD14C6E, (q31_t)0x65826622, (q31_t)0x4DF92F45, (q31_t)0x6563BF92, (q31_t)0x4E210617, (q31_t)0x6545095F, (q31_t)0x4E48D0DC, (q31_t)0x6526438E, (q31_t)0x4E708F8F, (q31_t)0x65076E24, (q31_t)0x4E984229, (q31_t)0x64E88926, (q31_t)0x4EBFE8A4, (q31_t)0x64C99498, (q31_t)0x4EE782FA, (q31_t)0x64AA907F, (q31_t)0x4F0F1126, (q31_t)0x648B7CDF, (q31_t)0x4F369320, (q31_t)0x646C59BF, (q31_t)0x4F5E08E3, (q31_t)0x644D2722, (q31_t)0x4F857268, (q31_t)0x642DE50D, (q31_t)0x4FACCFAB, (q31_t)0x640E9385, (q31_t)0x4FD420A3, (q31_t)0x63EF328F, (q31_t)0x4FFB654D, (q31_t)0x63CFC230, (q31_t)0x50229DA0, (q31_t)0x63B0426D, (q31_t)0x5049C999, (q31_t)0x6390B34A, (q31_t)0x5070E92F, (q31_t)0x637114CC, (q31_t)0x5097FC5E, (q31_t)0x635166F8, (q31_t)0x50BF031F, (q31_t)0x6331A9D4, (q31_t)0x50E5FD6C, (q31_t)0x6311DD63, (q31_t)0x510CEB40, (q31_t)0x62F201AC, (q31_t)0x5133CC94, (q31_t)0x62D216B2, (q31_t)0x515AA162, (q31_t)0x62B21C7B, (q31_t)0x518169A4, (q31_t)0x6292130C, (q31_t)0x51A82555, (q31_t)0x6271FA69, (q31_t)0x51CED46E, (q31_t)0x6251D297, (q31_t)0x51F576E9, (q31_t)0x62319B9D, (q31_t)0x521C0CC1, (q31_t)0x6211557D, (q31_t)0x524295EF, (q31_t)0x61F1003E, (q31_t)0x5269126E, (q31_t)0x61D09BE5, (q31_t)0x528F8237, (q31_t)0x61B02876, (q31_t)0x52B5E545, (q31_t)0x618FA5F6, (q31_t)0x52DC3B92, (q31_t)0x616F146B, (q31_t)0x53028517, (q31_t)0x614E73D9, (q31_t)0x5328C1D0, (q31_t)0x612DC446, (q31_t)0x534EF1B5, (q31_t)0x610D05B7, (q31_t)0x537514C1, (q31_t)0x60EC3830, (q31_t)0x539B2AEF, (q31_t)0x60CB5BB6, (q31_t)0x53C13438, (q31_t)0x60AA704F, (q31_t)0x53E73097, (q31_t)0x60897600, (q31_t)0x540D2005, (q31_t)0x60686CCE, (q31_t)0x5433027D, (q31_t)0x604754BE, (q31_t)0x5458D7F9, (q31_t)0x60262DD5, (q31_t)0x547EA073, (q31_t)0x6004F818, (q31_t)0x54A45BE5, (q31_t)0x5FE3B38D, (q31_t)0x54CA0A4A, (q31_t)0x5FC26038, (q31_t)0x54EFAB9C, (q31_t)0x5FA0FE1E, (q31_t)0x55153FD4, (q31_t)0x5F7F8D46, (q31_t)0x553AC6ED, (q31_t)0x5F5E0DB3, (q31_t)0x556040E2, (q31_t)0x5F3C7F6B, (q31_t)0x5585ADAC, (q31_t)0x5F1AE273, (q31_t)0x55AB0D46, (q31_t)0x5EF936D1, (q31_t)0x55D05FAA, (q31_t)0x5ED77C89, (q31_t)0x55F5A4D2, (q31_t)0x5EB5B3A1, (q31_t)0x561ADCB8, (q31_t)0x5E93DC1F, (q31_t)0x56400757, (q31_t)0x5E71F606, (q31_t)0x566524AA, (q31_t)0x5E50015D, (q31_t)0x568A34A9, (q31_t)0x5E2DFE28, (q31_t)0x56AF3750, (q31_t)0x5E0BEC6E, (q31_t)0x56D42C99, (q31_t)0x5DE9CC32, (q31_t)0x56F9147E, (q31_t)0x5DC79D7C, (q31_t)0x571DEEF9, (q31_t)0x5DA5604E, (q31_t)0x5742BC05, (q31_t)0x5D8314B0, (q31_t)0x57677B9D, (q31_t)0x5D60BAA6, (q31_t)0x578C2DB9, (q31_t)0x5D3E5236, (q31_t)0x57B0D256, (q31_t)0x5D1BDB65, (q31_t)0x57D5696C, (q31_t)0x5CF95638, (q31_t)0x57F9F2F7, (q31_t)0x5CD6C2B4, (q31_t)0x581E6EF1, (q31_t)0x5CB420DF, (q31_t)0x5842DD54, (q31_t)0x5C9170BF, (q31_t)0x58673E1B, (q31_t)0x5C6EB258, (q31_t)0x588B913F, (q31_t)0x5C4BE5B0, (q31_t)0x58AFD6BC, (q31_t)0x5C290ACC, (q31_t)0x58D40E8C, (q31_t)0x5C0621B2, (q31_t)0x58F838A9, (q31_t)0x5BE32A67, (q31_t)0x591C550E, (q31_t)0x5BC024F0, (q31_t)0x594063B4, (q31_t)0x5B9D1153, (q31_t)0x59646497, (q31_t)0x5B79EF96, (q31_t)0x598857B1, (q31_t)0x5B56BFBD, (q31_t)0x59AC3CFD, (q31_t)0x5B3381CE, (q31_t)0x59D01474, (q31_t)0x5B1035CF, (q31_t)0x59F3DE12, (q31_t)0x5AECDBC4, (q31_t)0x5A1799D0, (q31_t)0x5AC973B4, (q31_t)0x5A3B47AA, (q31_t)0x5AA5FDA4, (q31_t)0x5A5EE79A, (q31_t)0x5A82799A, (q31_t)0x5A82799A, (q31_t)0x5A5EE79A, (q31_t)0x5AA5FDA4, (q31_t)0x5A3B47AA, (q31_t)0x5AC973B4, (q31_t)0x5A1799D0, (q31_t)0x5AECDBC4, (q31_t)0x59F3DE12, (q31_t)0x5B1035CF, (q31_t)0x59D01474, (q31_t)0x5B3381CE, (q31_t)0x59AC3CFD, (q31_t)0x5B56BFBD, (q31_t)0x598857B1, (q31_t)0x5B79EF96, (q31_t)0x59646497, (q31_t)0x5B9D1153, (q31_t)0x594063B4, (q31_t)0x5BC024F0, (q31_t)0x591C550E, (q31_t)0x5BE32A67, (q31_t)0x58F838A9, (q31_t)0x5C0621B2, (q31_t)0x58D40E8C, (q31_t)0x5C290ACC, (q31_t)0x58AFD6BC, (q31_t)0x5C4BE5B0, (q31_t)0x588B913F, (q31_t)0x5C6EB258, (q31_t)0x58673E1B, (q31_t)0x5C9170BF, (q31_t)0x5842DD54, (q31_t)0x5CB420DF, (q31_t)0x581E6EF1, (q31_t)0x5CD6C2B4, (q31_t)0x57F9F2F7, (q31_t)0x5CF95638, (q31_t)0x57D5696C, (q31_t)0x5D1BDB65, (q31_t)0x57B0D256, (q31_t)0x5D3E5236, (q31_t)0x578C2DB9, (q31_t)0x5D60BAA6, (q31_t)0x57677B9D, (q31_t)0x5D8314B0, (q31_t)0x5742BC05, (q31_t)0x5DA5604E, (q31_t)0x571DEEF9, (q31_t)0x5DC79D7C, (q31_t)0x56F9147E, (q31_t)0x5DE9CC32, (q31_t)0x56D42C99, (q31_t)0x5E0BEC6E, (q31_t)0x56AF3750, (q31_t)0x5E2DFE28, (q31_t)0x568A34A9, (q31_t)0x5E50015D, (q31_t)0x566524AA, (q31_t)0x5E71F606, (q31_t)0x56400757, (q31_t)0x5E93DC1F, (q31_t)0x561ADCB8, (q31_t)0x5EB5B3A1, (q31_t)0x55F5A4D2, (q31_t)0x5ED77C89, (q31_t)0x55D05FAA, (q31_t)0x5EF936D1, (q31_t)0x55AB0D46, (q31_t)0x5F1AE273, (q31_t)0x5585ADAC, (q31_t)0x5F3C7F6B, (q31_t)0x556040E2, (q31_t)0x5F5E0DB3, (q31_t)0x553AC6ED, (q31_t)0x5F7F8D46, (q31_t)0x55153FD4, (q31_t)0x5FA0FE1E, (q31_t)0x54EFAB9C, (q31_t)0x5FC26038, (q31_t)0x54CA0A4A, (q31_t)0x5FE3B38D, (q31_t)0x54A45BE5, (q31_t)0x6004F818, (q31_t)0x547EA073, (q31_t)0x60262DD5, (q31_t)0x5458D7F9, (q31_t)0x604754BE, (q31_t)0x5433027D, (q31_t)0x60686CCE, (q31_t)0x540D2005, (q31_t)0x60897600, (q31_t)0x53E73097, (q31_t)0x60AA704F, (q31_t)0x53C13438, (q31_t)0x60CB5BB6, (q31_t)0x539B2AEF, (q31_t)0x60EC3830, (q31_t)0x537514C1, (q31_t)0x610D05B7, (q31_t)0x534EF1B5, (q31_t)0x612DC446, (q31_t)0x5328C1D0, (q31_t)0x614E73D9, (q31_t)0x53028517, (q31_t)0x616F146B, (q31_t)0x52DC3B92, (q31_t)0x618FA5F6, (q31_t)0x52B5E545, (q31_t)0x61B02876, (q31_t)0x528F8237, (q31_t)0x61D09BE5, (q31_t)0x5269126E, (q31_t)0x61F1003E, (q31_t)0x524295EF, (q31_t)0x6211557D, (q31_t)0x521C0CC1, (q31_t)0x62319B9D, (q31_t)0x51F576E9, (q31_t)0x6251D297, (q31_t)0x51CED46E, (q31_t)0x6271FA69, (q31_t)0x51A82555, (q31_t)0x6292130C, (q31_t)0x518169A4, (q31_t)0x62B21C7B, (q31_t)0x515AA162, (q31_t)0x62D216B2, (q31_t)0x5133CC94, (q31_t)0x62F201AC, (q31_t)0x510CEB40, (q31_t)0x6311DD63, (q31_t)0x50E5FD6C, (q31_t)0x6331A9D4, (q31_t)0x50BF031F, (q31_t)0x635166F8, (q31_t)0x5097FC5E, (q31_t)0x637114CC, (q31_t)0x5070E92F, (q31_t)0x6390B34A, (q31_t)0x5049C999, (q31_t)0x63B0426D, (q31_t)0x50229DA0, (q31_t)0x63CFC230, (q31_t)0x4FFB654D, (q31_t)0x63EF328F, (q31_t)0x4FD420A3, (q31_t)0x640E9385, (q31_t)0x4FACCFAB, (q31_t)0x642DE50D, (q31_t)0x4F857268, (q31_t)0x644D2722, (q31_t)0x4F5E08E3, (q31_t)0x646C59BF, (q31_t)0x4F369320, (q31_t)0x648B7CDF, (q31_t)0x4F0F1126, (q31_t)0x64AA907F, (q31_t)0x4EE782FA, (q31_t)0x64C99498, (q31_t)0x4EBFE8A4, (q31_t)0x64E88926, (q31_t)0x4E984229, (q31_t)0x65076E24, (q31_t)0x4E708F8F, (q31_t)0x6526438E, (q31_t)0x4E48D0DC, (q31_t)0x6545095F, (q31_t)0x4E210617, (q31_t)0x6563BF92, (q31_t)0x4DF92F45, (q31_t)0x65826622, (q31_t)0x4DD14C6E, (q31_t)0x65A0FD0B, (q31_t)0x4DA95D96, (q31_t)0x65BF8447, (q31_t)0x4D8162C4, (q31_t)0x65DDFBD3, (q31_t)0x4D595BFE, (q31_t)0x65FC63A9, (q31_t)0x4D31494B, (q31_t)0x661ABBC5, (q31_t)0x4D092AB0, (q31_t)0x66390422, (q31_t)0x4CE10034, (q31_t)0x66573CBB, (q31_t)0x4CB8C9DD, (q31_t)0x6675658C, (q31_t)0x4C9087B1, (q31_t)0x66937E90, (q31_t)0x4C6839B6, (q31_t)0x66B187C3, (q31_t)0x4C3FDFF3, (q31_t)0x66CF811F, (q31_t)0x4C177A6E, (q31_t)0x66ED6AA1, (q31_t)0x4BEF092D, (q31_t)0x670B4443, (q31_t)0x4BC68C36, (q31_t)0x67290E02, (q31_t)0x4B9E038F, (q31_t)0x6746C7D7, (q31_t)0x4B756F3F, (q31_t)0x676471C0, (q31_t)0x4B4CCF4D, (q31_t)0x67820BB6, (q31_t)0x4B2423BD, (q31_t)0x679F95B7, (q31_t)0x4AFB6C97, (q31_t)0x67BD0FBC, (q31_t)0x4AD2A9E1, (q31_t)0x67DA79C2, (q31_t)0x4AA9DBA1, (q31_t)0x67F7D3C4, (q31_t)0x4A8101DE, (q31_t)0x68151DBE, (q31_t)0x4A581C9D, (q31_t)0x683257AA, (q31_t)0x4A2F2BE5, (q31_t)0x684F8186, (q31_t)0x4A062FBD, (q31_t)0x686C9B4B, (q31_t)0x49DD282A, (q31_t)0x6889A4F5, (q31_t)0x49B41533, (q31_t)0x68A69E81, (q31_t)0x498AF6DE, (q31_t)0x68C387E9, (q31_t)0x4961CD32, (q31_t)0x68E06129, (q31_t)0x49389836, (q31_t)0x68FD2A3D, (q31_t)0x490F57EE, (q31_t)0x6919E320, (q31_t)0x48E60C62, (q31_t)0x69368BCE, (q31_t)0x48BCB598, (q31_t)0x69532442, (q31_t)0x48935397, (q31_t)0x696FAC78, (q31_t)0x4869E664, (q31_t)0x698C246C, (q31_t)0x48406E07, (q31_t)0x69A88C18, (q31_t)0x4816EA85, (q31_t)0x69C4E37A, (q31_t)0x47ED5BE6, (q31_t)0x69E12A8C, (q31_t)0x47C3C22E, (q31_t)0x69FD614A, (q31_t)0x479A1D66, (q31_t)0x6A1987B0, (q31_t)0x47706D93, (q31_t)0x6A359DB9, (q31_t)0x4746B2BC, (q31_t)0x6A51A361, (q31_t)0x471CECE6, (q31_t)0x6A6D98A4, (q31_t)0x46F31C1A, (q31_t)0x6A897D7D, (q31_t)0x46C9405C, (q31_t)0x6AA551E8, (q31_t)0x469F59B4, (q31_t)0x6AC115E1, (q31_t)0x46756827, (q31_t)0x6ADCC964, (q31_t)0x464B6BBD, (q31_t)0x6AF86C6C, (q31_t)0x4621647C, (q31_t)0x6B13FEF5, (q31_t)0x45F7526B, (q31_t)0x6B2F80FA, (q31_t)0x45CD358F, (q31_t)0x6B4AF278, (q31_t)0x45A30DF0, (q31_t)0x6B66536A, (q31_t)0x4578DB93, (q31_t)0x6B81A3CD, (q31_t)0x454E9E80, (q31_t)0x6B9CE39B, (q31_t)0x452456BC, (q31_t)0x6BB812D0, (q31_t)0x44FA044F, (q31_t)0x6BD3316A, (q31_t)0x44CFA73F, (q31_t)0x6BEE3F62, (q31_t)0x44A53F93, (q31_t)0x6C093CB6, (q31_t)0x447ACD50, (q31_t)0x6C242960, (q31_t)0x4450507E, (q31_t)0x6C3F055D, (q31_t)0x4425C923, (q31_t)0x6C59D0A9, (q31_t)0x43FB3745, (q31_t)0x6C748B3F, (q31_t)0x43D09AEC, (q31_t)0x6C8F351C, (q31_t)0x43A5F41E, (q31_t)0x6CA9CE3A, (q31_t)0x437B42E1, (q31_t)0x6CC45697, (q31_t)0x4350873C, (q31_t)0x6CDECE2E, (q31_t)0x4325C135, (q31_t)0x6CF934FB, (q31_t)0x42FAF0D4, (q31_t)0x6D138AFA, (q31_t)0x42D0161E, (q31_t)0x6D2DD027, (q31_t)0x42A5311A, (q31_t)0x6D48047E, (q31_t)0x427A41D0, (q31_t)0x6D6227FA, (q31_t)0x424F4845, (q31_t)0x6D7C3A98, (q31_t)0x42244480, (q31_t)0x6D963C54, (q31_t)0x41F93688, (q31_t)0x6DB02D29, (q31_t)0x41CE1E64, (q31_t)0x6DCA0D14, (q31_t)0x41A2FC1A, (q31_t)0x6DE3DC11, (q31_t)0x4177CFB0, (q31_t)0x6DFD9A1B, (q31_t)0x414C992E, (q31_t)0x6E17472F, (q31_t)0x4121589A, (q31_t)0x6E30E349, (q31_t)0x40F60DFB, (q31_t)0x6E4A6E65, (q31_t)0x40CAB957, (q31_t)0x6E63E87F, (q31_t)0x409F5AB6, (q31_t)0x6E7D5193, (q31_t)0x4073F21D, (q31_t)0x6E96A99C, (q31_t)0x40487F93, (q31_t)0x6EAFF098, (q31_t)0x401D0320, (q31_t)0x6EC92682, (q31_t)0x3FF17CCA, (q31_t)0x6EE24B57, (q31_t)0x3FC5EC97, (q31_t)0x6EFB5F12, (q31_t)0x3F9A528F, (q31_t)0x6F1461AF, (q31_t)0x3F6EAEB8, (q31_t)0x6F2D532C, (q31_t)0x3F430118, (q31_t)0x6F463383, (q31_t)0x3F1749B7, (q31_t)0x6F5F02B1, (q31_t)0x3EEB889C, (q31_t)0x6F77C0B3, (q31_t)0x3EBFBDCC, (q31_t)0x6F906D84, (q31_t)0x3E93E94F, (q31_t)0x6FA90920, (q31_t)0x3E680B2C, (q31_t)0x6FC19385, (q31_t)0x3E3C2369, (q31_t)0x6FDA0CAD, (q31_t)0x3E10320D, (q31_t)0x6FF27496, (q31_t)0x3DE4371F, (q31_t)0x700ACB3B, (q31_t)0x3DB832A5, (q31_t)0x70231099, (q31_t)0x3D8C24A7, (q31_t)0x703B44AC, (q31_t)0x3D600D2B, (q31_t)0x70536771, (q31_t)0x3D33EC39, (q31_t)0x706B78E3, (q31_t)0x3D07C1D5, (q31_t)0x708378FE, (q31_t)0x3CDB8E09, (q31_t)0x709B67C0, (q31_t)0x3CAF50DA, (q31_t)0x70B34524, (q31_t)0x3C830A4F, (q31_t)0x70CB1127, (q31_t)0x3C56BA70, (q31_t)0x70E2CBC6, (q31_t)0x3C2A6142, (q31_t)0x70FA74FB, (q31_t)0x3BFDFECD, (q31_t)0x71120CC5, (q31_t)0x3BD19317, (q31_t)0x7129931E, (q31_t)0x3BA51E29, (q31_t)0x71410804, (q31_t)0x3B78A007, (q31_t)0x71586B73, (q31_t)0x3B4C18BA, (q31_t)0x716FBD68, (q31_t)0x3B1F8847, (q31_t)0x7186FDDE, (q31_t)0x3AF2EEB7, (q31_t)0x719E2CD2, (q31_t)0x3AC64C0F, (q31_t)0x71B54A40, (q31_t)0x3A99A057, (q31_t)0x71CC5626, (q31_t)0x3A6CEB95, (q31_t)0x71E3507F, (q31_t)0x3A402DD1, (q31_t)0x71FA3948, (q31_t)0x3A136712, (q31_t)0x7211107D, (q31_t)0x39E6975D, (q31_t)0x7227D61C, (q31_t)0x39B9BEBB, (q31_t)0x723E8A1F, (q31_t)0x398CDD32, (q31_t)0x72552C84, (q31_t)0x395FF2C9, (q31_t)0x726BBD48, (q31_t)0x3932FF87, (q31_t)0x72823C66, (q31_t)0x39060372, (q31_t)0x7298A9DC, (q31_t)0x38D8FE93, (q31_t)0x72AF05A6, (q31_t)0x38ABF0EF, (q31_t)0x72C54FC0, (q31_t)0x387EDA8E, (q31_t)0x72DB8828, (q31_t)0x3851BB76, (q31_t)0x72F1AED8, (q31_t)0x382493B0, (q31_t)0x7307C3D0, (q31_t)0x37F76340, (q31_t)0x731DC709, (q31_t)0x37CA2A30, (q31_t)0x7333B883, (q31_t)0x379CE884, (q31_t)0x73499838, (q31_t)0x376F9E46, (q31_t)0x735F6626, (q31_t)0x37424B7A, (q31_t)0x73752249, (q31_t)0x3714F02A, (q31_t)0x738ACC9E, (q31_t)0x36E78C5A, (q31_t)0x73A06522, (q31_t)0x36BA2013, (q31_t)0x73B5EBD0, (q31_t)0x368CAB5C, (q31_t)0x73CB60A7, (q31_t)0x365F2E3B, (q31_t)0x73E0C3A3, (q31_t)0x3631A8B7, (q31_t)0x73F614C0, (q31_t)0x36041AD9, (q31_t)0x740B53FA, (q31_t)0x35D684A5, (q31_t)0x74208150, (q31_t)0x35A8E624, (q31_t)0x74359CBD, (q31_t)0x357B3F5D, (q31_t)0x744AA63E, (q31_t)0x354D9056, (q31_t)0x745F9DD1, (q31_t)0x351FD917, (q31_t)0x74748371, (q31_t)0x34F219A7, (q31_t)0x7489571B, (q31_t)0x34C4520D, (q31_t)0x749E18CD, (q31_t)0x3496824F, (q31_t)0x74B2C883, (q31_t)0x3468AA76, (q31_t)0x74C7663A, (q31_t)0x343ACA87, (q31_t)0x74DBF1EF, (q31_t)0x340CE28A, (q31_t)0x74F06B9E, (q31_t)0x33DEF287, (q31_t)0x7504D345, (q31_t)0x33B0FA84, (q31_t)0x751928E0, (q31_t)0x3382FA88, (q31_t)0x752D6C6C, (q31_t)0x3354F29A, (q31_t)0x75419DE6, (q31_t)0x3326E2C2, (q31_t)0x7555BD4B, (q31_t)0x32F8CB07, (q31_t)0x7569CA98, (q31_t)0x32CAAB6F, (q31_t)0x757DC5CA, (q31_t)0x329C8402, (q31_t)0x7591AEDD, (q31_t)0x326E54C7, (q31_t)0x75A585CF, (q31_t)0x32401DC5, (q31_t)0x75B94A9C, (q31_t)0x3211DF03, (q31_t)0x75CCFD42, (q31_t)0x31E39889, (q31_t)0x75E09DBD, (q31_t)0x31B54A5D, (q31_t)0x75F42C0A, (q31_t)0x3186F487, (q31_t)0x7607A827, (q31_t)0x3158970D, (q31_t)0x761B1211, (q31_t)0x312A31F8, (q31_t)0x762E69C3, (q31_t)0x30FBC54D, (q31_t)0x7641AF3C, (q31_t)0x30CD5114, (q31_t)0x7654E279, (q31_t)0x309ED555, (q31_t)0x76680376, (q31_t)0x30705217, (q31_t)0x767B1230, (q31_t)0x3041C760, (q31_t)0x768E0EA5, (q31_t)0x30133538, (q31_t)0x76A0F8D2, (q31_t)0x2FE49BA6, (q31_t)0x76B3D0B3, (q31_t)0x2FB5FAB2, (q31_t)0x76C69646, (q31_t)0x2F875262, (q31_t)0x76D94988, (q31_t)0x2F58A2BD, (q31_t)0x76EBEA77, (q31_t)0x2F29EBCC, (q31_t)0x76FE790E, (q31_t)0x2EFB2D94, (q31_t)0x7710F54B, (q31_t)0x2ECC681E, (q31_t)0x77235F2D, (q31_t)0x2E9D9B70, (q31_t)0x7735B6AE, (q31_t)0x2E6EC792, (q31_t)0x7747FBCE, (q31_t)0x2E3FEC8B, (q31_t)0x775A2E88, (q31_t)0x2E110A62, (q31_t)0x776C4EDB, (q31_t)0x2DE2211E, (q31_t)0x777E5CC3, (q31_t)0x2DB330C7, (q31_t)0x7790583D, (q31_t)0x2D843963, (q31_t)0x77A24148, (q31_t)0x2D553AFB, (q31_t)0x77B417DF, (q31_t)0x2D263595, (q31_t)0x77C5DC01, (q31_t)0x2CF72939, (q31_t)0x77D78DAA, (q31_t)0x2CC815ED, (q31_t)0x77E92CD8, (q31_t)0x2C98FBBA, (q31_t)0x77FAB988, (q31_t)0x2C69DAA6, (q31_t)0x780C33B8, (q31_t)0x2C3AB2B9, (q31_t)0x781D9B64, (q31_t)0x2C0B83F9, (q31_t)0x782EF08B, (q31_t)0x2BDC4E6F, (q31_t)0x78403328, (q31_t)0x2BAD1221, (q31_t)0x7851633B, (q31_t)0x2B7DCF17, (q31_t)0x786280BF, (q31_t)0x2B4E8558, (q31_t)0x78738BB3, (q31_t)0x2B1F34EB, (q31_t)0x78848413, (q31_t)0x2AEFDDD8, (q31_t)0x789569DE, (q31_t)0x2AC08025, (q31_t)0x78A63D10, (q31_t)0x2A911BDB, (q31_t)0x78B6FDA8, (q31_t)0x2A61B101, (q31_t)0x78C7ABA1, (q31_t)0x2A323F9D, (q31_t)0x78D846FB, (q31_t)0x2A02C7B8, (q31_t)0x78E8CFB1, (q31_t)0x29D34958, (q31_t)0x78F945C3, (q31_t)0x29A3C484, (q31_t)0x7909A92C, (q31_t)0x29743945, (q31_t)0x7919F9EB, (q31_t)0x2944A7A2, (q31_t)0x792A37FE, (q31_t)0x29150FA1, (q31_t)0x793A6360, (q31_t)0x28E5714A, (q31_t)0x794A7C11, (q31_t)0x28B5CCA5, (q31_t)0x795A820E, (q31_t)0x288621B9, (q31_t)0x796A7554, (q31_t)0x2856708C, (q31_t)0x797A55E0, (q31_t)0x2826B928, (q31_t)0x798A23B1, (q31_t)0x27F6FB92, (q31_t)0x7999DEC3, (q31_t)0x27C737D2, (q31_t)0x79A98715, (q31_t)0x27976DF1, (q31_t)0x79B91CA4, (q31_t)0x27679DF4, (q31_t)0x79C89F6D, (q31_t)0x2737C7E3, (q31_t)0x79D80F6F, (q31_t)0x2707EBC6, (q31_t)0x79E76CA6, (q31_t)0x26D809A5, (q31_t)0x79F6B711, (q31_t)0x26A82185, (q31_t)0x7A05EEAD, (q31_t)0x26783370, (q31_t)0x7A151377, (q31_t)0x26483F6C, (q31_t)0x7A24256E, (q31_t)0x26184581, (q31_t)0x7A33248F, (q31_t)0x25E845B5, (q31_t)0x7A4210D8, (q31_t)0x25B84012, (q31_t)0x7A50EA46, (q31_t)0x2588349D, (q31_t)0x7A5FB0D8, (q31_t)0x2558235E, (q31_t)0x7A6E648A, (q31_t)0x25280C5D, (q31_t)0x7A7D055B, (q31_t)0x24F7EFA1, (q31_t)0x7A8B9348, (q31_t)0x24C7CD32, (q31_t)0x7A9A0E4F, (q31_t)0x2497A517, (q31_t)0x7AA8766E, (q31_t)0x24677757, (q31_t)0x7AB6CBA3, (q31_t)0x243743FA, (q31_t)0x7AC50DEB, (q31_t)0x24070B07, (q31_t)0x7AD33D45, (q31_t)0x23D6CC86, (q31_t)0x7AE159AE, (q31_t)0x23A6887E, (q31_t)0x7AEF6323, (q31_t)0x23763EF7, (q31_t)0x7AFD59A3, (q31_t)0x2345EFF7, (q31_t)0x7B0B3D2C, (q31_t)0x23159B87, (q31_t)0x7B190DBB, (q31_t)0x22E541AE, (q31_t)0x7B26CB4F, (q31_t)0x22B4E274, (q31_t)0x7B3475E4, (q31_t)0x22847DDF, (q31_t)0x7B420D7A, (q31_t)0x225413F8, (q31_t)0x7B4F920E, (q31_t)0x2223A4C5, (q31_t)0x7B5D039D, (q31_t)0x21F3304E, (q31_t)0x7B6A6227, (q31_t)0x21C2B69C, (q31_t)0x7B77ADA8, (q31_t)0x219237B4, (q31_t)0x7B84E61E, (q31_t)0x2161B39F, (q31_t)0x7B920B89, (q31_t)0x21312A65, (q31_t)0x7B9F1DE5, (q31_t)0x21009C0B, (q31_t)0x7BAC1D31, (q31_t)0x20D0089B, (q31_t)0x7BB9096A, (q31_t)0x209F701C, (q31_t)0x7BC5E28F, (q31_t)0x206ED295, (q31_t)0x7BD2A89E, (q31_t)0x203E300D, (q31_t)0x7BDF5B94, (q31_t)0x200D888C, (q31_t)0x7BEBFB70, (q31_t)0x1FDCDC1A, (q31_t)0x7BF88830, (q31_t)0x1FAC2ABF, (q31_t)0x7C0501D1, (q31_t)0x1F7B7480, (q31_t)0x7C116853, (q31_t)0x1F4AB967, (q31_t)0x7C1DBBB2, (q31_t)0x1F19F97B, (q31_t)0x7C29FBEE, (q31_t)0x1EE934C2, (q31_t)0x7C362904, (q31_t)0x1EB86B46, (q31_t)0x7C4242F2, (q31_t)0x1E879D0C, (q31_t)0x7C4E49B6, (q31_t)0x1E56CA1E, (q31_t)0x7C5A3D4F, (q31_t)0x1E25F281, (q31_t)0x7C661DBB, (q31_t)0x1DF5163F, (q31_t)0x7C71EAF8, (q31_t)0x1DC4355D, (q31_t)0x7C7DA504, (q31_t)0x1D934FE5, (q31_t)0x7C894BDD, (q31_t)0x1D6265DD, (q31_t)0x7C94DF82, (q31_t)0x1D31774D, (q31_t)0x7CA05FF1, (q31_t)0x1D00843C, (q31_t)0x7CABCD27, (q31_t)0x1CCF8CB3, (q31_t)0x7CB72724, (q31_t)0x1C9E90B8, (q31_t)0x7CC26DE5, (q31_t)0x1C6D9053, (q31_t)0x7CCDA168, (q31_t)0x1C3C8B8C, (q31_t)0x7CD8C1AD, (q31_t)0x1C0B826A, (q31_t)0x7CE3CEB1, (q31_t)0x1BDA74F5, (q31_t)0x7CEEC873, (q31_t)0x1BA96334, (q31_t)0x7CF9AEF0, (q31_t)0x1B784D30, (q31_t)0x7D048228, (q31_t)0x1B4732EF, (q31_t)0x7D0F4218, (q31_t)0x1B161479, (q31_t)0x7D19EEBE, (q31_t)0x1AE4F1D6, (q31_t)0x7D24881A, (q31_t)0x1AB3CB0C, (q31_t)0x7D2F0E2A, (q31_t)0x1A82A025, (q31_t)0x7D3980EC, (q31_t)0x1A517127, (q31_t)0x7D43E05E, (q31_t)0x1A203E1B, (q31_t)0x7D4E2C7E, (q31_t)0x19EF0706, (q31_t)0x7D58654C, (q31_t)0x19BDCBF2, (q31_t)0x7D628AC5, (q31_t)0x198C8CE6, (q31_t)0x7D6C9CE9, (q31_t)0x195B49E9, (q31_t)0x7D769BB5, (q31_t)0x192A0303, (q31_t)0x7D808727, (q31_t)0x18F8B83C, (q31_t)0x7D8A5F3F, (q31_t)0x18C7699B, (q31_t)0x7D9423FB, (q31_t)0x18961727, (q31_t)0x7D9DD55A, (q31_t)0x1864C0E9, (q31_t)0x7DA77359, (q31_t)0x183366E8, (q31_t)0x7DB0FDF7, (q31_t)0x1802092C, (q31_t)0x7DBA7534, (q31_t)0x17D0A7BB, (q31_t)0x7DC3D90D, (q31_t)0x179F429F, (q31_t)0x7DCD2981, (q31_t)0x176DD9DE, (q31_t)0x7DD6668E, (q31_t)0x173C6D80, (q31_t)0x7DDF9034, (q31_t)0x170AFD8D, (q31_t)0x7DE8A670, (q31_t)0x16D98A0C, (q31_t)0x7DF1A942, (q31_t)0x16A81305, (q31_t)0x7DFA98A7, (q31_t)0x1676987F, (q31_t)0x7E03749F, (q31_t)0x16451A83, (q31_t)0x7E0C3D29, (q31_t)0x16139917, (q31_t)0x7E14F242, (q31_t)0x15E21444, (q31_t)0x7E1D93E9, (q31_t)0x15B08C11, (q31_t)0x7E26221E, (q31_t)0x157F0086, (q31_t)0x7E2E9CDF, (q31_t)0x154D71AA, (q31_t)0x7E37042A, (q31_t)0x151BDF85, (q31_t)0x7E3F57FE, (q31_t)0x14EA4A1F, (q31_t)0x7E47985B, (q31_t)0x14B8B17F, (q31_t)0x7E4FC53E, (q31_t)0x148715AD, (q31_t)0x7E57DEA6, (q31_t)0x145576B1, (q31_t)0x7E5FE493, (q31_t)0x1423D492, (q31_t)0x7E67D702, (q31_t)0x13F22F57, (q31_t)0x7E6FB5F3, (q31_t)0x13C0870A, (q31_t)0x7E778165, (q31_t)0x138EDBB0, (q31_t)0x7E7F3956, (q31_t)0x135D2D53, (q31_t)0x7E86DDC5, (q31_t)0x132B7BF9, (q31_t)0x7E8E6EB1, (q31_t)0x12F9C7AA, (q31_t)0x7E95EC19, (q31_t)0x12C8106E, (q31_t)0x7E9D55FC, (q31_t)0x1296564D, (q31_t)0x7EA4AC58, (q31_t)0x1264994E, (q31_t)0x7EABEF2C, (q31_t)0x1232D978, (q31_t)0x7EB31E77, (q31_t)0x120116D4, (q31_t)0x7EBA3A39, (q31_t)0x11CF516A, (q31_t)0x7EC1426F, (q31_t)0x119D8940, (q31_t)0x7EC8371A, (q31_t)0x116BBE5F, (q31_t)0x7ECF1837, (q31_t)0x1139F0CE, (q31_t)0x7ED5E5C6, (q31_t)0x11082096, (q31_t)0x7EDC9FC6, (q31_t)0x10D64DBC, (q31_t)0x7EE34635, (q31_t)0x10A4784A, (q31_t)0x7EE9D913, (q31_t)0x1072A047, (q31_t)0x7EF0585F, (q31_t)0x1040C5BB, (q31_t)0x7EF6C418, (q31_t)0x100EE8AD, (q31_t)0x7EFD1C3C, (q31_t)0x0FDD0925, (q31_t)0x7F0360CB, (q31_t)0x0FAB272B, (q31_t)0x7F0991C3, (q31_t)0x0F7942C6, (q31_t)0x7F0FAF24, (q31_t)0x0F475BFE, (q31_t)0x7F15B8EE, (q31_t)0x0F1572DC, (q31_t)0x7F1BAF1E, (q31_t)0x0EE38765, (q31_t)0x7F2191B4, (q31_t)0x0EB199A3, (q31_t)0x7F2760AF, (q31_t)0x0E7FA99D, (q31_t)0x7F2D1C0E, (q31_t)0x0E4DB75B, (q31_t)0x7F32C3D0, (q31_t)0x0E1BC2E3, (q31_t)0x7F3857F5, (q31_t)0x0DE9CC3F, (q31_t)0x7F3DD87C, (q31_t)0x0DB7D376, (q31_t)0x7F434563, (q31_t)0x0D85D88F, (q31_t)0x7F489EAA, (q31_t)0x0D53DB92, (q31_t)0x7F4DE450, (q31_t)0x0D21DC87, (q31_t)0x7F531654, (q31_t)0x0CEFDB75, (q31_t)0x7F5834B6, (q31_t)0x0CBDD865, (q31_t)0x7F5D3F75, (q31_t)0x0C8BD35E, (q31_t)0x7F62368F, (q31_t)0x0C59CC67, (q31_t)0x7F671A04, (q31_t)0x0C27C389, (q31_t)0x7F6BE9D4, (q31_t)0x0BF5B8CB, (q31_t)0x7F70A5FD, (q31_t)0x0BC3AC35, (q31_t)0x7F754E7F, (q31_t)0x0B919DCE, (q31_t)0x7F79E35A, (q31_t)0x0B5F8D9F, (q31_t)0x7F7E648B, (q31_t)0x0B2D7BAE, (q31_t)0x7F82D214, (q31_t)0x0AFB6805, (q31_t)0x7F872BF3, (q31_t)0x0AC952AA, (q31_t)0x7F8B7226, (q31_t)0x0A973BA5, (q31_t)0x7F8FA4AF, (q31_t)0x0A6522FE, (q31_t)0x7F93C38C, (q31_t)0x0A3308BC, (q31_t)0x7F97CEBC, (q31_t)0x0A00ECE8, (q31_t)0x7F9BC63F, (q31_t)0x09CECF89, (q31_t)0x7F9FAA15, (q31_t)0x099CB0A7, (q31_t)0x7FA37A3C, (q31_t)0x096A9049, (q31_t)0x7FA736B4, (q31_t)0x09386E77, (q31_t)0x7FAADF7C, (q31_t)0x09064B3A, (q31_t)0x7FAE7494, (q31_t)0x08D42698, (q31_t)0x7FB1F5FC, (q31_t)0x08A2009A, (q31_t)0x7FB563B2, (q31_t)0x086FD947, (q31_t)0x7FB8BDB7, (q31_t)0x083DB0A7, (q31_t)0x7FBC040A, (q31_t)0x080B86C1, (q31_t)0x7FBF36A9, (q31_t)0x07D95B9E, (q31_t)0x7FC25596, (q31_t)0x07A72F45, (q31_t)0x7FC560CF, (q31_t)0x077501BE, (q31_t)0x7FC85853, (q31_t)0x0742D310, (q31_t)0x7FCB3C23, (q31_t)0x0710A344, (q31_t)0x7FCE0C3E, (q31_t)0x06DE7261, (q31_t)0x7FD0C8A3, (q31_t)0x06AC406F, (q31_t)0x7FD37152, (q31_t)0x067A0D75, (q31_t)0x7FD6064B, (q31_t)0x0647D97C, (q31_t)0x7FD8878D, (q31_t)0x0615A48A, (q31_t)0x7FDAF518, (q31_t)0x05E36EA9, (q31_t)0x7FDD4EEC, (q31_t)0x05B137DF, (q31_t)0x7FDF9508, (q31_t)0x057F0034, (q31_t)0x7FE1C76B, (q31_t)0x054CC7B0, (q31_t)0x7FE3E616, (q31_t)0x051A8E5C, (q31_t)0x7FE5F108, (q31_t)0x04E8543D, (q31_t)0x7FE7E840, (q31_t)0x04B6195D, (q31_t)0x7FE9CBC0, (q31_t)0x0483DDC3, (q31_t)0x7FEB9B85, (q31_t)0x0451A176, (q31_t)0x7FED5790, (q31_t)0x041F647F, (q31_t)0x7FEEFFE1, (q31_t)0x03ED26E6, (q31_t)0x7FF09477, (q31_t)0x03BAE8B1, (q31_t)0x7FF21553, (q31_t)0x0388A9E9, (q31_t)0x7FF38273, (q31_t)0x03566A96, (q31_t)0x7FF4DBD8, (q31_t)0x03242ABF, (q31_t)0x7FF62182, (q31_t)0x02F1EA6B, (q31_t)0x7FF7536F, (q31_t)0x02BFA9A4, (q31_t)0x7FF871A1, (q31_t)0x028D6870, (q31_t)0x7FF97C17, (q31_t)0x025B26D7, (q31_t)0x7FFA72D1, (q31_t)0x0228E4E1, (q31_t)0x7FFB55CE, (q31_t)0x01F6A296, (q31_t)0x7FFC250F, (q31_t)0x01C45FFE, (q31_t)0x7FFCE093, (q31_t)0x01921D1F, (q31_t)0x7FFD885A, (q31_t)0x015FDA03, (q31_t)0x7FFE1C64, (q31_t)0x012D96B0, (q31_t)0x7FFE9CB2, (q31_t)0x00FB532F, (q31_t)0x7FFF0942, (q31_t)0x00C90F88, (q31_t)0x7FFF6216, (q31_t)0x0096CBC1, (q31_t)0x7FFFA72C, (q31_t)0x006487E3, (q31_t)0x7FFFD885, (q31_t)0x003243F5, (q31_t)0x7FFFF621, (q31_t)0x00000000, (q31_t)0x7FFFFFFF, (q31_t)0xFFCDBC0A, (q31_t)0x7FFFF621, (q31_t)0xFF9B781D, (q31_t)0x7FFFD885, (q31_t)0xFF69343E, (q31_t)0x7FFFA72C, (q31_t)0xFF36F078, (q31_t)0x7FFF6216, (q31_t)0xFF04ACD0, (q31_t)0x7FFF0942, (q31_t)0xFED2694F, (q31_t)0x7FFE9CB2, (q31_t)0xFEA025FC, (q31_t)0x7FFE1C64, (q31_t)0xFE6DE2E0, (q31_t)0x7FFD885A, (q31_t)0xFE3BA001, (q31_t)0x7FFCE093, (q31_t)0xFE095D69, (q31_t)0x7FFC250F, (q31_t)0xFDD71B1E, (q31_t)0x7FFB55CE, (q31_t)0xFDA4D928, (q31_t)0x7FFA72D1, (q31_t)0xFD72978F, (q31_t)0x7FF97C17, (q31_t)0xFD40565B, (q31_t)0x7FF871A1, (q31_t)0xFD0E1594, (q31_t)0x7FF7536F, (q31_t)0xFCDBD541, (q31_t)0x7FF62182, (q31_t)0xFCA99569, (q31_t)0x7FF4DBD8, (q31_t)0xFC775616, (q31_t)0x7FF38273, (q31_t)0xFC45174E, (q31_t)0x7FF21553, (q31_t)0xFC12D919, (q31_t)0x7FF09477, (q31_t)0xFBE09B80, (q31_t)0x7FEEFFE1, (q31_t)0xFBAE5E89, (q31_t)0x7FED5790, (q31_t)0xFB7C223C, (q31_t)0x7FEB9B85, (q31_t)0xFB49E6A2, (q31_t)0x7FE9CBC0, (q31_t)0xFB17ABC2, (q31_t)0x7FE7E840, (q31_t)0xFAE571A4, (q31_t)0x7FE5F108, (q31_t)0xFAB3384F, (q31_t)0x7FE3E616, (q31_t)0xFA80FFCB, (q31_t)0x7FE1C76B, (q31_t)0xFA4EC820, (q31_t)0x7FDF9508, (q31_t)0xFA1C9156, (q31_t)0x7FDD4EEC, (q31_t)0xF9EA5B75, (q31_t)0x7FDAF518, (q31_t)0xF9B82683, (q31_t)0x7FD8878D, (q31_t)0xF985F28A, (q31_t)0x7FD6064B, (q31_t)0xF953BF90, (q31_t)0x7FD37152, (q31_t)0xF9218D9E, (q31_t)0x7FD0C8A3, (q31_t)0xF8EF5CBB, (q31_t)0x7FCE0C3E, (q31_t)0xF8BD2CEF, (q31_t)0x7FCB3C23, (q31_t)0xF88AFE41, (q31_t)0x7FC85853, (q31_t)0xF858D0BA, (q31_t)0x7FC560CF, (q31_t)0xF826A461, (q31_t)0x7FC25596, (q31_t)0xF7F4793E, (q31_t)0x7FBF36A9, (q31_t)0xF7C24F58, (q31_t)0x7FBC040A, (q31_t)0xF79026B8, (q31_t)0x7FB8BDB7, (q31_t)0xF75DFF65, (q31_t)0x7FB563B2, (q31_t)0xF72BD967, (q31_t)0x7FB1F5FC, (q31_t)0xF6F9B4C5, (q31_t)0x7FAE7494, (q31_t)0xF6C79188, (q31_t)0x7FAADF7C, (q31_t)0xF6956FB6, (q31_t)0x7FA736B4, (q31_t)0xF6634F58, (q31_t)0x7FA37A3C, (q31_t)0xF6313076, (q31_t)0x7F9FAA15, (q31_t)0xF5FF1317, (q31_t)0x7F9BC63F, (q31_t)0xF5CCF743, (q31_t)0x7F97CEBC, (q31_t)0xF59ADD01, (q31_t)0x7F93C38C, (q31_t)0xF568C45A, (q31_t)0x7F8FA4AF, (q31_t)0xF536AD55, (q31_t)0x7F8B7226, (q31_t)0xF50497FA, (q31_t)0x7F872BF3, (q31_t)0xF4D28451, (q31_t)0x7F82D214, (q31_t)0xF4A07260, (q31_t)0x7F7E648B, (q31_t)0xF46E6231, (q31_t)0x7F79E35A, (q31_t)0xF43C53CA, (q31_t)0x7F754E7F, (q31_t)0xF40A4734, (q31_t)0x7F70A5FD, (q31_t)0xF3D83C76, (q31_t)0x7F6BE9D4, (q31_t)0xF3A63398, (q31_t)0x7F671A04, (q31_t)0xF3742CA1, (q31_t)0x7F62368F, (q31_t)0xF342279A, (q31_t)0x7F5D3F75, (q31_t)0xF310248A, (q31_t)0x7F5834B6, (q31_t)0xF2DE2378, (q31_t)0x7F531654, (q31_t)0xF2AC246D, (q31_t)0x7F4DE450, (q31_t)0xF27A2770, (q31_t)0x7F489EAA, (q31_t)0xF2482C89, (q31_t)0x7F434563, (q31_t)0xF21633C0, (q31_t)0x7F3DD87C, (q31_t)0xF1E43D1C, (q31_t)0x7F3857F5, (q31_t)0xF1B248A5, (q31_t)0x7F32C3D0, (q31_t)0xF1805662, (q31_t)0x7F2D1C0E, (q31_t)0xF14E665C, (q31_t)0x7F2760AF, (q31_t)0xF11C789A, (q31_t)0x7F2191B4, (q31_t)0xF0EA8D23, (q31_t)0x7F1BAF1E, (q31_t)0xF0B8A401, (q31_t)0x7F15B8EE, (q31_t)0xF086BD39, (q31_t)0x7F0FAF24, (q31_t)0xF054D8D4, (q31_t)0x7F0991C3, (q31_t)0xF022F6DA, (q31_t)0x7F0360CB, (q31_t)0xEFF11752, (q31_t)0x7EFD1C3C, (q31_t)0xEFBF3A44, (q31_t)0x7EF6C418, (q31_t)0xEF8D5FB8, (q31_t)0x7EF0585F, (q31_t)0xEF5B87B5, (q31_t)0x7EE9D913, (q31_t)0xEF29B243, (q31_t)0x7EE34635, (q31_t)0xEEF7DF6A, (q31_t)0x7EDC9FC6, (q31_t)0xEEC60F31, (q31_t)0x7ED5E5C6, (q31_t)0xEE9441A0, (q31_t)0x7ECF1837, (q31_t)0xEE6276BF, (q31_t)0x7EC8371A, (q31_t)0xEE30AE95, (q31_t)0x7EC1426F, (q31_t)0xEDFEE92B, (q31_t)0x7EBA3A39, (q31_t)0xEDCD2687, (q31_t)0x7EB31E77, (q31_t)0xED9B66B2, (q31_t)0x7EABEF2C, (q31_t)0xED69A9B2, (q31_t)0x7EA4AC58, (q31_t)0xED37EF91, (q31_t)0x7E9D55FC, (q31_t)0xED063855, (q31_t)0x7E95EC19, (q31_t)0xECD48406, (q31_t)0x7E8E6EB1, (q31_t)0xECA2D2AC, (q31_t)0x7E86DDC5, (q31_t)0xEC71244F, (q31_t)0x7E7F3956, (q31_t)0xEC3F78F5, (q31_t)0x7E778165, (q31_t)0xEC0DD0A8, (q31_t)0x7E6FB5F3, (q31_t)0xEBDC2B6D, (q31_t)0x7E67D702, (q31_t)0xEBAA894E, (q31_t)0x7E5FE493, (q31_t)0xEB78EA52, (q31_t)0x7E57DEA6, (q31_t)0xEB474E80, (q31_t)0x7E4FC53E, (q31_t)0xEB15B5E0, (q31_t)0x7E47985B, (q31_t)0xEAE4207A, (q31_t)0x7E3F57FE, (q31_t)0xEAB28E55, (q31_t)0x7E37042A, (q31_t)0xEA80FF79, (q31_t)0x7E2E9CDF, (q31_t)0xEA4F73EE, (q31_t)0x7E26221E, (q31_t)0xEA1DEBBB, (q31_t)0x7E1D93E9, (q31_t)0xE9EC66E8, (q31_t)0x7E14F242, (q31_t)0xE9BAE57C, (q31_t)0x7E0C3D29, (q31_t)0xE9896780, (q31_t)0x7E03749F, (q31_t)0xE957ECFB, (q31_t)0x7DFA98A7, (q31_t)0xE92675F4, (q31_t)0x7DF1A942, (q31_t)0xE8F50273, (q31_t)0x7DE8A670, (q31_t)0xE8C3927F, (q31_t)0x7DDF9034, (q31_t)0xE8922621, (q31_t)0x7DD6668E, (q31_t)0xE860BD60, (q31_t)0x7DCD2981, (q31_t)0xE82F5844, (q31_t)0x7DC3D90D, (q31_t)0xE7FDF6D3, (q31_t)0x7DBA7534, (q31_t)0xE7CC9917, (q31_t)0x7DB0FDF7, (q31_t)0xE79B3F16, (q31_t)0x7DA77359, (q31_t)0xE769E8D8, (q31_t)0x7D9DD55A, (q31_t)0xE7389664, (q31_t)0x7D9423FB, (q31_t)0xE70747C3, (q31_t)0x7D8A5F3F, (q31_t)0xE6D5FCFC, (q31_t)0x7D808727, (q31_t)0xE6A4B616, (q31_t)0x7D769BB5, (q31_t)0xE6737319, (q31_t)0x7D6C9CE9, (q31_t)0xE642340D, (q31_t)0x7D628AC5, (q31_t)0xE610F8F9, (q31_t)0x7D58654C, (q31_t)0xE5DFC1E4, (q31_t)0x7D4E2C7E, (q31_t)0xE5AE8ED8, (q31_t)0x7D43E05E, (q31_t)0xE57D5FDA, (q31_t)0x7D3980EC, (q31_t)0xE54C34F3, (q31_t)0x7D2F0E2A, (q31_t)0xE51B0E2A, (q31_t)0x7D24881A, (q31_t)0xE4E9EB86, (q31_t)0x7D19EEBE, (q31_t)0xE4B8CD10, (q31_t)0x7D0F4218, (q31_t)0xE487B2CF, (q31_t)0x7D048228, (q31_t)0xE4569CCB, (q31_t)0x7CF9AEF0, (q31_t)0xE4258B0A, (q31_t)0x7CEEC873, (q31_t)0xE3F47D95, (q31_t)0x7CE3CEB1, (q31_t)0xE3C37473, (q31_t)0x7CD8C1AD, (q31_t)0xE3926FAC, (q31_t)0x7CCDA168, (q31_t)0xE3616F47, (q31_t)0x7CC26DE5, (q31_t)0xE330734C, (q31_t)0x7CB72724, (q31_t)0xE2FF7BC3, (q31_t)0x7CABCD27, (q31_t)0xE2CE88B2, (q31_t)0x7CA05FF1, (q31_t)0xE29D9A22, (q31_t)0x7C94DF82, (q31_t)0xE26CB01A, (q31_t)0x7C894BDD, (q31_t)0xE23BCAA2, (q31_t)0x7C7DA504, (q31_t)0xE20AE9C1, (q31_t)0x7C71EAF8, (q31_t)0xE1DA0D7E, (q31_t)0x7C661DBB, (q31_t)0xE1A935E1, (q31_t)0x7C5A3D4F, (q31_t)0xE17862F3, (q31_t)0x7C4E49B6, (q31_t)0xE14794B9, (q31_t)0x7C4242F2, (q31_t)0xE116CB3D, (q31_t)0x7C362904, (q31_t)0xE0E60684, (q31_t)0x7C29FBEE, (q31_t)0xE0B54698, (q31_t)0x7C1DBBB2, (q31_t)0xE0848B7F, (q31_t)0x7C116853, (q31_t)0xE053D541, (q31_t)0x7C0501D1, (q31_t)0xE02323E5, (q31_t)0x7BF88830, (q31_t)0xDFF27773, (q31_t)0x7BEBFB70, (q31_t)0xDFC1CFF2, (q31_t)0x7BDF5B94, (q31_t)0xDF912D6A, (q31_t)0x7BD2A89E, (q31_t)0xDF608FE3, (q31_t)0x7BC5E28F, (q31_t)0xDF2FF764, (q31_t)0x7BB9096A, (q31_t)0xDEFF63F4, (q31_t)0x7BAC1D31, (q31_t)0xDECED59B, (q31_t)0x7B9F1DE5, (q31_t)0xDE9E4C60, (q31_t)0x7B920B89, (q31_t)0xDE6DC84B, (q31_t)0x7B84E61E, (q31_t)0xDE3D4963, (q31_t)0x7B77ADA8, (q31_t)0xDE0CCFB1, (q31_t)0x7B6A6227, (q31_t)0xDDDC5B3A, (q31_t)0x7B5D039D, (q31_t)0xDDABEC07, (q31_t)0x7B4F920E, (q31_t)0xDD7B8220, (q31_t)0x7B420D7A, (q31_t)0xDD4B1D8B, (q31_t)0x7B3475E4, (q31_t)0xDD1ABE51, (q31_t)0x7B26CB4F, (q31_t)0xDCEA6478, (q31_t)0x7B190DBB, (q31_t)0xDCBA1008, (q31_t)0x7B0B3D2C, (q31_t)0xDC89C108, (q31_t)0x7AFD59A3, (q31_t)0xDC597781, (q31_t)0x7AEF6323, (q31_t)0xDC293379, (q31_t)0x7AE159AE, (q31_t)0xDBF8F4F8, (q31_t)0x7AD33D45, (q31_t)0xDBC8BC05, (q31_t)0x7AC50DEB, (q31_t)0xDB9888A8, (q31_t)0x7AB6CBA3, (q31_t)0xDB685AE8, (q31_t)0x7AA8766E, (q31_t)0xDB3832CD, (q31_t)0x7A9A0E4F, (q31_t)0xDB08105E, (q31_t)0x7A8B9348, (q31_t)0xDAD7F3A2, (q31_t)0x7A7D055B, (q31_t)0xDAA7DCA1, (q31_t)0x7A6E648A, (q31_t)0xDA77CB62, (q31_t)0x7A5FB0D8, (q31_t)0xDA47BFED, (q31_t)0x7A50EA46, (q31_t)0xDA17BA4A, (q31_t)0x7A4210D8, (q31_t)0xD9E7BA7E, (q31_t)0x7A33248F, (q31_t)0xD9B7C093, (q31_t)0x7A24256E, (q31_t)0xD987CC8F, (q31_t)0x7A151377, (q31_t)0xD957DE7A, (q31_t)0x7A05EEAD, (q31_t)0xD927F65B, (q31_t)0x79F6B711, (q31_t)0xD8F81439, (q31_t)0x79E76CA6, (q31_t)0xD8C8381C, (q31_t)0x79D80F6F, (q31_t)0xD898620C, (q31_t)0x79C89F6D, (q31_t)0xD868920F, (q31_t)0x79B91CA4, (q31_t)0xD838C82D, (q31_t)0x79A98715, (q31_t)0xD809046D, (q31_t)0x7999DEC3, (q31_t)0xD7D946D7, (q31_t)0x798A23B1, (q31_t)0xD7A98F73, (q31_t)0x797A55E0, (q31_t)0xD779DE46, (q31_t)0x796A7554, (q31_t)0xD74A335A, (q31_t)0x795A820E, (q31_t)0xD71A8EB5, (q31_t)0x794A7C11, (q31_t)0xD6EAF05E, (q31_t)0x793A6360, (q31_t)0xD6BB585D, (q31_t)0x792A37FE, (q31_t)0xD68BC6BA, (q31_t)0x7919F9EB, (q31_t)0xD65C3B7B, (q31_t)0x7909A92C, (q31_t)0xD62CB6A7, (q31_t)0x78F945C3, (q31_t)0xD5FD3847, (q31_t)0x78E8CFB1, (q31_t)0xD5CDC062, (q31_t)0x78D846FB, (q31_t)0xD59E4EFE, (q31_t)0x78C7ABA1, (q31_t)0xD56EE424, (q31_t)0x78B6FDA8, (q31_t)0xD53F7FDA, (q31_t)0x78A63D10, (q31_t)0xD5102227, (q31_t)0x789569DE, (q31_t)0xD4E0CB14, (q31_t)0x78848413, (q31_t)0xD4B17AA7, (q31_t)0x78738BB3, (q31_t)0xD48230E8, (q31_t)0x786280BF, (q31_t)0xD452EDDE, (q31_t)0x7851633B, (q31_t)0xD423B190, (q31_t)0x78403328, (q31_t)0xD3F47C06, (q31_t)0x782EF08B, (q31_t)0xD3C54D46, (q31_t)0x781D9B64, (q31_t)0xD3962559, (q31_t)0x780C33B8, (q31_t)0xD3670445, (q31_t)0x77FAB988, (q31_t)0xD337EA12, (q31_t)0x77E92CD8, (q31_t)0xD308D6C6, (q31_t)0x77D78DAA, (q31_t)0xD2D9CA6A, (q31_t)0x77C5DC01, (q31_t)0xD2AAC504, (q31_t)0x77B417DF, (q31_t)0xD27BC69C, (q31_t)0x77A24148, (q31_t)0xD24CCF38, (q31_t)0x7790583D, (q31_t)0xD21DDEE1, (q31_t)0x777E5CC3, (q31_t)0xD1EEF59E, (q31_t)0x776C4EDB, (q31_t)0xD1C01374, (q31_t)0x775A2E88, (q31_t)0xD191386D, (q31_t)0x7747FBCE, (q31_t)0xD162648F, (q31_t)0x7735B6AE, (q31_t)0xD13397E1, (q31_t)0x77235F2D, (q31_t)0xD104D26B, (q31_t)0x7710F54B, (q31_t)0xD0D61433, (q31_t)0x76FE790E, (q31_t)0xD0A75D42, (q31_t)0x76EBEA77, (q31_t)0xD078AD9D, (q31_t)0x76D94988, (q31_t)0xD04A054D, (q31_t)0x76C69646, (q31_t)0xD01B6459, (q31_t)0x76B3D0B3, (q31_t)0xCFECCAC7, (q31_t)0x76A0F8D2, (q31_t)0xCFBE389F, (q31_t)0x768E0EA5, (q31_t)0xCF8FADE8, (q31_t)0x767B1230, (q31_t)0xCF612AAA, (q31_t)0x76680376, (q31_t)0xCF32AEEB, (q31_t)0x7654E279, (q31_t)0xCF043AB2, (q31_t)0x7641AF3C, (q31_t)0xCED5CE08, (q31_t)0x762E69C3, (q31_t)0xCEA768F2, (q31_t)0x761B1211, (q31_t)0xCE790B78, (q31_t)0x7607A827, (q31_t)0xCE4AB5A2, (q31_t)0x75F42C0A, (q31_t)0xCE1C6776, (q31_t)0x75E09DBD, (q31_t)0xCDEE20FC, (q31_t)0x75CCFD42, (q31_t)0xCDBFE23A, (q31_t)0x75B94A9C, (q31_t)0xCD91AB38, (q31_t)0x75A585CF, (q31_t)0xCD637BFD, (q31_t)0x7591AEDD, (q31_t)0xCD355490, (q31_t)0x757DC5CA, (q31_t)0xCD0734F8, (q31_t)0x7569CA98, (q31_t)0xCCD91D3D, (q31_t)0x7555BD4B, (q31_t)0xCCAB0D65, (q31_t)0x75419DE6, (q31_t)0xCC7D0577, (q31_t)0x752D6C6C, (q31_t)0xCC4F057B, (q31_t)0x751928E0, (q31_t)0xCC210D78, (q31_t)0x7504D345, (q31_t)0xCBF31D75, (q31_t)0x74F06B9E, (q31_t)0xCBC53578, (q31_t)0x74DBF1EF, (q31_t)0xCB975589, (q31_t)0x74C7663A, (q31_t)0xCB697DB0, (q31_t)0x74B2C883, (q31_t)0xCB3BADF2, (q31_t)0x749E18CD, (q31_t)0xCB0DE658, (q31_t)0x7489571B, (q31_t)0xCAE026E8, (q31_t)0x74748371, (q31_t)0xCAB26FA9, (q31_t)0x745F9DD1, (q31_t)0xCA84C0A2, (q31_t)0x744AA63E, (q31_t)0xCA5719DB, (q31_t)0x74359CBD, (q31_t)0xCA297B5A, (q31_t)0x74208150, (q31_t)0xC9FBE527, (q31_t)0x740B53FA, (q31_t)0xC9CE5748, (q31_t)0x73F614C0, (q31_t)0xC9A0D1C4, (q31_t)0x73E0C3A3, (q31_t)0xC97354A3, (q31_t)0x73CB60A7, (q31_t)0xC945DFEC, (q31_t)0x73B5EBD0, (q31_t)0xC91873A5, (q31_t)0x73A06522, (q31_t)0xC8EB0FD6, (q31_t)0x738ACC9E, (q31_t)0xC8BDB485, (q31_t)0x73752249, (q31_t)0xC89061BA, (q31_t)0x735F6626, (q31_t)0xC863177B, (q31_t)0x73499838, (q31_t)0xC835D5D0, (q31_t)0x7333B883, (q31_t)0xC8089CBF, (q31_t)0x731DC709, (q31_t)0xC7DB6C50, (q31_t)0x7307C3D0, (q31_t)0xC7AE4489, (q31_t)0x72F1AED8, (q31_t)0xC7812571, (q31_t)0x72DB8828, (q31_t)0xC7540F10, (q31_t)0x72C54FC0, (q31_t)0xC727016C, (q31_t)0x72AF05A6, (q31_t)0xC6F9FC8D, (q31_t)0x7298A9DC, (q31_t)0xC6CD0079, (q31_t)0x72823C66, (q31_t)0xC6A00D36, (q31_t)0x726BBD48, (q31_t)0xC67322CD, (q31_t)0x72552C84, (q31_t)0xC6464144, (q31_t)0x723E8A1F, (q31_t)0xC61968A2, (q31_t)0x7227D61C, (q31_t)0xC5EC98ED, (q31_t)0x7211107D, (q31_t)0xC5BFD22E, (q31_t)0x71FA3948, (q31_t)0xC593146A, (q31_t)0x71E3507F, (q31_t)0xC5665FA8, (q31_t)0x71CC5626, (q31_t)0xC539B3F0, (q31_t)0x71B54A40, (q31_t)0xC50D1148, (q31_t)0x719E2CD2, (q31_t)0xC4E077B8, (q31_t)0x7186FDDE, (q31_t)0xC4B3E746, (q31_t)0x716FBD68, (q31_t)0xC4875FF8, (q31_t)0x71586B73, (q31_t)0xC45AE1D7, (q31_t)0x71410804, (q31_t)0xC42E6CE8, (q31_t)0x7129931E, (q31_t)0xC4020132, (q31_t)0x71120CC5, (q31_t)0xC3D59EBD, (q31_t)0x70FA74FB, (q31_t)0xC3A9458F, (q31_t)0x70E2CBC6, (q31_t)0xC37CF5B0, (q31_t)0x70CB1127, (q31_t)0xC350AF25, (q31_t)0x70B34524, (q31_t)0xC32471F6, (q31_t)0x709B67C0, (q31_t)0xC2F83E2A, (q31_t)0x708378FE, (q31_t)0xC2CC13C7, (q31_t)0x706B78E3, (q31_t)0xC29FF2D4, (q31_t)0x70536771, (q31_t)0xC273DB58, (q31_t)0x703B44AC, (q31_t)0xC247CD5A, (q31_t)0x70231099, (q31_t)0xC21BC8E0, (q31_t)0x700ACB3B, (q31_t)0xC1EFCDF2, (q31_t)0x6FF27496, (q31_t)0xC1C3DC96, (q31_t)0x6FDA0CAD, (q31_t)0xC197F4D3, (q31_t)0x6FC19385, (q31_t)0xC16C16B0, (q31_t)0x6FA90920, (q31_t)0xC1404233, (q31_t)0x6F906D84, (q31_t)0xC1147763, (q31_t)0x6F77C0B3, (q31_t)0xC0E8B648, (q31_t)0x6F5F02B1, (q31_t)0xC0BCFEE7, (q31_t)0x6F463383, (q31_t)0xC0915147, (q31_t)0x6F2D532C, (q31_t)0xC065AD70, (q31_t)0x6F1461AF, (q31_t)0xC03A1368, (q31_t)0x6EFB5F12, (q31_t)0xC00E8335, (q31_t)0x6EE24B57, (q31_t)0xBFE2FCDF, (q31_t)0x6EC92682, (q31_t)0xBFB7806C, (q31_t)0x6EAFF098, (q31_t)0xBF8C0DE2, (q31_t)0x6E96A99C, (q31_t)0xBF60A54A, (q31_t)0x6E7D5193, (q31_t)0xBF3546A8, (q31_t)0x6E63E87F, (q31_t)0xBF09F204, (q31_t)0x6E4A6E65, (q31_t)0xBEDEA765, (q31_t)0x6E30E349, (q31_t)0xBEB366D1, (q31_t)0x6E17472F, (q31_t)0xBE88304F, (q31_t)0x6DFD9A1B, (q31_t)0xBE5D03E5, (q31_t)0x6DE3DC11, (q31_t)0xBE31E19B, (q31_t)0x6DCA0D14, (q31_t)0xBE06C977, (q31_t)0x6DB02D29, (q31_t)0xBDDBBB7F, (q31_t)0x6D963C54, (q31_t)0xBDB0B7BA, (q31_t)0x6D7C3A98, (q31_t)0xBD85BE2F, (q31_t)0x6D6227FA, (q31_t)0xBD5ACEE5, (q31_t)0x6D48047E, (q31_t)0xBD2FE9E1, (q31_t)0x6D2DD027, (q31_t)0xBD050F2C, (q31_t)0x6D138AFA, (q31_t)0xBCDA3ECA, (q31_t)0x6CF934FB, (q31_t)0xBCAF78C3, (q31_t)0x6CDECE2E, (q31_t)0xBC84BD1E, (q31_t)0x6CC45697, (q31_t)0xBC5A0BE1, (q31_t)0x6CA9CE3A, (q31_t)0xBC2F6513, (q31_t)0x6C8F351C, (q31_t)0xBC04C8BA, (q31_t)0x6C748B3F, (q31_t)0xBBDA36DC, (q31_t)0x6C59D0A9, (q31_t)0xBBAFAF81, (q31_t)0x6C3F055D, (q31_t)0xBB8532AF, (q31_t)0x6C242960, (q31_t)0xBB5AC06C, (q31_t)0x6C093CB6, (q31_t)0xBB3058C0, (q31_t)0x6BEE3F62, (q31_t)0xBB05FBB0, (q31_t)0x6BD3316A, (q31_t)0xBADBA943, (q31_t)0x6BB812D0, (q31_t)0xBAB1617F, (q31_t)0x6B9CE39B, (q31_t)0xBA87246C, (q31_t)0x6B81A3CD, (q31_t)0xBA5CF210, (q31_t)0x6B66536A, (q31_t)0xBA32CA70, (q31_t)0x6B4AF278, (q31_t)0xBA08AD94, (q31_t)0x6B2F80FA, (q31_t)0xB9DE9B83, (q31_t)0x6B13FEF5, (q31_t)0xB9B49442, (q31_t)0x6AF86C6C, (q31_t)0xB98A97D8, (q31_t)0x6ADCC964, (q31_t)0xB960A64B, (q31_t)0x6AC115E1, (q31_t)0xB936BFA3, (q31_t)0x6AA551E8, (q31_t)0xB90CE3E6, (q31_t)0x6A897D7D, (q31_t)0xB8E31319, (q31_t)0x6A6D98A4, (q31_t)0xB8B94D44, (q31_t)0x6A51A361, (q31_t)0xB88F926C, (q31_t)0x6A359DB9, (q31_t)0xB865E299, (q31_t)0x6A1987B0, (q31_t)0xB83C3DD1, (q31_t)0x69FD614A, (q31_t)0xB812A419, (q31_t)0x69E12A8C, (q31_t)0xB7E9157A, (q31_t)0x69C4E37A, (q31_t)0xB7BF91F8, (q31_t)0x69A88C18, (q31_t)0xB796199B, (q31_t)0x698C246C, (q31_t)0xB76CAC68, (q31_t)0x696FAC78, (q31_t)0xB7434A67, (q31_t)0x69532442, (q31_t)0xB719F39D, (q31_t)0x69368BCE, (q31_t)0xB6F0A811, (q31_t)0x6919E320, (q31_t)0xB6C767CA, (q31_t)0x68FD2A3D, (q31_t)0xB69E32CD, (q31_t)0x68E06129, (q31_t)0xB6750921, (q31_t)0x68C387E9, (q31_t)0xB64BEACC, (q31_t)0x68A69E81, (q31_t)0xB622D7D5, (q31_t)0x6889A4F5, (q31_t)0xB5F9D042, (q31_t)0x686C9B4B, (q31_t)0xB5D0D41A, (q31_t)0x684F8186, (q31_t)0xB5A7E362, (q31_t)0x683257AA, (q31_t)0xB57EFE21, (q31_t)0x68151DBE, (q31_t)0xB556245E, (q31_t)0x67F7D3C4, (q31_t)0xB52D561E, (q31_t)0x67DA79C2, (q31_t)0xB5049368, (q31_t)0x67BD0FBC, (q31_t)0xB4DBDC42, (q31_t)0x679F95B7, (q31_t)0xB4B330B2, (q31_t)0x67820BB6, (q31_t)0xB48A90C0, (q31_t)0x676471C0, (q31_t)0xB461FC70, (q31_t)0x6746C7D7, (q31_t)0xB43973C9, (q31_t)0x67290E02, (q31_t)0xB410F6D2, (q31_t)0x670B4443, (q31_t)0xB3E88591, (q31_t)0x66ED6AA1, (q31_t)0xB3C0200C, (q31_t)0x66CF811F, (q31_t)0xB397C649, (q31_t)0x66B187C3, (q31_t)0xB36F784E, (q31_t)0x66937E90, (q31_t)0xB3473622, (q31_t)0x6675658C, (q31_t)0xB31EFFCB, (q31_t)0x66573CBB, (q31_t)0xB2F6D54F, (q31_t)0x66390422, (q31_t)0xB2CEB6B5, (q31_t)0x661ABBC5, (q31_t)0xB2A6A401, (q31_t)0x65FC63A9, (q31_t)0xB27E9D3B, (q31_t)0x65DDFBD3, (q31_t)0xB256A26A, (q31_t)0x65BF8447, (q31_t)0xB22EB392, (q31_t)0x65A0FD0B, (q31_t)0xB206D0BA, (q31_t)0x65826622, (q31_t)0xB1DEF9E8, (q31_t)0x6563BF92, (q31_t)0xB1B72F23, (q31_t)0x6545095F, (q31_t)0xB18F7070, (q31_t)0x6526438E, (q31_t)0xB167BDD6, (q31_t)0x65076E24, (q31_t)0xB140175B, (q31_t)0x64E88926, (q31_t)0xB1187D05, (q31_t)0x64C99498, (q31_t)0xB0F0EEDA, (q31_t)0x64AA907F, (q31_t)0xB0C96CDF, (q31_t)0x648B7CDF, (q31_t)0xB0A1F71C, (q31_t)0x646C59BF, (q31_t)0xB07A8D97, (q31_t)0x644D2722, (q31_t)0xB0533055, (q31_t)0x642DE50D, (q31_t)0xB02BDF5C, (q31_t)0x640E9385, (q31_t)0xB0049AB2, (q31_t)0x63EF328F, (q31_t)0xAFDD625F, (q31_t)0x63CFC230, (q31_t)0xAFB63667, (q31_t)0x63B0426D, (q31_t)0xAF8F16D0, (q31_t)0x6390B34A, (q31_t)0xAF6803A1, (q31_t)0x637114CC, (q31_t)0xAF40FCE0, (q31_t)0x635166F8, (q31_t)0xAF1A0293, (q31_t)0x6331A9D4, (q31_t)0xAEF314BF, (q31_t)0x6311DD63, (q31_t)0xAECC336B, (q31_t)0x62F201AC, (q31_t)0xAEA55E9D, (q31_t)0x62D216B2, (q31_t)0xAE7E965B, (q31_t)0x62B21C7B, (q31_t)0xAE57DAAA, (q31_t)0x6292130C, (q31_t)0xAE312B91, (q31_t)0x6271FA69, (q31_t)0xAE0A8916, (q31_t)0x6251D297, (q31_t)0xADE3F33E, (q31_t)0x62319B9D, (q31_t)0xADBD6A10, (q31_t)0x6211557D, (q31_t)0xAD96ED91, (q31_t)0x61F1003E, (q31_t)0xAD707DC8, (q31_t)0x61D09BE5, (q31_t)0xAD4A1ABA, (q31_t)0x61B02876, (q31_t)0xAD23C46D, (q31_t)0x618FA5F6, (q31_t)0xACFD7AE8, (q31_t)0x616F146B, (q31_t)0xACD73E30, (q31_t)0x614E73D9, (q31_t)0xACB10E4A, (q31_t)0x612DC446, (q31_t)0xAC8AEB3E, (q31_t)0x610D05B7, (q31_t)0xAC64D510, (q31_t)0x60EC3830, (q31_t)0xAC3ECBC7, (q31_t)0x60CB5BB6, (q31_t)0xAC18CF68, (q31_t)0x60AA704F, (q31_t)0xABF2DFFA, (q31_t)0x60897600, (q31_t)0xABCCFD82, (q31_t)0x60686CCE, (q31_t)0xABA72806, (q31_t)0x604754BE, (q31_t)0xAB815F8C, (q31_t)0x60262DD5, (q31_t)0xAB5BA41A, (q31_t)0x6004F818, (q31_t)0xAB35F5B5, (q31_t)0x5FE3B38D, (q31_t)0xAB105464, (q31_t)0x5FC26038, (q31_t)0xAAEAC02B, (q31_t)0x5FA0FE1E, (q31_t)0xAAC53912, (q31_t)0x5F7F8D46, (q31_t)0xAA9FBF1D, (q31_t)0x5F5E0DB3, (q31_t)0xAA7A5253, (q31_t)0x5F3C7F6B, (q31_t)0xAA54F2B9, (q31_t)0x5F1AE273, (q31_t)0xAA2FA055, (q31_t)0x5EF936D1, (q31_t)0xAA0A5B2D, (q31_t)0x5ED77C89, (q31_t)0xA9E52347, (q31_t)0x5EB5B3A1, (q31_t)0xA9BFF8A8, (q31_t)0x5E93DC1F, (q31_t)0xA99ADB56, (q31_t)0x5E71F606, (q31_t)0xA975CB56, (q31_t)0x5E50015D, (q31_t)0xA950C8AF, (q31_t)0x5E2DFE28, (q31_t)0xA92BD366, (q31_t)0x5E0BEC6E, (q31_t)0xA906EB81, (q31_t)0x5DE9CC32, (q31_t)0xA8E21106, (q31_t)0x5DC79D7C, (q31_t)0xA8BD43FA, (q31_t)0x5DA5604E, (q31_t)0xA8988463, (q31_t)0x5D8314B0, (q31_t)0xA873D246, (q31_t)0x5D60BAA6, (q31_t)0xA84F2DA9, (q31_t)0x5D3E5236, (q31_t)0xA82A9693, (q31_t)0x5D1BDB65, (q31_t)0xA8060D08, (q31_t)0x5CF95638, (q31_t)0xA7E1910E, (q31_t)0x5CD6C2B4, (q31_t)0xA7BD22AB, (q31_t)0x5CB420DF, (q31_t)0xA798C1E4, (q31_t)0x5C9170BF, (q31_t)0xA7746EC0, (q31_t)0x5C6EB258, (q31_t)0xA7502943, (q31_t)0x5C4BE5B0, (q31_t)0xA72BF173, (q31_t)0x5C290ACC, (q31_t)0xA707C756, (q31_t)0x5C0621B2, (q31_t)0xA6E3AAF2, (q31_t)0x5BE32A67, (q31_t)0xA6BF9C4B, (q31_t)0x5BC024F0, (q31_t)0xA69B9B68, (q31_t)0x5B9D1153, (q31_t)0xA677A84E, (q31_t)0x5B79EF96, (q31_t)0xA653C302, (q31_t)0x5B56BFBD, (q31_t)0xA62FEB8B, (q31_t)0x5B3381CE, (q31_t)0xA60C21ED, (q31_t)0x5B1035CF, (q31_t)0xA5E8662F, (q31_t)0x5AECDBC4, (q31_t)0xA5C4B855, (q31_t)0x5AC973B4, (q31_t)0xA5A11865, (q31_t)0x5AA5FDA4, (q31_t)0xA57D8666, (q31_t)0x5A82799A, (q31_t)0xA55A025B, (q31_t)0x5A5EE79A, (q31_t)0xA5368C4B, (q31_t)0x5A3B47AA, (q31_t)0xA513243B, (q31_t)0x5A1799D0, (q31_t)0xA4EFCA31, (q31_t)0x59F3DE12, (q31_t)0xA4CC7E31, (q31_t)0x59D01474, (q31_t)0xA4A94042, (q31_t)0x59AC3CFD, (q31_t)0xA4861069, (q31_t)0x598857B1, (q31_t)0xA462EEAC, (q31_t)0x59646497, (q31_t)0xA43FDB0F, (q31_t)0x594063B4, (q31_t)0xA41CD598, (q31_t)0x591C550E, (q31_t)0xA3F9DE4D, (q31_t)0x58F838A9, (q31_t)0xA3D6F533, (q31_t)0x58D40E8C, (q31_t)0xA3B41A4F, (q31_t)0x58AFD6BC, (q31_t)0xA3914DA7, (q31_t)0x588B913F, (q31_t)0xA36E8F40, (q31_t)0x58673E1B, (q31_t)0xA34BDF20, (q31_t)0x5842DD54, (q31_t)0xA3293D4B, (q31_t)0x581E6EF1, (q31_t)0xA306A9C7, (q31_t)0x57F9F2F7, (q31_t)0xA2E4249A, (q31_t)0x57D5696C, (q31_t)0xA2C1ADC9, (q31_t)0x57B0D256, (q31_t)0xA29F4559, (q31_t)0x578C2DB9, (q31_t)0xA27CEB4F, (q31_t)0x57677B9D, (q31_t)0xA25A9FB1, (q31_t)0x5742BC05, (q31_t)0xA2386283, (q31_t)0x571DEEF9, (q31_t)0xA21633CD, (q31_t)0x56F9147E, (q31_t)0xA1F41391, (q31_t)0x56D42C99, (q31_t)0xA1D201D7, (q31_t)0x56AF3750, (q31_t)0xA1AFFEA2, (q31_t)0x568A34A9, (q31_t)0xA18E09F9, (q31_t)0x566524AA, (q31_t)0xA16C23E1, (q31_t)0x56400757, (q31_t)0xA14A4C5E, (q31_t)0x561ADCB8, (q31_t)0xA1288376, (q31_t)0x55F5A4D2, (q31_t)0xA106C92E, (q31_t)0x55D05FAA, (q31_t)0xA0E51D8C, (q31_t)0x55AB0D46, (q31_t)0xA0C38094, (q31_t)0x5585ADAC, (q31_t)0xA0A1F24C, (q31_t)0x556040E2, (q31_t)0xA08072BA, (q31_t)0x553AC6ED, (q31_t)0xA05F01E1, (q31_t)0x55153FD4, (q31_t)0xA03D9FC7, (q31_t)0x54EFAB9C, (q31_t)0xA01C4C72, (q31_t)0x54CA0A4A, (q31_t)0x9FFB07E7, (q31_t)0x54A45BE5, (q31_t)0x9FD9D22A, (q31_t)0x547EA073, (q31_t)0x9FB8AB41, (q31_t)0x5458D7F9, (q31_t)0x9F979331, (q31_t)0x5433027D, (q31_t)0x9F7689FF, (q31_t)0x540D2005, (q31_t)0x9F558FB0, (q31_t)0x53E73097, (q31_t)0x9F34A449, (q31_t)0x53C13438, (q31_t)0x9F13C7D0, (q31_t)0x539B2AEF, (q31_t)0x9EF2FA48, (q31_t)0x537514C1, (q31_t)0x9ED23BB9, (q31_t)0x534EF1B5, (q31_t)0x9EB18C26, (q31_t)0x5328C1D0, (q31_t)0x9E90EB94, (q31_t)0x53028517, (q31_t)0x9E705A09, (q31_t)0x52DC3B92, (q31_t)0x9E4FD789, (q31_t)0x52B5E545, (q31_t)0x9E2F641A, (q31_t)0x528F8237, (q31_t)0x9E0EFFC1, (q31_t)0x5269126E, (q31_t)0x9DEEAA82, (q31_t)0x524295EF, (q31_t)0x9DCE6462, (q31_t)0x521C0CC1, (q31_t)0x9DAE2D68, (q31_t)0x51F576E9, (q31_t)0x9D8E0596, (q31_t)0x51CED46E, (q31_t)0x9D6DECF4, (q31_t)0x51A82555, (q31_t)0x9D4DE384, (q31_t)0x518169A4, (q31_t)0x9D2DE94D, (q31_t)0x515AA162, (q31_t)0x9D0DFE53, (q31_t)0x5133CC94, (q31_t)0x9CEE229C, (q31_t)0x510CEB40, (q31_t)0x9CCE562B, (q31_t)0x50E5FD6C, (q31_t)0x9CAE9907, (q31_t)0x50BF031F, (q31_t)0x9C8EEB33, (q31_t)0x5097FC5E, (q31_t)0x9C6F4CB5, (q31_t)0x5070E92F, (q31_t)0x9C4FBD92, (q31_t)0x5049C999, (q31_t)0x9C303DCF, (q31_t)0x50229DA0, (q31_t)0x9C10CD70, (q31_t)0x4FFB654D, (q31_t)0x9BF16C7A, (q31_t)0x4FD420A3, (q31_t)0x9BD21AF2, (q31_t)0x4FACCFAB, (q31_t)0x9BB2D8DD, (q31_t)0x4F857268, (q31_t)0x9B93A640, (q31_t)0x4F5E08E3, (q31_t)0x9B748320, (q31_t)0x4F369320, (q31_t)0x9B556F80, (q31_t)0x4F0F1126, (q31_t)0x9B366B67, (q31_t)0x4EE782FA, (q31_t)0x9B1776D9, (q31_t)0x4EBFE8A4, (q31_t)0x9AF891DB, (q31_t)0x4E984229, (q31_t)0x9AD9BC71, (q31_t)0x4E708F8F, (q31_t)0x9ABAF6A0, (q31_t)0x4E48D0DC, (q31_t)0x9A9C406D, (q31_t)0x4E210617, (q31_t)0x9A7D99DD, (q31_t)0x4DF92F45, (q31_t)0x9A5F02F5, (q31_t)0x4DD14C6E, (q31_t)0x9A407BB8, (q31_t)0x4DA95D96, (q31_t)0x9A22042C, (q31_t)0x4D8162C4, (q31_t)0x9A039C56, (q31_t)0x4D595BFE, (q31_t)0x99E5443A, (q31_t)0x4D31494B, (q31_t)0x99C6FBDE, (q31_t)0x4D092AB0, (q31_t)0x99A8C344, (q31_t)0x4CE10034, (q31_t)0x998A9A73, (q31_t)0x4CB8C9DD, (q31_t)0x996C816F, (q31_t)0x4C9087B1, (q31_t)0x994E783C, (q31_t)0x4C6839B6, (q31_t)0x99307EE0, (q31_t)0x4C3FDFF3, (q31_t)0x9912955E, (q31_t)0x4C177A6E, (q31_t)0x98F4BBBC, (q31_t)0x4BEF092D, (q31_t)0x98D6F1FE, (q31_t)0x4BC68C36, (q31_t)0x98B93828, (q31_t)0x4B9E038F, (q31_t)0x989B8E3F, (q31_t)0x4B756F3F, (q31_t)0x987DF449, (q31_t)0x4B4CCF4D, (q31_t)0x98606A48, (q31_t)0x4B2423BD, (q31_t)0x9842F043, (q31_t)0x4AFB6C97, (q31_t)0x9825863D, (q31_t)0x4AD2A9E1, (q31_t)0x98082C3B, (q31_t)0x4AA9DBA1, (q31_t)0x97EAE241, (q31_t)0x4A8101DE, (q31_t)0x97CDA855, (q31_t)0x4A581C9D, (q31_t)0x97B07E7A, (q31_t)0x4A2F2BE5, (q31_t)0x979364B5, (q31_t)0x4A062FBD, (q31_t)0x97765B0A, (q31_t)0x49DD282A, (q31_t)0x9759617E, (q31_t)0x49B41533, (q31_t)0x973C7816, (q31_t)0x498AF6DE, (q31_t)0x971F9ED6, (q31_t)0x4961CD32, (q31_t)0x9702D5C2, (q31_t)0x49389836, (q31_t)0x96E61CDF, (q31_t)0x490F57EE, (q31_t)0x96C97431, (q31_t)0x48E60C62, (q31_t)0x96ACDBBD, (q31_t)0x48BCB598, (q31_t)0x96905387, (q31_t)0x48935397, (q31_t)0x9673DB94, (q31_t)0x4869E664, (q31_t)0x965773E7, (q31_t)0x48406E07, (q31_t)0x963B1C85, (q31_t)0x4816EA85, (q31_t)0x961ED573, (q31_t)0x47ED5BE6, (q31_t)0x96029EB5, (q31_t)0x47C3C22E, (q31_t)0x95E6784F, (q31_t)0x479A1D66, (q31_t)0x95CA6246, (q31_t)0x47706D93, (q31_t)0x95AE5C9E, (q31_t)0x4746B2BC, (q31_t)0x9592675B, (q31_t)0x471CECE6, (q31_t)0x95768282, (q31_t)0x46F31C1A, (q31_t)0x955AAE17, (q31_t)0x46C9405C, (q31_t)0x953EEA1E, (q31_t)0x469F59B4, (q31_t)0x9523369B, (q31_t)0x46756827, (q31_t)0x95079393, (q31_t)0x464B6BBD, (q31_t)0x94EC010B, (q31_t)0x4621647C, (q31_t)0x94D07F05, (q31_t)0x45F7526B, (q31_t)0x94B50D87, (q31_t)0x45CD358F, (q31_t)0x9499AC95, (q31_t)0x45A30DF0, (q31_t)0x947E5C32, (q31_t)0x4578DB93, (q31_t)0x94631C64, (q31_t)0x454E9E80, (q31_t)0x9447ED2F, (q31_t)0x452456BC, (q31_t)0x942CCE95, (q31_t)0x44FA044F, (q31_t)0x9411C09D, (q31_t)0x44CFA73F, (q31_t)0x93F6C34A, (q31_t)0x44A53F93, (q31_t)0x93DBD69F, (q31_t)0x447ACD50, (q31_t)0x93C0FAA2, (q31_t)0x4450507E, (q31_t)0x93A62F56, (q31_t)0x4425C923, (q31_t)0x938B74C0, (q31_t)0x43FB3745, (q31_t)0x9370CAE4, (q31_t)0x43D09AEC, (q31_t)0x935631C5, (q31_t)0x43A5F41E, (q31_t)0x933BA968, (q31_t)0x437B42E1, (q31_t)0x932131D1, (q31_t)0x4350873C, (q31_t)0x9306CB04, (q31_t)0x4325C135, (q31_t)0x92EC7505, (q31_t)0x42FAF0D4, (q31_t)0x92D22FD8, (q31_t)0x42D0161E, (q31_t)0x92B7FB82, (q31_t)0x42A5311A, (q31_t)0x929DD805, (q31_t)0x427A41D0, (q31_t)0x9283C567, (q31_t)0x424F4845, (q31_t)0x9269C3AC, (q31_t)0x42244480, (q31_t)0x924FD2D6, (q31_t)0x41F93688, (q31_t)0x9235F2EB, (q31_t)0x41CE1E64, (q31_t)0x921C23EE, (q31_t)0x41A2FC1A, (q31_t)0x920265E4, (q31_t)0x4177CFB0, (q31_t)0x91E8B8D0, (q31_t)0x414C992E, (q31_t)0x91CF1CB6, (q31_t)0x4121589A, (q31_t)0x91B5919A, (q31_t)0x40F60DFB, (q31_t)0x919C1780, (q31_t)0x40CAB957, (q31_t)0x9182AE6C, (q31_t)0x409F5AB6, (q31_t)0x91695663, (q31_t)0x4073F21D, (q31_t)0x91500F67, (q31_t)0x40487F93, (q31_t)0x9136D97D, (q31_t)0x401D0320, (q31_t)0x911DB4A8, (q31_t)0x3FF17CCA, (q31_t)0x9104A0ED, (q31_t)0x3FC5EC97, (q31_t)0x90EB9E50, (q31_t)0x3F9A528F, (q31_t)0x90D2ACD3, (q31_t)0x3F6EAEB8, (q31_t)0x90B9CC7C, (q31_t)0x3F430118, (q31_t)0x90A0FD4E, (q31_t)0x3F1749B7, (q31_t)0x90883F4C, (q31_t)0x3EEB889C, (q31_t)0x906F927B, (q31_t)0x3EBFBDCC, (q31_t)0x9056F6DF, (q31_t)0x3E93E94F, (q31_t)0x903E6C7A, (q31_t)0x3E680B2C, (q31_t)0x9025F352, (q31_t)0x3E3C2369, (q31_t)0x900D8B69, (q31_t)0x3E10320D, (q31_t)0x8FF534C4, (q31_t)0x3DE4371F, (q31_t)0x8FDCEF66, (q31_t)0x3DB832A5, (q31_t)0x8FC4BB53, (q31_t)0x3D8C24A7, (q31_t)0x8FAC988E, (q31_t)0x3D600D2B, (q31_t)0x8F94871D, (q31_t)0x3D33EC39, (q31_t)0x8F7C8701, (q31_t)0x3D07C1D5, (q31_t)0x8F64983F, (q31_t)0x3CDB8E09, (q31_t)0x8F4CBADB, (q31_t)0x3CAF50DA, (q31_t)0x8F34EED8, (q31_t)0x3C830A4F, (q31_t)0x8F1D343A, (q31_t)0x3C56BA70, (q31_t)0x8F058B04, (q31_t)0x3C2A6142, (q31_t)0x8EEDF33B, (q31_t)0x3BFDFECD, (q31_t)0x8ED66CE1, (q31_t)0x3BD19317, (q31_t)0x8EBEF7FB, (q31_t)0x3BA51E29, (q31_t)0x8EA7948C, (q31_t)0x3B78A007, (q31_t)0x8E904298, (q31_t)0x3B4C18BA, (q31_t)0x8E790222, (q31_t)0x3B1F8847, (q31_t)0x8E61D32D, (q31_t)0x3AF2EEB7, (q31_t)0x8E4AB5BF, (q31_t)0x3AC64C0F, (q31_t)0x8E33A9D9, (q31_t)0x3A99A057, (q31_t)0x8E1CAF80, (q31_t)0x3A6CEB95, (q31_t)0x8E05C6B7, (q31_t)0x3A402DD1, (q31_t)0x8DEEEF82, (q31_t)0x3A136712, (q31_t)0x8DD829E4, (q31_t)0x39E6975D, (q31_t)0x8DC175E0, (q31_t)0x39B9BEBB, (q31_t)0x8DAAD37B, (q31_t)0x398CDD32, (q31_t)0x8D9442B7, (q31_t)0x395FF2C9, (q31_t)0x8D7DC399, (q31_t)0x3932FF87, (q31_t)0x8D675623, (q31_t)0x39060372, (q31_t)0x8D50FA59, (q31_t)0x38D8FE93, (q31_t)0x8D3AB03F, (q31_t)0x38ABF0EF, (q31_t)0x8D2477D8, (q31_t)0x387EDA8E, (q31_t)0x8D0E5127, (q31_t)0x3851BB76, (q31_t)0x8CF83C30, (q31_t)0x382493B0, (q31_t)0x8CE238F6, (q31_t)0x37F76340, (q31_t)0x8CCC477D, (q31_t)0x37CA2A30, (q31_t)0x8CB667C7, (q31_t)0x379CE884, (q31_t)0x8CA099D9, (q31_t)0x376F9E46, (q31_t)0x8C8ADDB6, (q31_t)0x37424B7A, (q31_t)0x8C753361, (q31_t)0x3714F02A, (q31_t)0x8C5F9ADD, (q31_t)0x36E78C5A, (q31_t)0x8C4A142F, (q31_t)0x36BA2013, (q31_t)0x8C349F58, (q31_t)0x368CAB5C, (q31_t)0x8C1F3C5C, (q31_t)0x365F2E3B, (q31_t)0x8C09EB40, (q31_t)0x3631A8B7, (q31_t)0x8BF4AC05, (q31_t)0x36041AD9, (q31_t)0x8BDF7EAF, (q31_t)0x35D684A5, (q31_t)0x8BCA6342, (q31_t)0x35A8E624, (q31_t)0x8BB559C1, (q31_t)0x357B3F5D, (q31_t)0x8BA0622F, (q31_t)0x354D9056, (q31_t)0x8B8B7C8F, (q31_t)0x351FD917, (q31_t)0x8B76A8E4, (q31_t)0x34F219A7, (q31_t)0x8B61E732, (q31_t)0x34C4520D, (q31_t)0x8B4D377C, (q31_t)0x3496824F, (q31_t)0x8B3899C5, (q31_t)0x3468AA76, (q31_t)0x8B240E10, (q31_t)0x343ACA87, (q31_t)0x8B0F9461, (q31_t)0x340CE28A, (q31_t)0x8AFB2CBA, (q31_t)0x33DEF287, (q31_t)0x8AE6D71F, (q31_t)0x33B0FA84, (q31_t)0x8AD29393, (q31_t)0x3382FA88, (q31_t)0x8ABE6219, (q31_t)0x3354F29A, (q31_t)0x8AAA42B4, (q31_t)0x3326E2C2, (q31_t)0x8A963567, (q31_t)0x32F8CB07, (q31_t)0x8A823A35, (q31_t)0x32CAAB6F, (q31_t)0x8A6E5122, (q31_t)0x329C8402, (q31_t)0x8A5A7A30, (q31_t)0x326E54C7, (q31_t)0x8A46B563, (q31_t)0x32401DC5, (q31_t)0x8A3302BD, (q31_t)0x3211DF03, (q31_t)0x8A1F6242, (q31_t)0x31E39889, (q31_t)0x8A0BD3F5, (q31_t)0x31B54A5D, (q31_t)0x89F857D8, (q31_t)0x3186F487, (q31_t)0x89E4EDEE, (q31_t)0x3158970D, (q31_t)0x89D1963C, (q31_t)0x312A31F8, (q31_t)0x89BE50C3, (q31_t)0x30FBC54D, (q31_t)0x89AB1D86, (q31_t)0x30CD5114, (q31_t)0x8997FC89, (q31_t)0x309ED555, (q31_t)0x8984EDCF, (q31_t)0x30705217, (q31_t)0x8971F15A, (q31_t)0x3041C760, (q31_t)0x895F072D, (q31_t)0x30133538, (q31_t)0x894C2F4C, (q31_t)0x2FE49BA6, (q31_t)0x893969B9, (q31_t)0x2FB5FAB2, (q31_t)0x8926B677, (q31_t)0x2F875262, (q31_t)0x89141589, (q31_t)0x2F58A2BD, (q31_t)0x890186F1, (q31_t)0x2F29EBCC, (q31_t)0x88EF0AB4, (q31_t)0x2EFB2D94, (q31_t)0x88DCA0D3, (q31_t)0x2ECC681E, (q31_t)0x88CA4951, (q31_t)0x2E9D9B70, (q31_t)0x88B80431, (q31_t)0x2E6EC792, (q31_t)0x88A5D177, (q31_t)0x2E3FEC8B, (q31_t)0x8893B124, (q31_t)0x2E110A62, (q31_t)0x8881A33C, (q31_t)0x2DE2211E, (q31_t)0x886FA7C2, (q31_t)0x2DB330C7, (q31_t)0x885DBEB7, (q31_t)0x2D843963, (q31_t)0x884BE820, (q31_t)0x2D553AFB, (q31_t)0x883A23FE, (q31_t)0x2D263595, (q31_t)0x88287255, (q31_t)0x2CF72939, (q31_t)0x8816D327, (q31_t)0x2CC815ED, (q31_t)0x88054677, (q31_t)0x2C98FBBA, (q31_t)0x87F3CC47, (q31_t)0x2C69DAA6, (q31_t)0x87E2649B, (q31_t)0x2C3AB2B9, (q31_t)0x87D10F75, (q31_t)0x2C0B83F9, (q31_t)0x87BFCCD7, (q31_t)0x2BDC4E6F, (q31_t)0x87AE9CC5, (q31_t)0x2BAD1221, (q31_t)0x879D7F40, (q31_t)0x2B7DCF17, (q31_t)0x878C744C, (q31_t)0x2B4E8558, (q31_t)0x877B7BEC, (q31_t)0x2B1F34EB, (q31_t)0x876A9621, (q31_t)0x2AEFDDD8, (q31_t)0x8759C2EF, (q31_t)0x2AC08025, (q31_t)0x87490257, (q31_t)0x2A911BDB, (q31_t)0x8738545E, (q31_t)0x2A61B101, (q31_t)0x8727B904, (q31_t)0x2A323F9D, (q31_t)0x8717304E, (q31_t)0x2A02C7B8, (q31_t)0x8706BA3C, (q31_t)0x29D34958, (q31_t)0x86F656D3, (q31_t)0x29A3C484, (q31_t)0x86E60614, (q31_t)0x29743945, (q31_t)0x86D5C802, (q31_t)0x2944A7A2, (q31_t)0x86C59C9F, (q31_t)0x29150FA1, (q31_t)0x86B583EE, (q31_t)0x28E5714A, (q31_t)0x86A57DF1, (q31_t)0x28B5CCA5, (q31_t)0x86958AAB, (q31_t)0x288621B9, (q31_t)0x8685AA1F, (q31_t)0x2856708C, (q31_t)0x8675DC4E, (q31_t)0x2826B928, (q31_t)0x8666213C, (q31_t)0x27F6FB92, (q31_t)0x865678EA, (q31_t)0x27C737D2, (q31_t)0x8646E35B, (q31_t)0x27976DF1, (q31_t)0x86376092, (q31_t)0x27679DF4, (q31_t)0x8627F090, (q31_t)0x2737C7E3, (q31_t)0x86189359, (q31_t)0x2707EBC6, (q31_t)0x860948EE, (q31_t)0x26D809A5, (q31_t)0x85FA1152, (q31_t)0x26A82185, (q31_t)0x85EAEC88, (q31_t)0x26783370, (q31_t)0x85DBDA91, (q31_t)0x26483F6C, (q31_t)0x85CCDB70, (q31_t)0x26184581, (q31_t)0x85BDEF27, (q31_t)0x25E845B5, (q31_t)0x85AF15B9, (q31_t)0x25B84012, (q31_t)0x85A04F28, (q31_t)0x2588349D, (q31_t)0x85919B75, (q31_t)0x2558235E, (q31_t)0x8582FAA4, (q31_t)0x25280C5D, (q31_t)0x85746CB7, (q31_t)0x24F7EFA1, (q31_t)0x8565F1B0, (q31_t)0x24C7CD32, (q31_t)0x85578991, (q31_t)0x2497A517, (q31_t)0x8549345C, (q31_t)0x24677757, (q31_t)0x853AF214, (q31_t)0x243743FA, (q31_t)0x852CC2BA, (q31_t)0x24070B07, (q31_t)0x851EA652, (q31_t)0x23D6CC86, (q31_t)0x85109CDC, (q31_t)0x23A6887E, (q31_t)0x8502A65C, (q31_t)0x23763EF7, (q31_t)0x84F4C2D3, (q31_t)0x2345EFF7, (q31_t)0x84E6F244, (q31_t)0x23159B87, (q31_t)0x84D934B0, (q31_t)0x22E541AE, (q31_t)0x84CB8A1B, (q31_t)0x22B4E274, (q31_t)0x84BDF285, (q31_t)0x22847DDF, (q31_t)0x84B06DF1, (q31_t)0x225413F8, (q31_t)0x84A2FC62, (q31_t)0x2223A4C5, (q31_t)0x84959DD9, (q31_t)0x21F3304E, (q31_t)0x84885257, (q31_t)0x21C2B69C, (q31_t)0x847B19E1, (q31_t)0x219237B4, (q31_t)0x846DF476, (q31_t)0x2161B39F, (q31_t)0x8460E21A, (q31_t)0x21312A65, (q31_t)0x8453E2CE, (q31_t)0x21009C0B, (q31_t)0x8446F695, (q31_t)0x20D0089B, (q31_t)0x843A1D70, (q31_t)0x209F701C, (q31_t)0x842D5761, (q31_t)0x206ED295, (q31_t)0x8420A46B, (q31_t)0x203E300D, (q31_t)0x8414048F, (q31_t)0x200D888C, (q31_t)0x840777CF, (q31_t)0x1FDCDC1A, (q31_t)0x83FAFE2E, (q31_t)0x1FAC2ABF, (q31_t)0x83EE97AC, (q31_t)0x1F7B7480, (q31_t)0x83E2444D, (q31_t)0x1F4AB967, (q31_t)0x83D60411, (q31_t)0x1F19F97B, (q31_t)0x83C9D6FB, (q31_t)0x1EE934C2, (q31_t)0x83BDBD0D, (q31_t)0x1EB86B46, (q31_t)0x83B1B649, (q31_t)0x1E879D0C, (q31_t)0x83A5C2B0, (q31_t)0x1E56CA1E, (q31_t)0x8399E244, (q31_t)0x1E25F281, (q31_t)0x838E1507, (q31_t)0x1DF5163F, (q31_t)0x83825AFB, (q31_t)0x1DC4355D, (q31_t)0x8376B422, (q31_t)0x1D934FE5, (q31_t)0x836B207D, (q31_t)0x1D6265DD, (q31_t)0x835FA00E, (q31_t)0x1D31774D, (q31_t)0x835432D8, (q31_t)0x1D00843C, (q31_t)0x8348D8DB, (q31_t)0x1CCF8CB3, (q31_t)0x833D921A, (q31_t)0x1C9E90B8, (q31_t)0x83325E97, (q31_t)0x1C6D9053, (q31_t)0x83273E52, (q31_t)0x1C3C8B8C, (q31_t)0x831C314E, (q31_t)0x1C0B826A, (q31_t)0x8311378C, (q31_t)0x1BDA74F5, (q31_t)0x8306510F, (q31_t)0x1BA96334, (q31_t)0x82FB7DD8, (q31_t)0x1B784D30, (q31_t)0x82F0BDE8, (q31_t)0x1B4732EF, (q31_t)0x82E61141, (q31_t)0x1B161479, (q31_t)0x82DB77E5, (q31_t)0x1AE4F1D6, (q31_t)0x82D0F1D5, (q31_t)0x1AB3CB0C, (q31_t)0x82C67F13, (q31_t)0x1A82A025, (q31_t)0x82BC1FA1, (q31_t)0x1A517127, (q31_t)0x82B1D381, (q31_t)0x1A203E1B, (q31_t)0x82A79AB3, (q31_t)0x19EF0706, (q31_t)0x829D753A, (q31_t)0x19BDCBF2, (q31_t)0x82936316, (q31_t)0x198C8CE6, (q31_t)0x8289644A, (q31_t)0x195B49E9, (q31_t)0x827F78D8, (q31_t)0x192A0303, (q31_t)0x8275A0C0, (q31_t)0x18F8B83C, (q31_t)0x826BDC04, (q31_t)0x18C7699B, (q31_t)0x82622AA5, (q31_t)0x18961727, (q31_t)0x82588CA6, (q31_t)0x1864C0E9, (q31_t)0x824F0208, (q31_t)0x183366E8, (q31_t)0x82458ACB, (q31_t)0x1802092C, (q31_t)0x823C26F2, (q31_t)0x17D0A7BB, (q31_t)0x8232D67E, (q31_t)0x179F429F, (q31_t)0x82299971, (q31_t)0x176DD9DE, (q31_t)0x82206FCB, (q31_t)0x173C6D80, (q31_t)0x8217598F, (q31_t)0x170AFD8D, (q31_t)0x820E56BE, (q31_t)0x16D98A0C, (q31_t)0x82056758, (q31_t)0x16A81305, (q31_t)0x81FC8B60, (q31_t)0x1676987F, (q31_t)0x81F3C2D7, (q31_t)0x16451A83, (q31_t)0x81EB0DBD, (q31_t)0x16139917, (q31_t)0x81E26C16, (q31_t)0x15E21444, (q31_t)0x81D9DDE1, (q31_t)0x15B08C11, (q31_t)0x81D16320, (q31_t)0x157F0086, (q31_t)0x81C8FBD5, (q31_t)0x154D71AA, (q31_t)0x81C0A801, (q31_t)0x151BDF85, (q31_t)0x81B867A4, (q31_t)0x14EA4A1F, (q31_t)0x81B03AC1, (q31_t)0x14B8B17F, (q31_t)0x81A82159, (q31_t)0x148715AD, (q31_t)0x81A01B6C, (q31_t)0x145576B1, (q31_t)0x819828FD, (q31_t)0x1423D492, (q31_t)0x81904A0C, (q31_t)0x13F22F57, (q31_t)0x81887E9A, (q31_t)0x13C0870A, (q31_t)0x8180C6A9, (q31_t)0x138EDBB0, (q31_t)0x8179223A, (q31_t)0x135D2D53, (q31_t)0x8171914E, (q31_t)0x132B7BF9, (q31_t)0x816A13E6, (q31_t)0x12F9C7AA, (q31_t)0x8162AA03, (q31_t)0x12C8106E, (q31_t)0x815B53A8, (q31_t)0x1296564D, (q31_t)0x815410D3, (q31_t)0x1264994E, (q31_t)0x814CE188, (q31_t)0x1232D978, (q31_t)0x8145C5C6, (q31_t)0x120116D4, (q31_t)0x813EBD90, (q31_t)0x11CF516A, (q31_t)0x8137C8E6, (q31_t)0x119D8940, (q31_t)0x8130E7C8, (q31_t)0x116BBE5F, (q31_t)0x812A1A39, (q31_t)0x1139F0CE, (q31_t)0x81236039, (q31_t)0x11082096, (q31_t)0x811CB9CA, (q31_t)0x10D64DBC, (q31_t)0x811626EC, (q31_t)0x10A4784A, (q31_t)0x810FA7A0, (q31_t)0x1072A047, (q31_t)0x81093BE8, (q31_t)0x1040C5BB, (q31_t)0x8102E3C3, (q31_t)0x100EE8AD, (q31_t)0x80FC9F35, (q31_t)0x0FDD0925, (q31_t)0x80F66E3C, (q31_t)0x0FAB272B, (q31_t)0x80F050DB, (q31_t)0x0F7942C6, (q31_t)0x80EA4712, (q31_t)0x0F475BFE, (q31_t)0x80E450E2, (q31_t)0x0F1572DC, (q31_t)0x80DE6E4C, (q31_t)0x0EE38765, (q31_t)0x80D89F51, (q31_t)0x0EB199A3, (q31_t)0x80D2E3F1, (q31_t)0x0E7FA99D, (q31_t)0x80CD3C2F, (q31_t)0x0E4DB75B, (q31_t)0x80C7A80A, (q31_t)0x0E1BC2E3, (q31_t)0x80C22783, (q31_t)0x0DE9CC3F, (q31_t)0x80BCBA9C, (q31_t)0x0DB7D376, (q31_t)0x80B76155, (q31_t)0x0D85D88F, (q31_t)0x80B21BAF, (q31_t)0x0D53DB92, (q31_t)0x80ACE9AB, (q31_t)0x0D21DC87, (q31_t)0x80A7CB49, (q31_t)0x0CEFDB75, (q31_t)0x80A2C08B, (q31_t)0x0CBDD865, (q31_t)0x809DC970, (q31_t)0x0C8BD35E, (q31_t)0x8098E5FB, (q31_t)0x0C59CC67, (q31_t)0x8094162B, (q31_t)0x0C27C389, (q31_t)0x808F5A02, (q31_t)0x0BF5B8CB, (q31_t)0x808AB180, (q31_t)0x0BC3AC35, (q31_t)0x80861CA5, (q31_t)0x0B919DCE, (q31_t)0x80819B74, (q31_t)0x0B5F8D9F, (q31_t)0x807D2DEB, (q31_t)0x0B2D7BAE, (q31_t)0x8078D40D, (q31_t)0x0AFB6805, (q31_t)0x80748DD9, (q31_t)0x0AC952AA, (q31_t)0x80705B50, (q31_t)0x0A973BA5, (q31_t)0x806C3C73, (q31_t)0x0A6522FE, (q31_t)0x80683143, (q31_t)0x0A3308BC, (q31_t)0x806439C0, (q31_t)0x0A00ECE8, (q31_t)0x806055EA, (q31_t)0x09CECF89, (q31_t)0x805C85C3, (q31_t)0x099CB0A7, (q31_t)0x8058C94C, (q31_t)0x096A9049, (q31_t)0x80552083, (q31_t)0x09386E77, (q31_t)0x80518B6B, (q31_t)0x09064B3A, (q31_t)0x804E0A03, (q31_t)0x08D42698, (q31_t)0x804A9C4D, (q31_t)0x08A2009A, (q31_t)0x80474248, (q31_t)0x086FD947, (q31_t)0x8043FBF6, (q31_t)0x083DB0A7, (q31_t)0x8040C956, (q31_t)0x080B86C1, (q31_t)0x803DAA69, (q31_t)0x07D95B9E, (q31_t)0x803A9F31, (q31_t)0x07A72F45, (q31_t)0x8037A7AC, (q31_t)0x077501BE, (q31_t)0x8034C3DC, (q31_t)0x0742D310, (q31_t)0x8031F3C1, (q31_t)0x0710A344, (q31_t)0x802F375C, (q31_t)0x06DE7261, (q31_t)0x802C8EAD, (q31_t)0x06AC406F, (q31_t)0x8029F9B4, (q31_t)0x067A0D75, (q31_t)0x80277872, (q31_t)0x0647D97C, (q31_t)0x80250AE7, (q31_t)0x0615A48A, (q31_t)0x8022B113, (q31_t)0x05E36EA9, (q31_t)0x80206AF8, (q31_t)0x05B137DF, (q31_t)0x801E3894, (q31_t)0x057F0034, (q31_t)0x801C19E9, (q31_t)0x054CC7B0, (q31_t)0x801A0EF7, (q31_t)0x051A8E5C, (q31_t)0x801817BF, (q31_t)0x04E8543D, (q31_t)0x80163440, (q31_t)0x04B6195D, (q31_t)0x8014647A, (q31_t)0x0483DDC3, (q31_t)0x8012A86F, (q31_t)0x0451A176, (q31_t)0x8011001E, (q31_t)0x041F647F, (q31_t)0x800F6B88, (q31_t)0x03ED26E6, (q31_t)0x800DEAAC, (q31_t)0x03BAE8B1, (q31_t)0x800C7D8C, (q31_t)0x0388A9E9, (q31_t)0x800B2427, (q31_t)0x03566A96, (q31_t)0x8009DE7D, (q31_t)0x03242ABF, (q31_t)0x8008AC90, (q31_t)0x02F1EA6B, (q31_t)0x80078E5E, (q31_t)0x02BFA9A4, (q31_t)0x800683E8, (q31_t)0x028D6870, (q31_t)0x80058D2E, (q31_t)0x025B26D7, (q31_t)0x8004AA31, (q31_t)0x0228E4E1, (q31_t)0x8003DAF0, (q31_t)0x01F6A296, (q31_t)0x80031F6C, (q31_t)0x01C45FFE, (q31_t)0x800277A5, (q31_t)0x01921D1F, (q31_t)0x8001E39B, (q31_t)0x015FDA03, (q31_t)0x8001634D, (q31_t)0x012D96B0, (q31_t)0x8000F6BD, (q31_t)0x00FB532F, (q31_t)0x80009DE9, (q31_t)0x00C90F88, (q31_t)0x800058D3, (q31_t)0x0096CBC1, (q31_t)0x8000277A, (q31_t)0x006487E3, (q31_t)0x800009DE, (q31_t)0x003243F5, (q31_t)0x80000000, (q31_t)0x00000000, (q31_t)0x800009DE, (q31_t)0xFFCDBC0A, (q31_t)0x8000277A, (q31_t)0xFF9B781D, (q31_t)0x800058D3, (q31_t)0xFF69343E, (q31_t)0x80009DE9, (q31_t)0xFF36F078, (q31_t)0x8000F6BD, (q31_t)0xFF04ACD0, (q31_t)0x8001634D, (q31_t)0xFED2694F, (q31_t)0x8001E39B, (q31_t)0xFEA025FC, (q31_t)0x800277A5, (q31_t)0xFE6DE2E0, (q31_t)0x80031F6C, (q31_t)0xFE3BA001, (q31_t)0x8003DAF0, (q31_t)0xFE095D69, (q31_t)0x8004AA31, (q31_t)0xFDD71B1E, (q31_t)0x80058D2E, (q31_t)0xFDA4D928, (q31_t)0x800683E8, (q31_t)0xFD72978F, (q31_t)0x80078E5E, (q31_t)0xFD40565B, (q31_t)0x8008AC90, (q31_t)0xFD0E1594, (q31_t)0x8009DE7D, (q31_t)0xFCDBD541, (q31_t)0x800B2427, (q31_t)0xFCA99569, (q31_t)0x800C7D8C, (q31_t)0xFC775616, (q31_t)0x800DEAAC, (q31_t)0xFC45174E, (q31_t)0x800F6B88, (q31_t)0xFC12D919, (q31_t)0x8011001E, (q31_t)0xFBE09B80, (q31_t)0x8012A86F, (q31_t)0xFBAE5E89, (q31_t)0x8014647A, (q31_t)0xFB7C223C, (q31_t)0x80163440, (q31_t)0xFB49E6A2, (q31_t)0x801817BF, (q31_t)0xFB17ABC2, (q31_t)0x801A0EF7, (q31_t)0xFAE571A4, (q31_t)0x801C19E9, (q31_t)0xFAB3384F, (q31_t)0x801E3894, (q31_t)0xFA80FFCB, (q31_t)0x80206AF8, (q31_t)0xFA4EC820, (q31_t)0x8022B113, (q31_t)0xFA1C9156, (q31_t)0x80250AE7, (q31_t)0xF9EA5B75, (q31_t)0x80277872, (q31_t)0xF9B82683, (q31_t)0x8029F9B4, (q31_t)0xF985F28A, (q31_t)0x802C8EAD, (q31_t)0xF953BF90, (q31_t)0x802F375C, (q31_t)0xF9218D9E, (q31_t)0x8031F3C1, (q31_t)0xF8EF5CBB, (q31_t)0x8034C3DC, (q31_t)0xF8BD2CEF, (q31_t)0x8037A7AC, (q31_t)0xF88AFE41, (q31_t)0x803A9F31, (q31_t)0xF858D0BA, (q31_t)0x803DAA69, (q31_t)0xF826A461, (q31_t)0x8040C956, (q31_t)0xF7F4793E, (q31_t)0x8043FBF6, (q31_t)0xF7C24F58, (q31_t)0x80474248, (q31_t)0xF79026B8, (q31_t)0x804A9C4D, (q31_t)0xF75DFF65, (q31_t)0x804E0A03, (q31_t)0xF72BD967, (q31_t)0x80518B6B, (q31_t)0xF6F9B4C5, (q31_t)0x80552083, (q31_t)0xF6C79188, (q31_t)0x8058C94C, (q31_t)0xF6956FB6, (q31_t)0x805C85C3, (q31_t)0xF6634F58, (q31_t)0x806055EA, (q31_t)0xF6313076, (q31_t)0x806439C0, (q31_t)0xF5FF1317, (q31_t)0x80683143, (q31_t)0xF5CCF743, (q31_t)0x806C3C73, (q31_t)0xF59ADD01, (q31_t)0x80705B50, (q31_t)0xF568C45A, (q31_t)0x80748DD9, (q31_t)0xF536AD55, (q31_t)0x8078D40D, (q31_t)0xF50497FA, (q31_t)0x807D2DEB, (q31_t)0xF4D28451, (q31_t)0x80819B74, (q31_t)0xF4A07260, (q31_t)0x80861CA5, (q31_t)0xF46E6231, (q31_t)0x808AB180, (q31_t)0xF43C53CA, (q31_t)0x808F5A02, (q31_t)0xF40A4734, (q31_t)0x8094162B, (q31_t)0xF3D83C76, (q31_t)0x8098E5FB, (q31_t)0xF3A63398, (q31_t)0x809DC970, (q31_t)0xF3742CA1, (q31_t)0x80A2C08B, (q31_t)0xF342279A, (q31_t)0x80A7CB49, (q31_t)0xF310248A, (q31_t)0x80ACE9AB, (q31_t)0xF2DE2378, (q31_t)0x80B21BAF, (q31_t)0xF2AC246D, (q31_t)0x80B76155, (q31_t)0xF27A2770, (q31_t)0x80BCBA9C, (q31_t)0xF2482C89, (q31_t)0x80C22783, (q31_t)0xF21633C0, (q31_t)0x80C7A80A, (q31_t)0xF1E43D1C, (q31_t)0x80CD3C2F, (q31_t)0xF1B248A5, (q31_t)0x80D2E3F1, (q31_t)0xF1805662, (q31_t)0x80D89F51, (q31_t)0xF14E665C, (q31_t)0x80DE6E4C, (q31_t)0xF11C789A, (q31_t)0x80E450E2, (q31_t)0xF0EA8D23, (q31_t)0x80EA4712, (q31_t)0xF0B8A401, (q31_t)0x80F050DB, (q31_t)0xF086BD39, (q31_t)0x80F66E3C, (q31_t)0xF054D8D4, (q31_t)0x80FC9F35, (q31_t)0xF022F6DA, (q31_t)0x8102E3C3, (q31_t)0xEFF11752, (q31_t)0x81093BE8, (q31_t)0xEFBF3A44, (q31_t)0x810FA7A0, (q31_t)0xEF8D5FB8, (q31_t)0x811626EC, (q31_t)0xEF5B87B5, (q31_t)0x811CB9CA, (q31_t)0xEF29B243, (q31_t)0x81236039, (q31_t)0xEEF7DF6A, (q31_t)0x812A1A39, (q31_t)0xEEC60F31, (q31_t)0x8130E7C8, (q31_t)0xEE9441A0, (q31_t)0x8137C8E6, (q31_t)0xEE6276BF, (q31_t)0x813EBD90, (q31_t)0xEE30AE95, (q31_t)0x8145C5C6, (q31_t)0xEDFEE92B, (q31_t)0x814CE188, (q31_t)0xEDCD2687, (q31_t)0x815410D3, (q31_t)0xED9B66B2, (q31_t)0x815B53A8, (q31_t)0xED69A9B2, (q31_t)0x8162AA03, (q31_t)0xED37EF91, (q31_t)0x816A13E6, (q31_t)0xED063855, (q31_t)0x8171914E, (q31_t)0xECD48406, (q31_t)0x8179223A, (q31_t)0xECA2D2AC, (q31_t)0x8180C6A9, (q31_t)0xEC71244F, (q31_t)0x81887E9A, (q31_t)0xEC3F78F5, (q31_t)0x81904A0C, (q31_t)0xEC0DD0A8, (q31_t)0x819828FD, (q31_t)0xEBDC2B6D, (q31_t)0x81A01B6C, (q31_t)0xEBAA894E, (q31_t)0x81A82159, (q31_t)0xEB78EA52, (q31_t)0x81B03AC1, (q31_t)0xEB474E80, (q31_t)0x81B867A4, (q31_t)0xEB15B5E0, (q31_t)0x81C0A801, (q31_t)0xEAE4207A, (q31_t)0x81C8FBD5, (q31_t)0xEAB28E55, (q31_t)0x81D16320, (q31_t)0xEA80FF79, (q31_t)0x81D9DDE1, (q31_t)0xEA4F73EE, (q31_t)0x81E26C16, (q31_t)0xEA1DEBBB, (q31_t)0x81EB0DBD, (q31_t)0xE9EC66E8, (q31_t)0x81F3C2D7, (q31_t)0xE9BAE57C, (q31_t)0x81FC8B60, (q31_t)0xE9896780, (q31_t)0x82056758, (q31_t)0xE957ECFB, (q31_t)0x820E56BE, (q31_t)0xE92675F4, (q31_t)0x8217598F, (q31_t)0xE8F50273, (q31_t)0x82206FCB, (q31_t)0xE8C3927F, (q31_t)0x82299971, (q31_t)0xE8922621, (q31_t)0x8232D67E, (q31_t)0xE860BD60, (q31_t)0x823C26F2, (q31_t)0xE82F5844, (q31_t)0x82458ACB, (q31_t)0xE7FDF6D3, (q31_t)0x824F0208, (q31_t)0xE7CC9917, (q31_t)0x82588CA6, (q31_t)0xE79B3F16, (q31_t)0x82622AA5, (q31_t)0xE769E8D8, (q31_t)0x826BDC04, (q31_t)0xE7389664, (q31_t)0x8275A0C0, (q31_t)0xE70747C3, (q31_t)0x827F78D8, (q31_t)0xE6D5FCFC, (q31_t)0x8289644A, (q31_t)0xE6A4B616, (q31_t)0x82936316, (q31_t)0xE6737319, (q31_t)0x829D753A, (q31_t)0xE642340D, (q31_t)0x82A79AB3, (q31_t)0xE610F8F9, (q31_t)0x82B1D381, (q31_t)0xE5DFC1E4, (q31_t)0x82BC1FA1, (q31_t)0xE5AE8ED8, (q31_t)0x82C67F13, (q31_t)0xE57D5FDA, (q31_t)0x82D0F1D5, (q31_t)0xE54C34F3, (q31_t)0x82DB77E5, (q31_t)0xE51B0E2A, (q31_t)0x82E61141, (q31_t)0xE4E9EB86, (q31_t)0x82F0BDE8, (q31_t)0xE4B8CD10, (q31_t)0x82FB7DD8, (q31_t)0xE487B2CF, (q31_t)0x8306510F, (q31_t)0xE4569CCB, (q31_t)0x8311378C, (q31_t)0xE4258B0A, (q31_t)0x831C314E, (q31_t)0xE3F47D95, (q31_t)0x83273E52, (q31_t)0xE3C37473, (q31_t)0x83325E97, (q31_t)0xE3926FAC, (q31_t)0x833D921A, (q31_t)0xE3616F47, (q31_t)0x8348D8DB, (q31_t)0xE330734C, (q31_t)0x835432D8, (q31_t)0xE2FF7BC3, (q31_t)0x835FA00E, (q31_t)0xE2CE88B2, (q31_t)0x836B207D, (q31_t)0xE29D9A22, (q31_t)0x8376B422, (q31_t)0xE26CB01A, (q31_t)0x83825AFB, (q31_t)0xE23BCAA2, (q31_t)0x838E1507, (q31_t)0xE20AE9C1, (q31_t)0x8399E244, (q31_t)0xE1DA0D7E, (q31_t)0x83A5C2B0, (q31_t)0xE1A935E1, (q31_t)0x83B1B649, (q31_t)0xE17862F3, (q31_t)0x83BDBD0D, (q31_t)0xE14794B9, (q31_t)0x83C9D6FB, (q31_t)0xE116CB3D, (q31_t)0x83D60411, (q31_t)0xE0E60684, (q31_t)0x83E2444D, (q31_t)0xE0B54698, (q31_t)0x83EE97AC, (q31_t)0xE0848B7F, (q31_t)0x83FAFE2E, (q31_t)0xE053D541, (q31_t)0x840777CF, (q31_t)0xE02323E5, (q31_t)0x8414048F, (q31_t)0xDFF27773, (q31_t)0x8420A46B, (q31_t)0xDFC1CFF2, (q31_t)0x842D5761, (q31_t)0xDF912D6A, (q31_t)0x843A1D70, (q31_t)0xDF608FE3, (q31_t)0x8446F695, (q31_t)0xDF2FF764, (q31_t)0x8453E2CE, (q31_t)0xDEFF63F4, (q31_t)0x8460E21A, (q31_t)0xDECED59B, (q31_t)0x846DF476, (q31_t)0xDE9E4C60, (q31_t)0x847B19E1, (q31_t)0xDE6DC84B, (q31_t)0x84885257, (q31_t)0xDE3D4963, (q31_t)0x84959DD9, (q31_t)0xDE0CCFB1, (q31_t)0x84A2FC62, (q31_t)0xDDDC5B3A, (q31_t)0x84B06DF1, (q31_t)0xDDABEC07, (q31_t)0x84BDF285, (q31_t)0xDD7B8220, (q31_t)0x84CB8A1B, (q31_t)0xDD4B1D8B, (q31_t)0x84D934B0, (q31_t)0xDD1ABE51, (q31_t)0x84E6F244, (q31_t)0xDCEA6478, (q31_t)0x84F4C2D3, (q31_t)0xDCBA1008, (q31_t)0x8502A65C, (q31_t)0xDC89C108, (q31_t)0x85109CDC, (q31_t)0xDC597781, (q31_t)0x851EA652, (q31_t)0xDC293379, (q31_t)0x852CC2BA, (q31_t)0xDBF8F4F8, (q31_t)0x853AF214, (q31_t)0xDBC8BC05, (q31_t)0x8549345C, (q31_t)0xDB9888A8, (q31_t)0x85578991, (q31_t)0xDB685AE8, (q31_t)0x8565F1B0, (q31_t)0xDB3832CD, (q31_t)0x85746CB7, (q31_t)0xDB08105E, (q31_t)0x8582FAA4, (q31_t)0xDAD7F3A2, (q31_t)0x85919B75, (q31_t)0xDAA7DCA1, (q31_t)0x85A04F28, (q31_t)0xDA77CB62, (q31_t)0x85AF15B9, (q31_t)0xDA47BFED, (q31_t)0x85BDEF27, (q31_t)0xDA17BA4A, (q31_t)0x85CCDB70, (q31_t)0xD9E7BA7E, (q31_t)0x85DBDA91, (q31_t)0xD9B7C093, (q31_t)0x85EAEC88, (q31_t)0xD987CC8F, (q31_t)0x85FA1152, (q31_t)0xD957DE7A, (q31_t)0x860948EE, (q31_t)0xD927F65B, (q31_t)0x86189359, (q31_t)0xD8F81439, (q31_t)0x8627F090, (q31_t)0xD8C8381C, (q31_t)0x86376092, (q31_t)0xD898620C, (q31_t)0x8646E35B, (q31_t)0xD868920F, (q31_t)0x865678EA, (q31_t)0xD838C82D, (q31_t)0x8666213C, (q31_t)0xD809046D, (q31_t)0x8675DC4E, (q31_t)0xD7D946D7, (q31_t)0x8685AA1F, (q31_t)0xD7A98F73, (q31_t)0x86958AAB, (q31_t)0xD779DE46, (q31_t)0x86A57DF1, (q31_t)0xD74A335A, (q31_t)0x86B583EE, (q31_t)0xD71A8EB5, (q31_t)0x86C59C9F, (q31_t)0xD6EAF05E, (q31_t)0x86D5C802, (q31_t)0xD6BB585D, (q31_t)0x86E60614, (q31_t)0xD68BC6BA, (q31_t)0x86F656D3, (q31_t)0xD65C3B7B, (q31_t)0x8706BA3C, (q31_t)0xD62CB6A7, (q31_t)0x8717304E, (q31_t)0xD5FD3847, (q31_t)0x8727B904, (q31_t)0xD5CDC062, (q31_t)0x8738545E, (q31_t)0xD59E4EFE, (q31_t)0x87490257, (q31_t)0xD56EE424, (q31_t)0x8759C2EF, (q31_t)0xD53F7FDA, (q31_t)0x876A9621, (q31_t)0xD5102227, (q31_t)0x877B7BEC, (q31_t)0xD4E0CB14, (q31_t)0x878C744C, (q31_t)0xD4B17AA7, (q31_t)0x879D7F40, (q31_t)0xD48230E8, (q31_t)0x87AE9CC5, (q31_t)0xD452EDDE, (q31_t)0x87BFCCD7, (q31_t)0xD423B190, (q31_t)0x87D10F75, (q31_t)0xD3F47C06, (q31_t)0x87E2649B, (q31_t)0xD3C54D46, (q31_t)0x87F3CC47, (q31_t)0xD3962559, (q31_t)0x88054677, (q31_t)0xD3670445, (q31_t)0x8816D327, (q31_t)0xD337EA12, (q31_t)0x88287255, (q31_t)0xD308D6C6, (q31_t)0x883A23FE, (q31_t)0xD2D9CA6A, (q31_t)0x884BE820, (q31_t)0xD2AAC504, (q31_t)0x885DBEB7, (q31_t)0xD27BC69C, (q31_t)0x886FA7C2, (q31_t)0xD24CCF38, (q31_t)0x8881A33C, (q31_t)0xD21DDEE1, (q31_t)0x8893B124, (q31_t)0xD1EEF59E, (q31_t)0x88A5D177, (q31_t)0xD1C01374, (q31_t)0x88B80431, (q31_t)0xD191386D, (q31_t)0x88CA4951, (q31_t)0xD162648F, (q31_t)0x88DCA0D3, (q31_t)0xD13397E1, (q31_t)0x88EF0AB4, (q31_t)0xD104D26B, (q31_t)0x890186F1, (q31_t)0xD0D61433, (q31_t)0x89141589, (q31_t)0xD0A75D42, (q31_t)0x8926B677, (q31_t)0xD078AD9D, (q31_t)0x893969B9, (q31_t)0xD04A054D, (q31_t)0x894C2F4C, (q31_t)0xD01B6459, (q31_t)0x895F072D, (q31_t)0xCFECCAC7, (q31_t)0x8971F15A, (q31_t)0xCFBE389F, (q31_t)0x8984EDCF, (q31_t)0xCF8FADE8, (q31_t)0x8997FC89, (q31_t)0xCF612AAA, (q31_t)0x89AB1D86, (q31_t)0xCF32AEEB, (q31_t)0x89BE50C3, (q31_t)0xCF043AB2, (q31_t)0x89D1963C, (q31_t)0xCED5CE08, (q31_t)0x89E4EDEE, (q31_t)0xCEA768F2, (q31_t)0x89F857D8, (q31_t)0xCE790B78, (q31_t)0x8A0BD3F5, (q31_t)0xCE4AB5A2, (q31_t)0x8A1F6242, (q31_t)0xCE1C6776, (q31_t)0x8A3302BD, (q31_t)0xCDEE20FC, (q31_t)0x8A46B563, (q31_t)0xCDBFE23A, (q31_t)0x8A5A7A30, (q31_t)0xCD91AB38, (q31_t)0x8A6E5122, (q31_t)0xCD637BFD, (q31_t)0x8A823A35, (q31_t)0xCD355490, (q31_t)0x8A963567, (q31_t)0xCD0734F8, (q31_t)0x8AAA42B4, (q31_t)0xCCD91D3D, (q31_t)0x8ABE6219, (q31_t)0xCCAB0D65, (q31_t)0x8AD29393, (q31_t)0xCC7D0577, (q31_t)0x8AE6D71F, (q31_t)0xCC4F057B, (q31_t)0x8AFB2CBA, (q31_t)0xCC210D78, (q31_t)0x8B0F9461, (q31_t)0xCBF31D75, (q31_t)0x8B240E10, (q31_t)0xCBC53578, (q31_t)0x8B3899C5, (q31_t)0xCB975589, (q31_t)0x8B4D377C, (q31_t)0xCB697DB0, (q31_t)0x8B61E732, (q31_t)0xCB3BADF2, (q31_t)0x8B76A8E4, (q31_t)0xCB0DE658, (q31_t)0x8B8B7C8F, (q31_t)0xCAE026E8, (q31_t)0x8BA0622F, (q31_t)0xCAB26FA9, (q31_t)0x8BB559C1, (q31_t)0xCA84C0A2, (q31_t)0x8BCA6342, (q31_t)0xCA5719DB, (q31_t)0x8BDF7EAF, (q31_t)0xCA297B5A, (q31_t)0x8BF4AC05, (q31_t)0xC9FBE527, (q31_t)0x8C09EB40, (q31_t)0xC9CE5748, (q31_t)0x8C1F3C5C, (q31_t)0xC9A0D1C4, (q31_t)0x8C349F58, (q31_t)0xC97354A3, (q31_t)0x8C4A142F, (q31_t)0xC945DFEC, (q31_t)0x8C5F9ADD, (q31_t)0xC91873A5, (q31_t)0x8C753361, (q31_t)0xC8EB0FD6, (q31_t)0x8C8ADDB6, (q31_t)0xC8BDB485, (q31_t)0x8CA099D9, (q31_t)0xC89061BA, (q31_t)0x8CB667C7, (q31_t)0xC863177B, (q31_t)0x8CCC477D, (q31_t)0xC835D5D0, (q31_t)0x8CE238F6, (q31_t)0xC8089CBF, (q31_t)0x8CF83C30, (q31_t)0xC7DB6C50, (q31_t)0x8D0E5127, (q31_t)0xC7AE4489, (q31_t)0x8D2477D8, (q31_t)0xC7812571, (q31_t)0x8D3AB03F, (q31_t)0xC7540F10, (q31_t)0x8D50FA59, (q31_t)0xC727016C, (q31_t)0x8D675623, (q31_t)0xC6F9FC8D, (q31_t)0x8D7DC399, (q31_t)0xC6CD0079, (q31_t)0x8D9442B7, (q31_t)0xC6A00D36, (q31_t)0x8DAAD37B, (q31_t)0xC67322CD, (q31_t)0x8DC175E0, (q31_t)0xC6464144, (q31_t)0x8DD829E4, (q31_t)0xC61968A2, (q31_t)0x8DEEEF82, (q31_t)0xC5EC98ED, (q31_t)0x8E05C6B7, (q31_t)0xC5BFD22E, (q31_t)0x8E1CAF80, (q31_t)0xC593146A, (q31_t)0x8E33A9D9, (q31_t)0xC5665FA8, (q31_t)0x8E4AB5BF, (q31_t)0xC539B3F0, (q31_t)0x8E61D32D, (q31_t)0xC50D1148, (q31_t)0x8E790222, (q31_t)0xC4E077B8, (q31_t)0x8E904298, (q31_t)0xC4B3E746, (q31_t)0x8EA7948C, (q31_t)0xC4875FF8, (q31_t)0x8EBEF7FB, (q31_t)0xC45AE1D7, (q31_t)0x8ED66CE1, (q31_t)0xC42E6CE8, (q31_t)0x8EEDF33B, (q31_t)0xC4020132, (q31_t)0x8F058B04, (q31_t)0xC3D59EBD, (q31_t)0x8F1D343A, (q31_t)0xC3A9458F, (q31_t)0x8F34EED8, (q31_t)0xC37CF5B0, (q31_t)0x8F4CBADB, (q31_t)0xC350AF25, (q31_t)0x8F64983F, (q31_t)0xC32471F6, (q31_t)0x8F7C8701, (q31_t)0xC2F83E2A, (q31_t)0x8F94871D, (q31_t)0xC2CC13C7, (q31_t)0x8FAC988E, (q31_t)0xC29FF2D4, (q31_t)0x8FC4BB53, (q31_t)0xC273DB58, (q31_t)0x8FDCEF66, (q31_t)0xC247CD5A, (q31_t)0x8FF534C4, (q31_t)0xC21BC8E0, (q31_t)0x900D8B69, (q31_t)0xC1EFCDF2, (q31_t)0x9025F352, (q31_t)0xC1C3DC96, (q31_t)0x903E6C7A, (q31_t)0xC197F4D3, (q31_t)0x9056F6DF, (q31_t)0xC16C16B0, (q31_t)0x906F927B, (q31_t)0xC1404233, (q31_t)0x90883F4C, (q31_t)0xC1147763, (q31_t)0x90A0FD4E, (q31_t)0xC0E8B648, (q31_t)0x90B9CC7C, (q31_t)0xC0BCFEE7, (q31_t)0x90D2ACD3, (q31_t)0xC0915147, (q31_t)0x90EB9E50, (q31_t)0xC065AD70, (q31_t)0x9104A0ED, (q31_t)0xC03A1368, (q31_t)0x911DB4A8, (q31_t)0xC00E8335, (q31_t)0x9136D97D, (q31_t)0xBFE2FCDF, (q31_t)0x91500F67, (q31_t)0xBFB7806C, (q31_t)0x91695663, (q31_t)0xBF8C0DE2, (q31_t)0x9182AE6C, (q31_t)0xBF60A54A, (q31_t)0x919C1780, (q31_t)0xBF3546A8, (q31_t)0x91B5919A, (q31_t)0xBF09F204, (q31_t)0x91CF1CB6, (q31_t)0xBEDEA765, (q31_t)0x91E8B8D0, (q31_t)0xBEB366D1, (q31_t)0x920265E4, (q31_t)0xBE88304F, (q31_t)0x921C23EE, (q31_t)0xBE5D03E5, (q31_t)0x9235F2EB, (q31_t)0xBE31E19B, (q31_t)0x924FD2D6, (q31_t)0xBE06C977, (q31_t)0x9269C3AC, (q31_t)0xBDDBBB7F, (q31_t)0x9283C567, (q31_t)0xBDB0B7BA, (q31_t)0x929DD805, (q31_t)0xBD85BE2F, (q31_t)0x92B7FB82, (q31_t)0xBD5ACEE5, (q31_t)0x92D22FD8, (q31_t)0xBD2FE9E1, (q31_t)0x92EC7505, (q31_t)0xBD050F2C, (q31_t)0x9306CB04, (q31_t)0xBCDA3ECA, (q31_t)0x932131D1, (q31_t)0xBCAF78C3, (q31_t)0x933BA968, (q31_t)0xBC84BD1E, (q31_t)0x935631C5, (q31_t)0xBC5A0BE1, (q31_t)0x9370CAE4, (q31_t)0xBC2F6513, (q31_t)0x938B74C0, (q31_t)0xBC04C8BA, (q31_t)0x93A62F56, (q31_t)0xBBDA36DC, (q31_t)0x93C0FAA2, (q31_t)0xBBAFAF81, (q31_t)0x93DBD69F, (q31_t)0xBB8532AF, (q31_t)0x93F6C34A, (q31_t)0xBB5AC06C, (q31_t)0x9411C09D, (q31_t)0xBB3058C0, (q31_t)0x942CCE95, (q31_t)0xBB05FBB0, (q31_t)0x9447ED2F, (q31_t)0xBADBA943, (q31_t)0x94631C64, (q31_t)0xBAB1617F, (q31_t)0x947E5C32, (q31_t)0xBA87246C, (q31_t)0x9499AC95, (q31_t)0xBA5CF210, (q31_t)0x94B50D87, (q31_t)0xBA32CA70, (q31_t)0x94D07F05, (q31_t)0xBA08AD94, (q31_t)0x94EC010B, (q31_t)0xB9DE9B83, (q31_t)0x95079393, (q31_t)0xB9B49442, (q31_t)0x9523369B, (q31_t)0xB98A97D8, (q31_t)0x953EEA1E, (q31_t)0xB960A64B, (q31_t)0x955AAE17, (q31_t)0xB936BFA3, (q31_t)0x95768282, (q31_t)0xB90CE3E6, (q31_t)0x9592675B, (q31_t)0xB8E31319, (q31_t)0x95AE5C9E, (q31_t)0xB8B94D44, (q31_t)0x95CA6246, (q31_t)0xB88F926C, (q31_t)0x95E6784F, (q31_t)0xB865E299, (q31_t)0x96029EB5, (q31_t)0xB83C3DD1, (q31_t)0x961ED573, (q31_t)0xB812A419, (q31_t)0x963B1C85, (q31_t)0xB7E9157A, (q31_t)0x965773E7, (q31_t)0xB7BF91F8, (q31_t)0x9673DB94, (q31_t)0xB796199B, (q31_t)0x96905387, (q31_t)0xB76CAC68, (q31_t)0x96ACDBBD, (q31_t)0xB7434A67, (q31_t)0x96C97431, (q31_t)0xB719F39D, (q31_t)0x96E61CDF, (q31_t)0xB6F0A811, (q31_t)0x9702D5C2, (q31_t)0xB6C767CA, (q31_t)0x971F9ED6, (q31_t)0xB69E32CD, (q31_t)0x973C7816, (q31_t)0xB6750921, (q31_t)0x9759617E, (q31_t)0xB64BEACC, (q31_t)0x97765B0A, (q31_t)0xB622D7D5, (q31_t)0x979364B5, (q31_t)0xB5F9D042, (q31_t)0x97B07E7A, (q31_t)0xB5D0D41A, (q31_t)0x97CDA855, (q31_t)0xB5A7E362, (q31_t)0x97EAE241, (q31_t)0xB57EFE21, (q31_t)0x98082C3B, (q31_t)0xB556245E, (q31_t)0x9825863D, (q31_t)0xB52D561E, (q31_t)0x9842F043, (q31_t)0xB5049368, (q31_t)0x98606A48, (q31_t)0xB4DBDC42, (q31_t)0x987DF449, (q31_t)0xB4B330B2, (q31_t)0x989B8E3F, (q31_t)0xB48A90C0, (q31_t)0x98B93828, (q31_t)0xB461FC70, (q31_t)0x98D6F1FE, (q31_t)0xB43973C9, (q31_t)0x98F4BBBC, (q31_t)0xB410F6D2, (q31_t)0x9912955E, (q31_t)0xB3E88591, (q31_t)0x99307EE0, (q31_t)0xB3C0200C, (q31_t)0x994E783C, (q31_t)0xB397C649, (q31_t)0x996C816F, (q31_t)0xB36F784E, (q31_t)0x998A9A73, (q31_t)0xB3473622, (q31_t)0x99A8C344, (q31_t)0xB31EFFCB, (q31_t)0x99C6FBDE, (q31_t)0xB2F6D54F, (q31_t)0x99E5443A, (q31_t)0xB2CEB6B5, (q31_t)0x9A039C56, (q31_t)0xB2A6A401, (q31_t)0x9A22042C, (q31_t)0xB27E9D3B, (q31_t)0x9A407BB8, (q31_t)0xB256A26A, (q31_t)0x9A5F02F5, (q31_t)0xB22EB392, (q31_t)0x9A7D99DD, (q31_t)0xB206D0BA, (q31_t)0x9A9C406D, (q31_t)0xB1DEF9E8, (q31_t)0x9ABAF6A0, (q31_t)0xB1B72F23, (q31_t)0x9AD9BC71, (q31_t)0xB18F7070, (q31_t)0x9AF891DB, (q31_t)0xB167BDD6, (q31_t)0x9B1776D9, (q31_t)0xB140175B, (q31_t)0x9B366B67, (q31_t)0xB1187D05, (q31_t)0x9B556F80, (q31_t)0xB0F0EEDA, (q31_t)0x9B748320, (q31_t)0xB0C96CDF, (q31_t)0x9B93A640, (q31_t)0xB0A1F71C, (q31_t)0x9BB2D8DD, (q31_t)0xB07A8D97, (q31_t)0x9BD21AF2, (q31_t)0xB0533055, (q31_t)0x9BF16C7A, (q31_t)0xB02BDF5C, (q31_t)0x9C10CD70, (q31_t)0xB0049AB2, (q31_t)0x9C303DCF, (q31_t)0xAFDD625F, (q31_t)0x9C4FBD92, (q31_t)0xAFB63667, (q31_t)0x9C6F4CB5, (q31_t)0xAF8F16D0, (q31_t)0x9C8EEB33, (q31_t)0xAF6803A1, (q31_t)0x9CAE9907, (q31_t)0xAF40FCE0, (q31_t)0x9CCE562B, (q31_t)0xAF1A0293, (q31_t)0x9CEE229C, (q31_t)0xAEF314BF, (q31_t)0x9D0DFE53, (q31_t)0xAECC336B, (q31_t)0x9D2DE94D, (q31_t)0xAEA55E9D, (q31_t)0x9D4DE384, (q31_t)0xAE7E965B, (q31_t)0x9D6DECF4, (q31_t)0xAE57DAAA, (q31_t)0x9D8E0596, (q31_t)0xAE312B91, (q31_t)0x9DAE2D68, (q31_t)0xAE0A8916, (q31_t)0x9DCE6462, (q31_t)0xADE3F33E, (q31_t)0x9DEEAA82, (q31_t)0xADBD6A10, (q31_t)0x9E0EFFC1, (q31_t)0xAD96ED91, (q31_t)0x9E2F641A, (q31_t)0xAD707DC8, (q31_t)0x9E4FD789, (q31_t)0xAD4A1ABA, (q31_t)0x9E705A09, (q31_t)0xAD23C46D, (q31_t)0x9E90EB94, (q31_t)0xACFD7AE8, (q31_t)0x9EB18C26, (q31_t)0xACD73E30, (q31_t)0x9ED23BB9, (q31_t)0xACB10E4A, (q31_t)0x9EF2FA48, (q31_t)0xAC8AEB3E, (q31_t)0x9F13C7D0, (q31_t)0xAC64D510, (q31_t)0x9F34A449, (q31_t)0xAC3ECBC7, (q31_t)0x9F558FB0, (q31_t)0xAC18CF68, (q31_t)0x9F7689FF, (q31_t)0xABF2DFFA, (q31_t)0x9F979331, (q31_t)0xABCCFD82, (q31_t)0x9FB8AB41, (q31_t)0xABA72806, (q31_t)0x9FD9D22A, (q31_t)0xAB815F8C, (q31_t)0x9FFB07E7, (q31_t)0xAB5BA41A, (q31_t)0xA01C4C72, (q31_t)0xAB35F5B5, (q31_t)0xA03D9FC7, (q31_t)0xAB105464, (q31_t)0xA05F01E1, (q31_t)0xAAEAC02B, (q31_t)0xA08072BA, (q31_t)0xAAC53912, (q31_t)0xA0A1F24C, (q31_t)0xAA9FBF1D, (q31_t)0xA0C38094, (q31_t)0xAA7A5253, (q31_t)0xA0E51D8C, (q31_t)0xAA54F2B9, (q31_t)0xA106C92E, (q31_t)0xAA2FA055, (q31_t)0xA1288376, (q31_t)0xAA0A5B2D, (q31_t)0xA14A4C5E, (q31_t)0xA9E52347, (q31_t)0xA16C23E1, (q31_t)0xA9BFF8A8, (q31_t)0xA18E09F9, (q31_t)0xA99ADB56, (q31_t)0xA1AFFEA2, (q31_t)0xA975CB56, (q31_t)0xA1D201D7, (q31_t)0xA950C8AF, (q31_t)0xA1F41391, (q31_t)0xA92BD366, (q31_t)0xA21633CD, (q31_t)0xA906EB81, (q31_t)0xA2386283, (q31_t)0xA8E21106, (q31_t)0xA25A9FB1, (q31_t)0xA8BD43FA, (q31_t)0xA27CEB4F, (q31_t)0xA8988463, (q31_t)0xA29F4559, (q31_t)0xA873D246, (q31_t)0xA2C1ADC9, (q31_t)0xA84F2DA9, (q31_t)0xA2E4249A, (q31_t)0xA82A9693, (q31_t)0xA306A9C7, (q31_t)0xA8060D08, (q31_t)0xA3293D4B, (q31_t)0xA7E1910E, (q31_t)0xA34BDF20, (q31_t)0xA7BD22AB, (q31_t)0xA36E8F40, (q31_t)0xA798C1E4, (q31_t)0xA3914DA7, (q31_t)0xA7746EC0, (q31_t)0xA3B41A4F, (q31_t)0xA7502943, (q31_t)0xA3D6F533, (q31_t)0xA72BF173, (q31_t)0xA3F9DE4D, (q31_t)0xA707C756, (q31_t)0xA41CD598, (q31_t)0xA6E3AAF2, (q31_t)0xA43FDB0F, (q31_t)0xA6BF9C4B, (q31_t)0xA462EEAC, (q31_t)0xA69B9B68, (q31_t)0xA4861069, (q31_t)0xA677A84E, (q31_t)0xA4A94042, (q31_t)0xA653C302, (q31_t)0xA4CC7E31, (q31_t)0xA62FEB8B, (q31_t)0xA4EFCA31, (q31_t)0xA60C21ED, (q31_t)0xA513243B, (q31_t)0xA5E8662F, (q31_t)0xA5368C4B, (q31_t)0xA5C4B855, (q31_t)0xA55A025B, (q31_t)0xA5A11865, (q31_t)0xA57D8666, (q31_t)0xA57D8666, (q31_t)0xA5A11865, (q31_t)0xA55A025B, (q31_t)0xA5C4B855, (q31_t)0xA5368C4B, (q31_t)0xA5E8662F, (q31_t)0xA513243B, (q31_t)0xA60C21ED, (q31_t)0xA4EFCA31, (q31_t)0xA62FEB8B, (q31_t)0xA4CC7E31, (q31_t)0xA653C302, (q31_t)0xA4A94042, (q31_t)0xA677A84E, (q31_t)0xA4861069, (q31_t)0xA69B9B68, (q31_t)0xA462EEAC, (q31_t)0xA6BF9C4B, (q31_t)0xA43FDB0F, (q31_t)0xA6E3AAF2, (q31_t)0xA41CD598, (q31_t)0xA707C756, (q31_t)0xA3F9DE4D, (q31_t)0xA72BF173, (q31_t)0xA3D6F533, (q31_t)0xA7502943, (q31_t)0xA3B41A4F, (q31_t)0xA7746EC0, (q31_t)0xA3914DA7, (q31_t)0xA798C1E4, (q31_t)0xA36E8F40, (q31_t)0xA7BD22AB, (q31_t)0xA34BDF20, (q31_t)0xA7E1910E, (q31_t)0xA3293D4B, (q31_t)0xA8060D08, (q31_t)0xA306A9C7, (q31_t)0xA82A9693, (q31_t)0xA2E4249A, (q31_t)0xA84F2DA9, (q31_t)0xA2C1ADC9, (q31_t)0xA873D246, (q31_t)0xA29F4559, (q31_t)0xA8988463, (q31_t)0xA27CEB4F, (q31_t)0xA8BD43FA, (q31_t)0xA25A9FB1, (q31_t)0xA8E21106, (q31_t)0xA2386283, (q31_t)0xA906EB81, (q31_t)0xA21633CD, (q31_t)0xA92BD366, (q31_t)0xA1F41391, (q31_t)0xA950C8AF, (q31_t)0xA1D201D7, (q31_t)0xA975CB56, (q31_t)0xA1AFFEA2, (q31_t)0xA99ADB56, (q31_t)0xA18E09F9, (q31_t)0xA9BFF8A8, (q31_t)0xA16C23E1, (q31_t)0xA9E52347, (q31_t)0xA14A4C5E, (q31_t)0xAA0A5B2D, (q31_t)0xA1288376, (q31_t)0xAA2FA055, (q31_t)0xA106C92E, (q31_t)0xAA54F2B9, (q31_t)0xA0E51D8C, (q31_t)0xAA7A5253, (q31_t)0xA0C38094, (q31_t)0xAA9FBF1D, (q31_t)0xA0A1F24C, (q31_t)0xAAC53912, (q31_t)0xA08072BA, (q31_t)0xAAEAC02B, (q31_t)0xA05F01E1, (q31_t)0xAB105464, (q31_t)0xA03D9FC7, (q31_t)0xAB35F5B5, (q31_t)0xA01C4C72, (q31_t)0xAB5BA41A, (q31_t)0x9FFB07E7, (q31_t)0xAB815F8C, (q31_t)0x9FD9D22A, (q31_t)0xABA72806, (q31_t)0x9FB8AB41, (q31_t)0xABCCFD82, (q31_t)0x9F979331, (q31_t)0xABF2DFFA, (q31_t)0x9F7689FF, (q31_t)0xAC18CF68, (q31_t)0x9F558FB0, (q31_t)0xAC3ECBC7, (q31_t)0x9F34A449, (q31_t)0xAC64D510, (q31_t)0x9F13C7D0, (q31_t)0xAC8AEB3E, (q31_t)0x9EF2FA48, (q31_t)0xACB10E4A, (q31_t)0x9ED23BB9, (q31_t)0xACD73E30, (q31_t)0x9EB18C26, (q31_t)0xACFD7AE8, (q31_t)0x9E90EB94, (q31_t)0xAD23C46D, (q31_t)0x9E705A09, (q31_t)0xAD4A1ABA, (q31_t)0x9E4FD789, (q31_t)0xAD707DC8, (q31_t)0x9E2F641A, (q31_t)0xAD96ED91, (q31_t)0x9E0EFFC1, (q31_t)0xADBD6A10, (q31_t)0x9DEEAA82, (q31_t)0xADE3F33E, (q31_t)0x9DCE6462, (q31_t)0xAE0A8916, (q31_t)0x9DAE2D68, (q31_t)0xAE312B91, (q31_t)0x9D8E0596, (q31_t)0xAE57DAAA, (q31_t)0x9D6DECF4, (q31_t)0xAE7E965B, (q31_t)0x9D4DE384, (q31_t)0xAEA55E9D, (q31_t)0x9D2DE94D, (q31_t)0xAECC336B, (q31_t)0x9D0DFE53, (q31_t)0xAEF314BF, (q31_t)0x9CEE229C, (q31_t)0xAF1A0293, (q31_t)0x9CCE562B, (q31_t)0xAF40FCE0, (q31_t)0x9CAE9907, (q31_t)0xAF6803A1, (q31_t)0x9C8EEB33, (q31_t)0xAF8F16D0, (q31_t)0x9C6F4CB5, (q31_t)0xAFB63667, (q31_t)0x9C4FBD92, (q31_t)0xAFDD625F, (q31_t)0x9C303DCF, (q31_t)0xB0049AB2, (q31_t)0x9C10CD70, (q31_t)0xB02BDF5C, (q31_t)0x9BF16C7A, (q31_t)0xB0533055, (q31_t)0x9BD21AF2, (q31_t)0xB07A8D97, (q31_t)0x9BB2D8DD, (q31_t)0xB0A1F71C, (q31_t)0x9B93A640, (q31_t)0xB0C96CDF, (q31_t)0x9B748320, (q31_t)0xB0F0EEDA, (q31_t)0x9B556F80, (q31_t)0xB1187D05, (q31_t)0x9B366B67, (q31_t)0xB140175B, (q31_t)0x9B1776D9, (q31_t)0xB167BDD6, (q31_t)0x9AF891DB, (q31_t)0xB18F7070, (q31_t)0x9AD9BC71, (q31_t)0xB1B72F23, (q31_t)0x9ABAF6A0, (q31_t)0xB1DEF9E8, (q31_t)0x9A9C406D, (q31_t)0xB206D0BA, (q31_t)0x9A7D99DD, (q31_t)0xB22EB392, (q31_t)0x9A5F02F5, (q31_t)0xB256A26A, (q31_t)0x9A407BB8, (q31_t)0xB27E9D3B, (q31_t)0x9A22042C, (q31_t)0xB2A6A401, (q31_t)0x9A039C56, (q31_t)0xB2CEB6B5, (q31_t)0x99E5443A, (q31_t)0xB2F6D54F, (q31_t)0x99C6FBDE, (q31_t)0xB31EFFCB, (q31_t)0x99A8C344, (q31_t)0xB3473622, (q31_t)0x998A9A73, (q31_t)0xB36F784E, (q31_t)0x996C816F, (q31_t)0xB397C649, (q31_t)0x994E783C, (q31_t)0xB3C0200C, (q31_t)0x99307EE0, (q31_t)0xB3E88591, (q31_t)0x9912955E, (q31_t)0xB410F6D2, (q31_t)0x98F4BBBC, (q31_t)0xB43973C9, (q31_t)0x98D6F1FE, (q31_t)0xB461FC70, (q31_t)0x98B93828, (q31_t)0xB48A90C0, (q31_t)0x989B8E3F, (q31_t)0xB4B330B2, (q31_t)0x987DF449, (q31_t)0xB4DBDC42, (q31_t)0x98606A48, (q31_t)0xB5049368, (q31_t)0x9842F043, (q31_t)0xB52D561E, (q31_t)0x9825863D, (q31_t)0xB556245E, (q31_t)0x98082C3B, (q31_t)0xB57EFE21, (q31_t)0x97EAE241, (q31_t)0xB5A7E362, (q31_t)0x97CDA855, (q31_t)0xB5D0D41A, (q31_t)0x97B07E7A, (q31_t)0xB5F9D042, (q31_t)0x979364B5, (q31_t)0xB622D7D5, (q31_t)0x97765B0A, (q31_t)0xB64BEACC, (q31_t)0x9759617E, (q31_t)0xB6750921, (q31_t)0x973C7816, (q31_t)0xB69E32CD, (q31_t)0x971F9ED6, (q31_t)0xB6C767CA, (q31_t)0x9702D5C2, (q31_t)0xB6F0A811, (q31_t)0x96E61CDF, (q31_t)0xB719F39D, (q31_t)0x96C97431, (q31_t)0xB7434A67, (q31_t)0x96ACDBBD, (q31_t)0xB76CAC68, (q31_t)0x96905387, (q31_t)0xB796199B, (q31_t)0x9673DB94, (q31_t)0xB7BF91F8, (q31_t)0x965773E7, (q31_t)0xB7E9157A, (q31_t)0x963B1C85, (q31_t)0xB812A419, (q31_t)0x961ED573, (q31_t)0xB83C3DD1, (q31_t)0x96029EB5, (q31_t)0xB865E299, (q31_t)0x95E6784F, (q31_t)0xB88F926C, (q31_t)0x95CA6246, (q31_t)0xB8B94D44, (q31_t)0x95AE5C9E, (q31_t)0xB8E31319, (q31_t)0x9592675B, (q31_t)0xB90CE3E6, (q31_t)0x95768282, (q31_t)0xB936BFA3, (q31_t)0x955AAE17, (q31_t)0xB960A64B, (q31_t)0x953EEA1E, (q31_t)0xB98A97D8, (q31_t)0x9523369B, (q31_t)0xB9B49442, (q31_t)0x95079393, (q31_t)0xB9DE9B83, (q31_t)0x94EC010B, (q31_t)0xBA08AD94, (q31_t)0x94D07F05, (q31_t)0xBA32CA70, (q31_t)0x94B50D87, (q31_t)0xBA5CF210, (q31_t)0x9499AC95, (q31_t)0xBA87246C, (q31_t)0x947E5C32, (q31_t)0xBAB1617F, (q31_t)0x94631C64, (q31_t)0xBADBA943, (q31_t)0x9447ED2F, (q31_t)0xBB05FBB0, (q31_t)0x942CCE95, (q31_t)0xBB3058C0, (q31_t)0x9411C09D, (q31_t)0xBB5AC06C, (q31_t)0x93F6C34A, (q31_t)0xBB8532AF, (q31_t)0x93DBD69F, (q31_t)0xBBAFAF81, (q31_t)0x93C0FAA2, (q31_t)0xBBDA36DC, (q31_t)0x93A62F56, (q31_t)0xBC04C8BA, (q31_t)0x938B74C0, (q31_t)0xBC2F6513, (q31_t)0x9370CAE4, (q31_t)0xBC5A0BE1, (q31_t)0x935631C5, (q31_t)0xBC84BD1E, (q31_t)0x933BA968, (q31_t)0xBCAF78C3, (q31_t)0x932131D1, (q31_t)0xBCDA3ECA, (q31_t)0x9306CB04, (q31_t)0xBD050F2C, (q31_t)0x92EC7505, (q31_t)0xBD2FE9E1, (q31_t)0x92D22FD8, (q31_t)0xBD5ACEE5, (q31_t)0x92B7FB82, (q31_t)0xBD85BE2F, (q31_t)0x929DD805, (q31_t)0xBDB0B7BA, (q31_t)0x9283C567, (q31_t)0xBDDBBB7F, (q31_t)0x9269C3AC, (q31_t)0xBE06C977, (q31_t)0x924FD2D6, (q31_t)0xBE31E19B, (q31_t)0x9235F2EB, (q31_t)0xBE5D03E5, (q31_t)0x921C23EE, (q31_t)0xBE88304F, (q31_t)0x920265E4, (q31_t)0xBEB366D1, (q31_t)0x91E8B8D0, (q31_t)0xBEDEA765, (q31_t)0x91CF1CB6, (q31_t)0xBF09F204, (q31_t)0x91B5919A, (q31_t)0xBF3546A8, (q31_t)0x919C1780, (q31_t)0xBF60A54A, (q31_t)0x9182AE6C, (q31_t)0xBF8C0DE2, (q31_t)0x91695663, (q31_t)0xBFB7806C, (q31_t)0x91500F67, (q31_t)0xBFE2FCDF, (q31_t)0x9136D97D, (q31_t)0xC00E8335, (q31_t)0x911DB4A8, (q31_t)0xC03A1368, (q31_t)0x9104A0ED, (q31_t)0xC065AD70, (q31_t)0x90EB9E50, (q31_t)0xC0915147, (q31_t)0x90D2ACD3, (q31_t)0xC0BCFEE7, (q31_t)0x90B9CC7C, (q31_t)0xC0E8B648, (q31_t)0x90A0FD4E, (q31_t)0xC1147763, (q31_t)0x90883F4C, (q31_t)0xC1404233, (q31_t)0x906F927B, (q31_t)0xC16C16B0, (q31_t)0x9056F6DF, (q31_t)0xC197F4D3, (q31_t)0x903E6C7A, (q31_t)0xC1C3DC96, (q31_t)0x9025F352, (q31_t)0xC1EFCDF2, (q31_t)0x900D8B69, (q31_t)0xC21BC8E0, (q31_t)0x8FF534C4, (q31_t)0xC247CD5A, (q31_t)0x8FDCEF66, (q31_t)0xC273DB58, (q31_t)0x8FC4BB53, (q31_t)0xC29FF2D4, (q31_t)0x8FAC988E, (q31_t)0xC2CC13C7, (q31_t)0x8F94871D, (q31_t)0xC2F83E2A, (q31_t)0x8F7C8701, (q31_t)0xC32471F6, (q31_t)0x8F64983F, (q31_t)0xC350AF25, (q31_t)0x8F4CBADB, (q31_t)0xC37CF5B0, (q31_t)0x8F34EED8, (q31_t)0xC3A9458F, (q31_t)0x8F1D343A, (q31_t)0xC3D59EBD, (q31_t)0x8F058B04, (q31_t)0xC4020132, (q31_t)0x8EEDF33B, (q31_t)0xC42E6CE8, (q31_t)0x8ED66CE1, (q31_t)0xC45AE1D7, (q31_t)0x8EBEF7FB, (q31_t)0xC4875FF8, (q31_t)0x8EA7948C, (q31_t)0xC4B3E746, (q31_t)0x8E904298, (q31_t)0xC4E077B8, (q31_t)0x8E790222, (q31_t)0xC50D1148, (q31_t)0x8E61D32D, (q31_t)0xC539B3F0, (q31_t)0x8E4AB5BF, (q31_t)0xC5665FA8, (q31_t)0x8E33A9D9, (q31_t)0xC593146A, (q31_t)0x8E1CAF80, (q31_t)0xC5BFD22E, (q31_t)0x8E05C6B7, (q31_t)0xC5EC98ED, (q31_t)0x8DEEEF82, (q31_t)0xC61968A2, (q31_t)0x8DD829E4, (q31_t)0xC6464144, (q31_t)0x8DC175E0, (q31_t)0xC67322CD, (q31_t)0x8DAAD37B, (q31_t)0xC6A00D36, (q31_t)0x8D9442B7, (q31_t)0xC6CD0079, (q31_t)0x8D7DC399, (q31_t)0xC6F9FC8D, (q31_t)0x8D675623, (q31_t)0xC727016C, (q31_t)0x8D50FA59, (q31_t)0xC7540F10, (q31_t)0x8D3AB03F, (q31_t)0xC7812571, (q31_t)0x8D2477D8, (q31_t)0xC7AE4489, (q31_t)0x8D0E5127, (q31_t)0xC7DB6C50, (q31_t)0x8CF83C30, (q31_t)0xC8089CBF, (q31_t)0x8CE238F6, (q31_t)0xC835D5D0, (q31_t)0x8CCC477D, (q31_t)0xC863177B, (q31_t)0x8CB667C7, (q31_t)0xC89061BA, (q31_t)0x8CA099D9, (q31_t)0xC8BDB485, (q31_t)0x8C8ADDB6, (q31_t)0xC8EB0FD6, (q31_t)0x8C753361, (q31_t)0xC91873A5, (q31_t)0x8C5F9ADD, (q31_t)0xC945DFEC, (q31_t)0x8C4A142F, (q31_t)0xC97354A3, (q31_t)0x8C349F58, (q31_t)0xC9A0D1C4, (q31_t)0x8C1F3C5C, (q31_t)0xC9CE5748, (q31_t)0x8C09EB40, (q31_t)0xC9FBE527, (q31_t)0x8BF4AC05, (q31_t)0xCA297B5A, (q31_t)0x8BDF7EAF, (q31_t)0xCA5719DB, (q31_t)0x8BCA6342, (q31_t)0xCA84C0A2, (q31_t)0x8BB559C1, (q31_t)0xCAB26FA9, (q31_t)0x8BA0622F, (q31_t)0xCAE026E8, (q31_t)0x8B8B7C8F, (q31_t)0xCB0DE658, (q31_t)0x8B76A8E4, (q31_t)0xCB3BADF2, (q31_t)0x8B61E732, (q31_t)0xCB697DB0, (q31_t)0x8B4D377C, (q31_t)0xCB975589, (q31_t)0x8B3899C5, (q31_t)0xCBC53578, (q31_t)0x8B240E10, (q31_t)0xCBF31D75, (q31_t)0x8B0F9461, (q31_t)0xCC210D78, (q31_t)0x8AFB2CBA, (q31_t)0xCC4F057B, (q31_t)0x8AE6D71F, (q31_t)0xCC7D0577, (q31_t)0x8AD29393, (q31_t)0xCCAB0D65, (q31_t)0x8ABE6219, (q31_t)0xCCD91D3D, (q31_t)0x8AAA42B4, (q31_t)0xCD0734F8, (q31_t)0x8A963567, (q31_t)0xCD355490, (q31_t)0x8A823A35, (q31_t)0xCD637BFD, (q31_t)0x8A6E5122, (q31_t)0xCD91AB38, (q31_t)0x8A5A7A30, (q31_t)0xCDBFE23A, (q31_t)0x8A46B563, (q31_t)0xCDEE20FC, (q31_t)0x8A3302BD, (q31_t)0xCE1C6776, (q31_t)0x8A1F6242, (q31_t)0xCE4AB5A2, (q31_t)0x8A0BD3F5, (q31_t)0xCE790B78, (q31_t)0x89F857D8, (q31_t)0xCEA768F2, (q31_t)0x89E4EDEE, (q31_t)0xCED5CE08, (q31_t)0x89D1963C, (q31_t)0xCF043AB2, (q31_t)0x89BE50C3, (q31_t)0xCF32AEEB, (q31_t)0x89AB1D86, (q31_t)0xCF612AAA, (q31_t)0x8997FC89, (q31_t)0xCF8FADE8, (q31_t)0x8984EDCF, (q31_t)0xCFBE389F, (q31_t)0x8971F15A, (q31_t)0xCFECCAC7, (q31_t)0x895F072D, (q31_t)0xD01B6459, (q31_t)0x894C2F4C, (q31_t)0xD04A054D, (q31_t)0x893969B9, (q31_t)0xD078AD9D, (q31_t)0x8926B677, (q31_t)0xD0A75D42, (q31_t)0x89141589, (q31_t)0xD0D61433, (q31_t)0x890186F1, (q31_t)0xD104D26B, (q31_t)0x88EF0AB4, (q31_t)0xD13397E1, (q31_t)0x88DCA0D3, (q31_t)0xD162648F, (q31_t)0x88CA4951, (q31_t)0xD191386D, (q31_t)0x88B80431, (q31_t)0xD1C01374, (q31_t)0x88A5D177, (q31_t)0xD1EEF59E, (q31_t)0x8893B124, (q31_t)0xD21DDEE1, (q31_t)0x8881A33C, (q31_t)0xD24CCF38, (q31_t)0x886FA7C2, (q31_t)0xD27BC69C, (q31_t)0x885DBEB7, (q31_t)0xD2AAC504, (q31_t)0x884BE820, (q31_t)0xD2D9CA6A, (q31_t)0x883A23FE, (q31_t)0xD308D6C6, (q31_t)0x88287255, (q31_t)0xD337EA12, (q31_t)0x8816D327, (q31_t)0xD3670445, (q31_t)0x88054677, (q31_t)0xD3962559, (q31_t)0x87F3CC47, (q31_t)0xD3C54D46, (q31_t)0x87E2649B, (q31_t)0xD3F47C06, (q31_t)0x87D10F75, (q31_t)0xD423B190, (q31_t)0x87BFCCD7, (q31_t)0xD452EDDE, (q31_t)0x87AE9CC5, (q31_t)0xD48230E8, (q31_t)0x879D7F40, (q31_t)0xD4B17AA7, (q31_t)0x878C744C, (q31_t)0xD4E0CB14, (q31_t)0x877B7BEC, (q31_t)0xD5102227, (q31_t)0x876A9621, (q31_t)0xD53F7FDA, (q31_t)0x8759C2EF, (q31_t)0xD56EE424, (q31_t)0x87490257, (q31_t)0xD59E4EFE, (q31_t)0x8738545E, (q31_t)0xD5CDC062, (q31_t)0x8727B904, (q31_t)0xD5FD3847, (q31_t)0x8717304E, (q31_t)0xD62CB6A7, (q31_t)0x8706BA3C, (q31_t)0xD65C3B7B, (q31_t)0x86F656D3, (q31_t)0xD68BC6BA, (q31_t)0x86E60614, (q31_t)0xD6BB585D, (q31_t)0x86D5C802, (q31_t)0xD6EAF05E, (q31_t)0x86C59C9F, (q31_t)0xD71A8EB5, (q31_t)0x86B583EE, (q31_t)0xD74A335A, (q31_t)0x86A57DF1, (q31_t)0xD779DE46, (q31_t)0x86958AAB, (q31_t)0xD7A98F73, (q31_t)0x8685AA1F, (q31_t)0xD7D946D7, (q31_t)0x8675DC4E, (q31_t)0xD809046D, (q31_t)0x8666213C, (q31_t)0xD838C82D, (q31_t)0x865678EA, (q31_t)0xD868920F, (q31_t)0x8646E35B, (q31_t)0xD898620C, (q31_t)0x86376092, (q31_t)0xD8C8381C, (q31_t)0x8627F090, (q31_t)0xD8F81439, (q31_t)0x86189359, (q31_t)0xD927F65B, (q31_t)0x860948EE, (q31_t)0xD957DE7A, (q31_t)0x85FA1152, (q31_t)0xD987CC8F, (q31_t)0x85EAEC88, (q31_t)0xD9B7C093, (q31_t)0x85DBDA91, (q31_t)0xD9E7BA7E, (q31_t)0x85CCDB70, (q31_t)0xDA17BA4A, (q31_t)0x85BDEF27, (q31_t)0xDA47BFED, (q31_t)0x85AF15B9, (q31_t)0xDA77CB62, (q31_t)0x85A04F28, (q31_t)0xDAA7DCA1, (q31_t)0x85919B75, (q31_t)0xDAD7F3A2, (q31_t)0x8582FAA4, (q31_t)0xDB08105E, (q31_t)0x85746CB7, (q31_t)0xDB3832CD, (q31_t)0x8565F1B0, (q31_t)0xDB685AE8, (q31_t)0x85578991, (q31_t)0xDB9888A8, (q31_t)0x8549345C, (q31_t)0xDBC8BC05, (q31_t)0x853AF214, (q31_t)0xDBF8F4F8, (q31_t)0x852CC2BA, (q31_t)0xDC293379, (q31_t)0x851EA652, (q31_t)0xDC597781, (q31_t)0x85109CDC, (q31_t)0xDC89C108, (q31_t)0x8502A65C, (q31_t)0xDCBA1008, (q31_t)0x84F4C2D3, (q31_t)0xDCEA6478, (q31_t)0x84E6F244, (q31_t)0xDD1ABE51, (q31_t)0x84D934B0, (q31_t)0xDD4B1D8B, (q31_t)0x84CB8A1B, (q31_t)0xDD7B8220, (q31_t)0x84BDF285, (q31_t)0xDDABEC07, (q31_t)0x84B06DF1, (q31_t)0xDDDC5B3A, (q31_t)0x84A2FC62, (q31_t)0xDE0CCFB1, (q31_t)0x84959DD9, (q31_t)0xDE3D4963, (q31_t)0x84885257, (q31_t)0xDE6DC84B, (q31_t)0x847B19E1, (q31_t)0xDE9E4C60, (q31_t)0x846DF476, (q31_t)0xDECED59B, (q31_t)0x8460E21A, (q31_t)0xDEFF63F4, (q31_t)0x8453E2CE, (q31_t)0xDF2FF764, (q31_t)0x8446F695, (q31_t)0xDF608FE3, (q31_t)0x843A1D70, (q31_t)0xDF912D6A, (q31_t)0x842D5761, (q31_t)0xDFC1CFF2, (q31_t)0x8420A46B, (q31_t)0xDFF27773, (q31_t)0x8414048F, (q31_t)0xE02323E5, (q31_t)0x840777CF, (q31_t)0xE053D541, (q31_t)0x83FAFE2E, (q31_t)0xE0848B7F, (q31_t)0x83EE97AC, (q31_t)0xE0B54698, (q31_t)0x83E2444D, (q31_t)0xE0E60684, (q31_t)0x83D60411, (q31_t)0xE116CB3D, (q31_t)0x83C9D6FB, (q31_t)0xE14794B9, (q31_t)0x83BDBD0D, (q31_t)0xE17862F3, (q31_t)0x83B1B649, (q31_t)0xE1A935E1, (q31_t)0x83A5C2B0, (q31_t)0xE1DA0D7E, (q31_t)0x8399E244, (q31_t)0xE20AE9C1, (q31_t)0x838E1507, (q31_t)0xE23BCAA2, (q31_t)0x83825AFB, (q31_t)0xE26CB01A, (q31_t)0x8376B422, (q31_t)0xE29D9A22, (q31_t)0x836B207D, (q31_t)0xE2CE88B2, (q31_t)0x835FA00E, (q31_t)0xE2FF7BC3, (q31_t)0x835432D8, (q31_t)0xE330734C, (q31_t)0x8348D8DB, (q31_t)0xE3616F47, (q31_t)0x833D921A, (q31_t)0xE3926FAC, (q31_t)0x83325E97, (q31_t)0xE3C37473, (q31_t)0x83273E52, (q31_t)0xE3F47D95, (q31_t)0x831C314E, (q31_t)0xE4258B0A, (q31_t)0x8311378C, (q31_t)0xE4569CCB, (q31_t)0x8306510F, (q31_t)0xE487B2CF, (q31_t)0x82FB7DD8, (q31_t)0xE4B8CD10, (q31_t)0x82F0BDE8, (q31_t)0xE4E9EB86, (q31_t)0x82E61141, (q31_t)0xE51B0E2A, (q31_t)0x82DB77E5, (q31_t)0xE54C34F3, (q31_t)0x82D0F1D5, (q31_t)0xE57D5FDA, (q31_t)0x82C67F13, (q31_t)0xE5AE8ED8, (q31_t)0x82BC1FA1, (q31_t)0xE5DFC1E4, (q31_t)0x82B1D381, (q31_t)0xE610F8F9, (q31_t)0x82A79AB3, (q31_t)0xE642340D, (q31_t)0x829D753A, (q31_t)0xE6737319, (q31_t)0x82936316, (q31_t)0xE6A4B616, (q31_t)0x8289644A, (q31_t)0xE6D5FCFC, (q31_t)0x827F78D8, (q31_t)0xE70747C3, (q31_t)0x8275A0C0, (q31_t)0xE7389664, (q31_t)0x826BDC04, (q31_t)0xE769E8D8, (q31_t)0x82622AA5, (q31_t)0xE79B3F16, (q31_t)0x82588CA6, (q31_t)0xE7CC9917, (q31_t)0x824F0208, (q31_t)0xE7FDF6D3, (q31_t)0x82458ACB, (q31_t)0xE82F5844, (q31_t)0x823C26F2, (q31_t)0xE860BD60, (q31_t)0x8232D67E, (q31_t)0xE8922621, (q31_t)0x82299971, (q31_t)0xE8C3927F, (q31_t)0x82206FCB, (q31_t)0xE8F50273, (q31_t)0x8217598F, (q31_t)0xE92675F4, (q31_t)0x820E56BE, (q31_t)0xE957ECFB, (q31_t)0x82056758, (q31_t)0xE9896780, (q31_t)0x81FC8B60, (q31_t)0xE9BAE57C, (q31_t)0x81F3C2D7, (q31_t)0xE9EC66E8, (q31_t)0x81EB0DBD, (q31_t)0xEA1DEBBB, (q31_t)0x81E26C16, (q31_t)0xEA4F73EE, (q31_t)0x81D9DDE1, (q31_t)0xEA80FF79, (q31_t)0x81D16320, (q31_t)0xEAB28E55, (q31_t)0x81C8FBD5, (q31_t)0xEAE4207A, (q31_t)0x81C0A801, (q31_t)0xEB15B5E0, (q31_t)0x81B867A4, (q31_t)0xEB474E80, (q31_t)0x81B03AC1, (q31_t)0xEB78EA52, (q31_t)0x81A82159, (q31_t)0xEBAA894E, (q31_t)0x81A01B6C, (q31_t)0xEBDC2B6D, (q31_t)0x819828FD, (q31_t)0xEC0DD0A8, (q31_t)0x81904A0C, (q31_t)0xEC3F78F5, (q31_t)0x81887E9A, (q31_t)0xEC71244F, (q31_t)0x8180C6A9, (q31_t)0xECA2D2AC, (q31_t)0x8179223A, (q31_t)0xECD48406, (q31_t)0x8171914E, (q31_t)0xED063855, (q31_t)0x816A13E6, (q31_t)0xED37EF91, (q31_t)0x8162AA03, (q31_t)0xED69A9B2, (q31_t)0x815B53A8, (q31_t)0xED9B66B2, (q31_t)0x815410D3, (q31_t)0xEDCD2687, (q31_t)0x814CE188, (q31_t)0xEDFEE92B, (q31_t)0x8145C5C6, (q31_t)0xEE30AE95, (q31_t)0x813EBD90, (q31_t)0xEE6276BF, (q31_t)0x8137C8E6, (q31_t)0xEE9441A0, (q31_t)0x8130E7C8, (q31_t)0xEEC60F31, (q31_t)0x812A1A39, (q31_t)0xEEF7DF6A, (q31_t)0x81236039, (q31_t)0xEF29B243, (q31_t)0x811CB9CA, (q31_t)0xEF5B87B5, (q31_t)0x811626EC, (q31_t)0xEF8D5FB8, (q31_t)0x810FA7A0, (q31_t)0xEFBF3A44, (q31_t)0x81093BE8, (q31_t)0xEFF11752, (q31_t)0x8102E3C3, (q31_t)0xF022F6DA, (q31_t)0x80FC9F35, (q31_t)0xF054D8D4, (q31_t)0x80F66E3C, (q31_t)0xF086BD39, (q31_t)0x80F050DB, (q31_t)0xF0B8A401, (q31_t)0x80EA4712, (q31_t)0xF0EA8D23, (q31_t)0x80E450E2, (q31_t)0xF11C789A, (q31_t)0x80DE6E4C, (q31_t)0xF14E665C, (q31_t)0x80D89F51, (q31_t)0xF1805662, (q31_t)0x80D2E3F1, (q31_t)0xF1B248A5, (q31_t)0x80CD3C2F, (q31_t)0xF1E43D1C, (q31_t)0x80C7A80A, (q31_t)0xF21633C0, (q31_t)0x80C22783, (q31_t)0xF2482C89, (q31_t)0x80BCBA9C, (q31_t)0xF27A2770, (q31_t)0x80B76155, (q31_t)0xF2AC246D, (q31_t)0x80B21BAF, (q31_t)0xF2DE2378, (q31_t)0x80ACE9AB, (q31_t)0xF310248A, (q31_t)0x80A7CB49, (q31_t)0xF342279A, (q31_t)0x80A2C08B, (q31_t)0xF3742CA1, (q31_t)0x809DC970, (q31_t)0xF3A63398, (q31_t)0x8098E5FB, (q31_t)0xF3D83C76, (q31_t)0x8094162B, (q31_t)0xF40A4734, (q31_t)0x808F5A02, (q31_t)0xF43C53CA, (q31_t)0x808AB180, (q31_t)0xF46E6231, (q31_t)0x80861CA5, (q31_t)0xF4A07260, (q31_t)0x80819B74, (q31_t)0xF4D28451, (q31_t)0x807D2DEB, (q31_t)0xF50497FA, (q31_t)0x8078D40D, (q31_t)0xF536AD55, (q31_t)0x80748DD9, (q31_t)0xF568C45A, (q31_t)0x80705B50, (q31_t)0xF59ADD01, (q31_t)0x806C3C73, (q31_t)0xF5CCF743, (q31_t)0x80683143, (q31_t)0xF5FF1317, (q31_t)0x806439C0, (q31_t)0xF6313076, (q31_t)0x806055EA, (q31_t)0xF6634F58, (q31_t)0x805C85C3, (q31_t)0xF6956FB6, (q31_t)0x8058C94C, (q31_t)0xF6C79188, (q31_t)0x80552083, (q31_t)0xF6F9B4C5, (q31_t)0x80518B6B, (q31_t)0xF72BD967, (q31_t)0x804E0A03, (q31_t)0xF75DFF65, (q31_t)0x804A9C4D, (q31_t)0xF79026B8, (q31_t)0x80474248, (q31_t)0xF7C24F58, (q31_t)0x8043FBF6, (q31_t)0xF7F4793E, (q31_t)0x8040C956, (q31_t)0xF826A461, (q31_t)0x803DAA69, (q31_t)0xF858D0BA, (q31_t)0x803A9F31, (q31_t)0xF88AFE41, (q31_t)0x8037A7AC, (q31_t)0xF8BD2CEF, (q31_t)0x8034C3DC, (q31_t)0xF8EF5CBB, (q31_t)0x8031F3C1, (q31_t)0xF9218D9E, (q31_t)0x802F375C, (q31_t)0xF953BF90, (q31_t)0x802C8EAD, (q31_t)0xF985F28A, (q31_t)0x8029F9B4, (q31_t)0xF9B82683, (q31_t)0x80277872, (q31_t)0xF9EA5B75, (q31_t)0x80250AE7, (q31_t)0xFA1C9156, (q31_t)0x8022B113, (q31_t)0xFA4EC820, (q31_t)0x80206AF8, (q31_t)0xFA80FFCB, (q31_t)0x801E3894, (q31_t)0xFAB3384F, (q31_t)0x801C19E9, (q31_t)0xFAE571A4, (q31_t)0x801A0EF7, (q31_t)0xFB17ABC2, (q31_t)0x801817BF, (q31_t)0xFB49E6A2, (q31_t)0x80163440, (q31_t)0xFB7C223C, (q31_t)0x8014647A, (q31_t)0xFBAE5E89, (q31_t)0x8012A86F, (q31_t)0xFBE09B80, (q31_t)0x8011001E, (q31_t)0xFC12D919, (q31_t)0x800F6B88, (q31_t)0xFC45174E, (q31_t)0x800DEAAC, (q31_t)0xFC775616, (q31_t)0x800C7D8C, (q31_t)0xFCA99569, (q31_t)0x800B2427, (q31_t)0xFCDBD541, (q31_t)0x8009DE7D, (q31_t)0xFD0E1594, (q31_t)0x8008AC90, (q31_t)0xFD40565B, (q31_t)0x80078E5E, (q31_t)0xFD72978F, (q31_t)0x800683E8, (q31_t)0xFDA4D928, (q31_t)0x80058D2E, (q31_t)0xFDD71B1E, (q31_t)0x8004AA31, (q31_t)0xFE095D69, (q31_t)0x8003DAF0, (q31_t)0xFE3BA001, (q31_t)0x80031F6C, (q31_t)0xFE6DE2E0, (q31_t)0x800277A5, (q31_t)0xFEA025FC, (q31_t)0x8001E39B, (q31_t)0xFED2694F, (q31_t)0x8001634D, (q31_t)0xFF04ACD0, (q31_t)0x8000F6BD, (q31_t)0xFF36F078, (q31_t)0x80009DE9, (q31_t)0xFF69343E, (q31_t)0x800058D3, (q31_t)0xFF9B781D, (q31_t)0x8000277A, (q31_t)0xFFCDBC0A, (q31_t)0x800009DE }; /** @brief q15 Twiddle factors Table */ /** @par Example code for q15 Twiddle factors Generation:: @par
fori = 0; i< 3N/4; i++)
  {
     twiddleCoefq15[2*i]   = cos(i * 2*PI/(float)N);
     twiddleCoefq15[2*i+1] = sin(i * 2*PI/(float)N);
  } 
@par where N = 16, PI = 3.14159265358979 @par Cos and Sin values are interleaved fashion @par Convert Floating point to q15(Fixed point 1.15): round(twiddleCoefq15(i) * pow(2, 15)) */ const q15_t twiddleCoef_16_q15[24] ARM_DSP_TABLE_ATTRIBUTE = { (q15_t)0x7FFF, (q15_t)0x0000, (q15_t)0x7641, (q15_t)0x30FB, (q15_t)0x5A82, (q15_t)0x5A82, (q15_t)0x30FB, (q15_t)0x7641, (q15_t)0x0000, (q15_t)0x7FFF, (q15_t)0xCF04, (q15_t)0x7641, (q15_t)0xA57D, (q15_t)0x5A82, (q15_t)0x89BE, (q15_t)0x30FB, (q15_t)0x8000, (q15_t)0x0000, (q15_t)0x89BE, (q15_t)0xCF04, (q15_t)0xA57D, (q15_t)0xA57D, (q15_t)0xCF04, (q15_t)0x89BE }; /** @par Example code for q15 Twiddle factors Generation:: @par
for (i = 0; i< 3N/4; i++)
  {
     twiddleCoefq15[2*i]   = cos(i * 2*PI/(float)N);
     twiddleCoefq15[2*i+1] = sin(i * 2*PI/(float)N);
  } 
@par where N = 32, PI = 3.14159265358979 @par Cos and Sin values are interleaved fashion @par Convert Floating point to q15(Fixed point 1.15): round(twiddleCoefq15(i) * pow(2, 15)) */ const q15_t twiddleCoef_32_q15[48] ARM_DSP_TABLE_ATTRIBUTE = { (q15_t)0x7FFF, (q15_t)0x0000, (q15_t)0x7D8A, (q15_t)0x18F8, (q15_t)0x7641, (q15_t)0x30FB, (q15_t)0x6A6D, (q15_t)0x471C, (q15_t)0x5A82, (q15_t)0x5A82, (q15_t)0x471C, (q15_t)0x6A6D, (q15_t)0x30FB, (q15_t)0x7641, (q15_t)0x18F8, (q15_t)0x7D8A, (q15_t)0x0000, (q15_t)0x7FFF, (q15_t)0xE707, (q15_t)0x7D8A, (q15_t)0xCF04, (q15_t)0x7641, (q15_t)0xB8E3, (q15_t)0x6A6D, (q15_t)0xA57D, (q15_t)0x5A82, (q15_t)0x9592, (q15_t)0x471C, (q15_t)0x89BE, (q15_t)0x30FB, (q15_t)0x8275, (q15_t)0x18F8, (q15_t)0x8000, (q15_t)0x0000, (q15_t)0x8275, (q15_t)0xE707, (q15_t)0x89BE, (q15_t)0xCF04, (q15_t)0x9592, (q15_t)0xB8E3, (q15_t)0xA57D, (q15_t)0xA57D, (q15_t)0xB8E3, (q15_t)0x9592, (q15_t)0xCF04, (q15_t)0x89BE, (q15_t)0xE707, (q15_t)0x8275 }; /** @par Example code for q15 Twiddle factors Generation:: @par
for (i = 0; i< 3N/4; i++)
  {
     twiddleCoefq15[2*i]   = cos(i * 2*PI/(float)N);
     twiddleCoefq15[2*i+1] = sin(i * 2*PI/(float)N);
  } 
@par where N = 64, PI = 3.14159265358979 @par Cos and Sin values are interleaved fashion @par Convert Floating point to q15(Fixed point 1.15): round(twiddleCoefq15(i) * pow(2, 15)) */ const q15_t twiddleCoef_64_q15[96] ARM_DSP_TABLE_ATTRIBUTE = { (q15_t)0x7FFF, (q15_t)0x0000, (q15_t)0x7F62, (q15_t)0x0C8B, (q15_t)0x7D8A, (q15_t)0x18F8, (q15_t)0x7A7D, (q15_t)0x2528, (q15_t)0x7641, (q15_t)0x30FB, (q15_t)0x70E2, (q15_t)0x3C56, (q15_t)0x6A6D, (q15_t)0x471C, (q15_t)0x62F2, (q15_t)0x5133, (q15_t)0x5A82, (q15_t)0x5A82, (q15_t)0x5133, (q15_t)0x62F2, (q15_t)0x471C, (q15_t)0x6A6D, (q15_t)0x3C56, (q15_t)0x70E2, (q15_t)0x30FB, (q15_t)0x7641, (q15_t)0x2528, (q15_t)0x7A7D, (q15_t)0x18F8, (q15_t)0x7D8A, (q15_t)0x0C8B, (q15_t)0x7F62, (q15_t)0x0000, (q15_t)0x7FFF, (q15_t)0xF374, (q15_t)0x7F62, (q15_t)0xE707, (q15_t)0x7D8A, (q15_t)0xDAD7, (q15_t)0x7A7D, (q15_t)0xCF04, (q15_t)0x7641, (q15_t)0xC3A9, (q15_t)0x70E2, (q15_t)0xB8E3, (q15_t)0x6A6D, (q15_t)0xAECC, (q15_t)0x62F2, (q15_t)0xA57D, (q15_t)0x5A82, (q15_t)0x9D0D, (q15_t)0x5133, (q15_t)0x9592, (q15_t)0x471C, (q15_t)0x8F1D, (q15_t)0x3C56, (q15_t)0x89BE, (q15_t)0x30FB, (q15_t)0x8582, (q15_t)0x2528, (q15_t)0x8275, (q15_t)0x18F8, (q15_t)0x809D, (q15_t)0x0C8B, (q15_t)0x8000, (q15_t)0x0000, (q15_t)0x809D, (q15_t)0xF374, (q15_t)0x8275, (q15_t)0xE707, (q15_t)0x8582, (q15_t)0xDAD7, (q15_t)0x89BE, (q15_t)0xCF04, (q15_t)0x8F1D, (q15_t)0xC3A9, (q15_t)0x9592, (q15_t)0xB8E3, (q15_t)0x9D0D, (q15_t)0xAECC, (q15_t)0xA57D, (q15_t)0xA57D, (q15_t)0xAECC, (q15_t)0x9D0D, (q15_t)0xB8E3, (q15_t)0x9592, (q15_t)0xC3A9, (q15_t)0x8F1D, (q15_t)0xCF04, (q15_t)0x89BE, (q15_t)0xDAD7, (q15_t)0x8582, (q15_t)0xE707, (q15_t)0x8275, (q15_t)0xF374, (q15_t)0x809D }; /** @par Example code for q15 Twiddle factors Generation:: @par
for (i = 0; i< 3N/4; i++)
  {
     twiddleCoefq15[2*i]   = cos(i * 2*PI/(float)N);
     twiddleCoefq15[2*i+1] = sin(i * 2*PI/(float)N);
  } 
@par where N = 128, PI = 3.14159265358979 @par Cos and Sin values are interleaved fashion @par Convert Floating point to q15(Fixed point 1.15): round(twiddleCoefq15(i) * pow(2, 15)) */ const q15_t twiddleCoef_128_q15[192] ARM_DSP_TABLE_ATTRIBUTE = { (q15_t)0x7FFF, (q15_t)0x0000, (q15_t)0x7FD8, (q15_t)0x0647, (q15_t)0x7F62, (q15_t)0x0C8B, (q15_t)0x7E9D, (q15_t)0x12C8, (q15_t)0x7D8A, (q15_t)0x18F8, (q15_t)0x7C29, (q15_t)0x1F19, (q15_t)0x7A7D, (q15_t)0x2528, (q15_t)0x7884, (q15_t)0x2B1F, (q15_t)0x7641, (q15_t)0x30FB, (q15_t)0x73B5, (q15_t)0x36BA, (q15_t)0x70E2, (q15_t)0x3C56, (q15_t)0x6DCA, (q15_t)0x41CE, (q15_t)0x6A6D, (q15_t)0x471C, (q15_t)0x66CF, (q15_t)0x4C3F, (q15_t)0x62F2, (q15_t)0x5133, (q15_t)0x5ED7, (q15_t)0x55F5, (q15_t)0x5A82, (q15_t)0x5A82, (q15_t)0x55F5, (q15_t)0x5ED7, (q15_t)0x5133, (q15_t)0x62F2, (q15_t)0x4C3F, (q15_t)0x66CF, (q15_t)0x471C, (q15_t)0x6A6D, (q15_t)0x41CE, (q15_t)0x6DCA, (q15_t)0x3C56, (q15_t)0x70E2, (q15_t)0x36BA, (q15_t)0x73B5, (q15_t)0x30FB, (q15_t)0x7641, (q15_t)0x2B1F, (q15_t)0x7884, (q15_t)0x2528, (q15_t)0x7A7D, (q15_t)0x1F19, (q15_t)0x7C29, (q15_t)0x18F8, (q15_t)0x7D8A, (q15_t)0x12C8, (q15_t)0x7E9D, (q15_t)0x0C8B, (q15_t)0x7F62, (q15_t)0x0647, (q15_t)0x7FD8, (q15_t)0x0000, (q15_t)0x7FFF, (q15_t)0xF9B8, (q15_t)0x7FD8, (q15_t)0xF374, (q15_t)0x7F62, (q15_t)0xED37, (q15_t)0x7E9D, (q15_t)0xE707, (q15_t)0x7D8A, (q15_t)0xE0E6, (q15_t)0x7C29, (q15_t)0xDAD7, (q15_t)0x7A7D, (q15_t)0xD4E0, (q15_t)0x7884, (q15_t)0xCF04, (q15_t)0x7641, (q15_t)0xC945, (q15_t)0x73B5, (q15_t)0xC3A9, (q15_t)0x70E2, (q15_t)0xBE31, (q15_t)0x6DCA, (q15_t)0xB8E3, (q15_t)0x6A6D, (q15_t)0xB3C0, (q15_t)0x66CF, (q15_t)0xAECC, (q15_t)0x62F2, (q15_t)0xAA0A, (q15_t)0x5ED7, (q15_t)0xA57D, (q15_t)0x5A82, (q15_t)0xA128, (q15_t)0x55F5, (q15_t)0x9D0D, (q15_t)0x5133, (q15_t)0x9930, (q15_t)0x4C3F, (q15_t)0x9592, (q15_t)0x471C, (q15_t)0x9235, (q15_t)0x41CE, (q15_t)0x8F1D, (q15_t)0x3C56, (q15_t)0x8C4A, (q15_t)0x36BA, (q15_t)0x89BE, (q15_t)0x30FB, (q15_t)0x877B, (q15_t)0x2B1F, (q15_t)0x8582, (q15_t)0x2528, (q15_t)0x83D6, (q15_t)0x1F19, (q15_t)0x8275, (q15_t)0x18F8, (q15_t)0x8162, (q15_t)0x12C8, (q15_t)0x809D, (q15_t)0x0C8B, (q15_t)0x8027, (q15_t)0x0647, (q15_t)0x8000, (q15_t)0x0000, (q15_t)0x8027, (q15_t)0xF9B8, (q15_t)0x809D, (q15_t)0xF374, (q15_t)0x8162, (q15_t)0xED37, (q15_t)0x8275, (q15_t)0xE707, (q15_t)0x83D6, (q15_t)0xE0E6, (q15_t)0x8582, (q15_t)0xDAD7, (q15_t)0x877B, (q15_t)0xD4E0, (q15_t)0x89BE, (q15_t)0xCF04, (q15_t)0x8C4A, (q15_t)0xC945, (q15_t)0x8F1D, (q15_t)0xC3A9, (q15_t)0x9235, (q15_t)0xBE31, (q15_t)0x9592, (q15_t)0xB8E3, (q15_t)0x9930, (q15_t)0xB3C0, (q15_t)0x9D0D, (q15_t)0xAECC, (q15_t)0xA128, (q15_t)0xAA0A, (q15_t)0xA57D, (q15_t)0xA57D, (q15_t)0xAA0A, (q15_t)0xA128, (q15_t)0xAECC, (q15_t)0x9D0D, (q15_t)0xB3C0, (q15_t)0x9930, (q15_t)0xB8E3, (q15_t)0x9592, (q15_t)0xBE31, (q15_t)0x9235, (q15_t)0xC3A9, (q15_t)0x8F1D, (q15_t)0xC945, (q15_t)0x8C4A, (q15_t)0xCF04, (q15_t)0x89BE, (q15_t)0xD4E0, (q15_t)0x877B, (q15_t)0xDAD7, (q15_t)0x8582, (q15_t)0xE0E6, (q15_t)0x83D6, (q15_t)0xE707, (q15_t)0x8275, (q15_t)0xED37, (q15_t)0x8162, (q15_t)0xF374, (q15_t)0x809D, (q15_t)0xF9B8, (q15_t)0x8027 }; /** @par Example code for q15 Twiddle factors Generation:: @par
for (i = 0; i< 3N/4; i++)
  {
     twiddleCoefq15[2*i]   = cos(i * 2*PI/(float)N);
     twiddleCoefq15[2*i+1] = sin(i * 2*PI/(float)N);
  } 
@par where N = 256, PI = 3.14159265358979 @par Cos and Sin values are interleaved fashion @par Convert Floating point to q15(Fixed point 1.15): round(twiddleCoefq15(i) * pow(2, 15)) */ const q15_t twiddleCoef_256_q15[384] ARM_DSP_TABLE_ATTRIBUTE = { (q15_t)0x7FFF, (q15_t)0x0000, (q15_t)0x7FF6, (q15_t)0x0324, (q15_t)0x7FD8, (q15_t)0x0647, (q15_t)0x7FA7, (q15_t)0x096A, (q15_t)0x7F62, (q15_t)0x0C8B, (q15_t)0x7F09, (q15_t)0x0FAB, (q15_t)0x7E9D, (q15_t)0x12C8, (q15_t)0x7E1D, (q15_t)0x15E2, (q15_t)0x7D8A, (q15_t)0x18F8, (q15_t)0x7CE3, (q15_t)0x1C0B, (q15_t)0x7C29, (q15_t)0x1F19, (q15_t)0x7B5D, (q15_t)0x2223, (q15_t)0x7A7D, (q15_t)0x2528, (q15_t)0x798A, (q15_t)0x2826, (q15_t)0x7884, (q15_t)0x2B1F, (q15_t)0x776C, (q15_t)0x2E11, (q15_t)0x7641, (q15_t)0x30FB, (q15_t)0x7504, (q15_t)0x33DE, (q15_t)0x73B5, (q15_t)0x36BA, (q15_t)0x7255, (q15_t)0x398C, (q15_t)0x70E2, (q15_t)0x3C56, (q15_t)0x6F5F, (q15_t)0x3F17, (q15_t)0x6DCA, (q15_t)0x41CE, (q15_t)0x6C24, (q15_t)0x447A, (q15_t)0x6A6D, (q15_t)0x471C, (q15_t)0x68A6, (q15_t)0x49B4, (q15_t)0x66CF, (q15_t)0x4C3F, (q15_t)0x64E8, (q15_t)0x4EBF, (q15_t)0x62F2, (q15_t)0x5133, (q15_t)0x60EC, (q15_t)0x539B, (q15_t)0x5ED7, (q15_t)0x55F5, (q15_t)0x5CB4, (q15_t)0x5842, (q15_t)0x5A82, (q15_t)0x5A82, (q15_t)0x5842, (q15_t)0x5CB4, (q15_t)0x55F5, (q15_t)0x5ED7, (q15_t)0x539B, (q15_t)0x60EC, (q15_t)0x5133, (q15_t)0x62F2, (q15_t)0x4EBF, (q15_t)0x64E8, (q15_t)0x4C3F, (q15_t)0x66CF, (q15_t)0x49B4, (q15_t)0x68A6, (q15_t)0x471C, (q15_t)0x6A6D, (q15_t)0x447A, (q15_t)0x6C24, (q15_t)0x41CE, (q15_t)0x6DCA, (q15_t)0x3F17, (q15_t)0x6F5F, (q15_t)0x3C56, (q15_t)0x70E2, (q15_t)0x398C, (q15_t)0x7255, (q15_t)0x36BA, (q15_t)0x73B5, (q15_t)0x33DE, (q15_t)0x7504, (q15_t)0x30FB, (q15_t)0x7641, (q15_t)0x2E11, (q15_t)0x776C, (q15_t)0x2B1F, (q15_t)0x7884, (q15_t)0x2826, (q15_t)0x798A, (q15_t)0x2528, (q15_t)0x7A7D, (q15_t)0x2223, (q15_t)0x7B5D, (q15_t)0x1F19, (q15_t)0x7C29, (q15_t)0x1C0B, (q15_t)0x7CE3, (q15_t)0x18F8, (q15_t)0x7D8A, (q15_t)0x15E2, (q15_t)0x7E1D, (q15_t)0x12C8, (q15_t)0x7E9D, (q15_t)0x0FAB, (q15_t)0x7F09, (q15_t)0x0C8B, (q15_t)0x7F62, (q15_t)0x096A, (q15_t)0x7FA7, (q15_t)0x0647, (q15_t)0x7FD8, (q15_t)0x0324, (q15_t)0x7FF6, (q15_t)0x0000, (q15_t)0x7FFF, (q15_t)0xFCDB, (q15_t)0x7FF6, (q15_t)0xF9B8, (q15_t)0x7FD8, (q15_t)0xF695, (q15_t)0x7FA7, (q15_t)0xF374, (q15_t)0x7F62, (q15_t)0xF054, (q15_t)0x7F09, (q15_t)0xED37, (q15_t)0x7E9D, (q15_t)0xEA1D, (q15_t)0x7E1D, (q15_t)0xE707, (q15_t)0x7D8A, (q15_t)0xE3F4, (q15_t)0x7CE3, (q15_t)0xE0E6, (q15_t)0x7C29, (q15_t)0xDDDC, (q15_t)0x7B5D, (q15_t)0xDAD7, (q15_t)0x7A7D, (q15_t)0xD7D9, (q15_t)0x798A, (q15_t)0xD4E0, (q15_t)0x7884, (q15_t)0xD1EE, (q15_t)0x776C, (q15_t)0xCF04, (q15_t)0x7641, (q15_t)0xCC21, (q15_t)0x7504, (q15_t)0xC945, (q15_t)0x73B5, (q15_t)0xC673, (q15_t)0x7255, (q15_t)0xC3A9, (q15_t)0x70E2, (q15_t)0xC0E8, (q15_t)0x6F5F, (q15_t)0xBE31, (q15_t)0x6DCA, (q15_t)0xBB85, (q15_t)0x6C24, (q15_t)0xB8E3, (q15_t)0x6A6D, (q15_t)0xB64B, (q15_t)0x68A6, (q15_t)0xB3C0, (q15_t)0x66CF, (q15_t)0xB140, (q15_t)0x64E8, (q15_t)0xAECC, (q15_t)0x62F2, (q15_t)0xAC64, (q15_t)0x60EC, (q15_t)0xAA0A, (q15_t)0x5ED7, (q15_t)0xA7BD, (q15_t)0x5CB4, (q15_t)0xA57D, (q15_t)0x5A82, (q15_t)0xA34B, (q15_t)0x5842, (q15_t)0xA128, (q15_t)0x55F5, (q15_t)0x9F13, (q15_t)0x539B, (q15_t)0x9D0D, (q15_t)0x5133, (q15_t)0x9B17, (q15_t)0x4EBF, (q15_t)0x9930, (q15_t)0x4C3F, (q15_t)0x9759, (q15_t)0x49B4, (q15_t)0x9592, (q15_t)0x471C, (q15_t)0x93DB, (q15_t)0x447A, (q15_t)0x9235, (q15_t)0x41CE, (q15_t)0x90A0, (q15_t)0x3F17, (q15_t)0x8F1D, (q15_t)0x3C56, (q15_t)0x8DAA, (q15_t)0x398C, (q15_t)0x8C4A, (q15_t)0x36BA, (q15_t)0x8AFB, (q15_t)0x33DE, (q15_t)0x89BE, (q15_t)0x30FB, (q15_t)0x8893, (q15_t)0x2E11, (q15_t)0x877B, (q15_t)0x2B1F, (q15_t)0x8675, (q15_t)0x2826, (q15_t)0x8582, (q15_t)0x2528, (q15_t)0x84A2, (q15_t)0x2223, (q15_t)0x83D6, (q15_t)0x1F19, (q15_t)0x831C, (q15_t)0x1C0B, (q15_t)0x8275, (q15_t)0x18F8, (q15_t)0x81E2, (q15_t)0x15E2, (q15_t)0x8162, (q15_t)0x12C8, (q15_t)0x80F6, (q15_t)0x0FAB, (q15_t)0x809D, (q15_t)0x0C8B, (q15_t)0x8058, (q15_t)0x096A, (q15_t)0x8027, (q15_t)0x0647, (q15_t)0x8009, (q15_t)0x0324, (q15_t)0x8000, (q15_t)0x0000, (q15_t)0x8009, (q15_t)0xFCDB, (q15_t)0x8027, (q15_t)0xF9B8, (q15_t)0x8058, (q15_t)0xF695, (q15_t)0x809D, (q15_t)0xF374, (q15_t)0x80F6, (q15_t)0xF054, (q15_t)0x8162, (q15_t)0xED37, (q15_t)0x81E2, (q15_t)0xEA1D, (q15_t)0x8275, (q15_t)0xE707, (q15_t)0x831C, (q15_t)0xE3F4, (q15_t)0x83D6, (q15_t)0xE0E6, (q15_t)0x84A2, (q15_t)0xDDDC, (q15_t)0x8582, (q15_t)0xDAD7, (q15_t)0x8675, (q15_t)0xD7D9, (q15_t)0x877B, (q15_t)0xD4E0, (q15_t)0x8893, (q15_t)0xD1EE, (q15_t)0x89BE, (q15_t)0xCF04, (q15_t)0x8AFB, (q15_t)0xCC21, (q15_t)0x8C4A, (q15_t)0xC945, (q15_t)0x8DAA, (q15_t)0xC673, (q15_t)0x8F1D, (q15_t)0xC3A9, (q15_t)0x90A0, (q15_t)0xC0E8, (q15_t)0x9235, (q15_t)0xBE31, (q15_t)0x93DB, (q15_t)0xBB85, (q15_t)0x9592, (q15_t)0xB8E3, (q15_t)0x9759, (q15_t)0xB64B, (q15_t)0x9930, (q15_t)0xB3C0, (q15_t)0x9B17, (q15_t)0xB140, (q15_t)0x9D0D, (q15_t)0xAECC, (q15_t)0x9F13, (q15_t)0xAC64, (q15_t)0xA128, (q15_t)0xAA0A, (q15_t)0xA34B, (q15_t)0xA7BD, (q15_t)0xA57D, (q15_t)0xA57D, (q15_t)0xA7BD, (q15_t)0xA34B, (q15_t)0xAA0A, (q15_t)0xA128, (q15_t)0xAC64, (q15_t)0x9F13, (q15_t)0xAECC, (q15_t)0x9D0D, (q15_t)0xB140, (q15_t)0x9B17, (q15_t)0xB3C0, (q15_t)0x9930, (q15_t)0xB64B, (q15_t)0x9759, (q15_t)0xB8E3, (q15_t)0x9592, (q15_t)0xBB85, (q15_t)0x93DB, (q15_t)0xBE31, (q15_t)0x9235, (q15_t)0xC0E8, (q15_t)0x90A0, (q15_t)0xC3A9, (q15_t)0x8F1D, (q15_t)0xC673, (q15_t)0x8DAA, (q15_t)0xC945, (q15_t)0x8C4A, (q15_t)0xCC21, (q15_t)0x8AFB, (q15_t)0xCF04, (q15_t)0x89BE, (q15_t)0xD1EE, (q15_t)0x8893, (q15_t)0xD4E0, (q15_t)0x877B, (q15_t)0xD7D9, (q15_t)0x8675, (q15_t)0xDAD7, (q15_t)0x8582, (q15_t)0xDDDC, (q15_t)0x84A2, (q15_t)0xE0E6, (q15_t)0x83D6, (q15_t)0xE3F4, (q15_t)0x831C, (q15_t)0xE707, (q15_t)0x8275, (q15_t)0xEA1D, (q15_t)0x81E2, (q15_t)0xED37, (q15_t)0x8162, (q15_t)0xF054, (q15_t)0x80F6, (q15_t)0xF374, (q15_t)0x809D, (q15_t)0xF695, (q15_t)0x8058, (q15_t)0xF9B8, (q15_t)0x8027, (q15_t)0xFCDB, (q15_t)0x8009 }; /** @par Example code for q15 Twiddle factors Generation:: @par
for (i = 0; i< 3N/4; i++)
  {
     twiddleCoefq15[2*i]   = cos(i * 2*PI/(float)N);
     twiddleCoefq15[2*i+1] = sin(i * 2*PI/(float)N);
  } 
@par where N = 512, PI = 3.14159265358979 @par Cos and Sin values are interleaved fashion @par Convert Floating point to q15(Fixed point 1.15): round(twiddleCoefq15(i) * pow(2, 15)) */ const q15_t twiddleCoef_512_q15[768] ARM_DSP_TABLE_ATTRIBUTE = { (q15_t)0x7FFF, (q15_t)0x0000, (q15_t)0x7FFD, (q15_t)0x0192, (q15_t)0x7FF6, (q15_t)0x0324, (q15_t)0x7FE9, (q15_t)0x04B6, (q15_t)0x7FD8, (q15_t)0x0647, (q15_t)0x7FC2, (q15_t)0x07D9, (q15_t)0x7FA7, (q15_t)0x096A, (q15_t)0x7F87, (q15_t)0x0AFB, (q15_t)0x7F62, (q15_t)0x0C8B, (q15_t)0x7F38, (q15_t)0x0E1B, (q15_t)0x7F09, (q15_t)0x0FAB, (q15_t)0x7ED5, (q15_t)0x1139, (q15_t)0x7E9D, (q15_t)0x12C8, (q15_t)0x7E5F, (q15_t)0x1455, (q15_t)0x7E1D, (q15_t)0x15E2, (q15_t)0x7DD6, (q15_t)0x176D, (q15_t)0x7D8A, (q15_t)0x18F8, (q15_t)0x7D39, (q15_t)0x1A82, (q15_t)0x7CE3, (q15_t)0x1C0B, (q15_t)0x7C89, (q15_t)0x1D93, (q15_t)0x7C29, (q15_t)0x1F19, (q15_t)0x7BC5, (q15_t)0x209F, (q15_t)0x7B5D, (q15_t)0x2223, (q15_t)0x7AEF, (q15_t)0x23A6, (q15_t)0x7A7D, (q15_t)0x2528, (q15_t)0x7A05, (q15_t)0x26A8, (q15_t)0x798A, (q15_t)0x2826, (q15_t)0x7909, (q15_t)0x29A3, (q15_t)0x7884, (q15_t)0x2B1F, (q15_t)0x77FA, (q15_t)0x2C98, (q15_t)0x776C, (q15_t)0x2E11, (q15_t)0x76D9, (q15_t)0x2F87, (q15_t)0x7641, (q15_t)0x30FB, (q15_t)0x75A5, (q15_t)0x326E, (q15_t)0x7504, (q15_t)0x33DE, (q15_t)0x745F, (q15_t)0x354D, (q15_t)0x73B5, (q15_t)0x36BA, (q15_t)0x7307, (q15_t)0x3824, (q15_t)0x7255, (q15_t)0x398C, (q15_t)0x719E, (q15_t)0x3AF2, (q15_t)0x70E2, (q15_t)0x3C56, (q15_t)0x7023, (q15_t)0x3DB8, (q15_t)0x6F5F, (q15_t)0x3F17, (q15_t)0x6E96, (q15_t)0x4073, (q15_t)0x6DCA, (q15_t)0x41CE, (q15_t)0x6CF9, (q15_t)0x4325, (q15_t)0x6C24, (q15_t)0x447A, (q15_t)0x6B4A, (q15_t)0x45CD, (q15_t)0x6A6D, (q15_t)0x471C, (q15_t)0x698C, (q15_t)0x4869, (q15_t)0x68A6, (q15_t)0x49B4, (q15_t)0x67BD, (q15_t)0x4AFB, (q15_t)0x66CF, (q15_t)0x4C3F, (q15_t)0x65DD, (q15_t)0x4D81, (q15_t)0x64E8, (q15_t)0x4EBF, (q15_t)0x63EF, (q15_t)0x4FFB, (q15_t)0x62F2, (q15_t)0x5133, (q15_t)0x61F1, (q15_t)0x5269, (q15_t)0x60EC, (q15_t)0x539B, (q15_t)0x5FE3, (q15_t)0x54CA, (q15_t)0x5ED7, (q15_t)0x55F5, (q15_t)0x5DC7, (q15_t)0x571D, (q15_t)0x5CB4, (q15_t)0x5842, (q15_t)0x5B9D, (q15_t)0x5964, (q15_t)0x5A82, (q15_t)0x5A82, (q15_t)0x5964, (q15_t)0x5B9D, (q15_t)0x5842, (q15_t)0x5CB4, (q15_t)0x571D, (q15_t)0x5DC7, (q15_t)0x55F5, (q15_t)0x5ED7, (q15_t)0x54CA, (q15_t)0x5FE3, (q15_t)0x539B, (q15_t)0x60EC, (q15_t)0x5269, (q15_t)0x61F1, (q15_t)0x5133, (q15_t)0x62F2, (q15_t)0x4FFB, (q15_t)0x63EF, (q15_t)0x4EBF, (q15_t)0x64E8, (q15_t)0x4D81, (q15_t)0x65DD, (q15_t)0x4C3F, (q15_t)0x66CF, (q15_t)0x4AFB, (q15_t)0x67BD, (q15_t)0x49B4, (q15_t)0x68A6, (q15_t)0x4869, (q15_t)0x698C, (q15_t)0x471C, (q15_t)0x6A6D, (q15_t)0x45CD, (q15_t)0x6B4A, (q15_t)0x447A, (q15_t)0x6C24, (q15_t)0x4325, (q15_t)0x6CF9, (q15_t)0x41CE, (q15_t)0x6DCA, (q15_t)0x4073, (q15_t)0x6E96, (q15_t)0x3F17, (q15_t)0x6F5F, (q15_t)0x3DB8, (q15_t)0x7023, (q15_t)0x3C56, (q15_t)0x70E2, (q15_t)0x3AF2, (q15_t)0x719E, (q15_t)0x398C, (q15_t)0x7255, (q15_t)0x3824, (q15_t)0x7307, (q15_t)0x36BA, (q15_t)0x73B5, (q15_t)0x354D, (q15_t)0x745F, (q15_t)0x33DE, (q15_t)0x7504, (q15_t)0x326E, (q15_t)0x75A5, (q15_t)0x30FB, (q15_t)0x7641, (q15_t)0x2F87, (q15_t)0x76D9, (q15_t)0x2E11, (q15_t)0x776C, (q15_t)0x2C98, (q15_t)0x77FA, (q15_t)0x2B1F, (q15_t)0x7884, (q15_t)0x29A3, (q15_t)0x7909, (q15_t)0x2826, (q15_t)0x798A, (q15_t)0x26A8, (q15_t)0x7A05, (q15_t)0x2528, (q15_t)0x7A7D, (q15_t)0x23A6, (q15_t)0x7AEF, (q15_t)0x2223, (q15_t)0x7B5D, (q15_t)0x209F, (q15_t)0x7BC5, (q15_t)0x1F19, (q15_t)0x7C29, (q15_t)0x1D93, (q15_t)0x7C89, (q15_t)0x1C0B, (q15_t)0x7CE3, (q15_t)0x1A82, (q15_t)0x7D39, (q15_t)0x18F8, (q15_t)0x7D8A, (q15_t)0x176D, (q15_t)0x7DD6, (q15_t)0x15E2, (q15_t)0x7E1D, (q15_t)0x1455, (q15_t)0x7E5F, (q15_t)0x12C8, (q15_t)0x7E9D, (q15_t)0x1139, (q15_t)0x7ED5, (q15_t)0x0FAB, (q15_t)0x7F09, (q15_t)0x0E1B, (q15_t)0x7F38, (q15_t)0x0C8B, (q15_t)0x7F62, (q15_t)0x0AFB, (q15_t)0x7F87, (q15_t)0x096A, (q15_t)0x7FA7, (q15_t)0x07D9, (q15_t)0x7FC2, (q15_t)0x0647, (q15_t)0x7FD8, (q15_t)0x04B6, (q15_t)0x7FE9, (q15_t)0x0324, (q15_t)0x7FF6, (q15_t)0x0192, (q15_t)0x7FFD, (q15_t)0x0000, (q15_t)0x7FFF, (q15_t)0xFE6D, (q15_t)0x7FFD, (q15_t)0xFCDB, (q15_t)0x7FF6, (q15_t)0xFB49, (q15_t)0x7FE9, (q15_t)0xF9B8, (q15_t)0x7FD8, (q15_t)0xF826, (q15_t)0x7FC2, (q15_t)0xF695, (q15_t)0x7FA7, (q15_t)0xF504, (q15_t)0x7F87, (q15_t)0xF374, (q15_t)0x7F62, (q15_t)0xF1E4, (q15_t)0x7F38, (q15_t)0xF054, (q15_t)0x7F09, (q15_t)0xEEC6, (q15_t)0x7ED5, (q15_t)0xED37, (q15_t)0x7E9D, (q15_t)0xEBAA, (q15_t)0x7E5F, (q15_t)0xEA1D, (q15_t)0x7E1D, (q15_t)0xE892, (q15_t)0x7DD6, (q15_t)0xE707, (q15_t)0x7D8A, (q15_t)0xE57D, (q15_t)0x7D39, (q15_t)0xE3F4, (q15_t)0x7CE3, (q15_t)0xE26C, (q15_t)0x7C89, (q15_t)0xE0E6, (q15_t)0x7C29, (q15_t)0xDF60, (q15_t)0x7BC5, (q15_t)0xDDDC, (q15_t)0x7B5D, (q15_t)0xDC59, (q15_t)0x7AEF, (q15_t)0xDAD7, (q15_t)0x7A7D, (q15_t)0xD957, (q15_t)0x7A05, (q15_t)0xD7D9, (q15_t)0x798A, (q15_t)0xD65C, (q15_t)0x7909, (q15_t)0xD4E0, (q15_t)0x7884, (q15_t)0xD367, (q15_t)0x77FA, (q15_t)0xD1EE, (q15_t)0x776C, (q15_t)0xD078, (q15_t)0x76D9, (q15_t)0xCF04, (q15_t)0x7641, (q15_t)0xCD91, (q15_t)0x75A5, (q15_t)0xCC21, (q15_t)0x7504, (q15_t)0xCAB2, (q15_t)0x745F, (q15_t)0xC945, (q15_t)0x73B5, (q15_t)0xC7DB, (q15_t)0x7307, (q15_t)0xC673, (q15_t)0x7255, (q15_t)0xC50D, (q15_t)0x719E, (q15_t)0xC3A9, (q15_t)0x70E2, (q15_t)0xC247, (q15_t)0x7023, (q15_t)0xC0E8, (q15_t)0x6F5F, (q15_t)0xBF8C, (q15_t)0x6E96, (q15_t)0xBE31, (q15_t)0x6DCA, (q15_t)0xBCDA, (q15_t)0x6CF9, (q15_t)0xBB85, (q15_t)0x6C24, (q15_t)0xBA32, (q15_t)0x6B4A, (q15_t)0xB8E3, (q15_t)0x6A6D, (q15_t)0xB796, (q15_t)0x698C, (q15_t)0xB64B, (q15_t)0x68A6, (q15_t)0xB504, (q15_t)0x67BD, (q15_t)0xB3C0, (q15_t)0x66CF, (q15_t)0xB27E, (q15_t)0x65DD, (q15_t)0xB140, (q15_t)0x64E8, (q15_t)0xB004, (q15_t)0x63EF, (q15_t)0xAECC, (q15_t)0x62F2, (q15_t)0xAD96, (q15_t)0x61F1, (q15_t)0xAC64, (q15_t)0x60EC, (q15_t)0xAB35, (q15_t)0x5FE3, (q15_t)0xAA0A, (q15_t)0x5ED7, (q15_t)0xA8E2, (q15_t)0x5DC7, (q15_t)0xA7BD, (q15_t)0x5CB4, (q15_t)0xA69B, (q15_t)0x5B9D, (q15_t)0xA57D, (q15_t)0x5A82, (q15_t)0xA462, (q15_t)0x5964, (q15_t)0xA34B, (q15_t)0x5842, (q15_t)0xA238, (q15_t)0x571D, (q15_t)0xA128, (q15_t)0x55F5, (q15_t)0xA01C, (q15_t)0x54CA, (q15_t)0x9F13, (q15_t)0x539B, (q15_t)0x9E0E, (q15_t)0x5269, (q15_t)0x9D0D, (q15_t)0x5133, (q15_t)0x9C10, (q15_t)0x4FFB, (q15_t)0x9B17, (q15_t)0x4EBF, (q15_t)0x9A22, (q15_t)0x4D81, (q15_t)0x9930, (q15_t)0x4C3F, (q15_t)0x9842, (q15_t)0x4AFB, (q15_t)0x9759, (q15_t)0x49B4, (q15_t)0x9673, (q15_t)0x4869, (q15_t)0x9592, (q15_t)0x471C, (q15_t)0x94B5, (q15_t)0x45CD, (q15_t)0x93DB, (q15_t)0x447A, (q15_t)0x9306, (q15_t)0x4325, (q15_t)0x9235, (q15_t)0x41CE, (q15_t)0x9169, (q15_t)0x4073, (q15_t)0x90A0, (q15_t)0x3F17, (q15_t)0x8FDC, (q15_t)0x3DB8, (q15_t)0x8F1D, (q15_t)0x3C56, (q15_t)0x8E61, (q15_t)0x3AF2, (q15_t)0x8DAA, (q15_t)0x398C, (q15_t)0x8CF8, (q15_t)0x3824, (q15_t)0x8C4A, (q15_t)0x36BA, (q15_t)0x8BA0, (q15_t)0x354D, (q15_t)0x8AFB, (q15_t)0x33DE, (q15_t)0x8A5A, (q15_t)0x326E, (q15_t)0x89BE, (q15_t)0x30FB, (q15_t)0x8926, (q15_t)0x2F87, (q15_t)0x8893, (q15_t)0x2E11, (q15_t)0x8805, (q15_t)0x2C98, (q15_t)0x877B, (q15_t)0x2B1F, (q15_t)0x86F6, (q15_t)0x29A3, (q15_t)0x8675, (q15_t)0x2826, (q15_t)0x85FA, (q15_t)0x26A8, (q15_t)0x8582, (q15_t)0x2528, (q15_t)0x8510, (q15_t)0x23A6, (q15_t)0x84A2, (q15_t)0x2223, (q15_t)0x843A, (q15_t)0x209F, (q15_t)0x83D6, (q15_t)0x1F19, (q15_t)0x8376, (q15_t)0x1D93, (q15_t)0x831C, (q15_t)0x1C0B, (q15_t)0x82C6, (q15_t)0x1A82, (q15_t)0x8275, (q15_t)0x18F8, (q15_t)0x8229, (q15_t)0x176D, (q15_t)0x81E2, (q15_t)0x15E2, (q15_t)0x81A0, (q15_t)0x1455, (q15_t)0x8162, (q15_t)0x12C8, (q15_t)0x812A, (q15_t)0x1139, (q15_t)0x80F6, (q15_t)0x0FAB, (q15_t)0x80C7, (q15_t)0x0E1B, (q15_t)0x809D, (q15_t)0x0C8B, (q15_t)0x8078, (q15_t)0x0AFB, (q15_t)0x8058, (q15_t)0x096A, (q15_t)0x803D, (q15_t)0x07D9, (q15_t)0x8027, (q15_t)0x0647, (q15_t)0x8016, (q15_t)0x04B6, (q15_t)0x8009, (q15_t)0x0324, (q15_t)0x8002, (q15_t)0x0192, (q15_t)0x8000, (q15_t)0x0000, (q15_t)0x8002, (q15_t)0xFE6D, (q15_t)0x8009, (q15_t)0xFCDB, (q15_t)0x8016, (q15_t)0xFB49, (q15_t)0x8027, (q15_t)0xF9B8, (q15_t)0x803D, (q15_t)0xF826, (q15_t)0x8058, (q15_t)0xF695, (q15_t)0x8078, (q15_t)0xF504, (q15_t)0x809D, (q15_t)0xF374, (q15_t)0x80C7, (q15_t)0xF1E4, (q15_t)0x80F6, (q15_t)0xF054, (q15_t)0x812A, (q15_t)0xEEC6, (q15_t)0x8162, (q15_t)0xED37, (q15_t)0x81A0, (q15_t)0xEBAA, (q15_t)0x81E2, (q15_t)0xEA1D, (q15_t)0x8229, (q15_t)0xE892, (q15_t)0x8275, (q15_t)0xE707, (q15_t)0x82C6, (q15_t)0xE57D, (q15_t)0x831C, (q15_t)0xE3F4, (q15_t)0x8376, (q15_t)0xE26C, (q15_t)0x83D6, (q15_t)0xE0E6, (q15_t)0x843A, (q15_t)0xDF60, (q15_t)0x84A2, (q15_t)0xDDDC, (q15_t)0x8510, (q15_t)0xDC59, (q15_t)0x8582, (q15_t)0xDAD7, (q15_t)0x85FA, (q15_t)0xD957, (q15_t)0x8675, (q15_t)0xD7D9, (q15_t)0x86F6, (q15_t)0xD65C, (q15_t)0x877B, (q15_t)0xD4E0, (q15_t)0x8805, (q15_t)0xD367, (q15_t)0x8893, (q15_t)0xD1EE, (q15_t)0x8926, (q15_t)0xD078, (q15_t)0x89BE, (q15_t)0xCF04, (q15_t)0x8A5A, (q15_t)0xCD91, (q15_t)0x8AFB, (q15_t)0xCC21, (q15_t)0x8BA0, (q15_t)0xCAB2, (q15_t)0x8C4A, (q15_t)0xC945, (q15_t)0x8CF8, (q15_t)0xC7DB, (q15_t)0x8DAA, (q15_t)0xC673, (q15_t)0x8E61, (q15_t)0xC50D, (q15_t)0x8F1D, (q15_t)0xC3A9, (q15_t)0x8FDC, (q15_t)0xC247, (q15_t)0x90A0, (q15_t)0xC0E8, (q15_t)0x9169, (q15_t)0xBF8C, (q15_t)0x9235, (q15_t)0xBE31, (q15_t)0x9306, (q15_t)0xBCDA, (q15_t)0x93DB, (q15_t)0xBB85, (q15_t)0x94B5, (q15_t)0xBA32, (q15_t)0x9592, (q15_t)0xB8E3, (q15_t)0x9673, (q15_t)0xB796, (q15_t)0x9759, (q15_t)0xB64B, (q15_t)0x9842, (q15_t)0xB504, (q15_t)0x9930, (q15_t)0xB3C0, (q15_t)0x9A22, (q15_t)0xB27E, (q15_t)0x9B17, (q15_t)0xB140, (q15_t)0x9C10, (q15_t)0xB004, (q15_t)0x9D0D, (q15_t)0xAECC, (q15_t)0x9E0E, (q15_t)0xAD96, (q15_t)0x9F13, (q15_t)0xAC64, (q15_t)0xA01C, (q15_t)0xAB35, (q15_t)0xA128, (q15_t)0xAA0A, (q15_t)0xA238, (q15_t)0xA8E2, (q15_t)0xA34B, (q15_t)0xA7BD, (q15_t)0xA462, (q15_t)0xA69B, (q15_t)0xA57D, (q15_t)0xA57D, (q15_t)0xA69B, (q15_t)0xA462, (q15_t)0xA7BD, (q15_t)0xA34B, (q15_t)0xA8E2, (q15_t)0xA238, (q15_t)0xAA0A, (q15_t)0xA128, (q15_t)0xAB35, (q15_t)0xA01C, (q15_t)0xAC64, (q15_t)0x9F13, (q15_t)0xAD96, (q15_t)0x9E0E, (q15_t)0xAECC, (q15_t)0x9D0D, (q15_t)0xB004, (q15_t)0x9C10, (q15_t)0xB140, (q15_t)0x9B17, (q15_t)0xB27E, (q15_t)0x9A22, (q15_t)0xB3C0, (q15_t)0x9930, (q15_t)0xB504, (q15_t)0x9842, (q15_t)0xB64B, (q15_t)0x9759, (q15_t)0xB796, (q15_t)0x9673, (q15_t)0xB8E3, (q15_t)0x9592, (q15_t)0xBA32, (q15_t)0x94B5, (q15_t)0xBB85, (q15_t)0x93DB, (q15_t)0xBCDA, (q15_t)0x9306, (q15_t)0xBE31, (q15_t)0x9235, (q15_t)0xBF8C, (q15_t)0x9169, (q15_t)0xC0E8, (q15_t)0x90A0, (q15_t)0xC247, (q15_t)0x8FDC, (q15_t)0xC3A9, (q15_t)0x8F1D, (q15_t)0xC50D, (q15_t)0x8E61, (q15_t)0xC673, (q15_t)0x8DAA, (q15_t)0xC7DB, (q15_t)0x8CF8, (q15_t)0xC945, (q15_t)0x8C4A, (q15_t)0xCAB2, (q15_t)0x8BA0, (q15_t)0xCC21, (q15_t)0x8AFB, (q15_t)0xCD91, (q15_t)0x8A5A, (q15_t)0xCF04, (q15_t)0x89BE, (q15_t)0xD078, (q15_t)0x8926, (q15_t)0xD1EE, (q15_t)0x8893, (q15_t)0xD367, (q15_t)0x8805, (q15_t)0xD4E0, (q15_t)0x877B, (q15_t)0xD65C, (q15_t)0x86F6, (q15_t)0xD7D9, (q15_t)0x8675, (q15_t)0xD957, (q15_t)0x85FA, (q15_t)0xDAD7, (q15_t)0x8582, (q15_t)0xDC59, (q15_t)0x8510, (q15_t)0xDDDC, (q15_t)0x84A2, (q15_t)0xDF60, (q15_t)0x843A, (q15_t)0xE0E6, (q15_t)0x83D6, (q15_t)0xE26C, (q15_t)0x8376, (q15_t)0xE3F4, (q15_t)0x831C, (q15_t)0xE57D, (q15_t)0x82C6, (q15_t)0xE707, (q15_t)0x8275, (q15_t)0xE892, (q15_t)0x8229, (q15_t)0xEA1D, (q15_t)0x81E2, (q15_t)0xEBAA, (q15_t)0x81A0, (q15_t)0xED37, (q15_t)0x8162, (q15_t)0xEEC6, (q15_t)0x812A, (q15_t)0xF054, (q15_t)0x80F6, (q15_t)0xF1E4, (q15_t)0x80C7, (q15_t)0xF374, (q15_t)0x809D, (q15_t)0xF504, (q15_t)0x8078, (q15_t)0xF695, (q15_t)0x8058, (q15_t)0xF826, (q15_t)0x803D, (q15_t)0xF9B8, (q15_t)0x8027, (q15_t)0xFB49, (q15_t)0x8016, (q15_t)0xFCDB, (q15_t)0x8009, (q15_t)0xFE6D, (q15_t)0x8002 }; /** @par Example code for q15 Twiddle factors Generation:: @par
for (i = 0; i< 3N/4; i++)
  {
     twiddleCoefq15[2*i]   = cos(i * 2*PI/(float)N);
     twiddleCoefq15[2*i+1] = sin(i * 2*PI/(float)N);
  } 
@par where N = 1024, PI = 3.14159265358979 @par Cos and Sin values are interleaved fashion @par Convert Floating point to q15(Fixed point 1.15): round(twiddleCoefq15(i) * pow(2, 15)) */ const q15_t twiddleCoef_1024_q15[1536] ARM_DSP_TABLE_ATTRIBUTE = { (q15_t)0x7FFF, (q15_t)0x0000, (q15_t)0x7FFF, (q15_t)0x00C9, (q15_t)0x7FFD, (q15_t)0x0192, (q15_t)0x7FFA, (q15_t)0x025B, (q15_t)0x7FF6, (q15_t)0x0324, (q15_t)0x7FF0, (q15_t)0x03ED, (q15_t)0x7FE9, (q15_t)0x04B6, (q15_t)0x7FE1, (q15_t)0x057F, (q15_t)0x7FD8, (q15_t)0x0647, (q15_t)0x7FCE, (q15_t)0x0710, (q15_t)0x7FC2, (q15_t)0x07D9, (q15_t)0x7FB5, (q15_t)0x08A2, (q15_t)0x7FA7, (q15_t)0x096A, (q15_t)0x7F97, (q15_t)0x0A33, (q15_t)0x7F87, (q15_t)0x0AFB, (q15_t)0x7F75, (q15_t)0x0BC3, (q15_t)0x7F62, (q15_t)0x0C8B, (q15_t)0x7F4D, (q15_t)0x0D53, (q15_t)0x7F38, (q15_t)0x0E1B, (q15_t)0x7F21, (q15_t)0x0EE3, (q15_t)0x7F09, (q15_t)0x0FAB, (q15_t)0x7EF0, (q15_t)0x1072, (q15_t)0x7ED5, (q15_t)0x1139, (q15_t)0x7EBA, (q15_t)0x1201, (q15_t)0x7E9D, (q15_t)0x12C8, (q15_t)0x7E7F, (q15_t)0x138E, (q15_t)0x7E5F, (q15_t)0x1455, (q15_t)0x7E3F, (q15_t)0x151B, (q15_t)0x7E1D, (q15_t)0x15E2, (q15_t)0x7DFA, (q15_t)0x16A8, (q15_t)0x7DD6, (q15_t)0x176D, (q15_t)0x7DB0, (q15_t)0x1833, (q15_t)0x7D8A, (q15_t)0x18F8, (q15_t)0x7D62, (q15_t)0x19BD, (q15_t)0x7D39, (q15_t)0x1A82, (q15_t)0x7D0F, (q15_t)0x1B47, (q15_t)0x7CE3, (q15_t)0x1C0B, (q15_t)0x7CB7, (q15_t)0x1CCF, (q15_t)0x7C89, (q15_t)0x1D93, (q15_t)0x7C5A, (q15_t)0x1E56, (q15_t)0x7C29, (q15_t)0x1F19, (q15_t)0x7BF8, (q15_t)0x1FDC, (q15_t)0x7BC5, (q15_t)0x209F, (q15_t)0x7B92, (q15_t)0x2161, (q15_t)0x7B5D, (q15_t)0x2223, (q15_t)0x7B26, (q15_t)0x22E5, (q15_t)0x7AEF, (q15_t)0x23A6, (q15_t)0x7AB6, (q15_t)0x2467, (q15_t)0x7A7D, (q15_t)0x2528, (q15_t)0x7A42, (q15_t)0x25E8, (q15_t)0x7A05, (q15_t)0x26A8, (q15_t)0x79C8, (q15_t)0x2767, (q15_t)0x798A, (q15_t)0x2826, (q15_t)0x794A, (q15_t)0x28E5, (q15_t)0x7909, (q15_t)0x29A3, (q15_t)0x78C7, (q15_t)0x2A61, (q15_t)0x7884, (q15_t)0x2B1F, (q15_t)0x7840, (q15_t)0x2BDC, (q15_t)0x77FA, (q15_t)0x2C98, (q15_t)0x77B4, (q15_t)0x2D55, (q15_t)0x776C, (q15_t)0x2E11, (q15_t)0x7723, (q15_t)0x2ECC, (q15_t)0x76D9, (q15_t)0x2F87, (q15_t)0x768E, (q15_t)0x3041, (q15_t)0x7641, (q15_t)0x30FB, (q15_t)0x75F4, (q15_t)0x31B5, (q15_t)0x75A5, (q15_t)0x326E, (q15_t)0x7555, (q15_t)0x3326, (q15_t)0x7504, (q15_t)0x33DE, (q15_t)0x74B2, (q15_t)0x3496, (q15_t)0x745F, (q15_t)0x354D, (q15_t)0x740B, (q15_t)0x3604, (q15_t)0x73B5, (q15_t)0x36BA, (q15_t)0x735F, (q15_t)0x376F, (q15_t)0x7307, (q15_t)0x3824, (q15_t)0x72AF, (q15_t)0x38D8, (q15_t)0x7255, (q15_t)0x398C, (q15_t)0x71FA, (q15_t)0x3A40, (q15_t)0x719E, (q15_t)0x3AF2, (q15_t)0x7141, (q15_t)0x3BA5, (q15_t)0x70E2, (q15_t)0x3C56, (q15_t)0x7083, (q15_t)0x3D07, (q15_t)0x7023, (q15_t)0x3DB8, (q15_t)0x6FC1, (q15_t)0x3E68, (q15_t)0x6F5F, (q15_t)0x3F17, (q15_t)0x6EFB, (q15_t)0x3FC5, (q15_t)0x6E96, (q15_t)0x4073, (q15_t)0x6E30, (q15_t)0x4121, (q15_t)0x6DCA, (q15_t)0x41CE, (q15_t)0x6D62, (q15_t)0x427A, (q15_t)0x6CF9, (q15_t)0x4325, (q15_t)0x6C8F, (q15_t)0x43D0, (q15_t)0x6C24, (q15_t)0x447A, (q15_t)0x6BB8, (q15_t)0x4524, (q15_t)0x6B4A, (q15_t)0x45CD, (q15_t)0x6ADC, (q15_t)0x4675, (q15_t)0x6A6D, (q15_t)0x471C, (q15_t)0x69FD, (q15_t)0x47C3, (q15_t)0x698C, (q15_t)0x4869, (q15_t)0x6919, (q15_t)0x490F, (q15_t)0x68A6, (q15_t)0x49B4, (q15_t)0x6832, (q15_t)0x4A58, (q15_t)0x67BD, (q15_t)0x4AFB, (q15_t)0x6746, (q15_t)0x4B9E, (q15_t)0x66CF, (q15_t)0x4C3F, (q15_t)0x6657, (q15_t)0x4CE1, (q15_t)0x65DD, (q15_t)0x4D81, (q15_t)0x6563, (q15_t)0x4E21, (q15_t)0x64E8, (q15_t)0x4EBF, (q15_t)0x646C, (q15_t)0x4F5E, (q15_t)0x63EF, (q15_t)0x4FFB, (q15_t)0x6371, (q15_t)0x5097, (q15_t)0x62F2, (q15_t)0x5133, (q15_t)0x6271, (q15_t)0x51CE, (q15_t)0x61F1, (q15_t)0x5269, (q15_t)0x616F, (q15_t)0x5302, (q15_t)0x60EC, (q15_t)0x539B, (q15_t)0x6068, (q15_t)0x5433, (q15_t)0x5FE3, (q15_t)0x54CA, (q15_t)0x5F5E, (q15_t)0x5560, (q15_t)0x5ED7, (q15_t)0x55F5, (q15_t)0x5E50, (q15_t)0x568A, (q15_t)0x5DC7, (q15_t)0x571D, (q15_t)0x5D3E, (q15_t)0x57B0, (q15_t)0x5CB4, (q15_t)0x5842, (q15_t)0x5C29, (q15_t)0x58D4, (q15_t)0x5B9D, (q15_t)0x5964, (q15_t)0x5B10, (q15_t)0x59F3, (q15_t)0x5A82, (q15_t)0x5A82, (q15_t)0x59F3, (q15_t)0x5B10, (q15_t)0x5964, (q15_t)0x5B9D, (q15_t)0x58D4, (q15_t)0x5C29, (q15_t)0x5842, (q15_t)0x5CB4, (q15_t)0x57B0, (q15_t)0x5D3E, (q15_t)0x571D, (q15_t)0x5DC7, (q15_t)0x568A, (q15_t)0x5E50, (q15_t)0x55F5, (q15_t)0x5ED7, (q15_t)0x5560, (q15_t)0x5F5E, (q15_t)0x54CA, (q15_t)0x5FE3, (q15_t)0x5433, (q15_t)0x6068, (q15_t)0x539B, (q15_t)0x60EC, (q15_t)0x5302, (q15_t)0x616F, (q15_t)0x5269, (q15_t)0x61F1, (q15_t)0x51CE, (q15_t)0x6271, (q15_t)0x5133, (q15_t)0x62F2, (q15_t)0x5097, (q15_t)0x6371, (q15_t)0x4FFB, (q15_t)0x63EF, (q15_t)0x4F5E, (q15_t)0x646C, (q15_t)0x4EBF, (q15_t)0x64E8, (q15_t)0x4E21, (q15_t)0x6563, (q15_t)0x4D81, (q15_t)0x65DD, (q15_t)0x4CE1, (q15_t)0x6657, (q15_t)0x4C3F, (q15_t)0x66CF, (q15_t)0x4B9E, (q15_t)0x6746, (q15_t)0x4AFB, (q15_t)0x67BD, (q15_t)0x4A58, (q15_t)0x6832, (q15_t)0x49B4, (q15_t)0x68A6, (q15_t)0x490F, (q15_t)0x6919, (q15_t)0x4869, (q15_t)0x698C, (q15_t)0x47C3, (q15_t)0x69FD, (q15_t)0x471C, (q15_t)0x6A6D, (q15_t)0x4675, (q15_t)0x6ADC, (q15_t)0x45CD, (q15_t)0x6B4A, (q15_t)0x4524, (q15_t)0x6BB8, (q15_t)0x447A, (q15_t)0x6C24, (q15_t)0x43D0, (q15_t)0x6C8F, (q15_t)0x4325, (q15_t)0x6CF9, (q15_t)0x427A, (q15_t)0x6D62, (q15_t)0x41CE, (q15_t)0x6DCA, (q15_t)0x4121, (q15_t)0x6E30, (q15_t)0x4073, (q15_t)0x6E96, (q15_t)0x3FC5, (q15_t)0x6EFB, (q15_t)0x3F17, (q15_t)0x6F5F, (q15_t)0x3E68, (q15_t)0x6FC1, (q15_t)0x3DB8, (q15_t)0x7023, (q15_t)0x3D07, (q15_t)0x7083, (q15_t)0x3C56, (q15_t)0x70E2, (q15_t)0x3BA5, (q15_t)0x7141, (q15_t)0x3AF2, (q15_t)0x719E, (q15_t)0x3A40, (q15_t)0x71FA, (q15_t)0x398C, (q15_t)0x7255, (q15_t)0x38D8, (q15_t)0x72AF, (q15_t)0x3824, (q15_t)0x7307, (q15_t)0x376F, (q15_t)0x735F, (q15_t)0x36BA, (q15_t)0x73B5, (q15_t)0x3604, (q15_t)0x740B, (q15_t)0x354D, (q15_t)0x745F, (q15_t)0x3496, (q15_t)0x74B2, (q15_t)0x33DE, (q15_t)0x7504, (q15_t)0x3326, (q15_t)0x7555, (q15_t)0x326E, (q15_t)0x75A5, (q15_t)0x31B5, (q15_t)0x75F4, (q15_t)0x30FB, (q15_t)0x7641, (q15_t)0x3041, (q15_t)0x768E, (q15_t)0x2F87, (q15_t)0x76D9, (q15_t)0x2ECC, (q15_t)0x7723, (q15_t)0x2E11, (q15_t)0x776C, (q15_t)0x2D55, (q15_t)0x77B4, (q15_t)0x2C98, (q15_t)0x77FA, (q15_t)0x2BDC, (q15_t)0x7840, (q15_t)0x2B1F, (q15_t)0x7884, (q15_t)0x2A61, (q15_t)0x78C7, (q15_t)0x29A3, (q15_t)0x7909, (q15_t)0x28E5, (q15_t)0x794A, (q15_t)0x2826, (q15_t)0x798A, (q15_t)0x2767, (q15_t)0x79C8, (q15_t)0x26A8, (q15_t)0x7A05, (q15_t)0x25E8, (q15_t)0x7A42, (q15_t)0x2528, (q15_t)0x7A7D, (q15_t)0x2467, (q15_t)0x7AB6, (q15_t)0x23A6, (q15_t)0x7AEF, (q15_t)0x22E5, (q15_t)0x7B26, (q15_t)0x2223, (q15_t)0x7B5D, (q15_t)0x2161, (q15_t)0x7B92, (q15_t)0x209F, (q15_t)0x7BC5, (q15_t)0x1FDC, (q15_t)0x7BF8, (q15_t)0x1F19, (q15_t)0x7C29, (q15_t)0x1E56, (q15_t)0x7C5A, (q15_t)0x1D93, (q15_t)0x7C89, (q15_t)0x1CCF, (q15_t)0x7CB7, (q15_t)0x1C0B, (q15_t)0x7CE3, (q15_t)0x1B47, (q15_t)0x7D0F, (q15_t)0x1A82, (q15_t)0x7D39, (q15_t)0x19BD, (q15_t)0x7D62, (q15_t)0x18F8, (q15_t)0x7D8A, (q15_t)0x1833, (q15_t)0x7DB0, (q15_t)0x176D, (q15_t)0x7DD6, (q15_t)0x16A8, (q15_t)0x7DFA, (q15_t)0x15E2, (q15_t)0x7E1D, (q15_t)0x151B, (q15_t)0x7E3F, (q15_t)0x1455, (q15_t)0x7E5F, (q15_t)0x138E, (q15_t)0x7E7F, (q15_t)0x12C8, (q15_t)0x7E9D, (q15_t)0x1201, (q15_t)0x7EBA, (q15_t)0x1139, (q15_t)0x7ED5, (q15_t)0x1072, (q15_t)0x7EF0, (q15_t)0x0FAB, (q15_t)0x7F09, (q15_t)0x0EE3, (q15_t)0x7F21, (q15_t)0x0E1B, (q15_t)0x7F38, (q15_t)0x0D53, (q15_t)0x7F4D, (q15_t)0x0C8B, (q15_t)0x7F62, (q15_t)0x0BC3, (q15_t)0x7F75, (q15_t)0x0AFB, (q15_t)0x7F87, (q15_t)0x0A33, (q15_t)0x7F97, (q15_t)0x096A, (q15_t)0x7FA7, (q15_t)0x08A2, (q15_t)0x7FB5, (q15_t)0x07D9, (q15_t)0x7FC2, (q15_t)0x0710, (q15_t)0x7FCE, (q15_t)0x0647, (q15_t)0x7FD8, (q15_t)0x057F, (q15_t)0x7FE1, (q15_t)0x04B6, (q15_t)0x7FE9, (q15_t)0x03ED, (q15_t)0x7FF0, (q15_t)0x0324, (q15_t)0x7FF6, (q15_t)0x025B, (q15_t)0x7FFA, (q15_t)0x0192, (q15_t)0x7FFD, (q15_t)0x00C9, (q15_t)0x7FFF, (q15_t)0x0000, (q15_t)0x7FFF, (q15_t)0xFF36, (q15_t)0x7FFF, (q15_t)0xFE6D, (q15_t)0x7FFD, (q15_t)0xFDA4, (q15_t)0x7FFA, (q15_t)0xFCDB, (q15_t)0x7FF6, (q15_t)0xFC12, (q15_t)0x7FF0, (q15_t)0xFB49, (q15_t)0x7FE9, (q15_t)0xFA80, (q15_t)0x7FE1, (q15_t)0xF9B8, (q15_t)0x7FD8, (q15_t)0xF8EF, (q15_t)0x7FCE, (q15_t)0xF826, (q15_t)0x7FC2, (q15_t)0xF75D, (q15_t)0x7FB5, (q15_t)0xF695, (q15_t)0x7FA7, (q15_t)0xF5CC, (q15_t)0x7F97, (q15_t)0xF504, (q15_t)0x7F87, (q15_t)0xF43C, (q15_t)0x7F75, (q15_t)0xF374, (q15_t)0x7F62, (q15_t)0xF2AC, (q15_t)0x7F4D, (q15_t)0xF1E4, (q15_t)0x7F38, (q15_t)0xF11C, (q15_t)0x7F21, (q15_t)0xF054, (q15_t)0x7F09, (q15_t)0xEF8D, (q15_t)0x7EF0, (q15_t)0xEEC6, (q15_t)0x7ED5, (q15_t)0xEDFE, (q15_t)0x7EBA, (q15_t)0xED37, (q15_t)0x7E9D, (q15_t)0xEC71, (q15_t)0x7E7F, (q15_t)0xEBAA, (q15_t)0x7E5F, (q15_t)0xEAE4, (q15_t)0x7E3F, (q15_t)0xEA1D, (q15_t)0x7E1D, (q15_t)0xE957, (q15_t)0x7DFA, (q15_t)0xE892, (q15_t)0x7DD6, (q15_t)0xE7CC, (q15_t)0x7DB0, (q15_t)0xE707, (q15_t)0x7D8A, (q15_t)0xE642, (q15_t)0x7D62, (q15_t)0xE57D, (q15_t)0x7D39, (q15_t)0xE4B8, (q15_t)0x7D0F, (q15_t)0xE3F4, (q15_t)0x7CE3, (q15_t)0xE330, (q15_t)0x7CB7, (q15_t)0xE26C, (q15_t)0x7C89, (q15_t)0xE1A9, (q15_t)0x7C5A, (q15_t)0xE0E6, (q15_t)0x7C29, (q15_t)0xE023, (q15_t)0x7BF8, (q15_t)0xDF60, (q15_t)0x7BC5, (q15_t)0xDE9E, (q15_t)0x7B92, (q15_t)0xDDDC, (q15_t)0x7B5D, (q15_t)0xDD1A, (q15_t)0x7B26, (q15_t)0xDC59, (q15_t)0x7AEF, (q15_t)0xDB98, (q15_t)0x7AB6, (q15_t)0xDAD7, (q15_t)0x7A7D, (q15_t)0xDA17, (q15_t)0x7A42, (q15_t)0xD957, (q15_t)0x7A05, (q15_t)0xD898, (q15_t)0x79C8, (q15_t)0xD7D9, (q15_t)0x798A, (q15_t)0xD71A, (q15_t)0x794A, (q15_t)0xD65C, (q15_t)0x7909, (q15_t)0xD59E, (q15_t)0x78C7, (q15_t)0xD4E0, (q15_t)0x7884, (q15_t)0xD423, (q15_t)0x7840, (q15_t)0xD367, (q15_t)0x77FA, (q15_t)0xD2AA, (q15_t)0x77B4, (q15_t)0xD1EE, (q15_t)0x776C, (q15_t)0xD133, (q15_t)0x7723, (q15_t)0xD078, (q15_t)0x76D9, (q15_t)0xCFBE, (q15_t)0x768E, (q15_t)0xCF04, (q15_t)0x7641, (q15_t)0xCE4A, (q15_t)0x75F4, (q15_t)0xCD91, (q15_t)0x75A5, (q15_t)0xCCD9, (q15_t)0x7555, (q15_t)0xCC21, (q15_t)0x7504, (q15_t)0xCB69, (q15_t)0x74B2, (q15_t)0xCAB2, (q15_t)0x745F, (q15_t)0xC9FB, (q15_t)0x740B, (q15_t)0xC945, (q15_t)0x73B5, (q15_t)0xC890, (q15_t)0x735F, (q15_t)0xC7DB, (q15_t)0x7307, (q15_t)0xC727, (q15_t)0x72AF, (q15_t)0xC673, (q15_t)0x7255, (q15_t)0xC5BF, (q15_t)0x71FA, (q15_t)0xC50D, (q15_t)0x719E, (q15_t)0xC45A, (q15_t)0x7141, (q15_t)0xC3A9, (q15_t)0x70E2, (q15_t)0xC2F8, (q15_t)0x7083, (q15_t)0xC247, (q15_t)0x7023, (q15_t)0xC197, (q15_t)0x6FC1, (q15_t)0xC0E8, (q15_t)0x6F5F, (q15_t)0xC03A, (q15_t)0x6EFB, (q15_t)0xBF8C, (q15_t)0x6E96, (q15_t)0xBEDE, (q15_t)0x6E30, (q15_t)0xBE31, (q15_t)0x6DCA, (q15_t)0xBD85, (q15_t)0x6D62, (q15_t)0xBCDA, (q15_t)0x6CF9, (q15_t)0xBC2F, (q15_t)0x6C8F, (q15_t)0xBB85, (q15_t)0x6C24, (q15_t)0xBADB, (q15_t)0x6BB8, (q15_t)0xBA32, (q15_t)0x6B4A, (q15_t)0xB98A, (q15_t)0x6ADC, (q15_t)0xB8E3, (q15_t)0x6A6D, (q15_t)0xB83C, (q15_t)0x69FD, (q15_t)0xB796, (q15_t)0x698C, (q15_t)0xB6F0, (q15_t)0x6919, (q15_t)0xB64B, (q15_t)0x68A6, (q15_t)0xB5A7, (q15_t)0x6832, (q15_t)0xB504, (q15_t)0x67BD, (q15_t)0xB461, (q15_t)0x6746, (q15_t)0xB3C0, (q15_t)0x66CF, (q15_t)0xB31E, (q15_t)0x6657, (q15_t)0xB27E, (q15_t)0x65DD, (q15_t)0xB1DE, (q15_t)0x6563, (q15_t)0xB140, (q15_t)0x64E8, (q15_t)0xB0A1, (q15_t)0x646C, (q15_t)0xB004, (q15_t)0x63EF, (q15_t)0xAF68, (q15_t)0x6371, (q15_t)0xAECC, (q15_t)0x62F2, (q15_t)0xAE31, (q15_t)0x6271, (q15_t)0xAD96, (q15_t)0x61F1, (q15_t)0xACFD, (q15_t)0x616F, (q15_t)0xAC64, (q15_t)0x60EC, (q15_t)0xABCC, (q15_t)0x6068, (q15_t)0xAB35, (q15_t)0x5FE3, (q15_t)0xAA9F, (q15_t)0x5F5E, (q15_t)0xAA0A, (q15_t)0x5ED7, (q15_t)0xA975, (q15_t)0x5E50, (q15_t)0xA8E2, (q15_t)0x5DC7, (q15_t)0xA84F, (q15_t)0x5D3E, (q15_t)0xA7BD, (q15_t)0x5CB4, (q15_t)0xA72B, (q15_t)0x5C29, (q15_t)0xA69B, (q15_t)0x5B9D, (q15_t)0xA60C, (q15_t)0x5B10, (q15_t)0xA57D, (q15_t)0x5A82, (q15_t)0xA4EF, (q15_t)0x59F3, (q15_t)0xA462, (q15_t)0x5964, (q15_t)0xA3D6, (q15_t)0x58D4, (q15_t)0xA34B, (q15_t)0x5842, (q15_t)0xA2C1, (q15_t)0x57B0, (q15_t)0xA238, (q15_t)0x571D, (q15_t)0xA1AF, (q15_t)0x568A, (q15_t)0xA128, (q15_t)0x55F5, (q15_t)0xA0A1, (q15_t)0x5560, (q15_t)0xA01C, (q15_t)0x54CA, (q15_t)0x9F97, (q15_t)0x5433, (q15_t)0x9F13, (q15_t)0x539B, (q15_t)0x9E90, (q15_t)0x5302, (q15_t)0x9E0E, (q15_t)0x5269, (q15_t)0x9D8E, (q15_t)0x51CE, (q15_t)0x9D0D, (q15_t)0x5133, (q15_t)0x9C8E, (q15_t)0x5097, (q15_t)0x9C10, (q15_t)0x4FFB, (q15_t)0x9B93, (q15_t)0x4F5E, (q15_t)0x9B17, (q15_t)0x4EBF, (q15_t)0x9A9C, (q15_t)0x4E21, (q15_t)0x9A22, (q15_t)0x4D81, (q15_t)0x99A8, (q15_t)0x4CE1, (q15_t)0x9930, (q15_t)0x4C3F, (q15_t)0x98B9, (q15_t)0x4B9E, (q15_t)0x9842, (q15_t)0x4AFB, (q15_t)0x97CD, (q15_t)0x4A58, (q15_t)0x9759, (q15_t)0x49B4, (q15_t)0x96E6, (q15_t)0x490F, (q15_t)0x9673, (q15_t)0x4869, (q15_t)0x9602, (q15_t)0x47C3, (q15_t)0x9592, (q15_t)0x471C, (q15_t)0x9523, (q15_t)0x4675, (q15_t)0x94B5, (q15_t)0x45CD, (q15_t)0x9447, (q15_t)0x4524, (q15_t)0x93DB, (q15_t)0x447A, (q15_t)0x9370, (q15_t)0x43D0, (q15_t)0x9306, (q15_t)0x4325, (q15_t)0x929D, (q15_t)0x427A, (q15_t)0x9235, (q15_t)0x41CE, (q15_t)0x91CF, (q15_t)0x4121, (q15_t)0x9169, (q15_t)0x4073, (q15_t)0x9104, (q15_t)0x3FC5, (q15_t)0x90A0, (q15_t)0x3F17, (q15_t)0x903E, (q15_t)0x3E68, (q15_t)0x8FDC, (q15_t)0x3DB8, (q15_t)0x8F7C, (q15_t)0x3D07, (q15_t)0x8F1D, (q15_t)0x3C56, (q15_t)0x8EBE, (q15_t)0x3BA5, (q15_t)0x8E61, (q15_t)0x3AF2, (q15_t)0x8E05, (q15_t)0x3A40, (q15_t)0x8DAA, (q15_t)0x398C, (q15_t)0x8D50, (q15_t)0x38D8, (q15_t)0x8CF8, (q15_t)0x3824, (q15_t)0x8CA0, (q15_t)0x376F, (q15_t)0x8C4A, (q15_t)0x36BA, (q15_t)0x8BF4, (q15_t)0x3604, (q15_t)0x8BA0, (q15_t)0x354D, (q15_t)0x8B4D, (q15_t)0x3496, (q15_t)0x8AFB, (q15_t)0x33DE, (q15_t)0x8AAA, (q15_t)0x3326, (q15_t)0x8A5A, (q15_t)0x326E, (q15_t)0x8A0B, (q15_t)0x31B5, (q15_t)0x89BE, (q15_t)0x30FB, (q15_t)0x8971, (q15_t)0x3041, (q15_t)0x8926, (q15_t)0x2F87, (q15_t)0x88DC, (q15_t)0x2ECC, (q15_t)0x8893, (q15_t)0x2E11, (q15_t)0x884B, (q15_t)0x2D55, (q15_t)0x8805, (q15_t)0x2C98, (q15_t)0x87BF, (q15_t)0x2BDC, (q15_t)0x877B, (q15_t)0x2B1F, (q15_t)0x8738, (q15_t)0x2A61, (q15_t)0x86F6, (q15_t)0x29A3, (q15_t)0x86B5, (q15_t)0x28E5, (q15_t)0x8675, (q15_t)0x2826, (q15_t)0x8637, (q15_t)0x2767, (q15_t)0x85FA, (q15_t)0x26A8, (q15_t)0x85BD, (q15_t)0x25E8, (q15_t)0x8582, (q15_t)0x2528, (q15_t)0x8549, (q15_t)0x2467, (q15_t)0x8510, (q15_t)0x23A6, (q15_t)0x84D9, (q15_t)0x22E5, (q15_t)0x84A2, (q15_t)0x2223, (q15_t)0x846D, (q15_t)0x2161, (q15_t)0x843A, (q15_t)0x209F, (q15_t)0x8407, (q15_t)0x1FDC, (q15_t)0x83D6, (q15_t)0x1F19, (q15_t)0x83A5, (q15_t)0x1E56, (q15_t)0x8376, (q15_t)0x1D93, (q15_t)0x8348, (q15_t)0x1CCF, (q15_t)0x831C, (q15_t)0x1C0B, (q15_t)0x82F0, (q15_t)0x1B47, (q15_t)0x82C6, (q15_t)0x1A82, (q15_t)0x829D, (q15_t)0x19BD, (q15_t)0x8275, (q15_t)0x18F8, (q15_t)0x824F, (q15_t)0x1833, (q15_t)0x8229, (q15_t)0x176D, (q15_t)0x8205, (q15_t)0x16A8, (q15_t)0x81E2, (q15_t)0x15E2, (q15_t)0x81C0, (q15_t)0x151B, (q15_t)0x81A0, (q15_t)0x1455, (q15_t)0x8180, (q15_t)0x138E, (q15_t)0x8162, (q15_t)0x12C8, (q15_t)0x8145, (q15_t)0x1201, (q15_t)0x812A, (q15_t)0x1139, (q15_t)0x810F, (q15_t)0x1072, (q15_t)0x80F6, (q15_t)0x0FAB, (q15_t)0x80DE, (q15_t)0x0EE3, (q15_t)0x80C7, (q15_t)0x0E1B, (q15_t)0x80B2, (q15_t)0x0D53, (q15_t)0x809D, (q15_t)0x0C8B, (q15_t)0x808A, (q15_t)0x0BC3, (q15_t)0x8078, (q15_t)0x0AFB, (q15_t)0x8068, (q15_t)0x0A33, (q15_t)0x8058, (q15_t)0x096A, (q15_t)0x804A, (q15_t)0x08A2, (q15_t)0x803D, (q15_t)0x07D9, (q15_t)0x8031, (q15_t)0x0710, (q15_t)0x8027, (q15_t)0x0647, (q15_t)0x801E, (q15_t)0x057F, (q15_t)0x8016, (q15_t)0x04B6, (q15_t)0x800F, (q15_t)0x03ED, (q15_t)0x8009, (q15_t)0x0324, (q15_t)0x8005, (q15_t)0x025B, (q15_t)0x8002, (q15_t)0x0192, (q15_t)0x8000, (q15_t)0x00C9, (q15_t)0x8000, (q15_t)0x0000, (q15_t)0x8000, (q15_t)0xFF36, (q15_t)0x8002, (q15_t)0xFE6D, (q15_t)0x8005, (q15_t)0xFDA4, (q15_t)0x8009, (q15_t)0xFCDB, (q15_t)0x800F, (q15_t)0xFC12, (q15_t)0x8016, (q15_t)0xFB49, (q15_t)0x801E, (q15_t)0xFA80, (q15_t)0x8027, (q15_t)0xF9B8, (q15_t)0x8031, (q15_t)0xF8EF, (q15_t)0x803D, (q15_t)0xF826, (q15_t)0x804A, (q15_t)0xF75D, (q15_t)0x8058, (q15_t)0xF695, (q15_t)0x8068, (q15_t)0xF5CC, (q15_t)0x8078, (q15_t)0xF504, (q15_t)0x808A, (q15_t)0xF43C, (q15_t)0x809D, (q15_t)0xF374, (q15_t)0x80B2, (q15_t)0xF2AC, (q15_t)0x80C7, (q15_t)0xF1E4, (q15_t)0x80DE, (q15_t)0xF11C, (q15_t)0x80F6, (q15_t)0xF054, (q15_t)0x810F, (q15_t)0xEF8D, (q15_t)0x812A, (q15_t)0xEEC6, (q15_t)0x8145, (q15_t)0xEDFE, (q15_t)0x8162, (q15_t)0xED37, (q15_t)0x8180, (q15_t)0xEC71, (q15_t)0x81A0, (q15_t)0xEBAA, (q15_t)0x81C0, (q15_t)0xEAE4, (q15_t)0x81E2, (q15_t)0xEA1D, (q15_t)0x8205, (q15_t)0xE957, (q15_t)0x8229, (q15_t)0xE892, (q15_t)0x824F, (q15_t)0xE7CC, (q15_t)0x8275, (q15_t)0xE707, (q15_t)0x829D, (q15_t)0xE642, (q15_t)0x82C6, (q15_t)0xE57D, (q15_t)0x82F0, (q15_t)0xE4B8, (q15_t)0x831C, (q15_t)0xE3F4, (q15_t)0x8348, (q15_t)0xE330, (q15_t)0x8376, (q15_t)0xE26C, (q15_t)0x83A5, (q15_t)0xE1A9, (q15_t)0x83D6, (q15_t)0xE0E6, (q15_t)0x8407, (q15_t)0xE023, (q15_t)0x843A, (q15_t)0xDF60, (q15_t)0x846D, (q15_t)0xDE9E, (q15_t)0x84A2, (q15_t)0xDDDC, (q15_t)0x84D9, (q15_t)0xDD1A, (q15_t)0x8510, (q15_t)0xDC59, (q15_t)0x8549, (q15_t)0xDB98, (q15_t)0x8582, (q15_t)0xDAD7, (q15_t)0x85BD, (q15_t)0xDA17, (q15_t)0x85FA, (q15_t)0xD957, (q15_t)0x8637, (q15_t)0xD898, (q15_t)0x8675, (q15_t)0xD7D9, (q15_t)0x86B5, (q15_t)0xD71A, (q15_t)0x86F6, (q15_t)0xD65C, (q15_t)0x8738, (q15_t)0xD59E, (q15_t)0x877B, (q15_t)0xD4E0, (q15_t)0x87BF, (q15_t)0xD423, (q15_t)0x8805, (q15_t)0xD367, (q15_t)0x884B, (q15_t)0xD2AA, (q15_t)0x8893, (q15_t)0xD1EE, (q15_t)0x88DC, (q15_t)0xD133, (q15_t)0x8926, (q15_t)0xD078, (q15_t)0x8971, (q15_t)0xCFBE, (q15_t)0x89BE, (q15_t)0xCF04, (q15_t)0x8A0B, (q15_t)0xCE4A, (q15_t)0x8A5A, (q15_t)0xCD91, (q15_t)0x8AAA, (q15_t)0xCCD9, (q15_t)0x8AFB, (q15_t)0xCC21, (q15_t)0x8B4D, (q15_t)0xCB69, (q15_t)0x8BA0, (q15_t)0xCAB2, (q15_t)0x8BF4, (q15_t)0xC9FB, (q15_t)0x8C4A, (q15_t)0xC945, (q15_t)0x8CA0, (q15_t)0xC890, (q15_t)0x8CF8, (q15_t)0xC7DB, (q15_t)0x8D50, (q15_t)0xC727, (q15_t)0x8DAA, (q15_t)0xC673, (q15_t)0x8E05, (q15_t)0xC5BF, (q15_t)0x8E61, (q15_t)0xC50D, (q15_t)0x8EBE, (q15_t)0xC45A, (q15_t)0x8F1D, (q15_t)0xC3A9, (q15_t)0x8F7C, (q15_t)0xC2F8, (q15_t)0x8FDC, (q15_t)0xC247, (q15_t)0x903E, (q15_t)0xC197, (q15_t)0x90A0, (q15_t)0xC0E8, (q15_t)0x9104, (q15_t)0xC03A, (q15_t)0x9169, (q15_t)0xBF8C, (q15_t)0x91CF, (q15_t)0xBEDE, (q15_t)0x9235, (q15_t)0xBE31, (q15_t)0x929D, (q15_t)0xBD85, (q15_t)0x9306, (q15_t)0xBCDA, (q15_t)0x9370, (q15_t)0xBC2F, (q15_t)0x93DB, (q15_t)0xBB85, (q15_t)0x9447, (q15_t)0xBADB, (q15_t)0x94B5, (q15_t)0xBA32, (q15_t)0x9523, (q15_t)0xB98A, (q15_t)0x9592, (q15_t)0xB8E3, (q15_t)0x9602, (q15_t)0xB83C, (q15_t)0x9673, (q15_t)0xB796, (q15_t)0x96E6, (q15_t)0xB6F0, (q15_t)0x9759, (q15_t)0xB64B, (q15_t)0x97CD, (q15_t)0xB5A7, (q15_t)0x9842, (q15_t)0xB504, (q15_t)0x98B9, (q15_t)0xB461, (q15_t)0x9930, (q15_t)0xB3C0, (q15_t)0x99A8, (q15_t)0xB31E, (q15_t)0x9A22, (q15_t)0xB27E, (q15_t)0x9A9C, (q15_t)0xB1DE, (q15_t)0x9B17, (q15_t)0xB140, (q15_t)0x9B93, (q15_t)0xB0A1, (q15_t)0x9C10, (q15_t)0xB004, (q15_t)0x9C8E, (q15_t)0xAF68, (q15_t)0x9D0D, (q15_t)0xAECC, (q15_t)0x9D8E, (q15_t)0xAE31, (q15_t)0x9E0E, (q15_t)0xAD96, (q15_t)0x9E90, (q15_t)0xACFD, (q15_t)0x9F13, (q15_t)0xAC64, (q15_t)0x9F97, (q15_t)0xABCC, (q15_t)0xA01C, (q15_t)0xAB35, (q15_t)0xA0A1, (q15_t)0xAA9F, (q15_t)0xA128, (q15_t)0xAA0A, (q15_t)0xA1AF, (q15_t)0xA975, (q15_t)0xA238, (q15_t)0xA8E2, (q15_t)0xA2C1, (q15_t)0xA84F, (q15_t)0xA34B, (q15_t)0xA7BD, (q15_t)0xA3D6, (q15_t)0xA72B, (q15_t)0xA462, (q15_t)0xA69B, (q15_t)0xA4EF, (q15_t)0xA60C, (q15_t)0xA57D, (q15_t)0xA57D, (q15_t)0xA60C, (q15_t)0xA4EF, (q15_t)0xA69B, (q15_t)0xA462, (q15_t)0xA72B, (q15_t)0xA3D6, (q15_t)0xA7BD, (q15_t)0xA34B, (q15_t)0xA84F, (q15_t)0xA2C1, (q15_t)0xA8E2, (q15_t)0xA238, (q15_t)0xA975, (q15_t)0xA1AF, (q15_t)0xAA0A, (q15_t)0xA128, (q15_t)0xAA9F, (q15_t)0xA0A1, (q15_t)0xAB35, (q15_t)0xA01C, (q15_t)0xABCC, (q15_t)0x9F97, (q15_t)0xAC64, (q15_t)0x9F13, (q15_t)0xACFD, (q15_t)0x9E90, (q15_t)0xAD96, (q15_t)0x9E0E, (q15_t)0xAE31, (q15_t)0x9D8E, (q15_t)0xAECC, (q15_t)0x9D0D, (q15_t)0xAF68, (q15_t)0x9C8E, (q15_t)0xB004, (q15_t)0x9C10, (q15_t)0xB0A1, (q15_t)0x9B93, (q15_t)0xB140, (q15_t)0x9B17, (q15_t)0xB1DE, (q15_t)0x9A9C, (q15_t)0xB27E, (q15_t)0x9A22, (q15_t)0xB31E, (q15_t)0x99A8, (q15_t)0xB3C0, (q15_t)0x9930, (q15_t)0xB461, (q15_t)0x98B9, (q15_t)0xB504, (q15_t)0x9842, (q15_t)0xB5A7, (q15_t)0x97CD, (q15_t)0xB64B, (q15_t)0x9759, (q15_t)0xB6F0, (q15_t)0x96E6, (q15_t)0xB796, (q15_t)0x9673, (q15_t)0xB83C, (q15_t)0x9602, (q15_t)0xB8E3, (q15_t)0x9592, (q15_t)0xB98A, (q15_t)0x9523, (q15_t)0xBA32, (q15_t)0x94B5, (q15_t)0xBADB, (q15_t)0x9447, (q15_t)0xBB85, (q15_t)0x93DB, (q15_t)0xBC2F, (q15_t)0x9370, (q15_t)0xBCDA, (q15_t)0x9306, (q15_t)0xBD85, (q15_t)0x929D, (q15_t)0xBE31, (q15_t)0x9235, (q15_t)0xBEDE, (q15_t)0x91CF, (q15_t)0xBF8C, (q15_t)0x9169, (q15_t)0xC03A, (q15_t)0x9104, (q15_t)0xC0E8, (q15_t)0x90A0, (q15_t)0xC197, (q15_t)0x903E, (q15_t)0xC247, (q15_t)0x8FDC, (q15_t)0xC2F8, (q15_t)0x8F7C, (q15_t)0xC3A9, (q15_t)0x8F1D, (q15_t)0xC45A, (q15_t)0x8EBE, (q15_t)0xC50D, (q15_t)0x8E61, (q15_t)0xC5BF, (q15_t)0x8E05, (q15_t)0xC673, (q15_t)0x8DAA, (q15_t)0xC727, (q15_t)0x8D50, (q15_t)0xC7DB, (q15_t)0x8CF8, (q15_t)0xC890, (q15_t)0x8CA0, (q15_t)0xC945, (q15_t)0x8C4A, (q15_t)0xC9FB, (q15_t)0x8BF4, (q15_t)0xCAB2, (q15_t)0x8BA0, (q15_t)0xCB69, (q15_t)0x8B4D, (q15_t)0xCC21, (q15_t)0x8AFB, (q15_t)0xCCD9, (q15_t)0x8AAA, (q15_t)0xCD91, (q15_t)0x8A5A, (q15_t)0xCE4A, (q15_t)0x8A0B, (q15_t)0xCF04, (q15_t)0x89BE, (q15_t)0xCFBE, (q15_t)0x8971, (q15_t)0xD078, (q15_t)0x8926, (q15_t)0xD133, (q15_t)0x88DC, (q15_t)0xD1EE, (q15_t)0x8893, (q15_t)0xD2AA, (q15_t)0x884B, (q15_t)0xD367, (q15_t)0x8805, (q15_t)0xD423, (q15_t)0x87BF, (q15_t)0xD4E0, (q15_t)0x877B, (q15_t)0xD59E, (q15_t)0x8738, (q15_t)0xD65C, (q15_t)0x86F6, (q15_t)0xD71A, (q15_t)0x86B5, (q15_t)0xD7D9, (q15_t)0x8675, (q15_t)0xD898, (q15_t)0x8637, (q15_t)0xD957, (q15_t)0x85FA, (q15_t)0xDA17, (q15_t)0x85BD, (q15_t)0xDAD7, (q15_t)0x8582, (q15_t)0xDB98, (q15_t)0x8549, (q15_t)0xDC59, (q15_t)0x8510, (q15_t)0xDD1A, (q15_t)0x84D9, (q15_t)0xDDDC, (q15_t)0x84A2, (q15_t)0xDE9E, (q15_t)0x846D, (q15_t)0xDF60, (q15_t)0x843A, (q15_t)0xE023, (q15_t)0x8407, (q15_t)0xE0E6, (q15_t)0x83D6, (q15_t)0xE1A9, (q15_t)0x83A5, (q15_t)0xE26C, (q15_t)0x8376, (q15_t)0xE330, (q15_t)0x8348, (q15_t)0xE3F4, (q15_t)0x831C, (q15_t)0xE4B8, (q15_t)0x82F0, (q15_t)0xE57D, (q15_t)0x82C6, (q15_t)0xE642, (q15_t)0x829D, (q15_t)0xE707, (q15_t)0x8275, (q15_t)0xE7CC, (q15_t)0x824F, (q15_t)0xE892, (q15_t)0x8229, (q15_t)0xE957, (q15_t)0x8205, (q15_t)0xEA1D, (q15_t)0x81E2, (q15_t)0xEAE4, (q15_t)0x81C0, (q15_t)0xEBAA, (q15_t)0x81A0, (q15_t)0xEC71, (q15_t)0x8180, (q15_t)0xED37, (q15_t)0x8162, (q15_t)0xEDFE, (q15_t)0x8145, (q15_t)0xEEC6, (q15_t)0x812A, (q15_t)0xEF8D, (q15_t)0x810F, (q15_t)0xF054, (q15_t)0x80F6, (q15_t)0xF11C, (q15_t)0x80DE, (q15_t)0xF1E4, (q15_t)0x80C7, (q15_t)0xF2AC, (q15_t)0x80B2, (q15_t)0xF374, (q15_t)0x809D, (q15_t)0xF43C, (q15_t)0x808A, (q15_t)0xF504, (q15_t)0x8078, (q15_t)0xF5CC, (q15_t)0x8068, (q15_t)0xF695, (q15_t)0x8058, (q15_t)0xF75D, (q15_t)0x804A, (q15_t)0xF826, (q15_t)0x803D, (q15_t)0xF8EF, (q15_t)0x8031, (q15_t)0xF9B8, (q15_t)0x8027, (q15_t)0xFA80, (q15_t)0x801E, (q15_t)0xFB49, (q15_t)0x8016, (q15_t)0xFC12, (q15_t)0x800F, (q15_t)0xFCDB, (q15_t)0x8009, (q15_t)0xFDA4, (q15_t)0x8005, (q15_t)0xFE6D, (q15_t)0x8002, (q15_t)0xFF36, (q15_t)0x8000 }; /** @par Example code for q15 Twiddle factors Generation:: @par
for (i = 0; i< 3N/4; i++)
  {
     twiddleCoefq15[2*i]   = cos(i * 2*PI/(float)N);
     twiddleCoefq15[2*i+1] = sin(i * 2*PI/(float)N);
  } 
@par where N = 2048, PI = 3.14159265358979 @par Cos and Sin values are interleaved fashion @par Convert Floating point to q15(Fixed point 1.15): round(twiddleCoefq15(i) * pow(2, 15)) */ const q15_t twiddleCoef_2048_q15[3072] ARM_DSP_TABLE_ATTRIBUTE = { (q15_t)0x7FFF, (q15_t)0x0000, (q15_t)0x7FFF, (q15_t)0x0064, (q15_t)0x7FFF, (q15_t)0x00C9, (q15_t)0x7FFE, (q15_t)0x012D, (q15_t)0x7FFD, (q15_t)0x0192, (q15_t)0x7FFC, (q15_t)0x01F6, (q15_t)0x7FFA, (q15_t)0x025B, (q15_t)0x7FF8, (q15_t)0x02BF, (q15_t)0x7FF6, (q15_t)0x0324, (q15_t)0x7FF3, (q15_t)0x0388, (q15_t)0x7FF0, (q15_t)0x03ED, (q15_t)0x7FED, (q15_t)0x0451, (q15_t)0x7FE9, (q15_t)0x04B6, (q15_t)0x7FE5, (q15_t)0x051A, (q15_t)0x7FE1, (q15_t)0x057F, (q15_t)0x7FDD, (q15_t)0x05E3, (q15_t)0x7FD8, (q15_t)0x0647, (q15_t)0x7FD3, (q15_t)0x06AC, (q15_t)0x7FCE, (q15_t)0x0710, (q15_t)0x7FC8, (q15_t)0x0775, (q15_t)0x7FC2, (q15_t)0x07D9, (q15_t)0x7FBC, (q15_t)0x083D, (q15_t)0x7FB5, (q15_t)0x08A2, (q15_t)0x7FAE, (q15_t)0x0906, (q15_t)0x7FA7, (q15_t)0x096A, (q15_t)0x7F9F, (q15_t)0x09CE, (q15_t)0x7F97, (q15_t)0x0A33, (q15_t)0x7F8F, (q15_t)0x0A97, (q15_t)0x7F87, (q15_t)0x0AFB, (q15_t)0x7F7E, (q15_t)0x0B5F, (q15_t)0x7F75, (q15_t)0x0BC3, (q15_t)0x7F6B, (q15_t)0x0C27, (q15_t)0x7F62, (q15_t)0x0C8B, (q15_t)0x7F58, (q15_t)0x0CEF, (q15_t)0x7F4D, (q15_t)0x0D53, (q15_t)0x7F43, (q15_t)0x0DB7, (q15_t)0x7F38, (q15_t)0x0E1B, (q15_t)0x7F2D, (q15_t)0x0E7F, (q15_t)0x7F21, (q15_t)0x0EE3, (q15_t)0x7F15, (q15_t)0x0F47, (q15_t)0x7F09, (q15_t)0x0FAB, (q15_t)0x7EFD, (q15_t)0x100E, (q15_t)0x7EF0, (q15_t)0x1072, (q15_t)0x7EE3, (q15_t)0x10D6, (q15_t)0x7ED5, (q15_t)0x1139, (q15_t)0x7EC8, (q15_t)0x119D, (q15_t)0x7EBA, (q15_t)0x1201, (q15_t)0x7EAB, (q15_t)0x1264, (q15_t)0x7E9D, (q15_t)0x12C8, (q15_t)0x7E8E, (q15_t)0x132B, (q15_t)0x7E7F, (q15_t)0x138E, (q15_t)0x7E6F, (q15_t)0x13F2, (q15_t)0x7E5F, (q15_t)0x1455, (q15_t)0x7E4F, (q15_t)0x14B8, (q15_t)0x7E3F, (q15_t)0x151B, (q15_t)0x7E2E, (q15_t)0x157F, (q15_t)0x7E1D, (q15_t)0x15E2, (q15_t)0x7E0C, (q15_t)0x1645, (q15_t)0x7DFA, (q15_t)0x16A8, (q15_t)0x7DE8, (q15_t)0x170A, (q15_t)0x7DD6, (q15_t)0x176D, (q15_t)0x7DC3, (q15_t)0x17D0, (q15_t)0x7DB0, (q15_t)0x1833, (q15_t)0x7D9D, (q15_t)0x1896, (q15_t)0x7D8A, (q15_t)0x18F8, (q15_t)0x7D76, (q15_t)0x195B, (q15_t)0x7D62, (q15_t)0x19BD, (q15_t)0x7D4E, (q15_t)0x1A20, (q15_t)0x7D39, (q15_t)0x1A82, (q15_t)0x7D24, (q15_t)0x1AE4, (q15_t)0x7D0F, (q15_t)0x1B47, (q15_t)0x7CF9, (q15_t)0x1BA9, (q15_t)0x7CE3, (q15_t)0x1C0B, (q15_t)0x7CCD, (q15_t)0x1C6D, (q15_t)0x7CB7, (q15_t)0x1CCF, (q15_t)0x7CA0, (q15_t)0x1D31, (q15_t)0x7C89, (q15_t)0x1D93, (q15_t)0x7C71, (q15_t)0x1DF5, (q15_t)0x7C5A, (q15_t)0x1E56, (q15_t)0x7C42, (q15_t)0x1EB8, (q15_t)0x7C29, (q15_t)0x1F19, (q15_t)0x7C11, (q15_t)0x1F7B, (q15_t)0x7BF8, (q15_t)0x1FDC, (q15_t)0x7BDF, (q15_t)0x203E, (q15_t)0x7BC5, (q15_t)0x209F, (q15_t)0x7BAC, (q15_t)0x2100, (q15_t)0x7B92, (q15_t)0x2161, (q15_t)0x7B77, (q15_t)0x21C2, (q15_t)0x7B5D, (q15_t)0x2223, (q15_t)0x7B42, (q15_t)0x2284, (q15_t)0x7B26, (q15_t)0x22E5, (q15_t)0x7B0B, (q15_t)0x2345, (q15_t)0x7AEF, (q15_t)0x23A6, (q15_t)0x7AD3, (q15_t)0x2407, (q15_t)0x7AB6, (q15_t)0x2467, (q15_t)0x7A9A, (q15_t)0x24C7, (q15_t)0x7A7D, (q15_t)0x2528, (q15_t)0x7A5F, (q15_t)0x2588, (q15_t)0x7A42, (q15_t)0x25E8, (q15_t)0x7A24, (q15_t)0x2648, (q15_t)0x7A05, (q15_t)0x26A8, (q15_t)0x79E7, (q15_t)0x2707, (q15_t)0x79C8, (q15_t)0x2767, (q15_t)0x79A9, (q15_t)0x27C7, (q15_t)0x798A, (q15_t)0x2826, (q15_t)0x796A, (q15_t)0x2886, (q15_t)0x794A, (q15_t)0x28E5, (q15_t)0x792A, (q15_t)0x2944, (q15_t)0x7909, (q15_t)0x29A3, (q15_t)0x78E8, (q15_t)0x2A02, (q15_t)0x78C7, (q15_t)0x2A61, (q15_t)0x78A6, (q15_t)0x2AC0, (q15_t)0x7884, (q15_t)0x2B1F, (q15_t)0x7862, (q15_t)0x2B7D, (q15_t)0x7840, (q15_t)0x2BDC, (q15_t)0x781D, (q15_t)0x2C3A, (q15_t)0x77FA, (q15_t)0x2C98, (q15_t)0x77D7, (q15_t)0x2CF7, (q15_t)0x77B4, (q15_t)0x2D55, (q15_t)0x7790, (q15_t)0x2DB3, (q15_t)0x776C, (q15_t)0x2E11, (q15_t)0x7747, (q15_t)0x2E6E, (q15_t)0x7723, (q15_t)0x2ECC, (q15_t)0x76FE, (q15_t)0x2F29, (q15_t)0x76D9, (q15_t)0x2F87, (q15_t)0x76B3, (q15_t)0x2FE4, (q15_t)0x768E, (q15_t)0x3041, (q15_t)0x7668, (q15_t)0x309E, (q15_t)0x7641, (q15_t)0x30FB, (q15_t)0x761B, (q15_t)0x3158, (q15_t)0x75F4, (q15_t)0x31B5, (q15_t)0x75CC, (q15_t)0x3211, (q15_t)0x75A5, (q15_t)0x326E, (q15_t)0x757D, (q15_t)0x32CA, (q15_t)0x7555, (q15_t)0x3326, (q15_t)0x752D, (q15_t)0x3382, (q15_t)0x7504, (q15_t)0x33DE, (q15_t)0x74DB, (q15_t)0x343A, (q15_t)0x74B2, (q15_t)0x3496, (q15_t)0x7489, (q15_t)0x34F2, (q15_t)0x745F, (q15_t)0x354D, (q15_t)0x7435, (q15_t)0x35A8, (q15_t)0x740B, (q15_t)0x3604, (q15_t)0x73E0, (q15_t)0x365F, (q15_t)0x73B5, (q15_t)0x36BA, (q15_t)0x738A, (q15_t)0x3714, (q15_t)0x735F, (q15_t)0x376F, (q15_t)0x7333, (q15_t)0x37CA, (q15_t)0x7307, (q15_t)0x3824, (q15_t)0x72DB, (q15_t)0x387E, (q15_t)0x72AF, (q15_t)0x38D8, (q15_t)0x7282, (q15_t)0x3932, (q15_t)0x7255, (q15_t)0x398C, (q15_t)0x7227, (q15_t)0x39E6, (q15_t)0x71FA, (q15_t)0x3A40, (q15_t)0x71CC, (q15_t)0x3A99, (q15_t)0x719E, (q15_t)0x3AF2, (q15_t)0x716F, (q15_t)0x3B4C, (q15_t)0x7141, (q15_t)0x3BA5, (q15_t)0x7112, (q15_t)0x3BFD, (q15_t)0x70E2, (q15_t)0x3C56, (q15_t)0x70B3, (q15_t)0x3CAF, (q15_t)0x7083, (q15_t)0x3D07, (q15_t)0x7053, (q15_t)0x3D60, (q15_t)0x7023, (q15_t)0x3DB8, (q15_t)0x6FF2, (q15_t)0x3E10, (q15_t)0x6FC1, (q15_t)0x3E68, (q15_t)0x6F90, (q15_t)0x3EBF, (q15_t)0x6F5F, (q15_t)0x3F17, (q15_t)0x6F2D, (q15_t)0x3F6E, (q15_t)0x6EFB, (q15_t)0x3FC5, (q15_t)0x6EC9, (q15_t)0x401D, (q15_t)0x6E96, (q15_t)0x4073, (q15_t)0x6E63, (q15_t)0x40CA, (q15_t)0x6E30, (q15_t)0x4121, (q15_t)0x6DFD, (q15_t)0x4177, (q15_t)0x6DCA, (q15_t)0x41CE, (q15_t)0x6D96, (q15_t)0x4224, (q15_t)0x6D62, (q15_t)0x427A, (q15_t)0x6D2D, (q15_t)0x42D0, (q15_t)0x6CF9, (q15_t)0x4325, (q15_t)0x6CC4, (q15_t)0x437B, (q15_t)0x6C8F, (q15_t)0x43D0, (q15_t)0x6C59, (q15_t)0x4425, (q15_t)0x6C24, (q15_t)0x447A, (q15_t)0x6BEE, (q15_t)0x44CF, (q15_t)0x6BB8, (q15_t)0x4524, (q15_t)0x6B81, (q15_t)0x4578, (q15_t)0x6B4A, (q15_t)0x45CD, (q15_t)0x6B13, (q15_t)0x4621, (q15_t)0x6ADC, (q15_t)0x4675, (q15_t)0x6AA5, (q15_t)0x46C9, (q15_t)0x6A6D, (q15_t)0x471C, (q15_t)0x6A35, (q15_t)0x4770, (q15_t)0x69FD, (q15_t)0x47C3, (q15_t)0x69C4, (q15_t)0x4816, (q15_t)0x698C, (q15_t)0x4869, (q15_t)0x6953, (q15_t)0x48BC, (q15_t)0x6919, (q15_t)0x490F, (q15_t)0x68E0, (q15_t)0x4961, (q15_t)0x68A6, (q15_t)0x49B4, (q15_t)0x686C, (q15_t)0x4A06, (q15_t)0x6832, (q15_t)0x4A58, (q15_t)0x67F7, (q15_t)0x4AA9, (q15_t)0x67BD, (q15_t)0x4AFB, (q15_t)0x6782, (q15_t)0x4B4C, (q15_t)0x6746, (q15_t)0x4B9E, (q15_t)0x670B, (q15_t)0x4BEF, (q15_t)0x66CF, (q15_t)0x4C3F, (q15_t)0x6693, (q15_t)0x4C90, (q15_t)0x6657, (q15_t)0x4CE1, (q15_t)0x661A, (q15_t)0x4D31, (q15_t)0x65DD, (q15_t)0x4D81, (q15_t)0x65A0, (q15_t)0x4DD1, (q15_t)0x6563, (q15_t)0x4E21, (q15_t)0x6526, (q15_t)0x4E70, (q15_t)0x64E8, (q15_t)0x4EBF, (q15_t)0x64AA, (q15_t)0x4F0F, (q15_t)0x646C, (q15_t)0x4F5E, (q15_t)0x642D, (q15_t)0x4FAC, (q15_t)0x63EF, (q15_t)0x4FFB, (q15_t)0x63B0, (q15_t)0x5049, (q15_t)0x6371, (q15_t)0x5097, (q15_t)0x6331, (q15_t)0x50E5, (q15_t)0x62F2, (q15_t)0x5133, (q15_t)0x62B2, (q15_t)0x5181, (q15_t)0x6271, (q15_t)0x51CE, (q15_t)0x6231, (q15_t)0x521C, (q15_t)0x61F1, (q15_t)0x5269, (q15_t)0x61B0, (q15_t)0x52B5, (q15_t)0x616F, (q15_t)0x5302, (q15_t)0x612D, (q15_t)0x534E, (q15_t)0x60EC, (q15_t)0x539B, (q15_t)0x60AA, (q15_t)0x53E7, (q15_t)0x6068, (q15_t)0x5433, (q15_t)0x6026, (q15_t)0x547E, (q15_t)0x5FE3, (q15_t)0x54CA, (q15_t)0x5FA0, (q15_t)0x5515, (q15_t)0x5F5E, (q15_t)0x5560, (q15_t)0x5F1A, (q15_t)0x55AB, (q15_t)0x5ED7, (q15_t)0x55F5, (q15_t)0x5E93, (q15_t)0x5640, (q15_t)0x5E50, (q15_t)0x568A, (q15_t)0x5E0B, (q15_t)0x56D4, (q15_t)0x5DC7, (q15_t)0x571D, (q15_t)0x5D83, (q15_t)0x5767, (q15_t)0x5D3E, (q15_t)0x57B0, (q15_t)0x5CF9, (q15_t)0x57F9, (q15_t)0x5CB4, (q15_t)0x5842, (q15_t)0x5C6E, (q15_t)0x588B, (q15_t)0x5C29, (q15_t)0x58D4, (q15_t)0x5BE3, (q15_t)0x591C, (q15_t)0x5B9D, (q15_t)0x5964, (q15_t)0x5B56, (q15_t)0x59AC, (q15_t)0x5B10, (q15_t)0x59F3, (q15_t)0x5AC9, (q15_t)0x5A3B, (q15_t)0x5A82, (q15_t)0x5A82, (q15_t)0x5A3B, (q15_t)0x5AC9, (q15_t)0x59F3, (q15_t)0x5B10, (q15_t)0x59AC, (q15_t)0x5B56, (q15_t)0x5964, (q15_t)0x5B9D, (q15_t)0x591C, (q15_t)0x5BE3, (q15_t)0x58D4, (q15_t)0x5C29, (q15_t)0x588B, (q15_t)0x5C6E, (q15_t)0x5842, (q15_t)0x5CB4, (q15_t)0x57F9, (q15_t)0x5CF9, (q15_t)0x57B0, (q15_t)0x5D3E, (q15_t)0x5767, (q15_t)0x5D83, (q15_t)0x571D, (q15_t)0x5DC7, (q15_t)0x56D4, (q15_t)0x5E0B, (q15_t)0x568A, (q15_t)0x5E50, (q15_t)0x5640, (q15_t)0x5E93, (q15_t)0x55F5, (q15_t)0x5ED7, (q15_t)0x55AB, (q15_t)0x5F1A, (q15_t)0x5560, (q15_t)0x5F5E, (q15_t)0x5515, (q15_t)0x5FA0, (q15_t)0x54CA, (q15_t)0x5FE3, (q15_t)0x547E, (q15_t)0x6026, (q15_t)0x5433, (q15_t)0x6068, (q15_t)0x53E7, (q15_t)0x60AA, (q15_t)0x539B, (q15_t)0x60EC, (q15_t)0x534E, (q15_t)0x612D, (q15_t)0x5302, (q15_t)0x616F, (q15_t)0x52B5, (q15_t)0x61B0, (q15_t)0x5269, (q15_t)0x61F1, (q15_t)0x521C, (q15_t)0x6231, (q15_t)0x51CE, (q15_t)0x6271, (q15_t)0x5181, (q15_t)0x62B2, (q15_t)0x5133, (q15_t)0x62F2, (q15_t)0x50E5, (q15_t)0x6331, (q15_t)0x5097, (q15_t)0x6371, (q15_t)0x5049, (q15_t)0x63B0, (q15_t)0x4FFB, (q15_t)0x63EF, (q15_t)0x4FAC, (q15_t)0x642D, (q15_t)0x4F5E, (q15_t)0x646C, (q15_t)0x4F0F, (q15_t)0x64AA, (q15_t)0x4EBF, (q15_t)0x64E8, (q15_t)0x4E70, (q15_t)0x6526, (q15_t)0x4E21, (q15_t)0x6563, (q15_t)0x4DD1, (q15_t)0x65A0, (q15_t)0x4D81, (q15_t)0x65DD, (q15_t)0x4D31, (q15_t)0x661A, (q15_t)0x4CE1, (q15_t)0x6657, (q15_t)0x4C90, (q15_t)0x6693, (q15_t)0x4C3F, (q15_t)0x66CF, (q15_t)0x4BEF, (q15_t)0x670B, (q15_t)0x4B9E, (q15_t)0x6746, (q15_t)0x4B4C, (q15_t)0x6782, (q15_t)0x4AFB, (q15_t)0x67BD, (q15_t)0x4AA9, (q15_t)0x67F7, (q15_t)0x4A58, (q15_t)0x6832, (q15_t)0x4A06, (q15_t)0x686C, (q15_t)0x49B4, (q15_t)0x68A6, (q15_t)0x4961, (q15_t)0x68E0, (q15_t)0x490F, (q15_t)0x6919, (q15_t)0x48BC, (q15_t)0x6953, (q15_t)0x4869, (q15_t)0x698C, (q15_t)0x4816, (q15_t)0x69C4, (q15_t)0x47C3, (q15_t)0x69FD, (q15_t)0x4770, (q15_t)0x6A35, (q15_t)0x471C, (q15_t)0x6A6D, (q15_t)0x46C9, (q15_t)0x6AA5, (q15_t)0x4675, (q15_t)0x6ADC, (q15_t)0x4621, (q15_t)0x6B13, (q15_t)0x45CD, (q15_t)0x6B4A, (q15_t)0x4578, (q15_t)0x6B81, (q15_t)0x4524, (q15_t)0x6BB8, (q15_t)0x44CF, (q15_t)0x6BEE, (q15_t)0x447A, (q15_t)0x6C24, (q15_t)0x4425, (q15_t)0x6C59, (q15_t)0x43D0, (q15_t)0x6C8F, (q15_t)0x437B, (q15_t)0x6CC4, (q15_t)0x4325, (q15_t)0x6CF9, (q15_t)0x42D0, (q15_t)0x6D2D, (q15_t)0x427A, (q15_t)0x6D62, (q15_t)0x4224, (q15_t)0x6D96, (q15_t)0x41CE, (q15_t)0x6DCA, (q15_t)0x4177, (q15_t)0x6DFD, (q15_t)0x4121, (q15_t)0x6E30, (q15_t)0x40CA, (q15_t)0x6E63, (q15_t)0x4073, (q15_t)0x6E96, (q15_t)0x401D, (q15_t)0x6EC9, (q15_t)0x3FC5, (q15_t)0x6EFB, (q15_t)0x3F6E, (q15_t)0x6F2D, (q15_t)0x3F17, (q15_t)0x6F5F, (q15_t)0x3EBF, (q15_t)0x6F90, (q15_t)0x3E68, (q15_t)0x6FC1, (q15_t)0x3E10, (q15_t)0x6FF2, (q15_t)0x3DB8, (q15_t)0x7023, (q15_t)0x3D60, (q15_t)0x7053, (q15_t)0x3D07, (q15_t)0x7083, (q15_t)0x3CAF, (q15_t)0x70B3, (q15_t)0x3C56, (q15_t)0x70E2, (q15_t)0x3BFD, (q15_t)0x7112, (q15_t)0x3BA5, (q15_t)0x7141, (q15_t)0x3B4C, (q15_t)0x716F, (q15_t)0x3AF2, (q15_t)0x719E, (q15_t)0x3A99, (q15_t)0x71CC, (q15_t)0x3A40, (q15_t)0x71FA, (q15_t)0x39E6, (q15_t)0x7227, (q15_t)0x398C, (q15_t)0x7255, (q15_t)0x3932, (q15_t)0x7282, (q15_t)0x38D8, (q15_t)0x72AF, (q15_t)0x387E, (q15_t)0x72DB, (q15_t)0x3824, (q15_t)0x7307, (q15_t)0x37CA, (q15_t)0x7333, (q15_t)0x376F, (q15_t)0x735F, (q15_t)0x3714, (q15_t)0x738A, (q15_t)0x36BA, (q15_t)0x73B5, (q15_t)0x365F, (q15_t)0x73E0, (q15_t)0x3604, (q15_t)0x740B, (q15_t)0x35A8, (q15_t)0x7435, (q15_t)0x354D, (q15_t)0x745F, (q15_t)0x34F2, (q15_t)0x7489, (q15_t)0x3496, (q15_t)0x74B2, (q15_t)0x343A, (q15_t)0x74DB, (q15_t)0x33DE, (q15_t)0x7504, (q15_t)0x3382, (q15_t)0x752D, (q15_t)0x3326, (q15_t)0x7555, (q15_t)0x32CA, (q15_t)0x757D, (q15_t)0x326E, (q15_t)0x75A5, (q15_t)0x3211, (q15_t)0x75CC, (q15_t)0x31B5, (q15_t)0x75F4, (q15_t)0x3158, (q15_t)0x761B, (q15_t)0x30FB, (q15_t)0x7641, (q15_t)0x309E, (q15_t)0x7668, (q15_t)0x3041, (q15_t)0x768E, (q15_t)0x2FE4, (q15_t)0x76B3, (q15_t)0x2F87, (q15_t)0x76D9, (q15_t)0x2F29, (q15_t)0x76FE, (q15_t)0x2ECC, (q15_t)0x7723, (q15_t)0x2E6E, (q15_t)0x7747, (q15_t)0x2E11, (q15_t)0x776C, (q15_t)0x2DB3, (q15_t)0x7790, (q15_t)0x2D55, (q15_t)0x77B4, (q15_t)0x2CF7, (q15_t)0x77D7, (q15_t)0x2C98, (q15_t)0x77FA, (q15_t)0x2C3A, (q15_t)0x781D, (q15_t)0x2BDC, (q15_t)0x7840, (q15_t)0x2B7D, (q15_t)0x7862, (q15_t)0x2B1F, (q15_t)0x7884, (q15_t)0x2AC0, (q15_t)0x78A6, (q15_t)0x2A61, (q15_t)0x78C7, (q15_t)0x2A02, (q15_t)0x78E8, (q15_t)0x29A3, (q15_t)0x7909, (q15_t)0x2944, (q15_t)0x792A, (q15_t)0x28E5, (q15_t)0x794A, (q15_t)0x2886, (q15_t)0x796A, (q15_t)0x2826, (q15_t)0x798A, (q15_t)0x27C7, (q15_t)0x79A9, (q15_t)0x2767, (q15_t)0x79C8, (q15_t)0x2707, (q15_t)0x79E7, (q15_t)0x26A8, (q15_t)0x7A05, (q15_t)0x2648, (q15_t)0x7A24, (q15_t)0x25E8, (q15_t)0x7A42, (q15_t)0x2588, (q15_t)0x7A5F, (q15_t)0x2528, (q15_t)0x7A7D, (q15_t)0x24C7, (q15_t)0x7A9A, (q15_t)0x2467, (q15_t)0x7AB6, (q15_t)0x2407, (q15_t)0x7AD3, (q15_t)0x23A6, (q15_t)0x7AEF, (q15_t)0x2345, (q15_t)0x7B0B, (q15_t)0x22E5, (q15_t)0x7B26, (q15_t)0x2284, (q15_t)0x7B42, (q15_t)0x2223, (q15_t)0x7B5D, (q15_t)0x21C2, (q15_t)0x7B77, (q15_t)0x2161, (q15_t)0x7B92, (q15_t)0x2100, (q15_t)0x7BAC, (q15_t)0x209F, (q15_t)0x7BC5, (q15_t)0x203E, (q15_t)0x7BDF, (q15_t)0x1FDC, (q15_t)0x7BF8, (q15_t)0x1F7B, (q15_t)0x7C11, (q15_t)0x1F19, (q15_t)0x7C29, (q15_t)0x1EB8, (q15_t)0x7C42, (q15_t)0x1E56, (q15_t)0x7C5A, (q15_t)0x1DF5, (q15_t)0x7C71, (q15_t)0x1D93, (q15_t)0x7C89, (q15_t)0x1D31, (q15_t)0x7CA0, (q15_t)0x1CCF, (q15_t)0x7CB7, (q15_t)0x1C6D, (q15_t)0x7CCD, (q15_t)0x1C0B, (q15_t)0x7CE3, (q15_t)0x1BA9, (q15_t)0x7CF9, (q15_t)0x1B47, (q15_t)0x7D0F, (q15_t)0x1AE4, (q15_t)0x7D24, (q15_t)0x1A82, (q15_t)0x7D39, (q15_t)0x1A20, (q15_t)0x7D4E, (q15_t)0x19BD, (q15_t)0x7D62, (q15_t)0x195B, (q15_t)0x7D76, (q15_t)0x18F8, (q15_t)0x7D8A, (q15_t)0x1896, (q15_t)0x7D9D, (q15_t)0x1833, (q15_t)0x7DB0, (q15_t)0x17D0, (q15_t)0x7DC3, (q15_t)0x176D, (q15_t)0x7DD6, (q15_t)0x170A, (q15_t)0x7DE8, (q15_t)0x16A8, (q15_t)0x7DFA, (q15_t)0x1645, (q15_t)0x7E0C, (q15_t)0x15E2, (q15_t)0x7E1D, (q15_t)0x157F, (q15_t)0x7E2E, (q15_t)0x151B, (q15_t)0x7E3F, (q15_t)0x14B8, (q15_t)0x7E4F, (q15_t)0x1455, (q15_t)0x7E5F, (q15_t)0x13F2, (q15_t)0x7E6F, (q15_t)0x138E, (q15_t)0x7E7F, (q15_t)0x132B, (q15_t)0x7E8E, (q15_t)0x12C8, (q15_t)0x7E9D, (q15_t)0x1264, (q15_t)0x7EAB, (q15_t)0x1201, (q15_t)0x7EBA, (q15_t)0x119D, (q15_t)0x7EC8, (q15_t)0x1139, (q15_t)0x7ED5, (q15_t)0x10D6, (q15_t)0x7EE3, (q15_t)0x1072, (q15_t)0x7EF0, (q15_t)0x100E, (q15_t)0x7EFD, (q15_t)0x0FAB, (q15_t)0x7F09, (q15_t)0x0F47, (q15_t)0x7F15, (q15_t)0x0EE3, (q15_t)0x7F21, (q15_t)0x0E7F, (q15_t)0x7F2D, (q15_t)0x0E1B, (q15_t)0x7F38, (q15_t)0x0DB7, (q15_t)0x7F43, (q15_t)0x0D53, (q15_t)0x7F4D, (q15_t)0x0CEF, (q15_t)0x7F58, (q15_t)0x0C8B, (q15_t)0x7F62, (q15_t)0x0C27, (q15_t)0x7F6B, (q15_t)0x0BC3, (q15_t)0x7F75, (q15_t)0x0B5F, (q15_t)0x7F7E, (q15_t)0x0AFB, (q15_t)0x7F87, (q15_t)0x0A97, (q15_t)0x7F8F, (q15_t)0x0A33, (q15_t)0x7F97, (q15_t)0x09CE, (q15_t)0x7F9F, (q15_t)0x096A, (q15_t)0x7FA7, (q15_t)0x0906, (q15_t)0x7FAE, (q15_t)0x08A2, (q15_t)0x7FB5, (q15_t)0x083D, (q15_t)0x7FBC, (q15_t)0x07D9, (q15_t)0x7FC2, (q15_t)0x0775, (q15_t)0x7FC8, (q15_t)0x0710, (q15_t)0x7FCE, (q15_t)0x06AC, (q15_t)0x7FD3, (q15_t)0x0647, (q15_t)0x7FD8, (q15_t)0x05E3, (q15_t)0x7FDD, (q15_t)0x057F, (q15_t)0x7FE1, (q15_t)0x051A, (q15_t)0x7FE5, (q15_t)0x04B6, (q15_t)0x7FE9, (q15_t)0x0451, (q15_t)0x7FED, (q15_t)0x03ED, (q15_t)0x7FF0, (q15_t)0x0388, (q15_t)0x7FF3, (q15_t)0x0324, (q15_t)0x7FF6, (q15_t)0x02BF, (q15_t)0x7FF8, (q15_t)0x025B, (q15_t)0x7FFA, (q15_t)0x01F6, (q15_t)0x7FFC, (q15_t)0x0192, (q15_t)0x7FFD, (q15_t)0x012D, (q15_t)0x7FFE, (q15_t)0x00C9, (q15_t)0x7FFF, (q15_t)0x0064, (q15_t)0x7FFF, (q15_t)0x0000, (q15_t)0x7FFF, (q15_t)0xFF9B, (q15_t)0x7FFF, (q15_t)0xFF36, (q15_t)0x7FFF, (q15_t)0xFED2, (q15_t)0x7FFE, (q15_t)0xFE6D, (q15_t)0x7FFD, (q15_t)0xFE09, (q15_t)0x7FFC, (q15_t)0xFDA4, (q15_t)0x7FFA, (q15_t)0xFD40, (q15_t)0x7FF8, (q15_t)0xFCDB, (q15_t)0x7FF6, (q15_t)0xFC77, (q15_t)0x7FF3, (q15_t)0xFC12, (q15_t)0x7FF0, (q15_t)0xFBAE, (q15_t)0x7FED, (q15_t)0xFB49, (q15_t)0x7FE9, (q15_t)0xFAE5, (q15_t)0x7FE5, (q15_t)0xFA80, (q15_t)0x7FE1, (q15_t)0xFA1C, (q15_t)0x7FDD, (q15_t)0xF9B8, (q15_t)0x7FD8, (q15_t)0xF953, (q15_t)0x7FD3, (q15_t)0xF8EF, (q15_t)0x7FCE, (q15_t)0xF88A, (q15_t)0x7FC8, (q15_t)0xF826, (q15_t)0x7FC2, (q15_t)0xF7C2, (q15_t)0x7FBC, (q15_t)0xF75D, (q15_t)0x7FB5, (q15_t)0xF6F9, (q15_t)0x7FAE, (q15_t)0xF695, (q15_t)0x7FA7, (q15_t)0xF631, (q15_t)0x7F9F, (q15_t)0xF5CC, (q15_t)0x7F97, (q15_t)0xF568, (q15_t)0x7F8F, (q15_t)0xF504, (q15_t)0x7F87, (q15_t)0xF4A0, (q15_t)0x7F7E, (q15_t)0xF43C, (q15_t)0x7F75, (q15_t)0xF3D8, (q15_t)0x7F6B, (q15_t)0xF374, (q15_t)0x7F62, (q15_t)0xF310, (q15_t)0x7F58, (q15_t)0xF2AC, (q15_t)0x7F4D, (q15_t)0xF248, (q15_t)0x7F43, (q15_t)0xF1E4, (q15_t)0x7F38, (q15_t)0xF180, (q15_t)0x7F2D, (q15_t)0xF11C, (q15_t)0x7F21, (q15_t)0xF0B8, (q15_t)0x7F15, (q15_t)0xF054, (q15_t)0x7F09, (q15_t)0xEFF1, (q15_t)0x7EFD, (q15_t)0xEF8D, (q15_t)0x7EF0, (q15_t)0xEF29, (q15_t)0x7EE3, (q15_t)0xEEC6, (q15_t)0x7ED5, (q15_t)0xEE62, (q15_t)0x7EC8, (q15_t)0xEDFE, (q15_t)0x7EBA, (q15_t)0xED9B, (q15_t)0x7EAB, (q15_t)0xED37, (q15_t)0x7E9D, (q15_t)0xECD4, (q15_t)0x7E8E, (q15_t)0xEC71, (q15_t)0x7E7F, (q15_t)0xEC0D, (q15_t)0x7E6F, (q15_t)0xEBAA, (q15_t)0x7E5F, (q15_t)0xEB47, (q15_t)0x7E4F, (q15_t)0xEAE4, (q15_t)0x7E3F, (q15_t)0xEA80, (q15_t)0x7E2E, (q15_t)0xEA1D, (q15_t)0x7E1D, (q15_t)0xE9BA, (q15_t)0x7E0C, (q15_t)0xE957, (q15_t)0x7DFA, (q15_t)0xE8F5, (q15_t)0x7DE8, (q15_t)0xE892, (q15_t)0x7DD6, (q15_t)0xE82F, (q15_t)0x7DC3, (q15_t)0xE7CC, (q15_t)0x7DB0, (q15_t)0xE769, (q15_t)0x7D9D, (q15_t)0xE707, (q15_t)0x7D8A, (q15_t)0xE6A4, (q15_t)0x7D76, (q15_t)0xE642, (q15_t)0x7D62, (q15_t)0xE5DF, (q15_t)0x7D4E, (q15_t)0xE57D, (q15_t)0x7D39, (q15_t)0xE51B, (q15_t)0x7D24, (q15_t)0xE4B8, (q15_t)0x7D0F, (q15_t)0xE456, (q15_t)0x7CF9, (q15_t)0xE3F4, (q15_t)0x7CE3, (q15_t)0xE392, (q15_t)0x7CCD, (q15_t)0xE330, (q15_t)0x7CB7, (q15_t)0xE2CE, (q15_t)0x7CA0, (q15_t)0xE26C, (q15_t)0x7C89, (q15_t)0xE20A, (q15_t)0x7C71, (q15_t)0xE1A9, (q15_t)0x7C5A, (q15_t)0xE147, (q15_t)0x7C42, (q15_t)0xE0E6, (q15_t)0x7C29, (q15_t)0xE084, (q15_t)0x7C11, (q15_t)0xE023, (q15_t)0x7BF8, (q15_t)0xDFC1, (q15_t)0x7BDF, (q15_t)0xDF60, (q15_t)0x7BC5, (q15_t)0xDEFF, (q15_t)0x7BAC, (q15_t)0xDE9E, (q15_t)0x7B92, (q15_t)0xDE3D, (q15_t)0x7B77, (q15_t)0xDDDC, (q15_t)0x7B5D, (q15_t)0xDD7B, (q15_t)0x7B42, (q15_t)0xDD1A, (q15_t)0x7B26, (q15_t)0xDCBA, (q15_t)0x7B0B, (q15_t)0xDC59, (q15_t)0x7AEF, (q15_t)0xDBF8, (q15_t)0x7AD3, (q15_t)0xDB98, (q15_t)0x7AB6, (q15_t)0xDB38, (q15_t)0x7A9A, (q15_t)0xDAD7, (q15_t)0x7A7D, (q15_t)0xDA77, (q15_t)0x7A5F, (q15_t)0xDA17, (q15_t)0x7A42, (q15_t)0xD9B7, (q15_t)0x7A24, (q15_t)0xD957, (q15_t)0x7A05, (q15_t)0xD8F8, (q15_t)0x79E7, (q15_t)0xD898, (q15_t)0x79C8, (q15_t)0xD838, (q15_t)0x79A9, (q15_t)0xD7D9, (q15_t)0x798A, (q15_t)0xD779, (q15_t)0x796A, (q15_t)0xD71A, (q15_t)0x794A, (q15_t)0xD6BB, (q15_t)0x792A, (q15_t)0xD65C, (q15_t)0x7909, (q15_t)0xD5FD, (q15_t)0x78E8, (q15_t)0xD59E, (q15_t)0x78C7, (q15_t)0xD53F, (q15_t)0x78A6, (q15_t)0xD4E0, (q15_t)0x7884, (q15_t)0xD482, (q15_t)0x7862, (q15_t)0xD423, (q15_t)0x7840, (q15_t)0xD3C5, (q15_t)0x781D, (q15_t)0xD367, (q15_t)0x77FA, (q15_t)0xD308, (q15_t)0x77D7, (q15_t)0xD2AA, (q15_t)0x77B4, (q15_t)0xD24C, (q15_t)0x7790, (q15_t)0xD1EE, (q15_t)0x776C, (q15_t)0xD191, (q15_t)0x7747, (q15_t)0xD133, (q15_t)0x7723, (q15_t)0xD0D6, (q15_t)0x76FE, (q15_t)0xD078, (q15_t)0x76D9, (q15_t)0xD01B, (q15_t)0x76B3, (q15_t)0xCFBE, (q15_t)0x768E, (q15_t)0xCF61, (q15_t)0x7668, (q15_t)0xCF04, (q15_t)0x7641, (q15_t)0xCEA7, (q15_t)0x761B, (q15_t)0xCE4A, (q15_t)0x75F4, (q15_t)0xCDEE, (q15_t)0x75CC, (q15_t)0xCD91, (q15_t)0x75A5, (q15_t)0xCD35, (q15_t)0x757D, (q15_t)0xCCD9, (q15_t)0x7555, (q15_t)0xCC7D, (q15_t)0x752D, (q15_t)0xCC21, (q15_t)0x7504, (q15_t)0xCBC5, (q15_t)0x74DB, (q15_t)0xCB69, (q15_t)0x74B2, (q15_t)0xCB0D, (q15_t)0x7489, (q15_t)0xCAB2, (q15_t)0x745F, (q15_t)0xCA57, (q15_t)0x7435, (q15_t)0xC9FB, (q15_t)0x740B, (q15_t)0xC9A0, (q15_t)0x73E0, (q15_t)0xC945, (q15_t)0x73B5, (q15_t)0xC8EB, (q15_t)0x738A, (q15_t)0xC890, (q15_t)0x735F, (q15_t)0xC835, (q15_t)0x7333, (q15_t)0xC7DB, (q15_t)0x7307, (q15_t)0xC781, (q15_t)0x72DB, (q15_t)0xC727, (q15_t)0x72AF, (q15_t)0xC6CD, (q15_t)0x7282, (q15_t)0xC673, (q15_t)0x7255, (q15_t)0xC619, (q15_t)0x7227, (q15_t)0xC5BF, (q15_t)0x71FA, (q15_t)0xC566, (q15_t)0x71CC, (q15_t)0xC50D, (q15_t)0x719E, (q15_t)0xC4B3, (q15_t)0x716F, (q15_t)0xC45A, (q15_t)0x7141, (q15_t)0xC402, (q15_t)0x7112, (q15_t)0xC3A9, (q15_t)0x70E2, (q15_t)0xC350, (q15_t)0x70B3, (q15_t)0xC2F8, (q15_t)0x7083, (q15_t)0xC29F, (q15_t)0x7053, (q15_t)0xC247, (q15_t)0x7023, (q15_t)0xC1EF, (q15_t)0x6FF2, (q15_t)0xC197, (q15_t)0x6FC1, (q15_t)0xC140, (q15_t)0x6F90, (q15_t)0xC0E8, (q15_t)0x6F5F, (q15_t)0xC091, (q15_t)0x6F2D, (q15_t)0xC03A, (q15_t)0x6EFB, (q15_t)0xBFE2, (q15_t)0x6EC9, (q15_t)0xBF8C, (q15_t)0x6E96, (q15_t)0xBF35, (q15_t)0x6E63, (q15_t)0xBEDE, (q15_t)0x6E30, (q15_t)0xBE88, (q15_t)0x6DFD, (q15_t)0xBE31, (q15_t)0x6DCA, (q15_t)0xBDDB, (q15_t)0x6D96, (q15_t)0xBD85, (q15_t)0x6D62, (q15_t)0xBD2F, (q15_t)0x6D2D, (q15_t)0xBCDA, (q15_t)0x6CF9, (q15_t)0xBC84, (q15_t)0x6CC4, (q15_t)0xBC2F, (q15_t)0x6C8F, (q15_t)0xBBDA, (q15_t)0x6C59, (q15_t)0xBB85, (q15_t)0x6C24, (q15_t)0xBB30, (q15_t)0x6BEE, (q15_t)0xBADB, (q15_t)0x6BB8, (q15_t)0xBA87, (q15_t)0x6B81, (q15_t)0xBA32, (q15_t)0x6B4A, (q15_t)0xB9DE, (q15_t)0x6B13, (q15_t)0xB98A, (q15_t)0x6ADC, (q15_t)0xB936, (q15_t)0x6AA5, (q15_t)0xB8E3, (q15_t)0x6A6D, (q15_t)0xB88F, (q15_t)0x6A35, (q15_t)0xB83C, (q15_t)0x69FD, (q15_t)0xB7E9, (q15_t)0x69C4, (q15_t)0xB796, (q15_t)0x698C, (q15_t)0xB743, (q15_t)0x6953, (q15_t)0xB6F0, (q15_t)0x6919, (q15_t)0xB69E, (q15_t)0x68E0, (q15_t)0xB64B, (q15_t)0x68A6, (q15_t)0xB5F9, (q15_t)0x686C, (q15_t)0xB5A7, (q15_t)0x6832, (q15_t)0xB556, (q15_t)0x67F7, (q15_t)0xB504, (q15_t)0x67BD, (q15_t)0xB4B3, (q15_t)0x6782, (q15_t)0xB461, (q15_t)0x6746, (q15_t)0xB410, (q15_t)0x670B, (q15_t)0xB3C0, (q15_t)0x66CF, (q15_t)0xB36F, (q15_t)0x6693, (q15_t)0xB31E, (q15_t)0x6657, (q15_t)0xB2CE, (q15_t)0x661A, (q15_t)0xB27E, (q15_t)0x65DD, (q15_t)0xB22E, (q15_t)0x65A0, (q15_t)0xB1DE, (q15_t)0x6563, (q15_t)0xB18F, (q15_t)0x6526, (q15_t)0xB140, (q15_t)0x64E8, (q15_t)0xB0F0, (q15_t)0x64AA, (q15_t)0xB0A1, (q15_t)0x646C, (q15_t)0xB053, (q15_t)0x642D, (q15_t)0xB004, (q15_t)0x63EF, (q15_t)0xAFB6, (q15_t)0x63B0, (q15_t)0xAF68, (q15_t)0x6371, (q15_t)0xAF1A, (q15_t)0x6331, (q15_t)0xAECC, (q15_t)0x62F2, (q15_t)0xAE7E, (q15_t)0x62B2, (q15_t)0xAE31, (q15_t)0x6271, (q15_t)0xADE3, (q15_t)0x6231, (q15_t)0xAD96, (q15_t)0x61F1, (q15_t)0xAD4A, (q15_t)0x61B0, (q15_t)0xACFD, (q15_t)0x616F, (q15_t)0xACB1, (q15_t)0x612D, (q15_t)0xAC64, (q15_t)0x60EC, (q15_t)0xAC18, (q15_t)0x60AA, (q15_t)0xABCC, (q15_t)0x6068, (q15_t)0xAB81, (q15_t)0x6026, (q15_t)0xAB35, (q15_t)0x5FE3, (q15_t)0xAAEA, (q15_t)0x5FA0, (q15_t)0xAA9F, (q15_t)0x5F5E, (q15_t)0xAA54, (q15_t)0x5F1A, (q15_t)0xAA0A, (q15_t)0x5ED7, (q15_t)0xA9BF, (q15_t)0x5E93, (q15_t)0xA975, (q15_t)0x5E50, (q15_t)0xA92B, (q15_t)0x5E0B, (q15_t)0xA8E2, (q15_t)0x5DC7, (q15_t)0xA898, (q15_t)0x5D83, (q15_t)0xA84F, (q15_t)0x5D3E, (q15_t)0xA806, (q15_t)0x5CF9, (q15_t)0xA7BD, (q15_t)0x5CB4, (q15_t)0xA774, (q15_t)0x5C6E, (q15_t)0xA72B, (q15_t)0x5C29, (q15_t)0xA6E3, (q15_t)0x5BE3, (q15_t)0xA69B, (q15_t)0x5B9D, (q15_t)0xA653, (q15_t)0x5B56, (q15_t)0xA60C, (q15_t)0x5B10, (q15_t)0xA5C4, (q15_t)0x5AC9, (q15_t)0xA57D, (q15_t)0x5A82, (q15_t)0xA536, (q15_t)0x5A3B, (q15_t)0xA4EF, (q15_t)0x59F3, (q15_t)0xA4A9, (q15_t)0x59AC, (q15_t)0xA462, (q15_t)0x5964, (q15_t)0xA41C, (q15_t)0x591C, (q15_t)0xA3D6, (q15_t)0x58D4, (q15_t)0xA391, (q15_t)0x588B, (q15_t)0xA34B, (q15_t)0x5842, (q15_t)0xA306, (q15_t)0x57F9, (q15_t)0xA2C1, (q15_t)0x57B0, (q15_t)0xA27C, (q15_t)0x5767, (q15_t)0xA238, (q15_t)0x571D, (q15_t)0xA1F4, (q15_t)0x56D4, (q15_t)0xA1AF, (q15_t)0x568A, (q15_t)0xA16C, (q15_t)0x5640, (q15_t)0xA128, (q15_t)0x55F5, (q15_t)0xA0E5, (q15_t)0x55AB, (q15_t)0xA0A1, (q15_t)0x5560, (q15_t)0xA05F, (q15_t)0x5515, (q15_t)0xA01C, (q15_t)0x54CA, (q15_t)0x9FD9, (q15_t)0x547E, (q15_t)0x9F97, (q15_t)0x5433, (q15_t)0x9F55, (q15_t)0x53E7, (q15_t)0x9F13, (q15_t)0x539B, (q15_t)0x9ED2, (q15_t)0x534E, (q15_t)0x9E90, (q15_t)0x5302, (q15_t)0x9E4F, (q15_t)0x52B5, (q15_t)0x9E0E, (q15_t)0x5269, (q15_t)0x9DCE, (q15_t)0x521C, (q15_t)0x9D8E, (q15_t)0x51CE, (q15_t)0x9D4D, (q15_t)0x5181, (q15_t)0x9D0D, (q15_t)0x5133, (q15_t)0x9CCE, (q15_t)0x50E5, (q15_t)0x9C8E, (q15_t)0x5097, (q15_t)0x9C4F, (q15_t)0x5049, (q15_t)0x9C10, (q15_t)0x4FFB, (q15_t)0x9BD2, (q15_t)0x4FAC, (q15_t)0x9B93, (q15_t)0x4F5E, (q15_t)0x9B55, (q15_t)0x4F0F, (q15_t)0x9B17, (q15_t)0x4EBF, (q15_t)0x9AD9, (q15_t)0x4E70, (q15_t)0x9A9C, (q15_t)0x4E21, (q15_t)0x9A5F, (q15_t)0x4DD1, (q15_t)0x9A22, (q15_t)0x4D81, (q15_t)0x99E5, (q15_t)0x4D31, (q15_t)0x99A8, (q15_t)0x4CE1, (q15_t)0x996C, (q15_t)0x4C90, (q15_t)0x9930, (q15_t)0x4C3F, (q15_t)0x98F4, (q15_t)0x4BEF, (q15_t)0x98B9, (q15_t)0x4B9E, (q15_t)0x987D, (q15_t)0x4B4C, (q15_t)0x9842, (q15_t)0x4AFB, (q15_t)0x9808, (q15_t)0x4AA9, (q15_t)0x97CD, (q15_t)0x4A58, (q15_t)0x9793, (q15_t)0x4A06, (q15_t)0x9759, (q15_t)0x49B4, (q15_t)0x971F, (q15_t)0x4961, (q15_t)0x96E6, (q15_t)0x490F, (q15_t)0x96AC, (q15_t)0x48BC, (q15_t)0x9673, (q15_t)0x4869, (q15_t)0x963B, (q15_t)0x4816, (q15_t)0x9602, (q15_t)0x47C3, (q15_t)0x95CA, (q15_t)0x4770, (q15_t)0x9592, (q15_t)0x471C, (q15_t)0x955A, (q15_t)0x46C9, (q15_t)0x9523, (q15_t)0x4675, (q15_t)0x94EC, (q15_t)0x4621, (q15_t)0x94B5, (q15_t)0x45CD, (q15_t)0x947E, (q15_t)0x4578, (q15_t)0x9447, (q15_t)0x4524, (q15_t)0x9411, (q15_t)0x44CF, (q15_t)0x93DB, (q15_t)0x447A, (q15_t)0x93A6, (q15_t)0x4425, (q15_t)0x9370, (q15_t)0x43D0, (q15_t)0x933B, (q15_t)0x437B, (q15_t)0x9306, (q15_t)0x4325, (q15_t)0x92D2, (q15_t)0x42D0, (q15_t)0x929D, (q15_t)0x427A, (q15_t)0x9269, (q15_t)0x4224, (q15_t)0x9235, (q15_t)0x41CE, (q15_t)0x9202, (q15_t)0x4177, (q15_t)0x91CF, (q15_t)0x4121, (q15_t)0x919C, (q15_t)0x40CA, (q15_t)0x9169, (q15_t)0x4073, (q15_t)0x9136, (q15_t)0x401D, (q15_t)0x9104, (q15_t)0x3FC5, (q15_t)0x90D2, (q15_t)0x3F6E, (q15_t)0x90A0, (q15_t)0x3F17, (q15_t)0x906F, (q15_t)0x3EBF, (q15_t)0x903E, (q15_t)0x3E68, (q15_t)0x900D, (q15_t)0x3E10, (q15_t)0x8FDC, (q15_t)0x3DB8, (q15_t)0x8FAC, (q15_t)0x3D60, (q15_t)0x8F7C, (q15_t)0x3D07, (q15_t)0x8F4C, (q15_t)0x3CAF, (q15_t)0x8F1D, (q15_t)0x3C56, (q15_t)0x8EED, (q15_t)0x3BFD, (q15_t)0x8EBE, (q15_t)0x3BA5, (q15_t)0x8E90, (q15_t)0x3B4C, (q15_t)0x8E61, (q15_t)0x3AF2, (q15_t)0x8E33, (q15_t)0x3A99, (q15_t)0x8E05, (q15_t)0x3A40, (q15_t)0x8DD8, (q15_t)0x39E6, (q15_t)0x8DAA, (q15_t)0x398C, (q15_t)0x8D7D, (q15_t)0x3932, (q15_t)0x8D50, (q15_t)0x38D8, (q15_t)0x8D24, (q15_t)0x387E, (q15_t)0x8CF8, (q15_t)0x3824, (q15_t)0x8CCC, (q15_t)0x37CA, (q15_t)0x8CA0, (q15_t)0x376F, (q15_t)0x8C75, (q15_t)0x3714, (q15_t)0x8C4A, (q15_t)0x36BA, (q15_t)0x8C1F, (q15_t)0x365F, (q15_t)0x8BF4, (q15_t)0x3604, (q15_t)0x8BCA, (q15_t)0x35A8, (q15_t)0x8BA0, (q15_t)0x354D, (q15_t)0x8B76, (q15_t)0x34F2, (q15_t)0x8B4D, (q15_t)0x3496, (q15_t)0x8B24, (q15_t)0x343A, (q15_t)0x8AFB, (q15_t)0x33DE, (q15_t)0x8AD2, (q15_t)0x3382, (q15_t)0x8AAA, (q15_t)0x3326, (q15_t)0x8A82, (q15_t)0x32CA, (q15_t)0x8A5A, (q15_t)0x326E, (q15_t)0x8A33, (q15_t)0x3211, (q15_t)0x8A0B, (q15_t)0x31B5, (q15_t)0x89E4, (q15_t)0x3158, (q15_t)0x89BE, (q15_t)0x30FB, (q15_t)0x8997, (q15_t)0x309E, (q15_t)0x8971, (q15_t)0x3041, (q15_t)0x894C, (q15_t)0x2FE4, (q15_t)0x8926, (q15_t)0x2F87, (q15_t)0x8901, (q15_t)0x2F29, (q15_t)0x88DC, (q15_t)0x2ECC, (q15_t)0x88B8, (q15_t)0x2E6E, (q15_t)0x8893, (q15_t)0x2E11, (q15_t)0x886F, (q15_t)0x2DB3, (q15_t)0x884B, (q15_t)0x2D55, (q15_t)0x8828, (q15_t)0x2CF7, (q15_t)0x8805, (q15_t)0x2C98, (q15_t)0x87E2, (q15_t)0x2C3A, (q15_t)0x87BF, (q15_t)0x2BDC, (q15_t)0x879D, (q15_t)0x2B7D, (q15_t)0x877B, (q15_t)0x2B1F, (q15_t)0x8759, (q15_t)0x2AC0, (q15_t)0x8738, (q15_t)0x2A61, (q15_t)0x8717, (q15_t)0x2A02, (q15_t)0x86F6, (q15_t)0x29A3, (q15_t)0x86D5, (q15_t)0x2944, (q15_t)0x86B5, (q15_t)0x28E5, (q15_t)0x8695, (q15_t)0x2886, (q15_t)0x8675, (q15_t)0x2826, (q15_t)0x8656, (q15_t)0x27C7, (q15_t)0x8637, (q15_t)0x2767, (q15_t)0x8618, (q15_t)0x2707, (q15_t)0x85FA, (q15_t)0x26A8, (q15_t)0x85DB, (q15_t)0x2648, (q15_t)0x85BD, (q15_t)0x25E8, (q15_t)0x85A0, (q15_t)0x2588, (q15_t)0x8582, (q15_t)0x2528, (q15_t)0x8565, (q15_t)0x24C7, (q15_t)0x8549, (q15_t)0x2467, (q15_t)0x852C, (q15_t)0x2407, (q15_t)0x8510, (q15_t)0x23A6, (q15_t)0x84F4, (q15_t)0x2345, (q15_t)0x84D9, (q15_t)0x22E5, (q15_t)0x84BD, (q15_t)0x2284, (q15_t)0x84A2, (q15_t)0x2223, (q15_t)0x8488, (q15_t)0x21C2, (q15_t)0x846D, (q15_t)0x2161, (q15_t)0x8453, (q15_t)0x2100, (q15_t)0x843A, (q15_t)0x209F, (q15_t)0x8420, (q15_t)0x203E, (q15_t)0x8407, (q15_t)0x1FDC, (q15_t)0x83EE, (q15_t)0x1F7B, (q15_t)0x83D6, (q15_t)0x1F19, (q15_t)0x83BD, (q15_t)0x1EB8, (q15_t)0x83A5, (q15_t)0x1E56, (q15_t)0x838E, (q15_t)0x1DF5, (q15_t)0x8376, (q15_t)0x1D93, (q15_t)0x835F, (q15_t)0x1D31, (q15_t)0x8348, (q15_t)0x1CCF, (q15_t)0x8332, (q15_t)0x1C6D, (q15_t)0x831C, (q15_t)0x1C0B, (q15_t)0x8306, (q15_t)0x1BA9, (q15_t)0x82F0, (q15_t)0x1B47, (q15_t)0x82DB, (q15_t)0x1AE4, (q15_t)0x82C6, (q15_t)0x1A82, (q15_t)0x82B1, (q15_t)0x1A20, (q15_t)0x829D, (q15_t)0x19BD, (q15_t)0x8289, (q15_t)0x195B, (q15_t)0x8275, (q15_t)0x18F8, (q15_t)0x8262, (q15_t)0x1896, (q15_t)0x824F, (q15_t)0x1833, (q15_t)0x823C, (q15_t)0x17D0, (q15_t)0x8229, (q15_t)0x176D, (q15_t)0x8217, (q15_t)0x170A, (q15_t)0x8205, (q15_t)0x16A8, (q15_t)0x81F3, (q15_t)0x1645, (q15_t)0x81E2, (q15_t)0x15E2, (q15_t)0x81D1, (q15_t)0x157F, (q15_t)0x81C0, (q15_t)0x151B, (q15_t)0x81B0, (q15_t)0x14B8, (q15_t)0x81A0, (q15_t)0x1455, (q15_t)0x8190, (q15_t)0x13F2, (q15_t)0x8180, (q15_t)0x138E, (q15_t)0x8171, (q15_t)0x132B, (q15_t)0x8162, (q15_t)0x12C8, (q15_t)0x8154, (q15_t)0x1264, (q15_t)0x8145, (q15_t)0x1201, (q15_t)0x8137, (q15_t)0x119D, (q15_t)0x812A, (q15_t)0x1139, (q15_t)0x811C, (q15_t)0x10D6, (q15_t)0x810F, (q15_t)0x1072, (q15_t)0x8102, (q15_t)0x100E, (q15_t)0x80F6, (q15_t)0x0FAB, (q15_t)0x80EA, (q15_t)0x0F47, (q15_t)0x80DE, (q15_t)0x0EE3, (q15_t)0x80D2, (q15_t)0x0E7F, (q15_t)0x80C7, (q15_t)0x0E1B, (q15_t)0x80BC, (q15_t)0x0DB7, (q15_t)0x80B2, (q15_t)0x0D53, (q15_t)0x80A7, (q15_t)0x0CEF, (q15_t)0x809D, (q15_t)0x0C8B, (q15_t)0x8094, (q15_t)0x0C27, (q15_t)0x808A, (q15_t)0x0BC3, (q15_t)0x8081, (q15_t)0x0B5F, (q15_t)0x8078, (q15_t)0x0AFB, (q15_t)0x8070, (q15_t)0x0A97, (q15_t)0x8068, (q15_t)0x0A33, (q15_t)0x8060, (q15_t)0x09CE, (q15_t)0x8058, (q15_t)0x096A, (q15_t)0x8051, (q15_t)0x0906, (q15_t)0x804A, (q15_t)0x08A2, (q15_t)0x8043, (q15_t)0x083D, (q15_t)0x803D, (q15_t)0x07D9, (q15_t)0x8037, (q15_t)0x0775, (q15_t)0x8031, (q15_t)0x0710, (q15_t)0x802C, (q15_t)0x06AC, (q15_t)0x8027, (q15_t)0x0647, (q15_t)0x8022, (q15_t)0x05E3, (q15_t)0x801E, (q15_t)0x057F, (q15_t)0x801A, (q15_t)0x051A, (q15_t)0x8016, (q15_t)0x04B6, (q15_t)0x8012, (q15_t)0x0451, (q15_t)0x800F, (q15_t)0x03ED, (q15_t)0x800C, (q15_t)0x0388, (q15_t)0x8009, (q15_t)0x0324, (q15_t)0x8007, (q15_t)0x02BF, (q15_t)0x8005, (q15_t)0x025B, (q15_t)0x8003, (q15_t)0x01F6, (q15_t)0x8002, (q15_t)0x0192, (q15_t)0x8001, (q15_t)0x012D, (q15_t)0x8000, (q15_t)0x00C9, (q15_t)0x8000, (q15_t)0x0064, (q15_t)0x8000, (q15_t)0x0000, (q15_t)0x8000, (q15_t)0xFF9B, (q15_t)0x8000, (q15_t)0xFF36, (q15_t)0x8001, (q15_t)0xFED2, (q15_t)0x8002, (q15_t)0xFE6D, (q15_t)0x8003, (q15_t)0xFE09, (q15_t)0x8005, (q15_t)0xFDA4, (q15_t)0x8007, (q15_t)0xFD40, (q15_t)0x8009, (q15_t)0xFCDB, (q15_t)0x800C, (q15_t)0xFC77, (q15_t)0x800F, (q15_t)0xFC12, (q15_t)0x8012, (q15_t)0xFBAE, (q15_t)0x8016, (q15_t)0xFB49, (q15_t)0x801A, (q15_t)0xFAE5, (q15_t)0x801E, (q15_t)0xFA80, (q15_t)0x8022, (q15_t)0xFA1C, (q15_t)0x8027, (q15_t)0xF9B8, (q15_t)0x802C, (q15_t)0xF953, (q15_t)0x8031, (q15_t)0xF8EF, (q15_t)0x8037, (q15_t)0xF88A, (q15_t)0x803D, (q15_t)0xF826, (q15_t)0x8043, (q15_t)0xF7C2, (q15_t)0x804A, (q15_t)0xF75D, (q15_t)0x8051, (q15_t)0xF6F9, (q15_t)0x8058, (q15_t)0xF695, (q15_t)0x8060, (q15_t)0xF631, (q15_t)0x8068, (q15_t)0xF5CC, (q15_t)0x8070, (q15_t)0xF568, (q15_t)0x8078, (q15_t)0xF504, (q15_t)0x8081, (q15_t)0xF4A0, (q15_t)0x808A, (q15_t)0xF43C, (q15_t)0x8094, (q15_t)0xF3D8, (q15_t)0x809D, (q15_t)0xF374, (q15_t)0x80A7, (q15_t)0xF310, (q15_t)0x80B2, (q15_t)0xF2AC, (q15_t)0x80BC, (q15_t)0xF248, (q15_t)0x80C7, (q15_t)0xF1E4, (q15_t)0x80D2, (q15_t)0xF180, (q15_t)0x80DE, (q15_t)0xF11C, (q15_t)0x80EA, (q15_t)0xF0B8, (q15_t)0x80F6, (q15_t)0xF054, (q15_t)0x8102, (q15_t)0xEFF1, (q15_t)0x810F, (q15_t)0xEF8D, (q15_t)0x811C, (q15_t)0xEF29, (q15_t)0x812A, (q15_t)0xEEC6, (q15_t)0x8137, (q15_t)0xEE62, (q15_t)0x8145, (q15_t)0xEDFE, (q15_t)0x8154, (q15_t)0xED9B, (q15_t)0x8162, (q15_t)0xED37, (q15_t)0x8171, (q15_t)0xECD4, (q15_t)0x8180, (q15_t)0xEC71, (q15_t)0x8190, (q15_t)0xEC0D, (q15_t)0x81A0, (q15_t)0xEBAA, (q15_t)0x81B0, (q15_t)0xEB47, (q15_t)0x81C0, (q15_t)0xEAE4, (q15_t)0x81D1, (q15_t)0xEA80, (q15_t)0x81E2, (q15_t)0xEA1D, (q15_t)0x81F3, (q15_t)0xE9BA, (q15_t)0x8205, (q15_t)0xE957, (q15_t)0x8217, (q15_t)0xE8F5, (q15_t)0x8229, (q15_t)0xE892, (q15_t)0x823C, (q15_t)0xE82F, (q15_t)0x824F, (q15_t)0xE7CC, (q15_t)0x8262, (q15_t)0xE769, (q15_t)0x8275, (q15_t)0xE707, (q15_t)0x8289, (q15_t)0xE6A4, (q15_t)0x829D, (q15_t)0xE642, (q15_t)0x82B1, (q15_t)0xE5DF, (q15_t)0x82C6, (q15_t)0xE57D, (q15_t)0x82DB, (q15_t)0xE51B, (q15_t)0x82F0, (q15_t)0xE4B8, (q15_t)0x8306, (q15_t)0xE456, (q15_t)0x831C, (q15_t)0xE3F4, (q15_t)0x8332, (q15_t)0xE392, (q15_t)0x8348, (q15_t)0xE330, (q15_t)0x835F, (q15_t)0xE2CE, (q15_t)0x8376, (q15_t)0xE26C, (q15_t)0x838E, (q15_t)0xE20A, (q15_t)0x83A5, (q15_t)0xE1A9, (q15_t)0x83BD, (q15_t)0xE147, (q15_t)0x83D6, (q15_t)0xE0E6, (q15_t)0x83EE, (q15_t)0xE084, (q15_t)0x8407, (q15_t)0xE023, (q15_t)0x8420, (q15_t)0xDFC1, (q15_t)0x843A, (q15_t)0xDF60, (q15_t)0x8453, (q15_t)0xDEFF, (q15_t)0x846D, (q15_t)0xDE9E, (q15_t)0x8488, (q15_t)0xDE3D, (q15_t)0x84A2, (q15_t)0xDDDC, (q15_t)0x84BD, (q15_t)0xDD7B, (q15_t)0x84D9, (q15_t)0xDD1A, (q15_t)0x84F4, (q15_t)0xDCBA, (q15_t)0x8510, (q15_t)0xDC59, (q15_t)0x852C, (q15_t)0xDBF8, (q15_t)0x8549, (q15_t)0xDB98, (q15_t)0x8565, (q15_t)0xDB38, (q15_t)0x8582, (q15_t)0xDAD7, (q15_t)0x85A0, (q15_t)0xDA77, (q15_t)0x85BD, (q15_t)0xDA17, (q15_t)0x85DB, (q15_t)0xD9B7, (q15_t)0x85FA, (q15_t)0xD957, (q15_t)0x8618, (q15_t)0xD8F8, (q15_t)0x8637, (q15_t)0xD898, (q15_t)0x8656, (q15_t)0xD838, (q15_t)0x8675, (q15_t)0xD7D9, (q15_t)0x8695, (q15_t)0xD779, (q15_t)0x86B5, (q15_t)0xD71A, (q15_t)0x86D5, (q15_t)0xD6BB, (q15_t)0x86F6, (q15_t)0xD65C, (q15_t)0x8717, (q15_t)0xD5FD, (q15_t)0x8738, (q15_t)0xD59E, (q15_t)0x8759, (q15_t)0xD53F, (q15_t)0x877B, (q15_t)0xD4E0, (q15_t)0x879D, (q15_t)0xD482, (q15_t)0x87BF, (q15_t)0xD423, (q15_t)0x87E2, (q15_t)0xD3C5, (q15_t)0x8805, (q15_t)0xD367, (q15_t)0x8828, (q15_t)0xD308, (q15_t)0x884B, (q15_t)0xD2AA, (q15_t)0x886F, (q15_t)0xD24C, (q15_t)0x8893, (q15_t)0xD1EE, (q15_t)0x88B8, (q15_t)0xD191, (q15_t)0x88DC, (q15_t)0xD133, (q15_t)0x8901, (q15_t)0xD0D6, (q15_t)0x8926, (q15_t)0xD078, (q15_t)0x894C, (q15_t)0xD01B, (q15_t)0x8971, (q15_t)0xCFBE, (q15_t)0x8997, (q15_t)0xCF61, (q15_t)0x89BE, (q15_t)0xCF04, (q15_t)0x89E4, (q15_t)0xCEA7, (q15_t)0x8A0B, (q15_t)0xCE4A, (q15_t)0x8A33, (q15_t)0xCDEE, (q15_t)0x8A5A, (q15_t)0xCD91, (q15_t)0x8A82, (q15_t)0xCD35, (q15_t)0x8AAA, (q15_t)0xCCD9, (q15_t)0x8AD2, (q15_t)0xCC7D, (q15_t)0x8AFB, (q15_t)0xCC21, (q15_t)0x8B24, (q15_t)0xCBC5, (q15_t)0x8B4D, (q15_t)0xCB69, (q15_t)0x8B76, (q15_t)0xCB0D, (q15_t)0x8BA0, (q15_t)0xCAB2, (q15_t)0x8BCA, (q15_t)0xCA57, (q15_t)0x8BF4, (q15_t)0xC9FB, (q15_t)0x8C1F, (q15_t)0xC9A0, (q15_t)0x8C4A, (q15_t)0xC945, (q15_t)0x8C75, (q15_t)0xC8EB, (q15_t)0x8CA0, (q15_t)0xC890, (q15_t)0x8CCC, (q15_t)0xC835, (q15_t)0x8CF8, (q15_t)0xC7DB, (q15_t)0x8D24, (q15_t)0xC781, (q15_t)0x8D50, (q15_t)0xC727, (q15_t)0x8D7D, (q15_t)0xC6CD, (q15_t)0x8DAA, (q15_t)0xC673, (q15_t)0x8DD8, (q15_t)0xC619, (q15_t)0x8E05, (q15_t)0xC5BF, (q15_t)0x8E33, (q15_t)0xC566, (q15_t)0x8E61, (q15_t)0xC50D, (q15_t)0x8E90, (q15_t)0xC4B3, (q15_t)0x8EBE, (q15_t)0xC45A, (q15_t)0x8EED, (q15_t)0xC402, (q15_t)0x8F1D, (q15_t)0xC3A9, (q15_t)0x8F4C, (q15_t)0xC350, (q15_t)0x8F7C, (q15_t)0xC2F8, (q15_t)0x8FAC, (q15_t)0xC29F, (q15_t)0x8FDC, (q15_t)0xC247, (q15_t)0x900D, (q15_t)0xC1EF, (q15_t)0x903E, (q15_t)0xC197, (q15_t)0x906F, (q15_t)0xC140, (q15_t)0x90A0, (q15_t)0xC0E8, (q15_t)0x90D2, (q15_t)0xC091, (q15_t)0x9104, (q15_t)0xC03A, (q15_t)0x9136, (q15_t)0xBFE2, (q15_t)0x9169, (q15_t)0xBF8C, (q15_t)0x919C, (q15_t)0xBF35, (q15_t)0x91CF, (q15_t)0xBEDE, (q15_t)0x9202, (q15_t)0xBE88, (q15_t)0x9235, (q15_t)0xBE31, (q15_t)0x9269, (q15_t)0xBDDB, (q15_t)0x929D, (q15_t)0xBD85, (q15_t)0x92D2, (q15_t)0xBD2F, (q15_t)0x9306, (q15_t)0xBCDA, (q15_t)0x933B, (q15_t)0xBC84, (q15_t)0x9370, (q15_t)0xBC2F, (q15_t)0x93A6, (q15_t)0xBBDA, (q15_t)0x93DB, (q15_t)0xBB85, (q15_t)0x9411, (q15_t)0xBB30, (q15_t)0x9447, (q15_t)0xBADB, (q15_t)0x947E, (q15_t)0xBA87, (q15_t)0x94B5, (q15_t)0xBA32, (q15_t)0x94EC, (q15_t)0xB9DE, (q15_t)0x9523, (q15_t)0xB98A, (q15_t)0x955A, (q15_t)0xB936, (q15_t)0x9592, (q15_t)0xB8E3, (q15_t)0x95CA, (q15_t)0xB88F, (q15_t)0x9602, (q15_t)0xB83C, (q15_t)0x963B, (q15_t)0xB7E9, (q15_t)0x9673, (q15_t)0xB796, (q15_t)0x96AC, (q15_t)0xB743, (q15_t)0x96E6, (q15_t)0xB6F0, (q15_t)0x971F, (q15_t)0xB69E, (q15_t)0x9759, (q15_t)0xB64B, (q15_t)0x9793, (q15_t)0xB5F9, (q15_t)0x97CD, (q15_t)0xB5A7, (q15_t)0x9808, (q15_t)0xB556, (q15_t)0x9842, (q15_t)0xB504, (q15_t)0x987D, (q15_t)0xB4B3, (q15_t)0x98B9, (q15_t)0xB461, (q15_t)0x98F4, (q15_t)0xB410, (q15_t)0x9930, (q15_t)0xB3C0, (q15_t)0x996C, (q15_t)0xB36F, (q15_t)0x99A8, (q15_t)0xB31E, (q15_t)0x99E5, (q15_t)0xB2CE, (q15_t)0x9A22, (q15_t)0xB27E, (q15_t)0x9A5F, (q15_t)0xB22E, (q15_t)0x9A9C, (q15_t)0xB1DE, (q15_t)0x9AD9, (q15_t)0xB18F, (q15_t)0x9B17, (q15_t)0xB140, (q15_t)0x9B55, (q15_t)0xB0F0, (q15_t)0x9B93, (q15_t)0xB0A1, (q15_t)0x9BD2, (q15_t)0xB053, (q15_t)0x9C10, (q15_t)0xB004, (q15_t)0x9C4F, (q15_t)0xAFB6, (q15_t)0x9C8E, (q15_t)0xAF68, (q15_t)0x9CCE, (q15_t)0xAF1A, (q15_t)0x9D0D, (q15_t)0xAECC, (q15_t)0x9D4D, (q15_t)0xAE7E, (q15_t)0x9D8E, (q15_t)0xAE31, (q15_t)0x9DCE, (q15_t)0xADE3, (q15_t)0x9E0E, (q15_t)0xAD96, (q15_t)0x9E4F, (q15_t)0xAD4A, (q15_t)0x9E90, (q15_t)0xACFD, (q15_t)0x9ED2, (q15_t)0xACB1, (q15_t)0x9F13, (q15_t)0xAC64, (q15_t)0x9F55, (q15_t)0xAC18, (q15_t)0x9F97, (q15_t)0xABCC, (q15_t)0x9FD9, (q15_t)0xAB81, (q15_t)0xA01C, (q15_t)0xAB35, (q15_t)0xA05F, (q15_t)0xAAEA, (q15_t)0xA0A1, (q15_t)0xAA9F, (q15_t)0xA0E5, (q15_t)0xAA54, (q15_t)0xA128, (q15_t)0xAA0A, (q15_t)0xA16C, (q15_t)0xA9BF, (q15_t)0xA1AF, (q15_t)0xA975, (q15_t)0xA1F4, (q15_t)0xA92B, (q15_t)0xA238, (q15_t)0xA8E2, (q15_t)0xA27C, (q15_t)0xA898, (q15_t)0xA2C1, (q15_t)0xA84F, (q15_t)0xA306, (q15_t)0xA806, (q15_t)0xA34B, (q15_t)0xA7BD, (q15_t)0xA391, (q15_t)0xA774, (q15_t)0xA3D6, (q15_t)0xA72B, (q15_t)0xA41C, (q15_t)0xA6E3, (q15_t)0xA462, (q15_t)0xA69B, (q15_t)0xA4A9, (q15_t)0xA653, (q15_t)0xA4EF, (q15_t)0xA60C, (q15_t)0xA536, (q15_t)0xA5C4, (q15_t)0xA57D, (q15_t)0xA57D, (q15_t)0xA5C4, (q15_t)0xA536, (q15_t)0xA60C, (q15_t)0xA4EF, (q15_t)0xA653, (q15_t)0xA4A9, (q15_t)0xA69B, (q15_t)0xA462, (q15_t)0xA6E3, (q15_t)0xA41C, (q15_t)0xA72B, (q15_t)0xA3D6, (q15_t)0xA774, (q15_t)0xA391, (q15_t)0xA7BD, (q15_t)0xA34B, (q15_t)0xA806, (q15_t)0xA306, (q15_t)0xA84F, (q15_t)0xA2C1, (q15_t)0xA898, (q15_t)0xA27C, (q15_t)0xA8E2, (q15_t)0xA238, (q15_t)0xA92B, (q15_t)0xA1F4, (q15_t)0xA975, (q15_t)0xA1AF, (q15_t)0xA9BF, (q15_t)0xA16C, (q15_t)0xAA0A, (q15_t)0xA128, (q15_t)0xAA54, (q15_t)0xA0E5, (q15_t)0xAA9F, (q15_t)0xA0A1, (q15_t)0xAAEA, (q15_t)0xA05F, (q15_t)0xAB35, (q15_t)0xA01C, (q15_t)0xAB81, (q15_t)0x9FD9, (q15_t)0xABCC, (q15_t)0x9F97, (q15_t)0xAC18, (q15_t)0x9F55, (q15_t)0xAC64, (q15_t)0x9F13, (q15_t)0xACB1, (q15_t)0x9ED2, (q15_t)0xACFD, (q15_t)0x9E90, (q15_t)0xAD4A, (q15_t)0x9E4F, (q15_t)0xAD96, (q15_t)0x9E0E, (q15_t)0xADE3, (q15_t)0x9DCE, (q15_t)0xAE31, (q15_t)0x9D8E, (q15_t)0xAE7E, (q15_t)0x9D4D, (q15_t)0xAECC, (q15_t)0x9D0D, (q15_t)0xAF1A, (q15_t)0x9CCE, (q15_t)0xAF68, (q15_t)0x9C8E, (q15_t)0xAFB6, (q15_t)0x9C4F, (q15_t)0xB004, (q15_t)0x9C10, (q15_t)0xB053, (q15_t)0x9BD2, (q15_t)0xB0A1, (q15_t)0x9B93, (q15_t)0xB0F0, (q15_t)0x9B55, (q15_t)0xB140, (q15_t)0x9B17, (q15_t)0xB18F, (q15_t)0x9AD9, (q15_t)0xB1DE, (q15_t)0x9A9C, (q15_t)0xB22E, (q15_t)0x9A5F, (q15_t)0xB27E, (q15_t)0x9A22, (q15_t)0xB2CE, (q15_t)0x99E5, (q15_t)0xB31E, (q15_t)0x99A8, (q15_t)0xB36F, (q15_t)0x996C, (q15_t)0xB3C0, (q15_t)0x9930, (q15_t)0xB410, (q15_t)0x98F4, (q15_t)0xB461, (q15_t)0x98B9, (q15_t)0xB4B3, (q15_t)0x987D, (q15_t)0xB504, (q15_t)0x9842, (q15_t)0xB556, (q15_t)0x9808, (q15_t)0xB5A7, (q15_t)0x97CD, (q15_t)0xB5F9, (q15_t)0x9793, (q15_t)0xB64B, (q15_t)0x9759, (q15_t)0xB69E, (q15_t)0x971F, (q15_t)0xB6F0, (q15_t)0x96E6, (q15_t)0xB743, (q15_t)0x96AC, (q15_t)0xB796, (q15_t)0x9673, (q15_t)0xB7E9, (q15_t)0x963B, (q15_t)0xB83C, (q15_t)0x9602, (q15_t)0xB88F, (q15_t)0x95CA, (q15_t)0xB8E3, (q15_t)0x9592, (q15_t)0xB936, (q15_t)0x955A, (q15_t)0xB98A, (q15_t)0x9523, (q15_t)0xB9DE, (q15_t)0x94EC, (q15_t)0xBA32, (q15_t)0x94B5, (q15_t)0xBA87, (q15_t)0x947E, (q15_t)0xBADB, (q15_t)0x9447, (q15_t)0xBB30, (q15_t)0x9411, (q15_t)0xBB85, (q15_t)0x93DB, (q15_t)0xBBDA, (q15_t)0x93A6, (q15_t)0xBC2F, (q15_t)0x9370, (q15_t)0xBC84, (q15_t)0x933B, (q15_t)0xBCDA, (q15_t)0x9306, (q15_t)0xBD2F, (q15_t)0x92D2, (q15_t)0xBD85, (q15_t)0x929D, (q15_t)0xBDDB, (q15_t)0x9269, (q15_t)0xBE31, (q15_t)0x9235, (q15_t)0xBE88, (q15_t)0x9202, (q15_t)0xBEDE, (q15_t)0x91CF, (q15_t)0xBF35, (q15_t)0x919C, (q15_t)0xBF8C, (q15_t)0x9169, (q15_t)0xBFE2, (q15_t)0x9136, (q15_t)0xC03A, (q15_t)0x9104, (q15_t)0xC091, (q15_t)0x90D2, (q15_t)0xC0E8, (q15_t)0x90A0, (q15_t)0xC140, (q15_t)0x906F, (q15_t)0xC197, (q15_t)0x903E, (q15_t)0xC1EF, (q15_t)0x900D, (q15_t)0xC247, (q15_t)0x8FDC, (q15_t)0xC29F, (q15_t)0x8FAC, (q15_t)0xC2F8, (q15_t)0x8F7C, (q15_t)0xC350, (q15_t)0x8F4C, (q15_t)0xC3A9, (q15_t)0x8F1D, (q15_t)0xC402, (q15_t)0x8EED, (q15_t)0xC45A, (q15_t)0x8EBE, (q15_t)0xC4B3, (q15_t)0x8E90, (q15_t)0xC50D, (q15_t)0x8E61, (q15_t)0xC566, (q15_t)0x8E33, (q15_t)0xC5BF, (q15_t)0x8E05, (q15_t)0xC619, (q15_t)0x8DD8, (q15_t)0xC673, (q15_t)0x8DAA, (q15_t)0xC6CD, (q15_t)0x8D7D, (q15_t)0xC727, (q15_t)0x8D50, (q15_t)0xC781, (q15_t)0x8D24, (q15_t)0xC7DB, (q15_t)0x8CF8, (q15_t)0xC835, (q15_t)0x8CCC, (q15_t)0xC890, (q15_t)0x8CA0, (q15_t)0xC8EB, (q15_t)0x8C75, (q15_t)0xC945, (q15_t)0x8C4A, (q15_t)0xC9A0, (q15_t)0x8C1F, (q15_t)0xC9FB, (q15_t)0x8BF4, (q15_t)0xCA57, (q15_t)0x8BCA, (q15_t)0xCAB2, (q15_t)0x8BA0, (q15_t)0xCB0D, (q15_t)0x8B76, (q15_t)0xCB69, (q15_t)0x8B4D, (q15_t)0xCBC5, (q15_t)0x8B24, (q15_t)0xCC21, (q15_t)0x8AFB, (q15_t)0xCC7D, (q15_t)0x8AD2, (q15_t)0xCCD9, (q15_t)0x8AAA, (q15_t)0xCD35, (q15_t)0x8A82, (q15_t)0xCD91, (q15_t)0x8A5A, (q15_t)0xCDEE, (q15_t)0x8A33, (q15_t)0xCE4A, (q15_t)0x8A0B, (q15_t)0xCEA7, (q15_t)0x89E4, (q15_t)0xCF04, (q15_t)0x89BE, (q15_t)0xCF61, (q15_t)0x8997, (q15_t)0xCFBE, (q15_t)0x8971, (q15_t)0xD01B, (q15_t)0x894C, (q15_t)0xD078, (q15_t)0x8926, (q15_t)0xD0D6, (q15_t)0x8901, (q15_t)0xD133, (q15_t)0x88DC, (q15_t)0xD191, (q15_t)0x88B8, (q15_t)0xD1EE, (q15_t)0x8893, (q15_t)0xD24C, (q15_t)0x886F, (q15_t)0xD2AA, (q15_t)0x884B, (q15_t)0xD308, (q15_t)0x8828, (q15_t)0xD367, (q15_t)0x8805, (q15_t)0xD3C5, (q15_t)0x87E2, (q15_t)0xD423, (q15_t)0x87BF, (q15_t)0xD482, (q15_t)0x879D, (q15_t)0xD4E0, (q15_t)0x877B, (q15_t)0xD53F, (q15_t)0x8759, (q15_t)0xD59E, (q15_t)0x8738, (q15_t)0xD5FD, (q15_t)0x8717, (q15_t)0xD65C, (q15_t)0x86F6, (q15_t)0xD6BB, (q15_t)0x86D5, (q15_t)0xD71A, (q15_t)0x86B5, (q15_t)0xD779, (q15_t)0x8695, (q15_t)0xD7D9, (q15_t)0x8675, (q15_t)0xD838, (q15_t)0x8656, (q15_t)0xD898, (q15_t)0x8637, (q15_t)0xD8F8, (q15_t)0x8618, (q15_t)0xD957, (q15_t)0x85FA, (q15_t)0xD9B7, (q15_t)0x85DB, (q15_t)0xDA17, (q15_t)0x85BD, (q15_t)0xDA77, (q15_t)0x85A0, (q15_t)0xDAD7, (q15_t)0x8582, (q15_t)0xDB38, (q15_t)0x8565, (q15_t)0xDB98, (q15_t)0x8549, (q15_t)0xDBF8, (q15_t)0x852C, (q15_t)0xDC59, (q15_t)0x8510, (q15_t)0xDCBA, (q15_t)0x84F4, (q15_t)0xDD1A, (q15_t)0x84D9, (q15_t)0xDD7B, (q15_t)0x84BD, (q15_t)0xDDDC, (q15_t)0x84A2, (q15_t)0xDE3D, (q15_t)0x8488, (q15_t)0xDE9E, (q15_t)0x846D, (q15_t)0xDEFF, (q15_t)0x8453, (q15_t)0xDF60, (q15_t)0x843A, (q15_t)0xDFC1, (q15_t)0x8420, (q15_t)0xE023, (q15_t)0x8407, (q15_t)0xE084, (q15_t)0x83EE, (q15_t)0xE0E6, (q15_t)0x83D6, (q15_t)0xE147, (q15_t)0x83BD, (q15_t)0xE1A9, (q15_t)0x83A5, (q15_t)0xE20A, (q15_t)0x838E, (q15_t)0xE26C, (q15_t)0x8376, (q15_t)0xE2CE, (q15_t)0x835F, (q15_t)0xE330, (q15_t)0x8348, (q15_t)0xE392, (q15_t)0x8332, (q15_t)0xE3F4, (q15_t)0x831C, (q15_t)0xE456, (q15_t)0x8306, (q15_t)0xE4B8, (q15_t)0x82F0, (q15_t)0xE51B, (q15_t)0x82DB, (q15_t)0xE57D, (q15_t)0x82C6, (q15_t)0xE5DF, (q15_t)0x82B1, (q15_t)0xE642, (q15_t)0x829D, (q15_t)0xE6A4, (q15_t)0x8289, (q15_t)0xE707, (q15_t)0x8275, (q15_t)0xE769, (q15_t)0x8262, (q15_t)0xE7CC, (q15_t)0x824F, (q15_t)0xE82F, (q15_t)0x823C, (q15_t)0xE892, (q15_t)0x8229, (q15_t)0xE8F5, (q15_t)0x8217, (q15_t)0xE957, (q15_t)0x8205, (q15_t)0xE9BA, (q15_t)0x81F3, (q15_t)0xEA1D, (q15_t)0x81E2, (q15_t)0xEA80, (q15_t)0x81D1, (q15_t)0xEAE4, (q15_t)0x81C0, (q15_t)0xEB47, (q15_t)0x81B0, (q15_t)0xEBAA, (q15_t)0x81A0, (q15_t)0xEC0D, (q15_t)0x8190, (q15_t)0xEC71, (q15_t)0x8180, (q15_t)0xECD4, (q15_t)0x8171, (q15_t)0xED37, (q15_t)0x8162, (q15_t)0xED9B, (q15_t)0x8154, (q15_t)0xEDFE, (q15_t)0x8145, (q15_t)0xEE62, (q15_t)0x8137, (q15_t)0xEEC6, (q15_t)0x812A, (q15_t)0xEF29, (q15_t)0x811C, (q15_t)0xEF8D, (q15_t)0x810F, (q15_t)0xEFF1, (q15_t)0x8102, (q15_t)0xF054, (q15_t)0x80F6, (q15_t)0xF0B8, (q15_t)0x80EA, (q15_t)0xF11C, (q15_t)0x80DE, (q15_t)0xF180, (q15_t)0x80D2, (q15_t)0xF1E4, (q15_t)0x80C7, (q15_t)0xF248, (q15_t)0x80BC, (q15_t)0xF2AC, (q15_t)0x80B2, (q15_t)0xF310, (q15_t)0x80A7, (q15_t)0xF374, (q15_t)0x809D, (q15_t)0xF3D8, (q15_t)0x8094, (q15_t)0xF43C, (q15_t)0x808A, (q15_t)0xF4A0, (q15_t)0x8081, (q15_t)0xF504, (q15_t)0x8078, (q15_t)0xF568, (q15_t)0x8070, (q15_t)0xF5CC, (q15_t)0x8068, (q15_t)0xF631, (q15_t)0x8060, (q15_t)0xF695, (q15_t)0x8058, (q15_t)0xF6F9, (q15_t)0x8051, (q15_t)0xF75D, (q15_t)0x804A, (q15_t)0xF7C2, (q15_t)0x8043, (q15_t)0xF826, (q15_t)0x803D, (q15_t)0xF88A, (q15_t)0x8037, (q15_t)0xF8EF, (q15_t)0x8031, (q15_t)0xF953, (q15_t)0x802C, (q15_t)0xF9B8, (q15_t)0x8027, (q15_t)0xFA1C, (q15_t)0x8022, (q15_t)0xFA80, (q15_t)0x801E, (q15_t)0xFAE5, (q15_t)0x801A, (q15_t)0xFB49, (q15_t)0x8016, (q15_t)0xFBAE, (q15_t)0x8012, (q15_t)0xFC12, (q15_t)0x800F, (q15_t)0xFC77, (q15_t)0x800C, (q15_t)0xFCDB, (q15_t)0x8009, (q15_t)0xFD40, (q15_t)0x8007, (q15_t)0xFDA4, (q15_t)0x8005, (q15_t)0xFE09, (q15_t)0x8003, (q15_t)0xFE6D, (q15_t)0x8002, (q15_t)0xFED2, (q15_t)0x8001, (q15_t)0xFF36, (q15_t)0x8000, (q15_t)0xFF9B, (q15_t)0x8000 }; /** @par Example code for q15 Twiddle factors Generation:: @par
for (i = 0; i< 3N/4; i++)
  {
     twiddleCoefq15[2*i]   = cos(i * 2*PI/(float)N);
     twiddleCoefq15[2*i+1] = sin(i * 2*PI/(float)N);
  } 
@par where N = 4096, PI = 3.14159265358979 @par Cos and Sin values are interleaved fashion @par Convert Floating point to q15(Fixed point 1.15): round(twiddleCoefq15(i) * pow(2, 15)) */ const q15_t twiddleCoef_4096_q15[6144] ARM_DSP_TABLE_ATTRIBUTE = { (q15_t)0x7FFF, (q15_t)0x0000, (q15_t)0x7FFF, (q15_t)0x0032, (q15_t)0x7FFF, (q15_t)0x0064, (q15_t)0x7FFF, (q15_t)0x0096, (q15_t)0x7FFF, (q15_t)0x00C9, (q15_t)0x7FFF, (q15_t)0x00FB, (q15_t)0x7FFE, (q15_t)0x012D, (q15_t)0x7FFE, (q15_t)0x015F, (q15_t)0x7FFD, (q15_t)0x0192, (q15_t)0x7FFC, (q15_t)0x01C4, (q15_t)0x7FFC, (q15_t)0x01F6, (q15_t)0x7FFB, (q15_t)0x0228, (q15_t)0x7FFA, (q15_t)0x025B, (q15_t)0x7FF9, (q15_t)0x028D, (q15_t)0x7FF8, (q15_t)0x02BF, (q15_t)0x7FF7, (q15_t)0x02F1, (q15_t)0x7FF6, (q15_t)0x0324, (q15_t)0x7FF4, (q15_t)0x0356, (q15_t)0x7FF3, (q15_t)0x0388, (q15_t)0x7FF2, (q15_t)0x03BA, (q15_t)0x7FF0, (q15_t)0x03ED, (q15_t)0x7FEE, (q15_t)0x041F, (q15_t)0x7FED, (q15_t)0x0451, (q15_t)0x7FEB, (q15_t)0x0483, (q15_t)0x7FE9, (q15_t)0x04B6, (q15_t)0x7FE7, (q15_t)0x04E8, (q15_t)0x7FE5, (q15_t)0x051A, (q15_t)0x7FE3, (q15_t)0x054C, (q15_t)0x7FE1, (q15_t)0x057F, (q15_t)0x7FDF, (q15_t)0x05B1, (q15_t)0x7FDD, (q15_t)0x05E3, (q15_t)0x7FDA, (q15_t)0x0615, (q15_t)0x7FD8, (q15_t)0x0647, (q15_t)0x7FD6, (q15_t)0x067A, (q15_t)0x7FD3, (q15_t)0x06AC, (q15_t)0x7FD0, (q15_t)0x06DE, (q15_t)0x7FCE, (q15_t)0x0710, (q15_t)0x7FCB, (q15_t)0x0742, (q15_t)0x7FC8, (q15_t)0x0775, (q15_t)0x7FC5, (q15_t)0x07A7, (q15_t)0x7FC2, (q15_t)0x07D9, (q15_t)0x7FBF, (q15_t)0x080B, (q15_t)0x7FBC, (q15_t)0x083D, (q15_t)0x7FB8, (q15_t)0x086F, (q15_t)0x7FB5, (q15_t)0x08A2, (q15_t)0x7FB1, (q15_t)0x08D4, (q15_t)0x7FAE, (q15_t)0x0906, (q15_t)0x7FAA, (q15_t)0x0938, (q15_t)0x7FA7, (q15_t)0x096A, (q15_t)0x7FA3, (q15_t)0x099C, (q15_t)0x7F9F, (q15_t)0x09CE, (q15_t)0x7F9B, (q15_t)0x0A00, (q15_t)0x7F97, (q15_t)0x0A33, (q15_t)0x7F93, (q15_t)0x0A65, (q15_t)0x7F8F, (q15_t)0x0A97, (q15_t)0x7F8B, (q15_t)0x0AC9, (q15_t)0x7F87, (q15_t)0x0AFB, (q15_t)0x7F82, (q15_t)0x0B2D, (q15_t)0x7F7E, (q15_t)0x0B5F, (q15_t)0x7F79, (q15_t)0x0B91, (q15_t)0x7F75, (q15_t)0x0BC3, (q15_t)0x7F70, (q15_t)0x0BF5, (q15_t)0x7F6B, (q15_t)0x0C27, (q15_t)0x7F67, (q15_t)0x0C59, (q15_t)0x7F62, (q15_t)0x0C8B, (q15_t)0x7F5D, (q15_t)0x0CBD, (q15_t)0x7F58, (q15_t)0x0CEF, (q15_t)0x7F53, (q15_t)0x0D21, (q15_t)0x7F4D, (q15_t)0x0D53, (q15_t)0x7F48, (q15_t)0x0D85, (q15_t)0x7F43, (q15_t)0x0DB7, (q15_t)0x7F3D, (q15_t)0x0DE9, (q15_t)0x7F38, (q15_t)0x0E1B, (q15_t)0x7F32, (q15_t)0x0E4D, (q15_t)0x7F2D, (q15_t)0x0E7F, (q15_t)0x7F27, (q15_t)0x0EB1, (q15_t)0x7F21, (q15_t)0x0EE3, (q15_t)0x7F1B, (q15_t)0x0F15, (q15_t)0x7F15, (q15_t)0x0F47, (q15_t)0x7F0F, (q15_t)0x0F79, (q15_t)0x7F09, (q15_t)0x0FAB, (q15_t)0x7F03, (q15_t)0x0FDD, (q15_t)0x7EFD, (q15_t)0x100E, (q15_t)0x7EF6, (q15_t)0x1040, (q15_t)0x7EF0, (q15_t)0x1072, (q15_t)0x7EE9, (q15_t)0x10A4, (q15_t)0x7EE3, (q15_t)0x10D6, (q15_t)0x7EDC, (q15_t)0x1108, (q15_t)0x7ED5, (q15_t)0x1139, (q15_t)0x7ECF, (q15_t)0x116B, (q15_t)0x7EC8, (q15_t)0x119D, (q15_t)0x7EC1, (q15_t)0x11CF, (q15_t)0x7EBA, (q15_t)0x1201, (q15_t)0x7EB3, (q15_t)0x1232, (q15_t)0x7EAB, (q15_t)0x1264, (q15_t)0x7EA4, (q15_t)0x1296, (q15_t)0x7E9D, (q15_t)0x12C8, (q15_t)0x7E95, (q15_t)0x12F9, (q15_t)0x7E8E, (q15_t)0x132B, (q15_t)0x7E86, (q15_t)0x135D, (q15_t)0x7E7F, (q15_t)0x138E, (q15_t)0x7E77, (q15_t)0x13C0, (q15_t)0x7E6F, (q15_t)0x13F2, (q15_t)0x7E67, (q15_t)0x1423, (q15_t)0x7E5F, (q15_t)0x1455, (q15_t)0x7E57, (q15_t)0x1487, (q15_t)0x7E4F, (q15_t)0x14B8, (q15_t)0x7E47, (q15_t)0x14EA, (q15_t)0x7E3F, (q15_t)0x151B, (q15_t)0x7E37, (q15_t)0x154D, (q15_t)0x7E2E, (q15_t)0x157F, (q15_t)0x7E26, (q15_t)0x15B0, (q15_t)0x7E1D, (q15_t)0x15E2, (q15_t)0x7E14, (q15_t)0x1613, (q15_t)0x7E0C, (q15_t)0x1645, (q15_t)0x7E03, (q15_t)0x1676, (q15_t)0x7DFA, (q15_t)0x16A8, (q15_t)0x7DF1, (q15_t)0x16D9, (q15_t)0x7DE8, (q15_t)0x170A, (q15_t)0x7DDF, (q15_t)0x173C, (q15_t)0x7DD6, (q15_t)0x176D, (q15_t)0x7DCD, (q15_t)0x179F, (q15_t)0x7DC3, (q15_t)0x17D0, (q15_t)0x7DBA, (q15_t)0x1802, (q15_t)0x7DB0, (q15_t)0x1833, (q15_t)0x7DA7, (q15_t)0x1864, (q15_t)0x7D9D, (q15_t)0x1896, (q15_t)0x7D94, (q15_t)0x18C7, (q15_t)0x7D8A, (q15_t)0x18F8, (q15_t)0x7D80, (q15_t)0x192A, (q15_t)0x7D76, (q15_t)0x195B, (q15_t)0x7D6C, (q15_t)0x198C, (q15_t)0x7D62, (q15_t)0x19BD, (q15_t)0x7D58, (q15_t)0x19EF, (q15_t)0x7D4E, (q15_t)0x1A20, (q15_t)0x7D43, (q15_t)0x1A51, (q15_t)0x7D39, (q15_t)0x1A82, (q15_t)0x7D2F, (q15_t)0x1AB3, (q15_t)0x7D24, (q15_t)0x1AE4, (q15_t)0x7D19, (q15_t)0x1B16, (q15_t)0x7D0F, (q15_t)0x1B47, (q15_t)0x7D04, (q15_t)0x1B78, (q15_t)0x7CF9, (q15_t)0x1BA9, (q15_t)0x7CEE, (q15_t)0x1BDA, (q15_t)0x7CE3, (q15_t)0x1C0B, (q15_t)0x7CD8, (q15_t)0x1C3C, (q15_t)0x7CCD, (q15_t)0x1C6D, (q15_t)0x7CC2, (q15_t)0x1C9E, (q15_t)0x7CB7, (q15_t)0x1CCF, (q15_t)0x7CAB, (q15_t)0x1D00, (q15_t)0x7CA0, (q15_t)0x1D31, (q15_t)0x7C94, (q15_t)0x1D62, (q15_t)0x7C89, (q15_t)0x1D93, (q15_t)0x7C7D, (q15_t)0x1DC4, (q15_t)0x7C71, (q15_t)0x1DF5, (q15_t)0x7C66, (q15_t)0x1E25, (q15_t)0x7C5A, (q15_t)0x1E56, (q15_t)0x7C4E, (q15_t)0x1E87, (q15_t)0x7C42, (q15_t)0x1EB8, (q15_t)0x7C36, (q15_t)0x1EE9, (q15_t)0x7C29, (q15_t)0x1F19, (q15_t)0x7C1D, (q15_t)0x1F4A, (q15_t)0x7C11, (q15_t)0x1F7B, (q15_t)0x7C05, (q15_t)0x1FAC, (q15_t)0x7BF8, (q15_t)0x1FDC, (q15_t)0x7BEB, (q15_t)0x200D, (q15_t)0x7BDF, (q15_t)0x203E, (q15_t)0x7BD2, (q15_t)0x206E, (q15_t)0x7BC5, (q15_t)0x209F, (q15_t)0x7BB9, (q15_t)0x20D0, (q15_t)0x7BAC, (q15_t)0x2100, (q15_t)0x7B9F, (q15_t)0x2131, (q15_t)0x7B92, (q15_t)0x2161, (q15_t)0x7B84, (q15_t)0x2192, (q15_t)0x7B77, (q15_t)0x21C2, (q15_t)0x7B6A, (q15_t)0x21F3, (q15_t)0x7B5D, (q15_t)0x2223, (q15_t)0x7B4F, (q15_t)0x2254, (q15_t)0x7B42, (q15_t)0x2284, (q15_t)0x7B34, (q15_t)0x22B4, (q15_t)0x7B26, (q15_t)0x22E5, (q15_t)0x7B19, (q15_t)0x2315, (q15_t)0x7B0B, (q15_t)0x2345, (q15_t)0x7AFD, (q15_t)0x2376, (q15_t)0x7AEF, (q15_t)0x23A6, (q15_t)0x7AE1, (q15_t)0x23D6, (q15_t)0x7AD3, (q15_t)0x2407, (q15_t)0x7AC5, (q15_t)0x2437, (q15_t)0x7AB6, (q15_t)0x2467, (q15_t)0x7AA8, (q15_t)0x2497, (q15_t)0x7A9A, (q15_t)0x24C7, (q15_t)0x7A8B, (q15_t)0x24F7, (q15_t)0x7A7D, (q15_t)0x2528, (q15_t)0x7A6E, (q15_t)0x2558, (q15_t)0x7A5F, (q15_t)0x2588, (q15_t)0x7A50, (q15_t)0x25B8, (q15_t)0x7A42, (q15_t)0x25E8, (q15_t)0x7A33, (q15_t)0x2618, (q15_t)0x7A24, (q15_t)0x2648, (q15_t)0x7A15, (q15_t)0x2678, (q15_t)0x7A05, (q15_t)0x26A8, (q15_t)0x79F6, (q15_t)0x26D8, (q15_t)0x79E7, (q15_t)0x2707, (q15_t)0x79D8, (q15_t)0x2737, (q15_t)0x79C8, (q15_t)0x2767, (q15_t)0x79B9, (q15_t)0x2797, (q15_t)0x79A9, (q15_t)0x27C7, (q15_t)0x7999, (q15_t)0x27F6, (q15_t)0x798A, (q15_t)0x2826, (q15_t)0x797A, (q15_t)0x2856, (q15_t)0x796A, (q15_t)0x2886, (q15_t)0x795A, (q15_t)0x28B5, (q15_t)0x794A, (q15_t)0x28E5, (q15_t)0x793A, (q15_t)0x2915, (q15_t)0x792A, (q15_t)0x2944, (q15_t)0x7919, (q15_t)0x2974, (q15_t)0x7909, (q15_t)0x29A3, (q15_t)0x78F9, (q15_t)0x29D3, (q15_t)0x78E8, (q15_t)0x2A02, (q15_t)0x78D8, (q15_t)0x2A32, (q15_t)0x78C7, (q15_t)0x2A61, (q15_t)0x78B6, (q15_t)0x2A91, (q15_t)0x78A6, (q15_t)0x2AC0, (q15_t)0x7895, (q15_t)0x2AEF, (q15_t)0x7884, (q15_t)0x2B1F, (q15_t)0x7873, (q15_t)0x2B4E, (q15_t)0x7862, (q15_t)0x2B7D, (q15_t)0x7851, (q15_t)0x2BAD, (q15_t)0x7840, (q15_t)0x2BDC, (q15_t)0x782E, (q15_t)0x2C0B, (q15_t)0x781D, (q15_t)0x2C3A, (q15_t)0x780C, (q15_t)0x2C69, (q15_t)0x77FA, (q15_t)0x2C98, (q15_t)0x77E9, (q15_t)0x2CC8, (q15_t)0x77D7, (q15_t)0x2CF7, (q15_t)0x77C5, (q15_t)0x2D26, (q15_t)0x77B4, (q15_t)0x2D55, (q15_t)0x77A2, (q15_t)0x2D84, (q15_t)0x7790, (q15_t)0x2DB3, (q15_t)0x777E, (q15_t)0x2DE2, (q15_t)0x776C, (q15_t)0x2E11, (q15_t)0x775A, (q15_t)0x2E3F, (q15_t)0x7747, (q15_t)0x2E6E, (q15_t)0x7735, (q15_t)0x2E9D, (q15_t)0x7723, (q15_t)0x2ECC, (q15_t)0x7710, (q15_t)0x2EFB, (q15_t)0x76FE, (q15_t)0x2F29, (q15_t)0x76EB, (q15_t)0x2F58, (q15_t)0x76D9, (q15_t)0x2F87, (q15_t)0x76C6, (q15_t)0x2FB5, (q15_t)0x76B3, (q15_t)0x2FE4, (q15_t)0x76A0, (q15_t)0x3013, (q15_t)0x768E, (q15_t)0x3041, (q15_t)0x767B, (q15_t)0x3070, (q15_t)0x7668, (q15_t)0x309E, (q15_t)0x7654, (q15_t)0x30CD, (q15_t)0x7641, (q15_t)0x30FB, (q15_t)0x762E, (q15_t)0x312A, (q15_t)0x761B, (q15_t)0x3158, (q15_t)0x7607, (q15_t)0x3186, (q15_t)0x75F4, (q15_t)0x31B5, (q15_t)0x75E0, (q15_t)0x31E3, (q15_t)0x75CC, (q15_t)0x3211, (q15_t)0x75B9, (q15_t)0x3240, (q15_t)0x75A5, (q15_t)0x326E, (q15_t)0x7591, (q15_t)0x329C, (q15_t)0x757D, (q15_t)0x32CA, (q15_t)0x7569, (q15_t)0x32F8, (q15_t)0x7555, (q15_t)0x3326, (q15_t)0x7541, (q15_t)0x3354, (q15_t)0x752D, (q15_t)0x3382, (q15_t)0x7519, (q15_t)0x33B0, (q15_t)0x7504, (q15_t)0x33DE, (q15_t)0x74F0, (q15_t)0x340C, (q15_t)0x74DB, (q15_t)0x343A, (q15_t)0x74C7, (q15_t)0x3468, (q15_t)0x74B2, (q15_t)0x3496, (q15_t)0x749E, (q15_t)0x34C4, (q15_t)0x7489, (q15_t)0x34F2, (q15_t)0x7474, (q15_t)0x351F, (q15_t)0x745F, (q15_t)0x354D, (q15_t)0x744A, (q15_t)0x357B, (q15_t)0x7435, (q15_t)0x35A8, (q15_t)0x7420, (q15_t)0x35D6, (q15_t)0x740B, (q15_t)0x3604, (q15_t)0x73F6, (q15_t)0x3631, (q15_t)0x73E0, (q15_t)0x365F, (q15_t)0x73CB, (q15_t)0x368C, (q15_t)0x73B5, (q15_t)0x36BA, (q15_t)0x73A0, (q15_t)0x36E7, (q15_t)0x738A, (q15_t)0x3714, (q15_t)0x7375, (q15_t)0x3742, (q15_t)0x735F, (q15_t)0x376F, (q15_t)0x7349, (q15_t)0x379C, (q15_t)0x7333, (q15_t)0x37CA, (q15_t)0x731D, (q15_t)0x37F7, (q15_t)0x7307, (q15_t)0x3824, (q15_t)0x72F1, (q15_t)0x3851, (q15_t)0x72DB, (q15_t)0x387E, (q15_t)0x72C5, (q15_t)0x38AB, (q15_t)0x72AF, (q15_t)0x38D8, (q15_t)0x7298, (q15_t)0x3906, (q15_t)0x7282, (q15_t)0x3932, (q15_t)0x726B, (q15_t)0x395F, (q15_t)0x7255, (q15_t)0x398C, (q15_t)0x723E, (q15_t)0x39B9, (q15_t)0x7227, (q15_t)0x39E6, (q15_t)0x7211, (q15_t)0x3A13, (q15_t)0x71FA, (q15_t)0x3A40, (q15_t)0x71E3, (q15_t)0x3A6C, (q15_t)0x71CC, (q15_t)0x3A99, (q15_t)0x71B5, (q15_t)0x3AC6, (q15_t)0x719E, (q15_t)0x3AF2, (q15_t)0x7186, (q15_t)0x3B1F, (q15_t)0x716F, (q15_t)0x3B4C, (q15_t)0x7158, (q15_t)0x3B78, (q15_t)0x7141, (q15_t)0x3BA5, (q15_t)0x7129, (q15_t)0x3BD1, (q15_t)0x7112, (q15_t)0x3BFD, (q15_t)0x70FA, (q15_t)0x3C2A, (q15_t)0x70E2, (q15_t)0x3C56, (q15_t)0x70CB, (q15_t)0x3C83, (q15_t)0x70B3, (q15_t)0x3CAF, (q15_t)0x709B, (q15_t)0x3CDB, (q15_t)0x7083, (q15_t)0x3D07, (q15_t)0x706B, (q15_t)0x3D33, (q15_t)0x7053, (q15_t)0x3D60, (q15_t)0x703B, (q15_t)0x3D8C, (q15_t)0x7023, (q15_t)0x3DB8, (q15_t)0x700A, (q15_t)0x3DE4, (q15_t)0x6FF2, (q15_t)0x3E10, (q15_t)0x6FDA, (q15_t)0x3E3C, (q15_t)0x6FC1, (q15_t)0x3E68, (q15_t)0x6FA9, (q15_t)0x3E93, (q15_t)0x6F90, (q15_t)0x3EBF, (q15_t)0x6F77, (q15_t)0x3EEB, (q15_t)0x6F5F, (q15_t)0x3F17, (q15_t)0x6F46, (q15_t)0x3F43, (q15_t)0x6F2D, (q15_t)0x3F6E, (q15_t)0x6F14, (q15_t)0x3F9A, (q15_t)0x6EFB, (q15_t)0x3FC5, (q15_t)0x6EE2, (q15_t)0x3FF1, (q15_t)0x6EC9, (q15_t)0x401D, (q15_t)0x6EAF, (q15_t)0x4048, (q15_t)0x6E96, (q15_t)0x4073, (q15_t)0x6E7D, (q15_t)0x409F, (q15_t)0x6E63, (q15_t)0x40CA, (q15_t)0x6E4A, (q15_t)0x40F6, (q15_t)0x6E30, (q15_t)0x4121, (q15_t)0x6E17, (q15_t)0x414C, (q15_t)0x6DFD, (q15_t)0x4177, (q15_t)0x6DE3, (q15_t)0x41A2, (q15_t)0x6DCA, (q15_t)0x41CE, (q15_t)0x6DB0, (q15_t)0x41F9, (q15_t)0x6D96, (q15_t)0x4224, (q15_t)0x6D7C, (q15_t)0x424F, (q15_t)0x6D62, (q15_t)0x427A, (q15_t)0x6D48, (q15_t)0x42A5, (q15_t)0x6D2D, (q15_t)0x42D0, (q15_t)0x6D13, (q15_t)0x42FA, (q15_t)0x6CF9, (q15_t)0x4325, (q15_t)0x6CDE, (q15_t)0x4350, (q15_t)0x6CC4, (q15_t)0x437B, (q15_t)0x6CA9, (q15_t)0x43A5, (q15_t)0x6C8F, (q15_t)0x43D0, (q15_t)0x6C74, (q15_t)0x43FB, (q15_t)0x6C59, (q15_t)0x4425, (q15_t)0x6C3F, (q15_t)0x4450, (q15_t)0x6C24, (q15_t)0x447A, (q15_t)0x6C09, (q15_t)0x44A5, (q15_t)0x6BEE, (q15_t)0x44CF, (q15_t)0x6BD3, (q15_t)0x44FA, (q15_t)0x6BB8, (q15_t)0x4524, (q15_t)0x6B9C, (q15_t)0x454E, (q15_t)0x6B81, (q15_t)0x4578, (q15_t)0x6B66, (q15_t)0x45A3, (q15_t)0x6B4A, (q15_t)0x45CD, (q15_t)0x6B2F, (q15_t)0x45F7, (q15_t)0x6B13, (q15_t)0x4621, (q15_t)0x6AF8, (q15_t)0x464B, (q15_t)0x6ADC, (q15_t)0x4675, (q15_t)0x6AC1, (q15_t)0x469F, (q15_t)0x6AA5, (q15_t)0x46C9, (q15_t)0x6A89, (q15_t)0x46F3, (q15_t)0x6A6D, (q15_t)0x471C, (q15_t)0x6A51, (q15_t)0x4746, (q15_t)0x6A35, (q15_t)0x4770, (q15_t)0x6A19, (q15_t)0x479A, (q15_t)0x69FD, (q15_t)0x47C3, (q15_t)0x69E1, (q15_t)0x47ED, (q15_t)0x69C4, (q15_t)0x4816, (q15_t)0x69A8, (q15_t)0x4840, (q15_t)0x698C, (q15_t)0x4869, (q15_t)0x696F, (q15_t)0x4893, (q15_t)0x6953, (q15_t)0x48BC, (q15_t)0x6936, (q15_t)0x48E6, (q15_t)0x6919, (q15_t)0x490F, (q15_t)0x68FD, (q15_t)0x4938, (q15_t)0x68E0, (q15_t)0x4961, (q15_t)0x68C3, (q15_t)0x498A, (q15_t)0x68A6, (q15_t)0x49B4, (q15_t)0x6889, (q15_t)0x49DD, (q15_t)0x686C, (q15_t)0x4A06, (q15_t)0x684F, (q15_t)0x4A2F, (q15_t)0x6832, (q15_t)0x4A58, (q15_t)0x6815, (q15_t)0x4A81, (q15_t)0x67F7, (q15_t)0x4AA9, (q15_t)0x67DA, (q15_t)0x4AD2, (q15_t)0x67BD, (q15_t)0x4AFB, (q15_t)0x679F, (q15_t)0x4B24, (q15_t)0x6782, (q15_t)0x4B4C, (q15_t)0x6764, (q15_t)0x4B75, (q15_t)0x6746, (q15_t)0x4B9E, (q15_t)0x6729, (q15_t)0x4BC6, (q15_t)0x670B, (q15_t)0x4BEF, (q15_t)0x66ED, (q15_t)0x4C17, (q15_t)0x66CF, (q15_t)0x4C3F, (q15_t)0x66B1, (q15_t)0x4C68, (q15_t)0x6693, (q15_t)0x4C90, (q15_t)0x6675, (q15_t)0x4CB8, (q15_t)0x6657, (q15_t)0x4CE1, (q15_t)0x6639, (q15_t)0x4D09, (q15_t)0x661A, (q15_t)0x4D31, (q15_t)0x65FC, (q15_t)0x4D59, (q15_t)0x65DD, (q15_t)0x4D81, (q15_t)0x65BF, (q15_t)0x4DA9, (q15_t)0x65A0, (q15_t)0x4DD1, (q15_t)0x6582, (q15_t)0x4DF9, (q15_t)0x6563, (q15_t)0x4E21, (q15_t)0x6545, (q15_t)0x4E48, (q15_t)0x6526, (q15_t)0x4E70, (q15_t)0x6507, (q15_t)0x4E98, (q15_t)0x64E8, (q15_t)0x4EBF, (q15_t)0x64C9, (q15_t)0x4EE7, (q15_t)0x64AA, (q15_t)0x4F0F, (q15_t)0x648B, (q15_t)0x4F36, (q15_t)0x646C, (q15_t)0x4F5E, (q15_t)0x644D, (q15_t)0x4F85, (q15_t)0x642D, (q15_t)0x4FAC, (q15_t)0x640E, (q15_t)0x4FD4, (q15_t)0x63EF, (q15_t)0x4FFB, (q15_t)0x63CF, (q15_t)0x5022, (q15_t)0x63B0, (q15_t)0x5049, (q15_t)0x6390, (q15_t)0x5070, (q15_t)0x6371, (q15_t)0x5097, (q15_t)0x6351, (q15_t)0x50BF, (q15_t)0x6331, (q15_t)0x50E5, (q15_t)0x6311, (q15_t)0x510C, (q15_t)0x62F2, (q15_t)0x5133, (q15_t)0x62D2, (q15_t)0x515A, (q15_t)0x62B2, (q15_t)0x5181, (q15_t)0x6292, (q15_t)0x51A8, (q15_t)0x6271, (q15_t)0x51CE, (q15_t)0x6251, (q15_t)0x51F5, (q15_t)0x6231, (q15_t)0x521C, (q15_t)0x6211, (q15_t)0x5242, (q15_t)0x61F1, (q15_t)0x5269, (q15_t)0x61D0, (q15_t)0x528F, (q15_t)0x61B0, (q15_t)0x52B5, (q15_t)0x618F, (q15_t)0x52DC, (q15_t)0x616F, (q15_t)0x5302, (q15_t)0x614E, (q15_t)0x5328, (q15_t)0x612D, (q15_t)0x534E, (q15_t)0x610D, (q15_t)0x5375, (q15_t)0x60EC, (q15_t)0x539B, (q15_t)0x60CB, (q15_t)0x53C1, (q15_t)0x60AA, (q15_t)0x53E7, (q15_t)0x6089, (q15_t)0x540D, (q15_t)0x6068, (q15_t)0x5433, (q15_t)0x6047, (q15_t)0x5458, (q15_t)0x6026, (q15_t)0x547E, (q15_t)0x6004, (q15_t)0x54A4, (q15_t)0x5FE3, (q15_t)0x54CA, (q15_t)0x5FC2, (q15_t)0x54EF, (q15_t)0x5FA0, (q15_t)0x5515, (q15_t)0x5F7F, (q15_t)0x553A, (q15_t)0x5F5E, (q15_t)0x5560, (q15_t)0x5F3C, (q15_t)0x5585, (q15_t)0x5F1A, (q15_t)0x55AB, (q15_t)0x5EF9, (q15_t)0x55D0, (q15_t)0x5ED7, (q15_t)0x55F5, (q15_t)0x5EB5, (q15_t)0x561A, (q15_t)0x5E93, (q15_t)0x5640, (q15_t)0x5E71, (q15_t)0x5665, (q15_t)0x5E50, (q15_t)0x568A, (q15_t)0x5E2D, (q15_t)0x56AF, (q15_t)0x5E0B, (q15_t)0x56D4, (q15_t)0x5DE9, (q15_t)0x56F9, (q15_t)0x5DC7, (q15_t)0x571D, (q15_t)0x5DA5, (q15_t)0x5742, (q15_t)0x5D83, (q15_t)0x5767, (q15_t)0x5D60, (q15_t)0x578C, (q15_t)0x5D3E, (q15_t)0x57B0, (q15_t)0x5D1B, (q15_t)0x57D5, (q15_t)0x5CF9, (q15_t)0x57F9, (q15_t)0x5CD6, (q15_t)0x581E, (q15_t)0x5CB4, (q15_t)0x5842, (q15_t)0x5C91, (q15_t)0x5867, (q15_t)0x5C6E, (q15_t)0x588B, (q15_t)0x5C4B, (q15_t)0x58AF, (q15_t)0x5C29, (q15_t)0x58D4, (q15_t)0x5C06, (q15_t)0x58F8, (q15_t)0x5BE3, (q15_t)0x591C, (q15_t)0x5BC0, (q15_t)0x5940, (q15_t)0x5B9D, (q15_t)0x5964, (q15_t)0x5B79, (q15_t)0x5988, (q15_t)0x5B56, (q15_t)0x59AC, (q15_t)0x5B33, (q15_t)0x59D0, (q15_t)0x5B10, (q15_t)0x59F3, (q15_t)0x5AEC, (q15_t)0x5A17, (q15_t)0x5AC9, (q15_t)0x5A3B, (q15_t)0x5AA5, (q15_t)0x5A5E, (q15_t)0x5A82, (q15_t)0x5A82, (q15_t)0x5A5E, (q15_t)0x5AA5, (q15_t)0x5A3B, (q15_t)0x5AC9, (q15_t)0x5A17, (q15_t)0x5AEC, (q15_t)0x59F3, (q15_t)0x5B10, (q15_t)0x59D0, (q15_t)0x5B33, (q15_t)0x59AC, (q15_t)0x5B56, (q15_t)0x5988, (q15_t)0x5B79, (q15_t)0x5964, (q15_t)0x5B9D, (q15_t)0x5940, (q15_t)0x5BC0, (q15_t)0x591C, (q15_t)0x5BE3, (q15_t)0x58F8, (q15_t)0x5C06, (q15_t)0x58D4, (q15_t)0x5C29, (q15_t)0x58AF, (q15_t)0x5C4B, (q15_t)0x588B, (q15_t)0x5C6E, (q15_t)0x5867, (q15_t)0x5C91, (q15_t)0x5842, (q15_t)0x5CB4, (q15_t)0x581E, (q15_t)0x5CD6, (q15_t)0x57F9, (q15_t)0x5CF9, (q15_t)0x57D5, (q15_t)0x5D1B, (q15_t)0x57B0, (q15_t)0x5D3E, (q15_t)0x578C, (q15_t)0x5D60, (q15_t)0x5767, (q15_t)0x5D83, (q15_t)0x5742, (q15_t)0x5DA5, (q15_t)0x571D, (q15_t)0x5DC7, (q15_t)0x56F9, (q15_t)0x5DE9, (q15_t)0x56D4, (q15_t)0x5E0B, (q15_t)0x56AF, (q15_t)0x5E2D, (q15_t)0x568A, (q15_t)0x5E50, (q15_t)0x5665, (q15_t)0x5E71, (q15_t)0x5640, (q15_t)0x5E93, (q15_t)0x561A, (q15_t)0x5EB5, (q15_t)0x55F5, (q15_t)0x5ED7, (q15_t)0x55D0, (q15_t)0x5EF9, (q15_t)0x55AB, (q15_t)0x5F1A, (q15_t)0x5585, (q15_t)0x5F3C, (q15_t)0x5560, (q15_t)0x5F5E, (q15_t)0x553A, (q15_t)0x5F7F, (q15_t)0x5515, (q15_t)0x5FA0, (q15_t)0x54EF, (q15_t)0x5FC2, (q15_t)0x54CA, (q15_t)0x5FE3, (q15_t)0x54A4, (q15_t)0x6004, (q15_t)0x547E, (q15_t)0x6026, (q15_t)0x5458, (q15_t)0x6047, (q15_t)0x5433, (q15_t)0x6068, (q15_t)0x540D, (q15_t)0x6089, (q15_t)0x53E7, (q15_t)0x60AA, (q15_t)0x53C1, (q15_t)0x60CB, (q15_t)0x539B, (q15_t)0x60EC, (q15_t)0x5375, (q15_t)0x610D, (q15_t)0x534E, (q15_t)0x612D, (q15_t)0x5328, (q15_t)0x614E, (q15_t)0x5302, (q15_t)0x616F, (q15_t)0x52DC, (q15_t)0x618F, (q15_t)0x52B5, (q15_t)0x61B0, (q15_t)0x528F, (q15_t)0x61D0, (q15_t)0x5269, (q15_t)0x61F1, (q15_t)0x5242, (q15_t)0x6211, (q15_t)0x521C, (q15_t)0x6231, (q15_t)0x51F5, (q15_t)0x6251, (q15_t)0x51CE, (q15_t)0x6271, (q15_t)0x51A8, (q15_t)0x6292, (q15_t)0x5181, (q15_t)0x62B2, (q15_t)0x515A, (q15_t)0x62D2, (q15_t)0x5133, (q15_t)0x62F2, (q15_t)0x510C, (q15_t)0x6311, (q15_t)0x50E5, (q15_t)0x6331, (q15_t)0x50BF, (q15_t)0x6351, (q15_t)0x5097, (q15_t)0x6371, (q15_t)0x5070, (q15_t)0x6390, (q15_t)0x5049, (q15_t)0x63B0, (q15_t)0x5022, (q15_t)0x63CF, (q15_t)0x4FFB, (q15_t)0x63EF, (q15_t)0x4FD4, (q15_t)0x640E, (q15_t)0x4FAC, (q15_t)0x642D, (q15_t)0x4F85, (q15_t)0x644D, (q15_t)0x4F5E, (q15_t)0x646C, (q15_t)0x4F36, (q15_t)0x648B, (q15_t)0x4F0F, (q15_t)0x64AA, (q15_t)0x4EE7, (q15_t)0x64C9, (q15_t)0x4EBF, (q15_t)0x64E8, (q15_t)0x4E98, (q15_t)0x6507, (q15_t)0x4E70, (q15_t)0x6526, (q15_t)0x4E48, (q15_t)0x6545, (q15_t)0x4E21, (q15_t)0x6563, (q15_t)0x4DF9, (q15_t)0x6582, (q15_t)0x4DD1, (q15_t)0x65A0, (q15_t)0x4DA9, (q15_t)0x65BF, (q15_t)0x4D81, (q15_t)0x65DD, (q15_t)0x4D59, (q15_t)0x65FC, (q15_t)0x4D31, (q15_t)0x661A, (q15_t)0x4D09, (q15_t)0x6639, (q15_t)0x4CE1, (q15_t)0x6657, (q15_t)0x4CB8, (q15_t)0x6675, (q15_t)0x4C90, (q15_t)0x6693, (q15_t)0x4C68, (q15_t)0x66B1, (q15_t)0x4C3F, (q15_t)0x66CF, (q15_t)0x4C17, (q15_t)0x66ED, (q15_t)0x4BEF, (q15_t)0x670B, (q15_t)0x4BC6, (q15_t)0x6729, (q15_t)0x4B9E, (q15_t)0x6746, (q15_t)0x4B75, (q15_t)0x6764, (q15_t)0x4B4C, (q15_t)0x6782, (q15_t)0x4B24, (q15_t)0x679F, (q15_t)0x4AFB, (q15_t)0x67BD, (q15_t)0x4AD2, (q15_t)0x67DA, (q15_t)0x4AA9, (q15_t)0x67F7, (q15_t)0x4A81, (q15_t)0x6815, (q15_t)0x4A58, (q15_t)0x6832, (q15_t)0x4A2F, (q15_t)0x684F, (q15_t)0x4A06, (q15_t)0x686C, (q15_t)0x49DD, (q15_t)0x6889, (q15_t)0x49B4, (q15_t)0x68A6, (q15_t)0x498A, (q15_t)0x68C3, (q15_t)0x4961, (q15_t)0x68E0, (q15_t)0x4938, (q15_t)0x68FD, (q15_t)0x490F, (q15_t)0x6919, (q15_t)0x48E6, (q15_t)0x6936, (q15_t)0x48BC, (q15_t)0x6953, (q15_t)0x4893, (q15_t)0x696F, (q15_t)0x4869, (q15_t)0x698C, (q15_t)0x4840, (q15_t)0x69A8, (q15_t)0x4816, (q15_t)0x69C4, (q15_t)0x47ED, (q15_t)0x69E1, (q15_t)0x47C3, (q15_t)0x69FD, (q15_t)0x479A, (q15_t)0x6A19, (q15_t)0x4770, (q15_t)0x6A35, (q15_t)0x4746, (q15_t)0x6A51, (q15_t)0x471C, (q15_t)0x6A6D, (q15_t)0x46F3, (q15_t)0x6A89, (q15_t)0x46C9, (q15_t)0x6AA5, (q15_t)0x469F, (q15_t)0x6AC1, (q15_t)0x4675, (q15_t)0x6ADC, (q15_t)0x464B, (q15_t)0x6AF8, (q15_t)0x4621, (q15_t)0x6B13, (q15_t)0x45F7, (q15_t)0x6B2F, (q15_t)0x45CD, (q15_t)0x6B4A, (q15_t)0x45A3, (q15_t)0x6B66, (q15_t)0x4578, (q15_t)0x6B81, (q15_t)0x454E, (q15_t)0x6B9C, (q15_t)0x4524, (q15_t)0x6BB8, (q15_t)0x44FA, (q15_t)0x6BD3, (q15_t)0x44CF, (q15_t)0x6BEE, (q15_t)0x44A5, (q15_t)0x6C09, (q15_t)0x447A, (q15_t)0x6C24, (q15_t)0x4450, (q15_t)0x6C3F, (q15_t)0x4425, (q15_t)0x6C59, (q15_t)0x43FB, (q15_t)0x6C74, (q15_t)0x43D0, (q15_t)0x6C8F, (q15_t)0x43A5, (q15_t)0x6CA9, (q15_t)0x437B, (q15_t)0x6CC4, (q15_t)0x4350, (q15_t)0x6CDE, (q15_t)0x4325, (q15_t)0x6CF9, (q15_t)0x42FA, (q15_t)0x6D13, (q15_t)0x42D0, (q15_t)0x6D2D, (q15_t)0x42A5, (q15_t)0x6D48, (q15_t)0x427A, (q15_t)0x6D62, (q15_t)0x424F, (q15_t)0x6D7C, (q15_t)0x4224, (q15_t)0x6D96, (q15_t)0x41F9, (q15_t)0x6DB0, (q15_t)0x41CE, (q15_t)0x6DCA, (q15_t)0x41A2, (q15_t)0x6DE3, (q15_t)0x4177, (q15_t)0x6DFD, (q15_t)0x414C, (q15_t)0x6E17, (q15_t)0x4121, (q15_t)0x6E30, (q15_t)0x40F6, (q15_t)0x6E4A, (q15_t)0x40CA, (q15_t)0x6E63, (q15_t)0x409F, (q15_t)0x6E7D, (q15_t)0x4073, (q15_t)0x6E96, (q15_t)0x4048, (q15_t)0x6EAF, (q15_t)0x401D, (q15_t)0x6EC9, (q15_t)0x3FF1, (q15_t)0x6EE2, (q15_t)0x3FC5, (q15_t)0x6EFB, (q15_t)0x3F9A, (q15_t)0x6F14, (q15_t)0x3F6E, (q15_t)0x6F2D, (q15_t)0x3F43, (q15_t)0x6F46, (q15_t)0x3F17, (q15_t)0x6F5F, (q15_t)0x3EEB, (q15_t)0x6F77, (q15_t)0x3EBF, (q15_t)0x6F90, (q15_t)0x3E93, (q15_t)0x6FA9, (q15_t)0x3E68, (q15_t)0x6FC1, (q15_t)0x3E3C, (q15_t)0x6FDA, (q15_t)0x3E10, (q15_t)0x6FF2, (q15_t)0x3DE4, (q15_t)0x700A, (q15_t)0x3DB8, (q15_t)0x7023, (q15_t)0x3D8C, (q15_t)0x703B, (q15_t)0x3D60, (q15_t)0x7053, (q15_t)0x3D33, (q15_t)0x706B, (q15_t)0x3D07, (q15_t)0x7083, (q15_t)0x3CDB, (q15_t)0x709B, (q15_t)0x3CAF, (q15_t)0x70B3, (q15_t)0x3C83, (q15_t)0x70CB, (q15_t)0x3C56, (q15_t)0x70E2, (q15_t)0x3C2A, (q15_t)0x70FA, (q15_t)0x3BFD, (q15_t)0x7112, (q15_t)0x3BD1, (q15_t)0x7129, (q15_t)0x3BA5, (q15_t)0x7141, (q15_t)0x3B78, (q15_t)0x7158, (q15_t)0x3B4C, (q15_t)0x716F, (q15_t)0x3B1F, (q15_t)0x7186, (q15_t)0x3AF2, (q15_t)0x719E, (q15_t)0x3AC6, (q15_t)0x71B5, (q15_t)0x3A99, (q15_t)0x71CC, (q15_t)0x3A6C, (q15_t)0x71E3, (q15_t)0x3A40, (q15_t)0x71FA, (q15_t)0x3A13, (q15_t)0x7211, (q15_t)0x39E6, (q15_t)0x7227, (q15_t)0x39B9, (q15_t)0x723E, (q15_t)0x398C, (q15_t)0x7255, (q15_t)0x395F, (q15_t)0x726B, (q15_t)0x3932, (q15_t)0x7282, (q15_t)0x3906, (q15_t)0x7298, (q15_t)0x38D8, (q15_t)0x72AF, (q15_t)0x38AB, (q15_t)0x72C5, (q15_t)0x387E, (q15_t)0x72DB, (q15_t)0x3851, (q15_t)0x72F1, (q15_t)0x3824, (q15_t)0x7307, (q15_t)0x37F7, (q15_t)0x731D, (q15_t)0x37CA, (q15_t)0x7333, (q15_t)0x379C, (q15_t)0x7349, (q15_t)0x376F, (q15_t)0x735F, (q15_t)0x3742, (q15_t)0x7375, (q15_t)0x3714, (q15_t)0x738A, (q15_t)0x36E7, (q15_t)0x73A0, (q15_t)0x36BA, (q15_t)0x73B5, (q15_t)0x368C, (q15_t)0x73CB, (q15_t)0x365F, (q15_t)0x73E0, (q15_t)0x3631, (q15_t)0x73F6, (q15_t)0x3604, (q15_t)0x740B, (q15_t)0x35D6, (q15_t)0x7420, (q15_t)0x35A8, (q15_t)0x7435, (q15_t)0x357B, (q15_t)0x744A, (q15_t)0x354D, (q15_t)0x745F, (q15_t)0x351F, (q15_t)0x7474, (q15_t)0x34F2, (q15_t)0x7489, (q15_t)0x34C4, (q15_t)0x749E, (q15_t)0x3496, (q15_t)0x74B2, (q15_t)0x3468, (q15_t)0x74C7, (q15_t)0x343A, (q15_t)0x74DB, (q15_t)0x340C, (q15_t)0x74F0, (q15_t)0x33DE, (q15_t)0x7504, (q15_t)0x33B0, (q15_t)0x7519, (q15_t)0x3382, (q15_t)0x752D, (q15_t)0x3354, (q15_t)0x7541, (q15_t)0x3326, (q15_t)0x7555, (q15_t)0x32F8, (q15_t)0x7569, (q15_t)0x32CA, (q15_t)0x757D, (q15_t)0x329C, (q15_t)0x7591, (q15_t)0x326E, (q15_t)0x75A5, (q15_t)0x3240, (q15_t)0x75B9, (q15_t)0x3211, (q15_t)0x75CC, (q15_t)0x31E3, (q15_t)0x75E0, (q15_t)0x31B5, (q15_t)0x75F4, (q15_t)0x3186, (q15_t)0x7607, (q15_t)0x3158, (q15_t)0x761B, (q15_t)0x312A, (q15_t)0x762E, (q15_t)0x30FB, (q15_t)0x7641, (q15_t)0x30CD, (q15_t)0x7654, (q15_t)0x309E, (q15_t)0x7668, (q15_t)0x3070, (q15_t)0x767B, (q15_t)0x3041, (q15_t)0x768E, (q15_t)0x3013, (q15_t)0x76A0, (q15_t)0x2FE4, (q15_t)0x76B3, (q15_t)0x2FB5, (q15_t)0x76C6, (q15_t)0x2F87, (q15_t)0x76D9, (q15_t)0x2F58, (q15_t)0x76EB, (q15_t)0x2F29, (q15_t)0x76FE, (q15_t)0x2EFB, (q15_t)0x7710, (q15_t)0x2ECC, (q15_t)0x7723, (q15_t)0x2E9D, (q15_t)0x7735, (q15_t)0x2E6E, (q15_t)0x7747, (q15_t)0x2E3F, (q15_t)0x775A, (q15_t)0x2E11, (q15_t)0x776C, (q15_t)0x2DE2, (q15_t)0x777E, (q15_t)0x2DB3, (q15_t)0x7790, (q15_t)0x2D84, (q15_t)0x77A2, (q15_t)0x2D55, (q15_t)0x77B4, (q15_t)0x2D26, (q15_t)0x77C5, (q15_t)0x2CF7, (q15_t)0x77D7, (q15_t)0x2CC8, (q15_t)0x77E9, (q15_t)0x2C98, (q15_t)0x77FA, (q15_t)0x2C69, (q15_t)0x780C, (q15_t)0x2C3A, (q15_t)0x781D, (q15_t)0x2C0B, (q15_t)0x782E, (q15_t)0x2BDC, (q15_t)0x7840, (q15_t)0x2BAD, (q15_t)0x7851, (q15_t)0x2B7D, (q15_t)0x7862, (q15_t)0x2B4E, (q15_t)0x7873, (q15_t)0x2B1F, (q15_t)0x7884, (q15_t)0x2AEF, (q15_t)0x7895, (q15_t)0x2AC0, (q15_t)0x78A6, (q15_t)0x2A91, (q15_t)0x78B6, (q15_t)0x2A61, (q15_t)0x78C7, (q15_t)0x2A32, (q15_t)0x78D8, (q15_t)0x2A02, (q15_t)0x78E8, (q15_t)0x29D3, (q15_t)0x78F9, (q15_t)0x29A3, (q15_t)0x7909, (q15_t)0x2974, (q15_t)0x7919, (q15_t)0x2944, (q15_t)0x792A, (q15_t)0x2915, (q15_t)0x793A, (q15_t)0x28E5, (q15_t)0x794A, (q15_t)0x28B5, (q15_t)0x795A, (q15_t)0x2886, (q15_t)0x796A, (q15_t)0x2856, (q15_t)0x797A, (q15_t)0x2826, (q15_t)0x798A, (q15_t)0x27F6, (q15_t)0x7999, (q15_t)0x27C7, (q15_t)0x79A9, (q15_t)0x2797, (q15_t)0x79B9, (q15_t)0x2767, (q15_t)0x79C8, (q15_t)0x2737, (q15_t)0x79D8, (q15_t)0x2707, (q15_t)0x79E7, (q15_t)0x26D8, (q15_t)0x79F6, (q15_t)0x26A8, (q15_t)0x7A05, (q15_t)0x2678, (q15_t)0x7A15, (q15_t)0x2648, (q15_t)0x7A24, (q15_t)0x2618, (q15_t)0x7A33, (q15_t)0x25E8, (q15_t)0x7A42, (q15_t)0x25B8, (q15_t)0x7A50, (q15_t)0x2588, (q15_t)0x7A5F, (q15_t)0x2558, (q15_t)0x7A6E, (q15_t)0x2528, (q15_t)0x7A7D, (q15_t)0x24F7, (q15_t)0x7A8B, (q15_t)0x24C7, (q15_t)0x7A9A, (q15_t)0x2497, (q15_t)0x7AA8, (q15_t)0x2467, (q15_t)0x7AB6, (q15_t)0x2437, (q15_t)0x7AC5, (q15_t)0x2407, (q15_t)0x7AD3, (q15_t)0x23D6, (q15_t)0x7AE1, (q15_t)0x23A6, (q15_t)0x7AEF, (q15_t)0x2376, (q15_t)0x7AFD, (q15_t)0x2345, (q15_t)0x7B0B, (q15_t)0x2315, (q15_t)0x7B19, (q15_t)0x22E5, (q15_t)0x7B26, (q15_t)0x22B4, (q15_t)0x7B34, (q15_t)0x2284, (q15_t)0x7B42, (q15_t)0x2254, (q15_t)0x7B4F, (q15_t)0x2223, (q15_t)0x7B5D, (q15_t)0x21F3, (q15_t)0x7B6A, (q15_t)0x21C2, (q15_t)0x7B77, (q15_t)0x2192, (q15_t)0x7B84, (q15_t)0x2161, (q15_t)0x7B92, (q15_t)0x2131, (q15_t)0x7B9F, (q15_t)0x2100, (q15_t)0x7BAC, (q15_t)0x20D0, (q15_t)0x7BB9, (q15_t)0x209F, (q15_t)0x7BC5, (q15_t)0x206E, (q15_t)0x7BD2, (q15_t)0x203E, (q15_t)0x7BDF, (q15_t)0x200D, (q15_t)0x7BEB, (q15_t)0x1FDC, (q15_t)0x7BF8, (q15_t)0x1FAC, (q15_t)0x7C05, (q15_t)0x1F7B, (q15_t)0x7C11, (q15_t)0x1F4A, (q15_t)0x7C1D, (q15_t)0x1F19, (q15_t)0x7C29, (q15_t)0x1EE9, (q15_t)0x7C36, (q15_t)0x1EB8, (q15_t)0x7C42, (q15_t)0x1E87, (q15_t)0x7C4E, (q15_t)0x1E56, (q15_t)0x7C5A, (q15_t)0x1E25, (q15_t)0x7C66, (q15_t)0x1DF5, (q15_t)0x7C71, (q15_t)0x1DC4, (q15_t)0x7C7D, (q15_t)0x1D93, (q15_t)0x7C89, (q15_t)0x1D62, (q15_t)0x7C94, (q15_t)0x1D31, (q15_t)0x7CA0, (q15_t)0x1D00, (q15_t)0x7CAB, (q15_t)0x1CCF, (q15_t)0x7CB7, (q15_t)0x1C9E, (q15_t)0x7CC2, (q15_t)0x1C6D, (q15_t)0x7CCD, (q15_t)0x1C3C, (q15_t)0x7CD8, (q15_t)0x1C0B, (q15_t)0x7CE3, (q15_t)0x1BDA, (q15_t)0x7CEE, (q15_t)0x1BA9, (q15_t)0x7CF9, (q15_t)0x1B78, (q15_t)0x7D04, (q15_t)0x1B47, (q15_t)0x7D0F, (q15_t)0x1B16, (q15_t)0x7D19, (q15_t)0x1AE4, (q15_t)0x7D24, (q15_t)0x1AB3, (q15_t)0x7D2F, (q15_t)0x1A82, (q15_t)0x7D39, (q15_t)0x1A51, (q15_t)0x7D43, (q15_t)0x1A20, (q15_t)0x7D4E, (q15_t)0x19EF, (q15_t)0x7D58, (q15_t)0x19BD, (q15_t)0x7D62, (q15_t)0x198C, (q15_t)0x7D6C, (q15_t)0x195B, (q15_t)0x7D76, (q15_t)0x192A, (q15_t)0x7D80, (q15_t)0x18F8, (q15_t)0x7D8A, (q15_t)0x18C7, (q15_t)0x7D94, (q15_t)0x1896, (q15_t)0x7D9D, (q15_t)0x1864, (q15_t)0x7DA7, (q15_t)0x1833, (q15_t)0x7DB0, (q15_t)0x1802, (q15_t)0x7DBA, (q15_t)0x17D0, (q15_t)0x7DC3, (q15_t)0x179F, (q15_t)0x7DCD, (q15_t)0x176D, (q15_t)0x7DD6, (q15_t)0x173C, (q15_t)0x7DDF, (q15_t)0x170A, (q15_t)0x7DE8, (q15_t)0x16D9, (q15_t)0x7DF1, (q15_t)0x16A8, (q15_t)0x7DFA, (q15_t)0x1676, (q15_t)0x7E03, (q15_t)0x1645, (q15_t)0x7E0C, (q15_t)0x1613, (q15_t)0x7E14, (q15_t)0x15E2, (q15_t)0x7E1D, (q15_t)0x15B0, (q15_t)0x7E26, (q15_t)0x157F, (q15_t)0x7E2E, (q15_t)0x154D, (q15_t)0x7E37, (q15_t)0x151B, (q15_t)0x7E3F, (q15_t)0x14EA, (q15_t)0x7E47, (q15_t)0x14B8, (q15_t)0x7E4F, (q15_t)0x1487, (q15_t)0x7E57, (q15_t)0x1455, (q15_t)0x7E5F, (q15_t)0x1423, (q15_t)0x7E67, (q15_t)0x13F2, (q15_t)0x7E6F, (q15_t)0x13C0, (q15_t)0x7E77, (q15_t)0x138E, (q15_t)0x7E7F, (q15_t)0x135D, (q15_t)0x7E86, (q15_t)0x132B, (q15_t)0x7E8E, (q15_t)0x12F9, (q15_t)0x7E95, (q15_t)0x12C8, (q15_t)0x7E9D, (q15_t)0x1296, (q15_t)0x7EA4, (q15_t)0x1264, (q15_t)0x7EAB, (q15_t)0x1232, (q15_t)0x7EB3, (q15_t)0x1201, (q15_t)0x7EBA, (q15_t)0x11CF, (q15_t)0x7EC1, (q15_t)0x119D, (q15_t)0x7EC8, (q15_t)0x116B, (q15_t)0x7ECF, (q15_t)0x1139, (q15_t)0x7ED5, (q15_t)0x1108, (q15_t)0x7EDC, (q15_t)0x10D6, (q15_t)0x7EE3, (q15_t)0x10A4, (q15_t)0x7EE9, (q15_t)0x1072, (q15_t)0x7EF0, (q15_t)0x1040, (q15_t)0x7EF6, (q15_t)0x100E, (q15_t)0x7EFD, (q15_t)0x0FDD, (q15_t)0x7F03, (q15_t)0x0FAB, (q15_t)0x7F09, (q15_t)0x0F79, (q15_t)0x7F0F, (q15_t)0x0F47, (q15_t)0x7F15, (q15_t)0x0F15, (q15_t)0x7F1B, (q15_t)0x0EE3, (q15_t)0x7F21, (q15_t)0x0EB1, (q15_t)0x7F27, (q15_t)0x0E7F, (q15_t)0x7F2D, (q15_t)0x0E4D, (q15_t)0x7F32, (q15_t)0x0E1B, (q15_t)0x7F38, (q15_t)0x0DE9, (q15_t)0x7F3D, (q15_t)0x0DB7, (q15_t)0x7F43, (q15_t)0x0D85, (q15_t)0x7F48, (q15_t)0x0D53, (q15_t)0x7F4D, (q15_t)0x0D21, (q15_t)0x7F53, (q15_t)0x0CEF, (q15_t)0x7F58, (q15_t)0x0CBD, (q15_t)0x7F5D, (q15_t)0x0C8B, (q15_t)0x7F62, (q15_t)0x0C59, (q15_t)0x7F67, (q15_t)0x0C27, (q15_t)0x7F6B, (q15_t)0x0BF5, (q15_t)0x7F70, (q15_t)0x0BC3, (q15_t)0x7F75, (q15_t)0x0B91, (q15_t)0x7F79, (q15_t)0x0B5F, (q15_t)0x7F7E, (q15_t)0x0B2D, (q15_t)0x7F82, (q15_t)0x0AFB, (q15_t)0x7F87, (q15_t)0x0AC9, (q15_t)0x7F8B, (q15_t)0x0A97, (q15_t)0x7F8F, (q15_t)0x0A65, (q15_t)0x7F93, (q15_t)0x0A33, (q15_t)0x7F97, (q15_t)0x0A00, (q15_t)0x7F9B, (q15_t)0x09CE, (q15_t)0x7F9F, (q15_t)0x099C, (q15_t)0x7FA3, (q15_t)0x096A, (q15_t)0x7FA7, (q15_t)0x0938, (q15_t)0x7FAA, (q15_t)0x0906, (q15_t)0x7FAE, (q15_t)0x08D4, (q15_t)0x7FB1, (q15_t)0x08A2, (q15_t)0x7FB5, (q15_t)0x086F, (q15_t)0x7FB8, (q15_t)0x083D, (q15_t)0x7FBC, (q15_t)0x080B, (q15_t)0x7FBF, (q15_t)0x07D9, (q15_t)0x7FC2, (q15_t)0x07A7, (q15_t)0x7FC5, (q15_t)0x0775, (q15_t)0x7FC8, (q15_t)0x0742, (q15_t)0x7FCB, (q15_t)0x0710, (q15_t)0x7FCE, (q15_t)0x06DE, (q15_t)0x7FD0, (q15_t)0x06AC, (q15_t)0x7FD3, (q15_t)0x067A, (q15_t)0x7FD6, (q15_t)0x0647, (q15_t)0x7FD8, (q15_t)0x0615, (q15_t)0x7FDA, (q15_t)0x05E3, (q15_t)0x7FDD, (q15_t)0x05B1, (q15_t)0x7FDF, (q15_t)0x057F, (q15_t)0x7FE1, (q15_t)0x054C, (q15_t)0x7FE3, (q15_t)0x051A, (q15_t)0x7FE5, (q15_t)0x04E8, (q15_t)0x7FE7, (q15_t)0x04B6, (q15_t)0x7FE9, (q15_t)0x0483, (q15_t)0x7FEB, (q15_t)0x0451, (q15_t)0x7FED, (q15_t)0x041F, (q15_t)0x7FEE, (q15_t)0x03ED, (q15_t)0x7FF0, (q15_t)0x03BA, (q15_t)0x7FF2, (q15_t)0x0388, (q15_t)0x7FF3, (q15_t)0x0356, (q15_t)0x7FF4, (q15_t)0x0324, (q15_t)0x7FF6, (q15_t)0x02F1, (q15_t)0x7FF7, (q15_t)0x02BF, (q15_t)0x7FF8, (q15_t)0x028D, (q15_t)0x7FF9, (q15_t)0x025B, (q15_t)0x7FFA, (q15_t)0x0228, (q15_t)0x7FFB, (q15_t)0x01F6, (q15_t)0x7FFC, (q15_t)0x01C4, (q15_t)0x7FFC, (q15_t)0x0192, (q15_t)0x7FFD, (q15_t)0x015F, (q15_t)0x7FFE, (q15_t)0x012D, (q15_t)0x7FFE, (q15_t)0x00FB, (q15_t)0x7FFF, (q15_t)0x00C9, (q15_t)0x7FFF, (q15_t)0x0096, (q15_t)0x7FFF, (q15_t)0x0064, (q15_t)0x7FFF, (q15_t)0x0032, (q15_t)0x7FFF, (q15_t)0x0000, (q15_t)0x7FFF, (q15_t)0xFFCD, (q15_t)0x7FFF, (q15_t)0xFF9B, (q15_t)0x7FFF, (q15_t)0xFF69, (q15_t)0x7FFF, (q15_t)0xFF36, (q15_t)0x7FFF, (q15_t)0xFF04, (q15_t)0x7FFF, (q15_t)0xFED2, (q15_t)0x7FFE, (q15_t)0xFEA0, (q15_t)0x7FFE, (q15_t)0xFE6D, (q15_t)0x7FFD, (q15_t)0xFE3B, (q15_t)0x7FFC, (q15_t)0xFE09, (q15_t)0x7FFC, (q15_t)0xFDD7, (q15_t)0x7FFB, (q15_t)0xFDA4, (q15_t)0x7FFA, (q15_t)0xFD72, (q15_t)0x7FF9, (q15_t)0xFD40, (q15_t)0x7FF8, (q15_t)0xFD0E, (q15_t)0x7FF7, (q15_t)0xFCDB, (q15_t)0x7FF6, (q15_t)0xFCA9, (q15_t)0x7FF4, (q15_t)0xFC77, (q15_t)0x7FF3, (q15_t)0xFC45, (q15_t)0x7FF2, (q15_t)0xFC12, (q15_t)0x7FF0, (q15_t)0xFBE0, (q15_t)0x7FEE, (q15_t)0xFBAE, (q15_t)0x7FED, (q15_t)0xFB7C, (q15_t)0x7FEB, (q15_t)0xFB49, (q15_t)0x7FE9, (q15_t)0xFB17, (q15_t)0x7FE7, (q15_t)0xFAE5, (q15_t)0x7FE5, (q15_t)0xFAB3, (q15_t)0x7FE3, (q15_t)0xFA80, (q15_t)0x7FE1, (q15_t)0xFA4E, (q15_t)0x7FDF, (q15_t)0xFA1C, (q15_t)0x7FDD, (q15_t)0xF9EA, (q15_t)0x7FDA, (q15_t)0xF9B8, (q15_t)0x7FD8, (q15_t)0xF985, (q15_t)0x7FD6, (q15_t)0xF953, (q15_t)0x7FD3, (q15_t)0xF921, (q15_t)0x7FD0, (q15_t)0xF8EF, (q15_t)0x7FCE, (q15_t)0xF8BD, (q15_t)0x7FCB, (q15_t)0xF88A, (q15_t)0x7FC8, (q15_t)0xF858, (q15_t)0x7FC5, (q15_t)0xF826, (q15_t)0x7FC2, (q15_t)0xF7F4, (q15_t)0x7FBF, (q15_t)0xF7C2, (q15_t)0x7FBC, (q15_t)0xF790, (q15_t)0x7FB8, (q15_t)0xF75D, (q15_t)0x7FB5, (q15_t)0xF72B, (q15_t)0x7FB1, (q15_t)0xF6F9, (q15_t)0x7FAE, (q15_t)0xF6C7, (q15_t)0x7FAA, (q15_t)0xF695, (q15_t)0x7FA7, (q15_t)0xF663, (q15_t)0x7FA3, (q15_t)0xF631, (q15_t)0x7F9F, (q15_t)0xF5FF, (q15_t)0x7F9B, (q15_t)0xF5CC, (q15_t)0x7F97, (q15_t)0xF59A, (q15_t)0x7F93, (q15_t)0xF568, (q15_t)0x7F8F, (q15_t)0xF536, (q15_t)0x7F8B, (q15_t)0xF504, (q15_t)0x7F87, (q15_t)0xF4D2, (q15_t)0x7F82, (q15_t)0xF4A0, (q15_t)0x7F7E, (q15_t)0xF46E, (q15_t)0x7F79, (q15_t)0xF43C, (q15_t)0x7F75, (q15_t)0xF40A, (q15_t)0x7F70, (q15_t)0xF3D8, (q15_t)0x7F6B, (q15_t)0xF3A6, (q15_t)0x7F67, (q15_t)0xF374, (q15_t)0x7F62, (q15_t)0xF342, (q15_t)0x7F5D, (q15_t)0xF310, (q15_t)0x7F58, (q15_t)0xF2DE, (q15_t)0x7F53, (q15_t)0xF2AC, (q15_t)0x7F4D, (q15_t)0xF27A, (q15_t)0x7F48, (q15_t)0xF248, (q15_t)0x7F43, (q15_t)0xF216, (q15_t)0x7F3D, (q15_t)0xF1E4, (q15_t)0x7F38, (q15_t)0xF1B2, (q15_t)0x7F32, (q15_t)0xF180, (q15_t)0x7F2D, (q15_t)0xF14E, (q15_t)0x7F27, (q15_t)0xF11C, (q15_t)0x7F21, (q15_t)0xF0EA, (q15_t)0x7F1B, (q15_t)0xF0B8, (q15_t)0x7F15, (q15_t)0xF086, (q15_t)0x7F0F, (q15_t)0xF054, (q15_t)0x7F09, (q15_t)0xF022, (q15_t)0x7F03, (q15_t)0xEFF1, (q15_t)0x7EFD, (q15_t)0xEFBF, (q15_t)0x7EF6, (q15_t)0xEF8D, (q15_t)0x7EF0, (q15_t)0xEF5B, (q15_t)0x7EE9, (q15_t)0xEF29, (q15_t)0x7EE3, (q15_t)0xEEF7, (q15_t)0x7EDC, (q15_t)0xEEC6, (q15_t)0x7ED5, (q15_t)0xEE94, (q15_t)0x7ECF, (q15_t)0xEE62, (q15_t)0x7EC8, (q15_t)0xEE30, (q15_t)0x7EC1, (q15_t)0xEDFE, (q15_t)0x7EBA, (q15_t)0xEDCD, (q15_t)0x7EB3, (q15_t)0xED9B, (q15_t)0x7EAB, (q15_t)0xED69, (q15_t)0x7EA4, (q15_t)0xED37, (q15_t)0x7E9D, (q15_t)0xED06, (q15_t)0x7E95, (q15_t)0xECD4, (q15_t)0x7E8E, (q15_t)0xECA2, (q15_t)0x7E86, (q15_t)0xEC71, (q15_t)0x7E7F, (q15_t)0xEC3F, (q15_t)0x7E77, (q15_t)0xEC0D, (q15_t)0x7E6F, (q15_t)0xEBDC, (q15_t)0x7E67, (q15_t)0xEBAA, (q15_t)0x7E5F, (q15_t)0xEB78, (q15_t)0x7E57, (q15_t)0xEB47, (q15_t)0x7E4F, (q15_t)0xEB15, (q15_t)0x7E47, (q15_t)0xEAE4, (q15_t)0x7E3F, (q15_t)0xEAB2, (q15_t)0x7E37, (q15_t)0xEA80, (q15_t)0x7E2E, (q15_t)0xEA4F, (q15_t)0x7E26, (q15_t)0xEA1D, (q15_t)0x7E1D, (q15_t)0xE9EC, (q15_t)0x7E14, (q15_t)0xE9BA, (q15_t)0x7E0C, (q15_t)0xE989, (q15_t)0x7E03, (q15_t)0xE957, (q15_t)0x7DFA, (q15_t)0xE926, (q15_t)0x7DF1, (q15_t)0xE8F5, (q15_t)0x7DE8, (q15_t)0xE8C3, (q15_t)0x7DDF, (q15_t)0xE892, (q15_t)0x7DD6, (q15_t)0xE860, (q15_t)0x7DCD, (q15_t)0xE82F, (q15_t)0x7DC3, (q15_t)0xE7FD, (q15_t)0x7DBA, (q15_t)0xE7CC, (q15_t)0x7DB0, (q15_t)0xE79B, (q15_t)0x7DA7, (q15_t)0xE769, (q15_t)0x7D9D, (q15_t)0xE738, (q15_t)0x7D94, (q15_t)0xE707, (q15_t)0x7D8A, (q15_t)0xE6D5, (q15_t)0x7D80, (q15_t)0xE6A4, (q15_t)0x7D76, (q15_t)0xE673, (q15_t)0x7D6C, (q15_t)0xE642, (q15_t)0x7D62, (q15_t)0xE610, (q15_t)0x7D58, (q15_t)0xE5DF, (q15_t)0x7D4E, (q15_t)0xE5AE, (q15_t)0x7D43, (q15_t)0xE57D, (q15_t)0x7D39, (q15_t)0xE54C, (q15_t)0x7D2F, (q15_t)0xE51B, (q15_t)0x7D24, (q15_t)0xE4E9, (q15_t)0x7D19, (q15_t)0xE4B8, (q15_t)0x7D0F, (q15_t)0xE487, (q15_t)0x7D04, (q15_t)0xE456, (q15_t)0x7CF9, (q15_t)0xE425, (q15_t)0x7CEE, (q15_t)0xE3F4, (q15_t)0x7CE3, (q15_t)0xE3C3, (q15_t)0x7CD8, (q15_t)0xE392, (q15_t)0x7CCD, (q15_t)0xE361, (q15_t)0x7CC2, (q15_t)0xE330, (q15_t)0x7CB7, (q15_t)0xE2FF, (q15_t)0x7CAB, (q15_t)0xE2CE, (q15_t)0x7CA0, (q15_t)0xE29D, (q15_t)0x7C94, (q15_t)0xE26C, (q15_t)0x7C89, (q15_t)0xE23B, (q15_t)0x7C7D, (q15_t)0xE20A, (q15_t)0x7C71, (q15_t)0xE1DA, (q15_t)0x7C66, (q15_t)0xE1A9, (q15_t)0x7C5A, (q15_t)0xE178, (q15_t)0x7C4E, (q15_t)0xE147, (q15_t)0x7C42, (q15_t)0xE116, (q15_t)0x7C36, (q15_t)0xE0E6, (q15_t)0x7C29, (q15_t)0xE0B5, (q15_t)0x7C1D, (q15_t)0xE084, (q15_t)0x7C11, (q15_t)0xE053, (q15_t)0x7C05, (q15_t)0xE023, (q15_t)0x7BF8, (q15_t)0xDFF2, (q15_t)0x7BEB, (q15_t)0xDFC1, (q15_t)0x7BDF, (q15_t)0xDF91, (q15_t)0x7BD2, (q15_t)0xDF60, (q15_t)0x7BC5, (q15_t)0xDF2F, (q15_t)0x7BB9, (q15_t)0xDEFF, (q15_t)0x7BAC, (q15_t)0xDECE, (q15_t)0x7B9F, (q15_t)0xDE9E, (q15_t)0x7B92, (q15_t)0xDE6D, (q15_t)0x7B84, (q15_t)0xDE3D, (q15_t)0x7B77, (q15_t)0xDE0C, (q15_t)0x7B6A, (q15_t)0xDDDC, (q15_t)0x7B5D, (q15_t)0xDDAB, (q15_t)0x7B4F, (q15_t)0xDD7B, (q15_t)0x7B42, (q15_t)0xDD4B, (q15_t)0x7B34, (q15_t)0xDD1A, (q15_t)0x7B26, (q15_t)0xDCEA, (q15_t)0x7B19, (q15_t)0xDCBA, (q15_t)0x7B0B, (q15_t)0xDC89, (q15_t)0x7AFD, (q15_t)0xDC59, (q15_t)0x7AEF, (q15_t)0xDC29, (q15_t)0x7AE1, (q15_t)0xDBF8, (q15_t)0x7AD3, (q15_t)0xDBC8, (q15_t)0x7AC5, (q15_t)0xDB98, (q15_t)0x7AB6, (q15_t)0xDB68, (q15_t)0x7AA8, (q15_t)0xDB38, (q15_t)0x7A9A, (q15_t)0xDB08, (q15_t)0x7A8B, (q15_t)0xDAD7, (q15_t)0x7A7D, (q15_t)0xDAA7, (q15_t)0x7A6E, (q15_t)0xDA77, (q15_t)0x7A5F, (q15_t)0xDA47, (q15_t)0x7A50, (q15_t)0xDA17, (q15_t)0x7A42, (q15_t)0xD9E7, (q15_t)0x7A33, (q15_t)0xD9B7, (q15_t)0x7A24, (q15_t)0xD987, (q15_t)0x7A15, (q15_t)0xD957, (q15_t)0x7A05, (q15_t)0xD927, (q15_t)0x79F6, (q15_t)0xD8F8, (q15_t)0x79E7, (q15_t)0xD8C8, (q15_t)0x79D8, (q15_t)0xD898, (q15_t)0x79C8, (q15_t)0xD868, (q15_t)0x79B9, (q15_t)0xD838, (q15_t)0x79A9, (q15_t)0xD809, (q15_t)0x7999, (q15_t)0xD7D9, (q15_t)0x798A, (q15_t)0xD7A9, (q15_t)0x797A, (q15_t)0xD779, (q15_t)0x796A, (q15_t)0xD74A, (q15_t)0x795A, (q15_t)0xD71A, (q15_t)0x794A, (q15_t)0xD6EA, (q15_t)0x793A, (q15_t)0xD6BB, (q15_t)0x792A, (q15_t)0xD68B, (q15_t)0x7919, (q15_t)0xD65C, (q15_t)0x7909, (q15_t)0xD62C, (q15_t)0x78F9, (q15_t)0xD5FD, (q15_t)0x78E8, (q15_t)0xD5CD, (q15_t)0x78D8, (q15_t)0xD59E, (q15_t)0x78C7, (q15_t)0xD56E, (q15_t)0x78B6, (q15_t)0xD53F, (q15_t)0x78A6, (q15_t)0xD510, (q15_t)0x7895, (q15_t)0xD4E0, (q15_t)0x7884, (q15_t)0xD4B1, (q15_t)0x7873, (q15_t)0xD482, (q15_t)0x7862, (q15_t)0xD452, (q15_t)0x7851, (q15_t)0xD423, (q15_t)0x7840, (q15_t)0xD3F4, (q15_t)0x782E, (q15_t)0xD3C5, (q15_t)0x781D, (q15_t)0xD396, (q15_t)0x780C, (q15_t)0xD367, (q15_t)0x77FA, (q15_t)0xD337, (q15_t)0x77E9, (q15_t)0xD308, (q15_t)0x77D7, (q15_t)0xD2D9, (q15_t)0x77C5, (q15_t)0xD2AA, (q15_t)0x77B4, (q15_t)0xD27B, (q15_t)0x77A2, (q15_t)0xD24C, (q15_t)0x7790, (q15_t)0xD21D, (q15_t)0x777E, (q15_t)0xD1EE, (q15_t)0x776C, (q15_t)0xD1C0, (q15_t)0x775A, (q15_t)0xD191, (q15_t)0x7747, (q15_t)0xD162, (q15_t)0x7735, (q15_t)0xD133, (q15_t)0x7723, (q15_t)0xD104, (q15_t)0x7710, (q15_t)0xD0D6, (q15_t)0x76FE, (q15_t)0xD0A7, (q15_t)0x76EB, (q15_t)0xD078, (q15_t)0x76D9, (q15_t)0xD04A, (q15_t)0x76C6, (q15_t)0xD01B, (q15_t)0x76B3, (q15_t)0xCFEC, (q15_t)0x76A0, (q15_t)0xCFBE, (q15_t)0x768E, (q15_t)0xCF8F, (q15_t)0x767B, (q15_t)0xCF61, (q15_t)0x7668, (q15_t)0xCF32, (q15_t)0x7654, (q15_t)0xCF04, (q15_t)0x7641, (q15_t)0xCED5, (q15_t)0x762E, (q15_t)0xCEA7, (q15_t)0x761B, (q15_t)0xCE79, (q15_t)0x7607, (q15_t)0xCE4A, (q15_t)0x75F4, (q15_t)0xCE1C, (q15_t)0x75E0, (q15_t)0xCDEE, (q15_t)0x75CC, (q15_t)0xCDBF, (q15_t)0x75B9, (q15_t)0xCD91, (q15_t)0x75A5, (q15_t)0xCD63, (q15_t)0x7591, (q15_t)0xCD35, (q15_t)0x757D, (q15_t)0xCD07, (q15_t)0x7569, (q15_t)0xCCD9, (q15_t)0x7555, (q15_t)0xCCAB, (q15_t)0x7541, (q15_t)0xCC7D, (q15_t)0x752D, (q15_t)0xCC4F, (q15_t)0x7519, (q15_t)0xCC21, (q15_t)0x7504, (q15_t)0xCBF3, (q15_t)0x74F0, (q15_t)0xCBC5, (q15_t)0x74DB, (q15_t)0xCB97, (q15_t)0x74C7, (q15_t)0xCB69, (q15_t)0x74B2, (q15_t)0xCB3B, (q15_t)0x749E, (q15_t)0xCB0D, (q15_t)0x7489, (q15_t)0xCAE0, (q15_t)0x7474, (q15_t)0xCAB2, (q15_t)0x745F, (q15_t)0xCA84, (q15_t)0x744A, (q15_t)0xCA57, (q15_t)0x7435, (q15_t)0xCA29, (q15_t)0x7420, (q15_t)0xC9FB, (q15_t)0x740B, (q15_t)0xC9CE, (q15_t)0x73F6, (q15_t)0xC9A0, (q15_t)0x73E0, (q15_t)0xC973, (q15_t)0x73CB, (q15_t)0xC945, (q15_t)0x73B5, (q15_t)0xC918, (q15_t)0x73A0, (q15_t)0xC8EB, (q15_t)0x738A, (q15_t)0xC8BD, (q15_t)0x7375, (q15_t)0xC890, (q15_t)0x735F, (q15_t)0xC863, (q15_t)0x7349, (q15_t)0xC835, (q15_t)0x7333, (q15_t)0xC808, (q15_t)0x731D, (q15_t)0xC7DB, (q15_t)0x7307, (q15_t)0xC7AE, (q15_t)0x72F1, (q15_t)0xC781, (q15_t)0x72DB, (q15_t)0xC754, (q15_t)0x72C5, (q15_t)0xC727, (q15_t)0x72AF, (q15_t)0xC6F9, (q15_t)0x7298, (q15_t)0xC6CD, (q15_t)0x7282, (q15_t)0xC6A0, (q15_t)0x726B, (q15_t)0xC673, (q15_t)0x7255, (q15_t)0xC646, (q15_t)0x723E, (q15_t)0xC619, (q15_t)0x7227, (q15_t)0xC5EC, (q15_t)0x7211, (q15_t)0xC5BF, (q15_t)0x71FA, (q15_t)0xC593, (q15_t)0x71E3, (q15_t)0xC566, (q15_t)0x71CC, (q15_t)0xC539, (q15_t)0x71B5, (q15_t)0xC50D, (q15_t)0x719E, (q15_t)0xC4E0, (q15_t)0x7186, (q15_t)0xC4B3, (q15_t)0x716F, (q15_t)0xC487, (q15_t)0x7158, (q15_t)0xC45A, (q15_t)0x7141, (q15_t)0xC42E, (q15_t)0x7129, (q15_t)0xC402, (q15_t)0x7112, (q15_t)0xC3D5, (q15_t)0x70FA, (q15_t)0xC3A9, (q15_t)0x70E2, (q15_t)0xC37C, (q15_t)0x70CB, (q15_t)0xC350, (q15_t)0x70B3, (q15_t)0xC324, (q15_t)0x709B, (q15_t)0xC2F8, (q15_t)0x7083, (q15_t)0xC2CC, (q15_t)0x706B, (q15_t)0xC29F, (q15_t)0x7053, (q15_t)0xC273, (q15_t)0x703B, (q15_t)0xC247, (q15_t)0x7023, (q15_t)0xC21B, (q15_t)0x700A, (q15_t)0xC1EF, (q15_t)0x6FF2, (q15_t)0xC1C3, (q15_t)0x6FDA, (q15_t)0xC197, (q15_t)0x6FC1, (q15_t)0xC16C, (q15_t)0x6FA9, (q15_t)0xC140, (q15_t)0x6F90, (q15_t)0xC114, (q15_t)0x6F77, (q15_t)0xC0E8, (q15_t)0x6F5F, (q15_t)0xC0BC, (q15_t)0x6F46, (q15_t)0xC091, (q15_t)0x6F2D, (q15_t)0xC065, (q15_t)0x6F14, (q15_t)0xC03A, (q15_t)0x6EFB, (q15_t)0xC00E, (q15_t)0x6EE2, (q15_t)0xBFE2, (q15_t)0x6EC9, (q15_t)0xBFB7, (q15_t)0x6EAF, (q15_t)0xBF8C, (q15_t)0x6E96, (q15_t)0xBF60, (q15_t)0x6E7D, (q15_t)0xBF35, (q15_t)0x6E63, (q15_t)0xBF09, (q15_t)0x6E4A, (q15_t)0xBEDE, (q15_t)0x6E30, (q15_t)0xBEB3, (q15_t)0x6E17, (q15_t)0xBE88, (q15_t)0x6DFD, (q15_t)0xBE5D, (q15_t)0x6DE3, (q15_t)0xBE31, (q15_t)0x6DCA, (q15_t)0xBE06, (q15_t)0x6DB0, (q15_t)0xBDDB, (q15_t)0x6D96, (q15_t)0xBDB0, (q15_t)0x6D7C, (q15_t)0xBD85, (q15_t)0x6D62, (q15_t)0xBD5A, (q15_t)0x6D48, (q15_t)0xBD2F, (q15_t)0x6D2D, (q15_t)0xBD05, (q15_t)0x6D13, (q15_t)0xBCDA, (q15_t)0x6CF9, (q15_t)0xBCAF, (q15_t)0x6CDE, (q15_t)0xBC84, (q15_t)0x6CC4, (q15_t)0xBC5A, (q15_t)0x6CA9, (q15_t)0xBC2F, (q15_t)0x6C8F, (q15_t)0xBC04, (q15_t)0x6C74, (q15_t)0xBBDA, (q15_t)0x6C59, (q15_t)0xBBAF, (q15_t)0x6C3F, (q15_t)0xBB85, (q15_t)0x6C24, (q15_t)0xBB5A, (q15_t)0x6C09, (q15_t)0xBB30, (q15_t)0x6BEE, (q15_t)0xBB05, (q15_t)0x6BD3, (q15_t)0xBADB, (q15_t)0x6BB8, (q15_t)0xBAB1, (q15_t)0x6B9C, (q15_t)0xBA87, (q15_t)0x6B81, (q15_t)0xBA5C, (q15_t)0x6B66, (q15_t)0xBA32, (q15_t)0x6B4A, (q15_t)0xBA08, (q15_t)0x6B2F, (q15_t)0xB9DE, (q15_t)0x6B13, (q15_t)0xB9B4, (q15_t)0x6AF8, (q15_t)0xB98A, (q15_t)0x6ADC, (q15_t)0xB960, (q15_t)0x6AC1, (q15_t)0xB936, (q15_t)0x6AA5, (q15_t)0xB90C, (q15_t)0x6A89, (q15_t)0xB8E3, (q15_t)0x6A6D, (q15_t)0xB8B9, (q15_t)0x6A51, (q15_t)0xB88F, (q15_t)0x6A35, (q15_t)0xB865, (q15_t)0x6A19, (q15_t)0xB83C, (q15_t)0x69FD, (q15_t)0xB812, (q15_t)0x69E1, (q15_t)0xB7E9, (q15_t)0x69C4, (q15_t)0xB7BF, (q15_t)0x69A8, (q15_t)0xB796, (q15_t)0x698C, (q15_t)0xB76C, (q15_t)0x696F, (q15_t)0xB743, (q15_t)0x6953, (q15_t)0xB719, (q15_t)0x6936, (q15_t)0xB6F0, (q15_t)0x6919, (q15_t)0xB6C7, (q15_t)0x68FD, (q15_t)0xB69E, (q15_t)0x68E0, (q15_t)0xB675, (q15_t)0x68C3, (q15_t)0xB64B, (q15_t)0x68A6, (q15_t)0xB622, (q15_t)0x6889, (q15_t)0xB5F9, (q15_t)0x686C, (q15_t)0xB5D0, (q15_t)0x684F, (q15_t)0xB5A7, (q15_t)0x6832, (q15_t)0xB57E, (q15_t)0x6815, (q15_t)0xB556, (q15_t)0x67F7, (q15_t)0xB52D, (q15_t)0x67DA, (q15_t)0xB504, (q15_t)0x67BD, (q15_t)0xB4DB, (q15_t)0x679F, (q15_t)0xB4B3, (q15_t)0x6782, (q15_t)0xB48A, (q15_t)0x6764, (q15_t)0xB461, (q15_t)0x6746, (q15_t)0xB439, (q15_t)0x6729, (q15_t)0xB410, (q15_t)0x670B, (q15_t)0xB3E8, (q15_t)0x66ED, (q15_t)0xB3C0, (q15_t)0x66CF, (q15_t)0xB397, (q15_t)0x66B1, (q15_t)0xB36F, (q15_t)0x6693, (q15_t)0xB347, (q15_t)0x6675, (q15_t)0xB31E, (q15_t)0x6657, (q15_t)0xB2F6, (q15_t)0x6639, (q15_t)0xB2CE, (q15_t)0x661A, (q15_t)0xB2A6, (q15_t)0x65FC, (q15_t)0xB27E, (q15_t)0x65DD, (q15_t)0xB256, (q15_t)0x65BF, (q15_t)0xB22E, (q15_t)0x65A0, (q15_t)0xB206, (q15_t)0x6582, (q15_t)0xB1DE, (q15_t)0x6563, (q15_t)0xB1B7, (q15_t)0x6545, (q15_t)0xB18F, (q15_t)0x6526, (q15_t)0xB167, (q15_t)0x6507, (q15_t)0xB140, (q15_t)0x64E8, (q15_t)0xB118, (q15_t)0x64C9, (q15_t)0xB0F0, (q15_t)0x64AA, (q15_t)0xB0C9, (q15_t)0x648B, (q15_t)0xB0A1, (q15_t)0x646C, (q15_t)0xB07A, (q15_t)0x644D, (q15_t)0xB053, (q15_t)0x642D, (q15_t)0xB02B, (q15_t)0x640E, (q15_t)0xB004, (q15_t)0x63EF, (q15_t)0xAFDD, (q15_t)0x63CF, (q15_t)0xAFB6, (q15_t)0x63B0, (q15_t)0xAF8F, (q15_t)0x6390, (q15_t)0xAF68, (q15_t)0x6371, (q15_t)0xAF40, (q15_t)0x6351, (q15_t)0xAF1A, (q15_t)0x6331, (q15_t)0xAEF3, (q15_t)0x6311, (q15_t)0xAECC, (q15_t)0x62F2, (q15_t)0xAEA5, (q15_t)0x62D2, (q15_t)0xAE7E, (q15_t)0x62B2, (q15_t)0xAE57, (q15_t)0x6292, (q15_t)0xAE31, (q15_t)0x6271, (q15_t)0xAE0A, (q15_t)0x6251, (q15_t)0xADE3, (q15_t)0x6231, (q15_t)0xADBD, (q15_t)0x6211, (q15_t)0xAD96, (q15_t)0x61F1, (q15_t)0xAD70, (q15_t)0x61D0, (q15_t)0xAD4A, (q15_t)0x61B0, (q15_t)0xAD23, (q15_t)0x618F, (q15_t)0xACFD, (q15_t)0x616F, (q15_t)0xACD7, (q15_t)0x614E, (q15_t)0xACB1, (q15_t)0x612D, (q15_t)0xAC8A, (q15_t)0x610D, (q15_t)0xAC64, (q15_t)0x60EC, (q15_t)0xAC3E, (q15_t)0x60CB, (q15_t)0xAC18, (q15_t)0x60AA, (q15_t)0xABF2, (q15_t)0x6089, (q15_t)0xABCC, (q15_t)0x6068, (q15_t)0xABA7, (q15_t)0x6047, (q15_t)0xAB81, (q15_t)0x6026, (q15_t)0xAB5B, (q15_t)0x6004, (q15_t)0xAB35, (q15_t)0x5FE3, (q15_t)0xAB10, (q15_t)0x5FC2, (q15_t)0xAAEA, (q15_t)0x5FA0, (q15_t)0xAAC5, (q15_t)0x5F7F, (q15_t)0xAA9F, (q15_t)0x5F5E, (q15_t)0xAA7A, (q15_t)0x5F3C, (q15_t)0xAA54, (q15_t)0x5F1A, (q15_t)0xAA2F, (q15_t)0x5EF9, (q15_t)0xAA0A, (q15_t)0x5ED7, (q15_t)0xA9E5, (q15_t)0x5EB5, (q15_t)0xA9BF, (q15_t)0x5E93, (q15_t)0xA99A, (q15_t)0x5E71, (q15_t)0xA975, (q15_t)0x5E50, (q15_t)0xA950, (q15_t)0x5E2D, (q15_t)0xA92B, (q15_t)0x5E0B, (q15_t)0xA906, (q15_t)0x5DE9, (q15_t)0xA8E2, (q15_t)0x5DC7, (q15_t)0xA8BD, (q15_t)0x5DA5, (q15_t)0xA898, (q15_t)0x5D83, (q15_t)0xA873, (q15_t)0x5D60, (q15_t)0xA84F, (q15_t)0x5D3E, (q15_t)0xA82A, (q15_t)0x5D1B, (q15_t)0xA806, (q15_t)0x5CF9, (q15_t)0xA7E1, (q15_t)0x5CD6, (q15_t)0xA7BD, (q15_t)0x5CB4, (q15_t)0xA798, (q15_t)0x5C91, (q15_t)0xA774, (q15_t)0x5C6E, (q15_t)0xA750, (q15_t)0x5C4B, (q15_t)0xA72B, (q15_t)0x5C29, (q15_t)0xA707, (q15_t)0x5C06, (q15_t)0xA6E3, (q15_t)0x5BE3, (q15_t)0xA6BF, (q15_t)0x5BC0, (q15_t)0xA69B, (q15_t)0x5B9D, (q15_t)0xA677, (q15_t)0x5B79, (q15_t)0xA653, (q15_t)0x5B56, (q15_t)0xA62F, (q15_t)0x5B33, (q15_t)0xA60C, (q15_t)0x5B10, (q15_t)0xA5E8, (q15_t)0x5AEC, (q15_t)0xA5C4, (q15_t)0x5AC9, (q15_t)0xA5A1, (q15_t)0x5AA5, (q15_t)0xA57D, (q15_t)0x5A82, (q15_t)0xA55A, (q15_t)0x5A5E, (q15_t)0xA536, (q15_t)0x5A3B, (q15_t)0xA513, (q15_t)0x5A17, (q15_t)0xA4EF, (q15_t)0x59F3, (q15_t)0xA4CC, (q15_t)0x59D0, (q15_t)0xA4A9, (q15_t)0x59AC, (q15_t)0xA486, (q15_t)0x5988, (q15_t)0xA462, (q15_t)0x5964, (q15_t)0xA43F, (q15_t)0x5940, (q15_t)0xA41C, (q15_t)0x591C, (q15_t)0xA3F9, (q15_t)0x58F8, (q15_t)0xA3D6, (q15_t)0x58D4, (q15_t)0xA3B4, (q15_t)0x58AF, (q15_t)0xA391, (q15_t)0x588B, (q15_t)0xA36E, (q15_t)0x5867, (q15_t)0xA34B, (q15_t)0x5842, (q15_t)0xA329, (q15_t)0x581E, (q15_t)0xA306, (q15_t)0x57F9, (q15_t)0xA2E4, (q15_t)0x57D5, (q15_t)0xA2C1, (q15_t)0x57B0, (q15_t)0xA29F, (q15_t)0x578C, (q15_t)0xA27C, (q15_t)0x5767, (q15_t)0xA25A, (q15_t)0x5742, (q15_t)0xA238, (q15_t)0x571D, (q15_t)0xA216, (q15_t)0x56F9, (q15_t)0xA1F4, (q15_t)0x56D4, (q15_t)0xA1D2, (q15_t)0x56AF, (q15_t)0xA1AF, (q15_t)0x568A, (q15_t)0xA18E, (q15_t)0x5665, (q15_t)0xA16C, (q15_t)0x5640, (q15_t)0xA14A, (q15_t)0x561A, (q15_t)0xA128, (q15_t)0x55F5, (q15_t)0xA106, (q15_t)0x55D0, (q15_t)0xA0E5, (q15_t)0x55AB, (q15_t)0xA0C3, (q15_t)0x5585, (q15_t)0xA0A1, (q15_t)0x5560, (q15_t)0xA080, (q15_t)0x553A, (q15_t)0xA05F, (q15_t)0x5515, (q15_t)0xA03D, (q15_t)0x54EF, (q15_t)0xA01C, (q15_t)0x54CA, (q15_t)0x9FFB, (q15_t)0x54A4, (q15_t)0x9FD9, (q15_t)0x547E, (q15_t)0x9FB8, (q15_t)0x5458, (q15_t)0x9F97, (q15_t)0x5433, (q15_t)0x9F76, (q15_t)0x540D, (q15_t)0x9F55, (q15_t)0x53E7, (q15_t)0x9F34, (q15_t)0x53C1, (q15_t)0x9F13, (q15_t)0x539B, (q15_t)0x9EF2, (q15_t)0x5375, (q15_t)0x9ED2, (q15_t)0x534E, (q15_t)0x9EB1, (q15_t)0x5328, (q15_t)0x9E90, (q15_t)0x5302, (q15_t)0x9E70, (q15_t)0x52DC, (q15_t)0x9E4F, (q15_t)0x52B5, (q15_t)0x9E2F, (q15_t)0x528F, (q15_t)0x9E0E, (q15_t)0x5269, (q15_t)0x9DEE, (q15_t)0x5242, (q15_t)0x9DCE, (q15_t)0x521C, (q15_t)0x9DAE, (q15_t)0x51F5, (q15_t)0x9D8E, (q15_t)0x51CE, (q15_t)0x9D6D, (q15_t)0x51A8, (q15_t)0x9D4D, (q15_t)0x5181, (q15_t)0x9D2D, (q15_t)0x515A, (q15_t)0x9D0D, (q15_t)0x5133, (q15_t)0x9CEE, (q15_t)0x510C, (q15_t)0x9CCE, (q15_t)0x50E5, (q15_t)0x9CAE, (q15_t)0x50BF, (q15_t)0x9C8E, (q15_t)0x5097, (q15_t)0x9C6F, (q15_t)0x5070, (q15_t)0x9C4F, (q15_t)0x5049, (q15_t)0x9C30, (q15_t)0x5022, (q15_t)0x9C10, (q15_t)0x4FFB, (q15_t)0x9BF1, (q15_t)0x4FD4, (q15_t)0x9BD2, (q15_t)0x4FAC, (q15_t)0x9BB2, (q15_t)0x4F85, (q15_t)0x9B93, (q15_t)0x4F5E, (q15_t)0x9B74, (q15_t)0x4F36, (q15_t)0x9B55, (q15_t)0x4F0F, (q15_t)0x9B36, (q15_t)0x4EE7, (q15_t)0x9B17, (q15_t)0x4EBF, (q15_t)0x9AF8, (q15_t)0x4E98, (q15_t)0x9AD9, (q15_t)0x4E70, (q15_t)0x9ABA, (q15_t)0x4E48, (q15_t)0x9A9C, (q15_t)0x4E21, (q15_t)0x9A7D, (q15_t)0x4DF9, (q15_t)0x9A5F, (q15_t)0x4DD1, (q15_t)0x9A40, (q15_t)0x4DA9, (q15_t)0x9A22, (q15_t)0x4D81, (q15_t)0x9A03, (q15_t)0x4D59, (q15_t)0x99E5, (q15_t)0x4D31, (q15_t)0x99C6, (q15_t)0x4D09, (q15_t)0x99A8, (q15_t)0x4CE1, (q15_t)0x998A, (q15_t)0x4CB8, (q15_t)0x996C, (q15_t)0x4C90, (q15_t)0x994E, (q15_t)0x4C68, (q15_t)0x9930, (q15_t)0x4C3F, (q15_t)0x9912, (q15_t)0x4C17, (q15_t)0x98F4, (q15_t)0x4BEF, (q15_t)0x98D6, (q15_t)0x4BC6, (q15_t)0x98B9, (q15_t)0x4B9E, (q15_t)0x989B, (q15_t)0x4B75, (q15_t)0x987D, (q15_t)0x4B4C, (q15_t)0x9860, (q15_t)0x4B24, (q15_t)0x9842, (q15_t)0x4AFB, (q15_t)0x9825, (q15_t)0x4AD2, (q15_t)0x9808, (q15_t)0x4AA9, (q15_t)0x97EA, (q15_t)0x4A81, (q15_t)0x97CD, (q15_t)0x4A58, (q15_t)0x97B0, (q15_t)0x4A2F, (q15_t)0x9793, (q15_t)0x4A06, (q15_t)0x9776, (q15_t)0x49DD, (q15_t)0x9759, (q15_t)0x49B4, (q15_t)0x973C, (q15_t)0x498A, (q15_t)0x971F, (q15_t)0x4961, (q15_t)0x9702, (q15_t)0x4938, (q15_t)0x96E6, (q15_t)0x490F, (q15_t)0x96C9, (q15_t)0x48E6, (q15_t)0x96AC, (q15_t)0x48BC, (q15_t)0x9690, (q15_t)0x4893, (q15_t)0x9673, (q15_t)0x4869, (q15_t)0x9657, (q15_t)0x4840, (q15_t)0x963B, (q15_t)0x4816, (q15_t)0x961E, (q15_t)0x47ED, (q15_t)0x9602, (q15_t)0x47C3, (q15_t)0x95E6, (q15_t)0x479A, (q15_t)0x95CA, (q15_t)0x4770, (q15_t)0x95AE, (q15_t)0x4746, (q15_t)0x9592, (q15_t)0x471C, (q15_t)0x9576, (q15_t)0x46F3, (q15_t)0x955A, (q15_t)0x46C9, (q15_t)0x953E, (q15_t)0x469F, (q15_t)0x9523, (q15_t)0x4675, (q15_t)0x9507, (q15_t)0x464B, (q15_t)0x94EC, (q15_t)0x4621, (q15_t)0x94D0, (q15_t)0x45F7, (q15_t)0x94B5, (q15_t)0x45CD, (q15_t)0x9499, (q15_t)0x45A3, (q15_t)0x947E, (q15_t)0x4578, (q15_t)0x9463, (q15_t)0x454E, (q15_t)0x9447, (q15_t)0x4524, (q15_t)0x942C, (q15_t)0x44FA, (q15_t)0x9411, (q15_t)0x44CF, (q15_t)0x93F6, (q15_t)0x44A5, (q15_t)0x93DB, (q15_t)0x447A, (q15_t)0x93C0, (q15_t)0x4450, (q15_t)0x93A6, (q15_t)0x4425, (q15_t)0x938B, (q15_t)0x43FB, (q15_t)0x9370, (q15_t)0x43D0, (q15_t)0x9356, (q15_t)0x43A5, (q15_t)0x933B, (q15_t)0x437B, (q15_t)0x9321, (q15_t)0x4350, (q15_t)0x9306, (q15_t)0x4325, (q15_t)0x92EC, (q15_t)0x42FA, (q15_t)0x92D2, (q15_t)0x42D0, (q15_t)0x92B7, (q15_t)0x42A5, (q15_t)0x929D, (q15_t)0x427A, (q15_t)0x9283, (q15_t)0x424F, (q15_t)0x9269, (q15_t)0x4224, (q15_t)0x924F, (q15_t)0x41F9, (q15_t)0x9235, (q15_t)0x41CE, (q15_t)0x921C, (q15_t)0x41A2, (q15_t)0x9202, (q15_t)0x4177, (q15_t)0x91E8, (q15_t)0x414C, (q15_t)0x91CF, (q15_t)0x4121, (q15_t)0x91B5, (q15_t)0x40F6, (q15_t)0x919C, (q15_t)0x40CA, (q15_t)0x9182, (q15_t)0x409F, (q15_t)0x9169, (q15_t)0x4073, (q15_t)0x9150, (q15_t)0x4048, (q15_t)0x9136, (q15_t)0x401D, (q15_t)0x911D, (q15_t)0x3FF1, (q15_t)0x9104, (q15_t)0x3FC5, (q15_t)0x90EB, (q15_t)0x3F9A, (q15_t)0x90D2, (q15_t)0x3F6E, (q15_t)0x90B9, (q15_t)0x3F43, (q15_t)0x90A0, (q15_t)0x3F17, (q15_t)0x9088, (q15_t)0x3EEB, (q15_t)0x906F, (q15_t)0x3EBF, (q15_t)0x9056, (q15_t)0x3E93, (q15_t)0x903E, (q15_t)0x3E68, (q15_t)0x9025, (q15_t)0x3E3C, (q15_t)0x900D, (q15_t)0x3E10, (q15_t)0x8FF5, (q15_t)0x3DE4, (q15_t)0x8FDC, (q15_t)0x3DB8, (q15_t)0x8FC4, (q15_t)0x3D8C, (q15_t)0x8FAC, (q15_t)0x3D60, (q15_t)0x8F94, (q15_t)0x3D33, (q15_t)0x8F7C, (q15_t)0x3D07, (q15_t)0x8F64, (q15_t)0x3CDB, (q15_t)0x8F4C, (q15_t)0x3CAF, (q15_t)0x8F34, (q15_t)0x3C83, (q15_t)0x8F1D, (q15_t)0x3C56, (q15_t)0x8F05, (q15_t)0x3C2A, (q15_t)0x8EED, (q15_t)0x3BFD, (q15_t)0x8ED6, (q15_t)0x3BD1, (q15_t)0x8EBE, (q15_t)0x3BA5, (q15_t)0x8EA7, (q15_t)0x3B78, (q15_t)0x8E90, (q15_t)0x3B4C, (q15_t)0x8E79, (q15_t)0x3B1F, (q15_t)0x8E61, (q15_t)0x3AF2, (q15_t)0x8E4A, (q15_t)0x3AC6, (q15_t)0x8E33, (q15_t)0x3A99, (q15_t)0x8E1C, (q15_t)0x3A6C, (q15_t)0x8E05, (q15_t)0x3A40, (q15_t)0x8DEE, (q15_t)0x3A13, (q15_t)0x8DD8, (q15_t)0x39E6, (q15_t)0x8DC1, (q15_t)0x39B9, (q15_t)0x8DAA, (q15_t)0x398C, (q15_t)0x8D94, (q15_t)0x395F, (q15_t)0x8D7D, (q15_t)0x3932, (q15_t)0x8D67, (q15_t)0x3906, (q15_t)0x8D50, (q15_t)0x38D8, (q15_t)0x8D3A, (q15_t)0x38AB, (q15_t)0x8D24, (q15_t)0x387E, (q15_t)0x8D0E, (q15_t)0x3851, (q15_t)0x8CF8, (q15_t)0x3824, (q15_t)0x8CE2, (q15_t)0x37F7, (q15_t)0x8CCC, (q15_t)0x37CA, (q15_t)0x8CB6, (q15_t)0x379C, (q15_t)0x8CA0, (q15_t)0x376F, (q15_t)0x8C8A, (q15_t)0x3742, (q15_t)0x8C75, (q15_t)0x3714, (q15_t)0x8C5F, (q15_t)0x36E7, (q15_t)0x8C4A, (q15_t)0x36BA, (q15_t)0x8C34, (q15_t)0x368C, (q15_t)0x8C1F, (q15_t)0x365F, (q15_t)0x8C09, (q15_t)0x3631, (q15_t)0x8BF4, (q15_t)0x3604, (q15_t)0x8BDF, (q15_t)0x35D6, (q15_t)0x8BCA, (q15_t)0x35A8, (q15_t)0x8BB5, (q15_t)0x357B, (q15_t)0x8BA0, (q15_t)0x354D, (q15_t)0x8B8B, (q15_t)0x351F, (q15_t)0x8B76, (q15_t)0x34F2, (q15_t)0x8B61, (q15_t)0x34C4, (q15_t)0x8B4D, (q15_t)0x3496, (q15_t)0x8B38, (q15_t)0x3468, (q15_t)0x8B24, (q15_t)0x343A, (q15_t)0x8B0F, (q15_t)0x340C, (q15_t)0x8AFB, (q15_t)0x33DE, (q15_t)0x8AE6, (q15_t)0x33B0, (q15_t)0x8AD2, (q15_t)0x3382, (q15_t)0x8ABE, (q15_t)0x3354, (q15_t)0x8AAA, (q15_t)0x3326, (q15_t)0x8A96, (q15_t)0x32F8, (q15_t)0x8A82, (q15_t)0x32CA, (q15_t)0x8A6E, (q15_t)0x329C, (q15_t)0x8A5A, (q15_t)0x326E, (q15_t)0x8A46, (q15_t)0x3240, (q15_t)0x8A33, (q15_t)0x3211, (q15_t)0x8A1F, (q15_t)0x31E3, (q15_t)0x8A0B, (q15_t)0x31B5, (q15_t)0x89F8, (q15_t)0x3186, (q15_t)0x89E4, (q15_t)0x3158, (q15_t)0x89D1, (q15_t)0x312A, (q15_t)0x89BE, (q15_t)0x30FB, (q15_t)0x89AB, (q15_t)0x30CD, (q15_t)0x8997, (q15_t)0x309E, (q15_t)0x8984, (q15_t)0x3070, (q15_t)0x8971, (q15_t)0x3041, (q15_t)0x895F, (q15_t)0x3013, (q15_t)0x894C, (q15_t)0x2FE4, (q15_t)0x8939, (q15_t)0x2FB5, (q15_t)0x8926, (q15_t)0x2F87, (q15_t)0x8914, (q15_t)0x2F58, (q15_t)0x8901, (q15_t)0x2F29, (q15_t)0x88EF, (q15_t)0x2EFB, (q15_t)0x88DC, (q15_t)0x2ECC, (q15_t)0x88CA, (q15_t)0x2E9D, (q15_t)0x88B8, (q15_t)0x2E6E, (q15_t)0x88A5, (q15_t)0x2E3F, (q15_t)0x8893, (q15_t)0x2E11, (q15_t)0x8881, (q15_t)0x2DE2, (q15_t)0x886F, (q15_t)0x2DB3, (q15_t)0x885D, (q15_t)0x2D84, (q15_t)0x884B, (q15_t)0x2D55, (q15_t)0x883A, (q15_t)0x2D26, (q15_t)0x8828, (q15_t)0x2CF7, (q15_t)0x8816, (q15_t)0x2CC8, (q15_t)0x8805, (q15_t)0x2C98, (q15_t)0x87F3, (q15_t)0x2C69, (q15_t)0x87E2, (q15_t)0x2C3A, (q15_t)0x87D1, (q15_t)0x2C0B, (q15_t)0x87BF, (q15_t)0x2BDC, (q15_t)0x87AE, (q15_t)0x2BAD, (q15_t)0x879D, (q15_t)0x2B7D, (q15_t)0x878C, (q15_t)0x2B4E, (q15_t)0x877B, (q15_t)0x2B1F, (q15_t)0x876A, (q15_t)0x2AEF, (q15_t)0x8759, (q15_t)0x2AC0, (q15_t)0x8749, (q15_t)0x2A91, (q15_t)0x8738, (q15_t)0x2A61, (q15_t)0x8727, (q15_t)0x2A32, (q15_t)0x8717, (q15_t)0x2A02, (q15_t)0x8706, (q15_t)0x29D3, (q15_t)0x86F6, (q15_t)0x29A3, (q15_t)0x86E6, (q15_t)0x2974, (q15_t)0x86D5, (q15_t)0x2944, (q15_t)0x86C5, (q15_t)0x2915, (q15_t)0x86B5, (q15_t)0x28E5, (q15_t)0x86A5, (q15_t)0x28B5, (q15_t)0x8695, (q15_t)0x2886, (q15_t)0x8685, (q15_t)0x2856, (q15_t)0x8675, (q15_t)0x2826, (q15_t)0x8666, (q15_t)0x27F6, (q15_t)0x8656, (q15_t)0x27C7, (q15_t)0x8646, (q15_t)0x2797, (q15_t)0x8637, (q15_t)0x2767, (q15_t)0x8627, (q15_t)0x2737, (q15_t)0x8618, (q15_t)0x2707, (q15_t)0x8609, (q15_t)0x26D8, (q15_t)0x85FA, (q15_t)0x26A8, (q15_t)0x85EA, (q15_t)0x2678, (q15_t)0x85DB, (q15_t)0x2648, (q15_t)0x85CC, (q15_t)0x2618, (q15_t)0x85BD, (q15_t)0x25E8, (q15_t)0x85AF, (q15_t)0x25B8, (q15_t)0x85A0, (q15_t)0x2588, (q15_t)0x8591, (q15_t)0x2558, (q15_t)0x8582, (q15_t)0x2528, (q15_t)0x8574, (q15_t)0x24F7, (q15_t)0x8565, (q15_t)0x24C7, (q15_t)0x8557, (q15_t)0x2497, (q15_t)0x8549, (q15_t)0x2467, (q15_t)0x853A, (q15_t)0x2437, (q15_t)0x852C, (q15_t)0x2407, (q15_t)0x851E, (q15_t)0x23D6, (q15_t)0x8510, (q15_t)0x23A6, (q15_t)0x8502, (q15_t)0x2376, (q15_t)0x84F4, (q15_t)0x2345, (q15_t)0x84E6, (q15_t)0x2315, (q15_t)0x84D9, (q15_t)0x22E5, (q15_t)0x84CB, (q15_t)0x22B4, (q15_t)0x84BD, (q15_t)0x2284, (q15_t)0x84B0, (q15_t)0x2254, (q15_t)0x84A2, (q15_t)0x2223, (q15_t)0x8495, (q15_t)0x21F3, (q15_t)0x8488, (q15_t)0x21C2, (q15_t)0x847B, (q15_t)0x2192, (q15_t)0x846D, (q15_t)0x2161, (q15_t)0x8460, (q15_t)0x2131, (q15_t)0x8453, (q15_t)0x2100, (q15_t)0x8446, (q15_t)0x20D0, (q15_t)0x843A, (q15_t)0x209F, (q15_t)0x842D, (q15_t)0x206E, (q15_t)0x8420, (q15_t)0x203E, (q15_t)0x8414, (q15_t)0x200D, (q15_t)0x8407, (q15_t)0x1FDC, (q15_t)0x83FA, (q15_t)0x1FAC, (q15_t)0x83EE, (q15_t)0x1F7B, (q15_t)0x83E2, (q15_t)0x1F4A, (q15_t)0x83D6, (q15_t)0x1F19, (q15_t)0x83C9, (q15_t)0x1EE9, (q15_t)0x83BD, (q15_t)0x1EB8, (q15_t)0x83B1, (q15_t)0x1E87, (q15_t)0x83A5, (q15_t)0x1E56, (q15_t)0x8399, (q15_t)0x1E25, (q15_t)0x838E, (q15_t)0x1DF5, (q15_t)0x8382, (q15_t)0x1DC4, (q15_t)0x8376, (q15_t)0x1D93, (q15_t)0x836B, (q15_t)0x1D62, (q15_t)0x835F, (q15_t)0x1D31, (q15_t)0x8354, (q15_t)0x1D00, (q15_t)0x8348, (q15_t)0x1CCF, (q15_t)0x833D, (q15_t)0x1C9E, (q15_t)0x8332, (q15_t)0x1C6D, (q15_t)0x8327, (q15_t)0x1C3C, (q15_t)0x831C, (q15_t)0x1C0B, (q15_t)0x8311, (q15_t)0x1BDA, (q15_t)0x8306, (q15_t)0x1BA9, (q15_t)0x82FB, (q15_t)0x1B78, (q15_t)0x82F0, (q15_t)0x1B47, (q15_t)0x82E6, (q15_t)0x1B16, (q15_t)0x82DB, (q15_t)0x1AE4, (q15_t)0x82D0, (q15_t)0x1AB3, (q15_t)0x82C6, (q15_t)0x1A82, (q15_t)0x82BC, (q15_t)0x1A51, (q15_t)0x82B1, (q15_t)0x1A20, (q15_t)0x82A7, (q15_t)0x19EF, (q15_t)0x829D, (q15_t)0x19BD, (q15_t)0x8293, (q15_t)0x198C, (q15_t)0x8289, (q15_t)0x195B, (q15_t)0x827F, (q15_t)0x192A, (q15_t)0x8275, (q15_t)0x18F8, (q15_t)0x826B, (q15_t)0x18C7, (q15_t)0x8262, (q15_t)0x1896, (q15_t)0x8258, (q15_t)0x1864, (q15_t)0x824F, (q15_t)0x1833, (q15_t)0x8245, (q15_t)0x1802, (q15_t)0x823C, (q15_t)0x17D0, (q15_t)0x8232, (q15_t)0x179F, (q15_t)0x8229, (q15_t)0x176D, (q15_t)0x8220, (q15_t)0x173C, (q15_t)0x8217, (q15_t)0x170A, (q15_t)0x820E, (q15_t)0x16D9, (q15_t)0x8205, (q15_t)0x16A8, (q15_t)0x81FC, (q15_t)0x1676, (q15_t)0x81F3, (q15_t)0x1645, (q15_t)0x81EB, (q15_t)0x1613, (q15_t)0x81E2, (q15_t)0x15E2, (q15_t)0x81D9, (q15_t)0x15B0, (q15_t)0x81D1, (q15_t)0x157F, (q15_t)0x81C8, (q15_t)0x154D, (q15_t)0x81C0, (q15_t)0x151B, (q15_t)0x81B8, (q15_t)0x14EA, (q15_t)0x81B0, (q15_t)0x14B8, (q15_t)0x81A8, (q15_t)0x1487, (q15_t)0x81A0, (q15_t)0x1455, (q15_t)0x8198, (q15_t)0x1423, (q15_t)0x8190, (q15_t)0x13F2, (q15_t)0x8188, (q15_t)0x13C0, (q15_t)0x8180, (q15_t)0x138E, (q15_t)0x8179, (q15_t)0x135D, (q15_t)0x8171, (q15_t)0x132B, (q15_t)0x816A, (q15_t)0x12F9, (q15_t)0x8162, (q15_t)0x12C8, (q15_t)0x815B, (q15_t)0x1296, (q15_t)0x8154, (q15_t)0x1264, (q15_t)0x814C, (q15_t)0x1232, (q15_t)0x8145, (q15_t)0x1201, (q15_t)0x813E, (q15_t)0x11CF, (q15_t)0x8137, (q15_t)0x119D, (q15_t)0x8130, (q15_t)0x116B, (q15_t)0x812A, (q15_t)0x1139, (q15_t)0x8123, (q15_t)0x1108, (q15_t)0x811C, (q15_t)0x10D6, (q15_t)0x8116, (q15_t)0x10A4, (q15_t)0x810F, (q15_t)0x1072, (q15_t)0x8109, (q15_t)0x1040, (q15_t)0x8102, (q15_t)0x100E, (q15_t)0x80FC, (q15_t)0x0FDD, (q15_t)0x80F6, (q15_t)0x0FAB, (q15_t)0x80F0, (q15_t)0x0F79, (q15_t)0x80EA, (q15_t)0x0F47, (q15_t)0x80E4, (q15_t)0x0F15, (q15_t)0x80DE, (q15_t)0x0EE3, (q15_t)0x80D8, (q15_t)0x0EB1, (q15_t)0x80D2, (q15_t)0x0E7F, (q15_t)0x80CD, (q15_t)0x0E4D, (q15_t)0x80C7, (q15_t)0x0E1B, (q15_t)0x80C2, (q15_t)0x0DE9, (q15_t)0x80BC, (q15_t)0x0DB7, (q15_t)0x80B7, (q15_t)0x0D85, (q15_t)0x80B2, (q15_t)0x0D53, (q15_t)0x80AC, (q15_t)0x0D21, (q15_t)0x80A7, (q15_t)0x0CEF, (q15_t)0x80A2, (q15_t)0x0CBD, (q15_t)0x809D, (q15_t)0x0C8B, (q15_t)0x8098, (q15_t)0x0C59, (q15_t)0x8094, (q15_t)0x0C27, (q15_t)0x808F, (q15_t)0x0BF5, (q15_t)0x808A, (q15_t)0x0BC3, (q15_t)0x8086, (q15_t)0x0B91, (q15_t)0x8081, (q15_t)0x0B5F, (q15_t)0x807D, (q15_t)0x0B2D, (q15_t)0x8078, (q15_t)0x0AFB, (q15_t)0x8074, (q15_t)0x0AC9, (q15_t)0x8070, (q15_t)0x0A97, (q15_t)0x806C, (q15_t)0x0A65, (q15_t)0x8068, (q15_t)0x0A33, (q15_t)0x8064, (q15_t)0x0A00, (q15_t)0x8060, (q15_t)0x09CE, (q15_t)0x805C, (q15_t)0x099C, (q15_t)0x8058, (q15_t)0x096A, (q15_t)0x8055, (q15_t)0x0938, (q15_t)0x8051, (q15_t)0x0906, (q15_t)0x804E, (q15_t)0x08D4, (q15_t)0x804A, (q15_t)0x08A2, (q15_t)0x8047, (q15_t)0x086F, (q15_t)0x8043, (q15_t)0x083D, (q15_t)0x8040, (q15_t)0x080B, (q15_t)0x803D, (q15_t)0x07D9, (q15_t)0x803A, (q15_t)0x07A7, (q15_t)0x8037, (q15_t)0x0775, (q15_t)0x8034, (q15_t)0x0742, (q15_t)0x8031, (q15_t)0x0710, (q15_t)0x802F, (q15_t)0x06DE, (q15_t)0x802C, (q15_t)0x06AC, (q15_t)0x8029, (q15_t)0x067A, (q15_t)0x8027, (q15_t)0x0647, (q15_t)0x8025, (q15_t)0x0615, (q15_t)0x8022, (q15_t)0x05E3, (q15_t)0x8020, (q15_t)0x05B1, (q15_t)0x801E, (q15_t)0x057F, (q15_t)0x801C, (q15_t)0x054C, (q15_t)0x801A, (q15_t)0x051A, (q15_t)0x8018, (q15_t)0x04E8, (q15_t)0x8016, (q15_t)0x04B6, (q15_t)0x8014, (q15_t)0x0483, (q15_t)0x8012, (q15_t)0x0451, (q15_t)0x8011, (q15_t)0x041F, (q15_t)0x800F, (q15_t)0x03ED, (q15_t)0x800D, (q15_t)0x03BA, (q15_t)0x800C, (q15_t)0x0388, (q15_t)0x800B, (q15_t)0x0356, (q15_t)0x8009, (q15_t)0x0324, (q15_t)0x8008, (q15_t)0x02F1, (q15_t)0x8007, (q15_t)0x02BF, (q15_t)0x8006, (q15_t)0x028D, (q15_t)0x8005, (q15_t)0x025B, (q15_t)0x8004, (q15_t)0x0228, (q15_t)0x8003, (q15_t)0x01F6, (q15_t)0x8003, (q15_t)0x01C4, (q15_t)0x8002, (q15_t)0x0192, (q15_t)0x8001, (q15_t)0x015F, (q15_t)0x8001, (q15_t)0x012D, (q15_t)0x8000, (q15_t)0x00FB, (q15_t)0x8000, (q15_t)0x00C9, (q15_t)0x8000, (q15_t)0x0096, (q15_t)0x8000, (q15_t)0x0064, (q15_t)0x8000, (q15_t)0x0032, (q15_t)0x8000, (q15_t)0x0000, (q15_t)0x8000, (q15_t)0xFFCD, (q15_t)0x8000, (q15_t)0xFF9B, (q15_t)0x8000, (q15_t)0xFF69, (q15_t)0x8000, (q15_t)0xFF36, (q15_t)0x8000, (q15_t)0xFF04, (q15_t)0x8001, (q15_t)0xFED2, (q15_t)0x8001, (q15_t)0xFEA0, (q15_t)0x8002, (q15_t)0xFE6D, (q15_t)0x8003, (q15_t)0xFE3B, (q15_t)0x8003, (q15_t)0xFE09, (q15_t)0x8004, (q15_t)0xFDD7, (q15_t)0x8005, (q15_t)0xFDA4, (q15_t)0x8006, (q15_t)0xFD72, (q15_t)0x8007, (q15_t)0xFD40, (q15_t)0x8008, (q15_t)0xFD0E, (q15_t)0x8009, (q15_t)0xFCDB, (q15_t)0x800B, (q15_t)0xFCA9, (q15_t)0x800C, (q15_t)0xFC77, (q15_t)0x800D, (q15_t)0xFC45, (q15_t)0x800F, (q15_t)0xFC12, (q15_t)0x8011, (q15_t)0xFBE0, (q15_t)0x8012, (q15_t)0xFBAE, (q15_t)0x8014, (q15_t)0xFB7C, (q15_t)0x8016, (q15_t)0xFB49, (q15_t)0x8018, (q15_t)0xFB17, (q15_t)0x801A, (q15_t)0xFAE5, (q15_t)0x801C, (q15_t)0xFAB3, (q15_t)0x801E, (q15_t)0xFA80, (q15_t)0x8020, (q15_t)0xFA4E, (q15_t)0x8022, (q15_t)0xFA1C, (q15_t)0x8025, (q15_t)0xF9EA, (q15_t)0x8027, (q15_t)0xF9B8, (q15_t)0x8029, (q15_t)0xF985, (q15_t)0x802C, (q15_t)0xF953, (q15_t)0x802F, (q15_t)0xF921, (q15_t)0x8031, (q15_t)0xF8EF, (q15_t)0x8034, (q15_t)0xF8BD, (q15_t)0x8037, (q15_t)0xF88A, (q15_t)0x803A, (q15_t)0xF858, (q15_t)0x803D, (q15_t)0xF826, (q15_t)0x8040, (q15_t)0xF7F4, (q15_t)0x8043, (q15_t)0xF7C2, (q15_t)0x8047, (q15_t)0xF790, (q15_t)0x804A, (q15_t)0xF75D, (q15_t)0x804E, (q15_t)0xF72B, (q15_t)0x8051, (q15_t)0xF6F9, (q15_t)0x8055, (q15_t)0xF6C7, (q15_t)0x8058, (q15_t)0xF695, (q15_t)0x805C, (q15_t)0xF663, (q15_t)0x8060, (q15_t)0xF631, (q15_t)0x8064, (q15_t)0xF5FF, (q15_t)0x8068, (q15_t)0xF5CC, (q15_t)0x806C, (q15_t)0xF59A, (q15_t)0x8070, (q15_t)0xF568, (q15_t)0x8074, (q15_t)0xF536, (q15_t)0x8078, (q15_t)0xF504, (q15_t)0x807D, (q15_t)0xF4D2, (q15_t)0x8081, (q15_t)0xF4A0, (q15_t)0x8086, (q15_t)0xF46E, (q15_t)0x808A, (q15_t)0xF43C, (q15_t)0x808F, (q15_t)0xF40A, (q15_t)0x8094, (q15_t)0xF3D8, (q15_t)0x8098, (q15_t)0xF3A6, (q15_t)0x809D, (q15_t)0xF374, (q15_t)0x80A2, (q15_t)0xF342, (q15_t)0x80A7, (q15_t)0xF310, (q15_t)0x80AC, (q15_t)0xF2DE, (q15_t)0x80B2, (q15_t)0xF2AC, (q15_t)0x80B7, (q15_t)0xF27A, (q15_t)0x80BC, (q15_t)0xF248, (q15_t)0x80C2, (q15_t)0xF216, (q15_t)0x80C7, (q15_t)0xF1E4, (q15_t)0x80CD, (q15_t)0xF1B2, (q15_t)0x80D2, (q15_t)0xF180, (q15_t)0x80D8, (q15_t)0xF14E, (q15_t)0x80DE, (q15_t)0xF11C, (q15_t)0x80E4, (q15_t)0xF0EA, (q15_t)0x80EA, (q15_t)0xF0B8, (q15_t)0x80F0, (q15_t)0xF086, (q15_t)0x80F6, (q15_t)0xF054, (q15_t)0x80FC, (q15_t)0xF022, (q15_t)0x8102, (q15_t)0xEFF1, (q15_t)0x8109, (q15_t)0xEFBF, (q15_t)0x810F, (q15_t)0xEF8D, (q15_t)0x8116, (q15_t)0xEF5B, (q15_t)0x811C, (q15_t)0xEF29, (q15_t)0x8123, (q15_t)0xEEF7, (q15_t)0x812A, (q15_t)0xEEC6, (q15_t)0x8130, (q15_t)0xEE94, (q15_t)0x8137, (q15_t)0xEE62, (q15_t)0x813E, (q15_t)0xEE30, (q15_t)0x8145, (q15_t)0xEDFE, (q15_t)0x814C, (q15_t)0xEDCD, (q15_t)0x8154, (q15_t)0xED9B, (q15_t)0x815B, (q15_t)0xED69, (q15_t)0x8162, (q15_t)0xED37, (q15_t)0x816A, (q15_t)0xED06, (q15_t)0x8171, (q15_t)0xECD4, (q15_t)0x8179, (q15_t)0xECA2, (q15_t)0x8180, (q15_t)0xEC71, (q15_t)0x8188, (q15_t)0xEC3F, (q15_t)0x8190, (q15_t)0xEC0D, (q15_t)0x8198, (q15_t)0xEBDC, (q15_t)0x81A0, (q15_t)0xEBAA, (q15_t)0x81A8, (q15_t)0xEB78, (q15_t)0x81B0, (q15_t)0xEB47, (q15_t)0x81B8, (q15_t)0xEB15, (q15_t)0x81C0, (q15_t)0xEAE4, (q15_t)0x81C8, (q15_t)0xEAB2, (q15_t)0x81D1, (q15_t)0xEA80, (q15_t)0x81D9, (q15_t)0xEA4F, (q15_t)0x81E2, (q15_t)0xEA1D, (q15_t)0x81EB, (q15_t)0xE9EC, (q15_t)0x81F3, (q15_t)0xE9BA, (q15_t)0x81FC, (q15_t)0xE989, (q15_t)0x8205, (q15_t)0xE957, (q15_t)0x820E, (q15_t)0xE926, (q15_t)0x8217, (q15_t)0xE8F5, (q15_t)0x8220, (q15_t)0xE8C3, (q15_t)0x8229, (q15_t)0xE892, (q15_t)0x8232, (q15_t)0xE860, (q15_t)0x823C, (q15_t)0xE82F, (q15_t)0x8245, (q15_t)0xE7FD, (q15_t)0x824F, (q15_t)0xE7CC, (q15_t)0x8258, (q15_t)0xE79B, (q15_t)0x8262, (q15_t)0xE769, (q15_t)0x826B, (q15_t)0xE738, (q15_t)0x8275, (q15_t)0xE707, (q15_t)0x827F, (q15_t)0xE6D5, (q15_t)0x8289, (q15_t)0xE6A4, (q15_t)0x8293, (q15_t)0xE673, (q15_t)0x829D, (q15_t)0xE642, (q15_t)0x82A7, (q15_t)0xE610, (q15_t)0x82B1, (q15_t)0xE5DF, (q15_t)0x82BC, (q15_t)0xE5AE, (q15_t)0x82C6, (q15_t)0xE57D, (q15_t)0x82D0, (q15_t)0xE54C, (q15_t)0x82DB, (q15_t)0xE51B, (q15_t)0x82E6, (q15_t)0xE4E9, (q15_t)0x82F0, (q15_t)0xE4B8, (q15_t)0x82FB, (q15_t)0xE487, (q15_t)0x8306, (q15_t)0xE456, (q15_t)0x8311, (q15_t)0xE425, (q15_t)0x831C, (q15_t)0xE3F4, (q15_t)0x8327, (q15_t)0xE3C3, (q15_t)0x8332, (q15_t)0xE392, (q15_t)0x833D, (q15_t)0xE361, (q15_t)0x8348, (q15_t)0xE330, (q15_t)0x8354, (q15_t)0xE2FF, (q15_t)0x835F, (q15_t)0xE2CE, (q15_t)0x836B, (q15_t)0xE29D, (q15_t)0x8376, (q15_t)0xE26C, (q15_t)0x8382, (q15_t)0xE23B, (q15_t)0x838E, (q15_t)0xE20A, (q15_t)0x8399, (q15_t)0xE1DA, (q15_t)0x83A5, (q15_t)0xE1A9, (q15_t)0x83B1, (q15_t)0xE178, (q15_t)0x83BD, (q15_t)0xE147, (q15_t)0x83C9, (q15_t)0xE116, (q15_t)0x83D6, (q15_t)0xE0E6, (q15_t)0x83E2, (q15_t)0xE0B5, (q15_t)0x83EE, (q15_t)0xE084, (q15_t)0x83FA, (q15_t)0xE053, (q15_t)0x8407, (q15_t)0xE023, (q15_t)0x8414, (q15_t)0xDFF2, (q15_t)0x8420, (q15_t)0xDFC1, (q15_t)0x842D, (q15_t)0xDF91, (q15_t)0x843A, (q15_t)0xDF60, (q15_t)0x8446, (q15_t)0xDF2F, (q15_t)0x8453, (q15_t)0xDEFF, (q15_t)0x8460, (q15_t)0xDECE, (q15_t)0x846D, (q15_t)0xDE9E, (q15_t)0x847B, (q15_t)0xDE6D, (q15_t)0x8488, (q15_t)0xDE3D, (q15_t)0x8495, (q15_t)0xDE0C, (q15_t)0x84A2, (q15_t)0xDDDC, (q15_t)0x84B0, (q15_t)0xDDAB, (q15_t)0x84BD, (q15_t)0xDD7B, (q15_t)0x84CB, (q15_t)0xDD4B, (q15_t)0x84D9, (q15_t)0xDD1A, (q15_t)0x84E6, (q15_t)0xDCEA, (q15_t)0x84F4, (q15_t)0xDCBA, (q15_t)0x8502, (q15_t)0xDC89, (q15_t)0x8510, (q15_t)0xDC59, (q15_t)0x851E, (q15_t)0xDC29, (q15_t)0x852C, (q15_t)0xDBF8, (q15_t)0x853A, (q15_t)0xDBC8, (q15_t)0x8549, (q15_t)0xDB98, (q15_t)0x8557, (q15_t)0xDB68, (q15_t)0x8565, (q15_t)0xDB38, (q15_t)0x8574, (q15_t)0xDB08, (q15_t)0x8582, (q15_t)0xDAD7, (q15_t)0x8591, (q15_t)0xDAA7, (q15_t)0x85A0, (q15_t)0xDA77, (q15_t)0x85AF, (q15_t)0xDA47, (q15_t)0x85BD, (q15_t)0xDA17, (q15_t)0x85CC, (q15_t)0xD9E7, (q15_t)0x85DB, (q15_t)0xD9B7, (q15_t)0x85EA, (q15_t)0xD987, (q15_t)0x85FA, (q15_t)0xD957, (q15_t)0x8609, (q15_t)0xD927, (q15_t)0x8618, (q15_t)0xD8F8, (q15_t)0x8627, (q15_t)0xD8C8, (q15_t)0x8637, (q15_t)0xD898, (q15_t)0x8646, (q15_t)0xD868, (q15_t)0x8656, (q15_t)0xD838, (q15_t)0x8666, (q15_t)0xD809, (q15_t)0x8675, (q15_t)0xD7D9, (q15_t)0x8685, (q15_t)0xD7A9, (q15_t)0x8695, (q15_t)0xD779, (q15_t)0x86A5, (q15_t)0xD74A, (q15_t)0x86B5, (q15_t)0xD71A, (q15_t)0x86C5, (q15_t)0xD6EA, (q15_t)0x86D5, (q15_t)0xD6BB, (q15_t)0x86E6, (q15_t)0xD68B, (q15_t)0x86F6, (q15_t)0xD65C, (q15_t)0x8706, (q15_t)0xD62C, (q15_t)0x8717, (q15_t)0xD5FD, (q15_t)0x8727, (q15_t)0xD5CD, (q15_t)0x8738, (q15_t)0xD59E, (q15_t)0x8749, (q15_t)0xD56E, (q15_t)0x8759, (q15_t)0xD53F, (q15_t)0x876A, (q15_t)0xD510, (q15_t)0x877B, (q15_t)0xD4E0, (q15_t)0x878C, (q15_t)0xD4B1, (q15_t)0x879D, (q15_t)0xD482, (q15_t)0x87AE, (q15_t)0xD452, (q15_t)0x87BF, (q15_t)0xD423, (q15_t)0x87D1, (q15_t)0xD3F4, (q15_t)0x87E2, (q15_t)0xD3C5, (q15_t)0x87F3, (q15_t)0xD396, (q15_t)0x8805, (q15_t)0xD367, (q15_t)0x8816, (q15_t)0xD337, (q15_t)0x8828, (q15_t)0xD308, (q15_t)0x883A, (q15_t)0xD2D9, (q15_t)0x884B, (q15_t)0xD2AA, (q15_t)0x885D, (q15_t)0xD27B, (q15_t)0x886F, (q15_t)0xD24C, (q15_t)0x8881, (q15_t)0xD21D, (q15_t)0x8893, (q15_t)0xD1EE, (q15_t)0x88A5, (q15_t)0xD1C0, (q15_t)0x88B8, (q15_t)0xD191, (q15_t)0x88CA, (q15_t)0xD162, (q15_t)0x88DC, (q15_t)0xD133, (q15_t)0x88EF, (q15_t)0xD104, (q15_t)0x8901, (q15_t)0xD0D6, (q15_t)0x8914, (q15_t)0xD0A7, (q15_t)0x8926, (q15_t)0xD078, (q15_t)0x8939, (q15_t)0xD04A, (q15_t)0x894C, (q15_t)0xD01B, (q15_t)0x895F, (q15_t)0xCFEC, (q15_t)0x8971, (q15_t)0xCFBE, (q15_t)0x8984, (q15_t)0xCF8F, (q15_t)0x8997, (q15_t)0xCF61, (q15_t)0x89AB, (q15_t)0xCF32, (q15_t)0x89BE, (q15_t)0xCF04, (q15_t)0x89D1, (q15_t)0xCED5, (q15_t)0x89E4, (q15_t)0xCEA7, (q15_t)0x89F8, (q15_t)0xCE79, (q15_t)0x8A0B, (q15_t)0xCE4A, (q15_t)0x8A1F, (q15_t)0xCE1C, (q15_t)0x8A33, (q15_t)0xCDEE, (q15_t)0x8A46, (q15_t)0xCDBF, (q15_t)0x8A5A, (q15_t)0xCD91, (q15_t)0x8A6E, (q15_t)0xCD63, (q15_t)0x8A82, (q15_t)0xCD35, (q15_t)0x8A96, (q15_t)0xCD07, (q15_t)0x8AAA, (q15_t)0xCCD9, (q15_t)0x8ABE, (q15_t)0xCCAB, (q15_t)0x8AD2, (q15_t)0xCC7D, (q15_t)0x8AE6, (q15_t)0xCC4F, (q15_t)0x8AFB, (q15_t)0xCC21, (q15_t)0x8B0F, (q15_t)0xCBF3, (q15_t)0x8B24, (q15_t)0xCBC5, (q15_t)0x8B38, (q15_t)0xCB97, (q15_t)0x8B4D, (q15_t)0xCB69, (q15_t)0x8B61, (q15_t)0xCB3B, (q15_t)0x8B76, (q15_t)0xCB0D, (q15_t)0x8B8B, (q15_t)0xCAE0, (q15_t)0x8BA0, (q15_t)0xCAB2, (q15_t)0x8BB5, (q15_t)0xCA84, (q15_t)0x8BCA, (q15_t)0xCA57, (q15_t)0x8BDF, (q15_t)0xCA29, (q15_t)0x8BF4, (q15_t)0xC9FB, (q15_t)0x8C09, (q15_t)0xC9CE, (q15_t)0x8C1F, (q15_t)0xC9A0, (q15_t)0x8C34, (q15_t)0xC973, (q15_t)0x8C4A, (q15_t)0xC945, (q15_t)0x8C5F, (q15_t)0xC918, (q15_t)0x8C75, (q15_t)0xC8EB, (q15_t)0x8C8A, (q15_t)0xC8BD, (q15_t)0x8CA0, (q15_t)0xC890, (q15_t)0x8CB6, (q15_t)0xC863, (q15_t)0x8CCC, (q15_t)0xC835, (q15_t)0x8CE2, (q15_t)0xC808, (q15_t)0x8CF8, (q15_t)0xC7DB, (q15_t)0x8D0E, (q15_t)0xC7AE, (q15_t)0x8D24, (q15_t)0xC781, (q15_t)0x8D3A, (q15_t)0xC754, (q15_t)0x8D50, (q15_t)0xC727, (q15_t)0x8D67, (q15_t)0xC6F9, (q15_t)0x8D7D, (q15_t)0xC6CD, (q15_t)0x8D94, (q15_t)0xC6A0, (q15_t)0x8DAA, (q15_t)0xC673, (q15_t)0x8DC1, (q15_t)0xC646, (q15_t)0x8DD8, (q15_t)0xC619, (q15_t)0x8DEE, (q15_t)0xC5EC, (q15_t)0x8E05, (q15_t)0xC5BF, (q15_t)0x8E1C, (q15_t)0xC593, (q15_t)0x8E33, (q15_t)0xC566, (q15_t)0x8E4A, (q15_t)0xC539, (q15_t)0x8E61, (q15_t)0xC50D, (q15_t)0x8E79, (q15_t)0xC4E0, (q15_t)0x8E90, (q15_t)0xC4B3, (q15_t)0x8EA7, (q15_t)0xC487, (q15_t)0x8EBE, (q15_t)0xC45A, (q15_t)0x8ED6, (q15_t)0xC42E, (q15_t)0x8EED, (q15_t)0xC402, (q15_t)0x8F05, (q15_t)0xC3D5, (q15_t)0x8F1D, (q15_t)0xC3A9, (q15_t)0x8F34, (q15_t)0xC37C, (q15_t)0x8F4C, (q15_t)0xC350, (q15_t)0x8F64, (q15_t)0xC324, (q15_t)0x8F7C, (q15_t)0xC2F8, (q15_t)0x8F94, (q15_t)0xC2CC, (q15_t)0x8FAC, (q15_t)0xC29F, (q15_t)0x8FC4, (q15_t)0xC273, (q15_t)0x8FDC, (q15_t)0xC247, (q15_t)0x8FF5, (q15_t)0xC21B, (q15_t)0x900D, (q15_t)0xC1EF, (q15_t)0x9025, (q15_t)0xC1C3, (q15_t)0x903E, (q15_t)0xC197, (q15_t)0x9056, (q15_t)0xC16C, (q15_t)0x906F, (q15_t)0xC140, (q15_t)0x9088, (q15_t)0xC114, (q15_t)0x90A0, (q15_t)0xC0E8, (q15_t)0x90B9, (q15_t)0xC0BC, (q15_t)0x90D2, (q15_t)0xC091, (q15_t)0x90EB, (q15_t)0xC065, (q15_t)0x9104, (q15_t)0xC03A, (q15_t)0x911D, (q15_t)0xC00E, (q15_t)0x9136, (q15_t)0xBFE2, (q15_t)0x9150, (q15_t)0xBFB7, (q15_t)0x9169, (q15_t)0xBF8C, (q15_t)0x9182, (q15_t)0xBF60, (q15_t)0x919C, (q15_t)0xBF35, (q15_t)0x91B5, (q15_t)0xBF09, (q15_t)0x91CF, (q15_t)0xBEDE, (q15_t)0x91E8, (q15_t)0xBEB3, (q15_t)0x9202, (q15_t)0xBE88, (q15_t)0x921C, (q15_t)0xBE5D, (q15_t)0x9235, (q15_t)0xBE31, (q15_t)0x924F, (q15_t)0xBE06, (q15_t)0x9269, (q15_t)0xBDDB, (q15_t)0x9283, (q15_t)0xBDB0, (q15_t)0x929D, (q15_t)0xBD85, (q15_t)0x92B7, (q15_t)0xBD5A, (q15_t)0x92D2, (q15_t)0xBD2F, (q15_t)0x92EC, (q15_t)0xBD05, (q15_t)0x9306, (q15_t)0xBCDA, (q15_t)0x9321, (q15_t)0xBCAF, (q15_t)0x933B, (q15_t)0xBC84, (q15_t)0x9356, (q15_t)0xBC5A, (q15_t)0x9370, (q15_t)0xBC2F, (q15_t)0x938B, (q15_t)0xBC04, (q15_t)0x93A6, (q15_t)0xBBDA, (q15_t)0x93C0, (q15_t)0xBBAF, (q15_t)0x93DB, (q15_t)0xBB85, (q15_t)0x93F6, (q15_t)0xBB5A, (q15_t)0x9411, (q15_t)0xBB30, (q15_t)0x942C, (q15_t)0xBB05, (q15_t)0x9447, (q15_t)0xBADB, (q15_t)0x9463, (q15_t)0xBAB1, (q15_t)0x947E, (q15_t)0xBA87, (q15_t)0x9499, (q15_t)0xBA5C, (q15_t)0x94B5, (q15_t)0xBA32, (q15_t)0x94D0, (q15_t)0xBA08, (q15_t)0x94EC, (q15_t)0xB9DE, (q15_t)0x9507, (q15_t)0xB9B4, (q15_t)0x9523, (q15_t)0xB98A, (q15_t)0x953E, (q15_t)0xB960, (q15_t)0x955A, (q15_t)0xB936, (q15_t)0x9576, (q15_t)0xB90C, (q15_t)0x9592, (q15_t)0xB8E3, (q15_t)0x95AE, (q15_t)0xB8B9, (q15_t)0x95CA, (q15_t)0xB88F, (q15_t)0x95E6, (q15_t)0xB865, (q15_t)0x9602, (q15_t)0xB83C, (q15_t)0x961E, (q15_t)0xB812, (q15_t)0x963B, (q15_t)0xB7E9, (q15_t)0x9657, (q15_t)0xB7BF, (q15_t)0x9673, (q15_t)0xB796, (q15_t)0x9690, (q15_t)0xB76C, (q15_t)0x96AC, (q15_t)0xB743, (q15_t)0x96C9, (q15_t)0xB719, (q15_t)0x96E6, (q15_t)0xB6F0, (q15_t)0x9702, (q15_t)0xB6C7, (q15_t)0x971F, (q15_t)0xB69E, (q15_t)0x973C, (q15_t)0xB675, (q15_t)0x9759, (q15_t)0xB64B, (q15_t)0x9776, (q15_t)0xB622, (q15_t)0x9793, (q15_t)0xB5F9, (q15_t)0x97B0, (q15_t)0xB5D0, (q15_t)0x97CD, (q15_t)0xB5A7, (q15_t)0x97EA, (q15_t)0xB57E, (q15_t)0x9808, (q15_t)0xB556, (q15_t)0x9825, (q15_t)0xB52D, (q15_t)0x9842, (q15_t)0xB504, (q15_t)0x9860, (q15_t)0xB4DB, (q15_t)0x987D, (q15_t)0xB4B3, (q15_t)0x989B, (q15_t)0xB48A, (q15_t)0x98B9, (q15_t)0xB461, (q15_t)0x98D6, (q15_t)0xB439, (q15_t)0x98F4, (q15_t)0xB410, (q15_t)0x9912, (q15_t)0xB3E8, (q15_t)0x9930, (q15_t)0xB3C0, (q15_t)0x994E, (q15_t)0xB397, (q15_t)0x996C, (q15_t)0xB36F, (q15_t)0x998A, (q15_t)0xB347, (q15_t)0x99A8, (q15_t)0xB31E, (q15_t)0x99C6, (q15_t)0xB2F6, (q15_t)0x99E5, (q15_t)0xB2CE, (q15_t)0x9A03, (q15_t)0xB2A6, (q15_t)0x9A22, (q15_t)0xB27E, (q15_t)0x9A40, (q15_t)0xB256, (q15_t)0x9A5F, (q15_t)0xB22E, (q15_t)0x9A7D, (q15_t)0xB206, (q15_t)0x9A9C, (q15_t)0xB1DE, (q15_t)0x9ABA, (q15_t)0xB1B7, (q15_t)0x9AD9, (q15_t)0xB18F, (q15_t)0x9AF8, (q15_t)0xB167, (q15_t)0x9B17, (q15_t)0xB140, (q15_t)0x9B36, (q15_t)0xB118, (q15_t)0x9B55, (q15_t)0xB0F0, (q15_t)0x9B74, (q15_t)0xB0C9, (q15_t)0x9B93, (q15_t)0xB0A1, (q15_t)0x9BB2, (q15_t)0xB07A, (q15_t)0x9BD2, (q15_t)0xB053, (q15_t)0x9BF1, (q15_t)0xB02B, (q15_t)0x9C10, (q15_t)0xB004, (q15_t)0x9C30, (q15_t)0xAFDD, (q15_t)0x9C4F, (q15_t)0xAFB6, (q15_t)0x9C6F, (q15_t)0xAF8F, (q15_t)0x9C8E, (q15_t)0xAF68, (q15_t)0x9CAE, (q15_t)0xAF40, (q15_t)0x9CCE, (q15_t)0xAF1A, (q15_t)0x9CEE, (q15_t)0xAEF3, (q15_t)0x9D0D, (q15_t)0xAECC, (q15_t)0x9D2D, (q15_t)0xAEA5, (q15_t)0x9D4D, (q15_t)0xAE7E, (q15_t)0x9D6D, (q15_t)0xAE57, (q15_t)0x9D8E, (q15_t)0xAE31, (q15_t)0x9DAE, (q15_t)0xAE0A, (q15_t)0x9DCE, (q15_t)0xADE3, (q15_t)0x9DEE, (q15_t)0xADBD, (q15_t)0x9E0E, (q15_t)0xAD96, (q15_t)0x9E2F, (q15_t)0xAD70, (q15_t)0x9E4F, (q15_t)0xAD4A, (q15_t)0x9E70, (q15_t)0xAD23, (q15_t)0x9E90, (q15_t)0xACFD, (q15_t)0x9EB1, (q15_t)0xACD7, (q15_t)0x9ED2, (q15_t)0xACB1, (q15_t)0x9EF2, (q15_t)0xAC8A, (q15_t)0x9F13, (q15_t)0xAC64, (q15_t)0x9F34, (q15_t)0xAC3E, (q15_t)0x9F55, (q15_t)0xAC18, (q15_t)0x9F76, (q15_t)0xABF2, (q15_t)0x9F97, (q15_t)0xABCC, (q15_t)0x9FB8, (q15_t)0xABA7, (q15_t)0x9FD9, (q15_t)0xAB81, (q15_t)0x9FFB, (q15_t)0xAB5B, (q15_t)0xA01C, (q15_t)0xAB35, (q15_t)0xA03D, (q15_t)0xAB10, (q15_t)0xA05F, (q15_t)0xAAEA, (q15_t)0xA080, (q15_t)0xAAC5, (q15_t)0xA0A1, (q15_t)0xAA9F, (q15_t)0xA0C3, (q15_t)0xAA7A, (q15_t)0xA0E5, (q15_t)0xAA54, (q15_t)0xA106, (q15_t)0xAA2F, (q15_t)0xA128, (q15_t)0xAA0A, (q15_t)0xA14A, (q15_t)0xA9E5, (q15_t)0xA16C, (q15_t)0xA9BF, (q15_t)0xA18E, (q15_t)0xA99A, (q15_t)0xA1AF, (q15_t)0xA975, (q15_t)0xA1D2, (q15_t)0xA950, (q15_t)0xA1F4, (q15_t)0xA92B, (q15_t)0xA216, (q15_t)0xA906, (q15_t)0xA238, (q15_t)0xA8E2, (q15_t)0xA25A, (q15_t)0xA8BD, (q15_t)0xA27C, (q15_t)0xA898, (q15_t)0xA29F, (q15_t)0xA873, (q15_t)0xA2C1, (q15_t)0xA84F, (q15_t)0xA2E4, (q15_t)0xA82A, (q15_t)0xA306, (q15_t)0xA806, (q15_t)0xA329, (q15_t)0xA7E1, (q15_t)0xA34B, (q15_t)0xA7BD, (q15_t)0xA36E, (q15_t)0xA798, (q15_t)0xA391, (q15_t)0xA774, (q15_t)0xA3B4, (q15_t)0xA750, (q15_t)0xA3D6, (q15_t)0xA72B, (q15_t)0xA3F9, (q15_t)0xA707, (q15_t)0xA41C, (q15_t)0xA6E3, (q15_t)0xA43F, (q15_t)0xA6BF, (q15_t)0xA462, (q15_t)0xA69B, (q15_t)0xA486, (q15_t)0xA677, (q15_t)0xA4A9, (q15_t)0xA653, (q15_t)0xA4CC, (q15_t)0xA62F, (q15_t)0xA4EF, (q15_t)0xA60C, (q15_t)0xA513, (q15_t)0xA5E8, (q15_t)0xA536, (q15_t)0xA5C4, (q15_t)0xA55A, (q15_t)0xA5A1, (q15_t)0xA57D, (q15_t)0xA57D, (q15_t)0xA5A1, (q15_t)0xA55A, (q15_t)0xA5C4, (q15_t)0xA536, (q15_t)0xA5E8, (q15_t)0xA513, (q15_t)0xA60C, (q15_t)0xA4EF, (q15_t)0xA62F, (q15_t)0xA4CC, (q15_t)0xA653, (q15_t)0xA4A9, (q15_t)0xA677, (q15_t)0xA486, (q15_t)0xA69B, (q15_t)0xA462, (q15_t)0xA6BF, (q15_t)0xA43F, (q15_t)0xA6E3, (q15_t)0xA41C, (q15_t)0xA707, (q15_t)0xA3F9, (q15_t)0xA72B, (q15_t)0xA3D6, (q15_t)0xA750, (q15_t)0xA3B4, (q15_t)0xA774, (q15_t)0xA391, (q15_t)0xA798, (q15_t)0xA36E, (q15_t)0xA7BD, (q15_t)0xA34B, (q15_t)0xA7E1, (q15_t)0xA329, (q15_t)0xA806, (q15_t)0xA306, (q15_t)0xA82A, (q15_t)0xA2E4, (q15_t)0xA84F, (q15_t)0xA2C1, (q15_t)0xA873, (q15_t)0xA29F, (q15_t)0xA898, (q15_t)0xA27C, (q15_t)0xA8BD, (q15_t)0xA25A, (q15_t)0xA8E2, (q15_t)0xA238, (q15_t)0xA906, (q15_t)0xA216, (q15_t)0xA92B, (q15_t)0xA1F4, (q15_t)0xA950, (q15_t)0xA1D2, (q15_t)0xA975, (q15_t)0xA1AF, (q15_t)0xA99A, (q15_t)0xA18E, (q15_t)0xA9BF, (q15_t)0xA16C, (q15_t)0xA9E5, (q15_t)0xA14A, (q15_t)0xAA0A, (q15_t)0xA128, (q15_t)0xAA2F, (q15_t)0xA106, (q15_t)0xAA54, (q15_t)0xA0E5, (q15_t)0xAA7A, (q15_t)0xA0C3, (q15_t)0xAA9F, (q15_t)0xA0A1, (q15_t)0xAAC5, (q15_t)0xA080, (q15_t)0xAAEA, (q15_t)0xA05F, (q15_t)0xAB10, (q15_t)0xA03D, (q15_t)0xAB35, (q15_t)0xA01C, (q15_t)0xAB5B, (q15_t)0x9FFB, (q15_t)0xAB81, (q15_t)0x9FD9, (q15_t)0xABA7, (q15_t)0x9FB8, (q15_t)0xABCC, (q15_t)0x9F97, (q15_t)0xABF2, (q15_t)0x9F76, (q15_t)0xAC18, (q15_t)0x9F55, (q15_t)0xAC3E, (q15_t)0x9F34, (q15_t)0xAC64, (q15_t)0x9F13, (q15_t)0xAC8A, (q15_t)0x9EF2, (q15_t)0xACB1, (q15_t)0x9ED2, (q15_t)0xACD7, (q15_t)0x9EB1, (q15_t)0xACFD, (q15_t)0x9E90, (q15_t)0xAD23, (q15_t)0x9E70, (q15_t)0xAD4A, (q15_t)0x9E4F, (q15_t)0xAD70, (q15_t)0x9E2F, (q15_t)0xAD96, (q15_t)0x9E0E, (q15_t)0xADBD, (q15_t)0x9DEE, (q15_t)0xADE3, (q15_t)0x9DCE, (q15_t)0xAE0A, (q15_t)0x9DAE, (q15_t)0xAE31, (q15_t)0x9D8E, (q15_t)0xAE57, (q15_t)0x9D6D, (q15_t)0xAE7E, (q15_t)0x9D4D, (q15_t)0xAEA5, (q15_t)0x9D2D, (q15_t)0xAECC, (q15_t)0x9D0D, (q15_t)0xAEF3, (q15_t)0x9CEE, (q15_t)0xAF1A, (q15_t)0x9CCE, (q15_t)0xAF40, (q15_t)0x9CAE, (q15_t)0xAF68, (q15_t)0x9C8E, (q15_t)0xAF8F, (q15_t)0x9C6F, (q15_t)0xAFB6, (q15_t)0x9C4F, (q15_t)0xAFDD, (q15_t)0x9C30, (q15_t)0xB004, (q15_t)0x9C10, (q15_t)0xB02B, (q15_t)0x9BF1, (q15_t)0xB053, (q15_t)0x9BD2, (q15_t)0xB07A, (q15_t)0x9BB2, (q15_t)0xB0A1, (q15_t)0x9B93, (q15_t)0xB0C9, (q15_t)0x9B74, (q15_t)0xB0F0, (q15_t)0x9B55, (q15_t)0xB118, (q15_t)0x9B36, (q15_t)0xB140, (q15_t)0x9B17, (q15_t)0xB167, (q15_t)0x9AF8, (q15_t)0xB18F, (q15_t)0x9AD9, (q15_t)0xB1B7, (q15_t)0x9ABA, (q15_t)0xB1DE, (q15_t)0x9A9C, (q15_t)0xB206, (q15_t)0x9A7D, (q15_t)0xB22E, (q15_t)0x9A5F, (q15_t)0xB256, (q15_t)0x9A40, (q15_t)0xB27E, (q15_t)0x9A22, (q15_t)0xB2A6, (q15_t)0x9A03, (q15_t)0xB2CE, (q15_t)0x99E5, (q15_t)0xB2F6, (q15_t)0x99C6, (q15_t)0xB31E, (q15_t)0x99A8, (q15_t)0xB347, (q15_t)0x998A, (q15_t)0xB36F, (q15_t)0x996C, (q15_t)0xB397, (q15_t)0x994E, (q15_t)0xB3C0, (q15_t)0x9930, (q15_t)0xB3E8, (q15_t)0x9912, (q15_t)0xB410, (q15_t)0x98F4, (q15_t)0xB439, (q15_t)0x98D6, (q15_t)0xB461, (q15_t)0x98B9, (q15_t)0xB48A, (q15_t)0x989B, (q15_t)0xB4B3, (q15_t)0x987D, (q15_t)0xB4DB, (q15_t)0x9860, (q15_t)0xB504, (q15_t)0x9842, (q15_t)0xB52D, (q15_t)0x9825, (q15_t)0xB556, (q15_t)0x9808, (q15_t)0xB57E, (q15_t)0x97EA, (q15_t)0xB5A7, (q15_t)0x97CD, (q15_t)0xB5D0, (q15_t)0x97B0, (q15_t)0xB5F9, (q15_t)0x9793, (q15_t)0xB622, (q15_t)0x9776, (q15_t)0xB64B, (q15_t)0x9759, (q15_t)0xB675, (q15_t)0x973C, (q15_t)0xB69E, (q15_t)0x971F, (q15_t)0xB6C7, (q15_t)0x9702, (q15_t)0xB6F0, (q15_t)0x96E6, (q15_t)0xB719, (q15_t)0x96C9, (q15_t)0xB743, (q15_t)0x96AC, (q15_t)0xB76C, (q15_t)0x9690, (q15_t)0xB796, (q15_t)0x9673, (q15_t)0xB7BF, (q15_t)0x9657, (q15_t)0xB7E9, (q15_t)0x963B, (q15_t)0xB812, (q15_t)0x961E, (q15_t)0xB83C, (q15_t)0x9602, (q15_t)0xB865, (q15_t)0x95E6, (q15_t)0xB88F, (q15_t)0x95CA, (q15_t)0xB8B9, (q15_t)0x95AE, (q15_t)0xB8E3, (q15_t)0x9592, (q15_t)0xB90C, (q15_t)0x9576, (q15_t)0xB936, (q15_t)0x955A, (q15_t)0xB960, (q15_t)0x953E, (q15_t)0xB98A, (q15_t)0x9523, (q15_t)0xB9B4, (q15_t)0x9507, (q15_t)0xB9DE, (q15_t)0x94EC, (q15_t)0xBA08, (q15_t)0x94D0, (q15_t)0xBA32, (q15_t)0x94B5, (q15_t)0xBA5C, (q15_t)0x9499, (q15_t)0xBA87, (q15_t)0x947E, (q15_t)0xBAB1, (q15_t)0x9463, (q15_t)0xBADB, (q15_t)0x9447, (q15_t)0xBB05, (q15_t)0x942C, (q15_t)0xBB30, (q15_t)0x9411, (q15_t)0xBB5A, (q15_t)0x93F6, (q15_t)0xBB85, (q15_t)0x93DB, (q15_t)0xBBAF, (q15_t)0x93C0, (q15_t)0xBBDA, (q15_t)0x93A6, (q15_t)0xBC04, (q15_t)0x938B, (q15_t)0xBC2F, (q15_t)0x9370, (q15_t)0xBC5A, (q15_t)0x9356, (q15_t)0xBC84, (q15_t)0x933B, (q15_t)0xBCAF, (q15_t)0x9321, (q15_t)0xBCDA, (q15_t)0x9306, (q15_t)0xBD05, (q15_t)0x92EC, (q15_t)0xBD2F, (q15_t)0x92D2, (q15_t)0xBD5A, (q15_t)0x92B7, (q15_t)0xBD85, (q15_t)0x929D, (q15_t)0xBDB0, (q15_t)0x9283, (q15_t)0xBDDB, (q15_t)0x9269, (q15_t)0xBE06, (q15_t)0x924F, (q15_t)0xBE31, (q15_t)0x9235, (q15_t)0xBE5D, (q15_t)0x921C, (q15_t)0xBE88, (q15_t)0x9202, (q15_t)0xBEB3, (q15_t)0x91E8, (q15_t)0xBEDE, (q15_t)0x91CF, (q15_t)0xBF09, (q15_t)0x91B5, (q15_t)0xBF35, (q15_t)0x919C, (q15_t)0xBF60, (q15_t)0x9182, (q15_t)0xBF8C, (q15_t)0x9169, (q15_t)0xBFB7, (q15_t)0x9150, (q15_t)0xBFE2, (q15_t)0x9136, (q15_t)0xC00E, (q15_t)0x911D, (q15_t)0xC03A, (q15_t)0x9104, (q15_t)0xC065, (q15_t)0x90EB, (q15_t)0xC091, (q15_t)0x90D2, (q15_t)0xC0BC, (q15_t)0x90B9, (q15_t)0xC0E8, (q15_t)0x90A0, (q15_t)0xC114, (q15_t)0x9088, (q15_t)0xC140, (q15_t)0x906F, (q15_t)0xC16C, (q15_t)0x9056, (q15_t)0xC197, (q15_t)0x903E, (q15_t)0xC1C3, (q15_t)0x9025, (q15_t)0xC1EF, (q15_t)0x900D, (q15_t)0xC21B, (q15_t)0x8FF5, (q15_t)0xC247, (q15_t)0x8FDC, (q15_t)0xC273, (q15_t)0x8FC4, (q15_t)0xC29F, (q15_t)0x8FAC, (q15_t)0xC2CC, (q15_t)0x8F94, (q15_t)0xC2F8, (q15_t)0x8F7C, (q15_t)0xC324, (q15_t)0x8F64, (q15_t)0xC350, (q15_t)0x8F4C, (q15_t)0xC37C, (q15_t)0x8F34, (q15_t)0xC3A9, (q15_t)0x8F1D, (q15_t)0xC3D5, (q15_t)0x8F05, (q15_t)0xC402, (q15_t)0x8EED, (q15_t)0xC42E, (q15_t)0x8ED6, (q15_t)0xC45A, (q15_t)0x8EBE, (q15_t)0xC487, (q15_t)0x8EA7, (q15_t)0xC4B3, (q15_t)0x8E90, (q15_t)0xC4E0, (q15_t)0x8E79, (q15_t)0xC50D, (q15_t)0x8E61, (q15_t)0xC539, (q15_t)0x8E4A, (q15_t)0xC566, (q15_t)0x8E33, (q15_t)0xC593, (q15_t)0x8E1C, (q15_t)0xC5BF, (q15_t)0x8E05, (q15_t)0xC5EC, (q15_t)0x8DEE, (q15_t)0xC619, (q15_t)0x8DD8, (q15_t)0xC646, (q15_t)0x8DC1, (q15_t)0xC673, (q15_t)0x8DAA, (q15_t)0xC6A0, (q15_t)0x8D94, (q15_t)0xC6CD, (q15_t)0x8D7D, (q15_t)0xC6F9, (q15_t)0x8D67, (q15_t)0xC727, (q15_t)0x8D50, (q15_t)0xC754, (q15_t)0x8D3A, (q15_t)0xC781, (q15_t)0x8D24, (q15_t)0xC7AE, (q15_t)0x8D0E, (q15_t)0xC7DB, (q15_t)0x8CF8, (q15_t)0xC808, (q15_t)0x8CE2, (q15_t)0xC835, (q15_t)0x8CCC, (q15_t)0xC863, (q15_t)0x8CB6, (q15_t)0xC890, (q15_t)0x8CA0, (q15_t)0xC8BD, (q15_t)0x8C8A, (q15_t)0xC8EB, (q15_t)0x8C75, (q15_t)0xC918, (q15_t)0x8C5F, (q15_t)0xC945, (q15_t)0x8C4A, (q15_t)0xC973, (q15_t)0x8C34, (q15_t)0xC9A0, (q15_t)0x8C1F, (q15_t)0xC9CE, (q15_t)0x8C09, (q15_t)0xC9FB, (q15_t)0x8BF4, (q15_t)0xCA29, (q15_t)0x8BDF, (q15_t)0xCA57, (q15_t)0x8BCA, (q15_t)0xCA84, (q15_t)0x8BB5, (q15_t)0xCAB2, (q15_t)0x8BA0, (q15_t)0xCAE0, (q15_t)0x8B8B, (q15_t)0xCB0D, (q15_t)0x8B76, (q15_t)0xCB3B, (q15_t)0x8B61, (q15_t)0xCB69, (q15_t)0x8B4D, (q15_t)0xCB97, (q15_t)0x8B38, (q15_t)0xCBC5, (q15_t)0x8B24, (q15_t)0xCBF3, (q15_t)0x8B0F, (q15_t)0xCC21, (q15_t)0x8AFB, (q15_t)0xCC4F, (q15_t)0x8AE6, (q15_t)0xCC7D, (q15_t)0x8AD2, (q15_t)0xCCAB, (q15_t)0x8ABE, (q15_t)0xCCD9, (q15_t)0x8AAA, (q15_t)0xCD07, (q15_t)0x8A96, (q15_t)0xCD35, (q15_t)0x8A82, (q15_t)0xCD63, (q15_t)0x8A6E, (q15_t)0xCD91, (q15_t)0x8A5A, (q15_t)0xCDBF, (q15_t)0x8A46, (q15_t)0xCDEE, (q15_t)0x8A33, (q15_t)0xCE1C, (q15_t)0x8A1F, (q15_t)0xCE4A, (q15_t)0x8A0B, (q15_t)0xCE79, (q15_t)0x89F8, (q15_t)0xCEA7, (q15_t)0x89E4, (q15_t)0xCED5, (q15_t)0x89D1, (q15_t)0xCF04, (q15_t)0x89BE, (q15_t)0xCF32, (q15_t)0x89AB, (q15_t)0xCF61, (q15_t)0x8997, (q15_t)0xCF8F, (q15_t)0x8984, (q15_t)0xCFBE, (q15_t)0x8971, (q15_t)0xCFEC, (q15_t)0x895F, (q15_t)0xD01B, (q15_t)0x894C, (q15_t)0xD04A, (q15_t)0x8939, (q15_t)0xD078, (q15_t)0x8926, (q15_t)0xD0A7, (q15_t)0x8914, (q15_t)0xD0D6, (q15_t)0x8901, (q15_t)0xD104, (q15_t)0x88EF, (q15_t)0xD133, (q15_t)0x88DC, (q15_t)0xD162, (q15_t)0x88CA, (q15_t)0xD191, (q15_t)0x88B8, (q15_t)0xD1C0, (q15_t)0x88A5, (q15_t)0xD1EE, (q15_t)0x8893, (q15_t)0xD21D, (q15_t)0x8881, (q15_t)0xD24C, (q15_t)0x886F, (q15_t)0xD27B, (q15_t)0x885D, (q15_t)0xD2AA, (q15_t)0x884B, (q15_t)0xD2D9, (q15_t)0x883A, (q15_t)0xD308, (q15_t)0x8828, (q15_t)0xD337, (q15_t)0x8816, (q15_t)0xD367, (q15_t)0x8805, (q15_t)0xD396, (q15_t)0x87F3, (q15_t)0xD3C5, (q15_t)0x87E2, (q15_t)0xD3F4, (q15_t)0x87D1, (q15_t)0xD423, (q15_t)0x87BF, (q15_t)0xD452, (q15_t)0x87AE, (q15_t)0xD482, (q15_t)0x879D, (q15_t)0xD4B1, (q15_t)0x878C, (q15_t)0xD4E0, (q15_t)0x877B, (q15_t)0xD510, (q15_t)0x876A, (q15_t)0xD53F, (q15_t)0x8759, (q15_t)0xD56E, (q15_t)0x8749, (q15_t)0xD59E, (q15_t)0x8738, (q15_t)0xD5CD, (q15_t)0x8727, (q15_t)0xD5FD, (q15_t)0x8717, (q15_t)0xD62C, (q15_t)0x8706, (q15_t)0xD65C, (q15_t)0x86F6, (q15_t)0xD68B, (q15_t)0x86E6, (q15_t)0xD6BB, (q15_t)0x86D5, (q15_t)0xD6EA, (q15_t)0x86C5, (q15_t)0xD71A, (q15_t)0x86B5, (q15_t)0xD74A, (q15_t)0x86A5, (q15_t)0xD779, (q15_t)0x8695, (q15_t)0xD7A9, (q15_t)0x8685, (q15_t)0xD7D9, (q15_t)0x8675, (q15_t)0xD809, (q15_t)0x8666, (q15_t)0xD838, (q15_t)0x8656, (q15_t)0xD868, (q15_t)0x8646, (q15_t)0xD898, (q15_t)0x8637, (q15_t)0xD8C8, (q15_t)0x8627, (q15_t)0xD8F8, (q15_t)0x8618, (q15_t)0xD927, (q15_t)0x8609, (q15_t)0xD957, (q15_t)0x85FA, (q15_t)0xD987, (q15_t)0x85EA, (q15_t)0xD9B7, (q15_t)0x85DB, (q15_t)0xD9E7, (q15_t)0x85CC, (q15_t)0xDA17, (q15_t)0x85BD, (q15_t)0xDA47, (q15_t)0x85AF, (q15_t)0xDA77, (q15_t)0x85A0, (q15_t)0xDAA7, (q15_t)0x8591, (q15_t)0xDAD7, (q15_t)0x8582, (q15_t)0xDB08, (q15_t)0x8574, (q15_t)0xDB38, (q15_t)0x8565, (q15_t)0xDB68, (q15_t)0x8557, (q15_t)0xDB98, (q15_t)0x8549, (q15_t)0xDBC8, (q15_t)0x853A, (q15_t)0xDBF8, (q15_t)0x852C, (q15_t)0xDC29, (q15_t)0x851E, (q15_t)0xDC59, (q15_t)0x8510, (q15_t)0xDC89, (q15_t)0x8502, (q15_t)0xDCBA, (q15_t)0x84F4, (q15_t)0xDCEA, (q15_t)0x84E6, (q15_t)0xDD1A, (q15_t)0x84D9, (q15_t)0xDD4B, (q15_t)0x84CB, (q15_t)0xDD7B, (q15_t)0x84BD, (q15_t)0xDDAB, (q15_t)0x84B0, (q15_t)0xDDDC, (q15_t)0x84A2, (q15_t)0xDE0C, (q15_t)0x8495, (q15_t)0xDE3D, (q15_t)0x8488, (q15_t)0xDE6D, (q15_t)0x847B, (q15_t)0xDE9E, (q15_t)0x846D, (q15_t)0xDECE, (q15_t)0x8460, (q15_t)0xDEFF, (q15_t)0x8453, (q15_t)0xDF2F, (q15_t)0x8446, (q15_t)0xDF60, (q15_t)0x843A, (q15_t)0xDF91, (q15_t)0x842D, (q15_t)0xDFC1, (q15_t)0x8420, (q15_t)0xDFF2, (q15_t)0x8414, (q15_t)0xE023, (q15_t)0x8407, (q15_t)0xE053, (q15_t)0x83FA, (q15_t)0xE084, (q15_t)0x83EE, (q15_t)0xE0B5, (q15_t)0x83E2, (q15_t)0xE0E6, (q15_t)0x83D6, (q15_t)0xE116, (q15_t)0x83C9, (q15_t)0xE147, (q15_t)0x83BD, (q15_t)0xE178, (q15_t)0x83B1, (q15_t)0xE1A9, (q15_t)0x83A5, (q15_t)0xE1DA, (q15_t)0x8399, (q15_t)0xE20A, (q15_t)0x838E, (q15_t)0xE23B, (q15_t)0x8382, (q15_t)0xE26C, (q15_t)0x8376, (q15_t)0xE29D, (q15_t)0x836B, (q15_t)0xE2CE, (q15_t)0x835F, (q15_t)0xE2FF, (q15_t)0x8354, (q15_t)0xE330, (q15_t)0x8348, (q15_t)0xE361, (q15_t)0x833D, (q15_t)0xE392, (q15_t)0x8332, (q15_t)0xE3C3, (q15_t)0x8327, (q15_t)0xE3F4, (q15_t)0x831C, (q15_t)0xE425, (q15_t)0x8311, (q15_t)0xE456, (q15_t)0x8306, (q15_t)0xE487, (q15_t)0x82FB, (q15_t)0xE4B8, (q15_t)0x82F0, (q15_t)0xE4E9, (q15_t)0x82E6, (q15_t)0xE51B, (q15_t)0x82DB, (q15_t)0xE54C, (q15_t)0x82D0, (q15_t)0xE57D, (q15_t)0x82C6, (q15_t)0xE5AE, (q15_t)0x82BC, (q15_t)0xE5DF, (q15_t)0x82B1, (q15_t)0xE610, (q15_t)0x82A7, (q15_t)0xE642, (q15_t)0x829D, (q15_t)0xE673, (q15_t)0x8293, (q15_t)0xE6A4, (q15_t)0x8289, (q15_t)0xE6D5, (q15_t)0x827F, (q15_t)0xE707, (q15_t)0x8275, (q15_t)0xE738, (q15_t)0x826B, (q15_t)0xE769, (q15_t)0x8262, (q15_t)0xE79B, (q15_t)0x8258, (q15_t)0xE7CC, (q15_t)0x824F, (q15_t)0xE7FD, (q15_t)0x8245, (q15_t)0xE82F, (q15_t)0x823C, (q15_t)0xE860, (q15_t)0x8232, (q15_t)0xE892, (q15_t)0x8229, (q15_t)0xE8C3, (q15_t)0x8220, (q15_t)0xE8F5, (q15_t)0x8217, (q15_t)0xE926, (q15_t)0x820E, (q15_t)0xE957, (q15_t)0x8205, (q15_t)0xE989, (q15_t)0x81FC, (q15_t)0xE9BA, (q15_t)0x81F3, (q15_t)0xE9EC, (q15_t)0x81EB, (q15_t)0xEA1D, (q15_t)0x81E2, (q15_t)0xEA4F, (q15_t)0x81D9, (q15_t)0xEA80, (q15_t)0x81D1, (q15_t)0xEAB2, (q15_t)0x81C8, (q15_t)0xEAE4, (q15_t)0x81C0, (q15_t)0xEB15, (q15_t)0x81B8, (q15_t)0xEB47, (q15_t)0x81B0, (q15_t)0xEB78, (q15_t)0x81A8, (q15_t)0xEBAA, (q15_t)0x81A0, (q15_t)0xEBDC, (q15_t)0x8198, (q15_t)0xEC0D, (q15_t)0x8190, (q15_t)0xEC3F, (q15_t)0x8188, (q15_t)0xEC71, (q15_t)0x8180, (q15_t)0xECA2, (q15_t)0x8179, (q15_t)0xECD4, (q15_t)0x8171, (q15_t)0xED06, (q15_t)0x816A, (q15_t)0xED37, (q15_t)0x8162, (q15_t)0xED69, (q15_t)0x815B, (q15_t)0xED9B, (q15_t)0x8154, (q15_t)0xEDCD, (q15_t)0x814C, (q15_t)0xEDFE, (q15_t)0x8145, (q15_t)0xEE30, (q15_t)0x813E, (q15_t)0xEE62, (q15_t)0x8137, (q15_t)0xEE94, (q15_t)0x8130, (q15_t)0xEEC6, (q15_t)0x812A, (q15_t)0xEEF7, (q15_t)0x8123, (q15_t)0xEF29, (q15_t)0x811C, (q15_t)0xEF5B, (q15_t)0x8116, (q15_t)0xEF8D, (q15_t)0x810F, (q15_t)0xEFBF, (q15_t)0x8109, (q15_t)0xEFF1, (q15_t)0x8102, (q15_t)0xF022, (q15_t)0x80FC, (q15_t)0xF054, (q15_t)0x80F6, (q15_t)0xF086, (q15_t)0x80F0, (q15_t)0xF0B8, (q15_t)0x80EA, (q15_t)0xF0EA, (q15_t)0x80E4, (q15_t)0xF11C, (q15_t)0x80DE, (q15_t)0xF14E, (q15_t)0x80D8, (q15_t)0xF180, (q15_t)0x80D2, (q15_t)0xF1B2, (q15_t)0x80CD, (q15_t)0xF1E4, (q15_t)0x80C7, (q15_t)0xF216, (q15_t)0x80C2, (q15_t)0xF248, (q15_t)0x80BC, (q15_t)0xF27A, (q15_t)0x80B7, (q15_t)0xF2AC, (q15_t)0x80B2, (q15_t)0xF2DE, (q15_t)0x80AC, (q15_t)0xF310, (q15_t)0x80A7, (q15_t)0xF342, (q15_t)0x80A2, (q15_t)0xF374, (q15_t)0x809D, (q15_t)0xF3A6, (q15_t)0x8098, (q15_t)0xF3D8, (q15_t)0x8094, (q15_t)0xF40A, (q15_t)0x808F, (q15_t)0xF43C, (q15_t)0x808A, (q15_t)0xF46E, (q15_t)0x8086, (q15_t)0xF4A0, (q15_t)0x8081, (q15_t)0xF4D2, (q15_t)0x807D, (q15_t)0xF504, (q15_t)0x8078, (q15_t)0xF536, (q15_t)0x8074, (q15_t)0xF568, (q15_t)0x8070, (q15_t)0xF59A, (q15_t)0x806C, (q15_t)0xF5CC, (q15_t)0x8068, (q15_t)0xF5FF, (q15_t)0x8064, (q15_t)0xF631, (q15_t)0x8060, (q15_t)0xF663, (q15_t)0x805C, (q15_t)0xF695, (q15_t)0x8058, (q15_t)0xF6C7, (q15_t)0x8055, (q15_t)0xF6F9, (q15_t)0x8051, (q15_t)0xF72B, (q15_t)0x804E, (q15_t)0xF75D, (q15_t)0x804A, (q15_t)0xF790, (q15_t)0x8047, (q15_t)0xF7C2, (q15_t)0x8043, (q15_t)0xF7F4, (q15_t)0x8040, (q15_t)0xF826, (q15_t)0x803D, (q15_t)0xF858, (q15_t)0x803A, (q15_t)0xF88A, (q15_t)0x8037, (q15_t)0xF8BD, (q15_t)0x8034, (q15_t)0xF8EF, (q15_t)0x8031, (q15_t)0xF921, (q15_t)0x802F, (q15_t)0xF953, (q15_t)0x802C, (q15_t)0xF985, (q15_t)0x8029, (q15_t)0xF9B8, (q15_t)0x8027, (q15_t)0xF9EA, (q15_t)0x8025, (q15_t)0xFA1C, (q15_t)0x8022, (q15_t)0xFA4E, (q15_t)0x8020, (q15_t)0xFA80, (q15_t)0x801E, (q15_t)0xFAB3, (q15_t)0x801C, (q15_t)0xFAE5, (q15_t)0x801A, (q15_t)0xFB17, (q15_t)0x8018, (q15_t)0xFB49, (q15_t)0x8016, (q15_t)0xFB7C, (q15_t)0x8014, (q15_t)0xFBAE, (q15_t)0x8012, (q15_t)0xFBE0, (q15_t)0x8011, (q15_t)0xFC12, (q15_t)0x800F, (q15_t)0xFC45, (q15_t)0x800D, (q15_t)0xFC77, (q15_t)0x800C, (q15_t)0xFCA9, (q15_t)0x800B, (q15_t)0xFCDB, (q15_t)0x8009, (q15_t)0xFD0E, (q15_t)0x8008, (q15_t)0xFD40, (q15_t)0x8007, (q15_t)0xFD72, (q15_t)0x8006, (q15_t)0xFDA4, (q15_t)0x8005, (q15_t)0xFDD7, (q15_t)0x8004, (q15_t)0xFE09, (q15_t)0x8003, (q15_t)0xFE3B, (q15_t)0x8003, (q15_t)0xFE6D, (q15_t)0x8002, (q15_t)0xFEA0, (q15_t)0x8001, (q15_t)0xFED2, (q15_t)0x8001, (q15_t)0xFF04, (q15_t)0x8000, (q15_t)0xFF36, (q15_t)0x8000, (q15_t)0xFF69, (q15_t)0x8000, (q15_t)0xFF9B, (q15_t)0x8000, (q15_t)0xFFCD, (q15_t)0x8000 }; /** @} end of CFFT_CIFFT group */ const uint16_t armBitRevIndexTableF64_16[ARMBITREVINDEXTABLEF64_16_TABLE_LENGTH] ARM_DSP_TABLE_ATTRIBUTE = { /* radix 4, size 12 */ 8,64, 16,32, 24,96, 40,80, 56,112, 88,104 }; const uint16_t armBitRevIndexTableF64_32[ARMBITREVINDEXTABLEF64_32_TABLE_LENGTH] ARM_DSP_TABLE_ATTRIBUTE = { /* 4x2, size 24 */ 8,128, 16,64, 24,192, 40,160, 48,96, 56,224, 72,144, 88,208, 104,176, 120,240, 152,200, 184,232 }; const uint16_t armBitRevIndexTableF64_64[ARMBITREVINDEXTABLEF64_64_TABLE_LENGTH] ARM_DSP_TABLE_ATTRIBUTE = { /* radix 4, size 56 */ 8,256, 16,128, 24,384, 32,64, 40,320, 48,192, 56,448, 72,288, 80,160, 88,416, 104,352, 112,224, 120,480, 136,272, 152,400, 168,336, 176,208, 184,464, 200,304, 216,432, 232,368, 248,496, 280,392, 296,328, 312,456, 344,424, 376,488, 440,472 }; const uint16_t armBitRevIndexTableF64_128[ARMBITREVINDEXTABLEF64_128_TABLE_LENGTH] ARM_DSP_TABLE_ATTRIBUTE = { /* 4x2, size 112 */ 8,512, 16,256, 24,768, 32,128, 40,640, 48,384, 56,896, 72,576, 80,320, 88,832, 96,192, 104,704, 112,448, 120,960, 136,544, 144,288, 152,800, 168,672, 176,416, 184,928, 200,608, 208,352, 216,864, 232,736, 240,480, 248,992, 264,528, 280,784, 296,656, 304,400, 312,912, 328,592, 344,848, 360,720, 368,464, 376,976, 392,560, 408,816, 424,688, 440,944, 456,624, 472,880, 488,752, 504,1008, 536,776, 552,648, 568,904, 600,840, 616,712, 632,968, 664,808, 696,936, 728,872, 760,1000, 824,920, 888,984 }; const uint16_t armBitRevIndexTableF64_256[ARMBITREVINDEXTABLEF64_256_TABLE_LENGTH] ARM_DSP_TABLE_ATTRIBUTE = { /* radix 4, size 240 */ 8,1024, 16,512, 24,1536, 32,256, 40,1280, 48,768, 56,1792, 64,128, 72,1152, 80,640, 88,1664, 96,384, 104,1408, 112,896, 120,1920, 136,1088, 144,576, 152,1600, 160,320, 168,1344, 176,832, 184,1856, 200,1216, 208,704, 216,1728, 224,448, 232,1472, 240,960, 248,1984, 264,1056, 272,544, 280,1568, 296,1312, 304,800, 312,1824, 328,1184, 336,672, 344,1696, 352,416, 360,1440, 368,928, 376,1952, 392,1120, 400,608, 408,1632, 424,1376, 432,864, 440,1888, 456,1248, 464,736, 472,1760, 488,1504, 496,992, 504,2016, 520,1040, 536,1552, 552,1296, 560,784, 568,1808, 584,1168, 592,656, 600,1680, 616,1424, 624,912, 632,1936, 648,1104, 664,1616, 680,1360, 688,848, 696,1872, 712,1232, 728,1744, 744,1488, 752,976, 760,2000, 776,1072, 792,1584, 808,1328, 824,1840, 840,1200, 856,1712, 872,1456, 880,944, 888,1968, 904,1136, 920,1648, 936,1392, 952,1904, 968,1264, 984,1776, 1000,1520, 1016,2032, 1048,1544, 1064,1288, 1080,1800, 1096,1160, 1112,1672, 1128,1416, 1144,1928, 1176,1608, 1192,1352, 1208,1864, 1240,1736, 1256,1480, 1272,1992, 1304,1576, 1336,1832, 1368,1704, 1384,1448, 1400,1960, 1432,1640, 1464,1896, 1496,1768, 1528,2024, 1592,1816, 1624,1688, 1656,1944, 1720,1880, 1784,2008, 1912,1976 }; const uint16_t armBitRevIndexTableF64_512[ARMBITREVINDEXTABLEF64_512_TABLE_LENGTH] ARM_DSP_TABLE_ATTRIBUTE = { /* 4x2, size 480 */ 8,2048, 16,1024, 24,3072, 32,512, 40,2560, 48,1536, 56,3584, 64,256, 72,2304, 80,1280, 88,3328, 96,768, 104,2816, 112,1792, 120,3840, 136,2176, 144,1152, 152,3200, 160,640, 168,2688, 176,1664, 184,3712, 192,384, 200,2432, 208,1408, 216,3456, 224,896, 232,2944, 240,1920, 248,3968, 264,2112, 272,1088, 280,3136, 288,576, 296,2624, 304,1600, 312,3648, 328,2368, 336,1344, 344,3392, 352,832, 360,2880, 368,1856, 376,3904, 392,2240, 400,1216, 408,3264, 416,704, 424,2752, 432,1728, 440,3776, 456,2496, 464,1472, 472,3520, 480,960, 488,3008, 496,1984, 504,4032, 520,2080, 528,1056, 536,3104, 552,2592, 560,1568, 568,3616, 584,2336, 592,1312, 600,3360, 608,800, 616,2848, 624,1824, 632,3872, 648,2208, 656,1184, 664,3232, 680,2720, 688,1696, 696,3744, 712,2464, 720,1440, 728,3488, 736,928, 744,2976, 752,1952, 760,4000, 776,2144, 784,1120, 792,3168, 808,2656, 816,1632, 824,3680, 840,2400, 848,1376, 856,3424, 872,2912, 880,1888, 888,3936, 904,2272, 912,1248, 920,3296, 936,2784, 944,1760, 952,3808, 968,2528, 976,1504, 984,3552, 1000,3040, 1008,2016, 1016,4064, 1032,2064, 1048,3088, 1064,2576, 1072,1552, 1080,3600, 1096,2320, 1104,1296, 1112,3344, 1128,2832, 1136,1808, 1144,3856, 1160,2192, 1176,3216, 1192,2704, 1200,1680, 1208,3728, 1224,2448, 1232,1424, 1240,3472, 1256,2960, 1264,1936, 1272,3984, 1288,2128, 1304,3152, 1320,2640, 1328,1616, 1336,3664, 1352,2384, 1368,3408, 1384,2896, 1392,1872, 1400,3920, 1416,2256, 1432,3280, 1448,2768, 1456,1744, 1464,3792, 1480,2512, 1496,3536, 1512,3024, 1520,2000, 1528,4048, 1544,2096, 1560,3120, 1576,2608, 1592,3632, 1608,2352, 1624,3376, 1640,2864, 1648,1840, 1656,3888, 1672,2224, 1688,3248, 1704,2736, 1720,3760, 1736,2480, 1752,3504, 1768,2992, 1776,1968, 1784,4016, 1800,2160, 1816,3184, 1832,2672, 1848,3696, 1864,2416, 1880,3440, 1896,2928, 1912,3952, 1928,2288, 1944,3312, 1960,2800, 1976,3824, 1992,2544, 2008,3568, 2024,3056, 2040,4080, 2072,3080, 2088,2568, 2104,3592, 2120,2312, 2136,3336, 2152,2824, 2168,3848, 2200,3208, 2216,2696, 2232,3720, 2248,2440, 2264,3464, 2280,2952, 2296,3976, 2328,3144, 2344,2632, 2360,3656, 2392,3400, 2408,2888, 2424,3912, 2456,3272, 2472,2760, 2488,3784, 2520,3528, 2536,3016, 2552,4040, 2584,3112, 2616,3624, 2648,3368, 2664,2856, 2680,3880, 2712,3240, 2744,3752, 2776,3496, 2792,2984, 2808,4008, 2840,3176, 2872,3688, 2904,3432, 2936,3944, 2968,3304, 3000,3816, 3032,3560, 3064,4072, 3128,3608, 3160,3352, 3192,3864, 3256,3736, 3288,3480, 3320,3992, 3384,3672, 3448,3928, 3512,3800, 3576,4056, 3704,3896, 3832,4024 }; const uint16_t armBitRevIndexTableF64_1024[ARMBITREVINDEXTABLEF64_1024_TABLE_LENGTH] ARM_DSP_TABLE_ATTRIBUTE = { /* radix 4, size 992 */ 8,4096, 16,2048, 24,6144, 32,1024, 40,5120, 48,3072, 56,7168, 64,512, 72,4608, 80,2560, 88,6656, 96,1536, 104,5632, 112,3584, 120,7680, 128,256, 136,4352, 144,2304, 152,6400, 160,1280, 168,5376, 176,3328, 184,7424, 192,768, 200,4864, 208,2816, 216,6912, 224,1792, 232,5888, 240,3840, 248,7936, 264,4224, 272,2176, 280,6272, 288,1152, 296,5248, 304,3200, 312,7296, 320,640, 328,4736, 336,2688, 344,6784, 352,1664, 360,5760, 368,3712, 376,7808, 392,4480, 400,2432, 408,6528, 416,1408, 424,5504, 432,3456, 440,7552, 448,896, 456,4992, 464,2944, 472,7040, 480,1920, 488,6016, 496,3968, 504,8064, 520,4160, 528,2112, 536,6208, 544,1088, 552,5184, 560,3136, 568,7232, 584,4672, 592,2624, 600,6720, 608,1600, 616,5696, 624,3648, 632,7744, 648,4416, 656,2368, 664,6464, 672,1344, 680,5440, 688,3392, 696,7488, 704,832, 712,4928, 720,2880, 728,6976, 736,1856, 744,5952, 752,3904, 760,8000, 776,4288, 784,2240, 792,6336, 800,1216, 808,5312, 816,3264, 824,7360, 840,4800, 848,2752, 856,6848, 864,1728, 872,5824, 880,3776, 888,7872, 904,4544, 912,2496, 920,6592, 928,1472, 936,5568, 944,3520, 952,7616, 968,5056, 976,3008, 984,7104, 992,1984, 1000,6080, 1008,4032, 1016,8128, 1032,4128, 1040,2080, 1048,6176, 1064,5152, 1072,3104, 1080,7200, 1096,4640, 1104,2592, 1112,6688, 1120,1568, 1128,5664, 1136,3616, 1144,7712, 1160,4384, 1168,2336, 1176,6432, 1184,1312, 1192,5408, 1200,3360, 1208,7456, 1224,4896, 1232,2848, 1240,6944, 1248,1824, 1256,5920, 1264,3872, 1272,7968, 1288,4256, 1296,2208, 1304,6304, 1320,5280, 1328,3232, 1336,7328, 1352,4768, 1360,2720, 1368,6816, 1376,1696, 1384,5792, 1392,3744, 1400,7840, 1416,4512, 1424,2464, 1432,6560, 1448,5536, 1456,3488, 1464,7584, 1480,5024, 1488,2976, 1496,7072, 1504,1952, 1512,6048, 1520,4000, 1528,8096, 1544,4192, 1552,2144, 1560,6240, 1576,5216, 1584,3168, 1592,7264, 1608,4704, 1616,2656, 1624,6752, 1640,5728, 1648,3680, 1656,7776, 1672,4448, 1680,2400, 1688,6496, 1704,5472, 1712,3424, 1720,7520, 1736,4960, 1744,2912, 1752,7008, 1760,1888, 1768,5984, 1776,3936, 1784,8032, 1800,4320, 1808,2272, 1816,6368, 1832,5344, 1840,3296, 1848,7392, 1864,4832, 1872,2784, 1880,6880, 1896,5856, 1904,3808, 1912,7904, 1928,4576, 1936,2528, 1944,6624, 1960,5600, 1968,3552, 1976,7648, 1992,5088, 2000,3040, 2008,7136, 2024,6112, 2032,4064, 2040,8160, 2056,4112, 2072,6160, 2088,5136, 2096,3088, 2104,7184, 2120,4624, 2128,2576, 2136,6672, 2152,5648, 2160,3600, 2168,7696, 2184,4368, 2192,2320, 2200,6416, 2216,5392, 2224,3344, 2232,7440, 2248,4880, 2256,2832, 2264,6928, 2280,5904, 2288,3856, 2296,7952, 2312,4240, 2328,6288, 2344,5264, 2352,3216, 2360,7312, 2376,4752, 2384,2704, 2392,6800, 2408,5776, 2416,3728, 2424,7824, 2440,4496, 2456,6544, 2472,5520, 2480,3472, 2488,7568, 2504,5008, 2512,2960, 2520,7056, 2536,6032, 2544,3984, 2552,8080, 2568,4176, 2584,6224, 2600,5200, 2608,3152, 2616,7248, 2632,4688, 2648,6736, 2664,5712, 2672,3664, 2680,7760, 2696,4432, 2712,6480, 2728,5456, 2736,3408, 2744,7504, 2760,4944, 2768,2896, 2776,6992, 2792,5968, 2800,3920, 2808,8016, 2824,4304, 2840,6352, 2856,5328, 2864,3280, 2872,7376, 2888,4816, 2904,6864, 2920,5840, 2928,3792, 2936,7888, 2952,4560, 2968,6608, 2984,5584, 2992,3536, 3000,7632, 3016,5072, 3032,7120, 3048,6096, 3056,4048, 3064,8144, 3080,4144, 3096,6192, 3112,5168, 3128,7216, 3144,4656, 3160,6704, 3176,5680, 3184,3632, 3192,7728, 3208,4400, 3224,6448, 3240,5424, 3248,3376, 3256,7472, 3272,4912, 3288,6960, 3304,5936, 3312,3888, 3320,7984, 3336,4272, 3352,6320, 3368,5296, 3384,7344, 3400,4784, 3416,6832, 3432,5808, 3440,3760, 3448,7856, 3464,4528, 3480,6576, 3496,5552, 3512,7600, 3528,5040, 3544,7088, 3560,6064, 3568,4016, 3576,8112, 3592,4208, 3608,6256, 3624,5232, 3640,7280, 3656,4720, 3672,6768, 3688,5744, 3704,7792, 3720,4464, 3736,6512, 3752,5488, 3768,7536, 3784,4976, 3800,7024, 3816,6000, 3824,3952, 3832,8048, 3848,4336, 3864,6384, 3880,5360, 3896,7408, 3912,4848, 3928,6896, 3944,5872, 3960,7920, 3976,4592, 3992,6640, 4008,5616, 4024,7664, 4040,5104, 4056,7152, 4072,6128, 4088,8176, 4120,6152, 4136,5128, 4152,7176, 4168,4616, 4184,6664, 4200,5640, 4216,7688, 4232,4360, 4248,6408, 4264,5384, 4280,7432, 4296,4872, 4312,6920, 4328,5896, 4344,7944, 4376,6280, 4392,5256, 4408,7304, 4424,4744, 4440,6792, 4456,5768, 4472,7816, 4504,6536, 4520,5512, 4536,7560, 4552,5000, 4568,7048, 4584,6024, 4600,8072, 4632,6216, 4648,5192, 4664,7240, 4696,6728, 4712,5704, 4728,7752, 4760,6472, 4776,5448, 4792,7496, 4808,4936, 4824,6984, 4840,5960, 4856,8008, 4888,6344, 4904,5320, 4920,7368, 4952,6856, 4968,5832, 4984,7880, 5016,6600, 5032,5576, 5048,7624, 5080,7112, 5096,6088, 5112,8136, 5144,6184, 5176,7208, 5208,6696, 5224,5672, 5240,7720, 5272,6440, 5288,5416, 5304,7464, 5336,6952, 5352,5928, 5368,7976, 5400,6312, 5432,7336, 5464,6824, 5480,5800, 5496,7848, 5528,6568, 5560,7592, 5592,7080, 5608,6056, 5624,8104, 5656,6248, 5688,7272, 5720,6760, 5752,7784, 5784,6504, 5816,7528, 5848,7016, 5864,5992, 5880,8040, 5912,6376, 5944,7400, 5976,6888, 6008,7912, 6040,6632, 6072,7656, 6104,7144, 6136,8168, 6200,7192, 6232,6680, 6264,7704, 6296,6424, 6328,7448, 6360,6936, 6392,7960, 6456,7320, 6488,6808, 6520,7832, 6584,7576, 6616,7064, 6648,8088, 6712,7256, 6776,7768, 6840,7512, 6872,7000, 6904,8024, 6968,7384, 7032,7896, 7096,7640, 7160,8152, 7288,7736, 7352,7480, 7416,7992, 7544,7864, 7672,8120, 7928,8056 }; const uint16_t armBitRevIndexTableF64_2048[ARMBITREVINDEXTABLEF64_2048_TABLE_LENGTH] ARM_DSP_TABLE_ATTRIBUTE = { /* 4x2, size 1984 */ 8,8192, 16,4096, 24,12288, 32,2048, 40,10240, 48,6144, 56,14336, 64,1024, 72,9216, 80,5120, 88,13312, 96,3072, 104,11264, 112,7168, 120,15360, 128,512, 136,8704, 144,4608, 152,12800, 160,2560, 168,10752, 176,6656, 184,14848, 192,1536, 200,9728, 208,5632, 216,13824, 224,3584, 232,11776, 240,7680, 248,15872, 264,8448, 272,4352, 280,12544, 288,2304, 296,10496, 304,6400, 312,14592, 320,1280, 328,9472, 336,5376, 344,13568, 352,3328, 360,11520, 368,7424, 376,15616, 384,768, 392,8960, 400,4864, 408,13056, 416,2816, 424,11008, 432,6912, 440,15104, 448,1792, 456,9984, 464,5888, 472,14080, 480,3840, 488,12032, 496,7936, 504,16128, 520,8320, 528,4224, 536,12416, 544,2176, 552,10368, 560,6272, 568,14464, 576,1152, 584,9344, 592,5248, 600,13440, 608,3200, 616,11392, 624,7296, 632,15488, 648,8832, 656,4736, 664,12928, 672,2688, 680,10880, 688,6784, 696,14976, 704,1664, 712,9856, 720,5760, 728,13952, 736,3712, 744,11904, 752,7808, 760,16000, 776,8576, 784,4480, 792,12672, 800,2432, 808,10624, 816,6528, 824,14720, 832,1408, 840,9600, 848,5504, 856,13696, 864,3456, 872,11648, 880,7552, 888,15744, 904,9088, 912,4992, 920,13184, 928,2944, 936,11136, 944,7040, 952,15232, 960,1920, 968,10112, 976,6016, 984,14208, 992,3968, 1000,12160, 1008,8064, 1016,16256, 1032,8256, 1040,4160, 1048,12352, 1056,2112, 1064,10304, 1072,6208, 1080,14400, 1096,9280, 1104,5184, 1112,13376, 1120,3136, 1128,11328, 1136,7232, 1144,15424, 1160,8768, 1168,4672, 1176,12864, 1184,2624, 1192,10816, 1200,6720, 1208,14912, 1216,1600, 1224,9792, 1232,5696, 1240,13888, 1248,3648, 1256,11840, 1264,7744, 1272,15936, 1288,8512, 1296,4416, 1304,12608, 1312,2368, 1320,10560, 1328,6464, 1336,14656, 1352,9536, 1360,5440, 1368,13632, 1376,3392, 1384,11584, 1392,7488, 1400,15680, 1416,9024, 1424,4928, 1432,13120, 1440,2880, 1448,11072, 1456,6976, 1464,15168, 1472,1856, 1480,10048, 1488,5952, 1496,14144, 1504,3904, 1512,12096, 1520,8000, 1528,16192, 1544,8384, 1552,4288, 1560,12480, 1568,2240, 1576,10432, 1584,6336, 1592,14528, 1608,9408, 1616,5312, 1624,13504, 1632,3264, 1640,11456, 1648,7360, 1656,15552, 1672,8896, 1680,4800, 1688,12992, 1696,2752, 1704,10944, 1712,6848, 1720,15040, 1736,9920, 1744,5824, 1752,14016, 1760,3776, 1768,11968, 1776,7872, 1784,16064, 1800,8640, 1808,4544, 1816,12736, 1824,2496, 1832,10688, 1840,6592, 1848,14784, 1864,9664, 1872,5568, 1880,13760, 1888,3520, 1896,11712, 1904,7616, 1912,15808, 1928,9152, 1936,5056, 1944,13248, 1952,3008, 1960,11200, 1968,7104, 1976,15296, 1992,10176, 2000,6080, 2008,14272, 2016,4032, 2024,12224, 2032,8128, 2040,16320, 2056,8224, 2064,4128, 2072,12320, 2088,10272, 2096,6176, 2104,14368, 2120,9248, 2128,5152, 2136,13344, 2144,3104, 2152,11296, 2160,7200, 2168,15392, 2184,8736, 2192,4640, 2200,12832, 2208,2592, 2216,10784, 2224,6688, 2232,14880, 2248,9760, 2256,5664, 2264,13856, 2272,3616, 2280,11808, 2288,7712, 2296,15904, 2312,8480, 2320,4384, 2328,12576, 2344,10528, 2352,6432, 2360,14624, 2376,9504, 2384,5408, 2392,13600, 2400,3360, 2408,11552, 2416,7456, 2424,15648, 2440,8992, 2448,4896, 2456,13088, 2464,2848, 2472,11040, 2480,6944, 2488,15136, 2504,10016, 2512,5920, 2520,14112, 2528,3872, 2536,12064, 2544,7968, 2552,16160, 2568,8352, 2576,4256, 2584,12448, 2600,10400, 2608,6304, 2616,14496, 2632,9376, 2640,5280, 2648,13472, 2656,3232, 2664,11424, 2672,7328, 2680,15520, 2696,8864, 2704,4768, 2712,12960, 2728,10912, 2736,6816, 2744,15008, 2760,9888, 2768,5792, 2776,13984, 2784,3744, 2792,11936, 2800,7840, 2808,16032, 2824,8608, 2832,4512, 2840,12704, 2856,10656, 2864,6560, 2872,14752, 2888,9632, 2896,5536, 2904,13728, 2912,3488, 2920,11680, 2928,7584, 2936,15776, 2952,9120, 2960,5024, 2968,13216, 2984,11168, 2992,7072, 3000,15264, 3016,10144, 3024,6048, 3032,14240, 3040,4000, 3048,12192, 3056,8096, 3064,16288, 3080,8288, 3088,4192, 3096,12384, 3112,10336, 3120,6240, 3128,14432, 3144,9312, 3152,5216, 3160,13408, 3176,11360, 3184,7264, 3192,15456, 3208,8800, 3216,4704, 3224,12896, 3240,10848, 3248,6752, 3256,14944, 3272,9824, 3280,5728, 3288,13920, 3296,3680, 3304,11872, 3312,7776, 3320,15968, 3336,8544, 3344,4448, 3352,12640, 3368,10592, 3376,6496, 3384,14688, 3400,9568, 3408,5472, 3416,13664, 3432,11616, 3440,7520, 3448,15712, 3464,9056, 3472,4960, 3480,13152, 3496,11104, 3504,7008, 3512,15200, 3528,10080, 3536,5984, 3544,14176, 3552,3936, 3560,12128, 3568,8032, 3576,16224, 3592,8416, 3600,4320, 3608,12512, 3624,10464, 3632,6368, 3640,14560, 3656,9440, 3664,5344, 3672,13536, 3688,11488, 3696,7392, 3704,15584, 3720,8928, 3728,4832, 3736,13024, 3752,10976, 3760,6880, 3768,15072, 3784,9952, 3792,5856, 3800,14048, 3816,12000, 3824,7904, 3832,16096, 3848,8672, 3856,4576, 3864,12768, 3880,10720, 3888,6624, 3896,14816, 3912,9696, 3920,5600, 3928,13792, 3944,11744, 3952,7648, 3960,15840, 3976,9184, 3984,5088, 3992,13280, 4008,11232, 4016,7136, 4024,15328, 4040,10208, 4048,6112, 4056,14304, 4072,12256, 4080,8160, 4088,16352, 4104,8208, 4120,12304, 4136,10256, 4144,6160, 4152,14352, 4168,9232, 4176,5136, 4184,13328, 4200,11280, 4208,7184, 4216,15376, 4232,8720, 4240,4624, 4248,12816, 4264,10768, 4272,6672, 4280,14864, 4296,9744, 4304,5648, 4312,13840, 4328,11792, 4336,7696, 4344,15888, 4360,8464, 4376,12560, 4392,10512, 4400,6416, 4408,14608, 4424,9488, 4432,5392, 4440,13584, 4456,11536, 4464,7440, 4472,15632, 4488,8976, 4496,4880, 4504,13072, 4520,11024, 4528,6928, 4536,15120, 4552,10000, 4560,5904, 4568,14096, 4584,12048, 4592,7952, 4600,16144, 4616,8336, 4632,12432, 4648,10384, 4656,6288, 4664,14480, 4680,9360, 4688,5264, 4696,13456, 4712,11408, 4720,7312, 4728,15504, 4744,8848, 4760,12944, 4776,10896, 4784,6800, 4792,14992, 4808,9872, 4816,5776, 4824,13968, 4840,11920, 4848,7824, 4856,16016, 4872,8592, 4888,12688, 4904,10640, 4912,6544, 4920,14736, 4936,9616, 4944,5520, 4952,13712, 4968,11664, 4976,7568, 4984,15760, 5000,9104, 5016,13200, 5032,11152, 5040,7056, 5048,15248, 5064,10128, 5072,6032, 5080,14224, 5096,12176, 5104,8080, 5112,16272, 5128,8272, 5144,12368, 5160,10320, 5168,6224, 5176,14416, 5192,9296, 5208,13392, 5224,11344, 5232,7248, 5240,15440, 5256,8784, 5272,12880, 5288,10832, 5296,6736, 5304,14928, 5320,9808, 5328,5712, 5336,13904, 5352,11856, 5360,7760, 5368,15952, 5384,8528, 5400,12624, 5416,10576, 5424,6480, 5432,14672, 5448,9552, 5464,13648, 5480,11600, 5488,7504, 5496,15696, 5512,9040, 5528,13136, 5544,11088, 5552,6992, 5560,15184, 5576,10064, 5584,5968, 5592,14160, 5608,12112, 5616,8016, 5624,16208, 5640,8400, 5656,12496, 5672,10448, 5680,6352, 5688,14544, 5704,9424, 5720,13520, 5736,11472, 5744,7376, 5752,15568, 5768,8912, 5784,13008, 5800,10960, 5808,6864, 5816,15056, 5832,9936, 5848,14032, 5864,11984, 5872,7888, 5880,16080, 5896,8656, 5912,12752, 5928,10704, 5936,6608, 5944,14800, 5960,9680, 5976,13776, 5992,11728, 6000,7632, 6008,15824, 6024,9168, 6040,13264, 6056,11216, 6064,7120, 6072,15312, 6088,10192, 6104,14288, 6120,12240, 6128,8144, 6136,16336, 6152,8240, 6168,12336, 6184,10288, 6200,14384, 6216,9264, 6232,13360, 6248,11312, 6256,7216, 6264,15408, 6280,8752, 6296,12848, 6312,10800, 6320,6704, 6328,14896, 6344,9776, 6360,13872, 6376,11824, 6384,7728, 6392,15920, 6408,8496, 6424,12592, 6440,10544, 6456,14640, 6472,9520, 6488,13616, 6504,11568, 6512,7472, 6520,15664, 6536,9008, 6552,13104, 6568,11056, 6576,6960, 6584,15152, 6600,10032, 6616,14128, 6632,12080, 6640,7984, 6648,16176, 6664,8368, 6680,12464, 6696,10416, 6712,14512, 6728,9392, 6744,13488, 6760,11440, 6768,7344, 6776,15536, 6792,8880, 6808,12976, 6824,10928, 6840,15024, 6856,9904, 6872,14000, 6888,11952, 6896,7856, 6904,16048, 6920,8624, 6936,12720, 6952,10672, 6968,14768, 6984,9648, 7000,13744, 7016,11696, 7024,7600, 7032,15792, 7048,9136, 7064,13232, 7080,11184, 7096,15280, 7112,10160, 7128,14256, 7144,12208, 7152,8112, 7160,16304, 7176,8304, 7192,12400, 7208,10352, 7224,14448, 7240,9328, 7256,13424, 7272,11376, 7288,15472, 7304,8816, 7320,12912, 7336,10864, 7352,14960, 7368,9840, 7384,13936, 7400,11888, 7408,7792, 7416,15984, 7432,8560, 7448,12656, 7464,10608, 7480,14704, 7496,9584, 7512,13680, 7528,11632, 7544,15728, 7560,9072, 7576,13168, 7592,11120, 7608,15216, 7624,10096, 7640,14192, 7656,12144, 7664,8048, 7672,16240, 7688,8432, 7704,12528, 7720,10480, 7736,14576, 7752,9456, 7768,13552, 7784,11504, 7800,15600, 7816,8944, 7832,13040, 7848,10992, 7864,15088, 7880,9968, 7896,14064, 7912,12016, 7928,16112, 7944,8688, 7960,12784, 7976,10736, 7992,14832, 8008,9712, 8024,13808, 8040,11760, 8056,15856, 8072,9200, 8088,13296, 8104,11248, 8120,15344, 8136,10224, 8152,14320, 8168,12272, 8184,16368, 8216,12296, 8232,10248, 8248,14344, 8264,9224, 8280,13320, 8296,11272, 8312,15368, 8328,8712, 8344,12808, 8360,10760, 8376,14856, 8392,9736, 8408,13832, 8424,11784, 8440,15880, 8472,12552, 8488,10504, 8504,14600, 8520,9480, 8536,13576, 8552,11528, 8568,15624, 8584,8968, 8600,13064, 8616,11016, 8632,15112, 8648,9992, 8664,14088, 8680,12040, 8696,16136, 8728,12424, 8744,10376, 8760,14472, 8776,9352, 8792,13448, 8808,11400, 8824,15496, 8856,12936, 8872,10888, 8888,14984, 8904,9864, 8920,13960, 8936,11912, 8952,16008, 8984,12680, 9000,10632, 9016,14728, 9032,9608, 9048,13704, 9064,11656, 9080,15752, 9112,13192, 9128,11144, 9144,15240, 9160,10120, 9176,14216, 9192,12168, 9208,16264, 9240,12360, 9256,10312, 9272,14408, 9304,13384, 9320,11336, 9336,15432, 9368,12872, 9384,10824, 9400,14920, 9416,9800, 9432,13896, 9448,11848, 9464,15944, 9496,12616, 9512,10568, 9528,14664, 9560,13640, 9576,11592, 9592,15688, 9624,13128, 9640,11080, 9656,15176, 9672,10056, 9688,14152, 9704,12104, 9720,16200, 9752,12488, 9768,10440, 9784,14536, 9816,13512, 9832,11464, 9848,15560, 9880,13000, 9896,10952, 9912,15048, 9944,14024, 9960,11976, 9976,16072, 10008,12744, 10024,10696, 10040,14792, 10072,13768, 10088,11720, 10104,15816, 10136,13256, 10152,11208, 10168,15304, 10200,14280, 10216,12232, 10232,16328, 10264,12328, 10296,14376, 10328,13352, 10344,11304, 10360,15400, 10392,12840, 10408,10792, 10424,14888, 10456,13864, 10472,11816, 10488,15912, 10520,12584, 10552,14632, 10584,13608, 10600,11560, 10616,15656, 10648,13096, 10664,11048, 10680,15144, 10712,14120, 10728,12072, 10744,16168, 10776,12456, 10808,14504, 10840,13480, 10856,11432, 10872,15528, 10904,12968, 10936,15016, 10968,13992, 10984,11944, 11000,16040, 11032,12712, 11064,14760, 11096,13736, 11112,11688, 11128,15784, 11160,13224, 11192,15272, 11224,14248, 11240,12200, 11256,16296, 11288,12392, 11320,14440, 11352,13416, 11384,15464, 11416,12904, 11448,14952, 11480,13928, 11496,11880, 11512,15976, 11544,12648, 11576,14696, 11608,13672, 11640,15720, 11672,13160, 11704,15208, 11736,14184, 11752,12136, 11768,16232, 11800,12520, 11832,14568, 11864,13544, 11896,15592, 11928,13032, 11960,15080, 11992,14056, 12024,16104, 12056,12776, 12088,14824, 12120,13800, 12152,15848, 12184,13288, 12216,15336, 12248,14312, 12280,16360, 12344,14360, 12376,13336, 12408,15384, 12440,12824, 12472,14872, 12504,13848, 12536,15896, 12600,14616, 12632,13592, 12664,15640, 12696,13080, 12728,15128, 12760,14104, 12792,16152, 12856,14488, 12888,13464, 12920,15512, 12984,15000, 13016,13976, 13048,16024, 13112,14744, 13144,13720, 13176,15768, 13240,15256, 13272,14232, 13304,16280, 13368,14424, 13432,15448, 13496,14936, 13528,13912, 13560,15960, 13624,14680, 13688,15704, 13752,15192, 13784,14168, 13816,16216, 13880,14552, 13944,15576, 14008,15064, 14072,16088, 14136,14808, 14200,15832, 14264,15320, 14328,16344, 14456,15416, 14520,14904, 14584,15928, 14712,15672, 14776,15160, 14840,16184, 14968,15544, 15096,16056, 15224,15800, 15352,16312, 15608,15992, 15864,16248 }; const uint16_t armBitRevIndexTableF64_4096[ARMBITREVINDEXTABLEF64_4096_TABLE_LENGTH] ARM_DSP_TABLE_ATTRIBUTE = { /* radix 4, size 4032 */ 8,16384, 16,8192, 24,24576, 32,4096, 40,20480, 48,12288, 56,28672, 64,2048, 72,18432, 80,10240, 88,26624, 96,6144, 104,22528, 112,14336, 120,30720, 128,1024, 136,17408, 144,9216, 152,25600, 160,5120, 168,21504, 176,13312, 184,29696, 192,3072, 200,19456, 208,11264, 216,27648, 224,7168, 232,23552, 240,15360, 248,31744, 256,512, 264,16896, 272,8704, 280,25088, 288,4608, 296,20992, 304,12800, 312,29184, 320,2560, 328,18944, 336,10752, 344,27136, 352,6656, 360,23040, 368,14848, 376,31232, 384,1536, 392,17920, 400,9728, 408,26112, 416,5632, 424,22016, 432,13824, 440,30208, 448,3584, 456,19968, 464,11776, 472,28160, 480,7680, 488,24064, 496,15872, 504,32256, 520,16640, 528,8448, 536,24832, 544,4352, 552,20736, 560,12544, 568,28928, 576,2304, 584,18688, 592,10496, 600,26880, 608,6400, 616,22784, 624,14592, 632,30976, 640,1280, 648,17664, 656,9472, 664,25856, 672,5376, 680,21760, 688,13568, 696,29952, 704,3328, 712,19712, 720,11520, 728,27904, 736,7424, 744,23808, 752,15616, 760,32000, 776,17152, 784,8960, 792,25344, 800,4864, 808,21248, 816,13056, 824,29440, 832,2816, 840,19200, 848,11008, 856,27392, 864,6912, 872,23296, 880,15104, 888,31488, 896,1792, 904,18176, 912,9984, 920,26368, 928,5888, 936,22272, 944,14080, 952,30464, 960,3840, 968,20224, 976,12032, 984,28416, 992,7936, 1000,24320, 1008,16128, 1016,32512, 1032,16512, 1040,8320, 1048,24704, 1056,4224, 1064,20608, 1072,12416, 1080,28800, 1088,2176, 1096,18560, 1104,10368, 1112,26752, 1120,6272, 1128,22656, 1136,14464, 1144,30848, 1160,17536, 1168,9344, 1176,25728, 1184,5248, 1192,21632, 1200,13440, 1208,29824, 1216,3200, 1224,19584, 1232,11392, 1240,27776, 1248,7296, 1256,23680, 1264,15488, 1272,31872, 1288,17024, 1296,8832, 1304,25216, 1312,4736, 1320,21120, 1328,12928, 1336,29312, 1344,2688, 1352,19072, 1360,10880, 1368,27264, 1376,6784, 1384,23168, 1392,14976, 1400,31360, 1408,1664, 1416,18048, 1424,9856, 1432,26240, 1440,5760, 1448,22144, 1456,13952, 1464,30336, 1472,3712, 1480,20096, 1488,11904, 1496,28288, 1504,7808, 1512,24192, 1520,16000, 1528,32384, 1544,16768, 1552,8576, 1560,24960, 1568,4480, 1576,20864, 1584,12672, 1592,29056, 1600,2432, 1608,18816, 1616,10624, 1624,27008, 1632,6528, 1640,22912, 1648,14720, 1656,31104, 1672,17792, 1680,9600, 1688,25984, 1696,5504, 1704,21888, 1712,13696, 1720,30080, 1728,3456, 1736,19840, 1744,11648, 1752,28032, 1760,7552, 1768,23936, 1776,15744, 1784,32128, 1800,17280, 1808,9088, 1816,25472, 1824,4992, 1832,21376, 1840,13184, 1848,29568, 1856,2944, 1864,19328, 1872,11136, 1880,27520, 1888,7040, 1896,23424, 1904,15232, 1912,31616, 1928,18304, 1936,10112, 1944,26496, 1952,6016, 1960,22400, 1968,14208, 1976,30592, 1984,3968, 1992,20352, 2000,12160, 2008,28544, 2016,8064, 2024,24448, 2032,16256, 2040,32640, 2056,16448, 2064,8256, 2072,24640, 2080,4160, 2088,20544, 2096,12352, 2104,28736, 2120,18496, 2128,10304, 2136,26688, 2144,6208, 2152,22592, 2160,14400, 2168,30784, 2184,17472, 2192,9280, 2200,25664, 2208,5184, 2216,21568, 2224,13376, 2232,29760, 2240,3136, 2248,19520, 2256,11328, 2264,27712, 2272,7232, 2280,23616, 2288,15424, 2296,31808, 2312,16960, 2320,8768, 2328,25152, 2336,4672, 2344,21056, 2352,12864, 2360,29248, 2368,2624, 2376,19008, 2384,10816, 2392,27200, 2400,6720, 2408,23104, 2416,14912, 2424,31296, 2440,17984, 2448,9792, 2456,26176, 2464,5696, 2472,22080, 2480,13888, 2488,30272, 2496,3648, 2504,20032, 2512,11840, 2520,28224, 2528,7744, 2536,24128, 2544,15936, 2552,32320, 2568,16704, 2576,8512, 2584,24896, 2592,4416, 2600,20800, 2608,12608, 2616,28992, 2632,18752, 2640,10560, 2648,26944, 2656,6464, 2664,22848, 2672,14656, 2680,31040, 2696,17728, 2704,9536, 2712,25920, 2720,5440, 2728,21824, 2736,13632, 2744,30016, 2752,3392, 2760,19776, 2768,11584, 2776,27968, 2784,7488, 2792,23872, 2800,15680, 2808,32064, 2824,17216, 2832,9024, 2840,25408, 2848,4928, 2856,21312, 2864,13120, 2872,29504, 2888,19264, 2896,11072, 2904,27456, 2912,6976, 2920,23360, 2928,15168, 2936,31552, 2952,18240, 2960,10048, 2968,26432, 2976,5952, 2984,22336, 2992,14144, 3000,30528, 3008,3904, 3016,20288, 3024,12096, 3032,28480, 3040,8000, 3048,24384, 3056,16192, 3064,32576, 3080,16576, 3088,8384, 3096,24768, 3104,4288, 3112,20672, 3120,12480, 3128,28864, 3144,18624, 3152,10432, 3160,26816, 3168,6336, 3176,22720, 3184,14528, 3192,30912, 3208,17600, 3216,9408, 3224,25792, 3232,5312, 3240,21696, 3248,13504, 3256,29888, 3272,19648, 3280,11456, 3288,27840, 3296,7360, 3304,23744, 3312,15552, 3320,31936, 3336,17088, 3344,8896, 3352,25280, 3360,4800, 3368,21184, 3376,12992, 3384,29376, 3400,19136, 3408,10944, 3416,27328, 3424,6848, 3432,23232, 3440,15040, 3448,31424, 3464,18112, 3472,9920, 3480,26304, 3488,5824, 3496,22208, 3504,14016, 3512,30400, 3520,3776, 3528,20160, 3536,11968, 3544,28352, 3552,7872, 3560,24256, 3568,16064, 3576,32448, 3592,16832, 3600,8640, 3608,25024, 3616,4544, 3624,20928, 3632,12736, 3640,29120, 3656,18880, 3664,10688, 3672,27072, 3680,6592, 3688,22976, 3696,14784, 3704,31168, 3720,17856, 3728,9664, 3736,26048, 3744,5568, 3752,21952, 3760,13760, 3768,30144, 3784,19904, 3792,11712, 3800,28096, 3808,7616, 3816,24000, 3824,15808, 3832,32192, 3848,17344, 3856,9152, 3864,25536, 3872,5056, 3880,21440, 3888,13248, 3896,29632, 3912,19392, 3920,11200, 3928,27584, 3936,7104, 3944,23488, 3952,15296, 3960,31680, 3976,18368, 3984,10176, 3992,26560, 4000,6080, 4008,22464, 4016,14272, 4024,30656, 4040,20416, 4048,12224, 4056,28608, 4064,8128, 4072,24512, 4080,16320, 4088,32704, 4104,16416, 4112,8224, 4120,24608, 4136,20512, 4144,12320, 4152,28704, 4168,18464, 4176,10272, 4184,26656, 4192,6176, 4200,22560, 4208,14368, 4216,30752, 4232,17440, 4240,9248, 4248,25632, 4256,5152, 4264,21536, 4272,13344, 4280,29728, 4296,19488, 4304,11296, 4312,27680, 4320,7200, 4328,23584, 4336,15392, 4344,31776, 4360,16928, 4368,8736, 4376,25120, 4384,4640, 4392,21024, 4400,12832, 4408,29216, 4424,18976, 4432,10784, 4440,27168, 4448,6688, 4456,23072, 4464,14880, 4472,31264, 4488,17952, 4496,9760, 4504,26144, 4512,5664, 4520,22048, 4528,13856, 4536,30240, 4552,20000, 4560,11808, 4568,28192, 4576,7712, 4584,24096, 4592,15904, 4600,32288, 4616,16672, 4624,8480, 4632,24864, 4648,20768, 4656,12576, 4664,28960, 4680,18720, 4688,10528, 4696,26912, 4704,6432, 4712,22816, 4720,14624, 4728,31008, 4744,17696, 4752,9504, 4760,25888, 4768,5408, 4776,21792, 4784,13600, 4792,29984, 4808,19744, 4816,11552, 4824,27936, 4832,7456, 4840,23840, 4848,15648, 4856,32032, 4872,17184, 4880,8992, 4888,25376, 4904,21280, 4912,13088, 4920,29472, 4936,19232, 4944,11040, 4952,27424, 4960,6944, 4968,23328, 4976,15136, 4984,31520, 5000,18208, 5008,10016, 5016,26400, 5024,5920, 5032,22304, 5040,14112, 5048,30496, 5064,20256, 5072,12064, 5080,28448, 5088,7968, 5096,24352, 5104,16160, 5112,32544, 5128,16544, 5136,8352, 5144,24736, 5160,20640, 5168,12448, 5176,28832, 5192,18592, 5200,10400, 5208,26784, 5216,6304, 5224,22688, 5232,14496, 5240,30880, 5256,17568, 5264,9376, 5272,25760, 5288,21664, 5296,13472, 5304,29856, 5320,19616, 5328,11424, 5336,27808, 5344,7328, 5352,23712, 5360,15520, 5368,31904, 5384,17056, 5392,8864, 5400,25248, 5416,21152, 5424,12960, 5432,29344, 5448,19104, 5456,10912, 5464,27296, 5472,6816, 5480,23200, 5488,15008, 5496,31392, 5512,18080, 5520,9888, 5528,26272, 5536,5792, 5544,22176, 5552,13984, 5560,30368, 5576,20128, 5584,11936, 5592,28320, 5600,7840, 5608,24224, 5616,16032, 5624,32416, 5640,16800, 5648,8608, 5656,24992, 5672,20896, 5680,12704, 5688,29088, 5704,18848, 5712,10656, 5720,27040, 5728,6560, 5736,22944, 5744,14752, 5752,31136, 5768,17824, 5776,9632, 5784,26016, 5800,21920, 5808,13728, 5816,30112, 5832,19872, 5840,11680, 5848,28064, 5856,7584, 5864,23968, 5872,15776, 5880,32160, 5896,17312, 5904,9120, 5912,25504, 5928,21408, 5936,13216, 5944,29600, 5960,19360, 5968,11168, 5976,27552, 5984,7072, 5992,23456, 6000,15264, 6008,31648, 6024,18336, 6032,10144, 6040,26528, 6056,22432, 6064,14240, 6072,30624, 6088,20384, 6096,12192, 6104,28576, 6112,8096, 6120,24480, 6128,16288, 6136,32672, 6152,16480, 6160,8288, 6168,24672, 6184,20576, 6192,12384, 6200,28768, 6216,18528, 6224,10336, 6232,26720, 6248,22624, 6256,14432, 6264,30816, 6280,17504, 6288,9312, 6296,25696, 6312,21600, 6320,13408, 6328,29792, 6344,19552, 6352,11360, 6360,27744, 6368,7264, 6376,23648, 6384,15456, 6392,31840, 6408,16992, 6416,8800, 6424,25184, 6440,21088, 6448,12896, 6456,29280, 6472,19040, 6480,10848, 6488,27232, 6496,6752, 6504,23136, 6512,14944, 6520,31328, 6536,18016, 6544,9824, 6552,26208, 6568,22112, 6576,13920, 6584,30304, 6600,20064, 6608,11872, 6616,28256, 6624,7776, 6632,24160, 6640,15968, 6648,32352, 6664,16736, 6672,8544, 6680,24928, 6696,20832, 6704,12640, 6712,29024, 6728,18784, 6736,10592, 6744,26976, 6760,22880, 6768,14688, 6776,31072, 6792,17760, 6800,9568, 6808,25952, 6824,21856, 6832,13664, 6840,30048, 6856,19808, 6864,11616, 6872,28000, 6880,7520, 6888,23904, 6896,15712, 6904,32096, 6920,17248, 6928,9056, 6936,25440, 6952,21344, 6960,13152, 6968,29536, 6984,19296, 6992,11104, 7000,27488, 7016,23392, 7024,15200, 7032,31584, 7048,18272, 7056,10080, 7064,26464, 7080,22368, 7088,14176, 7096,30560, 7112,20320, 7120,12128, 7128,28512, 7136,8032, 7144,24416, 7152,16224, 7160,32608, 7176,16608, 7184,8416, 7192,24800, 7208,20704, 7216,12512, 7224,28896, 7240,18656, 7248,10464, 7256,26848, 7272,22752, 7280,14560, 7288,30944, 7304,17632, 7312,9440, 7320,25824, 7336,21728, 7344,13536, 7352,29920, 7368,19680, 7376,11488, 7384,27872, 7400,23776, 7408,15584, 7416,31968, 7432,17120, 7440,8928, 7448,25312, 7464,21216, 7472,13024, 7480,29408, 7496,19168, 7504,10976, 7512,27360, 7528,23264, 7536,15072, 7544,31456, 7560,18144, 7568,9952, 7576,26336, 7592,22240, 7600,14048, 7608,30432, 7624,20192, 7632,12000, 7640,28384, 7648,7904, 7656,24288, 7664,16096, 7672,32480, 7688,16864, 7696,8672, 7704,25056, 7720,20960, 7728,12768, 7736,29152, 7752,18912, 7760,10720, 7768,27104, 7784,23008, 7792,14816, 7800,31200, 7816,17888, 7824,9696, 7832,26080, 7848,21984, 7856,13792, 7864,30176, 7880,19936, 7888,11744, 7896,28128, 7912,24032, 7920,15840, 7928,32224, 7944,17376, 7952,9184, 7960,25568, 7976,21472, 7984,13280, 7992,29664, 8008,19424, 8016,11232, 8024,27616, 8040,23520, 8048,15328, 8056,31712, 8072,18400, 8080,10208, 8088,26592, 8104,22496, 8112,14304, 8120,30688, 8136,20448, 8144,12256, 8152,28640, 8168,24544, 8176,16352, 8184,32736, 8200,16400, 8216,24592, 8232,20496, 8240,12304, 8248,28688, 8264,18448, 8272,10256, 8280,26640, 8296,22544, 8304,14352, 8312,30736, 8328,17424, 8336,9232, 8344,25616, 8360,21520, 8368,13328, 8376,29712, 8392,19472, 8400,11280, 8408,27664, 8424,23568, 8432,15376, 8440,31760, 8456,16912, 8464,8720, 8472,25104, 8488,21008, 8496,12816, 8504,29200, 8520,18960, 8528,10768, 8536,27152, 8552,23056, 8560,14864, 8568,31248, 8584,17936, 8592,9744, 8600,26128, 8616,22032, 8624,13840, 8632,30224, 8648,19984, 8656,11792, 8664,28176, 8680,24080, 8688,15888, 8696,32272, 8712,16656, 8728,24848, 8744,20752, 8752,12560, 8760,28944, 8776,18704, 8784,10512, 8792,26896, 8808,22800, 8816,14608, 8824,30992, 8840,17680, 8848,9488, 8856,25872, 8872,21776, 8880,13584, 8888,29968, 8904,19728, 8912,11536, 8920,27920, 8936,23824, 8944,15632, 8952,32016, 8968,17168, 8984,25360, 9000,21264, 9008,13072, 9016,29456, 9032,19216, 9040,11024, 9048,27408, 9064,23312, 9072,15120, 9080,31504, 9096,18192, 9104,10000, 9112,26384, 9128,22288, 9136,14096, 9144,30480, 9160,20240, 9168,12048, 9176,28432, 9192,24336, 9200,16144, 9208,32528, 9224,16528, 9240,24720, 9256,20624, 9264,12432, 9272,28816, 9288,18576, 9296,10384, 9304,26768, 9320,22672, 9328,14480, 9336,30864, 9352,17552, 9368,25744, 9384,21648, 9392,13456, 9400,29840, 9416,19600, 9424,11408, 9432,27792, 9448,23696, 9456,15504, 9464,31888, 9480,17040, 9496,25232, 9512,21136, 9520,12944, 9528,29328, 9544,19088, 9552,10896, 9560,27280, 9576,23184, 9584,14992, 9592,31376, 9608,18064, 9616,9872, 9624,26256, 9640,22160, 9648,13968, 9656,30352, 9672,20112, 9680,11920, 9688,28304, 9704,24208, 9712,16016, 9720,32400, 9736,16784, 9752,24976, 9768,20880, 9776,12688, 9784,29072, 9800,18832, 9808,10640, 9816,27024, 9832,22928, 9840,14736, 9848,31120, 9864,17808, 9880,26000, 9896,21904, 9904,13712, 9912,30096, 9928,19856, 9936,11664, 9944,28048, 9960,23952, 9968,15760, 9976,32144, 9992,17296, 10008,25488, 10024,21392, 10032,13200, 10040,29584, 10056,19344, 10064,11152, 10072,27536, 10088,23440, 10096,15248, 10104,31632, 10120,18320, 10136,26512, 10152,22416, 10160,14224, 10168,30608, 10184,20368, 10192,12176, 10200,28560, 10216,24464, 10224,16272, 10232,32656, 10248,16464, 10264,24656, 10280,20560, 10288,12368, 10296,28752, 10312,18512, 10328,26704, 10344,22608, 10352,14416, 10360,30800, 10376,17488, 10392,25680, 10408,21584, 10416,13392, 10424,29776, 10440,19536, 10448,11344, 10456,27728, 10472,23632, 10480,15440, 10488,31824, 10504,16976, 10520,25168, 10536,21072, 10544,12880, 10552,29264, 10568,19024, 10576,10832, 10584,27216, 10600,23120, 10608,14928, 10616,31312, 10632,18000, 10648,26192, 10664,22096, 10672,13904, 10680,30288, 10696,20048, 10704,11856, 10712,28240, 10728,24144, 10736,15952, 10744,32336, 10760,16720, 10776,24912, 10792,20816, 10800,12624, 10808,29008, 10824,18768, 10840,26960, 10856,22864, 10864,14672, 10872,31056, 10888,17744, 10904,25936, 10920,21840, 10928,13648, 10936,30032, 10952,19792, 10960,11600, 10968,27984, 10984,23888, 10992,15696, 11000,32080, 11016,17232, 11032,25424, 11048,21328, 11056,13136, 11064,29520, 11080,19280, 11096,27472, 11112,23376, 11120,15184, 11128,31568, 11144,18256, 11160,26448, 11176,22352, 11184,14160, 11192,30544, 11208,20304, 11216,12112, 11224,28496, 11240,24400, 11248,16208, 11256,32592, 11272,16592, 11288,24784, 11304,20688, 11312,12496, 11320,28880, 11336,18640, 11352,26832, 11368,22736, 11376,14544, 11384,30928, 11400,17616, 11416,25808, 11432,21712, 11440,13520, 11448,29904, 11464,19664, 11480,27856, 11496,23760, 11504,15568, 11512,31952, 11528,17104, 11544,25296, 11560,21200, 11568,13008, 11576,29392, 11592,19152, 11608,27344, 11624,23248, 11632,15056, 11640,31440, 11656,18128, 11672,26320, 11688,22224, 11696,14032, 11704,30416, 11720,20176, 11728,11984, 11736,28368, 11752,24272, 11760,16080, 11768,32464, 11784,16848, 11800,25040, 11816,20944, 11824,12752, 11832,29136, 11848,18896, 11864,27088, 11880,22992, 11888,14800, 11896,31184, 11912,17872, 11928,26064, 11944,21968, 11952,13776, 11960,30160, 11976,19920, 11992,28112, 12008,24016, 12016,15824, 12024,32208, 12040,17360, 12056,25552, 12072,21456, 12080,13264, 12088,29648, 12104,19408, 12120,27600, 12136,23504, 12144,15312, 12152,31696, 12168,18384, 12184,26576, 12200,22480, 12208,14288, 12216,30672, 12232,20432, 12248,28624, 12264,24528, 12272,16336, 12280,32720, 12296,16432, 12312,24624, 12328,20528, 12344,28720, 12360,18480, 12376,26672, 12392,22576, 12400,14384, 12408,30768, 12424,17456, 12440,25648, 12456,21552, 12464,13360, 12472,29744, 12488,19504, 12504,27696, 12520,23600, 12528,15408, 12536,31792, 12552,16944, 12568,25136, 12584,21040, 12592,12848, 12600,29232, 12616,18992, 12632,27184, 12648,23088, 12656,14896, 12664,31280, 12680,17968, 12696,26160, 12712,22064, 12720,13872, 12728,30256, 12744,20016, 12760,28208, 12776,24112, 12784,15920, 12792,32304, 12808,16688, 12824,24880, 12840,20784, 12856,28976, 12872,18736, 12888,26928, 12904,22832, 12912,14640, 12920,31024, 12936,17712, 12952,25904, 12968,21808, 12976,13616, 12984,30000, 13000,19760, 13016,27952, 13032,23856, 13040,15664, 13048,32048, 13064,17200, 13080,25392, 13096,21296, 13112,29488, 13128,19248, 13144,27440, 13160,23344, 13168,15152, 13176,31536, 13192,18224, 13208,26416, 13224,22320, 13232,14128, 13240,30512, 13256,20272, 13272,28464, 13288,24368, 13296,16176, 13304,32560, 13320,16560, 13336,24752, 13352,20656, 13368,28848, 13384,18608, 13400,26800, 13416,22704, 13424,14512, 13432,30896, 13448,17584, 13464,25776, 13480,21680, 13496,29872, 13512,19632, 13528,27824, 13544,23728, 13552,15536, 13560,31920, 13576,17072, 13592,25264, 13608,21168, 13624,29360, 13640,19120, 13656,27312, 13672,23216, 13680,15024, 13688,31408, 13704,18096, 13720,26288, 13736,22192, 13744,14000, 13752,30384, 13768,20144, 13784,28336, 13800,24240, 13808,16048, 13816,32432, 13832,16816, 13848,25008, 13864,20912, 13880,29104, 13896,18864, 13912,27056, 13928,22960, 13936,14768, 13944,31152, 13960,17840, 13976,26032, 13992,21936, 14008,30128, 14024,19888, 14040,28080, 14056,23984, 14064,15792, 14072,32176, 14088,17328, 14104,25520, 14120,21424, 14136,29616, 14152,19376, 14168,27568, 14184,23472, 14192,15280, 14200,31664, 14216,18352, 14232,26544, 14248,22448, 14264,30640, 14280,20400, 14296,28592, 14312,24496, 14320,16304, 14328,32688, 14344,16496, 14360,24688, 14376,20592, 14392,28784, 14408,18544, 14424,26736, 14440,22640, 14456,30832, 14472,17520, 14488,25712, 14504,21616, 14520,29808, 14536,19568, 14552,27760, 14568,23664, 14576,15472, 14584,31856, 14600,17008, 14616,25200, 14632,21104, 14648,29296, 14664,19056, 14680,27248, 14696,23152, 14704,14960, 14712,31344, 14728,18032, 14744,26224, 14760,22128, 14776,30320, 14792,20080, 14808,28272, 14824,24176, 14832,15984, 14840,32368, 14856,16752, 14872,24944, 14888,20848, 14904,29040, 14920,18800, 14936,26992, 14952,22896, 14968,31088, 14984,17776, 15000,25968, 15016,21872, 15032,30064, 15048,19824, 15064,28016, 15080,23920, 15088,15728, 15096,32112, 15112,17264, 15128,25456, 15144,21360, 15160,29552, 15176,19312, 15192,27504, 15208,23408, 15224,31600, 15240,18288, 15256,26480, 15272,22384, 15288,30576, 15304,20336, 15320,28528, 15336,24432, 15344,16240, 15352,32624, 15368,16624, 15384,24816, 15400,20720, 15416,28912, 15432,18672, 15448,26864, 15464,22768, 15480,30960, 15496,17648, 15512,25840, 15528,21744, 15544,29936, 15560,19696, 15576,27888, 15592,23792, 15608,31984, 15624,17136, 15640,25328, 15656,21232, 15672,29424, 15688,19184, 15704,27376, 15720,23280, 15736,31472, 15752,18160, 15768,26352, 15784,22256, 15800,30448, 15816,20208, 15832,28400, 15848,24304, 15856,16112, 15864,32496, 15880,16880, 15896,25072, 15912,20976, 15928,29168, 15944,18928, 15960,27120, 15976,23024, 15992,31216, 16008,17904, 16024,26096, 16040,22000, 16056,30192, 16072,19952, 16088,28144, 16104,24048, 16120,32240, 16136,17392, 16152,25584, 16168,21488, 16184,29680, 16200,19440, 16216,27632, 16232,23536, 16248,31728, 16264,18416, 16280,26608, 16296,22512, 16312,30704, 16328,20464, 16344,28656, 16360,24560, 16376,32752, 16408,24584, 16424,20488, 16440,28680, 16456,18440, 16472,26632, 16488,22536, 16504,30728, 16520,17416, 16536,25608, 16552,21512, 16568,29704, 16584,19464, 16600,27656, 16616,23560, 16632,31752, 16648,16904, 16664,25096, 16680,21000, 16696,29192, 16712,18952, 16728,27144, 16744,23048, 16760,31240, 16776,17928, 16792,26120, 16808,22024, 16824,30216, 16840,19976, 16856,28168, 16872,24072, 16888,32264, 16920,24840, 16936,20744, 16952,28936, 16968,18696, 16984,26888, 17000,22792, 17016,30984, 17032,17672, 17048,25864, 17064,21768, 17080,29960, 17096,19720, 17112,27912, 17128,23816, 17144,32008, 17176,25352, 17192,21256, 17208,29448, 17224,19208, 17240,27400, 17256,23304, 17272,31496, 17288,18184, 17304,26376, 17320,22280, 17336,30472, 17352,20232, 17368,28424, 17384,24328, 17400,32520, 17432,24712, 17448,20616, 17464,28808, 17480,18568, 17496,26760, 17512,22664, 17528,30856, 17560,25736, 17576,21640, 17592,29832, 17608,19592, 17624,27784, 17640,23688, 17656,31880, 17688,25224, 17704,21128, 17720,29320, 17736,19080, 17752,27272, 17768,23176, 17784,31368, 17800,18056, 17816,26248, 17832,22152, 17848,30344, 17864,20104, 17880,28296, 17896,24200, 17912,32392, 17944,24968, 17960,20872, 17976,29064, 17992,18824, 18008,27016, 18024,22920, 18040,31112, 18072,25992, 18088,21896, 18104,30088, 18120,19848, 18136,28040, 18152,23944, 18168,32136, 18200,25480, 18216,21384, 18232,29576, 18248,19336, 18264,27528, 18280,23432, 18296,31624, 18328,26504, 18344,22408, 18360,30600, 18376,20360, 18392,28552, 18408,24456, 18424,32648, 18456,24648, 18472,20552, 18488,28744, 18520,26696, 18536,22600, 18552,30792, 18584,25672, 18600,21576, 18616,29768, 18632,19528, 18648,27720, 18664,23624, 18680,31816, 18712,25160, 18728,21064, 18744,29256, 18760,19016, 18776,27208, 18792,23112, 18808,31304, 18840,26184, 18856,22088, 18872,30280, 18888,20040, 18904,28232, 18920,24136, 18936,32328, 18968,24904, 18984,20808, 19000,29000, 19032,26952, 19048,22856, 19064,31048, 19096,25928, 19112,21832, 19128,30024, 19144,19784, 19160,27976, 19176,23880, 19192,32072, 19224,25416, 19240,21320, 19256,29512, 19288,27464, 19304,23368, 19320,31560, 19352,26440, 19368,22344, 19384,30536, 19400,20296, 19416,28488, 19432,24392, 19448,32584, 19480,24776, 19496,20680, 19512,28872, 19544,26824, 19560,22728, 19576,30920, 19608,25800, 19624,21704, 19640,29896, 19672,27848, 19688,23752, 19704,31944, 19736,25288, 19752,21192, 19768,29384, 19800,27336, 19816,23240, 19832,31432, 19864,26312, 19880,22216, 19896,30408, 19912,20168, 19928,28360, 19944,24264, 19960,32456, 19992,25032, 20008,20936, 20024,29128, 20056,27080, 20072,22984, 20088,31176, 20120,26056, 20136,21960, 20152,30152, 20184,28104, 20200,24008, 20216,32200, 20248,25544, 20264,21448, 20280,29640, 20312,27592, 20328,23496, 20344,31688, 20376,26568, 20392,22472, 20408,30664, 20440,28616, 20456,24520, 20472,32712, 20504,24616, 20536,28712, 20568,26664, 20584,22568, 20600,30760, 20632,25640, 20648,21544, 20664,29736, 20696,27688, 20712,23592, 20728,31784, 20760,25128, 20776,21032, 20792,29224, 20824,27176, 20840,23080, 20856,31272, 20888,26152, 20904,22056, 20920,30248, 20952,28200, 20968,24104, 20984,32296, 21016,24872, 21048,28968, 21080,26920, 21096,22824, 21112,31016, 21144,25896, 21160,21800, 21176,29992, 21208,27944, 21224,23848, 21240,32040, 21272,25384, 21304,29480, 21336,27432, 21352,23336, 21368,31528, 21400,26408, 21416,22312, 21432,30504, 21464,28456, 21480,24360, 21496,32552, 21528,24744, 21560,28840, 21592,26792, 21608,22696, 21624,30888, 21656,25768, 21688,29864, 21720,27816, 21736,23720, 21752,31912, 21784,25256, 21816,29352, 21848,27304, 21864,23208, 21880,31400, 21912,26280, 21928,22184, 21944,30376, 21976,28328, 21992,24232, 22008,32424, 22040,25000, 22072,29096, 22104,27048, 22120,22952, 22136,31144, 22168,26024, 22200,30120, 22232,28072, 22248,23976, 22264,32168, 22296,25512, 22328,29608, 22360,27560, 22376,23464, 22392,31656, 22424,26536, 22456,30632, 22488,28584, 22504,24488, 22520,32680, 22552,24680, 22584,28776, 22616,26728, 22648,30824, 22680,25704, 22712,29800, 22744,27752, 22760,23656, 22776,31848, 22808,25192, 22840,29288, 22872,27240, 22888,23144, 22904,31336, 22936,26216, 22968,30312, 23000,28264, 23016,24168, 23032,32360, 23064,24936, 23096,29032, 23128,26984, 23160,31080, 23192,25960, 23224,30056, 23256,28008, 23272,23912, 23288,32104, 23320,25448, 23352,29544, 23384,27496, 23416,31592, 23448,26472, 23480,30568, 23512,28520, 23528,24424, 23544,32616, 23576,24808, 23608,28904, 23640,26856, 23672,30952, 23704,25832, 23736,29928, 23768,27880, 23800,31976, 23832,25320, 23864,29416, 23896,27368, 23928,31464, 23960,26344, 23992,30440, 24024,28392, 24040,24296, 24056,32488, 24088,25064, 24120,29160, 24152,27112, 24184,31208, 24216,26088, 24248,30184, 24280,28136, 24312,32232, 24344,25576, 24376,29672, 24408,27624, 24440,31720, 24472,26600, 24504,30696, 24536,28648, 24568,32744, 24632,28696, 24664,26648, 24696,30744, 24728,25624, 24760,29720, 24792,27672, 24824,31768, 24856,25112, 24888,29208, 24920,27160, 24952,31256, 24984,26136, 25016,30232, 25048,28184, 25080,32280, 25144,28952, 25176,26904, 25208,31000, 25240,25880, 25272,29976, 25304,27928, 25336,32024, 25400,29464, 25432,27416, 25464,31512, 25496,26392, 25528,30488, 25560,28440, 25592,32536, 25656,28824, 25688,26776, 25720,30872, 25784,29848, 25816,27800, 25848,31896, 25912,29336, 25944,27288, 25976,31384, 26008,26264, 26040,30360, 26072,28312, 26104,32408, 26168,29080, 26200,27032, 26232,31128, 26296,30104, 26328,28056, 26360,32152, 26424,29592, 26456,27544, 26488,31640, 26552,30616, 26584,28568, 26616,32664, 26680,28760, 26744,30808, 26808,29784, 26840,27736, 26872,31832, 26936,29272, 26968,27224, 27000,31320, 27064,30296, 27096,28248, 27128,32344, 27192,29016, 27256,31064, 27320,30040, 27352,27992, 27384,32088, 27448,29528, 27512,31576, 27576,30552, 27608,28504, 27640,32600, 27704,28888, 27768,30936, 27832,29912, 27896,31960, 27960,29400, 28024,31448, 28088,30424, 28120,28376, 28152,32472, 28216,29144, 28280,31192, 28344,30168, 28408,32216, 28472,29656, 28536,31704, 28600,30680, 28664,32728, 28792,30776, 28856,29752, 28920,31800, 28984,29240, 29048,31288, 29112,30264, 29176,32312, 29304,31032, 29368,30008, 29432,32056, 29560,31544, 29624,30520, 29688,32568, 29816,30904, 29944,31928, 30072,31416, 30136,30392, 30200,32440, 30328,31160, 30456,32184, 30584,31672, 30712,32696, 30968,31864, 31096,31352, 31224,32376, 31480,32120, 31736,32632, 32248,32504 }; const uint16_t armBitRevIndexTable16[ARMBITREVINDEXTABLE_16_TABLE_LENGTH] ARM_DSP_TABLE_ATTRIBUTE = { /* 8x2, size 20 */ 8,64, 24,72, 16,64, 40,80, 32,64, 56,88, 48,72, 88,104, 72,96, 104,112 }; const uint16_t armBitRevIndexTable32[ARMBITREVINDEXTABLE_32_TABLE_LENGTH] ARM_DSP_TABLE_ATTRIBUTE = { /* 8x4, size 48 */ 8,64, 16,128, 24,192, 32,64, 40,72, 48,136, 56,200, 64,128, 72,80, 88,208, 80,144, 96,192, 104,208, 112,152, 120,216, 136,192, 144,160, 168,208, 152,224, 176,208, 184,232, 216,240, 200,224, 232,240 }; const uint16_t armBitRevIndexTable64[ARMBITREVINDEXTABLE_64_TABLE_LENGTH] ARM_DSP_TABLE_ATTRIBUTE = { /* radix 8, size 56 */ 8,64, 16,128, 24,192, 32,256, 40,320, 48,384, 56,448, 80,136, 88,200, 96,264, 104,328, 112,392, 120,456, 152,208, 160,272, 168,336, 176,400, 184,464, 224,280, 232,344, 240,408, 248,472, 296,352, 304,416, 312,480, 368,424, 376,488, 440,496 }; const uint16_t armBitRevIndexTable128[ARMBITREVINDEXTABLE_128_TABLE_LENGTH] ARM_DSP_TABLE_ATTRIBUTE = { /* 8x2, size 208 */ 8,512, 16,64, 24,576, 32,128, 40,640, 48,192, 56,704, 64,256, 72,768, 80,320, 88,832, 96,384, 104,896, 112,448, 120,960, 128,512, 136,520, 144,768, 152,584, 160,520, 168,648, 176,200, 184,712, 192,264, 200,776, 208,328, 216,840, 224,392, 232,904, 240,456, 248,968, 264,528, 272,320, 280,592, 288,768, 296,656, 304,328, 312,720, 328,784, 344,848, 352,400, 360,912, 368,464, 376,976, 384,576, 392,536, 400,832, 408,600, 416,584, 424,664, 432,840, 440,728, 448,592, 456,792, 464,848, 472,856, 480,600, 488,920, 496,856, 504,984, 520,544, 528,576, 536,608, 552,672, 560,608, 568,736, 576,768, 584,800, 592,832, 600,864, 608,800, 616,928, 624,864, 632,992, 648,672, 656,896, 664,928, 688,904, 696,744, 704,896, 712,808, 720,912, 728,872, 736,928, 744,936, 752,920, 760,1000, 776,800, 784,832, 792,864, 808,904, 816,864, 824,920, 840,864, 856,880, 872,944, 888,1008, 904,928, 912,960, 920,992, 944,968, 952,1000, 968,992, 984,1008 }; const uint16_t armBitRevIndexTable256[ARMBITREVINDEXTABLE_256_TABLE_LENGTH] ARM_DSP_TABLE_ATTRIBUTE = { /* 8x4, size 440 */ 8,512, 16,1024, 24,1536, 32,64, 40,576, 48,1088, 56,1600, 64,128, 72,640, 80,1152, 88,1664, 96,192, 104,704, 112,1216, 120,1728, 128,256, 136,768, 144,1280, 152,1792, 160,320, 168,832, 176,1344, 184,1856, 192,384, 200,896, 208,1408, 216,1920, 224,448, 232,960, 240,1472, 248,1984, 256,512, 264,520, 272,1032, 280,1544, 288,640, 296,584, 304,1096, 312,1608, 320,768, 328,648, 336,1160, 344,1672, 352,896, 360,712, 368,1224, 376,1736, 384,520, 392,776, 400,1288, 408,1800, 416,648, 424,840, 432,1352, 440,1864, 448,776, 456,904, 464,1416, 472,1928, 480,904, 488,968, 496,1480, 504,1992, 520,528, 512,1024, 528,1040, 536,1552, 544,1152, 552,592, 560,1104, 568,1616, 576,1280, 584,656, 592,1168, 600,1680, 608,1408, 616,720, 624,1232, 632,1744, 640,1032, 648,784, 656,1296, 664,1808, 672,1160, 680,848, 688,1360, 696,1872, 704,1288, 712,912, 720,1424, 728,1936, 736,1416, 744,976, 752,1488, 760,2000, 768,1536, 776,1552, 784,1048, 792,1560, 800,1664, 808,1680, 816,1112, 824,1624, 832,1792, 840,1808, 848,1176, 856,1688, 864,1920, 872,1936, 880,1240, 888,1752, 896,1544, 904,1560, 912,1304, 920,1816, 928,1672, 936,1688, 944,1368, 952,1880, 960,1800, 968,1816, 976,1432, 984,1944, 992,1928, 1000,1944, 1008,1496, 1016,2008, 1032,1152, 1040,1056, 1048,1568, 1064,1408, 1072,1120, 1080,1632, 1088,1536, 1096,1160, 1104,1184, 1112,1696, 1120,1552, 1128,1416, 1136,1248, 1144,1760, 1160,1664, 1168,1312, 1176,1824, 1184,1544, 1192,1920, 1200,1376, 1208,1888, 1216,1568, 1224,1672, 1232,1440, 1240,1952, 1248,1560, 1256,1928, 1264,1504, 1272,2016, 1288,1312, 1296,1408, 1304,1576, 1320,1424, 1328,1416, 1336,1640, 1344,1792, 1352,1824, 1360,1920, 1368,1704, 1376,1800, 1384,1432, 1392,1928, 1400,1768, 1416,1680, 1432,1832, 1440,1576, 1448,1936, 1456,1832, 1464,1896, 1472,1808, 1480,1688, 1488,1936, 1496,1960, 1504,1816, 1512,1944, 1520,1944, 1528,2024, 1560,1584, 1592,1648, 1600,1792, 1608,1920, 1616,1800, 1624,1712, 1632,1808, 1640,1936, 1648,1816, 1656,1776, 1672,1696, 1688,1840, 1704,1952, 1712,1928, 1720,1904, 1728,1824, 1736,1952, 1744,1832, 1752,1968, 1760,1840, 1768,1960, 1776,1944, 1784,2032, 1864,1872, 1848,1944, 1872,1888, 1880,1904, 1888,1984, 1896,2000, 1912,2032, 1904,2016, 1976,2032, 1960,1968, 2008,2032, 1992,2016, 2024,2032 }; const uint16_t armBitRevIndexTable512[ARMBITREVINDEXTABLE_512_TABLE_LENGTH] ARM_DSP_TABLE_ATTRIBUTE = { /* radix 8, size 448 */ 8,512, 16,1024, 24,1536, 32,2048, 40,2560, 48,3072, 56,3584, 72,576, 80,1088, 88,1600, 96,2112, 104,2624, 112,3136, 120,3648, 136,640, 144,1152, 152,1664, 160,2176, 168,2688, 176,3200, 184,3712, 200,704, 208,1216, 216,1728, 224,2240, 232,2752, 240,3264, 248,3776, 264,768, 272,1280, 280,1792, 288,2304, 296,2816, 304,3328, 312,3840, 328,832, 336,1344, 344,1856, 352,2368, 360,2880, 368,3392, 376,3904, 392,896, 400,1408, 408,1920, 416,2432, 424,2944, 432,3456, 440,3968, 456,960, 464,1472, 472,1984, 480,2496, 488,3008, 496,3520, 504,4032, 528,1032, 536,1544, 544,2056, 552,2568, 560,3080, 568,3592, 592,1096, 600,1608, 608,2120, 616,2632, 624,3144, 632,3656, 656,1160, 664,1672, 672,2184, 680,2696, 688,3208, 696,3720, 720,1224, 728,1736, 736,2248, 744,2760, 752,3272, 760,3784, 784,1288, 792,1800, 800,2312, 808,2824, 816,3336, 824,3848, 848,1352, 856,1864, 864,2376, 872,2888, 880,3400, 888,3912, 912,1416, 920,1928, 928,2440, 936,2952, 944,3464, 952,3976, 976,1480, 984,1992, 992,2504, 1000,3016, 1008,3528, 1016,4040, 1048,1552, 1056,2064, 1064,2576, 1072,3088, 1080,3600, 1112,1616, 1120,2128, 1128,2640, 1136,3152, 1144,3664, 1176,1680, 1184,2192, 1192,2704, 1200,3216, 1208,3728, 1240,1744, 1248,2256, 1256,2768, 1264,3280, 1272,3792, 1304,1808, 1312,2320, 1320,2832, 1328,3344, 1336,3856, 1368,1872, 1376,2384, 1384,2896, 1392,3408, 1400,3920, 1432,1936, 1440,2448, 1448,2960, 1456,3472, 1464,3984, 1496,2000, 1504,2512, 1512,3024, 1520,3536, 1528,4048, 1568,2072, 1576,2584, 1584,3096, 1592,3608, 1632,2136, 1640,2648, 1648,3160, 1656,3672, 1696,2200, 1704,2712, 1712,3224, 1720,3736, 1760,2264, 1768,2776, 1776,3288, 1784,3800, 1824,2328, 1832,2840, 1840,3352, 1848,3864, 1888,2392, 1896,2904, 1904,3416, 1912,3928, 1952,2456, 1960,2968, 1968,3480, 1976,3992, 2016,2520, 2024,3032, 2032,3544, 2040,4056, 2088,2592, 2096,3104, 2104,3616, 2152,2656, 2160,3168, 2168,3680, 2216,2720, 2224,3232, 2232,3744, 2280,2784, 2288,3296, 2296,3808, 2344,2848, 2352,3360, 2360,3872, 2408,2912, 2416,3424, 2424,3936, 2472,2976, 2480,3488, 2488,4000, 2536,3040, 2544,3552, 2552,4064, 2608,3112, 2616,3624, 2672,3176, 2680,3688, 2736,3240, 2744,3752, 2800,3304, 2808,3816, 2864,3368, 2872,3880, 2928,3432, 2936,3944, 2992,3496, 3000,4008, 3056,3560, 3064,4072, 3128,3632, 3192,3696, 3256,3760, 3320,3824, 3384,3888, 3448,3952, 3512,4016, 3576,4080 }; const uint16_t armBitRevIndexTable1024[ARMBITREVINDEXTABLE_1024_TABLE_LENGTH] ARM_DSP_TABLE_ATTRIBUTE = { /* 8x2, size 1800 */ 8,4096, 16,512, 24,4608, 32,1024, 40,5120, 48,1536, 56,5632, 64,2048, 72,6144, 80,2560, 88,6656, 96,3072, 104,7168, 112,3584, 120,7680, 128,2048, 136,4160, 144,576, 152,4672, 160,1088, 168,5184, 176,1600, 184,5696, 192,2112, 200,6208, 208,2624, 216,6720, 224,3136, 232,7232, 240,3648, 248,7744, 256,2048, 264,4224, 272,640, 280,4736, 288,1152, 296,5248, 304,1664, 312,5760, 320,2176, 328,6272, 336,2688, 344,6784, 352,3200, 360,7296, 368,3712, 376,7808, 384,2112, 392,4288, 400,704, 408,4800, 416,1216, 424,5312, 432,1728, 440,5824, 448,2240, 456,6336, 464,2752, 472,6848, 480,3264, 488,7360, 496,3776, 504,7872, 512,2048, 520,4352, 528,768, 536,4864, 544,1280, 552,5376, 560,1792, 568,5888, 576,2304, 584,6400, 592,2816, 600,6912, 608,3328, 616,7424, 624,3840, 632,7936, 640,2176, 648,4416, 656,832, 664,4928, 672,1344, 680,5440, 688,1856, 696,5952, 704,2368, 712,6464, 720,2880, 728,6976, 736,3392, 744,7488, 752,3904, 760,8000, 768,2112, 776,4480, 784,896, 792,4992, 800,1408, 808,5504, 816,1920, 824,6016, 832,2432, 840,6528, 848,2944, 856,7040, 864,3456, 872,7552, 880,3968, 888,8064, 896,2240, 904,4544, 912,960, 920,5056, 928,1472, 936,5568, 944,1984, 952,6080, 960,2496, 968,6592, 976,3008, 984,7104, 992,3520, 1000,7616, 1008,4032, 1016,8128, 1024,4096, 1032,4104, 1040,4352, 1048,4616, 1056,4104, 1064,5128, 1072,1544, 1080,5640, 1088,2056, 1096,6152, 1104,2568, 1112,6664, 1120,3080, 1128,7176, 1136,3592, 1144,7688, 1152,6144, 1160,4168, 1168,6400, 1176,4680, 1184,6152, 1192,5192, 1200,1608, 1208,5704, 1216,2120, 1224,6216, 1232,2632, 1240,6728, 1248,3144, 1256,7240, 1264,3656, 1272,7752, 1280,4160, 1288,4232, 1296,4416, 1304,4744, 1312,4168, 1320,5256, 1328,1672, 1336,5768, 1344,2184, 1352,6280, 1360,2696, 1368,6792, 1376,3208, 1384,7304, 1392,3720, 1400,7816, 1408,6208, 1416,4296, 1424,6464, 1432,4808, 1440,6216, 1448,5320, 1456,1736, 1464,5832, 1472,2248, 1480,6344, 1488,2760, 1496,6856, 1504,3272, 1512,7368, 1520,3784, 1528,7880, 1536,4224, 1544,4360, 1552,4480, 1560,4872, 1568,4232, 1576,5384, 1584,1800, 1592,5896, 1600,2312, 1608,6408, 1616,2824, 1624,6920, 1632,3336, 1640,7432, 1648,3848, 1656,7944, 1664,6272, 1672,4424, 1680,6528, 1688,4936, 1696,6280, 1704,5448, 1712,1864, 1720,5960, 1728,2376, 1736,6472, 1744,2888, 1752,6984, 1760,3400, 1768,7496, 1776,3912, 1784,8008, 1792,4288, 1800,4488, 1808,4544, 1816,5000, 1824,4296, 1832,5512, 1840,1928, 1848,6024, 1856,2440, 1864,6536, 1872,2952, 1880,7048, 1888,3464, 1896,7560, 1904,3976, 1912,8072, 1920,6336, 1928,4552, 1936,6592, 1944,5064, 1952,6344, 1960,5576, 1968,1992, 1976,6088, 1984,2504, 1992,6600, 2000,3016, 2008,7112, 2016,3528, 2024,7624, 2032,4040, 2040,8136, 2056,4112, 2064,2112, 2072,4624, 2080,4352, 2088,5136, 2096,4480, 2104,5648, 2120,6160, 2128,2576, 2136,6672, 2144,3088, 2152,7184, 2160,3600, 2168,7696, 2176,2560, 2184,4176, 2192,2816, 2200,4688, 2208,2568, 2216,5200, 2224,2824, 2232,5712, 2240,2576, 2248,6224, 2256,2640, 2264,6736, 2272,3152, 2280,7248, 2288,3664, 2296,7760, 2312,4240, 2320,2432, 2328,4752, 2336,6400, 2344,5264, 2352,6528, 2360,5776, 2368,2816, 2376,6288, 2384,2704, 2392,6800, 2400,3216, 2408,7312, 2416,3728, 2424,7824, 2432,2624, 2440,4304, 2448,2880, 2456,4816, 2464,2632, 2472,5328, 2480,2888, 2488,5840, 2496,2640, 2504,6352, 2512,2768, 2520,6864, 2528,3280, 2536,7376, 2544,3792, 2552,7888, 2568,4368, 2584,4880, 2592,4416, 2600,5392, 2608,4544, 2616,5904, 2632,6416, 2640,2832, 2648,6928, 2656,3344, 2664,7440, 2672,3856, 2680,7952, 2696,4432, 2704,2944, 2712,4944, 2720,4432, 2728,5456, 2736,2952, 2744,5968, 2752,2944, 2760,6480, 2768,2896, 2776,6992, 2784,3408, 2792,7504, 2800,3920, 2808,8016, 2824,4496, 2840,5008, 2848,6464, 2856,5520, 2864,6592, 2872,6032, 2888,6544, 2896,2960, 2904,7056, 2912,3472, 2920,7568, 2928,3984, 2936,8080, 2952,4560, 2960,3008, 2968,5072, 2976,6480, 2984,5584, 2992,3016, 3000,6096, 3016,6608, 3032,7120, 3040,3536, 3048,7632, 3056,4048, 3064,8144, 3072,4608, 3080,4120, 3088,4864, 3096,4632, 3104,4616, 3112,5144, 3120,4872, 3128,5656, 3136,4624, 3144,6168, 3152,4880, 3160,6680, 3168,4632, 3176,7192, 3184,3608, 3192,7704, 3200,6656, 3208,4184, 3216,6912, 3224,4696, 3232,6664, 3240,5208, 3248,6920, 3256,5720, 3264,6672, 3272,6232, 3280,6928, 3288,6744, 3296,6680, 3304,7256, 3312,3672, 3320,7768, 3328,4672, 3336,4248, 3344,4928, 3352,4760, 3360,4680, 3368,5272, 3376,4936, 3384,5784, 3392,4688, 3400,6296, 3408,4944, 3416,6808, 3424,4696, 3432,7320, 3440,3736, 3448,7832, 3456,6720, 3464,4312, 3472,6976, 3480,4824, 3488,6728, 3496,5336, 3504,6984, 3512,5848, 3520,6736, 3528,6360, 3536,6992, 3544,6872, 3552,6744, 3560,7384, 3568,3800, 3576,7896, 3584,4736, 3592,4376, 3600,4992, 3608,4888, 3616,4744, 3624,5400, 3632,5000, 3640,5912, 3648,4752, 3656,6424, 3664,5008, 3672,6936, 3680,4760, 3688,7448, 3696,3864, 3704,7960, 3712,6784, 3720,4440, 3728,7040, 3736,4952, 3744,6792, 3752,5464, 3760,7048, 3768,5976, 3776,6800, 3784,6488, 3792,7056, 3800,7000, 3808,6808, 3816,7512, 3824,3928, 3832,8024, 3840,4800, 3848,4504, 3856,5056, 3864,5016, 3872,4808, 3880,5528, 3888,5064, 3896,6040, 3904,4816, 3912,6552, 3920,5072, 3928,7064, 3936,4824, 3944,7576, 3952,3992, 3960,8088, 3968,6848, 3976,4568, 3984,7104, 3992,5080, 4000,6856, 4008,5592, 4016,7112, 4024,6104, 4032,6864, 4040,6616, 4048,7120, 4056,7128, 4064,6872, 4072,7640, 4080,7128, 4088,8152, 4104,4128, 4112,4160, 4120,4640, 4136,5152, 4144,4232, 4152,5664, 4160,4352, 4168,6176, 4176,4416, 4184,6688, 4192,4616, 4200,7200, 4208,4744, 4216,7712, 4224,4608, 4232,4616, 4240,4672, 4248,4704, 4256,4640, 4264,5216, 4272,4704, 4280,5728, 4288,4864, 4296,6240, 4304,4928, 4312,6752, 4320,4632, 4328,7264, 4336,4760, 4344,7776, 4360,4640, 4368,4416, 4376,4768, 4384,6152, 4392,5280, 4400,6280, 4408,5792, 4424,6304, 4440,6816, 4448,6664, 4456,7328, 4464,6792, 4472,7840, 4480,4624, 4488,4632, 4496,4688, 4504,4832, 4512,6168, 4520,5344, 4528,6296, 4536,5856, 4544,4880, 4552,6368, 4560,4944, 4568,6880, 4576,6680, 4584,7392, 4592,6808, 4600,7904, 4608,6144, 4616,6152, 4624,6208, 4632,4896, 4640,6176, 4648,5408, 4656,6240, 4664,5920, 4672,6400, 4680,6432, 4688,6464, 4696,6944, 4704,6432, 4712,7456, 4720,4808, 4728,7968, 4736,6656, 4744,6664, 4752,6720, 4760,4960, 4768,6688, 4776,5472, 4784,6752, 4792,5984, 4800,6912, 4808,6496, 4816,6976, 4824,7008, 4832,6944, 4840,7520, 4848,7008, 4856,8032, 4864,6160, 4872,6168, 4880,6224, 4888,5024, 4896,6216, 4904,5536, 4912,6344, 4920,6048, 4928,6416, 4936,6560, 4944,6480, 4952,7072, 4960,6728, 4968,7584, 4976,6856, 4984,8096, 4992,6672, 5000,6680, 5008,6736, 5016,5088, 5024,6232, 5032,5600, 5040,6360, 5048,6112, 5056,6928, 5064,6624, 5072,6992, 5080,7136, 5088,6744, 5096,7648, 5104,6872, 5112,8160, 5128,5152, 5136,5376, 5144,5408, 5168,5384, 5176,5672, 5184,5376, 5192,6184, 5200,5392, 5208,6696, 5216,5408, 5224,7208, 5232,5400, 5240,7720, 5248,7168, 5256,7200, 5264,7424, 5272,7456, 5280,7176, 5288,7208, 5296,7432, 5304,5736, 5312,7184, 5320,6248, 5328,7440, 5336,6760, 5344,7192, 5352,7272, 5360,7448, 5368,7784, 5384,5408, 5392,5440, 5400,5472, 5408,6184, 5416,7208, 5424,5448, 5432,5800, 5448,6312, 5464,6824, 5472,6696, 5480,7336, 5488,6824, 5496,7848, 5504,7232, 5512,7264, 5520,7488, 5528,7520, 5536,7240, 5544,7272, 5552,7496, 5560,5864, 5568,7248, 5576,6376, 5584,7504, 5592,6888, 5600,7256, 5608,7400, 5616,7512, 5624,7912, 5632,7168, 5640,7176, 5648,7232, 5656,7240, 5664,7200, 5672,7208, 5680,7264, 5688,5928, 5696,7424, 5704,6440, 5712,7488, 5720,6952, 5728,7456, 5736,7464, 5744,7520, 5752,7976, 5760,7296, 5768,7328, 5776,7552, 5784,7584, 5792,7304, 5800,7336, 5808,7560, 5816,5992, 5824,7312, 5832,6504, 5840,7568, 5848,7016, 5856,7320, 5864,7528, 5872,7576, 5880,8040, 5888,7184, 5896,7192, 5904,7248, 5912,7256, 5920,6248, 5928,7272, 5936,6376, 5944,6056, 5952,7440, 5960,6568, 5968,7504, 5976,7080, 5984,6760, 5992,7592, 6000,6888, 6008,8104, 6016,7360, 6024,7392, 6032,7616, 6040,7648, 6048,7368, 6056,7400, 6064,7624, 6072,6120, 6080,7376, 6088,6632, 6096,7632, 6104,7144, 6112,7384, 6120,7656, 6128,7640, 6136,8168, 6168,6240, 6192,6216, 6200,7264, 6232,6704, 6248,7216, 6256,6680, 6264,7728, 6272,6656, 6280,6664, 6288,6912, 6296,6496, 6304,6688, 6312,6696, 6320,6944, 6328,7520, 6336,6672, 6344,6680, 6352,6928, 6360,6768, 6368,6704, 6376,7280, 6384,6744, 6392,7792, 6408,6432, 6424,6752, 6440,7432, 6448,6536, 6456,7560, 6472,6944, 6488,6832, 6496,6920, 6504,7344, 6512,7048, 6520,7856, 6528,6720, 6536,6728, 6544,6976, 6552,7008, 6560,6752, 6568,7448, 6576,7008, 6584,7576, 6592,6736, 6600,6744, 6608,6992, 6616,6896, 6624,6936, 6632,7408, 6640,7064, 6648,7920, 6712,7280, 6744,6960, 6760,7472, 6768,6936, 6776,7984, 6800,6848, 6808,6856, 6832,6880, 6840,6888, 6848,7040, 6856,7048, 6864,7104, 6872,7024, 6880,7072, 6888,7536, 6896,7136, 6904,8048, 6952,7496, 6968,7624, 6984,7008, 7000,7088, 7016,7600, 7024,7112, 7032,8112, 7056,7104, 7064,7112, 7080,7512, 7088,7136, 7096,7640, 7128,7152, 7144,7664, 7160,8176, 7176,7200, 7192,7216, 7224,7272, 7240,7264, 7256,7280, 7288,7736, 7296,7680, 7304,7712, 7312,7936, 7320,7968, 7328,7688, 7336,7720, 7344,7944, 7352,7976, 7360,7696, 7368,7728, 7376,7952, 7384,7984, 7392,7704, 7400,7736, 7408,7960, 7416,7800, 7432,7456, 7448,7472, 7480,7592, 7496,7520, 7512,7536, 7528,7976, 7544,7864, 7552,7744, 7560,7776, 7568,8000, 7576,8032, 7584,7752, 7592,7784, 7600,8008, 7608,8040, 7616,7760, 7624,7792, 7632,8016, 7640,8048, 7648,7768, 7656,7800, 7664,8024, 7672,7928, 7688,7712, 7704,7728, 7752,7776, 7768,7792, 7800,7992, 7816,7840, 7824,8064, 7832,8096, 7856,8072, 7864,8104, 7872,8064, 7880,8072, 7888,8080, 7896,8112, 7904,8096, 7912,8104, 7920,8088, 7928,8056, 7944,7968, 7960,7984, 8008,8032, 8024,8048, 8056,8120, 8072,8096, 8080,8128, 8088,8160, 8112,8136, 8120,8168, 8136,8160, 8152,8176 }; const uint16_t armBitRevIndexTable2048[ARMBITREVINDEXTABLE_2048_TABLE_LENGTH] ARM_DSP_TABLE_ATTRIBUTE = { /* 8x2, size 3808 */ 8,4096, 16,8192, 24,12288, 32,512, 40,4608, 48,8704, 56,12800, 64,1024, 72,5120, 80,9216, 88,13312, 96,1536, 104,5632, 112,9728, 120,13824, 128,2048, 136,6144, 144,10240, 152,14336, 160,2560, 168,6656, 176,10752, 184,14848, 192,3072, 200,7168, 208,11264, 216,15360, 224,3584, 232,7680, 240,11776, 248,15872, 256,1024, 264,4160, 272,8256, 280,12352, 288,576, 296,4672, 304,8768, 312,12864, 320,1088, 328,5184, 336,9280, 344,13376, 352,1600, 360,5696, 368,9792, 376,13888, 384,2112, 392,6208, 400,10304, 408,14400, 416,2624, 424,6720, 432,10816, 440,14912, 448,3136, 456,7232, 464,11328, 472,15424, 480,3648, 488,7744, 496,11840, 504,15936, 512,2048, 520,4224, 528,8320, 536,12416, 544,640, 552,4736, 560,8832, 568,12928, 576,1152, 584,5248, 592,9344, 600,13440, 608,1664, 616,5760, 624,9856, 632,13952, 640,2176, 648,6272, 656,10368, 664,14464, 672,2688, 680,6784, 688,10880, 696,14976, 704,3200, 712,7296, 720,11392, 728,15488, 736,3712, 744,7808, 752,11904, 760,16000, 768,3072, 776,4288, 784,8384, 792,12480, 800,3200, 808,4800, 816,8896, 824,12992, 832,1216, 840,5312, 848,9408, 856,13504, 864,1728, 872,5824, 880,9920, 888,14016, 896,2240, 904,6336, 912,10432, 920,14528, 928,2752, 936,6848, 944,10944, 952,15040, 960,3264, 968,7360, 976,11456, 984,15552, 992,3776, 1000,7872, 1008,11968, 1016,16064, 1032,4352, 1040,8448, 1048,12544, 1056,3072, 1064,4864, 1072,8960, 1080,13056, 1088,1280, 1096,5376, 1104,9472, 1112,13568, 1120,1792, 1128,5888, 1136,9984, 1144,14080, 1152,2304, 1160,6400, 1168,10496, 1176,14592, 1184,2816, 1192,6912, 1200,11008, 1208,15104, 1216,3328, 1224,7424, 1232,11520, 1240,15616, 1248,3840, 1256,7936, 1264,12032, 1272,16128, 1288,4416, 1296,8512, 1304,12608, 1312,3328, 1320,4928, 1328,9024, 1336,13120, 1352,5440, 1360,9536, 1368,13632, 1376,1856, 1384,5952, 1392,10048, 1400,14144, 1408,2368, 1416,6464, 1424,10560, 1432,14656, 1440,2880, 1448,6976, 1456,11072, 1464,15168, 1472,3392, 1480,7488, 1488,11584, 1496,15680, 1504,3904, 1512,8000, 1520,12096, 1528,16192, 1536,2112, 1544,4480, 1552,8576, 1560,12672, 1568,2240, 1576,4992, 1584,9088, 1592,13184, 1600,2368, 1608,5504, 1616,9600, 1624,13696, 1632,1920, 1640,6016, 1648,10112, 1656,14208, 1664,2432, 1672,6528, 1680,10624, 1688,14720, 1696,2944, 1704,7040, 1712,11136, 1720,15232, 1728,3456, 1736,7552, 1744,11648, 1752,15744, 1760,3968, 1768,8064, 1776,12160, 1784,16256, 1792,3136, 1800,4544, 1808,8640, 1816,12736, 1824,3264, 1832,5056, 1840,9152, 1848,13248, 1856,3392, 1864,5568, 1872,9664, 1880,13760, 1888,1984, 1896,6080, 1904,10176, 1912,14272, 1920,2496, 1928,6592, 1936,10688, 1944,14784, 1952,3008, 1960,7104, 1968,11200, 1976,15296, 1984,3520, 1992,7616, 2000,11712, 2008,15808, 2016,4032, 2024,8128, 2032,12224, 2040,16320, 2048,4096, 2056,4104, 2064,8200, 2072,12296, 2080,4224, 2088,4616, 2096,8712, 2104,12808, 2112,4352, 2120,5128, 2128,9224, 2136,13320, 2144,4480, 2152,5640, 2160,9736, 2168,13832, 2176,4104, 2184,6152, 2192,10248, 2200,14344, 2208,2568, 2216,6664, 2224,10760, 2232,14856, 2240,3080, 2248,7176, 2256,11272, 2264,15368, 2272,3592, 2280,7688, 2288,11784, 2296,15880, 2304,5120, 2312,4168, 2320,8264, 2328,12360, 2336,5248, 2344,4680, 2352,8776, 2360,12872, 2368,5376, 2376,5192, 2384,9288, 2392,13384, 2400,5504, 2408,5704, 2416,9800, 2424,13896, 2432,5128, 2440,6216, 2448,10312, 2456,14408, 2464,2632, 2472,6728, 2480,10824, 2488,14920, 2496,3144, 2504,7240, 2512,11336, 2520,15432, 2528,3656, 2536,7752, 2544,11848, 2552,15944, 2560,6144, 2568,4232, 2576,8328, 2584,12424, 2592,6272, 2600,4744, 2608,8840, 2616,12936, 2624,6400, 2632,5256, 2640,9352, 2648,13448, 2656,6528, 2664,5768, 2672,9864, 2680,13960, 2688,6152, 2696,6280, 2704,10376, 2712,14472, 2720,6280, 2728,6792, 2736,10888, 2744,14984, 2752,3208, 2760,7304, 2768,11400, 2776,15496, 2784,3720, 2792,7816, 2800,11912, 2808,16008, 2816,7168, 2824,4296, 2832,8392, 2840,12488, 2848,7296, 2856,4808, 2864,8904, 2872,13000, 2880,7424, 2888,5320, 2896,9416, 2904,13512, 2912,7552, 2920,5832, 2928,9928, 2936,14024, 2944,7176, 2952,6344, 2960,10440, 2968,14536, 2976,7304, 2984,6856, 2992,10952, 3000,15048, 3008,3272, 3016,7368, 3024,11464, 3032,15560, 3040,3784, 3048,7880, 3056,11976, 3064,16072, 3072,4160, 3080,4360, 3088,8456, 3096,12552, 3104,4288, 3112,4872, 3120,8968, 3128,13064, 3136,4416, 3144,5384, 3152,9480, 3160,13576, 3168,4544, 3176,5896, 3184,9992, 3192,14088, 3200,4168, 3208,6408, 3216,10504, 3224,14600, 3232,4296, 3240,6920, 3248,11016, 3256,15112, 3264,3336, 3272,7432, 3280,11528, 3288,15624, 3296,3848, 3304,7944, 3312,12040, 3320,16136, 3328,5184, 3336,4424, 3344,8520, 3352,12616, 3360,5312, 3368,4936, 3376,9032, 3384,13128, 3392,5440, 3400,5448, 3408,9544, 3416,13640, 3424,5568, 3432,5960, 3440,10056, 3448,14152, 3456,5192, 3464,6472, 3472,10568, 3480,14664, 3488,5320, 3496,6984, 3504,11080, 3512,15176, 3520,5448, 3528,7496, 3536,11592, 3544,15688, 3552,3912, 3560,8008, 3568,12104, 3576,16200, 3584,6208, 3592,4488, 3600,8584, 3608,12680, 3616,6336, 3624,5000, 3632,9096, 3640,13192, 3648,6464, 3656,5512, 3664,9608, 3672,13704, 3680,6592, 3688,6024, 3696,10120, 3704,14216, 3712,6216, 3720,6536, 3728,10632, 3736,14728, 3744,6344, 3752,7048, 3760,11144, 3768,15240, 3776,6472, 3784,7560, 3792,11656, 3800,15752, 3808,3976, 3816,8072, 3824,12168, 3832,16264, 3840,7232, 3848,4552, 3856,8648, 3864,12744, 3872,7360, 3880,5064, 3888,9160, 3896,13256, 3904,7488, 3912,5576, 3920,9672, 3928,13768, 3936,7616, 3944,6088, 3952,10184, 3960,14280, 3968,7240, 3976,6600, 3984,10696, 3992,14792, 4000,7368, 4008,7112, 4016,11208, 4024,15304, 4032,7496, 4040,7624, 4048,11720, 4056,15816, 4064,7624, 4072,8136, 4080,12232, 4088,16328, 4096,8192, 4104,4112, 4112,8208, 4120,12304, 4128,8320, 4136,4624, 4144,8720, 4152,12816, 4160,8448, 4168,5136, 4176,9232, 4184,13328, 4192,8576, 4200,5648, 4208,9744, 4216,13840, 4224,8200, 4232,6160, 4240,10256, 4248,14352, 4256,8328, 4264,6672, 4272,10768, 4280,14864, 4288,8456, 4296,7184, 4304,11280, 4312,15376, 4320,8584, 4328,7696, 4336,11792, 4344,15888, 4352,9216, 4360,9232, 4368,8272, 4376,12368, 4384,9344, 4392,4688, 4400,8784, 4408,12880, 4416,9472, 4424,5200, 4432,9296, 4440,13392, 4448,9600, 4456,5712, 4464,9808, 4472,13904, 4480,9224, 4488,6224, 4496,10320, 4504,14416, 4512,9352, 4520,6736, 4528,10832, 4536,14928, 4544,9480, 4552,7248, 4560,11344, 4568,15440, 4576,9608, 4584,7760, 4592,11856, 4600,15952, 4608,10240, 4616,10256, 4624,8336, 4632,12432, 4640,10368, 4648,4752, 4656,8848, 4664,12944, 4672,10496, 4680,5264, 4688,9360, 4696,13456, 4704,10624, 4712,5776, 4720,9872, 4728,13968, 4736,10248, 4744,6288, 4752,10384, 4760,14480, 4768,10376, 4776,6800, 4784,10896, 4792,14992, 4800,10504, 4808,7312, 4816,11408, 4824,15504, 4832,10632, 4840,7824, 4848,11920, 4856,16016, 4864,11264, 4872,11280, 4880,8400, 4888,12496, 4896,11392, 4904,11408, 4912,8912, 4920,13008, 4928,11520, 4936,5328, 4944,9424, 4952,13520, 4960,11648, 4968,5840, 4976,9936, 4984,14032, 4992,11272, 5000,6352, 5008,10448, 5016,14544, 5024,11400, 5032,6864, 5040,10960, 5048,15056, 5056,11528, 5064,7376, 5072,11472, 5080,15568, 5088,11656, 5096,7888, 5104,11984, 5112,16080, 5120,8256, 5128,8272, 5136,8464, 5144,12560, 5152,8384, 5160,8400, 5168,8976, 5176,13072, 5184,8512, 5192,5392, 5200,9488, 5208,13584, 5216,8640, 5224,5904, 5232,10000, 5240,14096, 5248,8264, 5256,6416, 5264,10512, 5272,14608, 5280,8392, 5288,6928, 5296,11024, 5304,15120, 5312,8520, 5320,7440, 5328,11536, 5336,15632, 5344,8648, 5352,7952, 5360,12048, 5368,16144, 5376,9280, 5384,9296, 5392,8528, 5400,12624, 5408,9408, 5416,9424, 5424,9040, 5432,13136, 5440,9536, 5448,5456, 5456,9552, 5464,13648, 5472,9664, 5480,5968, 5488,10064, 5496,14160, 5504,9288, 5512,6480, 5520,10576, 5528,14672, 5536,9416, 5544,6992, 5552,11088, 5560,15184, 5568,9544, 5576,7504, 5584,11600, 5592,15696, 5600,9672, 5608,8016, 5616,12112, 5624,16208, 5632,10304, 5640,10320, 5648,8592, 5656,12688, 5664,10432, 5672,10448, 5680,9104, 5688,13200, 5696,10560, 5704,10576, 5712,9616, 5720,13712, 5728,10688, 5736,6032, 5744,10128, 5752,14224, 5760,10312, 5768,6544, 5776,10640, 5784,14736, 5792,10440, 5800,7056, 5808,11152, 5816,15248, 5824,10568, 5832,7568, 5840,11664, 5848,15760, 5856,10696, 5864,8080, 5872,12176, 5880,16272, 5888,11328, 5896,11344, 5904,8656, 5912,12752, 5920,11456, 5928,11472, 5936,9168, 5944,13264, 5952,11584, 5960,11600, 5968,9680, 5976,13776, 5984,11712, 5992,6096, 6000,10192, 6008,14288, 6016,11336, 6024,6608, 6032,10704, 6040,14800, 6048,11464, 6056,7120, 6064,11216, 6072,15312, 6080,11592, 6088,7632, 6096,11728, 6104,15824, 6112,11720, 6120,8144, 6128,12240, 6136,16336, 6144,12288, 6152,12304, 6160,8216, 6168,12312, 6176,12416, 6184,12432, 6192,8728, 6200,12824, 6208,12544, 6216,12560, 6224,9240, 6232,13336, 6240,12672, 6248,12688, 6256,9752, 6264,13848, 6272,12296, 6280,12312, 6288,10264, 6296,14360, 6304,12424, 6312,6680, 6320,10776, 6328,14872, 6336,12552, 6344,7192, 6352,11288, 6360,15384, 6368,12680, 6376,7704, 6384,11800, 6392,15896, 6400,13312, 6408,13328, 6416,8280, 6424,12376, 6432,13440, 6440,13456, 6448,8792, 6456,12888, 6464,13568, 6472,13584, 6480,9304, 6488,13400, 6496,13696, 6504,13712, 6512,9816, 6520,13912, 6528,13320, 6536,13336, 6544,10328, 6552,14424, 6560,13448, 6568,6744, 6576,10840, 6584,14936, 6592,13576, 6600,7256, 6608,11352, 6616,15448, 6624,13704, 6632,7768, 6640,11864, 6648,15960, 6656,14336, 6664,14352, 6672,8344, 6680,12440, 6688,14464, 6696,14480, 6704,8856, 6712,12952, 6720,14592, 6728,14608, 6736,9368, 6744,13464, 6752,14720, 6760,14736, 6768,9880, 6776,13976, 6784,14344, 6792,14360, 6800,10392, 6808,14488, 6816,14472, 6824,14488, 6832,10904, 6840,15000, 6848,14600, 6856,7320, 6864,11416, 6872,15512, 6880,14728, 6888,7832, 6896,11928, 6904,16024, 6912,15360, 6920,15376, 6928,8408, 6936,12504, 6944,15488, 6952,15504, 6960,8920, 6968,13016, 6976,15616, 6984,15632, 6992,9432, 7000,13528, 7008,15744, 7016,15760, 7024,9944, 7032,14040, 7040,15368, 7048,15384, 7056,10456, 7064,14552, 7072,15496, 7080,15512, 7088,10968, 7096,15064, 7104,15624, 7112,7384, 7120,11480, 7128,15576, 7136,15752, 7144,7896, 7152,11992, 7160,16088, 7168,12352, 7176,12368, 7184,8472, 7192,12568, 7200,12480, 7208,12496, 7216,8984, 7224,13080, 7232,12608, 7240,12624, 7248,9496, 7256,13592, 7264,12736, 7272,12752, 7280,10008, 7288,14104, 7296,12360, 7304,12376, 7312,10520, 7320,14616, 7328,12488, 7336,12504, 7344,11032, 7352,15128, 7360,12616, 7368,7448, 7376,11544, 7384,15640, 7392,12744, 7400,7960, 7408,12056, 7416,16152, 7424,13376, 7432,13392, 7440,8536, 7448,12632, 7456,13504, 7464,13520, 7472,9048, 7480,13144, 7488,13632, 7496,13648, 7504,9560, 7512,13656, 7520,13760, 7528,13776, 7536,10072, 7544,14168, 7552,13384, 7560,13400, 7568,10584, 7576,14680, 7584,13512, 7592,13528, 7600,11096, 7608,15192, 7616,13640, 7624,13656, 7632,11608, 7640,15704, 7648,13768, 7656,8024, 7664,12120, 7672,16216, 7680,14400, 7688,14416, 7696,8600, 7704,12696, 7712,14528, 7720,14544, 7728,9112, 7736,13208, 7744,14656, 7752,14672, 7760,9624, 7768,13720, 7776,14784, 7784,14800, 7792,10136, 7800,14232, 7808,14408, 7816,14424, 7824,10648, 7832,14744, 7840,14536, 7848,14552, 7856,11160, 7864,15256, 7872,14664, 7880,14680, 7888,11672, 7896,15768, 7904,14792, 7912,8088, 7920,12184, 7928,16280, 7936,15424, 7944,15440, 7952,8664, 7960,12760, 7968,15552, 7976,15568, 7984,9176, 7992,13272, 8000,15680, 8008,15696, 8016,9688, 8024,13784, 8032,15808, 8040,15824, 8048,10200, 8056,14296, 8064,15432, 8072,15448, 8080,10712, 8088,14808, 8096,15560, 8104,15576, 8112,11224, 8120,15320, 8128,15688, 8136,15704, 8144,11736, 8152,15832, 8160,15816, 8168,15832, 8176,12248, 8184,16344, 8200,8320, 8208,8224, 8216,12320, 8232,10368, 8240,8736, 8248,12832, 8256,8448, 8264,8384, 8272,9248, 8280,13344, 8288,9232, 8296,10432, 8304,9760, 8312,13856, 8328,12416, 8336,10272, 8344,14368, 8352,12296, 8360,14464, 8368,10784, 8376,14880, 8384,8456, 8392,12480, 8400,11296, 8408,15392, 8416,12552, 8424,14528, 8432,11808, 8440,15904, 8448,9216, 8456,8576, 8464,9232, 8472,12384, 8480,9248, 8488,10624, 8496,8800, 8504,12896, 8512,9472, 8520,8640, 8528,9312, 8536,13408, 8544,9296, 8552,10688, 8560,9824, 8568,13920, 8576,9224, 8584,12672, 8592,10336, 8600,14432, 8608,13320, 8616,14720, 8624,10848, 8632,14944, 8640,9480, 8648,12736, 8656,11360, 8664,15456, 8672,13576, 8680,14784, 8688,11872, 8696,15968, 8704,12288, 8712,12416, 8720,12296, 8728,12448, 8736,12304, 8744,10376, 8752,8864, 8760,12960, 8768,12352, 8776,12480, 8784,9376, 8792,13472, 8800,12368, 8808,10440, 8816,9888, 8824,13984, 8832,12320, 8840,12424, 8848,10400, 8856,14496, 8864,12312, 8872,14472, 8880,10912, 8888,15008, 8896,12384, 8904,12488, 8912,11424, 8920,15520, 8928,12568, 8936,14536, 8944,11936, 8952,16032, 8960,12544, 8968,12672, 8976,12552, 8984,12512, 8992,12560, 9000,10632, 9008,12568, 9016,13024, 9024,12608, 9032,12736, 9040,9440, 9048,13536, 9056,12624, 9064,10696, 9072,9952, 9080,14048, 9088,9240, 9096,12680, 9104,10464, 9112,14560, 9120,13336, 9128,14728, 9136,10976, 9144,15072, 9152,9496, 9160,12744, 9168,11488, 9176,15584, 9184,13592, 9192,14792, 9200,12000, 9208,16096, 9224,9344, 9232,9248, 9240,12576, 9256,11392, 9264,12560, 9272,13088, 9280,9472, 9288,9408, 9296,9504, 9304,13600, 9312,9488, 9320,11456, 9328,10016, 9336,14112, 9352,13440, 9360,10528, 9368,14624, 9376,12360, 9384,15488, 9392,11040, 9400,15136, 9408,9480, 9416,13504, 9424,11552, 9432,15648, 9440,12616, 9448,15552, 9456,12064, 9464,16160, 9480,9600, 9488,9504, 9496,12640, 9512,11648, 9520,12624, 9528,13152, 9544,9664, 9552,9568, 9560,13664, 9576,11712, 9584,10080, 9592,14176, 9608,13696, 9616,10592, 9624,14688, 9632,13384, 9640,15744, 9648,11104, 9656,15200, 9672,13760, 9680,11616, 9688,15712, 9696,13640, 9704,15808, 9712,12128, 9720,16224, 9728,13312, 9736,13440, 9744,13320, 9752,12704, 9760,13328, 9768,11400, 9776,13336, 9784,13216, 9792,13376, 9800,13504, 9808,13384, 9816,13728, 9824,13392, 9832,11464, 9840,10144, 9848,14240, 9856,13344, 9864,13448, 9872,10656, 9880,14752, 9888,12376, 9896,15496, 9904,11168, 9912,15264, 9920,13408, 9928,13512, 9936,11680, 9944,15776, 9952,12632, 9960,15560, 9968,12192, 9976,16288, 9984,13568, 9992,13696, 10000,13576, 10008,12768, 10016,13584, 10024,11656, 10032,13592, 10040,13280, 10048,13632, 10056,13760, 10064,13640, 10072,13792, 10080,13648, 10088,11720, 10096,10208, 10104,14304, 10112,13600, 10120,13704, 10128,10720, 10136,14816, 10144,13400, 10152,15752, 10160,11232, 10168,15328, 10176,13664, 10184,13768, 10192,11744, 10200,15840, 10208,13656, 10216,15816, 10224,12256, 10232,16352, 10248,10272, 10256,10368, 10264,12328, 10280,10384, 10288,10376, 10296,12840, 10304,11264, 10312,11296, 10320,11392, 10328,13352, 10336,11272, 10344,10448, 10352,11400, 10360,13864, 10376,12432, 10392,14376, 10400,12328, 10408,14480, 10416,10792, 10424,14888, 10432,11280, 10440,12496, 10448,11304, 10456,15400, 10464,11288, 10472,14544, 10480,11816, 10488,15912, 10496,11264, 10504,11272, 10512,11280, 10520,12392, 10528,11296, 10536,10640, 10544,12496, 10552,12904, 10560,11328, 10568,11360, 10576,11456, 10584,13416, 10592,11336, 10600,10704, 10608,11464, 10616,13928, 10624,11392, 10632,12688, 10640,11304, 10648,14440, 10656,13352, 10664,14736, 10672,10856, 10680,14952, 10688,11344, 10696,12752, 10704,11368, 10712,15464, 10720,11352, 10728,14800, 10736,11880, 10744,15976, 10752,14336, 10760,14368, 10768,14464, 10776,12456, 10784,14344, 10792,14376, 10800,14472, 10808,12968, 10816,15360, 10824,15392, 10832,15488, 10840,13480, 10848,15368, 10856,15400, 10864,15496, 10872,13992, 10880,14352, 10888,12440, 10896,14480, 10904,14504, 10912,14360, 10920,14488, 10928,14488, 10936,15016, 10944,15376, 10952,12504, 10960,11432, 10968,15528, 10976,15384, 10984,14552, 10992,11944, 11000,16040, 11008,14400, 11016,14432, 11024,14528, 11032,12520, 11040,14408, 11048,14440, 11056,14536, 11064,13032, 11072,15424, 11080,15456, 11088,15552, 11096,13544, 11104,15432, 11112,15464, 11120,15560, 11128,14056, 11136,14416, 11144,12696, 11152,14544, 11160,14568, 11168,14424, 11176,14744, 11184,14552, 11192,15080, 11200,15440, 11208,12760, 11216,11496, 11224,15592, 11232,15448, 11240,14808, 11248,12008, 11256,16104, 11272,11296, 11280,11392, 11288,12584, 11304,11408, 11312,12688, 11320,13096, 11328,11520, 11336,11552, 11344,11648, 11352,13608, 11360,11528, 11368,11472, 11376,11656, 11384,14120, 11400,13456, 11416,14632, 11424,12392, 11432,15504, 11440,14440, 11448,15144, 11456,11536, 11464,13520, 11472,11560, 11480,15656, 11488,11544, 11496,15568, 11504,12072, 11512,16168, 11528,11552, 11536,11648, 11544,12648, 11560,11664, 11568,12752, 11576,13160, 11592,11616, 11600,11712, 11608,13672, 11624,11728, 11632,11720, 11640,14184, 11656,13712, 11672,14696, 11680,13416, 11688,15760, 11696,15464, 11704,15208, 11720,13776, 11736,15720, 11744,13672, 11752,15824, 11760,12136, 11768,16232, 11776,14592, 11784,14624, 11792,14720, 11800,12712, 11808,14600, 11816,14632, 11824,14728, 11832,13224, 11840,15616, 11848,15648, 11856,15744, 11864,13736, 11872,15624, 11880,15656, 11888,15752, 11896,14248, 11904,14608, 11912,13464, 11920,14736, 11928,14760, 11936,14616, 11944,15512, 11952,14744, 11960,15272, 11968,15632, 11976,13528, 11984,15760, 11992,15784, 12000,15640, 12008,15576, 12016,12200, 12024,16296, 12032,14656, 12040,14688, 12048,14784, 12056,12776, 12064,14664, 12072,14696, 12080,14792, 12088,13288, 12096,15680, 12104,15712, 12112,15808, 12120,13800, 12128,15688, 12136,15720, 12144,15816, 12152,14312, 12160,14672, 12168,13720, 12176,14800, 12184,14824, 12192,14680, 12200,15768, 12208,14808, 12216,15336, 12224,15696, 12232,13784, 12240,15824, 12248,15848, 12256,15704, 12264,15832, 12272,15832, 12280,16360, 12312,12336, 12344,12848, 12352,12544, 12360,12552, 12368,12560, 12376,13360, 12384,12576, 12392,12584, 12400,13336, 12408,13872, 12424,12448, 12440,14384, 12456,14496, 12464,14472, 12472,14896, 12480,12672, 12488,12512, 12496,12688, 12504,15408, 12512,12680, 12520,14560, 12528,14728, 12536,15920, 12544,13312, 12552,13320, 12560,13328, 12568,13336, 12576,13344, 12584,13352, 12592,13360, 12600,12912, 12608,13568, 12616,13576, 12624,13584, 12632,13424, 12640,13600, 12648,13608, 12656,13400, 12664,13936, 12672,13440, 12680,12704, 12688,13456, 12696,14448, 12704,13448, 12712,14752, 12720,15496, 12728,14960, 12736,13696, 12744,12768, 12752,13712, 12760,15472, 12768,13704, 12776,14816, 12784,15752, 12792,15984, 12800,14336, 12808,14464, 12816,14344, 12824,14472, 12832,14352, 12840,14480, 12848,14360, 12856,12976, 12864,14400, 12872,14528, 12880,14408, 12888,13488, 12896,14416, 12904,14544, 12912,14424, 12920,14000, 12928,14368, 12936,14496, 12944,14376, 12952,14512, 12960,14384, 12968,14504, 12976,14488, 12984,15024, 12992,14432, 13000,14560, 13008,14440, 13016,15536, 13024,14448, 13032,14568, 13040,14744, 13048,16048, 13056,14592, 13064,14720, 13072,14600, 13080,14728, 13088,14608, 13096,14736, 13104,14616, 13112,14744, 13120,14656, 13128,14784, 13136,14664, 13144,13552, 13152,14672, 13160,14800, 13168,14680, 13176,14064, 13184,14624, 13192,14752, 13200,14632, 13208,14576, 13216,13464, 13224,14760, 13232,15512, 13240,15088, 13248,14688, 13256,14816, 13264,14696, 13272,15600, 13280,13720, 13288,14824, 13296,15768, 13304,16112, 13336,13360, 13368,14616, 13376,13568, 13384,13576, 13392,13584, 13400,13616, 13408,13600, 13416,13608, 13424,13592, 13432,14128, 13448,13472, 13464,14640, 13480,15520, 13488,14536, 13496,15152, 13504,13696, 13512,13536, 13520,13712, 13528,15664, 13536,13704, 13544,15584, 13552,14792, 13560,16176, 13592,13616, 13624,14680, 13656,13680, 13688,14192, 13704,13728, 13720,14704, 13736,15776, 13744,15560, 13752,15216, 13768,13792, 13784,15728, 13800,15840, 13808,15816, 13816,16240, 13824,15360, 13832,15488, 13840,15368, 13848,15496, 13856,15376, 13864,15504, 13872,15384, 13880,15512, 13888,15424, 13896,15552, 13904,15432, 13912,15560, 13920,15440, 13928,15568, 13936,15448, 13944,14256, 13952,15392, 13960,15520, 13968,15400, 13976,14768, 13984,15408, 13992,15528, 14000,14552, 14008,15280, 14016,15456, 14024,15584, 14032,15464, 14040,15792, 14048,15472, 14056,15592, 14064,14808, 14072,16304, 14080,15616, 14088,15744, 14096,15624, 14104,15752, 14112,15632, 14120,15760, 14128,15640, 14136,15768, 14144,15680, 14152,15808, 14160,15688, 14168,15816, 14176,15696, 14184,15824, 14192,15704, 14200,14320, 14208,15648, 14216,15776, 14224,15656, 14232,14832, 14240,15664, 14248,15784, 14256,15576, 14264,15344, 14272,15712, 14280,15840, 14288,15720, 14296,15856, 14304,15728, 14312,15848, 14320,15832, 14328,16368, 14392,14488, 14400,14592, 14408,14600, 14416,14608, 14424,14616, 14432,14624, 14440,14632, 14448,14640, 14456,15512, 14504,14512, 14520,14904, 14528,14720, 14536,14728, 14544,14736, 14552,15416, 14560,14752, 14568,14576, 14584,15928, 14576,14760, 14592,15360, 14600,15368, 14608,15376, 14616,15384, 14624,15392, 14632,15400, 14640,15408, 14648,15416, 14656,15616, 14664,15624, 14672,15632, 14680,15640, 14688,15648, 14696,15656, 14704,15664, 14712,15576, 14720,15488, 14728,15496, 14736,15504, 14744,15512, 14752,15520, 14760,14768, 14776,14968, 14768,15528, 14784,15744, 14792,15752, 14800,15760, 14808,15480, 14816,15776, 14824,14832, 14840,15992, 14832,15784, 14856,14864, 14864,14880, 14872,14896, 14880,14976, 14888,14992, 14896,15008, 14904,15024, 14912,15104, 14920,15120, 14928,15136, 14936,15152, 14944,15232, 14952,15248, 14960,15264, 14968,15280, 14984,15008, 15000,15024, 15016,15024, 15040,15112, 15048,15128, 15056,15144, 15064,15544, 15072,15240, 15080,15256, 15088,15272, 15096,16056, 15104,15872, 15112,15888, 15120,15904, 15128,15920, 15136,16000, 15144,16016, 15152,16032, 15160,16048, 15168,16128, 15176,16144, 15184,16160, 15192,16176, 15200,16256, 15208,16272, 15216,16288, 15224,16304, 15232,15880, 15240,15896, 15248,15912, 15256,15928, 15264,16008, 15272,16024, 15280,16040, 15288,16056, 15296,16136, 15304,16152, 15312,16168, 15320,15608, 15328,16264, 15336,16280, 15344,16296, 15352,16120, 15416,15512, 15424,15616, 15432,15624, 15440,15632, 15448,15640, 15456,15648, 15464,15656, 15472,15664, 15480,15768, 15528,15536, 15544,16048, 15552,15744, 15560,15752, 15568,15760, 15576,15672, 15584,15776, 15592,15600, 15600,15784, 15608,16184, 15672,15768, 15736,15832, 15784,15792, 15800,16304, 15848,15856, 15880,16000, 15864,16248, 15888,16000, 15896,16008, 15904,16000, 15912,16016, 15920,16008, 15928,16024, 15936,16128, 15944,16160, 15952,16256, 15960,16288, 15968,16136, 15976,16168, 15984,16264, 15992,16296, 16008,16032, 16024,16040, 16064,16144, 16040,16048, 16072,16176, 16080,16272, 16088,16304, 16096,16152, 16104,16184, 16112,16280, 16136,16256, 16120,16312, 16144,16256, 16152,16264, 16160,16256, 16168,16272, 16176,16264, 16184,16280, 16200,16208, 16208,16224, 16216,16240, 16224,16320, 16232,16336, 16240,16352, 16248,16368, 16264,16288, 16280,16296, 16296,16304, 16344,16368, 16328,16352, 16360,16368 }; const uint16_t armBitRevIndexTable4096[ARMBITREVINDEXTABLE_4096_TABLE_LENGTH] ARM_DSP_TABLE_ATTRIBUTE = { /* radix 8, size 4032 */ 8,4096, 16,8192, 24,12288, 32,16384, 40,20480, 48,24576, 56,28672, 64,512, 72,4608, 80,8704, 88,12800, 96,16896, 104,20992, 112,25088, 120,29184, 128,1024, 136,5120, 144,9216, 152,13312, 160,17408, 168,21504, 176,25600, 184,29696, 192,1536, 200,5632, 208,9728, 216,13824, 224,17920, 232,22016, 240,26112, 248,30208, 256,2048, 264,6144, 272,10240, 280,14336, 288,18432, 296,22528, 304,26624, 312,30720, 320,2560, 328,6656, 336,10752, 344,14848, 352,18944, 360,23040, 368,27136, 376,31232, 384,3072, 392,7168, 400,11264, 408,15360, 416,19456, 424,23552, 432,27648, 440,31744, 448,3584, 456,7680, 464,11776, 472,15872, 480,19968, 488,24064, 496,28160, 504,32256, 520,4160, 528,8256, 536,12352, 544,16448, 552,20544, 560,24640, 568,28736, 584,4672, 592,8768, 600,12864, 608,16960, 616,21056, 624,25152, 632,29248, 640,1088, 648,5184, 656,9280, 664,13376, 672,17472, 680,21568, 688,25664, 696,29760, 704,1600, 712,5696, 720,9792, 728,13888, 736,17984, 744,22080, 752,26176, 760,30272, 768,2112, 776,6208, 784,10304, 792,14400, 800,18496, 808,22592, 816,26688, 824,30784, 832,2624, 840,6720, 848,10816, 856,14912, 864,19008, 872,23104, 880,27200, 888,31296, 896,3136, 904,7232, 912,11328, 920,15424, 928,19520, 936,23616, 944,27712, 952,31808, 960,3648, 968,7744, 976,11840, 984,15936, 992,20032, 1000,24128, 1008,28224, 1016,32320, 1032,4224, 1040,8320, 1048,12416, 1056,16512, 1064,20608, 1072,24704, 1080,28800, 1096,4736, 1104,8832, 1112,12928, 1120,17024, 1128,21120, 1136,25216, 1144,29312, 1160,5248, 1168,9344, 1176,13440, 1184,17536, 1192,21632, 1200,25728, 1208,29824, 1216,1664, 1224,5760, 1232,9856, 1240,13952, 1248,18048, 1256,22144, 1264,26240, 1272,30336, 1280,2176, 1288,6272, 1296,10368, 1304,14464, 1312,18560, 1320,22656, 1328,26752, 1336,30848, 1344,2688, 1352,6784, 1360,10880, 1368,14976, 1376,19072, 1384,23168, 1392,27264, 1400,31360, 1408,3200, 1416,7296, 1424,11392, 1432,15488, 1440,19584, 1448,23680, 1456,27776, 1464,31872, 1472,3712, 1480,7808, 1488,11904, 1496,16000, 1504,20096, 1512,24192, 1520,28288, 1528,32384, 1544,4288, 1552,8384, 1560,12480, 1568,16576, 1576,20672, 1584,24768, 1592,28864, 1608,4800, 1616,8896, 1624,12992, 1632,17088, 1640,21184, 1648,25280, 1656,29376, 1672,5312, 1680,9408, 1688,13504, 1696,17600, 1704,21696, 1712,25792, 1720,29888, 1736,5824, 1744,9920, 1752,14016, 1760,18112, 1768,22208, 1776,26304, 1784,30400, 1792,2240, 1800,6336, 1808,10432, 1816,14528, 1824,18624, 1832,22720, 1840,26816, 1848,30912, 1856,2752, 1864,6848, 1872,10944, 1880,15040, 1888,19136, 1896,23232, 1904,27328, 1912,31424, 1920,3264, 1928,7360, 1936,11456, 1944,15552, 1952,19648, 1960,23744, 1968,27840, 1976,31936, 1984,3776, 1992,7872, 2000,11968, 2008,16064, 2016,20160, 2024,24256, 2032,28352, 2040,32448, 2056,4352, 2064,8448, 2072,12544, 2080,16640, 2088,20736, 2096,24832, 2104,28928, 2120,4864, 2128,8960, 2136,13056, 2144,17152, 2152,21248, 2160,25344, 2168,29440, 2184,5376, 2192,9472, 2200,13568, 2208,17664, 2216,21760, 2224,25856, 2232,29952, 2248,5888, 2256,9984, 2264,14080, 2272,18176, 2280,22272, 2288,26368, 2296,30464, 2312,6400, 2320,10496, 2328,14592, 2336,18688, 2344,22784, 2352,26880, 2360,30976, 2368,2816, 2376,6912, 2384,11008, 2392,15104, 2400,19200, 2408,23296, 2416,27392, 2424,31488, 2432,3328, 2440,7424, 2448,11520, 2456,15616, 2464,19712, 2472,23808, 2480,27904, 2488,32000, 2496,3840, 2504,7936, 2512,12032, 2520,16128, 2528,20224, 2536,24320, 2544,28416, 2552,32512, 2568,4416, 2576,8512, 2584,12608, 2592,16704, 2600,20800, 2608,24896, 2616,28992, 2632,4928, 2640,9024, 2648,13120, 2656,17216, 2664,21312, 2672,25408, 2680,29504, 2696,5440, 2704,9536, 2712,13632, 2720,17728, 2728,21824, 2736,25920, 2744,30016, 2760,5952, 2768,10048, 2776,14144, 2784,18240, 2792,22336, 2800,26432, 2808,30528, 2824,6464, 2832,10560, 2840,14656, 2848,18752, 2856,22848, 2864,26944, 2872,31040, 2888,6976, 2896,11072, 2904,15168, 2912,19264, 2920,23360, 2928,27456, 2936,31552, 2944,3392, 2952,7488, 2960,11584, 2968,15680, 2976,19776, 2984,23872, 2992,27968, 3000,32064, 3008,3904, 3016,8000, 3024,12096, 3032,16192, 3040,20288, 3048,24384, 3056,28480, 3064,32576, 3080,4480, 3088,8576, 3096,12672, 3104,16768, 3112,20864, 3120,24960, 3128,29056, 3144,4992, 3152,9088, 3160,13184, 3168,17280, 3176,21376, 3184,25472, 3192,29568, 3208,5504, 3216,9600, 3224,13696, 3232,17792, 3240,21888, 3248,25984, 3256,30080, 3272,6016, 3280,10112, 3288,14208, 3296,18304, 3304,22400, 3312,26496, 3320,30592, 3336,6528, 3344,10624, 3352,14720, 3360,18816, 3368,22912, 3376,27008, 3384,31104, 3400,7040, 3408,11136, 3416,15232, 3424,19328, 3432,23424, 3440,27520, 3448,31616, 3464,7552, 3472,11648, 3480,15744, 3488,19840, 3496,23936, 3504,28032, 3512,32128, 3520,3968, 3528,8064, 3536,12160, 3544,16256, 3552,20352, 3560,24448, 3568,28544, 3576,32640, 3592,4544, 3600,8640, 3608,12736, 3616,16832, 3624,20928, 3632,25024, 3640,29120, 3656,5056, 3664,9152, 3672,13248, 3680,17344, 3688,21440, 3696,25536, 3704,29632, 3720,5568, 3728,9664, 3736,13760, 3744,17856, 3752,21952, 3760,26048, 3768,30144, 3784,6080, 3792,10176, 3800,14272, 3808,18368, 3816,22464, 3824,26560, 3832,30656, 3848,6592, 3856,10688, 3864,14784, 3872,18880, 3880,22976, 3888,27072, 3896,31168, 3912,7104, 3920,11200, 3928,15296, 3936,19392, 3944,23488, 3952,27584, 3960,31680, 3976,7616, 3984,11712, 3992,15808, 4000,19904, 4008,24000, 4016,28096, 4024,32192, 4040,8128, 4048,12224, 4056,16320, 4064,20416, 4072,24512, 4080,28608, 4088,32704, 4112,8200, 4120,12296, 4128,16392, 4136,20488, 4144,24584, 4152,28680, 4168,4616, 4176,8712, 4184,12808, 4192,16904, 4200,21000, 4208,25096, 4216,29192, 4232,5128, 4240,9224, 4248,13320, 4256,17416, 4264,21512, 4272,25608, 4280,29704, 4296,5640, 4304,9736, 4312,13832, 4320,17928, 4328,22024, 4336,26120, 4344,30216, 4360,6152, 4368,10248, 4376,14344, 4384,18440, 4392,22536, 4400,26632, 4408,30728, 4424,6664, 4432,10760, 4440,14856, 4448,18952, 4456,23048, 4464,27144, 4472,31240, 4488,7176, 4496,11272, 4504,15368, 4512,19464, 4520,23560, 4528,27656, 4536,31752, 4552,7688, 4560,11784, 4568,15880, 4576,19976, 4584,24072, 4592,28168, 4600,32264, 4624,8264, 4632,12360, 4640,16456, 4648,20552, 4656,24648, 4664,28744, 4688,8776, 4696,12872, 4704,16968, 4712,21064, 4720,25160, 4728,29256, 4744,5192, 4752,9288, 4760,13384, 4768,17480, 4776,21576, 4784,25672, 4792,29768, 4808,5704, 4816,9800, 4824,13896, 4832,17992, 4840,22088, 4848,26184, 4856,30280, 4872,6216, 4880,10312, 4888,14408, 4896,18504, 4904,22600, 4912,26696, 4920,30792, 4936,6728, 4944,10824, 4952,14920, 4960,19016, 4968,23112, 4976,27208, 4984,31304, 5000,7240, 5008,11336, 5016,15432, 5024,19528, 5032,23624, 5040,27720, 5048,31816, 5064,7752, 5072,11848, 5080,15944, 5088,20040, 5096,24136, 5104,28232, 5112,32328, 5136,8328, 5144,12424, 5152,16520, 5160,20616, 5168,24712, 5176,28808, 5200,8840, 5208,12936, 5216,17032, 5224,21128, 5232,25224, 5240,29320, 5264,9352, 5272,13448, 5280,17544, 5288,21640, 5296,25736, 5304,29832, 5320,5768, 5328,9864, 5336,13960, 5344,18056, 5352,22152, 5360,26248, 5368,30344, 5384,6280, 5392,10376, 5400,14472, 5408,18568, 5416,22664, 5424,26760, 5432,30856, 5448,6792, 5456,10888, 5464,14984, 5472,19080, 5480,23176, 5488,27272, 5496,31368, 5512,7304, 5520,11400, 5528,15496, 5536,19592, 5544,23688, 5552,27784, 5560,31880, 5576,7816, 5584,11912, 5592,16008, 5600,20104, 5608,24200, 5616,28296, 5624,32392, 5648,8392, 5656,12488, 5664,16584, 5672,20680, 5680,24776, 5688,28872, 5712,8904, 5720,13000, 5728,17096, 5736,21192, 5744,25288, 5752,29384, 5776,9416, 5784,13512, 5792,17608, 5800,21704, 5808,25800, 5816,29896, 5840,9928, 5848,14024, 5856,18120, 5864,22216, 5872,26312, 5880,30408, 5896,6344, 5904,10440, 5912,14536, 5920,18632, 5928,22728, 5936,26824, 5944,30920, 5960,6856, 5968,10952, 5976,15048, 5984,19144, 5992,23240, 6000,27336, 6008,31432, 6024,7368, 6032,11464, 6040,15560, 6048,19656, 6056,23752, 6064,27848, 6072,31944, 6088,7880, 6096,11976, 6104,16072, 6112,20168, 6120,24264, 6128,28360, 6136,32456, 6160,8456, 6168,12552, 6176,16648, 6184,20744, 6192,24840, 6200,28936, 6224,8968, 6232,13064, 6240,17160, 6248,21256, 6256,25352, 6264,29448, 6288,9480, 6296,13576, 6304,17672, 6312,21768, 6320,25864, 6328,29960, 6352,9992, 6360,14088, 6368,18184, 6376,22280, 6384,26376, 6392,30472, 6416,10504, 6424,14600, 6432,18696, 6440,22792, 6448,26888, 6456,30984, 6472,6920, 6480,11016, 6488,15112, 6496,19208, 6504,23304, 6512,27400, 6520,31496, 6536,7432, 6544,11528, 6552,15624, 6560,19720, 6568,23816, 6576,27912, 6584,32008, 6600,7944, 6608,12040, 6616,16136, 6624,20232, 6632,24328, 6640,28424, 6648,32520, 6672,8520, 6680,12616, 6688,16712, 6696,20808, 6704,24904, 6712,29000, 6736,9032, 6744,13128, 6752,17224, 6760,21320, 6768,25416, 6776,29512, 6800,9544, 6808,13640, 6816,17736, 6824,21832, 6832,25928, 6840,30024, 6864,10056, 6872,14152, 6880,18248, 6888,22344, 6896,26440, 6904,30536, 6928,10568, 6936,14664, 6944,18760, 6952,22856, 6960,26952, 6968,31048, 6992,11080, 7000,15176, 7008,19272, 7016,23368, 7024,27464, 7032,31560, 7048,7496, 7056,11592, 7064,15688, 7072,19784, 7080,23880, 7088,27976, 7096,32072, 7112,8008, 7120,12104, 7128,16200, 7136,20296, 7144,24392, 7152,28488, 7160,32584, 7184,8584, 7192,12680, 7200,16776, 7208,20872, 7216,24968, 7224,29064, 7248,9096, 7256,13192, 7264,17288, 7272,21384, 7280,25480, 7288,29576, 7312,9608, 7320,13704, 7328,17800, 7336,21896, 7344,25992, 7352,30088, 7376,10120, 7384,14216, 7392,18312, 7400,22408, 7408,26504, 7416,30600, 7440,10632, 7448,14728, 7456,18824, 7464,22920, 7472,27016, 7480,31112, 7504,11144, 7512,15240, 7520,19336, 7528,23432, 7536,27528, 7544,31624, 7568,11656, 7576,15752, 7584,19848, 7592,23944, 7600,28040, 7608,32136, 7624,8072, 7632,12168, 7640,16264, 7648,20360, 7656,24456, 7664,28552, 7672,32648, 7696,8648, 7704,12744, 7712,16840, 7720,20936, 7728,25032, 7736,29128, 7760,9160, 7768,13256, 7776,17352, 7784,21448, 7792,25544, 7800,29640, 7824,9672, 7832,13768, 7840,17864, 7848,21960, 7856,26056, 7864,30152, 7888,10184, 7896,14280, 7904,18376, 7912,22472, 7920,26568, 7928,30664, 7952,10696, 7960,14792, 7968,18888, 7976,22984, 7984,27080, 7992,31176, 8016,11208, 8024,15304, 8032,19400, 8040,23496, 8048,27592, 8056,31688, 8080,11720, 8088,15816, 8096,19912, 8104,24008, 8112,28104, 8120,32200, 8144,12232, 8152,16328, 8160,20424, 8168,24520, 8176,28616, 8184,32712, 8216,12304, 8224,16400, 8232,20496, 8240,24592, 8248,28688, 8272,8720, 8280,12816, 8288,16912, 8296,21008, 8304,25104, 8312,29200, 8336,9232, 8344,13328, 8352,17424, 8360,21520, 8368,25616, 8376,29712, 8400,9744, 8408,13840, 8416,17936, 8424,22032, 8432,26128, 8440,30224, 8464,10256, 8472,14352, 8480,18448, 8488,22544, 8496,26640, 8504,30736, 8528,10768, 8536,14864, 8544,18960, 8552,23056, 8560,27152, 8568,31248, 8592,11280, 8600,15376, 8608,19472, 8616,23568, 8624,27664, 8632,31760, 8656,11792, 8664,15888, 8672,19984, 8680,24080, 8688,28176, 8696,32272, 8728,12368, 8736,16464, 8744,20560, 8752,24656, 8760,28752, 8792,12880, 8800,16976, 8808,21072, 8816,25168, 8824,29264, 8848,9296, 8856,13392, 8864,17488, 8872,21584, 8880,25680, 8888,29776, 8912,9808, 8920,13904, 8928,18000, 8936,22096, 8944,26192, 8952,30288, 8976,10320, 8984,14416, 8992,18512, 9000,22608, 9008,26704, 9016,30800, 9040,10832, 9048,14928, 9056,19024, 9064,23120, 9072,27216, 9080,31312, 9104,11344, 9112,15440, 9120,19536, 9128,23632, 9136,27728, 9144,31824, 9168,11856, 9176,15952, 9184,20048, 9192,24144, 9200,28240, 9208,32336, 9240,12432, 9248,16528, 9256,20624, 9264,24720, 9272,28816, 9304,12944, 9312,17040, 9320,21136, 9328,25232, 9336,29328, 9368,13456, 9376,17552, 9384,21648, 9392,25744, 9400,29840, 9424,9872, 9432,13968, 9440,18064, 9448,22160, 9456,26256, 9464,30352, 9488,10384, 9496,14480, 9504,18576, 9512,22672, 9520,26768, 9528,30864, 9552,10896, 9560,14992, 9568,19088, 9576,23184, 9584,27280, 9592,31376, 9616,11408, 9624,15504, 9632,19600, 9640,23696, 9648,27792, 9656,31888, 9680,11920, 9688,16016, 9696,20112, 9704,24208, 9712,28304, 9720,32400, 9752,12496, 9760,16592, 9768,20688, 9776,24784, 9784,28880, 9816,13008, 9824,17104, 9832,21200, 9840,25296, 9848,29392, 9880,13520, 9888,17616, 9896,21712, 9904,25808, 9912,29904, 9944,14032, 9952,18128, 9960,22224, 9968,26320, 9976,30416, 10000,10448, 10008,14544, 10016,18640, 10024,22736, 10032,26832, 10040,30928, 10064,10960, 10072,15056, 10080,19152, 10088,23248, 10096,27344, 10104,31440, 10128,11472, 10136,15568, 10144,19664, 10152,23760, 10160,27856, 10168,31952, 10192,11984, 10200,16080, 10208,20176, 10216,24272, 10224,28368, 10232,32464, 10264,12560, 10272,16656, 10280,20752, 10288,24848, 10296,28944, 10328,13072, 10336,17168, 10344,21264, 10352,25360, 10360,29456, 10392,13584, 10400,17680, 10408,21776, 10416,25872, 10424,29968, 10456,14096, 10464,18192, 10472,22288, 10480,26384, 10488,30480, 10520,14608, 10528,18704, 10536,22800, 10544,26896, 10552,30992, 10576,11024, 10584,15120, 10592,19216, 10600,23312, 10608,27408, 10616,31504, 10640,11536, 10648,15632, 10656,19728, 10664,23824, 10672,27920, 10680,32016, 10704,12048, 10712,16144, 10720,20240, 10728,24336, 10736,28432, 10744,32528, 10776,12624, 10784,16720, 10792,20816, 10800,24912, 10808,29008, 10840,13136, 10848,17232, 10856,21328, 10864,25424, 10872,29520, 10904,13648, 10912,17744, 10920,21840, 10928,25936, 10936,30032, 10968,14160, 10976,18256, 10984,22352, 10992,26448, 11000,30544, 11032,14672, 11040,18768, 11048,22864, 11056,26960, 11064,31056, 11096,15184, 11104,19280, 11112,23376, 11120,27472, 11128,31568, 11152,11600, 11160,15696, 11168,19792, 11176,23888, 11184,27984, 11192,32080, 11216,12112, 11224,16208, 11232,20304, 11240,24400, 11248,28496, 11256,32592, 11288,12688, 11296,16784, 11304,20880, 11312,24976, 11320,29072, 11352,13200, 11360,17296, 11368,21392, 11376,25488, 11384,29584, 11416,13712, 11424,17808, 11432,21904, 11440,26000, 11448,30096, 11480,14224, 11488,18320, 11496,22416, 11504,26512, 11512,30608, 11544,14736, 11552,18832, 11560,22928, 11568,27024, 11576,31120, 11608,15248, 11616,19344, 11624,23440, 11632,27536, 11640,31632, 11672,15760, 11680,19856, 11688,23952, 11696,28048, 11704,32144, 11728,12176, 11736,16272, 11744,20368, 11752,24464, 11760,28560, 11768,32656, 11800,12752, 11808,16848, 11816,20944, 11824,25040, 11832,29136, 11864,13264, 11872,17360, 11880,21456, 11888,25552, 11896,29648, 11928,13776, 11936,17872, 11944,21968, 11952,26064, 11960,30160, 11992,14288, 12000,18384, 12008,22480, 12016,26576, 12024,30672, 12056,14800, 12064,18896, 12072,22992, 12080,27088, 12088,31184, 12120,15312, 12128,19408, 12136,23504, 12144,27600, 12152,31696, 12184,15824, 12192,19920, 12200,24016, 12208,28112, 12216,32208, 12248,16336, 12256,20432, 12264,24528, 12272,28624, 12280,32720, 12320,16408, 12328,20504, 12336,24600, 12344,28696, 12376,12824, 12384,16920, 12392,21016, 12400,25112, 12408,29208, 12440,13336, 12448,17432, 12456,21528, 12464,25624, 12472,29720, 12504,13848, 12512,17944, 12520,22040, 12528,26136, 12536,30232, 12568,14360, 12576,18456, 12584,22552, 12592,26648, 12600,30744, 12632,14872, 12640,18968, 12648,23064, 12656,27160, 12664,31256, 12696,15384, 12704,19480, 12712,23576, 12720,27672, 12728,31768, 12760,15896, 12768,19992, 12776,24088, 12784,28184, 12792,32280, 12832,16472, 12840,20568, 12848,24664, 12856,28760, 12896,16984, 12904,21080, 12912,25176, 12920,29272, 12952,13400, 12960,17496, 12968,21592, 12976,25688, 12984,29784, 13016,13912, 13024,18008, 13032,22104, 13040,26200, 13048,30296, 13080,14424, 13088,18520, 13096,22616, 13104,26712, 13112,30808, 13144,14936, 13152,19032, 13160,23128, 13168,27224, 13176,31320, 13208,15448, 13216,19544, 13224,23640, 13232,27736, 13240,31832, 13272,15960, 13280,20056, 13288,24152, 13296,28248, 13304,32344, 13344,16536, 13352,20632, 13360,24728, 13368,28824, 13408,17048, 13416,21144, 13424,25240, 13432,29336, 13472,17560, 13480,21656, 13488,25752, 13496,29848, 13528,13976, 13536,18072, 13544,22168, 13552,26264, 13560,30360, 13592,14488, 13600,18584, 13608,22680, 13616,26776, 13624,30872, 13656,15000, 13664,19096, 13672,23192, 13680,27288, 13688,31384, 13720,15512, 13728,19608, 13736,23704, 13744,27800, 13752,31896, 13784,16024, 13792,20120, 13800,24216, 13808,28312, 13816,32408, 13856,16600, 13864,20696, 13872,24792, 13880,28888, 13920,17112, 13928,21208, 13936,25304, 13944,29400, 13984,17624, 13992,21720, 14000,25816, 14008,29912, 14048,18136, 14056,22232, 14064,26328, 14072,30424, 14104,14552, 14112,18648, 14120,22744, 14128,26840, 14136,30936, 14168,15064, 14176,19160, 14184,23256, 14192,27352, 14200,31448, 14232,15576, 14240,19672, 14248,23768, 14256,27864, 14264,31960, 14296,16088, 14304,20184, 14312,24280, 14320,28376, 14328,32472, 14368,16664, 14376,20760, 14384,24856, 14392,28952, 14432,17176, 14440,21272, 14448,25368, 14456,29464, 14496,17688, 14504,21784, 14512,25880, 14520,29976, 14560,18200, 14568,22296, 14576,26392, 14584,30488, 14624,18712, 14632,22808, 14640,26904, 14648,31000, 14680,15128, 14688,19224, 14696,23320, 14704,27416, 14712,31512, 14744,15640, 14752,19736, 14760,23832, 14768,27928, 14776,32024, 14808,16152, 14816,20248, 14824,24344, 14832,28440, 14840,32536, 14880,16728, 14888,20824, 14896,24920, 14904,29016, 14944,17240, 14952,21336, 14960,25432, 14968,29528, 15008,17752, 15016,21848, 15024,25944, 15032,30040, 15072,18264, 15080,22360, 15088,26456, 15096,30552, 15136,18776, 15144,22872, 15152,26968, 15160,31064, 15200,19288, 15208,23384, 15216,27480, 15224,31576, 15256,15704, 15264,19800, 15272,23896, 15280,27992, 15288,32088, 15320,16216, 15328,20312, 15336,24408, 15344,28504, 15352,32600, 15392,16792, 15400,20888, 15408,24984, 15416,29080, 15456,17304, 15464,21400, 15472,25496, 15480,29592, 15520,17816, 15528,21912, 15536,26008, 15544,30104, 15584,18328, 15592,22424, 15600,26520, 15608,30616, 15648,18840, 15656,22936, 15664,27032, 15672,31128, 15712,19352, 15720,23448, 15728,27544, 15736,31640, 15776,19864, 15784,23960, 15792,28056, 15800,32152, 15832,16280, 15840,20376, 15848,24472, 15856,28568, 15864,32664, 15904,16856, 15912,20952, 15920,25048, 15928,29144, 15968,17368, 15976,21464, 15984,25560, 15992,29656, 16032,17880, 16040,21976, 16048,26072, 16056,30168, 16096,18392, 16104,22488, 16112,26584, 16120,30680, 16160,18904, 16168,23000, 16176,27096, 16184,31192, 16224,19416, 16232,23512, 16240,27608, 16248,31704, 16288,19928, 16296,24024, 16304,28120, 16312,32216, 16352,20440, 16360,24536, 16368,28632, 16376,32728, 16424,20512, 16432,24608, 16440,28704, 16480,16928, 16488,21024, 16496,25120, 16504,29216, 16544,17440, 16552,21536, 16560,25632, 16568,29728, 16608,17952, 16616,22048, 16624,26144, 16632,30240, 16672,18464, 16680,22560, 16688,26656, 16696,30752, 16736,18976, 16744,23072, 16752,27168, 16760,31264, 16800,19488, 16808,23584, 16816,27680, 16824,31776, 16864,20000, 16872,24096, 16880,28192, 16888,32288, 16936,20576, 16944,24672, 16952,28768, 17000,21088, 17008,25184, 17016,29280, 17056,17504, 17064,21600, 17072,25696, 17080,29792, 17120,18016, 17128,22112, 17136,26208, 17144,30304, 17184,18528, 17192,22624, 17200,26720, 17208,30816, 17248,19040, 17256,23136, 17264,27232, 17272,31328, 17312,19552, 17320,23648, 17328,27744, 17336,31840, 17376,20064, 17384,24160, 17392,28256, 17400,32352, 17448,20640, 17456,24736, 17464,28832, 17512,21152, 17520,25248, 17528,29344, 17576,21664, 17584,25760, 17592,29856, 17632,18080, 17640,22176, 17648,26272, 17656,30368, 17696,18592, 17704,22688, 17712,26784, 17720,30880, 17760,19104, 17768,23200, 17776,27296, 17784,31392, 17824,19616, 17832,23712, 17840,27808, 17848,31904, 17888,20128, 17896,24224, 17904,28320, 17912,32416, 17960,20704, 17968,24800, 17976,28896, 18024,21216, 18032,25312, 18040,29408, 18088,21728, 18096,25824, 18104,29920, 18152,22240, 18160,26336, 18168,30432, 18208,18656, 18216,22752, 18224,26848, 18232,30944, 18272,19168, 18280,23264, 18288,27360, 18296,31456, 18336,19680, 18344,23776, 18352,27872, 18360,31968, 18400,20192, 18408,24288, 18416,28384, 18424,32480, 18472,20768, 18480,24864, 18488,28960, 18536,21280, 18544,25376, 18552,29472, 18600,21792, 18608,25888, 18616,29984, 18664,22304, 18672,26400, 18680,30496, 18728,22816, 18736,26912, 18744,31008, 18784,19232, 18792,23328, 18800,27424, 18808,31520, 18848,19744, 18856,23840, 18864,27936, 18872,32032, 18912,20256, 18920,24352, 18928,28448, 18936,32544, 18984,20832, 18992,24928, 19000,29024, 19048,21344, 19056,25440, 19064,29536, 19112,21856, 19120,25952, 19128,30048, 19176,22368, 19184,26464, 19192,30560, 19240,22880, 19248,26976, 19256,31072, 19304,23392, 19312,27488, 19320,31584, 19360,19808, 19368,23904, 19376,28000, 19384,32096, 19424,20320, 19432,24416, 19440,28512, 19448,32608, 19496,20896, 19504,24992, 19512,29088, 19560,21408, 19568,25504, 19576,29600, 19624,21920, 19632,26016, 19640,30112, 19688,22432, 19696,26528, 19704,30624, 19752,22944, 19760,27040, 19768,31136, 19816,23456, 19824,27552, 19832,31648, 19880,23968, 19888,28064, 19896,32160, 19936,20384, 19944,24480, 19952,28576, 19960,32672, 20008,20960, 20016,25056, 20024,29152, 20072,21472, 20080,25568, 20088,29664, 20136,21984, 20144,26080, 20152,30176, 20200,22496, 20208,26592, 20216,30688, 20264,23008, 20272,27104, 20280,31200, 20328,23520, 20336,27616, 20344,31712, 20392,24032, 20400,28128, 20408,32224, 20456,24544, 20464,28640, 20472,32736, 20528,24616, 20536,28712, 20584,21032, 20592,25128, 20600,29224, 20648,21544, 20656,25640, 20664,29736, 20712,22056, 20720,26152, 20728,30248, 20776,22568, 20784,26664, 20792,30760, 20840,23080, 20848,27176, 20856,31272, 20904,23592, 20912,27688, 20920,31784, 20968,24104, 20976,28200, 20984,32296, 21040,24680, 21048,28776, 21104,25192, 21112,29288, 21160,21608, 21168,25704, 21176,29800, 21224,22120, 21232,26216, 21240,30312, 21288,22632, 21296,26728, 21304,30824, 21352,23144, 21360,27240, 21368,31336, 21416,23656, 21424,27752, 21432,31848, 21480,24168, 21488,28264, 21496,32360, 21552,24744, 21560,28840, 21616,25256, 21624,29352, 21680,25768, 21688,29864, 21736,22184, 21744,26280, 21752,30376, 21800,22696, 21808,26792, 21816,30888, 21864,23208, 21872,27304, 21880,31400, 21928,23720, 21936,27816, 21944,31912, 21992,24232, 22000,28328, 22008,32424, 22064,24808, 22072,28904, 22128,25320, 22136,29416, 22192,25832, 22200,29928, 22256,26344, 22264,30440, 22312,22760, 22320,26856, 22328,30952, 22376,23272, 22384,27368, 22392,31464, 22440,23784, 22448,27880, 22456,31976, 22504,24296, 22512,28392, 22520,32488, 22576,24872, 22584,28968, 22640,25384, 22648,29480, 22704,25896, 22712,29992, 22768,26408, 22776,30504, 22832,26920, 22840,31016, 22888,23336, 22896,27432, 22904,31528, 22952,23848, 22960,27944, 22968,32040, 23016,24360, 23024,28456, 23032,32552, 23088,24936, 23096,29032, 23152,25448, 23160,29544, 23216,25960, 23224,30056, 23280,26472, 23288,30568, 23344,26984, 23352,31080, 23408,27496, 23416,31592, 23464,23912, 23472,28008, 23480,32104, 23528,24424, 23536,28520, 23544,32616, 23600,25000, 23608,29096, 23664,25512, 23672,29608, 23728,26024, 23736,30120, 23792,26536, 23800,30632, 23856,27048, 23864,31144, 23920,27560, 23928,31656, 23984,28072, 23992,32168, 24040,24488, 24048,28584, 24056,32680, 24112,25064, 24120,29160, 24176,25576, 24184,29672, 24240,26088, 24248,30184, 24304,26600, 24312,30696, 24368,27112, 24376,31208, 24432,27624, 24440,31720, 24496,28136, 24504,32232, 24560,28648, 24568,32744, 24632,28720, 24688,25136, 24696,29232, 24752,25648, 24760,29744, 24816,26160, 24824,30256, 24880,26672, 24888,30768, 24944,27184, 24952,31280, 25008,27696, 25016,31792, 25072,28208, 25080,32304, 25144,28784, 25208,29296, 25264,25712, 25272,29808, 25328,26224, 25336,30320, 25392,26736, 25400,30832, 25456,27248, 25464,31344, 25520,27760, 25528,31856, 25584,28272, 25592,32368, 25656,28848, 25720,29360, 25784,29872, 25840,26288, 25848,30384, 25904,26800, 25912,30896, 25968,27312, 25976,31408, 26032,27824, 26040,31920, 26096,28336, 26104,32432, 26168,28912, 26232,29424, 26296,29936, 26360,30448, 26416,26864, 26424,30960, 26480,27376, 26488,31472, 26544,27888, 26552,31984, 26608,28400, 26616,32496, 26680,28976, 26744,29488, 26808,30000, 26872,30512, 26936,31024, 26992,27440, 27000,31536, 27056,27952, 27064,32048, 27120,28464, 27128,32560, 27192,29040, 27256,29552, 27320,30064, 27384,30576, 27448,31088, 27512,31600, 27568,28016, 27576,32112, 27632,28528, 27640,32624, 27704,29104, 27768,29616, 27832,30128, 27896,30640, 27960,31152, 28024,31664, 28088,32176, 28144,28592, 28152,32688, 28216,29168, 28280,29680, 28344,30192, 28408,30704, 28472,31216, 28536,31728, 28600,32240, 28664,32752, 28792,29240, 28856,29752, 28920,30264, 28984,30776, 29048,31288, 29112,31800, 29176,32312, 29368,29816, 29432,30328, 29496,30840, 29560,31352, 29624,31864, 29688,32376, 29944,30392, 30008,30904, 30072,31416, 30136,31928, 30200,32440, 30520,30968, 30584,31480, 30648,31992, 30712,32504, 31096,31544, 31160,32056, 31224,32568, 31672,32120, 31736,32632, 32248,32696 }; const uint16_t armBitRevIndexTable_fixed_16[ARMBITREVINDEXTABLE_FIXED_16_TABLE_LENGTH] ARM_DSP_TABLE_ATTRIBUTE = { /* radix 4, size 12 */ 8,64, 16,32, 24,96, 40,80, 56,112, 88,104 }; const uint16_t armBitRevIndexTable_fixed_32[ARMBITREVINDEXTABLE_FIXED_32_TABLE_LENGTH] ARM_DSP_TABLE_ATTRIBUTE = { /* 4x2, size 24 */ 8,128, 16,64, 24,192, 40,160, 48,96, 56,224, 72,144, 88,208, 104,176, 120,240, 152,200, 184,232 }; const uint16_t armBitRevIndexTable_fixed_64[ARMBITREVINDEXTABLE_FIXED_64_TABLE_LENGTH] ARM_DSP_TABLE_ATTRIBUTE = { /* radix 4, size 56 */ 8,256, 16,128, 24,384, 32,64, 40,320, 48,192, 56,448, 72,288, 80,160, 88,416, 104,352, 112,224, 120,480, 136,272, 152,400, 168,336, 176,208, 184,464, 200,304, 216,432, 232,368, 248,496, 280,392, 296,328, 312,456, 344,424, 376,488, 440,472 }; const uint16_t armBitRevIndexTable_fixed_128[ARMBITREVINDEXTABLE_FIXED_128_TABLE_LENGTH] ARM_DSP_TABLE_ATTRIBUTE = { /* 4x2, size 112 */ 8,512, 16,256, 24,768, 32,128, 40,640, 48,384, 56,896, 72,576, 80,320, 88,832, 96,192, 104,704, 112,448, 120,960, 136,544, 144,288, 152,800, 168,672, 176,416, 184,928, 200,608, 208,352, 216,864, 232,736, 240,480, 248,992, 264,528, 280,784, 296,656, 304,400, 312,912, 328,592, 344,848, 360,720, 368,464, 376,976, 392,560, 408,816, 424,688, 440,944, 456,624, 472,880, 488,752, 504,1008, 536,776, 552,648, 568,904, 600,840, 616,712, 632,968, 664,808, 696,936, 728,872, 760,1000, 824,920, 888,984 }; const uint16_t armBitRevIndexTable_fixed_256[ARMBITREVINDEXTABLE_FIXED_256_TABLE_LENGTH] ARM_DSP_TABLE_ATTRIBUTE = { /* radix 4, size 240 */ 8,1024, 16,512, 24,1536, 32,256, 40,1280, 48,768, 56,1792, 64,128, 72,1152, 80,640, 88,1664, 96,384, 104,1408, 112,896, 120,1920, 136,1088, 144,576, 152,1600, 160,320, 168,1344, 176,832, 184,1856, 200,1216, 208,704, 216,1728, 224,448, 232,1472, 240,960, 248,1984, 264,1056, 272,544, 280,1568, 296,1312, 304,800, 312,1824, 328,1184, 336,672, 344,1696, 352,416, 360,1440, 368,928, 376,1952, 392,1120, 400,608, 408,1632, 424,1376, 432,864, 440,1888, 456,1248, 464,736, 472,1760, 488,1504, 496,992, 504,2016, 520,1040, 536,1552, 552,1296, 560,784, 568,1808, 584,1168, 592,656, 600,1680, 616,1424, 624,912, 632,1936, 648,1104, 664,1616, 680,1360, 688,848, 696,1872, 712,1232, 728,1744, 744,1488, 752,976, 760,2000, 776,1072, 792,1584, 808,1328, 824,1840, 840,1200, 856,1712, 872,1456, 880,944, 888,1968, 904,1136, 920,1648, 936,1392, 952,1904, 968,1264, 984,1776, 1000,1520, 1016,2032, 1048,1544, 1064,1288, 1080,1800, 1096,1160, 1112,1672, 1128,1416, 1144,1928, 1176,1608, 1192,1352, 1208,1864, 1240,1736, 1256,1480, 1272,1992, 1304,1576, 1336,1832, 1368,1704, 1384,1448, 1400,1960, 1432,1640, 1464,1896, 1496,1768, 1528,2024, 1592,1816, 1624,1688, 1656,1944, 1720,1880, 1784,2008, 1912,1976 }; const uint16_t armBitRevIndexTable_fixed_512[ARMBITREVINDEXTABLE_FIXED_512_TABLE_LENGTH] ARM_DSP_TABLE_ATTRIBUTE = { /* 4x2, size 480 */ 8,2048, 16,1024, 24,3072, 32,512, 40,2560, 48,1536, 56,3584, 64,256, 72,2304, 80,1280, 88,3328, 96,768, 104,2816, 112,1792, 120,3840, 136,2176, 144,1152, 152,3200, 160,640, 168,2688, 176,1664, 184,3712, 192,384, 200,2432, 208,1408, 216,3456, 224,896, 232,2944, 240,1920, 248,3968, 264,2112, 272,1088, 280,3136, 288,576, 296,2624, 304,1600, 312,3648, 328,2368, 336,1344, 344,3392, 352,832, 360,2880, 368,1856, 376,3904, 392,2240, 400,1216, 408,3264, 416,704, 424,2752, 432,1728, 440,3776, 456,2496, 464,1472, 472,3520, 480,960, 488,3008, 496,1984, 504,4032, 520,2080, 528,1056, 536,3104, 552,2592, 560,1568, 568,3616, 584,2336, 592,1312, 600,3360, 608,800, 616,2848, 624,1824, 632,3872, 648,2208, 656,1184, 664,3232, 680,2720, 688,1696, 696,3744, 712,2464, 720,1440, 728,3488, 736,928, 744,2976, 752,1952, 760,4000, 776,2144, 784,1120, 792,3168, 808,2656, 816,1632, 824,3680, 840,2400, 848,1376, 856,3424, 872,2912, 880,1888, 888,3936, 904,2272, 912,1248, 920,3296, 936,2784, 944,1760, 952,3808, 968,2528, 976,1504, 984,3552, 1000,3040, 1008,2016, 1016,4064, 1032,2064, 1048,3088, 1064,2576, 1072,1552, 1080,3600, 1096,2320, 1104,1296, 1112,3344, 1128,2832, 1136,1808, 1144,3856, 1160,2192, 1176,3216, 1192,2704, 1200,1680, 1208,3728, 1224,2448, 1232,1424, 1240,3472, 1256,2960, 1264,1936, 1272,3984, 1288,2128, 1304,3152, 1320,2640, 1328,1616, 1336,3664, 1352,2384, 1368,3408, 1384,2896, 1392,1872, 1400,3920, 1416,2256, 1432,3280, 1448,2768, 1456,1744, 1464,3792, 1480,2512, 1496,3536, 1512,3024, 1520,2000, 1528,4048, 1544,2096, 1560,3120, 1576,2608, 1592,3632, 1608,2352, 1624,3376, 1640,2864, 1648,1840, 1656,3888, 1672,2224, 1688,3248, 1704,2736, 1720,3760, 1736,2480, 1752,3504, 1768,2992, 1776,1968, 1784,4016, 1800,2160, 1816,3184, 1832,2672, 1848,3696, 1864,2416, 1880,3440, 1896,2928, 1912,3952, 1928,2288, 1944,3312, 1960,2800, 1976,3824, 1992,2544, 2008,3568, 2024,3056, 2040,4080, 2072,3080, 2088,2568, 2104,3592, 2120,2312, 2136,3336, 2152,2824, 2168,3848, 2200,3208, 2216,2696, 2232,3720, 2248,2440, 2264,3464, 2280,2952, 2296,3976, 2328,3144, 2344,2632, 2360,3656, 2392,3400, 2408,2888, 2424,3912, 2456,3272, 2472,2760, 2488,3784, 2520,3528, 2536,3016, 2552,4040, 2584,3112, 2616,3624, 2648,3368, 2664,2856, 2680,3880, 2712,3240, 2744,3752, 2776,3496, 2792,2984, 2808,4008, 2840,3176, 2872,3688, 2904,3432, 2936,3944, 2968,3304, 3000,3816, 3032,3560, 3064,4072, 3128,3608, 3160,3352, 3192,3864, 3256,3736, 3288,3480, 3320,3992, 3384,3672, 3448,3928, 3512,3800, 3576,4056, 3704,3896, 3832,4024 }; const uint16_t armBitRevIndexTable_fixed_1024[ARMBITREVINDEXTABLE_FIXED_1024_TABLE_LENGTH] ARM_DSP_TABLE_ATTRIBUTE = { /* radix 4, size 992 */ 8,4096, 16,2048, 24,6144, 32,1024, 40,5120, 48,3072, 56,7168, 64,512, 72,4608, 80,2560, 88,6656, 96,1536, 104,5632, 112,3584, 120,7680, 128,256, 136,4352, 144,2304, 152,6400, 160,1280, 168,5376, 176,3328, 184,7424, 192,768, 200,4864, 208,2816, 216,6912, 224,1792, 232,5888, 240,3840, 248,7936, 264,4224, 272,2176, 280,6272, 288,1152, 296,5248, 304,3200, 312,7296, 320,640, 328,4736, 336,2688, 344,6784, 352,1664, 360,5760, 368,3712, 376,7808, 392,4480, 400,2432, 408,6528, 416,1408, 424,5504, 432,3456, 440,7552, 448,896, 456,4992, 464,2944, 472,7040, 480,1920, 488,6016, 496,3968, 504,8064, 520,4160, 528,2112, 536,6208, 544,1088, 552,5184, 560,3136, 568,7232, 584,4672, 592,2624, 600,6720, 608,1600, 616,5696, 624,3648, 632,7744, 648,4416, 656,2368, 664,6464, 672,1344, 680,5440, 688,3392, 696,7488, 704,832, 712,4928, 720,2880, 728,6976, 736,1856, 744,5952, 752,3904, 760,8000, 776,4288, 784,2240, 792,6336, 800,1216, 808,5312, 816,3264, 824,7360, 840,4800, 848,2752, 856,6848, 864,1728, 872,5824, 880,3776, 888,7872, 904,4544, 912,2496, 920,6592, 928,1472, 936,5568, 944,3520, 952,7616, 968,5056, 976,3008, 984,7104, 992,1984, 1000,6080, 1008,4032, 1016,8128, 1032,4128, 1040,2080, 1048,6176, 1064,5152, 1072,3104, 1080,7200, 1096,4640, 1104,2592, 1112,6688, 1120,1568, 1128,5664, 1136,3616, 1144,7712, 1160,4384, 1168,2336, 1176,6432, 1184,1312, 1192,5408, 1200,3360, 1208,7456, 1224,4896, 1232,2848, 1240,6944, 1248,1824, 1256,5920, 1264,3872, 1272,7968, 1288,4256, 1296,2208, 1304,6304, 1320,5280, 1328,3232, 1336,7328, 1352,4768, 1360,2720, 1368,6816, 1376,1696, 1384,5792, 1392,3744, 1400,7840, 1416,4512, 1424,2464, 1432,6560, 1448,5536, 1456,3488, 1464,7584, 1480,5024, 1488,2976, 1496,7072, 1504,1952, 1512,6048, 1520,4000, 1528,8096, 1544,4192, 1552,2144, 1560,6240, 1576,5216, 1584,3168, 1592,7264, 1608,4704, 1616,2656, 1624,6752, 1640,5728, 1648,3680, 1656,7776, 1672,4448, 1680,2400, 1688,6496, 1704,5472, 1712,3424, 1720,7520, 1736,4960, 1744,2912, 1752,7008, 1760,1888, 1768,5984, 1776,3936, 1784,8032, 1800,4320, 1808,2272, 1816,6368, 1832,5344, 1840,3296, 1848,7392, 1864,4832, 1872,2784, 1880,6880, 1896,5856, 1904,3808, 1912,7904, 1928,4576, 1936,2528, 1944,6624, 1960,5600, 1968,3552, 1976,7648, 1992,5088, 2000,3040, 2008,7136, 2024,6112, 2032,4064, 2040,8160, 2056,4112, 2072,6160, 2088,5136, 2096,3088, 2104,7184, 2120,4624, 2128,2576, 2136,6672, 2152,5648, 2160,3600, 2168,7696, 2184,4368, 2192,2320, 2200,6416, 2216,5392, 2224,3344, 2232,7440, 2248,4880, 2256,2832, 2264,6928, 2280,5904, 2288,3856, 2296,7952, 2312,4240, 2328,6288, 2344,5264, 2352,3216, 2360,7312, 2376,4752, 2384,2704, 2392,6800, 2408,5776, 2416,3728, 2424,7824, 2440,4496, 2456,6544, 2472,5520, 2480,3472, 2488,7568, 2504,5008, 2512,2960, 2520,7056, 2536,6032, 2544,3984, 2552,8080, 2568,4176, 2584,6224, 2600,5200, 2608,3152, 2616,7248, 2632,4688, 2648,6736, 2664,5712, 2672,3664, 2680,7760, 2696,4432, 2712,6480, 2728,5456, 2736,3408, 2744,7504, 2760,4944, 2768,2896, 2776,6992, 2792,5968, 2800,3920, 2808,8016, 2824,4304, 2840,6352, 2856,5328, 2864,3280, 2872,7376, 2888,4816, 2904,6864, 2920,5840, 2928,3792, 2936,7888, 2952,4560, 2968,6608, 2984,5584, 2992,3536, 3000,7632, 3016,5072, 3032,7120, 3048,6096, 3056,4048, 3064,8144, 3080,4144, 3096,6192, 3112,5168, 3128,7216, 3144,4656, 3160,6704, 3176,5680, 3184,3632, 3192,7728, 3208,4400, 3224,6448, 3240,5424, 3248,3376, 3256,7472, 3272,4912, 3288,6960, 3304,5936, 3312,3888, 3320,7984, 3336,4272, 3352,6320, 3368,5296, 3384,7344, 3400,4784, 3416,6832, 3432,5808, 3440,3760, 3448,7856, 3464,4528, 3480,6576, 3496,5552, 3512,7600, 3528,5040, 3544,7088, 3560,6064, 3568,4016, 3576,8112, 3592,4208, 3608,6256, 3624,5232, 3640,7280, 3656,4720, 3672,6768, 3688,5744, 3704,7792, 3720,4464, 3736,6512, 3752,5488, 3768,7536, 3784,4976, 3800,7024, 3816,6000, 3824,3952, 3832,8048, 3848,4336, 3864,6384, 3880,5360, 3896,7408, 3912,4848, 3928,6896, 3944,5872, 3960,7920, 3976,4592, 3992,6640, 4008,5616, 4024,7664, 4040,5104, 4056,7152, 4072,6128, 4088,8176, 4120,6152, 4136,5128, 4152,7176, 4168,4616, 4184,6664, 4200,5640, 4216,7688, 4232,4360, 4248,6408, 4264,5384, 4280,7432, 4296,4872, 4312,6920, 4328,5896, 4344,7944, 4376,6280, 4392,5256, 4408,7304, 4424,4744, 4440,6792, 4456,5768, 4472,7816, 4504,6536, 4520,5512, 4536,7560, 4552,5000, 4568,7048, 4584,6024, 4600,8072, 4632,6216, 4648,5192, 4664,7240, 4696,6728, 4712,5704, 4728,7752, 4760,6472, 4776,5448, 4792,7496, 4808,4936, 4824,6984, 4840,5960, 4856,8008, 4888,6344, 4904,5320, 4920,7368, 4952,6856, 4968,5832, 4984,7880, 5016,6600, 5032,5576, 5048,7624, 5080,7112, 5096,6088, 5112,8136, 5144,6184, 5176,7208, 5208,6696, 5224,5672, 5240,7720, 5272,6440, 5288,5416, 5304,7464, 5336,6952, 5352,5928, 5368,7976, 5400,6312, 5432,7336, 5464,6824, 5480,5800, 5496,7848, 5528,6568, 5560,7592, 5592,7080, 5608,6056, 5624,8104, 5656,6248, 5688,7272, 5720,6760, 5752,7784, 5784,6504, 5816,7528, 5848,7016, 5864,5992, 5880,8040, 5912,6376, 5944,7400, 5976,6888, 6008,7912, 6040,6632, 6072,7656, 6104,7144, 6136,8168, 6200,7192, 6232,6680, 6264,7704, 6296,6424, 6328,7448, 6360,6936, 6392,7960, 6456,7320, 6488,6808, 6520,7832, 6584,7576, 6616,7064, 6648,8088, 6712,7256, 6776,7768, 6840,7512, 6872,7000, 6904,8024, 6968,7384, 7032,7896, 7096,7640, 7160,8152, 7288,7736, 7352,7480, 7416,7992, 7544,7864, 7672,8120, 7928,8056 }; const uint16_t armBitRevIndexTable_fixed_2048[ARMBITREVINDEXTABLE_FIXED_2048_TABLE_LENGTH] ARM_DSP_TABLE_ATTRIBUTE = { /* 4x2, size 1984 */ 8,8192, 16,4096, 24,12288, 32,2048, 40,10240, 48,6144, 56,14336, 64,1024, 72,9216, 80,5120, 88,13312, 96,3072, 104,11264, 112,7168, 120,15360, 128,512, 136,8704, 144,4608, 152,12800, 160,2560, 168,10752, 176,6656, 184,14848, 192,1536, 200,9728, 208,5632, 216,13824, 224,3584, 232,11776, 240,7680, 248,15872, 264,8448, 272,4352, 280,12544, 288,2304, 296,10496, 304,6400, 312,14592, 320,1280, 328,9472, 336,5376, 344,13568, 352,3328, 360,11520, 368,7424, 376,15616, 384,768, 392,8960, 400,4864, 408,13056, 416,2816, 424,11008, 432,6912, 440,15104, 448,1792, 456,9984, 464,5888, 472,14080, 480,3840, 488,12032, 496,7936, 504,16128, 520,8320, 528,4224, 536,12416, 544,2176, 552,10368, 560,6272, 568,14464, 576,1152, 584,9344, 592,5248, 600,13440, 608,3200, 616,11392, 624,7296, 632,15488, 648,8832, 656,4736, 664,12928, 672,2688, 680,10880, 688,6784, 696,14976, 704,1664, 712,9856, 720,5760, 728,13952, 736,3712, 744,11904, 752,7808, 760,16000, 776,8576, 784,4480, 792,12672, 800,2432, 808,10624, 816,6528, 824,14720, 832,1408, 840,9600, 848,5504, 856,13696, 864,3456, 872,11648, 880,7552, 888,15744, 904,9088, 912,4992, 920,13184, 928,2944, 936,11136, 944,7040, 952,15232, 960,1920, 968,10112, 976,6016, 984,14208, 992,3968, 1000,12160, 1008,8064, 1016,16256, 1032,8256, 1040,4160, 1048,12352, 1056,2112, 1064,10304, 1072,6208, 1080,14400, 1096,9280, 1104,5184, 1112,13376, 1120,3136, 1128,11328, 1136,7232, 1144,15424, 1160,8768, 1168,4672, 1176,12864, 1184,2624, 1192,10816, 1200,6720, 1208,14912, 1216,1600, 1224,9792, 1232,5696, 1240,13888, 1248,3648, 1256,11840, 1264,7744, 1272,15936, 1288,8512, 1296,4416, 1304,12608, 1312,2368, 1320,10560, 1328,6464, 1336,14656, 1352,9536, 1360,5440, 1368,13632, 1376,3392, 1384,11584, 1392,7488, 1400,15680, 1416,9024, 1424,4928, 1432,13120, 1440,2880, 1448,11072, 1456,6976, 1464,15168, 1472,1856, 1480,10048, 1488,5952, 1496,14144, 1504,3904, 1512,12096, 1520,8000, 1528,16192, 1544,8384, 1552,4288, 1560,12480, 1568,2240, 1576,10432, 1584,6336, 1592,14528, 1608,9408, 1616,5312, 1624,13504, 1632,3264, 1640,11456, 1648,7360, 1656,15552, 1672,8896, 1680,4800, 1688,12992, 1696,2752, 1704,10944, 1712,6848, 1720,15040, 1736,9920, 1744,5824, 1752,14016, 1760,3776, 1768,11968, 1776,7872, 1784,16064, 1800,8640, 1808,4544, 1816,12736, 1824,2496, 1832,10688, 1840,6592, 1848,14784, 1864,9664, 1872,5568, 1880,13760, 1888,3520, 1896,11712, 1904,7616, 1912,15808, 1928,9152, 1936,5056, 1944,13248, 1952,3008, 1960,11200, 1968,7104, 1976,15296, 1992,10176, 2000,6080, 2008,14272, 2016,4032, 2024,12224, 2032,8128, 2040,16320, 2056,8224, 2064,4128, 2072,12320, 2088,10272, 2096,6176, 2104,14368, 2120,9248, 2128,5152, 2136,13344, 2144,3104, 2152,11296, 2160,7200, 2168,15392, 2184,8736, 2192,4640, 2200,12832, 2208,2592, 2216,10784, 2224,6688, 2232,14880, 2248,9760, 2256,5664, 2264,13856, 2272,3616, 2280,11808, 2288,7712, 2296,15904, 2312,8480, 2320,4384, 2328,12576, 2344,10528, 2352,6432, 2360,14624, 2376,9504, 2384,5408, 2392,13600, 2400,3360, 2408,11552, 2416,7456, 2424,15648, 2440,8992, 2448,4896, 2456,13088, 2464,2848, 2472,11040, 2480,6944, 2488,15136, 2504,10016, 2512,5920, 2520,14112, 2528,3872, 2536,12064, 2544,7968, 2552,16160, 2568,8352, 2576,4256, 2584,12448, 2600,10400, 2608,6304, 2616,14496, 2632,9376, 2640,5280, 2648,13472, 2656,3232, 2664,11424, 2672,7328, 2680,15520, 2696,8864, 2704,4768, 2712,12960, 2728,10912, 2736,6816, 2744,15008, 2760,9888, 2768,5792, 2776,13984, 2784,3744, 2792,11936, 2800,7840, 2808,16032, 2824,8608, 2832,4512, 2840,12704, 2856,10656, 2864,6560, 2872,14752, 2888,9632, 2896,5536, 2904,13728, 2912,3488, 2920,11680, 2928,7584, 2936,15776, 2952,9120, 2960,5024, 2968,13216, 2984,11168, 2992,7072, 3000,15264, 3016,10144, 3024,6048, 3032,14240, 3040,4000, 3048,12192, 3056,8096, 3064,16288, 3080,8288, 3088,4192, 3096,12384, 3112,10336, 3120,6240, 3128,14432, 3144,9312, 3152,5216, 3160,13408, 3176,11360, 3184,7264, 3192,15456, 3208,8800, 3216,4704, 3224,12896, 3240,10848, 3248,6752, 3256,14944, 3272,9824, 3280,5728, 3288,13920, 3296,3680, 3304,11872, 3312,7776, 3320,15968, 3336,8544, 3344,4448, 3352,12640, 3368,10592, 3376,6496, 3384,14688, 3400,9568, 3408,5472, 3416,13664, 3432,11616, 3440,7520, 3448,15712, 3464,9056, 3472,4960, 3480,13152, 3496,11104, 3504,7008, 3512,15200, 3528,10080, 3536,5984, 3544,14176, 3552,3936, 3560,12128, 3568,8032, 3576,16224, 3592,8416, 3600,4320, 3608,12512, 3624,10464, 3632,6368, 3640,14560, 3656,9440, 3664,5344, 3672,13536, 3688,11488, 3696,7392, 3704,15584, 3720,8928, 3728,4832, 3736,13024, 3752,10976, 3760,6880, 3768,15072, 3784,9952, 3792,5856, 3800,14048, 3816,12000, 3824,7904, 3832,16096, 3848,8672, 3856,4576, 3864,12768, 3880,10720, 3888,6624, 3896,14816, 3912,9696, 3920,5600, 3928,13792, 3944,11744, 3952,7648, 3960,15840, 3976,9184, 3984,5088, 3992,13280, 4008,11232, 4016,7136, 4024,15328, 4040,10208, 4048,6112, 4056,14304, 4072,12256, 4080,8160, 4088,16352, 4104,8208, 4120,12304, 4136,10256, 4144,6160, 4152,14352, 4168,9232, 4176,5136, 4184,13328, 4200,11280, 4208,7184, 4216,15376, 4232,8720, 4240,4624, 4248,12816, 4264,10768, 4272,6672, 4280,14864, 4296,9744, 4304,5648, 4312,13840, 4328,11792, 4336,7696, 4344,15888, 4360,8464, 4376,12560, 4392,10512, 4400,6416, 4408,14608, 4424,9488, 4432,5392, 4440,13584, 4456,11536, 4464,7440, 4472,15632, 4488,8976, 4496,4880, 4504,13072, 4520,11024, 4528,6928, 4536,15120, 4552,10000, 4560,5904, 4568,14096, 4584,12048, 4592,7952, 4600,16144, 4616,8336, 4632,12432, 4648,10384, 4656,6288, 4664,14480, 4680,9360, 4688,5264, 4696,13456, 4712,11408, 4720,7312, 4728,15504, 4744,8848, 4760,12944, 4776,10896, 4784,6800, 4792,14992, 4808,9872, 4816,5776, 4824,13968, 4840,11920, 4848,7824, 4856,16016, 4872,8592, 4888,12688, 4904,10640, 4912,6544, 4920,14736, 4936,9616, 4944,5520, 4952,13712, 4968,11664, 4976,7568, 4984,15760, 5000,9104, 5016,13200, 5032,11152, 5040,7056, 5048,15248, 5064,10128, 5072,6032, 5080,14224, 5096,12176, 5104,8080, 5112,16272, 5128,8272, 5144,12368, 5160,10320, 5168,6224, 5176,14416, 5192,9296, 5208,13392, 5224,11344, 5232,7248, 5240,15440, 5256,8784, 5272,12880, 5288,10832, 5296,6736, 5304,14928, 5320,9808, 5328,5712, 5336,13904, 5352,11856, 5360,7760, 5368,15952, 5384,8528, 5400,12624, 5416,10576, 5424,6480, 5432,14672, 5448,9552, 5464,13648, 5480,11600, 5488,7504, 5496,15696, 5512,9040, 5528,13136, 5544,11088, 5552,6992, 5560,15184, 5576,10064, 5584,5968, 5592,14160, 5608,12112, 5616,8016, 5624,16208, 5640,8400, 5656,12496, 5672,10448, 5680,6352, 5688,14544, 5704,9424, 5720,13520, 5736,11472, 5744,7376, 5752,15568, 5768,8912, 5784,13008, 5800,10960, 5808,6864, 5816,15056, 5832,9936, 5848,14032, 5864,11984, 5872,7888, 5880,16080, 5896,8656, 5912,12752, 5928,10704, 5936,6608, 5944,14800, 5960,9680, 5976,13776, 5992,11728, 6000,7632, 6008,15824, 6024,9168, 6040,13264, 6056,11216, 6064,7120, 6072,15312, 6088,10192, 6104,14288, 6120,12240, 6128,8144, 6136,16336, 6152,8240, 6168,12336, 6184,10288, 6200,14384, 6216,9264, 6232,13360, 6248,11312, 6256,7216, 6264,15408, 6280,8752, 6296,12848, 6312,10800, 6320,6704, 6328,14896, 6344,9776, 6360,13872, 6376,11824, 6384,7728, 6392,15920, 6408,8496, 6424,12592, 6440,10544, 6456,14640, 6472,9520, 6488,13616, 6504,11568, 6512,7472, 6520,15664, 6536,9008, 6552,13104, 6568,11056, 6576,6960, 6584,15152, 6600,10032, 6616,14128, 6632,12080, 6640,7984, 6648,16176, 6664,8368, 6680,12464, 6696,10416, 6712,14512, 6728,9392, 6744,13488, 6760,11440, 6768,7344, 6776,15536, 6792,8880, 6808,12976, 6824,10928, 6840,15024, 6856,9904, 6872,14000, 6888,11952, 6896,7856, 6904,16048, 6920,8624, 6936,12720, 6952,10672, 6968,14768, 6984,9648, 7000,13744, 7016,11696, 7024,7600, 7032,15792, 7048,9136, 7064,13232, 7080,11184, 7096,15280, 7112,10160, 7128,14256, 7144,12208, 7152,8112, 7160,16304, 7176,8304, 7192,12400, 7208,10352, 7224,14448, 7240,9328, 7256,13424, 7272,11376, 7288,15472, 7304,8816, 7320,12912, 7336,10864, 7352,14960, 7368,9840, 7384,13936, 7400,11888, 7408,7792, 7416,15984, 7432,8560, 7448,12656, 7464,10608, 7480,14704, 7496,9584, 7512,13680, 7528,11632, 7544,15728, 7560,9072, 7576,13168, 7592,11120, 7608,15216, 7624,10096, 7640,14192, 7656,12144, 7664,8048, 7672,16240, 7688,8432, 7704,12528, 7720,10480, 7736,14576, 7752,9456, 7768,13552, 7784,11504, 7800,15600, 7816,8944, 7832,13040, 7848,10992, 7864,15088, 7880,9968, 7896,14064, 7912,12016, 7928,16112, 7944,8688, 7960,12784, 7976,10736, 7992,14832, 8008,9712, 8024,13808, 8040,11760, 8056,15856, 8072,9200, 8088,13296, 8104,11248, 8120,15344, 8136,10224, 8152,14320, 8168,12272, 8184,16368, 8216,12296, 8232,10248, 8248,14344, 8264,9224, 8280,13320, 8296,11272, 8312,15368, 8328,8712, 8344,12808, 8360,10760, 8376,14856, 8392,9736, 8408,13832, 8424,11784, 8440,15880, 8472,12552, 8488,10504, 8504,14600, 8520,9480, 8536,13576, 8552,11528, 8568,15624, 8584,8968, 8600,13064, 8616,11016, 8632,15112, 8648,9992, 8664,14088, 8680,12040, 8696,16136, 8728,12424, 8744,10376, 8760,14472, 8776,9352, 8792,13448, 8808,11400, 8824,15496, 8856,12936, 8872,10888, 8888,14984, 8904,9864, 8920,13960, 8936,11912, 8952,16008, 8984,12680, 9000,10632, 9016,14728, 9032,9608, 9048,13704, 9064,11656, 9080,15752, 9112,13192, 9128,11144, 9144,15240, 9160,10120, 9176,14216, 9192,12168, 9208,16264, 9240,12360, 9256,10312, 9272,14408, 9304,13384, 9320,11336, 9336,15432, 9368,12872, 9384,10824, 9400,14920, 9416,9800, 9432,13896, 9448,11848, 9464,15944, 9496,12616, 9512,10568, 9528,14664, 9560,13640, 9576,11592, 9592,15688, 9624,13128, 9640,11080, 9656,15176, 9672,10056, 9688,14152, 9704,12104, 9720,16200, 9752,12488, 9768,10440, 9784,14536, 9816,13512, 9832,11464, 9848,15560, 9880,13000, 9896,10952, 9912,15048, 9944,14024, 9960,11976, 9976,16072, 10008,12744, 10024,10696, 10040,14792, 10072,13768, 10088,11720, 10104,15816, 10136,13256, 10152,11208, 10168,15304, 10200,14280, 10216,12232, 10232,16328, 10264,12328, 10296,14376, 10328,13352, 10344,11304, 10360,15400, 10392,12840, 10408,10792, 10424,14888, 10456,13864, 10472,11816, 10488,15912, 10520,12584, 10552,14632, 10584,13608, 10600,11560, 10616,15656, 10648,13096, 10664,11048, 10680,15144, 10712,14120, 10728,12072, 10744,16168, 10776,12456, 10808,14504, 10840,13480, 10856,11432, 10872,15528, 10904,12968, 10936,15016, 10968,13992, 10984,11944, 11000,16040, 11032,12712, 11064,14760, 11096,13736, 11112,11688, 11128,15784, 11160,13224, 11192,15272, 11224,14248, 11240,12200, 11256,16296, 11288,12392, 11320,14440, 11352,13416, 11384,15464, 11416,12904, 11448,14952, 11480,13928, 11496,11880, 11512,15976, 11544,12648, 11576,14696, 11608,13672, 11640,15720, 11672,13160, 11704,15208, 11736,14184, 11752,12136, 11768,16232, 11800,12520, 11832,14568, 11864,13544, 11896,15592, 11928,13032, 11960,15080, 11992,14056, 12024,16104, 12056,12776, 12088,14824, 12120,13800, 12152,15848, 12184,13288, 12216,15336, 12248,14312, 12280,16360, 12344,14360, 12376,13336, 12408,15384, 12440,12824, 12472,14872, 12504,13848, 12536,15896, 12600,14616, 12632,13592, 12664,15640, 12696,13080, 12728,15128, 12760,14104, 12792,16152, 12856,14488, 12888,13464, 12920,15512, 12984,15000, 13016,13976, 13048,16024, 13112,14744, 13144,13720, 13176,15768, 13240,15256, 13272,14232, 13304,16280, 13368,14424, 13432,15448, 13496,14936, 13528,13912, 13560,15960, 13624,14680, 13688,15704, 13752,15192, 13784,14168, 13816,16216, 13880,14552, 13944,15576, 14008,15064, 14072,16088, 14136,14808, 14200,15832, 14264,15320, 14328,16344, 14456,15416, 14520,14904, 14584,15928, 14712,15672, 14776,15160, 14840,16184, 14968,15544, 15096,16056, 15224,15800, 15352,16312, 15608,15992, 15864,16248 }; const uint16_t armBitRevIndexTable_fixed_4096[ARMBITREVINDEXTABLE_FIXED_4096_TABLE_LENGTH] ARM_DSP_TABLE_ATTRIBUTE = { /* radix 4, size 4032 */ 8,16384, 16,8192, 24,24576, 32,4096, 40,20480, 48,12288, 56,28672, 64,2048, 72,18432, 80,10240, 88,26624, 96,6144, 104,22528, 112,14336, 120,30720, 128,1024, 136,17408, 144,9216, 152,25600, 160,5120, 168,21504, 176,13312, 184,29696, 192,3072, 200,19456, 208,11264, 216,27648, 224,7168, 232,23552, 240,15360, 248,31744, 256,512, 264,16896, 272,8704, 280,25088, 288,4608, 296,20992, 304,12800, 312,29184, 320,2560, 328,18944, 336,10752, 344,27136, 352,6656, 360,23040, 368,14848, 376,31232, 384,1536, 392,17920, 400,9728, 408,26112, 416,5632, 424,22016, 432,13824, 440,30208, 448,3584, 456,19968, 464,11776, 472,28160, 480,7680, 488,24064, 496,15872, 504,32256, 520,16640, 528,8448, 536,24832, 544,4352, 552,20736, 560,12544, 568,28928, 576,2304, 584,18688, 592,10496, 600,26880, 608,6400, 616,22784, 624,14592, 632,30976, 640,1280, 648,17664, 656,9472, 664,25856, 672,5376, 680,21760, 688,13568, 696,29952, 704,3328, 712,19712, 720,11520, 728,27904, 736,7424, 744,23808, 752,15616, 760,32000, 776,17152, 784,8960, 792,25344, 800,4864, 808,21248, 816,13056, 824,29440, 832,2816, 840,19200, 848,11008, 856,27392, 864,6912, 872,23296, 880,15104, 888,31488, 896,1792, 904,18176, 912,9984, 920,26368, 928,5888, 936,22272, 944,14080, 952,30464, 960,3840, 968,20224, 976,12032, 984,28416, 992,7936, 1000,24320, 1008,16128, 1016,32512, 1032,16512, 1040,8320, 1048,24704, 1056,4224, 1064,20608, 1072,12416, 1080,28800, 1088,2176, 1096,18560, 1104,10368, 1112,26752, 1120,6272, 1128,22656, 1136,14464, 1144,30848, 1160,17536, 1168,9344, 1176,25728, 1184,5248, 1192,21632, 1200,13440, 1208,29824, 1216,3200, 1224,19584, 1232,11392, 1240,27776, 1248,7296, 1256,23680, 1264,15488, 1272,31872, 1288,17024, 1296,8832, 1304,25216, 1312,4736, 1320,21120, 1328,12928, 1336,29312, 1344,2688, 1352,19072, 1360,10880, 1368,27264, 1376,6784, 1384,23168, 1392,14976, 1400,31360, 1408,1664, 1416,18048, 1424,9856, 1432,26240, 1440,5760, 1448,22144, 1456,13952, 1464,30336, 1472,3712, 1480,20096, 1488,11904, 1496,28288, 1504,7808, 1512,24192, 1520,16000, 1528,32384, 1544,16768, 1552,8576, 1560,24960, 1568,4480, 1576,20864, 1584,12672, 1592,29056, 1600,2432, 1608,18816, 1616,10624, 1624,27008, 1632,6528, 1640,22912, 1648,14720, 1656,31104, 1672,17792, 1680,9600, 1688,25984, 1696,5504, 1704,21888, 1712,13696, 1720,30080, 1728,3456, 1736,19840, 1744,11648, 1752,28032, 1760,7552, 1768,23936, 1776,15744, 1784,32128, 1800,17280, 1808,9088, 1816,25472, 1824,4992, 1832,21376, 1840,13184, 1848,29568, 1856,2944, 1864,19328, 1872,11136, 1880,27520, 1888,7040, 1896,23424, 1904,15232, 1912,31616, 1928,18304, 1936,10112, 1944,26496, 1952,6016, 1960,22400, 1968,14208, 1976,30592, 1984,3968, 1992,20352, 2000,12160, 2008,28544, 2016,8064, 2024,24448, 2032,16256, 2040,32640, 2056,16448, 2064,8256, 2072,24640, 2080,4160, 2088,20544, 2096,12352, 2104,28736, 2120,18496, 2128,10304, 2136,26688, 2144,6208, 2152,22592, 2160,14400, 2168,30784, 2184,17472, 2192,9280, 2200,25664, 2208,5184, 2216,21568, 2224,13376, 2232,29760, 2240,3136, 2248,19520, 2256,11328, 2264,27712, 2272,7232, 2280,23616, 2288,15424, 2296,31808, 2312,16960, 2320,8768, 2328,25152, 2336,4672, 2344,21056, 2352,12864, 2360,29248, 2368,2624, 2376,19008, 2384,10816, 2392,27200, 2400,6720, 2408,23104, 2416,14912, 2424,31296, 2440,17984, 2448,9792, 2456,26176, 2464,5696, 2472,22080, 2480,13888, 2488,30272, 2496,3648, 2504,20032, 2512,11840, 2520,28224, 2528,7744, 2536,24128, 2544,15936, 2552,32320, 2568,16704, 2576,8512, 2584,24896, 2592,4416, 2600,20800, 2608,12608, 2616,28992, 2632,18752, 2640,10560, 2648,26944, 2656,6464, 2664,22848, 2672,14656, 2680,31040, 2696,17728, 2704,9536, 2712,25920, 2720,5440, 2728,21824, 2736,13632, 2744,30016, 2752,3392, 2760,19776, 2768,11584, 2776,27968, 2784,7488, 2792,23872, 2800,15680, 2808,32064, 2824,17216, 2832,9024, 2840,25408, 2848,4928, 2856,21312, 2864,13120, 2872,29504, 2888,19264, 2896,11072, 2904,27456, 2912,6976, 2920,23360, 2928,15168, 2936,31552, 2952,18240, 2960,10048, 2968,26432, 2976,5952, 2984,22336, 2992,14144, 3000,30528, 3008,3904, 3016,20288, 3024,12096, 3032,28480, 3040,8000, 3048,24384, 3056,16192, 3064,32576, 3080,16576, 3088,8384, 3096,24768, 3104,4288, 3112,20672, 3120,12480, 3128,28864, 3144,18624, 3152,10432, 3160,26816, 3168,6336, 3176,22720, 3184,14528, 3192,30912, 3208,17600, 3216,9408, 3224,25792, 3232,5312, 3240,21696, 3248,13504, 3256,29888, 3272,19648, 3280,11456, 3288,27840, 3296,7360, 3304,23744, 3312,15552, 3320,31936, 3336,17088, 3344,8896, 3352,25280, 3360,4800, 3368,21184, 3376,12992, 3384,29376, 3400,19136, 3408,10944, 3416,27328, 3424,6848, 3432,23232, 3440,15040, 3448,31424, 3464,18112, 3472,9920, 3480,26304, 3488,5824, 3496,22208, 3504,14016, 3512,30400, 3520,3776, 3528,20160, 3536,11968, 3544,28352, 3552,7872, 3560,24256, 3568,16064, 3576,32448, 3592,16832, 3600,8640, 3608,25024, 3616,4544, 3624,20928, 3632,12736, 3640,29120, 3656,18880, 3664,10688, 3672,27072, 3680,6592, 3688,22976, 3696,14784, 3704,31168, 3720,17856, 3728,9664, 3736,26048, 3744,5568, 3752,21952, 3760,13760, 3768,30144, 3784,19904, 3792,11712, 3800,28096, 3808,7616, 3816,24000, 3824,15808, 3832,32192, 3848,17344, 3856,9152, 3864,25536, 3872,5056, 3880,21440, 3888,13248, 3896,29632, 3912,19392, 3920,11200, 3928,27584, 3936,7104, 3944,23488, 3952,15296, 3960,31680, 3976,18368, 3984,10176, 3992,26560, 4000,6080, 4008,22464, 4016,14272, 4024,30656, 4040,20416, 4048,12224, 4056,28608, 4064,8128, 4072,24512, 4080,16320, 4088,32704, 4104,16416, 4112,8224, 4120,24608, 4136,20512, 4144,12320, 4152,28704, 4168,18464, 4176,10272, 4184,26656, 4192,6176, 4200,22560, 4208,14368, 4216,30752, 4232,17440, 4240,9248, 4248,25632, 4256,5152, 4264,21536, 4272,13344, 4280,29728, 4296,19488, 4304,11296, 4312,27680, 4320,7200, 4328,23584, 4336,15392, 4344,31776, 4360,16928, 4368,8736, 4376,25120, 4384,4640, 4392,21024, 4400,12832, 4408,29216, 4424,18976, 4432,10784, 4440,27168, 4448,6688, 4456,23072, 4464,14880, 4472,31264, 4488,17952, 4496,9760, 4504,26144, 4512,5664, 4520,22048, 4528,13856, 4536,30240, 4552,20000, 4560,11808, 4568,28192, 4576,7712, 4584,24096, 4592,15904, 4600,32288, 4616,16672, 4624,8480, 4632,24864, 4648,20768, 4656,12576, 4664,28960, 4680,18720, 4688,10528, 4696,26912, 4704,6432, 4712,22816, 4720,14624, 4728,31008, 4744,17696, 4752,9504, 4760,25888, 4768,5408, 4776,21792, 4784,13600, 4792,29984, 4808,19744, 4816,11552, 4824,27936, 4832,7456, 4840,23840, 4848,15648, 4856,32032, 4872,17184, 4880,8992, 4888,25376, 4904,21280, 4912,13088, 4920,29472, 4936,19232, 4944,11040, 4952,27424, 4960,6944, 4968,23328, 4976,15136, 4984,31520, 5000,18208, 5008,10016, 5016,26400, 5024,5920, 5032,22304, 5040,14112, 5048,30496, 5064,20256, 5072,12064, 5080,28448, 5088,7968, 5096,24352, 5104,16160, 5112,32544, 5128,16544, 5136,8352, 5144,24736, 5160,20640, 5168,12448, 5176,28832, 5192,18592, 5200,10400, 5208,26784, 5216,6304, 5224,22688, 5232,14496, 5240,30880, 5256,17568, 5264,9376, 5272,25760, 5288,21664, 5296,13472, 5304,29856, 5320,19616, 5328,11424, 5336,27808, 5344,7328, 5352,23712, 5360,15520, 5368,31904, 5384,17056, 5392,8864, 5400,25248, 5416,21152, 5424,12960, 5432,29344, 5448,19104, 5456,10912, 5464,27296, 5472,6816, 5480,23200, 5488,15008, 5496,31392, 5512,18080, 5520,9888, 5528,26272, 5536,5792, 5544,22176, 5552,13984, 5560,30368, 5576,20128, 5584,11936, 5592,28320, 5600,7840, 5608,24224, 5616,16032, 5624,32416, 5640,16800, 5648,8608, 5656,24992, 5672,20896, 5680,12704, 5688,29088, 5704,18848, 5712,10656, 5720,27040, 5728,6560, 5736,22944, 5744,14752, 5752,31136, 5768,17824, 5776,9632, 5784,26016, 5800,21920, 5808,13728, 5816,30112, 5832,19872, 5840,11680, 5848,28064, 5856,7584, 5864,23968, 5872,15776, 5880,32160, 5896,17312, 5904,9120, 5912,25504, 5928,21408, 5936,13216, 5944,29600, 5960,19360, 5968,11168, 5976,27552, 5984,7072, 5992,23456, 6000,15264, 6008,31648, 6024,18336, 6032,10144, 6040,26528, 6056,22432, 6064,14240, 6072,30624, 6088,20384, 6096,12192, 6104,28576, 6112,8096, 6120,24480, 6128,16288, 6136,32672, 6152,16480, 6160,8288, 6168,24672, 6184,20576, 6192,12384, 6200,28768, 6216,18528, 6224,10336, 6232,26720, 6248,22624, 6256,14432, 6264,30816, 6280,17504, 6288,9312, 6296,25696, 6312,21600, 6320,13408, 6328,29792, 6344,19552, 6352,11360, 6360,27744, 6368,7264, 6376,23648, 6384,15456, 6392,31840, 6408,16992, 6416,8800, 6424,25184, 6440,21088, 6448,12896, 6456,29280, 6472,19040, 6480,10848, 6488,27232, 6496,6752, 6504,23136, 6512,14944, 6520,31328, 6536,18016, 6544,9824, 6552,26208, 6568,22112, 6576,13920, 6584,30304, 6600,20064, 6608,11872, 6616,28256, 6624,7776, 6632,24160, 6640,15968, 6648,32352, 6664,16736, 6672,8544, 6680,24928, 6696,20832, 6704,12640, 6712,29024, 6728,18784, 6736,10592, 6744,26976, 6760,22880, 6768,14688, 6776,31072, 6792,17760, 6800,9568, 6808,25952, 6824,21856, 6832,13664, 6840,30048, 6856,19808, 6864,11616, 6872,28000, 6880,7520, 6888,23904, 6896,15712, 6904,32096, 6920,17248, 6928,9056, 6936,25440, 6952,21344, 6960,13152, 6968,29536, 6984,19296, 6992,11104, 7000,27488, 7016,23392, 7024,15200, 7032,31584, 7048,18272, 7056,10080, 7064,26464, 7080,22368, 7088,14176, 7096,30560, 7112,20320, 7120,12128, 7128,28512, 7136,8032, 7144,24416, 7152,16224, 7160,32608, 7176,16608, 7184,8416, 7192,24800, 7208,20704, 7216,12512, 7224,28896, 7240,18656, 7248,10464, 7256,26848, 7272,22752, 7280,14560, 7288,30944, 7304,17632, 7312,9440, 7320,25824, 7336,21728, 7344,13536, 7352,29920, 7368,19680, 7376,11488, 7384,27872, 7400,23776, 7408,15584, 7416,31968, 7432,17120, 7440,8928, 7448,25312, 7464,21216, 7472,13024, 7480,29408, 7496,19168, 7504,10976, 7512,27360, 7528,23264, 7536,15072, 7544,31456, 7560,18144, 7568,9952, 7576,26336, 7592,22240, 7600,14048, 7608,30432, 7624,20192, 7632,12000, 7640,28384, 7648,7904, 7656,24288, 7664,16096, 7672,32480, 7688,16864, 7696,8672, 7704,25056, 7720,20960, 7728,12768, 7736,29152, 7752,18912, 7760,10720, 7768,27104, 7784,23008, 7792,14816, 7800,31200, 7816,17888, 7824,9696, 7832,26080, 7848,21984, 7856,13792, 7864,30176, 7880,19936, 7888,11744, 7896,28128, 7912,24032, 7920,15840, 7928,32224, 7944,17376, 7952,9184, 7960,25568, 7976,21472, 7984,13280, 7992,29664, 8008,19424, 8016,11232, 8024,27616, 8040,23520, 8048,15328, 8056,31712, 8072,18400, 8080,10208, 8088,26592, 8104,22496, 8112,14304, 8120,30688, 8136,20448, 8144,12256, 8152,28640, 8168,24544, 8176,16352, 8184,32736, 8200,16400, 8216,24592, 8232,20496, 8240,12304, 8248,28688, 8264,18448, 8272,10256, 8280,26640, 8296,22544, 8304,14352, 8312,30736, 8328,17424, 8336,9232, 8344,25616, 8360,21520, 8368,13328, 8376,29712, 8392,19472, 8400,11280, 8408,27664, 8424,23568, 8432,15376, 8440,31760, 8456,16912, 8464,8720, 8472,25104, 8488,21008, 8496,12816, 8504,29200, 8520,18960, 8528,10768, 8536,27152, 8552,23056, 8560,14864, 8568,31248, 8584,17936, 8592,9744, 8600,26128, 8616,22032, 8624,13840, 8632,30224, 8648,19984, 8656,11792, 8664,28176, 8680,24080, 8688,15888, 8696,32272, 8712,16656, 8728,24848, 8744,20752, 8752,12560, 8760,28944, 8776,18704, 8784,10512, 8792,26896, 8808,22800, 8816,14608, 8824,30992, 8840,17680, 8848,9488, 8856,25872, 8872,21776, 8880,13584, 8888,29968, 8904,19728, 8912,11536, 8920,27920, 8936,23824, 8944,15632, 8952,32016, 8968,17168, 8984,25360, 9000,21264, 9008,13072, 9016,29456, 9032,19216, 9040,11024, 9048,27408, 9064,23312, 9072,15120, 9080,31504, 9096,18192, 9104,10000, 9112,26384, 9128,22288, 9136,14096, 9144,30480, 9160,20240, 9168,12048, 9176,28432, 9192,24336, 9200,16144, 9208,32528, 9224,16528, 9240,24720, 9256,20624, 9264,12432, 9272,28816, 9288,18576, 9296,10384, 9304,26768, 9320,22672, 9328,14480, 9336,30864, 9352,17552, 9368,25744, 9384,21648, 9392,13456, 9400,29840, 9416,19600, 9424,11408, 9432,27792, 9448,23696, 9456,15504, 9464,31888, 9480,17040, 9496,25232, 9512,21136, 9520,12944, 9528,29328, 9544,19088, 9552,10896, 9560,27280, 9576,23184, 9584,14992, 9592,31376, 9608,18064, 9616,9872, 9624,26256, 9640,22160, 9648,13968, 9656,30352, 9672,20112, 9680,11920, 9688,28304, 9704,24208, 9712,16016, 9720,32400, 9736,16784, 9752,24976, 9768,20880, 9776,12688, 9784,29072, 9800,18832, 9808,10640, 9816,27024, 9832,22928, 9840,14736, 9848,31120, 9864,17808, 9880,26000, 9896,21904, 9904,13712, 9912,30096, 9928,19856, 9936,11664, 9944,28048, 9960,23952, 9968,15760, 9976,32144, 9992,17296, 10008,25488, 10024,21392, 10032,13200, 10040,29584, 10056,19344, 10064,11152, 10072,27536, 10088,23440, 10096,15248, 10104,31632, 10120,18320, 10136,26512, 10152,22416, 10160,14224, 10168,30608, 10184,20368, 10192,12176, 10200,28560, 10216,24464, 10224,16272, 10232,32656, 10248,16464, 10264,24656, 10280,20560, 10288,12368, 10296,28752, 10312,18512, 10328,26704, 10344,22608, 10352,14416, 10360,30800, 10376,17488, 10392,25680, 10408,21584, 10416,13392, 10424,29776, 10440,19536, 10448,11344, 10456,27728, 10472,23632, 10480,15440, 10488,31824, 10504,16976, 10520,25168, 10536,21072, 10544,12880, 10552,29264, 10568,19024, 10576,10832, 10584,27216, 10600,23120, 10608,14928, 10616,31312, 10632,18000, 10648,26192, 10664,22096, 10672,13904, 10680,30288, 10696,20048, 10704,11856, 10712,28240, 10728,24144, 10736,15952, 10744,32336, 10760,16720, 10776,24912, 10792,20816, 10800,12624, 10808,29008, 10824,18768, 10840,26960, 10856,22864, 10864,14672, 10872,31056, 10888,17744, 10904,25936, 10920,21840, 10928,13648, 10936,30032, 10952,19792, 10960,11600, 10968,27984, 10984,23888, 10992,15696, 11000,32080, 11016,17232, 11032,25424, 11048,21328, 11056,13136, 11064,29520, 11080,19280, 11096,27472, 11112,23376, 11120,15184, 11128,31568, 11144,18256, 11160,26448, 11176,22352, 11184,14160, 11192,30544, 11208,20304, 11216,12112, 11224,28496, 11240,24400, 11248,16208, 11256,32592, 11272,16592, 11288,24784, 11304,20688, 11312,12496, 11320,28880, 11336,18640, 11352,26832, 11368,22736, 11376,14544, 11384,30928, 11400,17616, 11416,25808, 11432,21712, 11440,13520, 11448,29904, 11464,19664, 11480,27856, 11496,23760, 11504,15568, 11512,31952, 11528,17104, 11544,25296, 11560,21200, 11568,13008, 11576,29392, 11592,19152, 11608,27344, 11624,23248, 11632,15056, 11640,31440, 11656,18128, 11672,26320, 11688,22224, 11696,14032, 11704,30416, 11720,20176, 11728,11984, 11736,28368, 11752,24272, 11760,16080, 11768,32464, 11784,16848, 11800,25040, 11816,20944, 11824,12752, 11832,29136, 11848,18896, 11864,27088, 11880,22992, 11888,14800, 11896,31184, 11912,17872, 11928,26064, 11944,21968, 11952,13776, 11960,30160, 11976,19920, 11992,28112, 12008,24016, 12016,15824, 12024,32208, 12040,17360, 12056,25552, 12072,21456, 12080,13264, 12088,29648, 12104,19408, 12120,27600, 12136,23504, 12144,15312, 12152,31696, 12168,18384, 12184,26576, 12200,22480, 12208,14288, 12216,30672, 12232,20432, 12248,28624, 12264,24528, 12272,16336, 12280,32720, 12296,16432, 12312,24624, 12328,20528, 12344,28720, 12360,18480, 12376,26672, 12392,22576, 12400,14384, 12408,30768, 12424,17456, 12440,25648, 12456,21552, 12464,13360, 12472,29744, 12488,19504, 12504,27696, 12520,23600, 12528,15408, 12536,31792, 12552,16944, 12568,25136, 12584,21040, 12592,12848, 12600,29232, 12616,18992, 12632,27184, 12648,23088, 12656,14896, 12664,31280, 12680,17968, 12696,26160, 12712,22064, 12720,13872, 12728,30256, 12744,20016, 12760,28208, 12776,24112, 12784,15920, 12792,32304, 12808,16688, 12824,24880, 12840,20784, 12856,28976, 12872,18736, 12888,26928, 12904,22832, 12912,14640, 12920,31024, 12936,17712, 12952,25904, 12968,21808, 12976,13616, 12984,30000, 13000,19760, 13016,27952, 13032,23856, 13040,15664, 13048,32048, 13064,17200, 13080,25392, 13096,21296, 13112,29488, 13128,19248, 13144,27440, 13160,23344, 13168,15152, 13176,31536, 13192,18224, 13208,26416, 13224,22320, 13232,14128, 13240,30512, 13256,20272, 13272,28464, 13288,24368, 13296,16176, 13304,32560, 13320,16560, 13336,24752, 13352,20656, 13368,28848, 13384,18608, 13400,26800, 13416,22704, 13424,14512, 13432,30896, 13448,17584, 13464,25776, 13480,21680, 13496,29872, 13512,19632, 13528,27824, 13544,23728, 13552,15536, 13560,31920, 13576,17072, 13592,25264, 13608,21168, 13624,29360, 13640,19120, 13656,27312, 13672,23216, 13680,15024, 13688,31408, 13704,18096, 13720,26288, 13736,22192, 13744,14000, 13752,30384, 13768,20144, 13784,28336, 13800,24240, 13808,16048, 13816,32432, 13832,16816, 13848,25008, 13864,20912, 13880,29104, 13896,18864, 13912,27056, 13928,22960, 13936,14768, 13944,31152, 13960,17840, 13976,26032, 13992,21936, 14008,30128, 14024,19888, 14040,28080, 14056,23984, 14064,15792, 14072,32176, 14088,17328, 14104,25520, 14120,21424, 14136,29616, 14152,19376, 14168,27568, 14184,23472, 14192,15280, 14200,31664, 14216,18352, 14232,26544, 14248,22448, 14264,30640, 14280,20400, 14296,28592, 14312,24496, 14320,16304, 14328,32688, 14344,16496, 14360,24688, 14376,20592, 14392,28784, 14408,18544, 14424,26736, 14440,22640, 14456,30832, 14472,17520, 14488,25712, 14504,21616, 14520,29808, 14536,19568, 14552,27760, 14568,23664, 14576,15472, 14584,31856, 14600,17008, 14616,25200, 14632,21104, 14648,29296, 14664,19056, 14680,27248, 14696,23152, 14704,14960, 14712,31344, 14728,18032, 14744,26224, 14760,22128, 14776,30320, 14792,20080, 14808,28272, 14824,24176, 14832,15984, 14840,32368, 14856,16752, 14872,24944, 14888,20848, 14904,29040, 14920,18800, 14936,26992, 14952,22896, 14968,31088, 14984,17776, 15000,25968, 15016,21872, 15032,30064, 15048,19824, 15064,28016, 15080,23920, 15088,15728, 15096,32112, 15112,17264, 15128,25456, 15144,21360, 15160,29552, 15176,19312, 15192,27504, 15208,23408, 15224,31600, 15240,18288, 15256,26480, 15272,22384, 15288,30576, 15304,20336, 15320,28528, 15336,24432, 15344,16240, 15352,32624, 15368,16624, 15384,24816, 15400,20720, 15416,28912, 15432,18672, 15448,26864, 15464,22768, 15480,30960, 15496,17648, 15512,25840, 15528,21744, 15544,29936, 15560,19696, 15576,27888, 15592,23792, 15608,31984, 15624,17136, 15640,25328, 15656,21232, 15672,29424, 15688,19184, 15704,27376, 15720,23280, 15736,31472, 15752,18160, 15768,26352, 15784,22256, 15800,30448, 15816,20208, 15832,28400, 15848,24304, 15856,16112, 15864,32496, 15880,16880, 15896,25072, 15912,20976, 15928,29168, 15944,18928, 15960,27120, 15976,23024, 15992,31216, 16008,17904, 16024,26096, 16040,22000, 16056,30192, 16072,19952, 16088,28144, 16104,24048, 16120,32240, 16136,17392, 16152,25584, 16168,21488, 16184,29680, 16200,19440, 16216,27632, 16232,23536, 16248,31728, 16264,18416, 16280,26608, 16296,22512, 16312,30704, 16328,20464, 16344,28656, 16360,24560, 16376,32752, 16408,24584, 16424,20488, 16440,28680, 16456,18440, 16472,26632, 16488,22536, 16504,30728, 16520,17416, 16536,25608, 16552,21512, 16568,29704, 16584,19464, 16600,27656, 16616,23560, 16632,31752, 16648,16904, 16664,25096, 16680,21000, 16696,29192, 16712,18952, 16728,27144, 16744,23048, 16760,31240, 16776,17928, 16792,26120, 16808,22024, 16824,30216, 16840,19976, 16856,28168, 16872,24072, 16888,32264, 16920,24840, 16936,20744, 16952,28936, 16968,18696, 16984,26888, 17000,22792, 17016,30984, 17032,17672, 17048,25864, 17064,21768, 17080,29960, 17096,19720, 17112,27912, 17128,23816, 17144,32008, 17176,25352, 17192,21256, 17208,29448, 17224,19208, 17240,27400, 17256,23304, 17272,31496, 17288,18184, 17304,26376, 17320,22280, 17336,30472, 17352,20232, 17368,28424, 17384,24328, 17400,32520, 17432,24712, 17448,20616, 17464,28808, 17480,18568, 17496,26760, 17512,22664, 17528,30856, 17560,25736, 17576,21640, 17592,29832, 17608,19592, 17624,27784, 17640,23688, 17656,31880, 17688,25224, 17704,21128, 17720,29320, 17736,19080, 17752,27272, 17768,23176, 17784,31368, 17800,18056, 17816,26248, 17832,22152, 17848,30344, 17864,20104, 17880,28296, 17896,24200, 17912,32392, 17944,24968, 17960,20872, 17976,29064, 17992,18824, 18008,27016, 18024,22920, 18040,31112, 18072,25992, 18088,21896, 18104,30088, 18120,19848, 18136,28040, 18152,23944, 18168,32136, 18200,25480, 18216,21384, 18232,29576, 18248,19336, 18264,27528, 18280,23432, 18296,31624, 18328,26504, 18344,22408, 18360,30600, 18376,20360, 18392,28552, 18408,24456, 18424,32648, 18456,24648, 18472,20552, 18488,28744, 18520,26696, 18536,22600, 18552,30792, 18584,25672, 18600,21576, 18616,29768, 18632,19528, 18648,27720, 18664,23624, 18680,31816, 18712,25160, 18728,21064, 18744,29256, 18760,19016, 18776,27208, 18792,23112, 18808,31304, 18840,26184, 18856,22088, 18872,30280, 18888,20040, 18904,28232, 18920,24136, 18936,32328, 18968,24904, 18984,20808, 19000,29000, 19032,26952, 19048,22856, 19064,31048, 19096,25928, 19112,21832, 19128,30024, 19144,19784, 19160,27976, 19176,23880, 19192,32072, 19224,25416, 19240,21320, 19256,29512, 19288,27464, 19304,23368, 19320,31560, 19352,26440, 19368,22344, 19384,30536, 19400,20296, 19416,28488, 19432,24392, 19448,32584, 19480,24776, 19496,20680, 19512,28872, 19544,26824, 19560,22728, 19576,30920, 19608,25800, 19624,21704, 19640,29896, 19672,27848, 19688,23752, 19704,31944, 19736,25288, 19752,21192, 19768,29384, 19800,27336, 19816,23240, 19832,31432, 19864,26312, 19880,22216, 19896,30408, 19912,20168, 19928,28360, 19944,24264, 19960,32456, 19992,25032, 20008,20936, 20024,29128, 20056,27080, 20072,22984, 20088,31176, 20120,26056, 20136,21960, 20152,30152, 20184,28104, 20200,24008, 20216,32200, 20248,25544, 20264,21448, 20280,29640, 20312,27592, 20328,23496, 20344,31688, 20376,26568, 20392,22472, 20408,30664, 20440,28616, 20456,24520, 20472,32712, 20504,24616, 20536,28712, 20568,26664, 20584,22568, 20600,30760, 20632,25640, 20648,21544, 20664,29736, 20696,27688, 20712,23592, 20728,31784, 20760,25128, 20776,21032, 20792,29224, 20824,27176, 20840,23080, 20856,31272, 20888,26152, 20904,22056, 20920,30248, 20952,28200, 20968,24104, 20984,32296, 21016,24872, 21048,28968, 21080,26920, 21096,22824, 21112,31016, 21144,25896, 21160,21800, 21176,29992, 21208,27944, 21224,23848, 21240,32040, 21272,25384, 21304,29480, 21336,27432, 21352,23336, 21368,31528, 21400,26408, 21416,22312, 21432,30504, 21464,28456, 21480,24360, 21496,32552, 21528,24744, 21560,28840, 21592,26792, 21608,22696, 21624,30888, 21656,25768, 21688,29864, 21720,27816, 21736,23720, 21752,31912, 21784,25256, 21816,29352, 21848,27304, 21864,23208, 21880,31400, 21912,26280, 21928,22184, 21944,30376, 21976,28328, 21992,24232, 22008,32424, 22040,25000, 22072,29096, 22104,27048, 22120,22952, 22136,31144, 22168,26024, 22200,30120, 22232,28072, 22248,23976, 22264,32168, 22296,25512, 22328,29608, 22360,27560, 22376,23464, 22392,31656, 22424,26536, 22456,30632, 22488,28584, 22504,24488, 22520,32680, 22552,24680, 22584,28776, 22616,26728, 22648,30824, 22680,25704, 22712,29800, 22744,27752, 22760,23656, 22776,31848, 22808,25192, 22840,29288, 22872,27240, 22888,23144, 22904,31336, 22936,26216, 22968,30312, 23000,28264, 23016,24168, 23032,32360, 23064,24936, 23096,29032, 23128,26984, 23160,31080, 23192,25960, 23224,30056, 23256,28008, 23272,23912, 23288,32104, 23320,25448, 23352,29544, 23384,27496, 23416,31592, 23448,26472, 23480,30568, 23512,28520, 23528,24424, 23544,32616, 23576,24808, 23608,28904, 23640,26856, 23672,30952, 23704,25832, 23736,29928, 23768,27880, 23800,31976, 23832,25320, 23864,29416, 23896,27368, 23928,31464, 23960,26344, 23992,30440, 24024,28392, 24040,24296, 24056,32488, 24088,25064, 24120,29160, 24152,27112, 24184,31208, 24216,26088, 24248,30184, 24280,28136, 24312,32232, 24344,25576, 24376,29672, 24408,27624, 24440,31720, 24472,26600, 24504,30696, 24536,28648, 24568,32744, 24632,28696, 24664,26648, 24696,30744, 24728,25624, 24760,29720, 24792,27672, 24824,31768, 24856,25112, 24888,29208, 24920,27160, 24952,31256, 24984,26136, 25016,30232, 25048,28184, 25080,32280, 25144,28952, 25176,26904, 25208,31000, 25240,25880, 25272,29976, 25304,27928, 25336,32024, 25400,29464, 25432,27416, 25464,31512, 25496,26392, 25528,30488, 25560,28440, 25592,32536, 25656,28824, 25688,26776, 25720,30872, 25784,29848, 25816,27800, 25848,31896, 25912,29336, 25944,27288, 25976,31384, 26008,26264, 26040,30360, 26072,28312, 26104,32408, 26168,29080, 26200,27032, 26232,31128, 26296,30104, 26328,28056, 26360,32152, 26424,29592, 26456,27544, 26488,31640, 26552,30616, 26584,28568, 26616,32664, 26680,28760, 26744,30808, 26808,29784, 26840,27736, 26872,31832, 26936,29272, 26968,27224, 27000,31320, 27064,30296, 27096,28248, 27128,32344, 27192,29016, 27256,31064, 27320,30040, 27352,27992, 27384,32088, 27448,29528, 27512,31576, 27576,30552, 27608,28504, 27640,32600, 27704,28888, 27768,30936, 27832,29912, 27896,31960, 27960,29400, 28024,31448, 28088,30424, 28120,28376, 28152,32472, 28216,29144, 28280,31192, 28344,30168, 28408,32216, 28472,29656, 28536,31704, 28600,30680, 28664,32728, 28792,30776, 28856,29752, 28920,31800, 28984,29240, 29048,31288, 29112,30264, 29176,32312, 29304,31032, 29368,30008, 29432,32056, 29560,31544, 29624,30520, 29688,32568, 29816,30904, 29944,31928, 30072,31416, 30136,30392, 30200,32440, 30328,31160, 30456,32184, 30584,31672, 30712,32696, 30968,31864, 31096,31352, 31224,32376, 31480,32120, 31736,32632, 32248,32504 }; /** @par Example code for Double Precision Floating-point RFFT Twiddle factors Generation: @par
TW = exp(pi/2*i-2*pi*i*[0:L/2-1]/L).' 
@par Real and Imag values are in interleaved fashion */ const uint64_t twiddleCoefF64_rfft_32[32] ARM_DSP_TABLE_ATTRIBUTE = { 0x0000000000000000, 0x3ff0000000000000, // 0, 1 0x3fc8f8b83c69a60a, 0x3fef6297cff75cb0, //0.19509, 0.98079 0x3fd87de2a6aea963, 0x3fed906bcf328d46, //0.38268, 0.92388 0x3fe1c73b39ae68c8, 0x3fea9b66290ea1a3, //0.55557, 0.83147 0x3fe6a09e667f3bcc, 0x3fe6a09e667f3bcc, //0.70711, 0.70711 0x3fea9b66290ea1a3, 0x3fe1c73b39ae68c8, //0.83147, 0.55557 0x3fed906bcf328d46, 0x3fd87de2a6aea963, //0.92388, 0.38268 0x3fef6297cff75cb0, 0x3fc8f8b83c69a60a, //0.98079, 0.19509 0x3ff0000000000000, 0x0000000000000000, // 1, 0 0x3fef6297cff75cb0, 0xbfc8f8b83c69a60a, //0.98079,-0.19509 0x3fed906bcf328d46, 0xbfd87de2a6aea963, //0.92388,-0.38268 0x3fea9b66290ea1a3, 0xbfe1c73b39ae68c8, //0.83147,-0.55557 0x3fe6a09e667f3bcc, 0xbfe6a09e667f3bcc, //0.70711,-0.70711 0x3fe1c73b39ae68c8, 0xbfea9b66290ea1a3, //0.55557,-0.83147 0x3fd87de2a6aea963, 0xbfed906bcf328d46, //0.38268,-0.92388 0x3fc8f8b83c69a60a, 0xbfef6297cff75cb0, //0.19509,-0.98079 }; const uint64_t twiddleCoefF64_rfft_64[64] ARM_DSP_TABLE_ATTRIBUTE = { 0x0000000000000000, 0x3ff0000000000000, // 0, 1' 0x3fb917a6bc29b42c, 0x3fefd88da3d12526, //0.098017, 0.99518' 0x3fc8f8b83c69a60a, 0x3fef6297cff75cb0, // 0.19509, 0.98079' 0x3fd294062ed59f05, 0x3fee9f4156c62dda, // 0.29028, 0.95694' 0x3fd87de2a6aea963, 0x3fed906bcf328d46, // 0.38268, 0.92388' 0x3fde2b5d3806f63b, 0x3fec38b2f180bdb1, // 0.4714, 0.88192' 0x3fe1c73b39ae68c8, 0x3fea9b66290ea1a3, // 0.55557, 0.83147' 0x3fe44cf325091dd6, 0x3fe8bc806b151741, // 0.63439, 0.77301' 0x3fe6a09e667f3bcc, 0x3fe6a09e667f3bcc, // 0.70711, 0.70711' 0x3fe8bc806b151741, 0x3fe44cf325091dd6, // 0.77301, 0.63439' 0x3fea9b66290ea1a3, 0x3fe1c73b39ae68c8, // 0.83147, 0.55557' 0x3fec38b2f180bdb1, 0x3fde2b5d3806f63b, // 0.88192, 0.4714' 0x3fed906bcf328d46, 0x3fd87de2a6aea963, // 0.92388, 0.38268' 0x3fee9f4156c62dda, 0x3fd294062ed59f05, // 0.95694, 0.29028' 0x3fef6297cff75cb0, 0x3fc8f8b83c69a60a, // 0.98079, 0.19509' 0x3fefd88da3d12526, 0x3fb917a6bc29b42c, // 0.99518, 0.098017' 0x3ff0000000000000, 0x0000000000000000, // 1, 0' 0x3fefd88da3d12526, 0xbfb917a6bc29b42c, // 0.99518,-0.098017' 0x3fef6297cff75cb0, 0xbfc8f8b83c69a60a, // 0.98079, -0.19509' 0x3fee9f4156c62dda, 0xbfd294062ed59f05, // 0.95694, -0.29028' 0x3fed906bcf328d46, 0xbfd87de2a6aea963, // 0.92388, -0.38268' 0x3fec38b2f180bdb1, 0xbfde2b5d3806f63b, // 0.88192, -0.4714' 0x3fea9b66290ea1a3, 0xbfe1c73b39ae68c8, // 0.83147, -0.55557' 0x3fe8bc806b151741, 0xbfe44cf325091dd6, // 0.77301, -0.63439' 0x3fe6a09e667f3bcc, 0xbfe6a09e667f3bcc, // 0.70711, -0.70711' 0x3fe44cf325091dd6, 0xbfe8bc806b151741, // 0.63439, -0.77301' 0x3fe1c73b39ae68c8, 0xbfea9b66290ea1a3, // 0.55557, -0.83147' 0x3fde2b5d3806f63b, 0xbfec38b2f180bdb1, // 0.4714, -0.88192' 0x3fd87de2a6aea963, 0xbfed906bcf328d46, // 0.38268, -0.92388' 0x3fd294062ed59f05, 0xbfee9f4156c62dda, // 0.29028, -0.95694' 0x3fc8f8b83c69a60a, 0xbfef6297cff75cb0, // 0.19509, -0.98079' 0x3fb917a6bc29b42c, 0xbfefd88da3d12526, //0.098017, -0.99518' }; const uint64_t twiddleCoefF64_rfft_128[128] ARM_DSP_TABLE_ATTRIBUTE = { 0x0000000000000000, 0x3ff0000000000000, // 0, 1' 0x3fa91f65f10dd814, 0x3feff621e3796d7e, //0.049068, 0.9988' 0x3fb917a6bc29b42c, 0x3fefd88da3d12526, //0.098017, 0.99518' 0x3fc2c8106e8e613a, 0x3fefa7557f08a517, // 0.14673, 0.98918' 0x3fc8f8b83c69a60a, 0x3fef6297cff75cb0, // 0.19509, 0.98079' 0x3fcf19f97b215f1a, 0x3fef0a7efb9230d7, // 0.24298, 0.97003' 0x3fd294062ed59f05, 0x3fee9f4156c62dda, // 0.29028, 0.95694' 0x3fd58f9a75ab1fdd, 0x3fee212104f686e5, // 0.33689, 0.94154' 0x3fd87de2a6aea963, 0x3fed906bcf328d46, // 0.38268, 0.92388' 0x3fdb5d1009e15cc0, 0x3feced7af43cc773, // 0.42756, 0.90399' 0x3fde2b5d3806f63b, 0x3fec38b2f180bdb1, // 0.4714, 0.88192' 0x3fe073879922ffed, 0x3feb728345196e3e, // 0.5141, 0.85773' 0x3fe1c73b39ae68c8, 0x3fea9b66290ea1a3, // 0.55557, 0.83147' 0x3fe30ff7fce17035, 0x3fe9b3e047f38741, // 0.5957, 0.80321' 0x3fe44cf325091dd6, 0x3fe8bc806b151741, // 0.63439, 0.77301' 0x3fe57d69348cec9f, 0x3fe7b5df226aafb0, // 0.67156, 0.74095' 0x3fe6a09e667f3bcc, 0x3fe6a09e667f3bcc, // 0.70711, 0.70711' 0x3fe7b5df226aafb0, 0x3fe57d69348cec9f, // 0.74095, 0.67156' 0x3fe8bc806b151741, 0x3fe44cf325091dd6, // 0.77301, 0.63439' 0x3fe9b3e047f38741, 0x3fe30ff7fce17035, // 0.80321, 0.5957' 0x3fea9b66290ea1a3, 0x3fe1c73b39ae68c8, // 0.83147, 0.55557' 0x3feb728345196e3e, 0x3fe073879922ffed, // 0.85773, 0.5141' 0x3fec38b2f180bdb1, 0x3fde2b5d3806f63b, // 0.88192, 0.4714' 0x3feced7af43cc773, 0x3fdb5d1009e15cc0, // 0.90399, 0.42756' 0x3fed906bcf328d46, 0x3fd87de2a6aea963, // 0.92388, 0.38268' 0x3fee212104f686e5, 0x3fd58f9a75ab1fdd, // 0.94154, 0.33689' 0x3fee9f4156c62dda, 0x3fd294062ed59f05, // 0.95694, 0.29028' 0x3fef0a7efb9230d7, 0x3fcf19f97b215f1a, // 0.97003, 0.24298' 0x3fef6297cff75cb0, 0x3fc8f8b83c69a60a, // 0.98079, 0.19509' 0x3fefa7557f08a517, 0x3fc2c8106e8e613a, // 0.98918, 0.14673' 0x3fefd88da3d12526, 0x3fb917a6bc29b42c, // 0.99518, 0.098017' 0x3feff621e3796d7e, 0x3fa91f65f10dd814, // 0.9988, 0.049068' 0x3ff0000000000000, 0x0000000000000000, // 1, 0' 0x3feff621e3796d7e, 0xbfa91f65f10dd814, // 0.9988,-0.049068' 0x3fefd88da3d12526, 0xbfb917a6bc29b42c, // 0.99518,-0.098017' 0x3fefa7557f08a517, 0xbfc2c8106e8e613a, // 0.98918, -0.14673' 0x3fef6297cff75cb0, 0xbfc8f8b83c69a60a, // 0.98079, -0.19509' 0x3fef0a7efb9230d7, 0xbfcf19f97b215f1a, // 0.97003, -0.24298' 0x3fee9f4156c62dda, 0xbfd294062ed59f05, // 0.95694, -0.29028' 0x3fee212104f686e5, 0xbfd58f9a75ab1fdd, // 0.94154, -0.33689' 0x3fed906bcf328d46, 0xbfd87de2a6aea963, // 0.92388, -0.38268' 0x3feced7af43cc773, 0xbfdb5d1009e15cc0, // 0.90399, -0.42756' 0x3fec38b2f180bdb1, 0xbfde2b5d3806f63b, // 0.88192, -0.4714' 0x3feb728345196e3e, 0xbfe073879922ffed, // 0.85773, -0.5141' 0x3fea9b66290ea1a3, 0xbfe1c73b39ae68c8, // 0.83147, -0.55557' 0x3fe9b3e047f38741, 0xbfe30ff7fce17035, // 0.80321, -0.5957' 0x3fe8bc806b151741, 0xbfe44cf325091dd6, // 0.77301, -0.63439' 0x3fe7b5df226aafb0, 0xbfe57d69348cec9f, // 0.74095, -0.67156' 0x3fe6a09e667f3bcc, 0xbfe6a09e667f3bcc, // 0.70711, -0.70711' 0x3fe57d69348cec9f, 0xbfe7b5df226aafb0, // 0.67156, -0.74095' 0x3fe44cf325091dd6, 0xbfe8bc806b151741, // 0.63439, -0.77301' 0x3fe30ff7fce17035, 0xbfe9b3e047f38741, // 0.5957, -0.80321' 0x3fe1c73b39ae68c8, 0xbfea9b66290ea1a3, // 0.55557, -0.83147' 0x3fe073879922ffed, 0xbfeb728345196e3e, // 0.5141, -0.85773' 0x3fde2b5d3806f63b, 0xbfec38b2f180bdb1, // 0.4714, -0.88192' 0x3fdb5d1009e15cc0, 0xbfeced7af43cc773, // 0.42756, -0.90399' 0x3fd87de2a6aea963, 0xbfed906bcf328d46, // 0.38268, -0.92388' 0x3fd58f9a75ab1fdd, 0xbfee212104f686e5, // 0.33689, -0.94154' 0x3fd294062ed59f05, 0xbfee9f4156c62dda, // 0.29028, -0.95694' 0x3fcf19f97b215f1a, 0xbfef0a7efb9230d7, // 0.24298, -0.97003' 0x3fc8f8b83c69a60a, 0xbfef6297cff75cb0, // 0.19509, -0.98079' 0x3fc2c8106e8e613a, 0xbfefa7557f08a517, // 0.14673, -0.98918' 0x3fb917a6bc29b42c, 0xbfefd88da3d12526, //0.098017, -0.99518' 0x3fa91f65f10dd814, 0xbfeff621e3796d7e, //0.049068, -0.9988' }; const uint64_t twiddleCoefF64_rfft_256[256] ARM_DSP_TABLE_ATTRIBUTE = { 0x0000000000000000, 0x3ff0000000000000, // 0, 1 0x3f992155f7a3667e, 0x3feffd886084cd0d, //0.024541, 0.9997 0x3fa91f65f10dd814, 0x3feff621e3796d7e, //0.049068, 0.9988 0x3fb2d52092ce19f6, 0x3fefe9cdad01883a, //0.073565, 0.99729 0x3fb917a6bc29b42c, 0x3fefd88da3d12526, //0.098017, 0.99518 0x3fbf564e56a9730e, 0x3fefc26470e19fd3, // 0.12241, 0.99248 0x3fc2c8106e8e613a, 0x3fefa7557f08a517, // 0.14673, 0.98918 0x3fc5e214448b3fc6, 0x3fef8764fa714ba9, // 0.17096, 0.98528 0x3fc8f8b83c69a60a, 0x3fef6297cff75cb0, // 0.19509, 0.98079 0x3fcc0b826a7e4f63, 0x3fef38f3ac64e589, // 0.2191, 0.9757 0x3fcf19f97b215f1a, 0x3fef0a7efb9230d7, // 0.24298, 0.97003 0x3fd111d262b1f677, 0x3feed740e7684963, // 0.26671, 0.96378 0x3fd294062ed59f05, 0x3fee9f4156c62dda, // 0.29028, 0.95694 0x3fd4135c94176602, 0x3fee6288ec48e112, // 0.31368, 0.94953 0x3fd58f9a75ab1fdd, 0x3fee212104f686e5, // 0.33689, 0.94154 0x3fd7088530fa459e, 0x3feddb13b6ccc23d, // 0.3599, 0.93299 0x3fd87de2a6aea963, 0x3fed906bcf328d46, // 0.38268, 0.92388 0x3fd9ef7943a8ed8a, 0x3fed4134d14dc93a, // 0.40524, 0.91421 0x3fdb5d1009e15cc0, 0x3feced7af43cc773, // 0.42756, 0.90399 0x3fdcc66e9931c45d, 0x3fec954b213411f5, // 0.44961, 0.89322 0x3fde2b5d3806f63b, 0x3fec38b2f180bdb1, // 0.4714, 0.88192 0x3fdf8ba4dbf89aba, 0x3febd7c0ac6f952a, // 0.4929, 0.87009 0x3fe073879922ffed, 0x3feb728345196e3e, // 0.5141, 0.85773 0x3fe11eb3541b4b22, 0x3feb090a58150200, // 0.535, 0.84485 0x3fe1c73b39ae68c8, 0x3fea9b66290ea1a3, // 0.55557, 0.83147 0x3fe26d054cdd12df, 0x3fea29a7a0462782, // 0.57581, 0.81758 0x3fe30ff7fce17035, 0x3fe9b3e047f38741, // 0.5957, 0.80321 0x3fe3affa292050b9, 0x3fe93a22499263fc, // 0.61523, 0.78835 0x3fe44cf325091dd6, 0x3fe8bc806b151741, // 0.63439, 0.77301 0x3fe4e6cabbe3e5e9, 0x3fe83b0e0bff976e, // 0.65317, 0.75721 0x3fe57d69348cec9f, 0x3fe7b5df226aafb0, // 0.67156, 0.74095 0x3fe610b7551d2cde, 0x3fe72d0837efff97, // 0.68954, 0.72425 0x3fe6a09e667f3bcc, 0x3fe6a09e667f3bcc, // 0.70711, 0.70711 0x3fe72d0837efff97, 0x3fe610b7551d2cde, // 0.72425, 0.68954 0x3fe7b5df226aafb0, 0x3fe57d69348cec9f, // 0.74095, 0.67156 0x3fe83b0e0bff976e, 0x3fe4e6cabbe3e5e9, // 0.75721, 0.65317 0x3fe8bc806b151741, 0x3fe44cf325091dd6, // 0.77301, 0.63439 0x3fe93a22499263fc, 0x3fe3affa292050b9, // 0.78835, 0.61523 0x3fe9b3e047f38741, 0x3fe30ff7fce17035, // 0.80321, 0.5957 0x3fea29a7a0462782, 0x3fe26d054cdd12df, // 0.81758, 0.57581 0x3fea9b66290ea1a3, 0x3fe1c73b39ae68c8, // 0.83147, 0.55557 0x3feb090a58150200, 0x3fe11eb3541b4b22, // 0.84485, 0.535 0x3feb728345196e3e, 0x3fe073879922ffed, // 0.85773, 0.5141 0x3febd7c0ac6f952a, 0x3fdf8ba4dbf89aba, // 0.87009, 0.4929 0x3fec38b2f180bdb1, 0x3fde2b5d3806f63b, // 0.88192, 0.4714 0x3fec954b213411f5, 0x3fdcc66e9931c45d, // 0.89322, 0.44961 0x3feced7af43cc773, 0x3fdb5d1009e15cc0, // 0.90399, 0.42756 0x3fed4134d14dc93a, 0x3fd9ef7943a8ed8a, // 0.91421, 0.40524 0x3fed906bcf328d46, 0x3fd87de2a6aea963, // 0.92388, 0.38268 0x3feddb13b6ccc23d, 0x3fd7088530fa459e, // 0.93299, 0.3599 0x3fee212104f686e5, 0x3fd58f9a75ab1fdd, // 0.94154, 0.33689 0x3fee6288ec48e112, 0x3fd4135c94176602, // 0.94953, 0.31368 0x3fee9f4156c62dda, 0x3fd294062ed59f05, // 0.95694, 0.29028 0x3feed740e7684963, 0x3fd111d262b1f677, // 0.96378, 0.26671 0x3fef0a7efb9230d7, 0x3fcf19f97b215f1a, // 0.97003, 0.24298 0x3fef38f3ac64e589, 0x3fcc0b826a7e4f63, // 0.9757, 0.2191 0x3fef6297cff75cb0, 0x3fc8f8b83c69a60a, // 0.98079, 0.19509 0x3fef8764fa714ba9, 0x3fc5e214448b3fc6, // 0.98528, 0.17096 0x3fefa7557f08a517, 0x3fc2c8106e8e613a, // 0.98918, 0.14673 0x3fefc26470e19fd3, 0x3fbf564e56a9730e, // 0.99248, 0.12241 0x3fefd88da3d12526, 0x3fb917a6bc29b42c, // 0.99518, 0.098017 0x3fefe9cdad01883a, 0x3fb2d52092ce19f6, // 0.99729, 0.073565 0x3feff621e3796d7e, 0x3fa91f65f10dd814, // 0.9988, 0.049068 0x3feffd886084cd0d, 0x3f992155f7a3667e, // 0.9997, 0.024541 0x3ff0000000000000, 0x0000000000000000, // 1, 0 0x3feffd886084cd0d, 0xbf992155f7a3667e, // 0.9997,-0.024541 0x3feff621e3796d7e, 0xbfa91f65f10dd814, // 0.9988,-0.049068 0x3fefe9cdad01883a, 0xbfb2d52092ce19f6, // 0.99729,-0.073565 0x3fefd88da3d12526, 0xbfb917a6bc29b42c, // 0.99518,-0.098017 0x3fefc26470e19fd3, 0xbfbf564e56a9730e, // 0.99248, -0.12241 0x3fefa7557f08a517, 0xbfc2c8106e8e613a, // 0.98918, -0.14673 0x3fef8764fa714ba9, 0xbfc5e214448b3fc6, // 0.98528, -0.17096 0x3fef6297cff75cb0, 0xbfc8f8b83c69a60a, // 0.98079, -0.19509 0x3fef38f3ac64e589, 0xbfcc0b826a7e4f63, // 0.9757, -0.2191 0x3fef0a7efb9230d7, 0xbfcf19f97b215f1a, // 0.97003, -0.24298 0x3feed740e7684963, 0xbfd111d262b1f677, // 0.96378, -0.26671 0x3fee9f4156c62dda, 0xbfd294062ed59f05, // 0.95694, -0.29028 0x3fee6288ec48e112, 0xbfd4135c94176602, // 0.94953, -0.31368 0x3fee212104f686e5, 0xbfd58f9a75ab1fdd, // 0.94154, -0.33689 0x3feddb13b6ccc23d, 0xbfd7088530fa459e, // 0.93299, -0.3599 0x3fed906bcf328d46, 0xbfd87de2a6aea963, // 0.92388, -0.38268 0x3fed4134d14dc93a, 0xbfd9ef7943a8ed8a, // 0.91421, -0.40524 0x3feced7af43cc773, 0xbfdb5d1009e15cc0, // 0.90399, -0.42756 0x3fec954b213411f5, 0xbfdcc66e9931c45d, // 0.89322, -0.44961 0x3fec38b2f180bdb1, 0xbfde2b5d3806f63b, // 0.88192, -0.4714 0x3febd7c0ac6f952a, 0xbfdf8ba4dbf89aba, // 0.87009, -0.4929 0x3feb728345196e3e, 0xbfe073879922ffed, // 0.85773, -0.5141 0x3feb090a58150200, 0xbfe11eb3541b4b22, // 0.84485, -0.535 0x3fea9b66290ea1a3, 0xbfe1c73b39ae68c8, // 0.83147, -0.55557 0x3fea29a7a0462782, 0xbfe26d054cdd12df, // 0.81758, -0.57581 0x3fe9b3e047f38741, 0xbfe30ff7fce17035, // 0.80321, -0.5957 0x3fe93a22499263fc, 0xbfe3affa292050b9, // 0.78835, -0.61523 0x3fe8bc806b151741, 0xbfe44cf325091dd6, // 0.77301, -0.63439 0x3fe83b0e0bff976e, 0xbfe4e6cabbe3e5e9, // 0.75721, -0.65317 0x3fe7b5df226aafb0, 0xbfe57d69348cec9f, // 0.74095, -0.67156 0x3fe72d0837efff97, 0xbfe610b7551d2cde, // 0.72425, -0.68954 0x3fe6a09e667f3bcc, 0xbfe6a09e667f3bcc, // 0.70711, -0.70711 0x3fe610b7551d2cde, 0xbfe72d0837efff97, // 0.68954, -0.72425 0x3fe57d69348cec9f, 0xbfe7b5df226aafb0, // 0.67156, -0.74095 0x3fe4e6cabbe3e5e9, 0xbfe83b0e0bff976e, // 0.65317, -0.75721 0x3fe44cf325091dd6, 0xbfe8bc806b151741, // 0.63439, -0.77301 0x3fe3affa292050b9, 0xbfe93a22499263fc, // 0.61523, -0.78835 0x3fe30ff7fce17035, 0xbfe9b3e047f38741, // 0.5957, -0.80321 0x3fe26d054cdd12df, 0xbfea29a7a0462782, // 0.57581, -0.81758 0x3fe1c73b39ae68c8, 0xbfea9b66290ea1a3, // 0.55557, -0.83147 0x3fe11eb3541b4b22, 0xbfeb090a58150200, // 0.535, -0.84485 0x3fe073879922ffed, 0xbfeb728345196e3e, // 0.5141, -0.85773 0x3fdf8ba4dbf89aba, 0xbfebd7c0ac6f952a, // 0.4929, -0.87009 0x3fde2b5d3806f63b, 0xbfec38b2f180bdb1, // 0.4714, -0.88192 0x3fdcc66e9931c45d, 0xbfec954b213411f5, // 0.44961, -0.89322 0x3fdb5d1009e15cc0, 0xbfeced7af43cc773, // 0.42756, -0.90399 0x3fd9ef7943a8ed8a, 0xbfed4134d14dc93a, // 0.40524, -0.91421 0x3fd87de2a6aea963, 0xbfed906bcf328d46, // 0.38268, -0.92388 0x3fd7088530fa459e, 0xbfeddb13b6ccc23d, // 0.3599, -0.93299 0x3fd58f9a75ab1fdd, 0xbfee212104f686e5, // 0.33689, -0.94154 0x3fd4135c94176602, 0xbfee6288ec48e112, // 0.31368, -0.94953 0x3fd294062ed59f05, 0xbfee9f4156c62dda, // 0.29028, -0.95694 0x3fd111d262b1f677, 0xbfeed740e7684963, // 0.26671, -0.96378 0x3fcf19f97b215f1a, 0xbfef0a7efb9230d7, // 0.24298, -0.97003 0x3fcc0b826a7e4f63, 0xbfef38f3ac64e589, // 0.2191, -0.9757 0x3fc8f8b83c69a60a, 0xbfef6297cff75cb0, // 0.19509, -0.98079 0x3fc5e214448b3fc6, 0xbfef8764fa714ba9, // 0.17096, -0.98528 0x3fc2c8106e8e613a, 0xbfefa7557f08a517, // 0.14673, -0.98918 0x3fbf564e56a9730e, 0xbfefc26470e19fd3, // 0.12241, -0.99248 0x3fb917a6bc29b42c, 0xbfefd88da3d12526, //0.098017, -0.99518 0x3fb2d52092ce19f6, 0xbfefe9cdad01883a, //0.073565, -0.99729 0x3fa91f65f10dd814, 0xbfeff621e3796d7e, //0.049068, -0.9988' 0x3f992155f7a3667e, 0xbfeffd886084cd0d, //0.024541, -0.9997 }; const uint64_t twiddleCoefF64_rfft_512[512] ARM_DSP_TABLE_ATTRIBUTE = { 0x0000000000000000, 0x3ff0000000000000, // 0, 1' 0x3f8921d1fcdec784, 0x3fefff62169b92db, //0.012272, 0.99992' 0x3f992155f7a3667e, 0x3feffd886084cd0d, //0.024541, 0.9997' 0x3fa2d865759455cd, 0x3feffa72effef75d, //0.036807, 0.99932' 0x3fa91f65f10dd814, 0x3feff621e3796d7e, //0.049068, 0.9988' 0x3faf656e79f820e0, 0x3feff095658e71ad, //0.061321, 0.99812' 0x3fb2d52092ce19f6, 0x3fefe9cdad01883a, //0.073565, 0.99729' 0x3fb5f6d00a9aa419, 0x3fefe1cafcbd5b09, //0.085797, 0.99631' 0x3fb917a6bc29b42c, 0x3fefd88da3d12526, //0.098017, 0.99518' 0x3fbc3785c79ec2d5, 0x3fefce15fd6da67b, // 0.11022, 0.99391' 0x3fbf564e56a9730e, 0x3fefc26470e19fd3, // 0.12241, 0.99248' 0x3fc139f0cedaf576, 0x3fefb5797195d741, // 0.13458, 0.9909' 0x3fc2c8106e8e613a, 0x3fefa7557f08a517, // 0.14673, 0.98918' 0x3fc45576b1293e5a, 0x3fef97f924c9099b, // 0.15886, 0.9873' 0x3fc5e214448b3fc6, 0x3fef8764fa714ba9, // 0.17096, 0.98528' 0x3fc76dd9de50bf31, 0x3fef7599a3a12077, // 0.18304, 0.98311' 0x3fc8f8b83c69a60a, 0x3fef6297cff75cb0, // 0.19509, 0.98079' 0x3fca82a025b00451, 0x3fef4e603b0b2f2d, // 0.20711, 0.97832' 0x3fcc0b826a7e4f63, 0x3fef38f3ac64e589, // 0.2191, 0.9757' 0x3fcd934fe5454311, 0x3fef2252f7763ada, // 0.23106, 0.97294' 0x3fcf19f97b215f1a, 0x3fef0a7efb9230d7, // 0.24298, 0.97003' 0x3fd04fb80e37fdae, 0x3feef178a3e473c2, // 0.25487, 0.96698' 0x3fd111d262b1f677, 0x3feed740e7684963, // 0.26671, 0.96378' 0x3fd1d3443f4cdb3d, 0x3feebbd8c8df0b74, // 0.27852, 0.96043' 0x3fd294062ed59f05, 0x3fee9f4156c62dda, // 0.29028, 0.95694' 0x3fd35410c2e18152, 0x3fee817bab4cd10d, // 0.30201, 0.95331' 0x3fd4135c94176602, 0x3fee6288ec48e112, // 0.31368, 0.94953' 0x3fd4d1e24278e76a, 0x3fee426a4b2bc17e, // 0.32531, 0.94561' 0x3fd58f9a75ab1fdd, 0x3fee212104f686e5, // 0.33689, 0.94154' 0x3fd64c7ddd3f27c6, 0x3fedfeae622dbe2b, // 0.34842, 0.93734' 0x3fd7088530fa459e, 0x3feddb13b6ccc23d, // 0.3599, 0.93299' 0x3fd7c3a9311dcce7, 0x3fedb6526238a09b, // 0.37132, 0.92851' 0x3fd87de2a6aea963, 0x3fed906bcf328d46, // 0.38268, 0.92388' 0x3fd9372a63bc93d7, 0x3fed696173c9e68b, // 0.39399, 0.91911' 0x3fd9ef7943a8ed8a, 0x3fed4134d14dc93a, // 0.40524, 0.91421' 0x3fdaa6c82b6d3fc9, 0x3fed17e7743e35dc, // 0.41643, 0.90917' 0x3fdb5d1009e15cc0, 0x3feced7af43cc773, // 0.42756, 0.90399' 0x3fdc1249d8011ee7, 0x3fecc1f0f3fcfc5c, // 0.43862, 0.89867' 0x3fdcc66e9931c45d, 0x3fec954b213411f5, // 0.44961, 0.89322' 0x3fdd79775b86e389, 0x3fec678b3488739b, // 0.46054, 0.88764' 0x3fde2b5d3806f63b, 0x3fec38b2f180bdb1, // 0.4714, 0.88192' 0x3fdedc1952ef78d5, 0x3fec08c426725549, // 0.48218, 0.87607' 0x3fdf8ba4dbf89aba, 0x3febd7c0ac6f952a, // 0.4929, 0.87009' 0x3fe01cfc874c3eb7, 0x3feba5aa673590d2, // 0.50354, 0.86397' 0x3fe073879922ffed, 0x3feb728345196e3e, // 0.5141, 0.85773' 0x3fe0c9704d5d898f, 0x3feb3e4d3ef55712, // 0.52459, 0.85136' 0x3fe11eb3541b4b22, 0x3feb090a58150200, // 0.535, 0.84485' 0x3fe1734d63dedb49, 0x3fead2bc9e21d511, // 0.54532, 0.83822' 0x3fe1c73b39ae68c8, 0x3fea9b66290ea1a3, // 0.55557, 0.83147' 0x3fe21a799933eb58, 0x3fea63091b02fae2, // 0.56573, 0.82459' 0x3fe26d054cdd12df, 0x3fea29a7a0462782, // 0.57581, 0.81758' 0x3fe2bedb25faf3ea, 0x3fe9ef43ef29af94, // 0.5858, 0.81046' 0x3fe30ff7fce17035, 0x3fe9b3e047f38741, // 0.5957, 0.80321' 0x3fe36058b10659f3, 0x3fe9777ef4c7d742, // 0.60551, 0.79584' 0x3fe3affa292050b9, 0x3fe93a22499263fc, // 0.61523, 0.78835' 0x3fe3fed9534556d4, 0x3fe8fbcca3ef940d, // 0.62486, 0.78074' 0x3fe44cf325091dd6, 0x3fe8bc806b151741, // 0.63439, 0.77301' 0x3fe49a449b9b0938, 0x3fe87c400fba2ebf, // 0.64383, 0.76517' 0x3fe4e6cabbe3e5e9, 0x3fe83b0e0bff976e, // 0.65317, 0.75721' 0x3fe5328292a35596, 0x3fe7f8ece3571771, // 0.66242, 0.74914' 0x3fe57d69348cec9f, 0x3fe7b5df226aafb0, // 0.67156, 0.74095' 0x3fe5c77bbe65018c, 0x3fe771e75f037261, // 0.6806, 0.73265' 0x3fe610b7551d2cde, 0x3fe72d0837efff97, // 0.68954, 0.72425' 0x3fe6591925f0783e, 0x3fe6e74454eaa8ae, // 0.69838, 0.71573' 0x3fe6a09e667f3bcc, 0x3fe6a09e667f3bcc, // 0.70711, 0.70711' 0x3fe6e74454eaa8ae, 0x3fe6591925f0783e, // 0.71573, 0.69838' 0x3fe72d0837efff97, 0x3fe610b7551d2cde, // 0.72425, 0.68954' 0x3fe771e75f037261, 0x3fe5c77bbe65018c, // 0.73265, 0.6806' 0x3fe7b5df226aafb0, 0x3fe57d69348cec9f, // 0.74095, 0.67156' 0x3fe7f8ece3571771, 0x3fe5328292a35596, // 0.74914, 0.66242' 0x3fe83b0e0bff976e, 0x3fe4e6cabbe3e5e9, // 0.75721, 0.65317' 0x3fe87c400fba2ebf, 0x3fe49a449b9b0938, // 0.76517, 0.64383' 0x3fe8bc806b151741, 0x3fe44cf325091dd6, // 0.77301, 0.63439' 0x3fe8fbcca3ef940d, 0x3fe3fed9534556d4, // 0.78074, 0.62486' 0x3fe93a22499263fc, 0x3fe3affa292050b9, // 0.78835, 0.61523' 0x3fe9777ef4c7d742, 0x3fe36058b10659f3, // 0.79584, 0.60551' 0x3fe9b3e047f38741, 0x3fe30ff7fce17035, // 0.80321, 0.5957' 0x3fe9ef43ef29af94, 0x3fe2bedb25faf3ea, // 0.81046, 0.5858' 0x3fea29a7a0462782, 0x3fe26d054cdd12df, // 0.81758, 0.57581' 0x3fea63091b02fae2, 0x3fe21a799933eb58, // 0.82459, 0.56573' 0x3fea9b66290ea1a3, 0x3fe1c73b39ae68c8, // 0.83147, 0.55557' 0x3fead2bc9e21d511, 0x3fe1734d63dedb49, // 0.83822, 0.54532' 0x3feb090a58150200, 0x3fe11eb3541b4b22, // 0.84485, 0.535' 0x3feb3e4d3ef55712, 0x3fe0c9704d5d898f, // 0.85136, 0.52459' 0x3feb728345196e3e, 0x3fe073879922ffed, // 0.85773, 0.5141' 0x3feba5aa673590d2, 0x3fe01cfc874c3eb7, // 0.86397, 0.50354' 0x3febd7c0ac6f952a, 0x3fdf8ba4dbf89aba, // 0.87009, 0.4929' 0x3fec08c426725549, 0x3fdedc1952ef78d5, // 0.87607, 0.48218' 0x3fec38b2f180bdb1, 0x3fde2b5d3806f63b, // 0.88192, 0.4714' 0x3fec678b3488739b, 0x3fdd79775b86e389, // 0.88764, 0.46054' 0x3fec954b213411f5, 0x3fdcc66e9931c45d, // 0.89322, 0.44961' 0x3fecc1f0f3fcfc5c, 0x3fdc1249d8011ee7, // 0.89867, 0.43862' 0x3feced7af43cc773, 0x3fdb5d1009e15cc0, // 0.90399, 0.42756' 0x3fed17e7743e35dc, 0x3fdaa6c82b6d3fc9, // 0.90917, 0.41643' 0x3fed4134d14dc93a, 0x3fd9ef7943a8ed8a, // 0.91421, 0.40524' 0x3fed696173c9e68b, 0x3fd9372a63bc93d7, // 0.91911, 0.39399' 0x3fed906bcf328d46, 0x3fd87de2a6aea963, // 0.92388, 0.38268' 0x3fedb6526238a09b, 0x3fd7c3a9311dcce7, // 0.92851, 0.37132' 0x3feddb13b6ccc23d, 0x3fd7088530fa459e, // 0.93299, 0.3599' 0x3fedfeae622dbe2b, 0x3fd64c7ddd3f27c6, // 0.93734, 0.34842' 0x3fee212104f686e5, 0x3fd58f9a75ab1fdd, // 0.94154, 0.33689' 0x3fee426a4b2bc17e, 0x3fd4d1e24278e76a, // 0.94561, 0.32531' 0x3fee6288ec48e112, 0x3fd4135c94176602, // 0.94953, 0.31368' 0x3fee817bab4cd10d, 0x3fd35410c2e18152, // 0.95331, 0.30201' 0x3fee9f4156c62dda, 0x3fd294062ed59f05, // 0.95694, 0.29028' 0x3feebbd8c8df0b74, 0x3fd1d3443f4cdb3d, // 0.96043, 0.27852' 0x3feed740e7684963, 0x3fd111d262b1f677, // 0.96378, 0.26671' 0x3feef178a3e473c2, 0x3fd04fb80e37fdae, // 0.96698, 0.25487' 0x3fef0a7efb9230d7, 0x3fcf19f97b215f1a, // 0.97003, 0.24298' 0x3fef2252f7763ada, 0x3fcd934fe5454311, // 0.97294, 0.23106' 0x3fef38f3ac64e589, 0x3fcc0b826a7e4f63, // 0.9757, 0.2191' 0x3fef4e603b0b2f2d, 0x3fca82a025b00451, // 0.97832, 0.20711' 0x3fef6297cff75cb0, 0x3fc8f8b83c69a60a, // 0.98079, 0.19509' 0x3fef7599a3a12077, 0x3fc76dd9de50bf31, // 0.98311, 0.18304' 0x3fef8764fa714ba9, 0x3fc5e214448b3fc6, // 0.98528, 0.17096' 0x3fef97f924c9099b, 0x3fc45576b1293e5a, // 0.9873, 0.15886' 0x3fefa7557f08a517, 0x3fc2c8106e8e613a, // 0.98918, 0.14673' 0x3fefb5797195d741, 0x3fc139f0cedaf576, // 0.9909, 0.13458' 0x3fefc26470e19fd3, 0x3fbf564e56a9730e, // 0.99248, 0.12241' 0x3fefce15fd6da67b, 0x3fbc3785c79ec2d5, // 0.99391, 0.11022' 0x3fefd88da3d12526, 0x3fb917a6bc29b42c, // 0.99518, 0.098017' 0x3fefe1cafcbd5b09, 0x3fb5f6d00a9aa419, // 0.99631, 0.085797' 0x3fefe9cdad01883a, 0x3fb2d52092ce19f6, // 0.99729, 0.073565' 0x3feff095658e71ad, 0x3faf656e79f820e0, // 0.99812, 0.061321' 0x3feff621e3796d7e, 0x3fa91f65f10dd814, // 0.9988, 0.049068' 0x3feffa72effef75d, 0x3fa2d865759455cd, // 0.99932, 0.036807' 0x3feffd886084cd0d, 0x3f992155f7a3667e, // 0.9997, 0.024541' 0x3fefff62169b92db, 0x3f8921d1fcdec784, // 0.99992, 0.012272' 0x3ff0000000000000, 0x0000000000000000, // 1, 0' 0x3fefff62169b92db, 0xbf8921d1fcdec784, // 0.99992,-0.012272' 0x3feffd886084cd0d, 0xbf992155f7a3667e, // 0.9997,-0.024541' 0x3feffa72effef75d, 0xbfa2d865759455cd, // 0.99932,-0.036807' 0x3feff621e3796d7e, 0xbfa91f65f10dd814, // 0.9988,-0.049068' 0x3feff095658e71ad, 0xbfaf656e79f820e0, // 0.99812,-0.061321' 0x3fefe9cdad01883a, 0xbfb2d52092ce19f6, // 0.99729,-0.073565' 0x3fefe1cafcbd5b09, 0xbfb5f6d00a9aa419, // 0.99631,-0.085797' 0x3fefd88da3d12526, 0xbfb917a6bc29b42c, // 0.99518,-0.098017' 0x3fefce15fd6da67b, 0xbfbc3785c79ec2d5, // 0.99391, -0.11022' 0x3fefc26470e19fd3, 0xbfbf564e56a9730e, // 0.99248, -0.12241' 0x3fefb5797195d741, 0xbfc139f0cedaf576, // 0.9909, -0.13458' 0x3fefa7557f08a517, 0xbfc2c8106e8e613a, // 0.98918, -0.14673' 0x3fef97f924c9099b, 0xbfc45576b1293e5a, // 0.9873, -0.15886' 0x3fef8764fa714ba9, 0xbfc5e214448b3fc6, // 0.98528, -0.17096' 0x3fef7599a3a12077, 0xbfc76dd9de50bf31, // 0.98311, -0.18304' 0x3fef6297cff75cb0, 0xbfc8f8b83c69a60a, // 0.98079, -0.19509' 0x3fef4e603b0b2f2d, 0xbfca82a025b00451, // 0.97832, -0.20711' 0x3fef38f3ac64e589, 0xbfcc0b826a7e4f63, // 0.9757, -0.2191' 0x3fef2252f7763ada, 0xbfcd934fe5454311, // 0.97294, -0.23106' 0x3fef0a7efb9230d7, 0xbfcf19f97b215f1a, // 0.97003, -0.24298' 0x3feef178a3e473c2, 0xbfd04fb80e37fdae, // 0.96698, -0.25487' 0x3feed740e7684963, 0xbfd111d262b1f677, // 0.96378, -0.26671' 0x3feebbd8c8df0b74, 0xbfd1d3443f4cdb3d, // 0.96043, -0.27852' 0x3fee9f4156c62dda, 0xbfd294062ed59f05, // 0.95694, -0.29028' 0x3fee817bab4cd10d, 0xbfd35410c2e18152, // 0.95331, -0.30201' 0x3fee6288ec48e112, 0xbfd4135c94176602, // 0.94953, -0.31368' 0x3fee426a4b2bc17e, 0xbfd4d1e24278e76a, // 0.94561, -0.32531' 0x3fee212104f686e5, 0xbfd58f9a75ab1fdd, // 0.94154, -0.33689' 0x3fedfeae622dbe2b, 0xbfd64c7ddd3f27c6, // 0.93734, -0.34842' 0x3feddb13b6ccc23d, 0xbfd7088530fa459e, // 0.93299, -0.3599' 0x3fedb6526238a09b, 0xbfd7c3a9311dcce7, // 0.92851, -0.37132' 0x3fed906bcf328d46, 0xbfd87de2a6aea963, // 0.92388, -0.38268' 0x3fed696173c9e68b, 0xbfd9372a63bc93d7, // 0.91911, -0.39399' 0x3fed4134d14dc93a, 0xbfd9ef7943a8ed8a, // 0.91421, -0.40524' 0x3fed17e7743e35dc, 0xbfdaa6c82b6d3fc9, // 0.90917, -0.41643' 0x3feced7af43cc773, 0xbfdb5d1009e15cc0, // 0.90399, -0.42756' 0x3fecc1f0f3fcfc5c, 0xbfdc1249d8011ee7, // 0.89867, -0.43862' 0x3fec954b213411f5, 0xbfdcc66e9931c45d, // 0.89322, -0.44961' 0x3fec678b3488739b, 0xbfdd79775b86e389, // 0.88764, -0.46054' 0x3fec38b2f180bdb1, 0xbfde2b5d3806f63b, // 0.88192, -0.4714' 0x3fec08c426725549, 0xbfdedc1952ef78d5, // 0.87607, -0.48218' 0x3febd7c0ac6f952a, 0xbfdf8ba4dbf89aba, // 0.87009, -0.4929' 0x3feba5aa673590d2, 0xbfe01cfc874c3eb7, // 0.86397, -0.50354' 0x3feb728345196e3e, 0xbfe073879922ffed, // 0.85773, -0.5141' 0x3feb3e4d3ef55712, 0xbfe0c9704d5d898f, // 0.85136, -0.52459' 0x3feb090a58150200, 0xbfe11eb3541b4b22, // 0.84485, -0.535' 0x3fead2bc9e21d511, 0xbfe1734d63dedb49, // 0.83822, -0.54532' 0x3fea9b66290ea1a3, 0xbfe1c73b39ae68c8, // 0.83147, -0.55557' 0x3fea63091b02fae2, 0xbfe21a799933eb58, // 0.82459, -0.56573' 0x3fea29a7a0462782, 0xbfe26d054cdd12df, // 0.81758, -0.57581' 0x3fe9ef43ef29af94, 0xbfe2bedb25faf3ea, // 0.81046, -0.5858' 0x3fe9b3e047f38741, 0xbfe30ff7fce17035, // 0.80321, -0.5957' 0x3fe9777ef4c7d742, 0xbfe36058b10659f3, // 0.79584, -0.60551' 0x3fe93a22499263fc, 0xbfe3affa292050b9, // 0.78835, -0.61523' 0x3fe8fbcca3ef940d, 0xbfe3fed9534556d4, // 0.78074, -0.62486' 0x3fe8bc806b151741, 0xbfe44cf325091dd6, // 0.77301, -0.63439' 0x3fe87c400fba2ebf, 0xbfe49a449b9b0938, // 0.76517, -0.64383' 0x3fe83b0e0bff976e, 0xbfe4e6cabbe3e5e9, // 0.75721, -0.65317' 0x3fe7f8ece3571771, 0xbfe5328292a35596, // 0.74914, -0.66242' 0x3fe7b5df226aafb0, 0xbfe57d69348cec9f, // 0.74095, -0.67156' 0x3fe771e75f037261, 0xbfe5c77bbe65018c, // 0.73265, -0.6806' 0x3fe72d0837efff97, 0xbfe610b7551d2cde, // 0.72425, -0.68954' 0x3fe6e74454eaa8ae, 0xbfe6591925f0783e, // 0.71573, -0.69838' 0x3fe6a09e667f3bcc, 0xbfe6a09e667f3bcc, // 0.70711, -0.70711' 0x3fe6591925f0783e, 0xbfe6e74454eaa8ae, // 0.69838, -0.71573' 0x3fe610b7551d2cde, 0xbfe72d0837efff97, // 0.68954, -0.72425' 0x3fe5c77bbe65018c, 0xbfe771e75f037261, // 0.6806, -0.73265' 0x3fe57d69348cec9f, 0xbfe7b5df226aafb0, // 0.67156, -0.74095' 0x3fe5328292a35596, 0xbfe7f8ece3571771, // 0.66242, -0.74914' 0x3fe4e6cabbe3e5e9, 0xbfe83b0e0bff976e, // 0.65317, -0.75721' 0x3fe49a449b9b0938, 0xbfe87c400fba2ebf, // 0.64383, -0.76517' 0x3fe44cf325091dd6, 0xbfe8bc806b151741, // 0.63439, -0.77301' 0x3fe3fed9534556d4, 0xbfe8fbcca3ef940d, // 0.62486, -0.78074' 0x3fe3affa292050b9, 0xbfe93a22499263fc, // 0.61523, -0.78835' 0x3fe36058b10659f3, 0xbfe9777ef4c7d742, // 0.60551, -0.79584' 0x3fe30ff7fce17035, 0xbfe9b3e047f38741, // 0.5957, -0.80321' 0x3fe2bedb25faf3ea, 0xbfe9ef43ef29af94, // 0.5858, -0.81046' 0x3fe26d054cdd12df, 0xbfea29a7a0462782, // 0.57581, -0.81758' 0x3fe21a799933eb58, 0xbfea63091b02fae2, // 0.56573, -0.82459' 0x3fe1c73b39ae68c8, 0xbfea9b66290ea1a3, // 0.55557, -0.83147' 0x3fe1734d63dedb49, 0xbfead2bc9e21d511, // 0.54532, -0.83822' 0x3fe11eb3541b4b22, 0xbfeb090a58150200, // 0.535, -0.84485' 0x3fe0c9704d5d898f, 0xbfeb3e4d3ef55712, // 0.52459, -0.85136' 0x3fe073879922ffed, 0xbfeb728345196e3e, // 0.5141, -0.85773' 0x3fe01cfc874c3eb7, 0xbfeba5aa673590d2, // 0.50354, -0.86397' 0x3fdf8ba4dbf89aba, 0xbfebd7c0ac6f952a, // 0.4929, -0.87009' 0x3fdedc1952ef78d5, 0xbfec08c426725549, // 0.48218, -0.87607' 0x3fde2b5d3806f63b, 0xbfec38b2f180bdb1, // 0.4714, -0.88192' 0x3fdd79775b86e389, 0xbfec678b3488739b, // 0.46054, -0.88764' 0x3fdcc66e9931c45d, 0xbfec954b213411f5, // 0.44961, -0.89322' 0x3fdc1249d8011ee7, 0xbfecc1f0f3fcfc5c, // 0.43862, -0.89867' 0x3fdb5d1009e15cc0, 0xbfeced7af43cc773, // 0.42756, -0.90399' 0x3fdaa6c82b6d3fc9, 0xbfed17e7743e35dc, // 0.41643, -0.90917' 0x3fd9ef7943a8ed8a, 0xbfed4134d14dc93a, // 0.40524, -0.91421' 0x3fd9372a63bc93d7, 0xbfed696173c9e68b, // 0.39399, -0.91911' 0x3fd87de2a6aea963, 0xbfed906bcf328d46, // 0.38268, -0.92388' 0x3fd7c3a9311dcce7, 0xbfedb6526238a09b, // 0.37132, -0.92851' 0x3fd7088530fa459e, 0xbfeddb13b6ccc23d, // 0.3599, -0.93299' 0x3fd64c7ddd3f27c6, 0xbfedfeae622dbe2b, // 0.34842, -0.93734' 0x3fd58f9a75ab1fdd, 0xbfee212104f686e5, // 0.33689, -0.94154' 0x3fd4d1e24278e76a, 0xbfee426a4b2bc17e, // 0.32531, -0.94561' 0x3fd4135c94176602, 0xbfee6288ec48e112, // 0.31368, -0.94953' 0x3fd35410c2e18152, 0xbfee817bab4cd10d, // 0.30201, -0.95331' 0x3fd294062ed59f05, 0xbfee9f4156c62dda, // 0.29028, -0.95694' 0x3fd1d3443f4cdb3d, 0xbfeebbd8c8df0b74, // 0.27852, -0.96043' 0x3fd111d262b1f677, 0xbfeed740e7684963, // 0.26671, -0.96378' 0x3fd04fb80e37fdae, 0xbfeef178a3e473c2, // 0.25487, -0.96698' 0x3fcf19f97b215f1a, 0xbfef0a7efb9230d7, // 0.24298, -0.97003' 0x3fcd934fe5454311, 0xbfef2252f7763ada, // 0.23106, -0.97294' 0x3fcc0b826a7e4f63, 0xbfef38f3ac64e589, // 0.2191, -0.9757' 0x3fca82a025b00451, 0xbfef4e603b0b2f2d, // 0.20711, -0.97832' 0x3fc8f8b83c69a60a, 0xbfef6297cff75cb0, // 0.19509, -0.98079' 0x3fc76dd9de50bf31, 0xbfef7599a3a12077, // 0.18304, -0.98311' 0x3fc5e214448b3fc6, 0xbfef8764fa714ba9, // 0.17096, -0.98528' 0x3fc45576b1293e5a, 0xbfef97f924c9099b, // 0.15886, -0.9873' 0x3fc2c8106e8e613a, 0xbfefa7557f08a517, // 0.14673, -0.98918' 0x3fc139f0cedaf576, 0xbfefb5797195d741, // 0.13458, -0.9909' 0x3fbf564e56a9730e, 0xbfefc26470e19fd3, // 0.12241, -0.99248' 0x3fbc3785c79ec2d5, 0xbfefce15fd6da67b, // 0.11022, -0.99391' 0x3fb917a6bc29b42c, 0xbfefd88da3d12526, //0.098017, -0.99518' 0x3fb5f6d00a9aa419, 0xbfefe1cafcbd5b09, //0.085797, -0.99631' 0x3fb2d52092ce19f6, 0xbfefe9cdad01883a, //0.073565, -0.99729' 0x3faf656e79f820e0, 0xbfeff095658e71ad, //0.061321, -0.99812' 0x3fa91f65f10dd814, 0xbfeff621e3796d7e, //0.049068, -0.9988' 0x3fa2d865759455cd, 0xbfeffa72effef75d, //0.036807, -0.99932' 0x3f992155f7a3667e, 0xbfeffd886084cd0d, //0.024541, -0.9997' 0x3f8921d1fcdec784, 0xbfefff62169b92db, //0.012272, -0.99992' }; const uint64_t twiddleCoefF64_rfft_1024[1024] ARM_DSP_TABLE_ATTRIBUTE = { 0x0000000000000000, 0x3ff0000000000000, // 0, 1' 0x3f7921f0fe670071, 0x3fefffd8858e8a92, //0.0061359, 0.99998' 0x3f8921d1fcdec784, 0x3fefff62169b92db, // 0.012272, 0.99992' 0x3f92d936bbe30efd, 0x3feffe9cb44b51a1, // 0.018407, 0.99983' 0x3f992155f7a3667e, 0x3feffd886084cd0d, // 0.024541, 0.9997' 0x3f9f693731d1cf01, 0x3feffc251df1d3f8, // 0.030675, 0.99953' 0x3fa2d865759455cd, 0x3feffa72effef75d, // 0.036807, 0.99932' 0x3fa5fc00d290cd43, 0x3feff871dadb81df, // 0.042938, 0.99908' 0x3fa91f65f10dd814, 0x3feff621e3796d7e, // 0.049068, 0.9988' 0x3fac428d12c0d7e3, 0x3feff3830f8d575c, // 0.055195, 0.99848' 0x3faf656e79f820e0, 0x3feff095658e71ad, // 0.061321, 0.99812' 0x3fb1440134d709b2, 0x3fefed58ecb673c4, // 0.067444, 0.99772' 0x3fb2d52092ce19f6, 0x3fefe9cdad01883a, // 0.073565, 0.99729' 0x3fb4661179272096, 0x3fefe5f3af2e3940, // 0.079682, 0.99682' 0x3fb5f6d00a9aa419, 0x3fefe1cafcbd5b09, // 0.085797, 0.99631' 0x3fb787586a5d5b21, 0x3fefdd539ff1f456, // 0.091909, 0.99577' 0x3fb917a6bc29b42c, 0x3fefd88da3d12526, // 0.098017, 0.99518' 0x3fbaa7b724495c04, 0x3fefd37914220b84, // 0.10412, 0.99456' 0x3fbc3785c79ec2d5, 0x3fefce15fd6da67b, // 0.11022, 0.99391' 0x3fbdc70ecbae9fc8, 0x3fefc8646cfeb721, // 0.11632, 0.99321' 0x3fbf564e56a9730e, 0x3fefc26470e19fd3, // 0.12241, 0.99248' 0x3fc072a047ba831d, 0x3fefbc1617e44186, // 0.1285, 0.99171' 0x3fc139f0cedaf576, 0x3fefb5797195d741, // 0.13458, 0.9909' 0x3fc20116d4ec7bce, 0x3fefae8e8e46cfbb, // 0.14066, 0.99006' 0x3fc2c8106e8e613a, 0x3fefa7557f08a517, // 0.14673, 0.98918' 0x3fc38edbb0cd8d14, 0x3fef9fce55adb2c8, // 0.1528, 0.98826' 0x3fc45576b1293e5a, 0x3fef97f924c9099b, // 0.15886, 0.9873' 0x3fc51bdf8597c5f2, 0x3fef8fd5ffae41db, // 0.16491, 0.98631' 0x3fc5e214448b3fc6, 0x3fef8764fa714ba9, // 0.17096, 0.98528' 0x3fc6a81304f64ab2, 0x3fef7ea629e63d6e, // 0.177, 0.98421' 0x3fc76dd9de50bf31, 0x3fef7599a3a12077, // 0.18304, 0.98311' 0x3fc83366e89c64c5, 0x3fef6c3f7df5bbb7, // 0.18907, 0.98196' 0x3fc8f8b83c69a60a, 0x3fef6297cff75cb0, // 0.19509, 0.98079' 0x3fc9bdcbf2dc4366, 0x3fef58a2b1789e84, // 0.2011, 0.97957' 0x3fca82a025b00451, 0x3fef4e603b0b2f2d, // 0.20711, 0.97832' 0x3fcb4732ef3d6722, 0x3fef43d085ff92dd, // 0.21311, 0.97703' 0x3fcc0b826a7e4f63, 0x3fef38f3ac64e589, // 0.2191, 0.9757' 0x3fcccf8cb312b286, 0x3fef2dc9c9089a9d, // 0.22508, 0.97434' 0x3fcd934fe5454311, 0x3fef2252f7763ada, // 0.23106, 0.97294' 0x3fce56ca1e101a1b, 0x3fef168f53f7205d, // 0.23702, 0.9715' 0x3fcf19f97b215f1a, 0x3fef0a7efb9230d7, // 0.24298, 0.97003' 0x3fcfdcdc1adfedf8, 0x3feefe220c0b95ec, // 0.24893, 0.96852' 0x3fd04fb80e37fdae, 0x3feef178a3e473c2, // 0.25487, 0.96698' 0x3fd0b0d9cfdbdb90, 0x3feee482e25a9dbc, // 0.26079, 0.96539' 0x3fd111d262b1f677, 0x3feed740e7684963, // 0.26671, 0.96378' 0x3fd172a0d7765177, 0x3feec9b2d3c3bf84, // 0.27262, 0.96212' 0x3fd1d3443f4cdb3d, 0x3feebbd8c8df0b74, // 0.27852, 0.96043' 0x3fd233bbabc3bb72, 0x3feeadb2e8e7a88e, // 0.28441, 0.9587' 0x3fd294062ed59f05, 0x3fee9f4156c62dda, // 0.29028, 0.95694' 0x3fd2f422daec0386, 0x3fee9084361df7f3, // 0.29615, 0.95514' 0x3fd35410c2e18152, 0x3fee817bab4cd10d, // 0.30201, 0.95331' 0x3fd3b3cefa0414b7, 0x3fee7227db6a9744, // 0.30785, 0.95144' 0x3fd4135c94176602, 0x3fee6288ec48e112, // 0.31368, 0.94953' 0x3fd472b8a5571054, 0x3fee529f04729ffc, // 0.3195, 0.94759' 0x3fd4d1e24278e76a, 0x3fee426a4b2bc17e, // 0.32531, 0.94561' 0x3fd530d880af3c24, 0x3fee31eae870ce25, // 0.33111, 0.94359' 0x3fd58f9a75ab1fdd, 0x3fee212104f686e5, // 0.33689, 0.94154' 0x3fd5ee27379ea693, 0x3fee100cca2980ac, // 0.34266, 0.93946' 0x3fd64c7ddd3f27c6, 0x3fedfeae622dbe2b, // 0.34842, 0.93734' 0x3fd6aa9d7dc77e16, 0x3feded05f7de47da, // 0.35416, 0.93518' 0x3fd7088530fa459e, 0x3feddb13b6ccc23d, // 0.3599, 0.93299' 0x3fd766340f2418f6, 0x3fedc8d7cb410260, // 0.36561, 0.93077' 0x3fd7c3a9311dcce7, 0x3fedb6526238a09b, // 0.37132, 0.92851' 0x3fd820e3b04eaac4, 0x3feda383a9668988, // 0.37701, 0.92621' 0x3fd87de2a6aea963, 0x3fed906bcf328d46, // 0.38268, 0.92388' 0x3fd8daa52ec8a4af, 0x3fed7d0b02b8ecf9, // 0.38835, 0.92151' 0x3fd9372a63bc93d7, 0x3fed696173c9e68b, // 0.39399, 0.91911' 0x3fd993716141bdfe, 0x3fed556f52e93eb1, // 0.39962, 0.91668' 0x3fd9ef7943a8ed8a, 0x3fed4134d14dc93a, // 0.40524, 0.91421' 0x3fda4b4127dea1e4, 0x3fed2cb220e0ef9f, // 0.41084, 0.91171' 0x3fdaa6c82b6d3fc9, 0x3fed17e7743e35dc, // 0.41643, 0.90917' 0x3fdb020d6c7f4009, 0x3fed02d4feb2bd92, // 0.422, 0.9066' 0x3fdb5d1009e15cc0, 0x3feced7af43cc773, // 0.42756, 0.90399' 0x3fdbb7cf2304bd01, 0x3fecd7d9898b32f6, // 0.43309, 0.90135' 0x3fdc1249d8011ee7, 0x3fecc1f0f3fcfc5c, // 0.43862, 0.89867' 0x3fdc6c7f4997000a, 0x3fecabc169a0b901, // 0.44412, 0.89597' 0x3fdcc66e9931c45d, 0x3fec954b213411f5, // 0.44961, 0.89322' 0x3fdd2016e8e9db5b, 0x3fec7e8e52233cf3, // 0.45508, 0.89045' 0x3fdd79775b86e389, 0x3fec678b3488739b, // 0.46054, 0.88764' 0x3fddd28f1481cc58, 0x3fec5042012b6907, // 0.46598, 0.8848' 0x3fde2b5d3806f63b, 0x3fec38b2f180bdb1, // 0.4714, 0.88192' 0x3fde83e0eaf85113, 0x3fec20de3fa971b0, // 0.4768, 0.87901' 0x3fdedc1952ef78d5, 0x3fec08c426725549, // 0.48218, 0.87607' 0x3fdf3405963fd068, 0x3febf064e15377dd, // 0.48755, 0.87309' 0x3fdf8ba4dbf89aba, 0x3febd7c0ac6f952a, // 0.4929, 0.87009' 0x3fdfe2f64be7120f, 0x3febbed7c49380ea, // 0.49823, 0.86705' 0x3fe01cfc874c3eb7, 0x3feba5aa673590d2, // 0.50354, 0.86397' 0x3fe0485626ae221a, 0x3feb8c38d27504e9, // 0.50883, 0.86087' 0x3fe073879922ffed, 0x3feb728345196e3e, // 0.5141, 0.85773' 0x3fe09e907417c5e1, 0x3feb5889fe921405, // 0.51936, 0.85456' 0x3fe0c9704d5d898f, 0x3feb3e4d3ef55712, // 0.52459, 0.85136' 0x3fe0f426bb2a8e7d, 0x3feb23cd470013b4, // 0.5298, 0.84812' 0x3fe11eb3541b4b22, 0x3feb090a58150200, // 0.535, 0.84485' 0x3fe14915af336ceb, 0x3feaee04b43c1474, // 0.54017, 0.84155' 0x3fe1734d63dedb49, 0x3fead2bc9e21d511, // 0.54532, 0.83822' 0x3fe19d5a09f2b9b8, 0x3feab7325916c0d4, // 0.55046, 0.83486' 0x3fe1c73b39ae68c8, 0x3fea9b66290ea1a3, // 0.55557, 0.83147' 0x3fe1f0f08bbc861b, 0x3fea7f58529fe69d, // 0.56066, 0.82805' 0x3fe21a799933eb58, 0x3fea63091b02fae2, // 0.56573, 0.82459' 0x3fe243d5fb98ac1f, 0x3fea4678c8119ac8, // 0.57078, 0.8211' 0x3fe26d054cdd12df, 0x3fea29a7a0462782, // 0.57581, 0.81758' 0x3fe2960727629ca8, 0x3fea0c95eabaf937, // 0.58081, 0.81404' 0x3fe2bedb25faf3ea, 0x3fe9ef43ef29af94, // 0.5858, 0.81046' 0x3fe2e780e3e8ea16, 0x3fe9d1b1f5ea80d6, // 0.59076, 0.80685' 0x3fe30ff7fce17035, 0x3fe9b3e047f38741, // 0.5957, 0.80321' 0x3fe338400d0c8e57, 0x3fe995cf2ed80d22, // 0.60062, 0.79954' 0x3fe36058b10659f3, 0x3fe9777ef4c7d742, // 0.60551, 0.79584' 0x3fe3884185dfeb22, 0x3fe958efe48e6dd7, // 0.61038, 0.79211' 0x3fe3affa292050b9, 0x3fe93a22499263fc, // 0.61523, 0.78835' 0x3fe3d78238c58343, 0x3fe91b166fd49da2, // 0.62006, 0.78456' 0x3fe3fed9534556d4, 0x3fe8fbcca3ef940d, // 0.62486, 0.78074' 0x3fe425ff178e6bb1, 0x3fe8dc45331698cc, // 0.62964, 0.77689' 0x3fe44cf325091dd6, 0x3fe8bc806b151741, // 0.63439, 0.77301' 0x3fe473b51b987347, 0x3fe89c7e9a4dd4ab, // 0.63912, 0.7691' 0x3fe49a449b9b0938, 0x3fe87c400fba2ebf, // 0.64383, 0.76517' 0x3fe4c0a145ec0004, 0x3fe85bc51ae958cc, // 0.64851, 0.7612' 0x3fe4e6cabbe3e5e9, 0x3fe83b0e0bff976e, // 0.65317, 0.75721' 0x3fe50cc09f59a09b, 0x3fe81a1b33b57acc, // 0.65781, 0.75319' 0x3fe5328292a35596, 0x3fe7f8ece3571771, // 0.66242, 0.74914' 0x3fe5581038975137, 0x3fe7d7836cc33db2, // 0.667, 0.74506' 0x3fe57d69348cec9f, 0x3fe7b5df226aafb0, // 0.67156, 0.74095' 0x3fe5a28d2a5d7250, 0x3fe79400574f55e4, // 0.67609, 0.73682' 0x3fe5c77bbe65018c, 0x3fe771e75f037261, // 0.6806, 0.73265' 0x3fe5ec3495837074, 0x3fe74f948da8d28d, // 0.68508, 0.72846' 0x3fe610b7551d2cde, 0x3fe72d0837efff97, // 0.68954, 0.72425' 0x3fe63503a31c1be8, 0x3fe70a42b3176d7a, // 0.69397, 0.72' 0x3fe6591925f0783e, 0x3fe6e74454eaa8ae, // 0.69838, 0.71573' 0x3fe67cf78491af10, 0x3fe6c40d73c18275, // 0.70275, 0.71143' 0x3fe6a09e667f3bcc, 0x3fe6a09e667f3bcc, // 0.70711, 0.70711' 0x3fe6c40d73c18275, 0x3fe67cf78491af10, // 0.71143, 0.70275' 0x3fe6e74454eaa8ae, 0x3fe6591925f0783e, // 0.71573, 0.69838' 0x3fe70a42b3176d7a, 0x3fe63503a31c1be8, // 0.72, 0.69397' 0x3fe72d0837efff97, 0x3fe610b7551d2cde, // 0.72425, 0.68954' 0x3fe74f948da8d28d, 0x3fe5ec3495837074, // 0.72846, 0.68508' 0x3fe771e75f037261, 0x3fe5c77bbe65018c, // 0.73265, 0.6806' 0x3fe79400574f55e4, 0x3fe5a28d2a5d7250, // 0.73682, 0.67609' 0x3fe7b5df226aafb0, 0x3fe57d69348cec9f, // 0.74095, 0.67156' 0x3fe7d7836cc33db2, 0x3fe5581038975137, // 0.74506, 0.667' 0x3fe7f8ece3571771, 0x3fe5328292a35596, // 0.74914, 0.66242' 0x3fe81a1b33b57acc, 0x3fe50cc09f59a09b, // 0.75319, 0.65781' 0x3fe83b0e0bff976e, 0x3fe4e6cabbe3e5e9, // 0.75721, 0.65317' 0x3fe85bc51ae958cc, 0x3fe4c0a145ec0004, // 0.7612, 0.64851' 0x3fe87c400fba2ebf, 0x3fe49a449b9b0938, // 0.76517, 0.64383' 0x3fe89c7e9a4dd4ab, 0x3fe473b51b987347, // 0.7691, 0.63912' 0x3fe8bc806b151741, 0x3fe44cf325091dd6, // 0.77301, 0.63439' 0x3fe8dc45331698cc, 0x3fe425ff178e6bb1, // 0.77689, 0.62964' 0x3fe8fbcca3ef940d, 0x3fe3fed9534556d4, // 0.78074, 0.62486' 0x3fe91b166fd49da2, 0x3fe3d78238c58343, // 0.78456, 0.62006' 0x3fe93a22499263fc, 0x3fe3affa292050b9, // 0.78835, 0.61523' 0x3fe958efe48e6dd7, 0x3fe3884185dfeb22, // 0.79211, 0.61038' 0x3fe9777ef4c7d742, 0x3fe36058b10659f3, // 0.79584, 0.60551' 0x3fe995cf2ed80d22, 0x3fe338400d0c8e57, // 0.79954, 0.60062' 0x3fe9b3e047f38741, 0x3fe30ff7fce17035, // 0.80321, 0.5957' 0x3fe9d1b1f5ea80d6, 0x3fe2e780e3e8ea16, // 0.80685, 0.59076' 0x3fe9ef43ef29af94, 0x3fe2bedb25faf3ea, // 0.81046, 0.5858' 0x3fea0c95eabaf937, 0x3fe2960727629ca8, // 0.81404, 0.58081' 0x3fea29a7a0462782, 0x3fe26d054cdd12df, // 0.81758, 0.57581' 0x3fea4678c8119ac8, 0x3fe243d5fb98ac1f, // 0.8211, 0.57078' 0x3fea63091b02fae2, 0x3fe21a799933eb58, // 0.82459, 0.56573' 0x3fea7f58529fe69d, 0x3fe1f0f08bbc861b, // 0.82805, 0.56066' 0x3fea9b66290ea1a3, 0x3fe1c73b39ae68c8, // 0.83147, 0.55557' 0x3feab7325916c0d4, 0x3fe19d5a09f2b9b8, // 0.83486, 0.55046' 0x3fead2bc9e21d511, 0x3fe1734d63dedb49, // 0.83822, 0.54532' 0x3feaee04b43c1474, 0x3fe14915af336ceb, // 0.84155, 0.54017' 0x3feb090a58150200, 0x3fe11eb3541b4b22, // 0.84485, 0.535' 0x3feb23cd470013b4, 0x3fe0f426bb2a8e7d, // 0.84812, 0.5298' 0x3feb3e4d3ef55712, 0x3fe0c9704d5d898f, // 0.85136, 0.52459' 0x3feb5889fe921405, 0x3fe09e907417c5e1, // 0.85456, 0.51936' 0x3feb728345196e3e, 0x3fe073879922ffed, // 0.85773, 0.5141' 0x3feb8c38d27504e9, 0x3fe0485626ae221a, // 0.86087, 0.50883' 0x3feba5aa673590d2, 0x3fe01cfc874c3eb7, // 0.86397, 0.50354' 0x3febbed7c49380ea, 0x3fdfe2f64be7120f, // 0.86705, 0.49823' 0x3febd7c0ac6f952a, 0x3fdf8ba4dbf89aba, // 0.87009, 0.4929' 0x3febf064e15377dd, 0x3fdf3405963fd068, // 0.87309, 0.48755' 0x3fec08c426725549, 0x3fdedc1952ef78d5, // 0.87607, 0.48218' 0x3fec20de3fa971b0, 0x3fde83e0eaf85113, // 0.87901, 0.4768' 0x3fec38b2f180bdb1, 0x3fde2b5d3806f63b, // 0.88192, 0.4714' 0x3fec5042012b6907, 0x3fddd28f1481cc58, // 0.8848, 0.46598' 0x3fec678b3488739b, 0x3fdd79775b86e389, // 0.88764, 0.46054' 0x3fec7e8e52233cf3, 0x3fdd2016e8e9db5b, // 0.89045, 0.45508' 0x3fec954b213411f5, 0x3fdcc66e9931c45d, // 0.89322, 0.44961' 0x3fecabc169a0b901, 0x3fdc6c7f4997000a, // 0.89597, 0.44412' 0x3fecc1f0f3fcfc5c, 0x3fdc1249d8011ee7, // 0.89867, 0.43862' 0x3fecd7d9898b32f6, 0x3fdbb7cf2304bd01, // 0.90135, 0.43309' 0x3feced7af43cc773, 0x3fdb5d1009e15cc0, // 0.90399, 0.42756' 0x3fed02d4feb2bd92, 0x3fdb020d6c7f4009, // 0.9066, 0.422' 0x3fed17e7743e35dc, 0x3fdaa6c82b6d3fc9, // 0.90917, 0.41643' 0x3fed2cb220e0ef9f, 0x3fda4b4127dea1e4, // 0.91171, 0.41084' 0x3fed4134d14dc93a, 0x3fd9ef7943a8ed8a, // 0.91421, 0.40524' 0x3fed556f52e93eb1, 0x3fd993716141bdfe, // 0.91668, 0.39962' 0x3fed696173c9e68b, 0x3fd9372a63bc93d7, // 0.91911, 0.39399' 0x3fed7d0b02b8ecf9, 0x3fd8daa52ec8a4af, // 0.92151, 0.38835' 0x3fed906bcf328d46, 0x3fd87de2a6aea963, // 0.92388, 0.38268' 0x3feda383a9668988, 0x3fd820e3b04eaac4, // 0.92621, 0.37701' 0x3fedb6526238a09b, 0x3fd7c3a9311dcce7, // 0.92851, 0.37132' 0x3fedc8d7cb410260, 0x3fd766340f2418f6, // 0.93077, 0.36561' 0x3feddb13b6ccc23d, 0x3fd7088530fa459e, // 0.93299, 0.3599' 0x3feded05f7de47da, 0x3fd6aa9d7dc77e16, // 0.93518, 0.35416' 0x3fedfeae622dbe2b, 0x3fd64c7ddd3f27c6, // 0.93734, 0.34842' 0x3fee100cca2980ac, 0x3fd5ee27379ea693, // 0.93946, 0.34266' 0x3fee212104f686e5, 0x3fd58f9a75ab1fdd, // 0.94154, 0.33689' 0x3fee31eae870ce25, 0x3fd530d880af3c24, // 0.94359, 0.33111' 0x3fee426a4b2bc17e, 0x3fd4d1e24278e76a, // 0.94561, 0.32531' 0x3fee529f04729ffc, 0x3fd472b8a5571054, // 0.94759, 0.3195' 0x3fee6288ec48e112, 0x3fd4135c94176602, // 0.94953, 0.31368' 0x3fee7227db6a9744, 0x3fd3b3cefa0414b7, // 0.95144, 0.30785' 0x3fee817bab4cd10d, 0x3fd35410c2e18152, // 0.95331, 0.30201' 0x3fee9084361df7f3, 0x3fd2f422daec0386, // 0.95514, 0.29615' 0x3fee9f4156c62dda, 0x3fd294062ed59f05, // 0.95694, 0.29028' 0x3feeadb2e8e7a88e, 0x3fd233bbabc3bb72, // 0.9587, 0.28441' 0x3feebbd8c8df0b74, 0x3fd1d3443f4cdb3d, // 0.96043, 0.27852' 0x3feec9b2d3c3bf84, 0x3fd172a0d7765177, // 0.96212, 0.27262' 0x3feed740e7684963, 0x3fd111d262b1f677, // 0.96378, 0.26671' 0x3feee482e25a9dbc, 0x3fd0b0d9cfdbdb90, // 0.96539, 0.26079' 0x3feef178a3e473c2, 0x3fd04fb80e37fdae, // 0.96698, 0.25487' 0x3feefe220c0b95ec, 0x3fcfdcdc1adfedf8, // 0.96852, 0.24893' 0x3fef0a7efb9230d7, 0x3fcf19f97b215f1a, // 0.97003, 0.24298' 0x3fef168f53f7205d, 0x3fce56ca1e101a1b, // 0.9715, 0.23702' 0x3fef2252f7763ada, 0x3fcd934fe5454311, // 0.97294, 0.23106' 0x3fef2dc9c9089a9d, 0x3fcccf8cb312b286, // 0.97434, 0.22508' 0x3fef38f3ac64e589, 0x3fcc0b826a7e4f63, // 0.9757, 0.2191' 0x3fef43d085ff92dd, 0x3fcb4732ef3d6722, // 0.97703, 0.21311' 0x3fef4e603b0b2f2d, 0x3fca82a025b00451, // 0.97832, 0.20711' 0x3fef58a2b1789e84, 0x3fc9bdcbf2dc4366, // 0.97957, 0.2011' 0x3fef6297cff75cb0, 0x3fc8f8b83c69a60a, // 0.98079, 0.19509' 0x3fef6c3f7df5bbb7, 0x3fc83366e89c64c5, // 0.98196, 0.18907' 0x3fef7599a3a12077, 0x3fc76dd9de50bf31, // 0.98311, 0.18304' 0x3fef7ea629e63d6e, 0x3fc6a81304f64ab2, // 0.98421, 0.177' 0x3fef8764fa714ba9, 0x3fc5e214448b3fc6, // 0.98528, 0.17096' 0x3fef8fd5ffae41db, 0x3fc51bdf8597c5f2, // 0.98631, 0.16491' 0x3fef97f924c9099b, 0x3fc45576b1293e5a, // 0.9873, 0.15886' 0x3fef9fce55adb2c8, 0x3fc38edbb0cd8d14, // 0.98826, 0.1528' 0x3fefa7557f08a517, 0x3fc2c8106e8e613a, // 0.98918, 0.14673' 0x3fefae8e8e46cfbb, 0x3fc20116d4ec7bce, // 0.99006, 0.14066' 0x3fefb5797195d741, 0x3fc139f0cedaf576, // 0.9909, 0.13458' 0x3fefbc1617e44186, 0x3fc072a047ba831d, // 0.99171, 0.1285' 0x3fefc26470e19fd3, 0x3fbf564e56a9730e, // 0.99248, 0.12241' 0x3fefc8646cfeb721, 0x3fbdc70ecbae9fc8, // 0.99321, 0.11632' 0x3fefce15fd6da67b, 0x3fbc3785c79ec2d5, // 0.99391, 0.11022' 0x3fefd37914220b84, 0x3fbaa7b724495c04, // 0.99456, 0.10412' 0x3fefd88da3d12526, 0x3fb917a6bc29b42c, // 0.99518, 0.098017' 0x3fefdd539ff1f456, 0x3fb787586a5d5b21, // 0.99577, 0.091909' 0x3fefe1cafcbd5b09, 0x3fb5f6d00a9aa419, // 0.99631, 0.085797' 0x3fefe5f3af2e3940, 0x3fb4661179272096, // 0.99682, 0.079682' 0x3fefe9cdad01883a, 0x3fb2d52092ce19f6, // 0.99729, 0.073565' 0x3fefed58ecb673c4, 0x3fb1440134d709b2, // 0.99772, 0.067444' 0x3feff095658e71ad, 0x3faf656e79f820e0, // 0.99812, 0.061321' 0x3feff3830f8d575c, 0x3fac428d12c0d7e3, // 0.99848, 0.055195' 0x3feff621e3796d7e, 0x3fa91f65f10dd814, // 0.9988, 0.049068' 0x3feff871dadb81df, 0x3fa5fc00d290cd43, // 0.99908, 0.042938' 0x3feffa72effef75d, 0x3fa2d865759455cd, // 0.99932, 0.036807' 0x3feffc251df1d3f8, 0x3f9f693731d1cf01, // 0.99953, 0.030675' 0x3feffd886084cd0d, 0x3f992155f7a3667e, // 0.9997, 0.024541' 0x3feffe9cb44b51a1, 0x3f92d936bbe30efd, // 0.99983, 0.018407' 0x3fefff62169b92db, 0x3f8921d1fcdec784, // 0.99992, 0.012272' 0x3fefffd8858e8a92, 0x3f7921f0fe670071, // 0.99998, 0.0061359' 0x3ff0000000000000, 0x0000000000000000, // 1, 0' 0x3fefffd8858e8a92, 0xbf7921f0fe670071, // 0.99998,-0.0061359' 0x3fefff62169b92db, 0xbf8921d1fcdec784, // 0.99992, -0.012272' 0x3feffe9cb44b51a1, 0xbf92d936bbe30efd, // 0.99983, -0.018407' 0x3feffd886084cd0d, 0xbf992155f7a3667e, // 0.9997, -0.024541' 0x3feffc251df1d3f8, 0xbf9f693731d1cf01, // 0.99953, -0.030675' 0x3feffa72effef75d, 0xbfa2d865759455cd, // 0.99932, -0.036807' 0x3feff871dadb81df, 0xbfa5fc00d290cd43, // 0.99908, -0.042938' 0x3feff621e3796d7e, 0xbfa91f65f10dd814, // 0.9988, -0.049068' 0x3feff3830f8d575c, 0xbfac428d12c0d7e3, // 0.99848, -0.055195' 0x3feff095658e71ad, 0xbfaf656e79f820e0, // 0.99812, -0.061321' 0x3fefed58ecb673c4, 0xbfb1440134d709b2, // 0.99772, -0.067444' 0x3fefe9cdad01883a, 0xbfb2d52092ce19f6, // 0.99729, -0.073565' 0x3fefe5f3af2e3940, 0xbfb4661179272096, // 0.99682, -0.079682' 0x3fefe1cafcbd5b09, 0xbfb5f6d00a9aa419, // 0.99631, -0.085797' 0x3fefdd539ff1f456, 0xbfb787586a5d5b21, // 0.99577, -0.091909' 0x3fefd88da3d12526, 0xbfb917a6bc29b42c, // 0.99518, -0.098017' 0x3fefd37914220b84, 0xbfbaa7b724495c04, // 0.99456, -0.10412' 0x3fefce15fd6da67b, 0xbfbc3785c79ec2d5, // 0.99391, -0.11022' 0x3fefc8646cfeb721, 0xbfbdc70ecbae9fc8, // 0.99321, -0.11632' 0x3fefc26470e19fd3, 0xbfbf564e56a9730e, // 0.99248, -0.12241' 0x3fefbc1617e44186, 0xbfc072a047ba831d, // 0.99171, -0.1285' 0x3fefb5797195d741, 0xbfc139f0cedaf576, // 0.9909, -0.13458' 0x3fefae8e8e46cfbb, 0xbfc20116d4ec7bce, // 0.99006, -0.14066' 0x3fefa7557f08a517, 0xbfc2c8106e8e613a, // 0.98918, -0.14673' 0x3fef9fce55adb2c8, 0xbfc38edbb0cd8d14, // 0.98826, -0.1528' 0x3fef97f924c9099b, 0xbfc45576b1293e5a, // 0.9873, -0.15886' 0x3fef8fd5ffae41db, 0xbfc51bdf8597c5f2, // 0.98631, -0.16491' 0x3fef8764fa714ba9, 0xbfc5e214448b3fc6, // 0.98528, -0.17096' 0x3fef7ea629e63d6e, 0xbfc6a81304f64ab2, // 0.98421, -0.177' 0x3fef7599a3a12077, 0xbfc76dd9de50bf31, // 0.98311, -0.18304' 0x3fef6c3f7df5bbb7, 0xbfc83366e89c64c5, // 0.98196, -0.18907' 0x3fef6297cff75cb0, 0xbfc8f8b83c69a60a, // 0.98079, -0.19509' 0x3fef58a2b1789e84, 0xbfc9bdcbf2dc4366, // 0.97957, -0.2011' 0x3fef4e603b0b2f2d, 0xbfca82a025b00451, // 0.97832, -0.20711' 0x3fef43d085ff92dd, 0xbfcb4732ef3d6722, // 0.97703, -0.21311' 0x3fef38f3ac64e589, 0xbfcc0b826a7e4f63, // 0.9757, -0.2191' 0x3fef2dc9c9089a9d, 0xbfcccf8cb312b286, // 0.97434, -0.22508' 0x3fef2252f7763ada, 0xbfcd934fe5454311, // 0.97294, -0.23106' 0x3fef168f53f7205d, 0xbfce56ca1e101a1b, // 0.9715, -0.23702' 0x3fef0a7efb9230d7, 0xbfcf19f97b215f1a, // 0.97003, -0.24298' 0x3feefe220c0b95ec, 0xbfcfdcdc1adfedf8, // 0.96852, -0.24893' 0x3feef178a3e473c2, 0xbfd04fb80e37fdae, // 0.96698, -0.25487' 0x3feee482e25a9dbc, 0xbfd0b0d9cfdbdb90, // 0.96539, -0.26079' 0x3feed740e7684963, 0xbfd111d262b1f677, // 0.96378, -0.26671' 0x3feec9b2d3c3bf84, 0xbfd172a0d7765177, // 0.96212, -0.27262' 0x3feebbd8c8df0b74, 0xbfd1d3443f4cdb3d, // 0.96043, -0.27852' 0x3feeadb2e8e7a88e, 0xbfd233bbabc3bb72, // 0.9587, -0.28441' 0x3fee9f4156c62dda, 0xbfd294062ed59f05, // 0.95694, -0.29028' 0x3fee9084361df7f3, 0xbfd2f422daec0386, // 0.95514, -0.29615' 0x3fee817bab4cd10d, 0xbfd35410c2e18152, // 0.95331, -0.30201' 0x3fee7227db6a9744, 0xbfd3b3cefa0414b7, // 0.95144, -0.30785' 0x3fee6288ec48e112, 0xbfd4135c94176602, // 0.94953, -0.31368' 0x3fee529f04729ffc, 0xbfd472b8a5571054, // 0.94759, -0.3195' 0x3fee426a4b2bc17e, 0xbfd4d1e24278e76a, // 0.94561, -0.32531' 0x3fee31eae870ce25, 0xbfd530d880af3c24, // 0.94359, -0.33111' 0x3fee212104f686e5, 0xbfd58f9a75ab1fdd, // 0.94154, -0.33689' 0x3fee100cca2980ac, 0xbfd5ee27379ea693, // 0.93946, -0.34266' 0x3fedfeae622dbe2b, 0xbfd64c7ddd3f27c6, // 0.93734, -0.34842' 0x3feded05f7de47da, 0xbfd6aa9d7dc77e16, // 0.93518, -0.35416' 0x3feddb13b6ccc23d, 0xbfd7088530fa459e, // 0.93299, -0.3599' 0x3fedc8d7cb410260, 0xbfd766340f2418f6, // 0.93077, -0.36561' 0x3fedb6526238a09b, 0xbfd7c3a9311dcce7, // 0.92851, -0.37132' 0x3feda383a9668988, 0xbfd820e3b04eaac4, // 0.92621, -0.37701' 0x3fed906bcf328d46, 0xbfd87de2a6aea963, // 0.92388, -0.38268' 0x3fed7d0b02b8ecf9, 0xbfd8daa52ec8a4af, // 0.92151, -0.38835' 0x3fed696173c9e68b, 0xbfd9372a63bc93d7, // 0.91911, -0.39399' 0x3fed556f52e93eb1, 0xbfd993716141bdfe, // 0.91668, -0.39962' 0x3fed4134d14dc93a, 0xbfd9ef7943a8ed8a, // 0.91421, -0.40524' 0x3fed2cb220e0ef9f, 0xbfda4b4127dea1e4, // 0.91171, -0.41084' 0x3fed17e7743e35dc, 0xbfdaa6c82b6d3fc9, // 0.90917, -0.41643' 0x3fed02d4feb2bd92, 0xbfdb020d6c7f4009, // 0.9066, -0.422' 0x3feced7af43cc773, 0xbfdb5d1009e15cc0, // 0.90399, -0.42756' 0x3fecd7d9898b32f6, 0xbfdbb7cf2304bd01, // 0.90135, -0.43309' 0x3fecc1f0f3fcfc5c, 0xbfdc1249d8011ee7, // 0.89867, -0.43862' 0x3fecabc169a0b901, 0xbfdc6c7f4997000a, // 0.89597, -0.44412' 0x3fec954b213411f5, 0xbfdcc66e9931c45d, // 0.89322, -0.44961' 0x3fec7e8e52233cf3, 0xbfdd2016e8e9db5b, // 0.89045, -0.45508' 0x3fec678b3488739b, 0xbfdd79775b86e389, // 0.88764, -0.46054' 0x3fec5042012b6907, 0xbfddd28f1481cc58, // 0.8848, -0.46598' 0x3fec38b2f180bdb1, 0xbfde2b5d3806f63b, // 0.88192, -0.4714' 0x3fec20de3fa971b0, 0xbfde83e0eaf85113, // 0.87901, -0.4768' 0x3fec08c426725549, 0xbfdedc1952ef78d5, // 0.87607, -0.48218' 0x3febf064e15377dd, 0xbfdf3405963fd068, // 0.87309, -0.48755' 0x3febd7c0ac6f952a, 0xbfdf8ba4dbf89aba, // 0.87009, -0.4929' 0x3febbed7c49380ea, 0xbfdfe2f64be7120f, // 0.86705, -0.49823' 0x3feba5aa673590d2, 0xbfe01cfc874c3eb7, // 0.86397, -0.50354' 0x3feb8c38d27504e9, 0xbfe0485626ae221a, // 0.86087, -0.50883' 0x3feb728345196e3e, 0xbfe073879922ffed, // 0.85773, -0.5141' 0x3feb5889fe921405, 0xbfe09e907417c5e1, // 0.85456, -0.51936' 0x3feb3e4d3ef55712, 0xbfe0c9704d5d898f, // 0.85136, -0.52459' 0x3feb23cd470013b4, 0xbfe0f426bb2a8e7d, // 0.84812, -0.5298' 0x3feb090a58150200, 0xbfe11eb3541b4b22, // 0.84485, -0.535' 0x3feaee04b43c1474, 0xbfe14915af336ceb, // 0.84155, -0.54017' 0x3fead2bc9e21d511, 0xbfe1734d63dedb49, // 0.83822, -0.54532' 0x3feab7325916c0d4, 0xbfe19d5a09f2b9b8, // 0.83486, -0.55046' 0x3fea9b66290ea1a3, 0xbfe1c73b39ae68c8, // 0.83147, -0.55557' 0x3fea7f58529fe69d, 0xbfe1f0f08bbc861b, // 0.82805, -0.56066' 0x3fea63091b02fae2, 0xbfe21a799933eb58, // 0.82459, -0.56573' 0x3fea4678c8119ac8, 0xbfe243d5fb98ac1f, // 0.8211, -0.57078' 0x3fea29a7a0462782, 0xbfe26d054cdd12df, // 0.81758, -0.57581' 0x3fea0c95eabaf937, 0xbfe2960727629ca8, // 0.81404, -0.58081' 0x3fe9ef43ef29af94, 0xbfe2bedb25faf3ea, // 0.81046, -0.5858' 0x3fe9d1b1f5ea80d6, 0xbfe2e780e3e8ea16, // 0.80685, -0.59076' 0x3fe9b3e047f38741, 0xbfe30ff7fce17035, // 0.80321, -0.5957' 0x3fe995cf2ed80d22, 0xbfe338400d0c8e57, // 0.79954, -0.60062' 0x3fe9777ef4c7d742, 0xbfe36058b10659f3, // 0.79584, -0.60551' 0x3fe958efe48e6dd7, 0xbfe3884185dfeb22, // 0.79211, -0.61038' 0x3fe93a22499263fc, 0xbfe3affa292050b9, // 0.78835, -0.61523' 0x3fe91b166fd49da2, 0xbfe3d78238c58343, // 0.78456, -0.62006' 0x3fe8fbcca3ef940d, 0xbfe3fed9534556d4, // 0.78074, -0.62486' 0x3fe8dc45331698cc, 0xbfe425ff178e6bb1, // 0.77689, -0.62964' 0x3fe8bc806b151741, 0xbfe44cf325091dd6, // 0.77301, -0.63439' 0x3fe89c7e9a4dd4ab, 0xbfe473b51b987347, // 0.7691, -0.63912' 0x3fe87c400fba2ebf, 0xbfe49a449b9b0938, // 0.76517, -0.64383' 0x3fe85bc51ae958cc, 0xbfe4c0a145ec0004, // 0.7612, -0.64851' 0x3fe83b0e0bff976e, 0xbfe4e6cabbe3e5e9, // 0.75721, -0.65317' 0x3fe81a1b33b57acc, 0xbfe50cc09f59a09b, // 0.75319, -0.65781' 0x3fe7f8ece3571771, 0xbfe5328292a35596, // 0.74914, -0.66242' 0x3fe7d7836cc33db2, 0xbfe5581038975137, // 0.74506, -0.667' 0x3fe7b5df226aafb0, 0xbfe57d69348cec9f, // 0.74095, -0.67156' 0x3fe79400574f55e4, 0xbfe5a28d2a5d7250, // 0.73682, -0.67609' 0x3fe771e75f037261, 0xbfe5c77bbe65018c, // 0.73265, -0.6806' 0x3fe74f948da8d28d, 0xbfe5ec3495837074, // 0.72846, -0.68508' 0x3fe72d0837efff97, 0xbfe610b7551d2cde, // 0.72425, -0.68954' 0x3fe70a42b3176d7a, 0xbfe63503a31c1be8, // 0.72, -0.69397' 0x3fe6e74454eaa8ae, 0xbfe6591925f0783e, // 0.71573, -0.69838' 0x3fe6c40d73c18275, 0xbfe67cf78491af10, // 0.71143, -0.70275' 0x3fe6a09e667f3bcc, 0xbfe6a09e667f3bcc, // 0.70711, -0.70711' 0x3fe67cf78491af10, 0xbfe6c40d73c18275, // 0.70275, -0.71143' 0x3fe6591925f0783e, 0xbfe6e74454eaa8ae, // 0.69838, -0.71573' 0x3fe63503a31c1be8, 0xbfe70a42b3176d7a, // 0.69397, -0.72' 0x3fe610b7551d2cde, 0xbfe72d0837efff97, // 0.68954, -0.72425' 0x3fe5ec3495837074, 0xbfe74f948da8d28d, // 0.68508, -0.72846' 0x3fe5c77bbe65018c, 0xbfe771e75f037261, // 0.6806, -0.73265' 0x3fe5a28d2a5d7250, 0xbfe79400574f55e4, // 0.67609, -0.73682' 0x3fe57d69348cec9f, 0xbfe7b5df226aafb0, // 0.67156, -0.74095' 0x3fe5581038975137, 0xbfe7d7836cc33db2, // 0.667, -0.74506' 0x3fe5328292a35596, 0xbfe7f8ece3571771, // 0.66242, -0.74914' 0x3fe50cc09f59a09b, 0xbfe81a1b33b57acc, // 0.65781, -0.75319' 0x3fe4e6cabbe3e5e9, 0xbfe83b0e0bff976e, // 0.65317, -0.75721' 0x3fe4c0a145ec0004, 0xbfe85bc51ae958cc, // 0.64851, -0.7612' 0x3fe49a449b9b0938, 0xbfe87c400fba2ebf, // 0.64383, -0.76517' 0x3fe473b51b987347, 0xbfe89c7e9a4dd4ab, // 0.63912, -0.7691' 0x3fe44cf325091dd6, 0xbfe8bc806b151741, // 0.63439, -0.77301' 0x3fe425ff178e6bb1, 0xbfe8dc45331698cc, // 0.62964, -0.77689' 0x3fe3fed9534556d4, 0xbfe8fbcca3ef940d, // 0.62486, -0.78074' 0x3fe3d78238c58343, 0xbfe91b166fd49da2, // 0.62006, -0.78456' 0x3fe3affa292050b9, 0xbfe93a22499263fc, // 0.61523, -0.78835' 0x3fe3884185dfeb22, 0xbfe958efe48e6dd7, // 0.61038, -0.79211' 0x3fe36058b10659f3, 0xbfe9777ef4c7d742, // 0.60551, -0.79584' 0x3fe338400d0c8e57, 0xbfe995cf2ed80d22, // 0.60062, -0.79954' 0x3fe30ff7fce17035, 0xbfe9b3e047f38741, // 0.5957, -0.80321' 0x3fe2e780e3e8ea16, 0xbfe9d1b1f5ea80d6, // 0.59076, -0.80685' 0x3fe2bedb25faf3ea, 0xbfe9ef43ef29af94, // 0.5858, -0.81046' 0x3fe2960727629ca8, 0xbfea0c95eabaf937, // 0.58081, -0.81404' 0x3fe26d054cdd12df, 0xbfea29a7a0462782, // 0.57581, -0.81758' 0x3fe243d5fb98ac1f, 0xbfea4678c8119ac8, // 0.57078, -0.8211' 0x3fe21a799933eb58, 0xbfea63091b02fae2, // 0.56573, -0.82459' 0x3fe1f0f08bbc861b, 0xbfea7f58529fe69d, // 0.56066, -0.82805' 0x3fe1c73b39ae68c8, 0xbfea9b66290ea1a3, // 0.55557, -0.83147' 0x3fe19d5a09f2b9b8, 0xbfeab7325916c0d4, // 0.55046, -0.83486' 0x3fe1734d63dedb49, 0xbfead2bc9e21d511, // 0.54532, -0.83822' 0x3fe14915af336ceb, 0xbfeaee04b43c1474, // 0.54017, -0.84155' 0x3fe11eb3541b4b22, 0xbfeb090a58150200, // 0.535, -0.84485' 0x3fe0f426bb2a8e7d, 0xbfeb23cd470013b4, // 0.5298, -0.84812' 0x3fe0c9704d5d898f, 0xbfeb3e4d3ef55712, // 0.52459, -0.85136' 0x3fe09e907417c5e1, 0xbfeb5889fe921405, // 0.51936, -0.85456' 0x3fe073879922ffed, 0xbfeb728345196e3e, // 0.5141, -0.85773' 0x3fe0485626ae221a, 0xbfeb8c38d27504e9, // 0.50883, -0.86087' 0x3fe01cfc874c3eb7, 0xbfeba5aa673590d2, // 0.50354, -0.86397' 0x3fdfe2f64be7120f, 0xbfebbed7c49380ea, // 0.49823, -0.86705' 0x3fdf8ba4dbf89aba, 0xbfebd7c0ac6f952a, // 0.4929, -0.87009' 0x3fdf3405963fd068, 0xbfebf064e15377dd, // 0.48755, -0.87309' 0x3fdedc1952ef78d5, 0xbfec08c426725549, // 0.48218, -0.87607' 0x3fde83e0eaf85113, 0xbfec20de3fa971b0, // 0.4768, -0.87901' 0x3fde2b5d3806f63b, 0xbfec38b2f180bdb1, // 0.4714, -0.88192' 0x3fddd28f1481cc58, 0xbfec5042012b6907, // 0.46598, -0.8848' 0x3fdd79775b86e389, 0xbfec678b3488739b, // 0.46054, -0.88764' 0x3fdd2016e8e9db5b, 0xbfec7e8e52233cf3, // 0.45508, -0.89045' 0x3fdcc66e9931c45d, 0xbfec954b213411f5, // 0.44961, -0.89322' 0x3fdc6c7f4997000a, 0xbfecabc169a0b901, // 0.44412, -0.89597' 0x3fdc1249d8011ee7, 0xbfecc1f0f3fcfc5c, // 0.43862, -0.89867' 0x3fdbb7cf2304bd01, 0xbfecd7d9898b32f6, // 0.43309, -0.90135' 0x3fdb5d1009e15cc0, 0xbfeced7af43cc773, // 0.42756, -0.90399' 0x3fdb020d6c7f4009, 0xbfed02d4feb2bd92, // 0.422, -0.9066' 0x3fdaa6c82b6d3fc9, 0xbfed17e7743e35dc, // 0.41643, -0.90917' 0x3fda4b4127dea1e4, 0xbfed2cb220e0ef9f, // 0.41084, -0.91171' 0x3fd9ef7943a8ed8a, 0xbfed4134d14dc93a, // 0.40524, -0.91421' 0x3fd993716141bdfe, 0xbfed556f52e93eb1, // 0.39962, -0.91668' 0x3fd9372a63bc93d7, 0xbfed696173c9e68b, // 0.39399, -0.91911' 0x3fd8daa52ec8a4af, 0xbfed7d0b02b8ecf9, // 0.38835, -0.92151' 0x3fd87de2a6aea963, 0xbfed906bcf328d46, // 0.38268, -0.92388' 0x3fd820e3b04eaac4, 0xbfeda383a9668988, // 0.37701, -0.92621' 0x3fd7c3a9311dcce7, 0xbfedb6526238a09b, // 0.37132, -0.92851' 0x3fd766340f2418f6, 0xbfedc8d7cb410260, // 0.36561, -0.93077' 0x3fd7088530fa459e, 0xbfeddb13b6ccc23d, // 0.3599, -0.93299' 0x3fd6aa9d7dc77e16, 0xbfeded05f7de47da, // 0.35416, -0.93518' 0x3fd64c7ddd3f27c6, 0xbfedfeae622dbe2b, // 0.34842, -0.93734' 0x3fd5ee27379ea693, 0xbfee100cca2980ac, // 0.34266, -0.93946' 0x3fd58f9a75ab1fdd, 0xbfee212104f686e5, // 0.33689, -0.94154' 0x3fd530d880af3c24, 0xbfee31eae870ce25, // 0.33111, -0.94359' 0x3fd4d1e24278e76a, 0xbfee426a4b2bc17e, // 0.32531, -0.94561' 0x3fd472b8a5571054, 0xbfee529f04729ffc, // 0.3195, -0.94759' 0x3fd4135c94176602, 0xbfee6288ec48e112, // 0.31368, -0.94953' 0x3fd3b3cefa0414b7, 0xbfee7227db6a9744, // 0.30785, -0.95144' 0x3fd35410c2e18152, 0xbfee817bab4cd10d, // 0.30201, -0.95331' 0x3fd2f422daec0386, 0xbfee9084361df7f3, // 0.29615, -0.95514' 0x3fd294062ed59f05, 0xbfee9f4156c62dda, // 0.29028, -0.95694' 0x3fd233bbabc3bb72, 0xbfeeadb2e8e7a88e, // 0.28441, -0.9587' 0x3fd1d3443f4cdb3d, 0xbfeebbd8c8df0b74, // 0.27852, -0.96043' 0x3fd172a0d7765177, 0xbfeec9b2d3c3bf84, // 0.27262, -0.96212' 0x3fd111d262b1f677, 0xbfeed740e7684963, // 0.26671, -0.96378' 0x3fd0b0d9cfdbdb90, 0xbfeee482e25a9dbc, // 0.26079, -0.96539' 0x3fd04fb80e37fdae, 0xbfeef178a3e473c2, // 0.25487, -0.96698' 0x3fcfdcdc1adfedf8, 0xbfeefe220c0b95ec, // 0.24893, -0.96852' 0x3fcf19f97b215f1a, 0xbfef0a7efb9230d7, // 0.24298, -0.97003' 0x3fce56ca1e101a1b, 0xbfef168f53f7205d, // 0.23702, -0.9715' 0x3fcd934fe5454311, 0xbfef2252f7763ada, // 0.23106, -0.97294' 0x3fcccf8cb312b286, 0xbfef2dc9c9089a9d, // 0.22508, -0.97434' 0x3fcc0b826a7e4f63, 0xbfef38f3ac64e589, // 0.2191, -0.9757' 0x3fcb4732ef3d6722, 0xbfef43d085ff92dd, // 0.21311, -0.97703' 0x3fca82a025b00451, 0xbfef4e603b0b2f2d, // 0.20711, -0.97832' 0x3fc9bdcbf2dc4366, 0xbfef58a2b1789e84, // 0.2011, -0.97957' 0x3fc8f8b83c69a60a, 0xbfef6297cff75cb0, // 0.19509, -0.98079' 0x3fc83366e89c64c5, 0xbfef6c3f7df5bbb7, // 0.18907, -0.98196' 0x3fc76dd9de50bf31, 0xbfef7599a3a12077, // 0.18304, -0.98311' 0x3fc6a81304f64ab2, 0xbfef7ea629e63d6e, // 0.177, -0.98421' 0x3fc5e214448b3fc6, 0xbfef8764fa714ba9, // 0.17096, -0.98528' 0x3fc51bdf8597c5f2, 0xbfef8fd5ffae41db, // 0.16491, -0.98631' 0x3fc45576b1293e5a, 0xbfef97f924c9099b, // 0.15886, -0.9873' 0x3fc38edbb0cd8d14, 0xbfef9fce55adb2c8, // 0.1528, -0.98826' 0x3fc2c8106e8e613a, 0xbfefa7557f08a517, // 0.14673, -0.98918' 0x3fc20116d4ec7bce, 0xbfefae8e8e46cfbb, // 0.14066, -0.99006' 0x3fc139f0cedaf576, 0xbfefb5797195d741, // 0.13458, -0.9909' 0x3fc072a047ba831d, 0xbfefbc1617e44186, // 0.1285, -0.99171' 0x3fbf564e56a9730e, 0xbfefc26470e19fd3, // 0.12241, -0.99248' 0x3fbdc70ecbae9fc8, 0xbfefc8646cfeb721, // 0.11632, -0.99321' 0x3fbc3785c79ec2d5, 0xbfefce15fd6da67b, // 0.11022, -0.99391' 0x3fbaa7b724495c04, 0xbfefd37914220b84, // 0.10412, -0.99456' 0x3fb917a6bc29b42c, 0xbfefd88da3d12526, // 0.098017, -0.99518' 0x3fb787586a5d5b21, 0xbfefdd539ff1f456, // 0.091909, -0.99577' 0x3fb5f6d00a9aa419, 0xbfefe1cafcbd5b09, // 0.085797, -0.99631' 0x3fb4661179272096, 0xbfefe5f3af2e3940, // 0.079682, -0.99682' 0x3fb2d52092ce19f6, 0xbfefe9cdad01883a, // 0.073565, -0.99729' 0x3fb1440134d709b2, 0xbfefed58ecb673c4, // 0.067444, -0.99772' 0x3faf656e79f820e0, 0xbfeff095658e71ad, // 0.061321, -0.99812' 0x3fac428d12c0d7e3, 0xbfeff3830f8d575c, // 0.055195, -0.99848' 0x3fa91f65f10dd814, 0xbfeff621e3796d7e, // 0.049068, -0.9988' 0x3fa5fc00d290cd43, 0xbfeff871dadb81df, // 0.042938, -0.99908' 0x3fa2d865759455cd, 0xbfeffa72effef75d, // 0.036807, -0.99932' 0x3f9f693731d1cf01, 0xbfeffc251df1d3f8, // 0.030675, -0.99953' 0x3f992155f7a3667e, 0xbfeffd886084cd0d, // 0.024541, -0.9997' 0x3f92d936bbe30efd, 0xbfeffe9cb44b51a1, // 0.018407, -0.99983' 0x3f8921d1fcdec784, 0xbfefff62169b92db, // 0.012272, -0.99992' 0x3f7921f0fe670071, 0xbfefffd8858e8a92, //0.0061359, -0.99998' }; const uint64_t twiddleCoefF64_rfft_2048[2048] ARM_DSP_TABLE_ATTRIBUTE = { 0x0000000000000000, 0x3ff0000000000000, // 0, 1 0x3f6921f8becca4ba, 0x3feffff621621d02, // 0.003068, 1 0x3f7921f0fe670071, 0x3fefffd8858e8a92, //0.0061359, 0.99998 0x3f82d96b0e509703, 0x3fefffa72c978c4f, //0.0092038, 0.99996 0x3f8921d1fcdec784, 0x3fefff62169b92db, // 0.012272, 0.99992 0x3f8f6a296ab997ca, 0x3fefff0943c53bd1, // 0.015339, 0.99988 0x3f92d936bbe30efd, 0x3feffe9cb44b51a1, // 0.018407, 0.99983 0x3f95fd4d21fab226, 0x3feffe1c6870cb77, // 0.021474, 0.99977 0x3f992155f7a3667e, 0x3feffd886084cd0d, // 0.024541, 0.9997 0x3f9c454f4ce53b1c, 0x3feffce09ce2a679, // 0.027608, 0.99962 0x3f9f693731d1cf01, 0x3feffc251df1d3f8, // 0.030675, 0.99953 0x3fa14685db42c17e, 0x3feffb55e425fdae, // 0.033741, 0.99943 0x3fa2d865759455cd, 0x3feffa72effef75d, // 0.036807, 0.99932 0x3fa46a396ff86179, 0x3feff97c4208c014, // 0.039873, 0.9992 0x3fa5fc00d290cd43, 0x3feff871dadb81df, // 0.042938, 0.99908 0x3fa78dbaa5874685, 0x3feff753bb1b9164, // 0.046003, 0.99894 0x3fa91f65f10dd814, 0x3feff621e3796d7e, // 0.049068, 0.9988 0x3faab101bd5f8317, 0x3feff4dc54b1bed3, // 0.052132, 0.99864 0x3fac428d12c0d7e3, 0x3feff3830f8d575c, // 0.055195, 0.99848 0x3fadd406f9808ec8, 0x3feff21614e131ed, // 0.058258, 0.9983 0x3faf656e79f820e0, 0x3feff095658e71ad, // 0.061321, 0.99812 0x3fb07b614e463064, 0x3fefef0102826191, // 0.064383, 0.99793 0x3fb1440134d709b2, 0x3fefed58ecb673c4, // 0.067444, 0.99772 0x3fb20c9674ed444c, 0x3fefeb9d2530410f, // 0.070505, 0.99751 0x3fb2d52092ce19f6, 0x3fefe9cdad01883a, // 0.073565, 0.99729 0x3fb39d9f12c5a299, 0x3fefe7ea85482d60, // 0.076624, 0.99706 0x3fb4661179272096, 0x3fefe5f3af2e3940, // 0.079682, 0.99682 0x3fb52e774a4d4d0a, 0x3fefe3e92be9d886, // 0.08274, 0.99657 0x3fb5f6d00a9aa419, 0x3fefe1cafcbd5b09, // 0.085797, 0.99631 0x3fb6bf1b3e79b129, 0x3fefdf9922f73307, // 0.088854, 0.99604 0x3fb787586a5d5b21, 0x3fefdd539ff1f456, // 0.091909, 0.99577 0x3fb84f8712c130a0, 0x3fefdafa7514538c, // 0.094963, 0.99548 0x3fb917a6bc29b42c, 0x3fefd88da3d12526, // 0.098017, 0.99518 0x3fb9dfb6eb24a85c, 0x3fefd60d2da75c9e, // 0.10107, 0.99488 0x3fbaa7b724495c04, 0x3fefd37914220b84, // 0.10412, 0.99456 0x3fbb6fa6ec38f64c, 0x3fefd0d158d86087, // 0.10717, 0.99424 0x3fbc3785c79ec2d5, 0x3fefce15fd6da67b, // 0.11022, 0.99391 0x3fbcff533b307dc1, 0x3fefcb4703914354, // 0.11327, 0.99356 0x3fbdc70ecbae9fc8, 0x3fefc8646cfeb721, // 0.11632, 0.99321 0x3fbe8eb7fde4aa3e, 0x3fefc56e3b7d9af6, // 0.11937, 0.99285 0x3fbf564e56a9730e, 0x3fefc26470e19fd3, // 0.12241, 0.99248 0x3fc00ee8ad6fb85b, 0x3fefbf470f0a8d88, // 0.12545, 0.9921 0x3fc072a047ba831d, 0x3fefbc1617e44186, // 0.1285, 0.99171 0x3fc0d64dbcb26786, 0x3fefb8d18d66adb7, // 0.13154, 0.99131 0x3fc139f0cedaf576, 0x3fefb5797195d741, // 0.13458, 0.9909 0x3fc19d8940be24e7, 0x3fefb20dc681d54d, // 0.13762, 0.99049 0x3fc20116d4ec7bce, 0x3fefae8e8e46cfbb, // 0.14066, 0.99006 0x3fc264994dfd340a, 0x3fefaafbcb0cfddc, // 0.1437, 0.98962 0x3fc2c8106e8e613a, 0x3fefa7557f08a517, // 0.14673, 0.98918 0x3fc32b7bf94516a7, 0x3fefa39bac7a1791, // 0.14976, 0.98872 0x3fc38edbb0cd8d14, 0x3fef9fce55adb2c8, // 0.1528, 0.98826 0x3fc3f22f57db4893, 0x3fef9bed7cfbde29, // 0.15583, 0.98778 0x3fc45576b1293e5a, 0x3fef97f924c9099b, // 0.15886, 0.9873 0x3fc4b8b17f79fa88, 0x3fef93f14f85ac08, // 0.16189, 0.98681 0x3fc51bdf8597c5f2, 0x3fef8fd5ffae41db, // 0.16491, 0.98631 0x3fc57f008654cbde, 0x3fef8ba737cb4b78, // 0.16794, 0.9858 0x3fc5e214448b3fc6, 0x3fef8764fa714ba9, // 0.17096, 0.98528 0x3fc6451a831d830d, 0x3fef830f4a40c60c, // 0.17398, 0.98475 0x3fc6a81304f64ab2, 0x3fef7ea629e63d6e, // 0.177, 0.98421 0x3fc70afd8d08c4ff, 0x3fef7a299c1a322a, // 0.18002, 0.98366 0x3fc76dd9de50bf31, 0x3fef7599a3a12077, // 0.18304, 0.98311 0x3fc7d0a7bbd2cb1b, 0x3fef70f6434b7eb7, // 0.18606, 0.98254 0x3fc83366e89c64c5, 0x3fef6c3f7df5bbb7, // 0.18907, 0.98196 0x3fc8961727c41804, 0x3fef677556883cee, // 0.19208, 0.98138 0x3fc8f8b83c69a60a, 0x3fef6297cff75cb0, // 0.19509, 0.98079 0x3fc95b49e9b62af9, 0x3fef5da6ed43685d, // 0.1981, 0.98018 0x3fc9bdcbf2dc4366, 0x3fef58a2b1789e84, // 0.2011, 0.97957 0x3fca203e1b1831da, 0x3fef538b1faf2d07, // 0.20411, 0.97895 0x3fca82a025b00451, 0x3fef4e603b0b2f2d, // 0.20711, 0.97832 0x3fcae4f1d5f3b9ab, 0x3fef492206bcabb4, // 0.21011, 0.97768 0x3fcb4732ef3d6722, 0x3fef43d085ff92dd, // 0.21311, 0.97703 0x3fcba96334f15dad, 0x3fef3e6bbc1bbc65, // 0.21611, 0.97637 0x3fcc0b826a7e4f63, 0x3fef38f3ac64e589, // 0.2191, 0.9757 0x3fcc6d90535d74dc, 0x3fef33685a3aaef0, // 0.22209, 0.97503 0x3fcccf8cb312b286, 0x3fef2dc9c9089a9d, // 0.22508, 0.97434 0x3fcd31774d2cbdee, 0x3fef2817fc4609ce, // 0.22807, 0.97364 0x3fcd934fe5454311, 0x3fef2252f7763ada, // 0.23106, 0.97294 0x3fcdf5163f01099a, 0x3fef1c7abe284708, // 0.23404, 0.97223 0x3fce56ca1e101a1b, 0x3fef168f53f7205d, // 0.23702, 0.9715 0x3fceb86b462de348, 0x3fef1090bc898f5f, // 0.24, 0.97077 0x3fcf19f97b215f1a, 0x3fef0a7efb9230d7, // 0.24298, 0.97003 0x3fcf7b7480bd3801, 0x3fef045a14cf738c, // 0.24596, 0.96928 0x3fcfdcdc1adfedf8, 0x3feefe220c0b95ec, // 0.24893, 0.96852 0x3fd01f1806b9fdd2, 0x3feef7d6e51ca3c0, // 0.2519, 0.96775 0x3fd04fb80e37fdae, 0x3feef178a3e473c2, // 0.25487, 0.96698 0x3fd0804e05eb661e, 0x3feeeb074c50a544, // 0.25783, 0.96619 0x3fd0b0d9cfdbdb90, 0x3feee482e25a9dbc, // 0.26079, 0.96539 0x3fd0e15b4e1749cd, 0x3feeddeb6a078651, // 0.26375, 0.96459 0x3fd111d262b1f677, 0x3feed740e7684963, // 0.26671, 0.96378 0x3fd1423eefc69378, 0x3feed0835e999009, // 0.26967, 0.96295 0x3fd172a0d7765177, 0x3feec9b2d3c3bf84, // 0.27262, 0.96212 0x3fd1a2f7fbe8f243, 0x3feec2cf4b1af6b2, // 0.27557, 0.96128 0x3fd1d3443f4cdb3d, 0x3feebbd8c8df0b74, // 0.27852, 0.96043 0x3fd2038583d727bd, 0x3feeb4cf515b8811, // 0.28146, 0.95957 0x3fd233bbabc3bb72, 0x3feeadb2e8e7a88e, // 0.28441, 0.9587 0x3fd263e6995554ba, 0x3feea68393e65800, // 0.28735, 0.95783 0x3fd294062ed59f05, 0x3fee9f4156c62dda, // 0.29028, 0.95694 0x3fd2c41a4e954520, 0x3fee97ec36016b30, // 0.29322, 0.95605 0x3fd2f422daec0386, 0x3fee9084361df7f3, // 0.29615, 0.95514 0x3fd3241fb638baaf, 0x3fee89095bad6025, // 0.29908, 0.95423 0x3fd35410c2e18152, 0x3fee817bab4cd10d, // 0.30201, 0.95331 0x3fd383f5e353b6aa, 0x3fee79db29a5165a, // 0.30493, 0.95238 0x3fd3b3cefa0414b7, 0x3fee7227db6a9744, // 0.30785, 0.95144 0x3fd3e39be96ec271, 0x3fee6a61c55d53a7, // 0.31077, 0.95049 0x3fd4135c94176602, 0x3fee6288ec48e112, // 0.31368, 0.94953 0x3fd44310dc8936f0, 0x3fee5a9d550467d3, // 0.31659, 0.94856 0x3fd472b8a5571054, 0x3fee529f04729ffc, // 0.3195, 0.94759 0x3fd4a253d11b82f3, 0x3fee4a8dff81ce5e, // 0.32241, 0.9466 0x3fd4d1e24278e76a, 0x3fee426a4b2bc17e, // 0.32531, 0.94561 0x3fd50163dc197047, 0x3fee3a33ec75ce85, // 0.32821, 0.9446 0x3fd530d880af3c24, 0x3fee31eae870ce25, // 0.33111, 0.94359 0x3fd5604012f467b4, 0x3fee298f4439197a, // 0.334, 0.94257 0x3fd58f9a75ab1fdd, 0x3fee212104f686e5, // 0.33689, 0.94154 0x3fd5bee78b9db3b6, 0x3fee18a02fdc66d9, // 0.33978, 0.94051 0x3fd5ee27379ea693, 0x3fee100cca2980ac, // 0.34266, 0.93946 0x3fd61d595c88c203, 0x3fee0766d9280f54, // 0.34554, 0.9384 0x3fd64c7ddd3f27c6, 0x3fedfeae622dbe2b, // 0.34842, 0.93734 0x3fd67b949cad63ca, 0x3fedf5e36a9ba59c, // 0.35129, 0.93627 0x3fd6aa9d7dc77e16, 0x3feded05f7de47da, // 0.35416, 0.93518 0x3fd6d998638a0cb5, 0x3fede4160f6d8d81, // 0.35703, 0.93409 0x3fd7088530fa459e, 0x3feddb13b6ccc23d, // 0.3599, 0.93299 0x3fd73763c9261092, 0x3fedd1fef38a915a, // 0.36276, 0.93188 0x3fd766340f2418f6, 0x3fedc8d7cb410260, // 0.36561, 0.93077 0x3fd794f5e613dfae, 0x3fedbf9e4395759a, // 0.36847, 0.92964 0x3fd7c3a9311dcce7, 0x3fedb6526238a09b, // 0.37132, 0.92851 0x3fd7f24dd37341e3, 0x3fedacf42ce68ab9, // 0.37416, 0.92736 0x3fd820e3b04eaac4, 0x3feda383a9668988, // 0.37701, 0.92621 0x3fd84f6aaaf3903f, 0x3fed9a00dd8b3d46, // 0.37985, 0.92505 0x3fd87de2a6aea963, 0x3fed906bcf328d46, // 0.38268, 0.92388 0x3fd8ac4b86d5ed44, 0x3fed86c48445a450, // 0.38552, 0.9227 0x3fd8daa52ec8a4af, 0x3fed7d0b02b8ecf9, // 0.38835, 0.92151 0x3fd908ef81ef7bd1, 0x3fed733f508c0dff, // 0.39117, 0.92032 0x3fd9372a63bc93d7, 0x3fed696173c9e68b, // 0.39399, 0.91911 0x3fd96555b7ab948f, 0x3fed5f7172888a7f, // 0.39681, 0.9179 0x3fd993716141bdfe, 0x3fed556f52e93eb1, // 0.39962, 0.91668 0x3fd9c17d440df9f2, 0x3fed4b5b1b187524, // 0.40243, 0.91545 0x3fd9ef7943a8ed8a, 0x3fed4134d14dc93a, // 0.40524, 0.91421 0x3fda1d6543b50ac0, 0x3fed36fc7bcbfbdc, // 0.40804, 0.91296 0x3fda4b4127dea1e4, 0x3fed2cb220e0ef9f, // 0.41084, 0.91171 0x3fda790cd3dbf31a, 0x3fed2255c6e5a4e1, // 0.41364, 0.91044 0x3fdaa6c82b6d3fc9, 0x3fed17e7743e35dc, // 0.41643, 0.90917 0x3fdad473125cdc08, 0x3fed0d672f59d2b9, // 0.41922, 0.90789 0x3fdb020d6c7f4009, 0x3fed02d4feb2bd92, // 0.422, 0.9066 0x3fdb2f971db31972, 0x3fecf830e8ce467b, // 0.42478, 0.9053 0x3fdb5d1009e15cc0, 0x3feced7af43cc773, // 0.42756, 0.90399 0x3fdb8a7814fd5693, 0x3fece2b32799a060, // 0.43033, 0.90267 0x3fdbb7cf2304bd01, 0x3fecd7d9898b32f6, // 0.43309, 0.90135 0x3fdbe51517ffc0d9, 0x3fecccee20c2de9f, // 0.43586, 0.90002 0x3fdc1249d8011ee7, 0x3fecc1f0f3fcfc5c, // 0.43862, 0.89867 0x3fdc3f6d47263129, 0x3fecb6e20a00da99, // 0.44137, 0.89732 0x3fdc6c7f4997000a, 0x3fecabc169a0b901, // 0.44412, 0.89597 0x3fdc997fc3865388, 0x3feca08f19b9c449, // 0.44687, 0.8946 0x3fdcc66e9931c45d, 0x3fec954b213411f5, // 0.44961, 0.89322 0x3fdcf34baee1cd21, 0x3fec89f587029c13, // 0.45235, 0.89184 0x3fdd2016e8e9db5b, 0x3fec7e8e52233cf3, // 0.45508, 0.89045 0x3fdd4cd02ba8609c, 0x3fec7315899eaad7, // 0.45781, 0.88905 0x3fdd79775b86e389, 0x3fec678b3488739b, // 0.46054, 0.88764 0x3fdda60c5cfa10d8, 0x3fec5bef59fef85a, // 0.46326, 0.88622 0x3fddd28f1481cc58, 0x3fec5042012b6907, // 0.46598, 0.8848 0x3fddfeff66a941de, 0x3fec44833141c004, // 0.46869, 0.88336 0x3fde2b5d3806f63b, 0x3fec38b2f180bdb1, // 0.4714, 0.88192 0x3fde57a86d3cd824, 0x3fec2cd14931e3f1, // 0.4741, 0.88047 0x3fde83e0eaf85113, 0x3fec20de3fa971b0, // 0.4768, 0.87901 0x3fdeb00695f25620, 0x3fec14d9dc465e58, // 0.47949, 0.87755 0x3fdedc1952ef78d5, 0x3fec08c426725549, // 0.48218, 0.87607 0x3fdf081906bff7fd, 0x3febfc9d25a1b147, // 0.48487, 0.87459 0x3fdf3405963fd068, 0x3febf064e15377dd, // 0.48755, 0.87309 0x3fdf5fdee656cda3, 0x3febe41b611154c1, // 0.49023, 0.8716 0x3fdf8ba4dbf89aba, 0x3febd7c0ac6f952a, // 0.4929, 0.87009 0x3fdfb7575c24d2de, 0x3febcb54cb0d2327, // 0.49557, 0.86857 0x3fdfe2f64be7120f, 0x3febbed7c49380ea, // 0.49823, 0.86705 0x3fe00740c82b82e0, 0x3febb249a0b6c40d, // 0.50089, 0.86551 0x3fe01cfc874c3eb7, 0x3feba5aa673590d2, // 0.50354, 0.86397 0x3fe032ae55edbd95, 0x3feb98fa1fd9155e, // 0.50619, 0.86242 0x3fe0485626ae221a, 0x3feb8c38d27504e9, // 0.50883, 0.86087 0x3fe05df3ec31b8b6, 0x3feb7f6686e792ea, // 0.51147, 0.8593 0x3fe073879922ffed, 0x3feb728345196e3e, // 0.5141, 0.85773 0x3fe089112032b08c, 0x3feb658f14fdbc47, // 0.51673, 0.85615 0x3fe09e907417c5e1, 0x3feb5889fe921405, // 0.51936, 0.85456 0x3fe0b405878f85ec, 0x3feb4b7409de7925, // 0.52198, 0.85296 0x3fe0c9704d5d898f, 0x3feb3e4d3ef55712, // 0.52459, 0.85136 0x3fe0ded0b84bc4b5, 0x3feb3115a5f37bf4, // 0.5272, 0.84974 0x3fe0f426bb2a8e7d, 0x3feb23cd470013b4, // 0.5298, 0.84812 0x3fe1097248d0a956, 0x3feb16742a4ca2f5, // 0.5324, 0.84649 0x3fe11eb3541b4b22, 0x3feb090a58150200, // 0.535, 0.84485 0x3fe133e9cfee254e, 0x3feafb8fd89f57b6, // 0.53759, 0.84321 0x3fe14915af336ceb, 0x3feaee04b43c1474, // 0.54017, 0.84155 0x3fe15e36e4dbe2bc, 0x3feae068f345ecef, // 0.54275, 0.83989 0x3fe1734d63dedb49, 0x3fead2bc9e21d511, // 0.54532, 0.83822 0x3fe188591f3a46e5, 0x3feac4ffbd3efac8, // 0.54789, 0.83655 0x3fe19d5a09f2b9b8, 0x3feab7325916c0d4, // 0.55046, 0.83486 0x3fe1b250171373be, 0x3feaa9547a2cb98e, // 0.55302, 0.83317 0x3fe1c73b39ae68c8, 0x3fea9b66290ea1a3, // 0.55557, 0.83147 0x3fe1dc1b64dc4872, 0x3fea8d676e545ad2, // 0.55812, 0.82976 0x3fe1f0f08bbc861b, 0x3fea7f58529fe69d, // 0.56066, 0.82805 0x3fe205baa17560d6, 0x3fea7138de9d60f5, // 0.5632, 0.82632 0x3fe21a799933eb58, 0x3fea63091b02fae2, // 0.56573, 0.82459 0x3fe22f2d662c13e1, 0x3fea54c91090f524, // 0.56826, 0.82285 0x3fe243d5fb98ac1f, 0x3fea4678c8119ac8, // 0.57078, 0.8211 0x3fe258734cbb7110, 0x3fea38184a593bc6, // 0.5733, 0.81935 0x3fe26d054cdd12df, 0x3fea29a7a0462782, // 0.57581, 0.81758 0x3fe2818bef4d3cba, 0x3fea1b26d2c0a75e, // 0.57831, 0.81581 0x3fe2960727629ca8, 0x3fea0c95eabaf937, // 0.58081, 0.81404 0x3fe2aa76e87aeb58, 0x3fe9fdf4f13149de, // 0.58331, 0.81225 0x3fe2bedb25faf3ea, 0x3fe9ef43ef29af94, // 0.5858, 0.81046 0x3fe2d333d34e9bb7, 0x3fe9e082edb42472, // 0.58828, 0.80866 0x3fe2e780e3e8ea16, 0x3fe9d1b1f5ea80d6, // 0.59076, 0.80685 0x3fe2fbc24b441015, 0x3fe9c2d110f075c3, // 0.59323, 0.80503 0x3fe30ff7fce17035, 0x3fe9b3e047f38741, // 0.5957, 0.80321 0x3fe32421ec49a620, 0x3fe9a4dfa42b06b2, // 0.59816, 0.80138 0x3fe338400d0c8e57, 0x3fe995cf2ed80d22, // 0.60062, 0.79954 0x3fe34c5252c14de1, 0x3fe986aef1457594, // 0.60307, 0.79769 0x3fe36058b10659f3, 0x3fe9777ef4c7d742, // 0.60551, 0.79584 0x3fe374531b817f8d, 0x3fe9683f42bd7fe1, // 0.60795, 0.79398 0x3fe3884185dfeb22, 0x3fe958efe48e6dd7, // 0.61038, 0.79211 0x3fe39c23e3d63029, 0x3fe94990e3ac4a6c, // 0.61281, 0.79023 0x3fe3affa292050b9, 0x3fe93a22499263fc, // 0.61523, 0.78835 0x3fe3c3c44981c517, 0x3fe92aa41fc5a815, // 0.61765, 0.78646 0x3fe3d78238c58343, 0x3fe91b166fd49da2, // 0.62006, 0.78456 0x3fe3eb33eabe0680, 0x3fe90b7943575efe, // 0.62246, 0.78265 0x3fe3fed9534556d4, 0x3fe8fbcca3ef940d, // 0.62486, 0.78074 0x3fe41272663d108c, 0x3fe8ec109b486c49, // 0.62725, 0.77882 0x3fe425ff178e6bb1, 0x3fe8dc45331698cc, // 0.62964, 0.77689 0x3fe4397f5b2a4380, 0x3fe8cc6a75184655, // 0.63202, 0.77495 0x3fe44cf325091dd6, 0x3fe8bc806b151741, // 0.63439, 0.77301 0x3fe4605a692b32a2, 0x3fe8ac871ede1d88, // 0.63676, 0.77106 0x3fe473b51b987347, 0x3fe89c7e9a4dd4ab, // 0.63912, 0.7691 0x3fe48703306091fe, 0x3fe88c66e7481ba1, // 0.64148, 0.76714 0x3fe49a449b9b0938, 0x3fe87c400fba2ebf, // 0.64383, 0.76517 0x3fe4ad79516722f0, 0x3fe86c0a1d9aa195, // 0.64618, 0.76319 0x3fe4c0a145ec0004, 0x3fe85bc51ae958cc, // 0.64851, 0.7612 0x3fe4d3bc6d589f80, 0x3fe84b7111af83f9, // 0.65085, 0.75921 0x3fe4e6cabbe3e5e9, 0x3fe83b0e0bff976e, // 0.65317, 0.75721 0x3fe4f9cc25cca486, 0x3fe82a9c13f545ff, // 0.65549, 0.7552 0x3fe50cc09f59a09b, 0x3fe81a1b33b57acc, // 0.65781, 0.75319 0x3fe51fa81cd99aa6, 0x3fe8098b756e52fa, // 0.66011, 0.75117 0x3fe5328292a35596, 0x3fe7f8ece3571771, // 0.66242, 0.74914 0x3fe5454ff5159dfb, 0x3fe7e83f87b03686, // 0.66471, 0.7471 0x3fe5581038975137, 0x3fe7d7836cc33db2, // 0.667, 0.74506 0x3fe56ac35197649e, 0x3fe7c6b89ce2d333, // 0.66928, 0.74301 0x3fe57d69348cec9f, 0x3fe7b5df226aafb0, // 0.67156, 0.74095 0x3fe59001d5f723df, 0x3fe7a4f707bf97d2, // 0.67383, 0.73889 0x3fe5a28d2a5d7250, 0x3fe79400574f55e4, // 0.67609, 0.73682 0x3fe5b50b264f7448, 0x3fe782fb1b90b35b, // 0.67835, 0.73474 0x3fe5c77bbe65018c, 0x3fe771e75f037261, // 0.6806, 0.73265 0x3fe5d9dee73e345c, 0x3fe760c52c304764, // 0.68285, 0.73056 0x3fe5ec3495837074, 0x3fe74f948da8d28d, // 0.68508, 0.72846 0x3fe5fe7cbde56a0f, 0x3fe73e558e079942, // 0.68732, 0.72636 0x3fe610b7551d2cde, 0x3fe72d0837efff97, // 0.68954, 0.72425 0x3fe622e44fec22ff, 0x3fe71bac960e41bf, // 0.69176, 0.72213 0x3fe63503a31c1be8, 0x3fe70a42b3176d7a, // 0.69397, 0.72 0x3fe64715437f535b, 0x3fe6f8ca99c95b75, // 0.69618, 0.71787 0x3fe6591925f0783e, 0x3fe6e74454eaa8ae, // 0.69838, 0.71573 0x3fe66b0f3f52b386, 0x3fe6d5afef4aafcc, // 0.70057, 0.71358 0x3fe67cf78491af10, 0x3fe6c40d73c18275, // 0.70275, 0.71143 0x3fe68ed1eaa19c71, 0x3fe6b25ced2fe29c, // 0.70493, 0.70927 0x3fe6a09e667f3bcc, 0x3fe6a09e667f3bcc, // 0.70711, 0.70711 0x3fe6b25ced2fe29c, 0x3fe68ed1eaa19c71, // 0.70927, 0.70493 0x3fe6c40d73c18275, 0x3fe67cf78491af10, // 0.71143, 0.70275 0x3fe6d5afef4aafcc, 0x3fe66b0f3f52b386, // 0.71358, 0.70057 0x3fe6e74454eaa8ae, 0x3fe6591925f0783e, // 0.71573, 0.69838 0x3fe6f8ca99c95b75, 0x3fe64715437f535b, // 0.71787, 0.69618 0x3fe70a42b3176d7a, 0x3fe63503a31c1be8, // 0.72, 0.69397 0x3fe71bac960e41bf, 0x3fe622e44fec22ff, // 0.72213, 0.69176 0x3fe72d0837efff97, 0x3fe610b7551d2cde, // 0.72425, 0.68954 0x3fe73e558e079942, 0x3fe5fe7cbde56a0f, // 0.72636, 0.68732 0x3fe74f948da8d28d, 0x3fe5ec3495837074, // 0.72846, 0.68508 0x3fe760c52c304764, 0x3fe5d9dee73e345c, // 0.73056, 0.68285 0x3fe771e75f037261, 0x3fe5c77bbe65018c, // 0.73265, 0.6806 0x3fe782fb1b90b35b, 0x3fe5b50b264f7448, // 0.73474, 0.67835 0x3fe79400574f55e4, 0x3fe5a28d2a5d7250, // 0.73682, 0.67609 0x3fe7a4f707bf97d2, 0x3fe59001d5f723df, // 0.73889, 0.67383 0x3fe7b5df226aafb0, 0x3fe57d69348cec9f, // 0.74095, 0.67156 0x3fe7c6b89ce2d333, 0x3fe56ac35197649e, // 0.74301, 0.66928 0x3fe7d7836cc33db2, 0x3fe5581038975137, // 0.74506, 0.667 0x3fe7e83f87b03686, 0x3fe5454ff5159dfb, // 0.7471, 0.66471 0x3fe7f8ece3571771, 0x3fe5328292a35596, // 0.74914, 0.66242 0x3fe8098b756e52fa, 0x3fe51fa81cd99aa6, // 0.75117, 0.66011 0x3fe81a1b33b57acc, 0x3fe50cc09f59a09b, // 0.75319, 0.65781 0x3fe82a9c13f545ff, 0x3fe4f9cc25cca486, // 0.7552, 0.65549 0x3fe83b0e0bff976e, 0x3fe4e6cabbe3e5e9, // 0.75721, 0.65317 0x3fe84b7111af83f9, 0x3fe4d3bc6d589f80, // 0.75921, 0.65085 0x3fe85bc51ae958cc, 0x3fe4c0a145ec0004, // 0.7612, 0.64851 0x3fe86c0a1d9aa195, 0x3fe4ad79516722f0, // 0.76319, 0.64618 0x3fe87c400fba2ebf, 0x3fe49a449b9b0938, // 0.76517, 0.64383 0x3fe88c66e7481ba1, 0x3fe48703306091fe, // 0.76714, 0.64148 0x3fe89c7e9a4dd4ab, 0x3fe473b51b987347, // 0.7691, 0.63912 0x3fe8ac871ede1d88, 0x3fe4605a692b32a2, // 0.77106, 0.63676 0x3fe8bc806b151741, 0x3fe44cf325091dd6, // 0.77301, 0.63439 0x3fe8cc6a75184655, 0x3fe4397f5b2a4380, // 0.77495, 0.63202 0x3fe8dc45331698cc, 0x3fe425ff178e6bb1, // 0.77689, 0.62964 0x3fe8ec109b486c49, 0x3fe41272663d108c, // 0.77882, 0.62725 0x3fe8fbcca3ef940d, 0x3fe3fed9534556d4, // 0.78074, 0.62486 0x3fe90b7943575efe, 0x3fe3eb33eabe0680, // 0.78265, 0.62246 0x3fe91b166fd49da2, 0x3fe3d78238c58343, // 0.78456, 0.62006 0x3fe92aa41fc5a815, 0x3fe3c3c44981c517, // 0.78646, 0.61765 0x3fe93a22499263fc, 0x3fe3affa292050b9, // 0.78835, 0.61523 0x3fe94990e3ac4a6c, 0x3fe39c23e3d63029, // 0.79023, 0.61281 0x3fe958efe48e6dd7, 0x3fe3884185dfeb22, // 0.79211, 0.61038 0x3fe9683f42bd7fe1, 0x3fe374531b817f8d, // 0.79398, 0.60795 0x3fe9777ef4c7d742, 0x3fe36058b10659f3, // 0.79584, 0.60551 0x3fe986aef1457594, 0x3fe34c5252c14de1, // 0.79769, 0.60307 0x3fe995cf2ed80d22, 0x3fe338400d0c8e57, // 0.79954, 0.60062 0x3fe9a4dfa42b06b2, 0x3fe32421ec49a620, // 0.80138, 0.59816 0x3fe9b3e047f38741, 0x3fe30ff7fce17035, // 0.80321, 0.5957 0x3fe9c2d110f075c3, 0x3fe2fbc24b441015, // 0.80503, 0.59323 0x3fe9d1b1f5ea80d6, 0x3fe2e780e3e8ea16, // 0.80685, 0.59076 0x3fe9e082edb42472, 0x3fe2d333d34e9bb7, // 0.80866, 0.58828 0x3fe9ef43ef29af94, 0x3fe2bedb25faf3ea, // 0.81046, 0.5858 0x3fe9fdf4f13149de, 0x3fe2aa76e87aeb58, // 0.81225, 0.58331 0x3fea0c95eabaf937, 0x3fe2960727629ca8, // 0.81404, 0.58081 0x3fea1b26d2c0a75e, 0x3fe2818bef4d3cba, // 0.81581, 0.57831 0x3fea29a7a0462782, 0x3fe26d054cdd12df, // 0.81758, 0.57581 0x3fea38184a593bc6, 0x3fe258734cbb7110, // 0.81935, 0.5733 0x3fea4678c8119ac8, 0x3fe243d5fb98ac1f, // 0.8211, 0.57078 0x3fea54c91090f524, 0x3fe22f2d662c13e1, // 0.82285, 0.56826 0x3fea63091b02fae2, 0x3fe21a799933eb58, // 0.82459, 0.56573 0x3fea7138de9d60f5, 0x3fe205baa17560d6, // 0.82632, 0.5632 0x3fea7f58529fe69d, 0x3fe1f0f08bbc861b, // 0.82805, 0.56066 0x3fea8d676e545ad2, 0x3fe1dc1b64dc4872, // 0.82976, 0.55812 0x3fea9b66290ea1a3, 0x3fe1c73b39ae68c8, // 0.83147, 0.55557 0x3feaa9547a2cb98e, 0x3fe1b250171373be, // 0.83317, 0.55302 0x3feab7325916c0d4, 0x3fe19d5a09f2b9b8, // 0.83486, 0.55046 0x3feac4ffbd3efac8, 0x3fe188591f3a46e5, // 0.83655, 0.54789 0x3fead2bc9e21d511, 0x3fe1734d63dedb49, // 0.83822, 0.54532 0x3feae068f345ecef, 0x3fe15e36e4dbe2bc, // 0.83989, 0.54275 0x3feaee04b43c1474, 0x3fe14915af336ceb, // 0.84155, 0.54017 0x3feafb8fd89f57b6, 0x3fe133e9cfee254e, // 0.84321, 0.53759 0x3feb090a58150200, 0x3fe11eb3541b4b22, // 0.84485, 0.535 0x3feb16742a4ca2f5, 0x3fe1097248d0a956, // 0.84649, 0.5324 0x3feb23cd470013b4, 0x3fe0f426bb2a8e7d, // 0.84812, 0.5298 0x3feb3115a5f37bf4, 0x3fe0ded0b84bc4b5, // 0.84974, 0.5272 0x3feb3e4d3ef55712, 0x3fe0c9704d5d898f, // 0.85136, 0.52459 0x3feb4b7409de7925, 0x3fe0b405878f85ec, // 0.85296, 0.52198 0x3feb5889fe921405, 0x3fe09e907417c5e1, // 0.85456, 0.51936 0x3feb658f14fdbc47, 0x3fe089112032b08c, // 0.85615, 0.51673 0x3feb728345196e3e, 0x3fe073879922ffed, // 0.85773, 0.5141 0x3feb7f6686e792ea, 0x3fe05df3ec31b8b6, // 0.8593, 0.51147 0x3feb8c38d27504e9, 0x3fe0485626ae221a, // 0.86087, 0.50883 0x3feb98fa1fd9155e, 0x3fe032ae55edbd95, // 0.86242, 0.50619 0x3feba5aa673590d2, 0x3fe01cfc874c3eb7, // 0.86397, 0.50354 0x3febb249a0b6c40d, 0x3fe00740c82b82e0, // 0.86551, 0.50089 0x3febbed7c49380ea, 0x3fdfe2f64be7120f, // 0.86705, 0.49823 0x3febcb54cb0d2327, 0x3fdfb7575c24d2de, // 0.86857, 0.49557 0x3febd7c0ac6f952a, 0x3fdf8ba4dbf89aba, // 0.87009, 0.4929 0x3febe41b611154c1, 0x3fdf5fdee656cda3, // 0.8716, 0.49023 0x3febf064e15377dd, 0x3fdf3405963fd068, // 0.87309, 0.48755 0x3febfc9d25a1b147, 0x3fdf081906bff7fd, // 0.87459, 0.48487 0x3fec08c426725549, 0x3fdedc1952ef78d5, // 0.87607, 0.48218 0x3fec14d9dc465e58, 0x3fdeb00695f25620, // 0.87755, 0.47949 0x3fec20de3fa971b0, 0x3fde83e0eaf85113, // 0.87901, 0.4768 0x3fec2cd14931e3f1, 0x3fde57a86d3cd824, // 0.88047, 0.4741 0x3fec38b2f180bdb1, 0x3fde2b5d3806f63b, // 0.88192, 0.4714 0x3fec44833141c004, 0x3fddfeff66a941de, // 0.88336, 0.46869 0x3fec5042012b6907, 0x3fddd28f1481cc58, // 0.8848, 0.46598 0x3fec5bef59fef85a, 0x3fdda60c5cfa10d8, // 0.88622, 0.46326 0x3fec678b3488739b, 0x3fdd79775b86e389, // 0.88764, 0.46054 0x3fec7315899eaad7, 0x3fdd4cd02ba8609c, // 0.88905, 0.45781 0x3fec7e8e52233cf3, 0x3fdd2016e8e9db5b, // 0.89045, 0.45508 0x3fec89f587029c13, 0x3fdcf34baee1cd21, // 0.89184, 0.45235 0x3fec954b213411f5, 0x3fdcc66e9931c45d, // 0.89322, 0.44961 0x3feca08f19b9c449, 0x3fdc997fc3865388, // 0.8946, 0.44687 0x3fecabc169a0b901, 0x3fdc6c7f4997000a, // 0.89597, 0.44412 0x3fecb6e20a00da99, 0x3fdc3f6d47263129, // 0.89732, 0.44137 0x3fecc1f0f3fcfc5c, 0x3fdc1249d8011ee7, // 0.89867, 0.43862 0x3fecccee20c2de9f, 0x3fdbe51517ffc0d9, // 0.90002, 0.43586 0x3fecd7d9898b32f6, 0x3fdbb7cf2304bd01, // 0.90135, 0.43309 0x3fece2b32799a060, 0x3fdb8a7814fd5693, // 0.90267, 0.43033 0x3feced7af43cc773, 0x3fdb5d1009e15cc0, // 0.90399, 0.42756 0x3fecf830e8ce467b, 0x3fdb2f971db31972, // 0.9053, 0.42478 0x3fed02d4feb2bd92, 0x3fdb020d6c7f4009, // 0.9066, 0.422 0x3fed0d672f59d2b9, 0x3fdad473125cdc08, // 0.90789, 0.41922 0x3fed17e7743e35dc, 0x3fdaa6c82b6d3fc9, // 0.90917, 0.41643 0x3fed2255c6e5a4e1, 0x3fda790cd3dbf31a, // 0.91044, 0.41364 0x3fed2cb220e0ef9f, 0x3fda4b4127dea1e4, // 0.91171, 0.41084 0x3fed36fc7bcbfbdc, 0x3fda1d6543b50ac0, // 0.91296, 0.40804 0x3fed4134d14dc93a, 0x3fd9ef7943a8ed8a, // 0.91421, 0.40524 0x3fed4b5b1b187524, 0x3fd9c17d440df9f2, // 0.91545, 0.40243 0x3fed556f52e93eb1, 0x3fd993716141bdfe, // 0.91668, 0.39962 0x3fed5f7172888a7f, 0x3fd96555b7ab948f, // 0.9179, 0.39681 0x3fed696173c9e68b, 0x3fd9372a63bc93d7, // 0.91911, 0.39399 0x3fed733f508c0dff, 0x3fd908ef81ef7bd1, // 0.92032, 0.39117 0x3fed7d0b02b8ecf9, 0x3fd8daa52ec8a4af, // 0.92151, 0.38835 0x3fed86c48445a450, 0x3fd8ac4b86d5ed44, // 0.9227, 0.38552 0x3fed906bcf328d46, 0x3fd87de2a6aea963, // 0.92388, 0.38268 0x3fed9a00dd8b3d46, 0x3fd84f6aaaf3903f, // 0.92505, 0.37985 0x3feda383a9668988, 0x3fd820e3b04eaac4, // 0.92621, 0.37701 0x3fedacf42ce68ab9, 0x3fd7f24dd37341e3, // 0.92736, 0.37416 0x3fedb6526238a09b, 0x3fd7c3a9311dcce7, // 0.92851, 0.37132 0x3fedbf9e4395759a, 0x3fd794f5e613dfae, // 0.92964, 0.36847 0x3fedc8d7cb410260, 0x3fd766340f2418f6, // 0.93077, 0.36561 0x3fedd1fef38a915a, 0x3fd73763c9261092, // 0.93188, 0.36276 0x3feddb13b6ccc23d, 0x3fd7088530fa459e, // 0.93299, 0.3599 0x3fede4160f6d8d81, 0x3fd6d998638a0cb5, // 0.93409, 0.35703 0x3feded05f7de47da, 0x3fd6aa9d7dc77e16, // 0.93518, 0.35416 0x3fedf5e36a9ba59c, 0x3fd67b949cad63ca, // 0.93627, 0.35129 0x3fedfeae622dbe2b, 0x3fd64c7ddd3f27c6, // 0.93734, 0.34842 0x3fee0766d9280f54, 0x3fd61d595c88c203, // 0.9384, 0.34554 0x3fee100cca2980ac, 0x3fd5ee27379ea693, // 0.93946, 0.34266 0x3fee18a02fdc66d9, 0x3fd5bee78b9db3b6, // 0.94051, 0.33978 0x3fee212104f686e5, 0x3fd58f9a75ab1fdd, // 0.94154, 0.33689 0x3fee298f4439197a, 0x3fd5604012f467b4, // 0.94257, 0.334 0x3fee31eae870ce25, 0x3fd530d880af3c24, // 0.94359, 0.33111 0x3fee3a33ec75ce85, 0x3fd50163dc197047, // 0.9446, 0.32821 0x3fee426a4b2bc17e, 0x3fd4d1e24278e76a, // 0.94561, 0.32531 0x3fee4a8dff81ce5e, 0x3fd4a253d11b82f3, // 0.9466, 0.32241 0x3fee529f04729ffc, 0x3fd472b8a5571054, // 0.94759, 0.3195 0x3fee5a9d550467d3, 0x3fd44310dc8936f0, // 0.94856, 0.31659 0x3fee6288ec48e112, 0x3fd4135c94176602, // 0.94953, 0.31368 0x3fee6a61c55d53a7, 0x3fd3e39be96ec271, // 0.95049, 0.31077 0x3fee7227db6a9744, 0x3fd3b3cefa0414b7, // 0.95144, 0.30785 0x3fee79db29a5165a, 0x3fd383f5e353b6aa, // 0.95238, 0.30493 0x3fee817bab4cd10d, 0x3fd35410c2e18152, // 0.95331, 0.30201 0x3fee89095bad6025, 0x3fd3241fb638baaf, // 0.95423, 0.29908 0x3fee9084361df7f3, 0x3fd2f422daec0386, // 0.95514, 0.29615 0x3fee97ec36016b30, 0x3fd2c41a4e954520, // 0.95605, 0.29322 0x3fee9f4156c62dda, 0x3fd294062ed59f05, // 0.95694, 0.29028 0x3feea68393e65800, 0x3fd263e6995554ba, // 0.95783, 0.28735 0x3feeadb2e8e7a88e, 0x3fd233bbabc3bb72, // 0.9587, 0.28441 0x3feeb4cf515b8811, 0x3fd2038583d727bd, // 0.95957, 0.28146 0x3feebbd8c8df0b74, 0x3fd1d3443f4cdb3d, // 0.96043, 0.27852 0x3feec2cf4b1af6b2, 0x3fd1a2f7fbe8f243, // 0.96128, 0.27557 0x3feec9b2d3c3bf84, 0x3fd172a0d7765177, // 0.96212, 0.27262 0x3feed0835e999009, 0x3fd1423eefc69378, // 0.96295, 0.26967 0x3feed740e7684963, 0x3fd111d262b1f677, // 0.96378, 0.26671 0x3feeddeb6a078651, 0x3fd0e15b4e1749cd, // 0.96459, 0.26375 0x3feee482e25a9dbc, 0x3fd0b0d9cfdbdb90, // 0.96539, 0.26079 0x3feeeb074c50a544, 0x3fd0804e05eb661e, // 0.96619, 0.25783 0x3feef178a3e473c2, 0x3fd04fb80e37fdae, // 0.96698, 0.25487 0x3feef7d6e51ca3c0, 0x3fd01f1806b9fdd2, // 0.96775, 0.2519 0x3feefe220c0b95ec, 0x3fcfdcdc1adfedf8, // 0.96852, 0.24893 0x3fef045a14cf738c, 0x3fcf7b7480bd3801, // 0.96928, 0.24596 0x3fef0a7efb9230d7, 0x3fcf19f97b215f1a, // 0.97003, 0.24298 0x3fef1090bc898f5f, 0x3fceb86b462de348, // 0.97077, 0.24 0x3fef168f53f7205d, 0x3fce56ca1e101a1b, // 0.9715, 0.23702 0x3fef1c7abe284708, 0x3fcdf5163f01099a, // 0.97223, 0.23404 0x3fef2252f7763ada, 0x3fcd934fe5454311, // 0.97294, 0.23106 0x3fef2817fc4609ce, 0x3fcd31774d2cbdee, // 0.97364, 0.22807 0x3fef2dc9c9089a9d, 0x3fcccf8cb312b286, // 0.97434, 0.22508 0x3fef33685a3aaef0, 0x3fcc6d90535d74dc, // 0.97503, 0.22209 0x3fef38f3ac64e589, 0x3fcc0b826a7e4f63, // 0.9757, 0.2191 0x3fef3e6bbc1bbc65, 0x3fcba96334f15dad, // 0.97637, 0.21611 0x3fef43d085ff92dd, 0x3fcb4732ef3d6722, // 0.97703, 0.21311 0x3fef492206bcabb4, 0x3fcae4f1d5f3b9ab, // 0.97768, 0.21011 0x3fef4e603b0b2f2d, 0x3fca82a025b00451, // 0.97832, 0.20711 0x3fef538b1faf2d07, 0x3fca203e1b1831da, // 0.97895, 0.20411 0x3fef58a2b1789e84, 0x3fc9bdcbf2dc4366, // 0.97957, 0.2011 0x3fef5da6ed43685d, 0x3fc95b49e9b62af9, // 0.98018, 0.1981 0x3fef6297cff75cb0, 0x3fc8f8b83c69a60a, // 0.98079, 0.19509 0x3fef677556883cee, 0x3fc8961727c41804, // 0.98138, 0.19208 0x3fef6c3f7df5bbb7, 0x3fc83366e89c64c5, // 0.98196, 0.18907 0x3fef70f6434b7eb7, 0x3fc7d0a7bbd2cb1b, // 0.98254, 0.18606 0x3fef7599a3a12077, 0x3fc76dd9de50bf31, // 0.98311, 0.18304 0x3fef7a299c1a322a, 0x3fc70afd8d08c4ff, // 0.98366, 0.18002 0x3fef7ea629e63d6e, 0x3fc6a81304f64ab2, // 0.98421, 0.177 0x3fef830f4a40c60c, 0x3fc6451a831d830d, // 0.98475, 0.17398 0x3fef8764fa714ba9, 0x3fc5e214448b3fc6, // 0.98528, 0.17096 0x3fef8ba737cb4b78, 0x3fc57f008654cbde, // 0.9858, 0.16794 0x3fef8fd5ffae41db, 0x3fc51bdf8597c5f2, // 0.98631, 0.16491 0x3fef93f14f85ac08, 0x3fc4b8b17f79fa88, // 0.98681, 0.16189 0x3fef97f924c9099b, 0x3fc45576b1293e5a, // 0.9873, 0.15886 0x3fef9bed7cfbde29, 0x3fc3f22f57db4893, // 0.98778, 0.15583 0x3fef9fce55adb2c8, 0x3fc38edbb0cd8d14, // 0.98826, 0.1528 0x3fefa39bac7a1791, 0x3fc32b7bf94516a7, // 0.98872, 0.14976 0x3fefa7557f08a517, 0x3fc2c8106e8e613a, // 0.98918, 0.14673 0x3fefaafbcb0cfddc, 0x3fc264994dfd340a, // 0.98962, 0.1437 0x3fefae8e8e46cfbb, 0x3fc20116d4ec7bce, // 0.99006, 0.14066 0x3fefb20dc681d54d, 0x3fc19d8940be24e7, // 0.99049, 0.13762 0x3fefb5797195d741, 0x3fc139f0cedaf576, // 0.9909, 0.13458 0x3fefb8d18d66adb7, 0x3fc0d64dbcb26786, // 0.99131, 0.13154 0x3fefbc1617e44186, 0x3fc072a047ba831d, // 0.99171, 0.1285 0x3fefbf470f0a8d88, 0x3fc00ee8ad6fb85b, // 0.9921, 0.12545 0x3fefc26470e19fd3, 0x3fbf564e56a9730e, // 0.99248, 0.12241 0x3fefc56e3b7d9af6, 0x3fbe8eb7fde4aa3e, // 0.99285, 0.11937 0x3fefc8646cfeb721, 0x3fbdc70ecbae9fc8, // 0.99321, 0.11632 0x3fefcb4703914354, 0x3fbcff533b307dc1, // 0.99356, 0.11327 0x3fefce15fd6da67b, 0x3fbc3785c79ec2d5, // 0.99391, 0.11022 0x3fefd0d158d86087, 0x3fbb6fa6ec38f64c, // 0.99424, 0.10717 0x3fefd37914220b84, 0x3fbaa7b724495c04, // 0.99456, 0.10412 0x3fefd60d2da75c9e, 0x3fb9dfb6eb24a85c, // 0.99488, 0.10107 0x3fefd88da3d12526, 0x3fb917a6bc29b42c, // 0.99518, 0.098017 0x3fefdafa7514538c, 0x3fb84f8712c130a0, // 0.99548, 0.094963 0x3fefdd539ff1f456, 0x3fb787586a5d5b21, // 0.99577, 0.091909 0x3fefdf9922f73307, 0x3fb6bf1b3e79b129, // 0.99604, 0.088854 0x3fefe1cafcbd5b09, 0x3fb5f6d00a9aa419, // 0.99631, 0.085797 0x3fefe3e92be9d886, 0x3fb52e774a4d4d0a, // 0.99657, 0.08274 0x3fefe5f3af2e3940, 0x3fb4661179272096, // 0.99682, 0.079682 0x3fefe7ea85482d60, 0x3fb39d9f12c5a299, // 0.99706, 0.076624 0x3fefe9cdad01883a, 0x3fb2d52092ce19f6, // 0.99729, 0.073565 0x3fefeb9d2530410f, 0x3fb20c9674ed444c, // 0.99751, 0.070505 0x3fefed58ecb673c4, 0x3fb1440134d709b2, // 0.99772, 0.067444 0x3fefef0102826191, 0x3fb07b614e463064, // 0.99793, 0.064383 0x3feff095658e71ad, 0x3faf656e79f820e0, // 0.99812, 0.061321 0x3feff21614e131ed, 0x3fadd406f9808ec8, // 0.9983, 0.058258 0x3feff3830f8d575c, 0x3fac428d12c0d7e3, // 0.99848, 0.055195 0x3feff4dc54b1bed3, 0x3faab101bd5f8317, // 0.99864, 0.052132 0x3feff621e3796d7e, 0x3fa91f65f10dd814, // 0.9988, 0.049068 0x3feff753bb1b9164, 0x3fa78dbaa5874685, // 0.99894, 0.046003 0x3feff871dadb81df, 0x3fa5fc00d290cd43, // 0.99908, 0.042938 0x3feff97c4208c014, 0x3fa46a396ff86179, // 0.9992, 0.039873 0x3feffa72effef75d, 0x3fa2d865759455cd, // 0.99932, 0.036807 0x3feffb55e425fdae, 0x3fa14685db42c17e, // 0.99943, 0.033741 0x3feffc251df1d3f8, 0x3f9f693731d1cf01, // 0.99953, 0.030675 0x3feffce09ce2a679, 0x3f9c454f4ce53b1c, // 0.99962, 0.027608 0x3feffd886084cd0d, 0x3f992155f7a3667e, // 0.9997, 0.024541 0x3feffe1c6870cb77, 0x3f95fd4d21fab226, // 0.99977, 0.021474 0x3feffe9cb44b51a1, 0x3f92d936bbe30efd, // 0.99983, 0.018407 0x3fefff0943c53bd1, 0x3f8f6a296ab997ca, // 0.99988, 0.015339 0x3fefff62169b92db, 0x3f8921d1fcdec784, // 0.99992, 0.012272 0x3fefffa72c978c4f, 0x3f82d96b0e509703, // 0.99996, 0.0092038 0x3fefffd8858e8a92, 0x3f7921f0fe670071, // 0.99998, 0.0061359 0x3feffff621621d02, 0x3f6921f8becca4ba, // 1, 0.003068 0x3ff0000000000000, 0x0000000000000000, // 1, 0 0x3feffff621621d02, 0xbf6921f8becca4ba, // 1, -0.003068 0x3fefffd8858e8a92, 0xbf7921f0fe670071, // 0.99998,-0.0061359 0x3fefffa72c978c4f, 0xbf82d96b0e509703, // 0.99996,-0.0092038 0x3fefff62169b92db, 0xbf8921d1fcdec784, // 0.99992, -0.012272 0x3fefff0943c53bd1, 0xbf8f6a296ab997ca, // 0.99988, -0.015339 0x3feffe9cb44b51a1, 0xbf92d936bbe30efd, // 0.99983, -0.018407 0x3feffe1c6870cb77, 0xbf95fd4d21fab226, // 0.99977, -0.021474 0x3feffd886084cd0d, 0xbf992155f7a3667e, // 0.9997, -0.024541 0x3feffce09ce2a679, 0xbf9c454f4ce53b1c, // 0.99962, -0.027608 0x3feffc251df1d3f8, 0xbf9f693731d1cf01, // 0.99953, -0.030675 0x3feffb55e425fdae, 0xbfa14685db42c17e, // 0.99943, -0.033741 0x3feffa72effef75d, 0xbfa2d865759455cd, // 0.99932, -0.036807 0x3feff97c4208c014, 0xbfa46a396ff86179, // 0.9992, -0.039873 0x3feff871dadb81df, 0xbfa5fc00d290cd43, // 0.99908, -0.042938 0x3feff753bb1b9164, 0xbfa78dbaa5874685, // 0.99894, -0.046003 0x3feff621e3796d7e, 0xbfa91f65f10dd814, // 0.9988, -0.049068 0x3feff4dc54b1bed3, 0xbfaab101bd5f8317, // 0.99864, -0.052132 0x3feff3830f8d575c, 0xbfac428d12c0d7e3, // 0.99848, -0.055195 0x3feff21614e131ed, 0xbfadd406f9808ec8, // 0.9983, -0.058258 0x3feff095658e71ad, 0xbfaf656e79f820e0, // 0.99812, -0.061321 0x3fefef0102826191, 0xbfb07b614e463064, // 0.99793, -0.064383 0x3fefed58ecb673c4, 0xbfb1440134d709b2, // 0.99772, -0.067444 0x3fefeb9d2530410f, 0xbfb20c9674ed444c, // 0.99751, -0.070505 0x3fefe9cdad01883a, 0xbfb2d52092ce19f6, // 0.99729, -0.073565 0x3fefe7ea85482d60, 0xbfb39d9f12c5a299, // 0.99706, -0.076624 0x3fefe5f3af2e3940, 0xbfb4661179272096, // 0.99682, -0.079682 0x3fefe3e92be9d886, 0xbfb52e774a4d4d0a, // 0.99657, -0.08274 0x3fefe1cafcbd5b09, 0xbfb5f6d00a9aa419, // 0.99631, -0.085797 0x3fefdf9922f73307, 0xbfb6bf1b3e79b129, // 0.99604, -0.088854 0x3fefdd539ff1f456, 0xbfb787586a5d5b21, // 0.99577, -0.091909 0x3fefdafa7514538c, 0xbfb84f8712c130a0, // 0.99548, -0.094963 0x3fefd88da3d12526, 0xbfb917a6bc29b42c, // 0.99518, -0.098017 0x3fefd60d2da75c9e, 0xbfb9dfb6eb24a85c, // 0.99488, -0.10107 0x3fefd37914220b84, 0xbfbaa7b724495c04, // 0.99456, -0.10412 0x3fefd0d158d86087, 0xbfbb6fa6ec38f64c, // 0.99424, -0.10717 0x3fefce15fd6da67b, 0xbfbc3785c79ec2d5, // 0.99391, -0.11022 0x3fefcb4703914354, 0xbfbcff533b307dc1, // 0.99356, -0.11327 0x3fefc8646cfeb721, 0xbfbdc70ecbae9fc8, // 0.99321, -0.11632 0x3fefc56e3b7d9af6, 0xbfbe8eb7fde4aa3e, // 0.99285, -0.11937 0x3fefc26470e19fd3, 0xbfbf564e56a9730e, // 0.99248, -0.12241 0x3fefbf470f0a8d88, 0xbfc00ee8ad6fb85b, // 0.9921, -0.12545 0x3fefbc1617e44186, 0xbfc072a047ba831d, // 0.99171, -0.1285 0x3fefb8d18d66adb7, 0xbfc0d64dbcb26786, // 0.99131, -0.13154 0x3fefb5797195d741, 0xbfc139f0cedaf576, // 0.9909, -0.13458 0x3fefb20dc681d54d, 0xbfc19d8940be24e7, // 0.99049, -0.13762 0x3fefae8e8e46cfbb, 0xbfc20116d4ec7bce, // 0.99006, -0.14066 0x3fefaafbcb0cfddc, 0xbfc264994dfd340a, // 0.98962, -0.1437 0x3fefa7557f08a517, 0xbfc2c8106e8e613a, // 0.98918, -0.14673 0x3fefa39bac7a1791, 0xbfc32b7bf94516a7, // 0.98872, -0.14976 0x3fef9fce55adb2c8, 0xbfc38edbb0cd8d14, // 0.98826, -0.1528 0x3fef9bed7cfbde29, 0xbfc3f22f57db4893, // 0.98778, -0.15583 0x3fef97f924c9099b, 0xbfc45576b1293e5a, // 0.9873, -0.15886 0x3fef93f14f85ac08, 0xbfc4b8b17f79fa88, // 0.98681, -0.16189 0x3fef8fd5ffae41db, 0xbfc51bdf8597c5f2, // 0.98631, -0.16491 0x3fef8ba737cb4b78, 0xbfc57f008654cbde, // 0.9858, -0.16794 0x3fef8764fa714ba9, 0xbfc5e214448b3fc6, // 0.98528, -0.17096 0x3fef830f4a40c60c, 0xbfc6451a831d830d, // 0.98475, -0.17398 0x3fef7ea629e63d6e, 0xbfc6a81304f64ab2, // 0.98421, -0.177 0x3fef7a299c1a322a, 0xbfc70afd8d08c4ff, // 0.98366, -0.18002 0x3fef7599a3a12077, 0xbfc76dd9de50bf31, // 0.98311, -0.18304 0x3fef70f6434b7eb7, 0xbfc7d0a7bbd2cb1b, // 0.98254, -0.18606 0x3fef6c3f7df5bbb7, 0xbfc83366e89c64c5, // 0.98196, -0.18907 0x3fef677556883cee, 0xbfc8961727c41804, // 0.98138, -0.19208 0x3fef6297cff75cb0, 0xbfc8f8b83c69a60a, // 0.98079, -0.19509 0x3fef5da6ed43685d, 0xbfc95b49e9b62af9, // 0.98018, -0.1981 0x3fef58a2b1789e84, 0xbfc9bdcbf2dc4366, // 0.97957, -0.2011 0x3fef538b1faf2d07, 0xbfca203e1b1831da, // 0.97895, -0.20411 0x3fef4e603b0b2f2d, 0xbfca82a025b00451, // 0.97832, -0.20711 0x3fef492206bcabb4, 0xbfcae4f1d5f3b9ab, // 0.97768, -0.21011 0x3fef43d085ff92dd, 0xbfcb4732ef3d6722, // 0.97703, -0.21311 0x3fef3e6bbc1bbc65, 0xbfcba96334f15dad, // 0.97637, -0.21611 0x3fef38f3ac64e589, 0xbfcc0b826a7e4f63, // 0.9757, -0.2191 0x3fef33685a3aaef0, 0xbfcc6d90535d74dc, // 0.97503, -0.22209 0x3fef2dc9c9089a9d, 0xbfcccf8cb312b286, // 0.97434, -0.22508 0x3fef2817fc4609ce, 0xbfcd31774d2cbdee, // 0.97364, -0.22807 0x3fef2252f7763ada, 0xbfcd934fe5454311, // 0.97294, -0.23106 0x3fef1c7abe284708, 0xbfcdf5163f01099a, // 0.97223, -0.23404 0x3fef168f53f7205d, 0xbfce56ca1e101a1b, // 0.9715, -0.23702 0x3fef1090bc898f5f, 0xbfceb86b462de348, // 0.97077, -0.24 0x3fef0a7efb9230d7, 0xbfcf19f97b215f1a, // 0.97003, -0.24298 0x3fef045a14cf738c, 0xbfcf7b7480bd3801, // 0.96928, -0.24596 0x3feefe220c0b95ec, 0xbfcfdcdc1adfedf8, // 0.96852, -0.24893 0x3feef7d6e51ca3c0, 0xbfd01f1806b9fdd2, // 0.96775, -0.2519 0x3feef178a3e473c2, 0xbfd04fb80e37fdae, // 0.96698, -0.25487 0x3feeeb074c50a544, 0xbfd0804e05eb661e, // 0.96619, -0.25783 0x3feee482e25a9dbc, 0xbfd0b0d9cfdbdb90, // 0.96539, -0.26079 0x3feeddeb6a078651, 0xbfd0e15b4e1749cd, // 0.96459, -0.26375 0x3feed740e7684963, 0xbfd111d262b1f677, // 0.96378, -0.26671 0x3feed0835e999009, 0xbfd1423eefc69378, // 0.96295, -0.26967 0x3feec9b2d3c3bf84, 0xbfd172a0d7765177, // 0.96212, -0.27262 0x3feec2cf4b1af6b2, 0xbfd1a2f7fbe8f243, // 0.96128, -0.27557 0x3feebbd8c8df0b74, 0xbfd1d3443f4cdb3d, // 0.96043, -0.27852 0x3feeb4cf515b8811, 0xbfd2038583d727bd, // 0.95957, -0.28146 0x3feeadb2e8e7a88e, 0xbfd233bbabc3bb72, // 0.9587, -0.28441 0x3feea68393e65800, 0xbfd263e6995554ba, // 0.95783, -0.28735 0x3fee9f4156c62dda, 0xbfd294062ed59f05, // 0.95694, -0.29028 0x3fee97ec36016b30, 0xbfd2c41a4e954520, // 0.95605, -0.29322 0x3fee9084361df7f3, 0xbfd2f422daec0386, // 0.95514, -0.29615 0x3fee89095bad6025, 0xbfd3241fb638baaf, // 0.95423, -0.29908 0x3fee817bab4cd10d, 0xbfd35410c2e18152, // 0.95331, -0.30201 0x3fee79db29a5165a, 0xbfd383f5e353b6aa, // 0.95238, -0.30493 0x3fee7227db6a9744, 0xbfd3b3cefa0414b7, // 0.95144, -0.30785 0x3fee6a61c55d53a7, 0xbfd3e39be96ec271, // 0.95049, -0.31077 0x3fee6288ec48e112, 0xbfd4135c94176602, // 0.94953, -0.31368 0x3fee5a9d550467d3, 0xbfd44310dc8936f0, // 0.94856, -0.31659 0x3fee529f04729ffc, 0xbfd472b8a5571054, // 0.94759, -0.3195 0x3fee4a8dff81ce5e, 0xbfd4a253d11b82f3, // 0.9466, -0.32241 0x3fee426a4b2bc17e, 0xbfd4d1e24278e76a, // 0.94561, -0.32531 0x3fee3a33ec75ce85, 0xbfd50163dc197047, // 0.9446, -0.32821 0x3fee31eae870ce25, 0xbfd530d880af3c24, // 0.94359, -0.33111 0x3fee298f4439197a, 0xbfd5604012f467b4, // 0.94257, -0.334 0x3fee212104f686e5, 0xbfd58f9a75ab1fdd, // 0.94154, -0.33689 0x3fee18a02fdc66d9, 0xbfd5bee78b9db3b6, // 0.94051, -0.33978 0x3fee100cca2980ac, 0xbfd5ee27379ea693, // 0.93946, -0.34266 0x3fee0766d9280f54, 0xbfd61d595c88c203, // 0.9384, -0.34554 0x3fedfeae622dbe2b, 0xbfd64c7ddd3f27c6, // 0.93734, -0.34842 0x3fedf5e36a9ba59c, 0xbfd67b949cad63ca, // 0.93627, -0.35129 0x3feded05f7de47da, 0xbfd6aa9d7dc77e16, // 0.93518, -0.35416 0x3fede4160f6d8d81, 0xbfd6d998638a0cb5, // 0.93409, -0.35703 0x3feddb13b6ccc23d, 0xbfd7088530fa459e, // 0.93299, -0.3599 0x3fedd1fef38a915a, 0xbfd73763c9261092, // 0.93188, -0.36276 0x3fedc8d7cb410260, 0xbfd766340f2418f6, // 0.93077, -0.36561 0x3fedbf9e4395759a, 0xbfd794f5e613dfae, // 0.92964, -0.36847 0x3fedb6526238a09b, 0xbfd7c3a9311dcce7, // 0.92851, -0.37132 0x3fedacf42ce68ab9, 0xbfd7f24dd37341e3, // 0.92736, -0.37416 0x3feda383a9668988, 0xbfd820e3b04eaac4, // 0.92621, -0.37701 0x3fed9a00dd8b3d46, 0xbfd84f6aaaf3903f, // 0.92505, -0.37985 0x3fed906bcf328d46, 0xbfd87de2a6aea963, // 0.92388, -0.38268 0x3fed86c48445a450, 0xbfd8ac4b86d5ed44, // 0.9227, -0.38552 0x3fed7d0b02b8ecf9, 0xbfd8daa52ec8a4af, // 0.92151, -0.38835 0x3fed733f508c0dff, 0xbfd908ef81ef7bd1, // 0.92032, -0.39117 0x3fed696173c9e68b, 0xbfd9372a63bc93d7, // 0.91911, -0.39399 0x3fed5f7172888a7f, 0xbfd96555b7ab948f, // 0.9179, -0.39681 0x3fed556f52e93eb1, 0xbfd993716141bdfe, // 0.91668, -0.39962 0x3fed4b5b1b187524, 0xbfd9c17d440df9f2, // 0.91545, -0.40243 0x3fed4134d14dc93a, 0xbfd9ef7943a8ed8a, // 0.91421, -0.40524 0x3fed36fc7bcbfbdc, 0xbfda1d6543b50ac0, // 0.91296, -0.40804 0x3fed2cb220e0ef9f, 0xbfda4b4127dea1e4, // 0.91171, -0.41084 0x3fed2255c6e5a4e1, 0xbfda790cd3dbf31a, // 0.91044, -0.41364 0x3fed17e7743e35dc, 0xbfdaa6c82b6d3fc9, // 0.90917, -0.41643 0x3fed0d672f59d2b9, 0xbfdad473125cdc08, // 0.90789, -0.41922 0x3fed02d4feb2bd92, 0xbfdb020d6c7f4009, // 0.9066, -0.422 0x3fecf830e8ce467b, 0xbfdb2f971db31972, // 0.9053, -0.42478 0x3feced7af43cc773, 0xbfdb5d1009e15cc0, // 0.90399, -0.42756 0x3fece2b32799a060, 0xbfdb8a7814fd5693, // 0.90267, -0.43033 0x3fecd7d9898b32f6, 0xbfdbb7cf2304bd01, // 0.90135, -0.43309 0x3fecccee20c2de9f, 0xbfdbe51517ffc0d9, // 0.90002, -0.43586 0x3fecc1f0f3fcfc5c, 0xbfdc1249d8011ee7, // 0.89867, -0.43862 0x3fecb6e20a00da99, 0xbfdc3f6d47263129, // 0.89732, -0.44137 0x3fecabc169a0b901, 0xbfdc6c7f4997000a, // 0.89597, -0.44412 0x3feca08f19b9c449, 0xbfdc997fc3865388, // 0.8946, -0.44687 0x3fec954b213411f5, 0xbfdcc66e9931c45d, // 0.89322, -0.44961 0x3fec89f587029c13, 0xbfdcf34baee1cd21, // 0.89184, -0.45235 0x3fec7e8e52233cf3, 0xbfdd2016e8e9db5b, // 0.89045, -0.45508 0x3fec7315899eaad7, 0xbfdd4cd02ba8609c, // 0.88905, -0.45781 0x3fec678b3488739b, 0xbfdd79775b86e389, // 0.88764, -0.46054 0x3fec5bef59fef85a, 0xbfdda60c5cfa10d8, // 0.88622, -0.46326 0x3fec5042012b6907, 0xbfddd28f1481cc58, // 0.8848, -0.46598 0x3fec44833141c004, 0xbfddfeff66a941de, // 0.88336, -0.46869 0x3fec38b2f180bdb1, 0xbfde2b5d3806f63b, // 0.88192, -0.4714 0x3fec2cd14931e3f1, 0xbfde57a86d3cd824, // 0.88047, -0.4741 0x3fec20de3fa971b0, 0xbfde83e0eaf85113, // 0.87901, -0.4768 0x3fec14d9dc465e58, 0xbfdeb00695f25620, // 0.87755, -0.47949 0x3fec08c426725549, 0xbfdedc1952ef78d5, // 0.87607, -0.48218 0x3febfc9d25a1b147, 0xbfdf081906bff7fd, // 0.87459, -0.48487 0x3febf064e15377dd, 0xbfdf3405963fd068, // 0.87309, -0.48755 0x3febe41b611154c1, 0xbfdf5fdee656cda3, // 0.8716, -0.49023 0x3febd7c0ac6f952a, 0xbfdf8ba4dbf89aba, // 0.87009, -0.4929 0x3febcb54cb0d2327, 0xbfdfb7575c24d2de, // 0.86857, -0.49557 0x3febbed7c49380ea, 0xbfdfe2f64be7120f, // 0.86705, -0.49823 0x3febb249a0b6c40d, 0xbfe00740c82b82e0, // 0.86551, -0.50089 0x3feba5aa673590d2, 0xbfe01cfc874c3eb7, // 0.86397, -0.50354 0x3feb98fa1fd9155e, 0xbfe032ae55edbd95, // 0.86242, -0.50619 0x3feb8c38d27504e9, 0xbfe0485626ae221a, // 0.86087, -0.50883 0x3feb7f6686e792ea, 0xbfe05df3ec31b8b6, // 0.8593, -0.51147 0x3feb728345196e3e, 0xbfe073879922ffed, // 0.85773, -0.5141 0x3feb658f14fdbc47, 0xbfe089112032b08c, // 0.85615, -0.51673 0x3feb5889fe921405, 0xbfe09e907417c5e1, // 0.85456, -0.51936 0x3feb4b7409de7925, 0xbfe0b405878f85ec, // 0.85296, -0.52198 0x3feb3e4d3ef55712, 0xbfe0c9704d5d898f, // 0.85136, -0.52459 0x3feb3115a5f37bf4, 0xbfe0ded0b84bc4b5, // 0.84974, -0.5272 0x3feb23cd470013b4, 0xbfe0f426bb2a8e7d, // 0.84812, -0.5298 0x3feb16742a4ca2f5, 0xbfe1097248d0a956, // 0.84649, -0.5324 0x3feb090a58150200, 0xbfe11eb3541b4b22, // 0.84485, -0.535 0x3feafb8fd89f57b6, 0xbfe133e9cfee254e, // 0.84321, -0.53759 0x3feaee04b43c1474, 0xbfe14915af336ceb, // 0.84155, -0.54017 0x3feae068f345ecef, 0xbfe15e36e4dbe2bc, // 0.83989, -0.54275 0x3fead2bc9e21d511, 0xbfe1734d63dedb49, // 0.83822, -0.54532 0x3feac4ffbd3efac8, 0xbfe188591f3a46e5, // 0.83655, -0.54789 0x3feab7325916c0d4, 0xbfe19d5a09f2b9b8, // 0.83486, -0.55046 0x3feaa9547a2cb98e, 0xbfe1b250171373be, // 0.83317, -0.55302 0x3fea9b66290ea1a3, 0xbfe1c73b39ae68c8, // 0.83147, -0.55557 0x3fea8d676e545ad2, 0xbfe1dc1b64dc4872, // 0.82976, -0.55812 0x3fea7f58529fe69d, 0xbfe1f0f08bbc861b, // 0.82805, -0.56066 0x3fea7138de9d60f5, 0xbfe205baa17560d6, // 0.82632, -0.5632 0x3fea63091b02fae2, 0xbfe21a799933eb58, // 0.82459, -0.56573 0x3fea54c91090f524, 0xbfe22f2d662c13e1, // 0.82285, -0.56826 0x3fea4678c8119ac8, 0xbfe243d5fb98ac1f, // 0.8211, -0.57078 0x3fea38184a593bc6, 0xbfe258734cbb7110, // 0.81935, -0.5733 0x3fea29a7a0462782, 0xbfe26d054cdd12df, // 0.81758, -0.57581 0x3fea1b26d2c0a75e, 0xbfe2818bef4d3cba, // 0.81581, -0.57831 0x3fea0c95eabaf937, 0xbfe2960727629ca8, // 0.81404, -0.58081 0x3fe9fdf4f13149de, 0xbfe2aa76e87aeb58, // 0.81225, -0.58331 0x3fe9ef43ef29af94, 0xbfe2bedb25faf3ea, // 0.81046, -0.5858 0x3fe9e082edb42472, 0xbfe2d333d34e9bb7, // 0.80866, -0.58828 0x3fe9d1b1f5ea80d6, 0xbfe2e780e3e8ea16, // 0.80685, -0.59076 0x3fe9c2d110f075c3, 0xbfe2fbc24b441015, // 0.80503, -0.59323 0x3fe9b3e047f38741, 0xbfe30ff7fce17035, // 0.80321, -0.5957 0x3fe9a4dfa42b06b2, 0xbfe32421ec49a620, // 0.80138, -0.59816 0x3fe995cf2ed80d22, 0xbfe338400d0c8e57, // 0.79954, -0.60062 0x3fe986aef1457594, 0xbfe34c5252c14de1, // 0.79769, -0.60307 0x3fe9777ef4c7d742, 0xbfe36058b10659f3, // 0.79584, -0.60551 0x3fe9683f42bd7fe1, 0xbfe374531b817f8d, // 0.79398, -0.60795 0x3fe958efe48e6dd7, 0xbfe3884185dfeb22, // 0.79211, -0.61038 0x3fe94990e3ac4a6c, 0xbfe39c23e3d63029, // 0.79023, -0.61281 0x3fe93a22499263fc, 0xbfe3affa292050b9, // 0.78835, -0.61523 0x3fe92aa41fc5a815, 0xbfe3c3c44981c517, // 0.78646, -0.61765 0x3fe91b166fd49da2, 0xbfe3d78238c58343, // 0.78456, -0.62006 0x3fe90b7943575efe, 0xbfe3eb33eabe0680, // 0.78265, -0.62246 0x3fe8fbcca3ef940d, 0xbfe3fed9534556d4, // 0.78074, -0.62486 0x3fe8ec109b486c49, 0xbfe41272663d108c, // 0.77882, -0.62725 0x3fe8dc45331698cc, 0xbfe425ff178e6bb1, // 0.77689, -0.62964 0x3fe8cc6a75184655, 0xbfe4397f5b2a4380, // 0.77495, -0.63202 0x3fe8bc806b151741, 0xbfe44cf325091dd6, // 0.77301, -0.63439 0x3fe8ac871ede1d88, 0xbfe4605a692b32a2, // 0.77106, -0.63676 0x3fe89c7e9a4dd4ab, 0xbfe473b51b987347, // 0.7691, -0.63912 0x3fe88c66e7481ba1, 0xbfe48703306091fe, // 0.76714, -0.64148 0x3fe87c400fba2ebf, 0xbfe49a449b9b0938, // 0.76517, -0.64383 0x3fe86c0a1d9aa195, 0xbfe4ad79516722f0, // 0.76319, -0.64618 0x3fe85bc51ae958cc, 0xbfe4c0a145ec0004, // 0.7612, -0.64851 0x3fe84b7111af83f9, 0xbfe4d3bc6d589f80, // 0.75921, -0.65085 0x3fe83b0e0bff976e, 0xbfe4e6cabbe3e5e9, // 0.75721, -0.65317 0x3fe82a9c13f545ff, 0xbfe4f9cc25cca486, // 0.7552, -0.65549 0x3fe81a1b33b57acc, 0xbfe50cc09f59a09b, // 0.75319, -0.65781 0x3fe8098b756e52fa, 0xbfe51fa81cd99aa6, // 0.75117, -0.66011 0x3fe7f8ece3571771, 0xbfe5328292a35596, // 0.74914, -0.66242 0x3fe7e83f87b03686, 0xbfe5454ff5159dfb, // 0.7471, -0.66471 0x3fe7d7836cc33db2, 0xbfe5581038975137, // 0.74506, -0.667 0x3fe7c6b89ce2d333, 0xbfe56ac35197649e, // 0.74301, -0.66928 0x3fe7b5df226aafb0, 0xbfe57d69348cec9f, // 0.74095, -0.67156 0x3fe7a4f707bf97d2, 0xbfe59001d5f723df, // 0.73889, -0.67383 0x3fe79400574f55e4, 0xbfe5a28d2a5d7250, // 0.73682, -0.67609 0x3fe782fb1b90b35b, 0xbfe5b50b264f7448, // 0.73474, -0.67835 0x3fe771e75f037261, 0xbfe5c77bbe65018c, // 0.73265, -0.6806 0x3fe760c52c304764, 0xbfe5d9dee73e345c, // 0.73056, -0.68285 0x3fe74f948da8d28d, 0xbfe5ec3495837074, // 0.72846, -0.68508 0x3fe73e558e079942, 0xbfe5fe7cbde56a0f, // 0.72636, -0.68732 0x3fe72d0837efff97, 0xbfe610b7551d2cde, // 0.72425, -0.68954 0x3fe71bac960e41bf, 0xbfe622e44fec22ff, // 0.72213, -0.69176 0x3fe70a42b3176d7a, 0xbfe63503a31c1be8, // 0.72, -0.69397 0x3fe6f8ca99c95b75, 0xbfe64715437f535b, // 0.71787, -0.69618 0x3fe6e74454eaa8ae, 0xbfe6591925f0783e, // 0.71573, -0.69838 0x3fe6d5afef4aafcc, 0xbfe66b0f3f52b386, // 0.71358, -0.70057 0x3fe6c40d73c18275, 0xbfe67cf78491af10, // 0.71143, -0.70275 0x3fe6b25ced2fe29c, 0xbfe68ed1eaa19c71, // 0.70927, -0.70493 0x3fe6a09e667f3bcc, 0xbfe6a09e667f3bcc, // 0.70711, -0.70711 0x3fe68ed1eaa19c71, 0xbfe6b25ced2fe29c, // 0.70493, -0.70927 0x3fe67cf78491af10, 0xbfe6c40d73c18275, // 0.70275, -0.71143 0x3fe66b0f3f52b386, 0xbfe6d5afef4aafcc, // 0.70057, -0.71358 0x3fe6591925f0783e, 0xbfe6e74454eaa8ae, // 0.69838, -0.71573 0x3fe64715437f535b, 0xbfe6f8ca99c95b75, // 0.69618, -0.71787 0x3fe63503a31c1be8, 0xbfe70a42b3176d7a, // 0.69397, -0.72 0x3fe622e44fec22ff, 0xbfe71bac960e41bf, // 0.69176, -0.72213 0x3fe610b7551d2cde, 0xbfe72d0837efff97, // 0.68954, -0.72425 0x3fe5fe7cbde56a0f, 0xbfe73e558e079942, // 0.68732, -0.72636 0x3fe5ec3495837074, 0xbfe74f948da8d28d, // 0.68508, -0.72846 0x3fe5d9dee73e345c, 0xbfe760c52c304764, // 0.68285, -0.73056 0x3fe5c77bbe65018c, 0xbfe771e75f037261, // 0.6806, -0.73265 0x3fe5b50b264f7448, 0xbfe782fb1b90b35b, // 0.67835, -0.73474 0x3fe5a28d2a5d7250, 0xbfe79400574f55e4, // 0.67609, -0.73682 0x3fe59001d5f723df, 0xbfe7a4f707bf97d2, // 0.67383, -0.73889 0x3fe57d69348cec9f, 0xbfe7b5df226aafb0, // 0.67156, -0.74095 0x3fe56ac35197649e, 0xbfe7c6b89ce2d333, // 0.66928, -0.74301 0x3fe5581038975137, 0xbfe7d7836cc33db2, // 0.667, -0.74506 0x3fe5454ff5159dfb, 0xbfe7e83f87b03686, // 0.66471, -0.7471 0x3fe5328292a35596, 0xbfe7f8ece3571771, // 0.66242, -0.74914 0x3fe51fa81cd99aa6, 0xbfe8098b756e52fa, // 0.66011, -0.75117 0x3fe50cc09f59a09b, 0xbfe81a1b33b57acc, // 0.65781, -0.75319 0x3fe4f9cc25cca486, 0xbfe82a9c13f545ff, // 0.65549, -0.7552 0x3fe4e6cabbe3e5e9, 0xbfe83b0e0bff976e, // 0.65317, -0.75721 0x3fe4d3bc6d589f80, 0xbfe84b7111af83f9, // 0.65085, -0.75921 0x3fe4c0a145ec0004, 0xbfe85bc51ae958cc, // 0.64851, -0.7612 0x3fe4ad79516722f0, 0xbfe86c0a1d9aa195, // 0.64618, -0.76319 0x3fe49a449b9b0938, 0xbfe87c400fba2ebf, // 0.64383, -0.76517 0x3fe48703306091fe, 0xbfe88c66e7481ba1, // 0.64148, -0.76714 0x3fe473b51b987347, 0xbfe89c7e9a4dd4ab, // 0.63912, -0.7691 0x3fe4605a692b32a2, 0xbfe8ac871ede1d88, // 0.63676, -0.77106 0x3fe44cf325091dd6, 0xbfe8bc806b151741, // 0.63439, -0.77301 0x3fe4397f5b2a4380, 0xbfe8cc6a75184655, // 0.63202, -0.77495 0x3fe425ff178e6bb1, 0xbfe8dc45331698cc, // 0.62964, -0.77689 0x3fe41272663d108c, 0xbfe8ec109b486c49, // 0.62725, -0.77882 0x3fe3fed9534556d4, 0xbfe8fbcca3ef940d, // 0.62486, -0.78074 0x3fe3eb33eabe0680, 0xbfe90b7943575efe, // 0.62246, -0.78265 0x3fe3d78238c58343, 0xbfe91b166fd49da2, // 0.62006, -0.78456 0x3fe3c3c44981c517, 0xbfe92aa41fc5a815, // 0.61765, -0.78646 0x3fe3affa292050b9, 0xbfe93a22499263fc, // 0.61523, -0.78835 0x3fe39c23e3d63029, 0xbfe94990e3ac4a6c, // 0.61281, -0.79023 0x3fe3884185dfeb22, 0xbfe958efe48e6dd7, // 0.61038, -0.79211 0x3fe374531b817f8d, 0xbfe9683f42bd7fe1, // 0.60795, -0.79398 0x3fe36058b10659f3, 0xbfe9777ef4c7d742, // 0.60551, -0.79584 0x3fe34c5252c14de1, 0xbfe986aef1457594, // 0.60307, -0.79769 0x3fe338400d0c8e57, 0xbfe995cf2ed80d22, // 0.60062, -0.79954 0x3fe32421ec49a620, 0xbfe9a4dfa42b06b2, // 0.59816, -0.80138 0x3fe30ff7fce17035, 0xbfe9b3e047f38741, // 0.5957, -0.80321 0x3fe2fbc24b441015, 0xbfe9c2d110f075c3, // 0.59323, -0.80503 0x3fe2e780e3e8ea16, 0xbfe9d1b1f5ea80d6, // 0.59076, -0.80685 0x3fe2d333d34e9bb7, 0xbfe9e082edb42472, // 0.58828, -0.80866 0x3fe2bedb25faf3ea, 0xbfe9ef43ef29af94, // 0.5858, -0.81046 0x3fe2aa76e87aeb58, 0xbfe9fdf4f13149de, // 0.58331, -0.81225 0x3fe2960727629ca8, 0xbfea0c95eabaf937, // 0.58081, -0.81404 0x3fe2818bef4d3cba, 0xbfea1b26d2c0a75e, // 0.57831, -0.81581 0x3fe26d054cdd12df, 0xbfea29a7a0462782, // 0.57581, -0.81758 0x3fe258734cbb7110, 0xbfea38184a593bc6, // 0.5733, -0.81935 0x3fe243d5fb98ac1f, 0xbfea4678c8119ac8, // 0.57078, -0.8211 0x3fe22f2d662c13e1, 0xbfea54c91090f524, // 0.56826, -0.82285 0x3fe21a799933eb58, 0xbfea63091b02fae2, // 0.56573, -0.82459 0x3fe205baa17560d6, 0xbfea7138de9d60f5, // 0.5632, -0.82632 0x3fe1f0f08bbc861b, 0xbfea7f58529fe69d, // 0.56066, -0.82805 0x3fe1dc1b64dc4872, 0xbfea8d676e545ad2, // 0.55812, -0.82976 0x3fe1c73b39ae68c8, 0xbfea9b66290ea1a3, // 0.55557, -0.83147 0x3fe1b250171373be, 0xbfeaa9547a2cb98e, // 0.55302, -0.83317 0x3fe19d5a09f2b9b8, 0xbfeab7325916c0d4, // 0.55046, -0.83486 0x3fe188591f3a46e5, 0xbfeac4ffbd3efac8, // 0.54789, -0.83655 0x3fe1734d63dedb49, 0xbfead2bc9e21d511, // 0.54532, -0.83822 0x3fe15e36e4dbe2bc, 0xbfeae068f345ecef, // 0.54275, -0.83989 0x3fe14915af336ceb, 0xbfeaee04b43c1474, // 0.54017, -0.84155 0x3fe133e9cfee254e, 0xbfeafb8fd89f57b6, // 0.53759, -0.84321 0x3fe11eb3541b4b22, 0xbfeb090a58150200, // 0.535, -0.84485 0x3fe1097248d0a956, 0xbfeb16742a4ca2f5, // 0.5324, -0.84649 0x3fe0f426bb2a8e7d, 0xbfeb23cd470013b4, // 0.5298, -0.84812 0x3fe0ded0b84bc4b5, 0xbfeb3115a5f37bf4, // 0.5272, -0.84974 0x3fe0c9704d5d898f, 0xbfeb3e4d3ef55712, // 0.52459, -0.85136 0x3fe0b405878f85ec, 0xbfeb4b7409de7925, // 0.52198, -0.85296 0x3fe09e907417c5e1, 0xbfeb5889fe921405, // 0.51936, -0.85456 0x3fe089112032b08c, 0xbfeb658f14fdbc47, // 0.51673, -0.85615 0x3fe073879922ffed, 0xbfeb728345196e3e, // 0.5141, -0.85773 0x3fe05df3ec31b8b6, 0xbfeb7f6686e792ea, // 0.51147, -0.8593 0x3fe0485626ae221a, 0xbfeb8c38d27504e9, // 0.50883, -0.86087 0x3fe032ae55edbd95, 0xbfeb98fa1fd9155e, // 0.50619, -0.86242 0x3fe01cfc874c3eb7, 0xbfeba5aa673590d2, // 0.50354, -0.86397 0x3fe00740c82b82e0, 0xbfebb249a0b6c40d, // 0.50089, -0.86551 0x3fdfe2f64be7120f, 0xbfebbed7c49380ea, // 0.49823, -0.86705 0x3fdfb7575c24d2de, 0xbfebcb54cb0d2327, // 0.49557, -0.86857 0x3fdf8ba4dbf89aba, 0xbfebd7c0ac6f952a, // 0.4929, -0.87009 0x3fdf5fdee656cda3, 0xbfebe41b611154c1, // 0.49023, -0.8716 0x3fdf3405963fd068, 0xbfebf064e15377dd, // 0.48755, -0.87309 0x3fdf081906bff7fd, 0xbfebfc9d25a1b147, // 0.48487, -0.87459 0x3fdedc1952ef78d5, 0xbfec08c426725549, // 0.48218, -0.87607 0x3fdeb00695f25620, 0xbfec14d9dc465e58, // 0.47949, -0.87755 0x3fde83e0eaf85113, 0xbfec20de3fa971b0, // 0.4768, -0.87901 0x3fde57a86d3cd824, 0xbfec2cd14931e3f1, // 0.4741, -0.88047 0x3fde2b5d3806f63b, 0xbfec38b2f180bdb1, // 0.4714, -0.88192 0x3fddfeff66a941de, 0xbfec44833141c004, // 0.46869, -0.88336 0x3fddd28f1481cc58, 0xbfec5042012b6907, // 0.46598, -0.8848 0x3fdda60c5cfa10d8, 0xbfec5bef59fef85a, // 0.46326, -0.88622 0x3fdd79775b86e389, 0xbfec678b3488739b, // 0.46054, -0.88764 0x3fdd4cd02ba8609c, 0xbfec7315899eaad7, // 0.45781, -0.88905 0x3fdd2016e8e9db5b, 0xbfec7e8e52233cf3, // 0.45508, -0.89045 0x3fdcf34baee1cd21, 0xbfec89f587029c13, // 0.45235, -0.89184 0x3fdcc66e9931c45d, 0xbfec954b213411f5, // 0.44961, -0.89322 0x3fdc997fc3865388, 0xbfeca08f19b9c449, // 0.44687, -0.8946 0x3fdc6c7f4997000a, 0xbfecabc169a0b901, // 0.44412, -0.89597 0x3fdc3f6d47263129, 0xbfecb6e20a00da99, // 0.44137, -0.89732 0x3fdc1249d8011ee7, 0xbfecc1f0f3fcfc5c, // 0.43862, -0.89867 0x3fdbe51517ffc0d9, 0xbfecccee20c2de9f, // 0.43586, -0.90002 0x3fdbb7cf2304bd01, 0xbfecd7d9898b32f6, // 0.43309, -0.90135 0x3fdb8a7814fd5693, 0xbfece2b32799a060, // 0.43033, -0.90267 0x3fdb5d1009e15cc0, 0xbfeced7af43cc773, // 0.42756, -0.90399 0x3fdb2f971db31972, 0xbfecf830e8ce467b, // 0.42478, -0.9053 0x3fdb020d6c7f4009, 0xbfed02d4feb2bd92, // 0.422, -0.9066 0x3fdad473125cdc08, 0xbfed0d672f59d2b9, // 0.41922, -0.90789 0x3fdaa6c82b6d3fc9, 0xbfed17e7743e35dc, // 0.41643, -0.90917 0x3fda790cd3dbf31a, 0xbfed2255c6e5a4e1, // 0.41364, -0.91044 0x3fda4b4127dea1e4, 0xbfed2cb220e0ef9f, // 0.41084, -0.91171 0x3fda1d6543b50ac0, 0xbfed36fc7bcbfbdc, // 0.40804, -0.91296 0x3fd9ef7943a8ed8a, 0xbfed4134d14dc93a, // 0.40524, -0.91421 0x3fd9c17d440df9f2, 0xbfed4b5b1b187524, // 0.40243, -0.91545 0x3fd993716141bdfe, 0xbfed556f52e93eb1, // 0.39962, -0.91668 0x3fd96555b7ab948f, 0xbfed5f7172888a7f, // 0.39681, -0.9179 0x3fd9372a63bc93d7, 0xbfed696173c9e68b, // 0.39399, -0.91911 0x3fd908ef81ef7bd1, 0xbfed733f508c0dff, // 0.39117, -0.92032 0x3fd8daa52ec8a4af, 0xbfed7d0b02b8ecf9, // 0.38835, -0.92151 0x3fd8ac4b86d5ed44, 0xbfed86c48445a450, // 0.38552, -0.9227 0x3fd87de2a6aea963, 0xbfed906bcf328d46, // 0.38268, -0.92388 0x3fd84f6aaaf3903f, 0xbfed9a00dd8b3d46, // 0.37985, -0.92505 0x3fd820e3b04eaac4, 0xbfeda383a9668988, // 0.37701, -0.92621 0x3fd7f24dd37341e3, 0xbfedacf42ce68ab9, // 0.37416, -0.92736 0x3fd7c3a9311dcce7, 0xbfedb6526238a09b, // 0.37132, -0.92851 0x3fd794f5e613dfae, 0xbfedbf9e4395759a, // 0.36847, -0.92964 0x3fd766340f2418f6, 0xbfedc8d7cb410260, // 0.36561, -0.93077 0x3fd73763c9261092, 0xbfedd1fef38a915a, // 0.36276, -0.93188 0x3fd7088530fa459e, 0xbfeddb13b6ccc23d, // 0.3599, -0.93299 0x3fd6d998638a0cb5, 0xbfede4160f6d8d81, // 0.35703, -0.93409 0x3fd6aa9d7dc77e16, 0xbfeded05f7de47da, // 0.35416, -0.93518 0x3fd67b949cad63ca, 0xbfedf5e36a9ba59c, // 0.35129, -0.93627 0x3fd64c7ddd3f27c6, 0xbfedfeae622dbe2b, // 0.34842, -0.93734 0x3fd61d595c88c203, 0xbfee0766d9280f54, // 0.34554, -0.9384 0x3fd5ee27379ea693, 0xbfee100cca2980ac, // 0.34266, -0.93946 0x3fd5bee78b9db3b6, 0xbfee18a02fdc66d9, // 0.33978, -0.94051 0x3fd58f9a75ab1fdd, 0xbfee212104f686e5, // 0.33689, -0.94154 0x3fd5604012f467b4, 0xbfee298f4439197a, // 0.334, -0.94257 0x3fd530d880af3c24, 0xbfee31eae870ce25, // 0.33111, -0.94359 0x3fd50163dc197047, 0xbfee3a33ec75ce85, // 0.32821, -0.9446 0x3fd4d1e24278e76a, 0xbfee426a4b2bc17e, // 0.32531, -0.94561 0x3fd4a253d11b82f3, 0xbfee4a8dff81ce5e, // 0.32241, -0.9466 0x3fd472b8a5571054, 0xbfee529f04729ffc, // 0.3195, -0.94759 0x3fd44310dc8936f0, 0xbfee5a9d550467d3, // 0.31659, -0.94856 0x3fd4135c94176602, 0xbfee6288ec48e112, // 0.31368, -0.94953 0x3fd3e39be96ec271, 0xbfee6a61c55d53a7, // 0.31077, -0.95049 0x3fd3b3cefa0414b7, 0xbfee7227db6a9744, // 0.30785, -0.95144 0x3fd383f5e353b6aa, 0xbfee79db29a5165a, // 0.30493, -0.95238 0x3fd35410c2e18152, 0xbfee817bab4cd10d, // 0.30201, -0.95331 0x3fd3241fb638baaf, 0xbfee89095bad6025, // 0.29908, -0.95423 0x3fd2f422daec0386, 0xbfee9084361df7f3, // 0.29615, -0.95514 0x3fd2c41a4e954520, 0xbfee97ec36016b30, // 0.29322, -0.95605 0x3fd294062ed59f05, 0xbfee9f4156c62dda, // 0.29028, -0.95694 0x3fd263e6995554ba, 0xbfeea68393e65800, // 0.28735, -0.95783 0x3fd233bbabc3bb72, 0xbfeeadb2e8e7a88e, // 0.28441, -0.9587 0x3fd2038583d727bd, 0xbfeeb4cf515b8811, // 0.28146, -0.95957 0x3fd1d3443f4cdb3d, 0xbfeebbd8c8df0b74, // 0.27852, -0.96043 0x3fd1a2f7fbe8f243, 0xbfeec2cf4b1af6b2, // 0.27557, -0.96128 0x3fd172a0d7765177, 0xbfeec9b2d3c3bf84, // 0.27262, -0.96212 0x3fd1423eefc69378, 0xbfeed0835e999009, // 0.26967, -0.96295 0x3fd111d262b1f677, 0xbfeed740e7684963, // 0.26671, -0.96378 0x3fd0e15b4e1749cd, 0xbfeeddeb6a078651, // 0.26375, -0.96459 0x3fd0b0d9cfdbdb90, 0xbfeee482e25a9dbc, // 0.26079, -0.96539 0x3fd0804e05eb661e, 0xbfeeeb074c50a544, // 0.25783, -0.96619 0x3fd04fb80e37fdae, 0xbfeef178a3e473c2, // 0.25487, -0.96698 0x3fd01f1806b9fdd2, 0xbfeef7d6e51ca3c0, // 0.2519, -0.96775 0x3fcfdcdc1adfedf8, 0xbfeefe220c0b95ec, // 0.24893, -0.96852 0x3fcf7b7480bd3801, 0xbfef045a14cf738c, // 0.24596, -0.96928 0x3fcf19f97b215f1a, 0xbfef0a7efb9230d7, // 0.24298, -0.97003 0x3fceb86b462de348, 0xbfef1090bc898f5f, // 0.24, -0.97077 0x3fce56ca1e101a1b, 0xbfef168f53f7205d, // 0.23702, -0.9715 0x3fcdf5163f01099a, 0xbfef1c7abe284708, // 0.23404, -0.97223 0x3fcd934fe5454311, 0xbfef2252f7763ada, // 0.23106, -0.97294 0x3fcd31774d2cbdee, 0xbfef2817fc4609ce, // 0.22807, -0.97364 0x3fcccf8cb312b286, 0xbfef2dc9c9089a9d, // 0.22508, -0.97434 0x3fcc6d90535d74dc, 0xbfef33685a3aaef0, // 0.22209, -0.97503 0x3fcc0b826a7e4f63, 0xbfef38f3ac64e589, // 0.2191, -0.9757 0x3fcba96334f15dad, 0xbfef3e6bbc1bbc65, // 0.21611, -0.97637 0x3fcb4732ef3d6722, 0xbfef43d085ff92dd, // 0.21311, -0.97703 0x3fcae4f1d5f3b9ab, 0xbfef492206bcabb4, // 0.21011, -0.97768 0x3fca82a025b00451, 0xbfef4e603b0b2f2d, // 0.20711, -0.97832 0x3fca203e1b1831da, 0xbfef538b1faf2d07, // 0.20411, -0.97895 0x3fc9bdcbf2dc4366, 0xbfef58a2b1789e84, // 0.2011, -0.97957 0x3fc95b49e9b62af9, 0xbfef5da6ed43685d, // 0.1981, -0.98018 0x3fc8f8b83c69a60a, 0xbfef6297cff75cb0, // 0.19509, -0.98079 0x3fc8961727c41804, 0xbfef677556883cee, // 0.19208, -0.98138 0x3fc83366e89c64c5, 0xbfef6c3f7df5bbb7, // 0.18907, -0.98196 0x3fc7d0a7bbd2cb1b, 0xbfef70f6434b7eb7, // 0.18606, -0.98254 0x3fc76dd9de50bf31, 0xbfef7599a3a12077, // 0.18304, -0.98311 0x3fc70afd8d08c4ff, 0xbfef7a299c1a322a, // 0.18002, -0.98366 0x3fc6a81304f64ab2, 0xbfef7ea629e63d6e, // 0.177, -0.98421 0x3fc6451a831d830d, 0xbfef830f4a40c60c, // 0.17398, -0.98475 0x3fc5e214448b3fc6, 0xbfef8764fa714ba9, // 0.17096, -0.98528 0x3fc57f008654cbde, 0xbfef8ba737cb4b78, // 0.16794, -0.9858 0x3fc51bdf8597c5f2, 0xbfef8fd5ffae41db, // 0.16491, -0.98631 0x3fc4b8b17f79fa88, 0xbfef93f14f85ac08, // 0.16189, -0.98681 0x3fc45576b1293e5a, 0xbfef97f924c9099b, // 0.15886, -0.9873 0x3fc3f22f57db4893, 0xbfef9bed7cfbde29, // 0.15583, -0.98778 0x3fc38edbb0cd8d14, 0xbfef9fce55adb2c8, // 0.1528, -0.98826 0x3fc32b7bf94516a7, 0xbfefa39bac7a1791, // 0.14976, -0.98872 0x3fc2c8106e8e613a, 0xbfefa7557f08a517, // 0.14673, -0.98918 0x3fc264994dfd340a, 0xbfefaafbcb0cfddc, // 0.1437, -0.98962 0x3fc20116d4ec7bce, 0xbfefae8e8e46cfbb, // 0.14066, -0.99006 0x3fc19d8940be24e7, 0xbfefb20dc681d54d, // 0.13762, -0.99049 0x3fc139f0cedaf576, 0xbfefb5797195d741, // 0.13458, -0.9909 0x3fc0d64dbcb26786, 0xbfefb8d18d66adb7, // 0.13154, -0.99131 0x3fc072a047ba831d, 0xbfefbc1617e44186, // 0.1285, -0.99171 0x3fc00ee8ad6fb85b, 0xbfefbf470f0a8d88, // 0.12545, -0.9921 0x3fbf564e56a9730e, 0xbfefc26470e19fd3, // 0.12241, -0.99248 0x3fbe8eb7fde4aa3e, 0xbfefc56e3b7d9af6, // 0.11937, -0.99285 0x3fbdc70ecbae9fc8, 0xbfefc8646cfeb721, // 0.11632, -0.99321 0x3fbcff533b307dc1, 0xbfefcb4703914354, // 0.11327, -0.99356 0x3fbc3785c79ec2d5, 0xbfefce15fd6da67b, // 0.11022, -0.99391 0x3fbb6fa6ec38f64c, 0xbfefd0d158d86087, // 0.10717, -0.99424 0x3fbaa7b724495c04, 0xbfefd37914220b84, // 0.10412, -0.99456 0x3fb9dfb6eb24a85c, 0xbfefd60d2da75c9e, // 0.10107, -0.99488 0x3fb917a6bc29b42c, 0xbfefd88da3d12526, // 0.098017, -0.99518 0x3fb84f8712c130a0, 0xbfefdafa7514538c, // 0.094963, -0.99548 0x3fb787586a5d5b21, 0xbfefdd539ff1f456, // 0.091909, -0.99577 0x3fb6bf1b3e79b129, 0xbfefdf9922f73307, // 0.088854, -0.99604 0x3fb5f6d00a9aa419, 0xbfefe1cafcbd5b09, // 0.085797, -0.99631 0x3fb52e774a4d4d0a, 0xbfefe3e92be9d886, // 0.08274, -0.99657 0x3fb4661179272096, 0xbfefe5f3af2e3940, // 0.079682, -0.99682 0x3fb39d9f12c5a299, 0xbfefe7ea85482d60, // 0.076624, -0.99706 0x3fb2d52092ce19f6, 0xbfefe9cdad01883a, // 0.073565, -0.99729 0x3fb20c9674ed444c, 0xbfefeb9d2530410f, // 0.070505, -0.99751 0x3fb1440134d709b2, 0xbfefed58ecb673c4, // 0.067444, -0.99772 0x3fb07b614e463064, 0xbfefef0102826191, // 0.064383, -0.99793 0x3faf656e79f820e0, 0xbfeff095658e71ad, // 0.061321, -0.99812 0x3fadd406f9808ec8, 0xbfeff21614e131ed, // 0.058258, -0.9983 0x3fac428d12c0d7e3, 0xbfeff3830f8d575c, // 0.055195, -0.99848 0x3faab101bd5f8317, 0xbfeff4dc54b1bed3, // 0.052132, -0.99864 0x3fa91f65f10dd814, 0xbfeff621e3796d7e, // 0.049068, -0.9988 0x3fa78dbaa5874685, 0xbfeff753bb1b9164, // 0.046003, -0.99894 0x3fa5fc00d290cd43, 0xbfeff871dadb81df, // 0.042938, -0.99908 0x3fa46a396ff86179, 0xbfeff97c4208c014, // 0.039873, -0.9992 0x3fa2d865759455cd, 0xbfeffa72effef75d, // 0.036807, -0.99932 0x3fa14685db42c17e, 0xbfeffb55e425fdae, // 0.033741, -0.99943 0x3f9f693731d1cf01, 0xbfeffc251df1d3f8, // 0.030675, -0.99953 0x3f9c454f4ce53b1c, 0xbfeffce09ce2a679, // 0.027608, -0.99962 0x3f992155f7a3667e, 0xbfeffd886084cd0d, // 0.024541, -0.9997 0x3f95fd4d21fab226, 0xbfeffe1c6870cb77, // 0.021474, -0.99977 0x3f92d936bbe30efd, 0xbfeffe9cb44b51a1, // 0.018407, -0.99983 0x3f8f6a296ab997ca, 0xbfefff0943c53bd1, // 0.015339, -0.99988 0x3f8921d1fcdec784, 0xbfefff62169b92db, // 0.012272, -0.99992 0x3f82d96b0e509703, 0xbfefffa72c978c4f, //0.0092038, -0.99996 0x3f7921f0fe670071, 0xbfefffd8858e8a92, //0.0061359, -0.99998 0x3f6921f8becca4ba, 0xbfeffff621621d02, // 0.003068, -1 }; const uint64_t twiddleCoefF64_rfft_4096[4096] ARM_DSP_TABLE_ATTRIBUTE = { 0x0000000000000000, 0x3ff0000000000000, // 0, 1 0x3f5921faaee6472d, 0x3feffffd88586ee6, // 0.001534, 1 0x3f6921f8becca4ba, 0x3feffff621621d02, // 0.003068, 1 0x3f72d97822f996bc, 0x3fefffe9cb1e2e8d, //0.0046019, 0.99999 0x3f7921f0fe670071, 0x3fefffd8858e8a92, //0.0061359, 0.99998 0x3f7f6a65f9a2a3c5, 0x3fefffc250b5daef, //0.0076698, 0.99997 0x3f82d96b0e509703, 0x3fefffa72c978c4f, //0.0092038, 0.99996 0x3f85fda037ac05e0, 0x3fefff871937ce2f, // 0.010738, 0.99994 0x3f8921d1fcdec784, 0x3fefff62169b92db, // 0.012272, 0.99992 0x3f8c45ffe1e48ad9, 0x3fefff3824c88f6f, // 0.013805, 0.9999 0x3f8f6a296ab997ca, 0x3fefff0943c53bd1, // 0.015339, 0.99988 0x3f9147270dad7132, 0x3feffed57398d2b7, // 0.016873, 0.99986 0x3f92d936bbe30efd, 0x3feffe9cb44b51a1, // 0.018407, 0.99983 0x3f946b4381fce81c, 0x3feffe5f05e578db, // 0.01994, 0.9998 0x3f95fd4d21fab226, 0x3feffe1c6870cb77, // 0.021474, 0.99977 0x3f978f535ddc9f03, 0x3feffdd4dbf78f52, // 0.023008, 0.99974 0x3f992155f7a3667e, 0x3feffd886084cd0d, // 0.024541, 0.9997 0x3f9ab354b1504fca, 0x3feffd36f624500c, // 0.026075, 0.99966 0x3f9c454f4ce53b1c, 0x3feffce09ce2a679, // 0.027608, 0.99962 0x3f9dd7458c64ab39, 0x3feffc8554cd213a, // 0.029142, 0.99958 0x3f9f693731d1cf01, 0x3feffc251df1d3f8, // 0.030675, 0.99953 0x3fa07d91ff984580, 0x3feffbbff85f9515, // 0.032208, 0.99948 0x3fa14685db42c17e, 0x3feffb55e425fdae, // 0.033741, 0.99943 0x3fa20f770ceb11c6, 0x3feffae6e1556998, // 0.035274, 0.99938 0x3fa2d865759455cd, 0x3feffa72effef75d, // 0.036807, 0.99932 0x3fa3a150f6421afc, 0x3feff9fa10348837, // 0.03834, 0.99926 0x3fa46a396ff86179, 0x3feff97c4208c014, // 0.039873, 0.9992 0x3fa5331ec3bba0eb, 0x3feff8f9858f058b, // 0.041406, 0.99914 0x3fa5fc00d290cd43, 0x3feff871dadb81df, // 0.042938, 0.99908 0x3fa6c4df7d7d5b84, 0x3feff7e5420320f9, // 0.044471, 0.99901 0x3fa78dbaa5874685, 0x3feff753bb1b9164, // 0.046003, 0.99894 0x3fa856922bb513c1, 0x3feff6bd463b444d, // 0.047535, 0.99887 0x3fa91f65f10dd814, 0x3feff621e3796d7e, // 0.049068, 0.9988 0x3fa9e835d6993c87, 0x3feff58192ee0358, // 0.0506, 0.99872 0x3faab101bd5f8317, 0x3feff4dc54b1bed3, // 0.052132, 0.99864 0x3fab79c986698b78, 0x3feff43228de1b77, // 0.053664, 0.99856 0x3fac428d12c0d7e3, 0x3feff3830f8d575c, // 0.055195, 0.99848 0x3fad0b4c436f91d0, 0x3feff2cf08da7321, // 0.056727, 0.99839 0x3fadd406f9808ec8, 0x3feff21614e131ed, // 0.058258, 0.9983 0x3fae9cbd15ff5527, 0x3feff15833be1965, // 0.05979, 0.99821 0x3faf656e79f820e0, 0x3feff095658e71ad, // 0.061321, 0.99812 0x3fb0170d833bf421, 0x3fefefcdaa704562, // 0.062852, 0.99802 0x3fb07b614e463064, 0x3fefef0102826191, // 0.064383, 0.99793 0x3fb0dfb28ea201e6, 0x3fefee2f6de455ba, // 0.065913, 0.99783 0x3fb1440134d709b2, 0x3fefed58ecb673c4, // 0.067444, 0.99772 0x3fb1a84d316d4f8a, 0x3fefec7d7f19cffc, // 0.068974, 0.99762 0x3fb20c9674ed444c, 0x3fefeb9d2530410f, // 0.070505, 0.99751 0x3fb270dcefdfc45b, 0x3fefeab7df1c6005, // 0.072035, 0.9974 0x3fb2d52092ce19f6, 0x3fefe9cdad01883a, // 0.073565, 0.99729 0x3fb339614e41ffa5, 0x3fefe8de8f03d75c, // 0.075094, 0.99718 0x3fb39d9f12c5a299, 0x3fefe7ea85482d60, // 0.076624, 0.99706 0x3fb401d9d0e3a507, 0x3fefe6f18ff42c84, // 0.078153, 0.99694 0x3fb4661179272096, 0x3fefe5f3af2e3940, // 0.079682, 0.99682 0x3fb4ca45fc1ba8b6, 0x3fefe4f0e31d7a4a, // 0.081211, 0.9967 0x3fb52e774a4d4d0a, 0x3fefe3e92be9d886, // 0.08274, 0.99657 0x3fb592a554489bc8, 0x3fefe2dc89bbff08, // 0.084269, 0.99644 0x3fb5f6d00a9aa419, 0x3fefe1cafcbd5b09, // 0.085797, 0.99631 0x3fb65af75dd0f87b, 0x3fefe0b485181be3, // 0.087326, 0.99618 0x3fb6bf1b3e79b129, 0x3fefdf9922f73307, // 0.088854, 0.99604 0x3fb7233b9d236e71, 0x3fefde78d68653fd, // 0.090381, 0.99591 0x3fb787586a5d5b21, 0x3fefdd539ff1f456, // 0.091909, 0.99577 0x3fb7eb7196b72ee4, 0x3fefdc297f674ba9, // 0.093436, 0.99563 0x3fb84f8712c130a0, 0x3fefdafa7514538c, // 0.094963, 0.99548 0x3fb8b398cf0c38e0, 0x3fefd9c68127c78c, // 0.09649, 0.99533 0x3fb917a6bc29b42c, 0x3fefd88da3d12526, // 0.098017, 0.99518 0x3fb97bb0caaba56f, 0x3fefd74fdd40abbf, // 0.099544, 0.99503 0x3fb9dfb6eb24a85c, 0x3fefd60d2da75c9e, // 0.10107, 0.99488 0x3fba43b90e27f3c4, 0x3fefd4c59536fae4, // 0.1026, 0.99472 0x3fbaa7b724495c04, 0x3fefd37914220b84, // 0.10412, 0.99456 0x3fbb0bb11e1d5559, 0x3fefd227aa9bd53b, // 0.10565, 0.9944 0x3fbb6fa6ec38f64c, 0x3fefd0d158d86087, // 0.10717, 0.99424 0x3fbbd3987f31fa0e, 0x3fefcf761f0c77a3, // 0.1087, 0.99407 0x3fbc3785c79ec2d5, 0x3fefce15fd6da67b, // 0.11022, 0.99391 0x3fbc9b6eb6165c42, 0x3fefccb0f4323aa3, // 0.11175, 0.99374 0x3fbcff533b307dc1, 0x3fefcb4703914354, // 0.11327, 0.99356 0x3fbd633347858ce4, 0x3fefc9d82bc2915e, // 0.11479, 0.99339 0x3fbdc70ecbae9fc8, 0x3fefc8646cfeb721, // 0.11632, 0.99321 0x3fbe2ae5b8457f77, 0x3fefc6ebc77f0887, // 0.11784, 0.99303 0x3fbe8eb7fde4aa3e, 0x3fefc56e3b7d9af6, // 0.11937, 0.99285 0x3fbef2858d27561b, 0x3fefc3ebc935454c, // 0.12089, 0.99267 0x3fbf564e56a9730e, 0x3fefc26470e19fd3, // 0.12241, 0.99248 0x3fbfba124b07ad85, 0x3fefc0d832bf043a, // 0.12393, 0.99229 0x3fc00ee8ad6fb85b, 0x3fefbf470f0a8d88, // 0.12545, 0.9921 0x3fc040c5bb67747e, 0x3fefbdb106021816, // 0.12698, 0.99191 0x3fc072a047ba831d, 0x3fefbc1617e44186, // 0.1285, 0.99171 0x3fc0a4784ab8bf1d, 0x3fefba7644f068b5, // 0.13002, 0.99151 0x3fc0d64dbcb26786, 0x3fefb8d18d66adb7, // 0.13154, 0.99131 0x3fc1082095f820b0, 0x3fefb727f187f1c7, // 0.13306, 0.99111 0x3fc139f0cedaf576, 0x3fefb5797195d741, // 0.13458, 0.9909 0x3fc16bbe5fac5865, 0x3fefb3c60dd2c199, // 0.1361, 0.9907 0x3fc19d8940be24e7, 0x3fefb20dc681d54d, // 0.13762, 0.99049 0x3fc1cf516a62a077, 0x3fefb0509be6f7db, // 0.13914, 0.99027 0x3fc20116d4ec7bce, 0x3fefae8e8e46cfbb, // 0.14066, 0.99006 0x3fc232d978aed413, 0x3fefacc79de6c44f, // 0.14218, 0.98984 0x3fc264994dfd340a, 0x3fefaafbcb0cfddc, // 0.1437, 0.98962 0x3fc296564d2b953e, 0x3fefa92b1600657c, // 0.14521, 0.9894 0x3fc2c8106e8e613a, 0x3fefa7557f08a517, // 0.14673, 0.98918 0x3fc2f9c7aa7a72af, 0x3fefa57b066e2754, // 0.14825, 0.98895 0x3fc32b7bf94516a7, 0x3fefa39bac7a1791, // 0.14976, 0.98872 0x3fc35d2d53440db2, 0x3fefa1b7717661d5, // 0.15128, 0.98849 0x3fc38edbb0cd8d14, 0x3fef9fce55adb2c8, // 0.1528, 0.98826 0x3fc3c0870a383ff6, 0x3fef9de0596b77a3, // 0.15431, 0.98802 0x3fc3f22f57db4893, 0x3fef9bed7cfbde29, // 0.15583, 0.98778 0x3fc423d4920e4166, 0x3fef99f5c0abd496, // 0.15734, 0.98754 0x3fc45576b1293e5a, 0x3fef97f924c9099b, // 0.15886, 0.9873 0x3fc48715ad84cdf5, 0x3fef95f7a9a1ec47, // 0.16037, 0.98706 0x3fc4b8b17f79fa88, 0x3fef93f14f85ac08, // 0.16189, 0.98681 0x3fc4ea4a1f624b61, 0x3fef91e616c43891, // 0.1634, 0.98656 0x3fc51bdf8597c5f2, 0x3fef8fd5ffae41db, // 0.16491, 0.98631 0x3fc54d71aa74ef02, 0x3fef8dc10a95380d, // 0.16643, 0.98605 0x3fc57f008654cbde, 0x3fef8ba737cb4b78, // 0.16794, 0.9858 0x3fc5b08c1192e381, 0x3fef898887a36c84, // 0.16945, 0.98554 0x3fc5e214448b3fc6, 0x3fef8764fa714ba9, // 0.17096, 0.98528 0x3fc61399179a6e94, 0x3fef853c9089595e, // 0.17247, 0.98501 0x3fc6451a831d830d, 0x3fef830f4a40c60c, // 0.17398, 0.98475 0x3fc676987f7216b8, 0x3fef80dd27ed8204, // 0.17549, 0.98448 0x3fc6a81304f64ab2, 0x3fef7ea629e63d6e, // 0.177, 0.98421 0x3fc6d98a0c08c8da, 0x3fef7c6a50826840, // 0.17851, 0.98394 0x3fc70afd8d08c4ff, 0x3fef7a299c1a322a, // 0.18002, 0.98366 0x3fc73c6d8055fe0a, 0x3fef77e40d068a90, // 0.18153, 0.98339 0x3fc76dd9de50bf31, 0x3fef7599a3a12077, // 0.18304, 0.98311 0x3fc79f429f59e11d, 0x3fef734a60446279, // 0.18455, 0.98282 0x3fc7d0a7bbd2cb1b, 0x3fef70f6434b7eb7, // 0.18606, 0.98254 0x3fc802092c1d744b, 0x3fef6e9d4d1262ca, // 0.18756, 0.98225 0x3fc83366e89c64c5, 0x3fef6c3f7df5bbb7, // 0.18907, 0.98196 0x3fc864c0e9b2b6cf, 0x3fef69dcd652f5de, // 0.19057, 0.98167 0x3fc8961727c41804, 0x3fef677556883cee, // 0.19208, 0.98138 0x3fc8c7699b34ca7e, 0x3fef6508fef47bd5, // 0.19359, 0.98108 0x3fc8f8b83c69a60a, 0x3fef6297cff75cb0, // 0.19509, 0.98079 0x3fc92a0303c8194f, 0x3fef6021c9f148c2, // 0.19659, 0.98048 0x3fc95b49e9b62af9, 0x3fef5da6ed43685d, // 0.1981, 0.98018 0x3fc98c8ce69a7aec, 0x3fef5b273a4fa2d9, // 0.1996, 0.97988 0x3fc9bdcbf2dc4366, 0x3fef58a2b1789e84, // 0.2011, 0.97957 0x3fc9ef0706e35a35, 0x3fef56195321c090, // 0.20261, 0.97926 0x3fca203e1b1831da, 0x3fef538b1faf2d07, // 0.20411, 0.97895 0x3fca517127e3dabc, 0x3fef50f81785c6b9, // 0.20561, 0.97863 0x3fca82a025b00451, 0x3fef4e603b0b2f2d, // 0.20711, 0.97832 0x3fcab3cb0ce6fe44, 0x3fef4bc38aa5c694, // 0.20861, 0.978 0x3fcae4f1d5f3b9ab, 0x3fef492206bcabb4, // 0.21011, 0.97768 0x3fcb16147941ca2a, 0x3fef467bafb7bbe0, // 0.21161, 0.97735 0x3fcb4732ef3d6722, 0x3fef43d085ff92dd, // 0.21311, 0.97703 0x3fcb784d30536cda, 0x3fef412089fd8adc, // 0.21461, 0.9767 0x3fcba96334f15dad, 0x3fef3e6bbc1bbc65, // 0.21611, 0.97637 0x3fcbda74f5856330, 0x3fef3bb21cc4fe47, // 0.2176, 0.97604 0x3fcc0b826a7e4f63, 0x3fef38f3ac64e589, // 0.2191, 0.9757 0x3fcc3c8b8c4b9dd7, 0x3fef36306b67c556, // 0.2206, 0.97536 0x3fcc6d90535d74dc, 0x3fef33685a3aaef0, // 0.22209, 0.97503 0x3fcc9e90b824a6a9, 0x3fef309b794b719f, // 0.22359, 0.97468 0x3fcccf8cb312b286, 0x3fef2dc9c9089a9d, // 0.22508, 0.97434 0x3fcd00843c99c5f9, 0x3fef2af349e17507, // 0.22658, 0.97399 0x3fcd31774d2cbdee, 0x3fef2817fc4609ce, // 0.22807, 0.97364 0x3fcd6265dd3f27e3, 0x3fef2537e0a71f9f, // 0.22957, 0.97329 0x3fcd934fe5454311, 0x3fef2252f7763ada, // 0.23106, 0.97294 0x3fcdc4355db40195, 0x3fef1f6941259d7a, // 0.23255, 0.97258 0x3fcdf5163f01099a, 0x3fef1c7abe284708, // 0.23404, 0.97223 0x3fce25f281a2b684, 0x3fef19876ef1f486, // 0.23553, 0.97187 0x3fce56ca1e101a1b, 0x3fef168f53f7205d, // 0.23702, 0.9715 0x3fce879d0cc0fdaf, 0x3fef13926dad024e, // 0.23851, 0.97114 0x3fceb86b462de348, 0x3fef1090bc898f5f, // 0.24, 0.97077 0x3fcee934c2d006c7, 0x3fef0d8a410379c5, // 0.24149, 0.9704 0x3fcf19f97b215f1a, 0x3fef0a7efb9230d7, // 0.24298, 0.97003 0x3fcf4ab9679c9f5c, 0x3fef076eecade0fa, // 0.24447, 0.96966 0x3fcf7b7480bd3801, 0x3fef045a14cf738c, // 0.24596, 0.96928 0x3fcfac2abeff57ff, 0x3fef014074708ed3, // 0.24744, 0.9689 0x3fcfdcdc1adfedf8, 0x3feefe220c0b95ec, // 0.24893, 0.96852 0x3fd006c4466e54af, 0x3feefafedc1ba8b7, // 0.25041, 0.96814 0x3fd01f1806b9fdd2, 0x3feef7d6e51ca3c0, // 0.2519, 0.96775 0x3fd037694a928cac, 0x3feef4aa278b2032, // 0.25338, 0.96737 0x3fd04fb80e37fdae, 0x3feef178a3e473c2, // 0.25487, 0.96698 0x3fd068044deab002, 0x3feeee425aa6b09a, // 0.25635, 0.96658 0x3fd0804e05eb661e, 0x3feeeb074c50a544, // 0.25783, 0.96619 0x3fd09895327b465e, 0x3feee7c77961dc9e, // 0.25931, 0.96579 0x3fd0b0d9cfdbdb90, 0x3feee482e25a9dbc, // 0.26079, 0.96539 0x3fd0c91bda4f158d, 0x3feee13987bbebdc, // 0.26227, 0.96499 0x3fd0e15b4e1749cd, 0x3feeddeb6a078651, // 0.26375, 0.96459 0x3fd0f998277733f7, 0x3feeda9889bfe86a, // 0.26523, 0.96418 0x3fd111d262b1f677, 0x3feed740e7684963, // 0.26671, 0.96378 0x3fd12a09fc0b1b12, 0x3feed3e483849c51, // 0.26819, 0.96337 0x3fd1423eefc69378, 0x3feed0835e999009, // 0.26967, 0.96295 0x3fd15a713a28b9d9, 0x3feecd1d792c8f10, // 0.27115, 0.96254 0x3fd172a0d7765177, 0x3feec9b2d3c3bf84, // 0.27262, 0.96212 0x3fd18acdc3f4873a, 0x3feec6436ee60309, // 0.2741, 0.9617 0x3fd1a2f7fbe8f243, 0x3feec2cf4b1af6b2, // 0.27557, 0.96128 0x3fd1bb1f7b999480, 0x3feebf5668eaf2ef, // 0.27705, 0.96086 0x3fd1d3443f4cdb3d, 0x3feebbd8c8df0b74, // 0.27852, 0.96043 0x3fd1eb6643499fbb, 0x3feeb8566b810f2a, // 0.27999, 0.96 0x3fd2038583d727bd, 0x3feeb4cf515b8811, // 0.28146, 0.95957 0x3fd21ba1fd3d2623, 0x3feeb1437af9bb34, // 0.28294, 0.95914 0x3fd233bbabc3bb72, 0x3feeadb2e8e7a88e, // 0.28441, 0.9587 0x3fd24bd28bb37672, 0x3feeaa1d9bb20af3, // 0.28588, 0.95827 0x3fd263e6995554ba, 0x3feea68393e65800, // 0.28735, 0.95783 0x3fd27bf7d0f2c346, 0x3feea2e4d212c000, // 0.28882, 0.95738 0x3fd294062ed59f05, 0x3fee9f4156c62dda, // 0.29028, 0.95694 0x3fd2ac11af483572, 0x3fee9b99229046f8, // 0.29175, 0.95649 0x3fd2c41a4e954520, 0x3fee97ec36016b30, // 0.29322, 0.95605 0x3fd2dc200907fe51, 0x3fee943a91aab4b4, // 0.29469, 0.95559 0x3fd2f422daec0386, 0x3fee9084361df7f3, // 0.29615, 0.95514 0x3fd30c22c08d6a13, 0x3fee8cc923edc388, // 0.29762, 0.95469 0x3fd3241fb638baaf, 0x3fee89095bad6025, // 0.29908, 0.95423 0x3fd33c19b83af207, 0x3fee8544ddf0d075, // 0.30054, 0.95377 0x3fd35410c2e18152, 0x3fee817bab4cd10d, // 0.30201, 0.95331 0x3fd36c04d27a4edf, 0x3fee7dadc456d850, // 0.30347, 0.95284 0x3fd383f5e353b6aa, 0x3fee79db29a5165a, // 0.30493, 0.95238 0x3fd39be3f1bc8aef, 0x3fee7603dbce74e9, // 0.30639, 0.95191 0x3fd3b3cefa0414b7, 0x3fee7227db6a9744, // 0.30785, 0.95144 0x3fd3cbb6f87a146e, 0x3fee6e472911da27, // 0.30931, 0.95096 0x3fd3e39be96ec271, 0x3fee6a61c55d53a7, // 0.31077, 0.95049 0x3fd3fb7dc932cfa4, 0x3fee6677b0e6d31e, // 0.31222, 0.95001 0x3fd4135c94176602, 0x3fee6288ec48e112, // 0.31368, 0.94953 0x3fd42b38466e2928, 0x3fee5e95781ebf1c, // 0.31514, 0.94905 0x3fd44310dc8936f0, 0x3fee5a9d550467d3, // 0.31659, 0.94856 0x3fd45ae652bb2800, 0x3fee56a083968eb1, // 0.31805, 0.94807 0x3fd472b8a5571054, 0x3fee529f04729ffc, // 0.3195, 0.94759 0x3fd48a87d0b07fd7, 0x3fee4e98d836c0af, // 0.32096, 0.94709 0x3fd4a253d11b82f3, 0x3fee4a8dff81ce5e, // 0.32241, 0.9466 0x3fd4ba1ca2eca31c, 0x3fee467e7af35f23, // 0.32386, 0.94611 0x3fd4d1e24278e76a, 0x3fee426a4b2bc17e, // 0.32531, 0.94561 0x3fd4e9a4ac15d520, 0x3fee3e5170cbfc46, // 0.32676, 0.94511 0x3fd50163dc197047, 0x3fee3a33ec75ce85, // 0.32821, 0.9446 0x3fd5191fceda3c35, 0x3fee3611becbaf69, // 0.32966, 0.9441 0x3fd530d880af3c24, 0x3fee31eae870ce25, // 0.33111, 0.94359 0x3fd5488dedeff3be, 0x3fee2dbf6a0911d9, // 0.33255, 0.94308 0x3fd5604012f467b4, 0x3fee298f4439197a, // 0.334, 0.94257 0x3fd577eeec151e47, 0x3fee255a77a63bb8, // 0.33545, 0.94206 0x3fd58f9a75ab1fdd, 0x3fee212104f686e5, // 0.33689, 0.94154 0x3fd5a742ac0ff78d, 0x3fee1ce2ecd0c0d8, // 0.33833, 0.94103 0x3fd5bee78b9db3b6, 0x3fee18a02fdc66d9, // 0.33978, 0.94051 0x3fd5d68910aee686, 0x3fee1458cec1ad83, // 0.34122, 0.93998 0x3fd5ee27379ea693, 0x3fee100cca2980ac, // 0.34266, 0.93946 0x3fd605c1fcc88f63, 0x3fee0bbc22bd8349, // 0.3441, 0.93893 0x3fd61d595c88c203, 0x3fee0766d9280f54, // 0.34554, 0.9384 0x3fd634ed533be58e, 0x3fee030cee1435b8, // 0.34698, 0.93787 0x3fd64c7ddd3f27c6, 0x3fedfeae622dbe2b, // 0.34842, 0.93734 0x3fd6640af6f03d9e, 0x3fedfa4b3621271d, // 0.34986, 0.9368 0x3fd67b949cad63ca, 0x3fedf5e36a9ba59c, // 0.35129, 0.93627 0x3fd6931acad55f51, 0x3fedf177004b2534, // 0.35273, 0.93573 0x3fd6aa9d7dc77e16, 0x3feded05f7de47da, // 0.35416, 0.93518 0x3fd6c21cb1e39771, 0x3fede890520465ce, // 0.3556, 0.93464 0x3fd6d998638a0cb5, 0x3fede4160f6d8d81, // 0.35703, 0.93409 0x3fd6f1108f1bc9c5, 0x3feddf9730ca837b, // 0.35846, 0.93354 0x3fd7088530fa459e, 0x3feddb13b6ccc23d, // 0.3599, 0.93299 0x3fd71ff6458782ec, 0x3fedd68ba2267a25, // 0.36133, 0.93244 0x3fd73763c9261092, 0x3fedd1fef38a915a, // 0.36276, 0.93188 0x3fd74ecdb8390a3e, 0x3fedcd6dabaca3a5, // 0.36418, 0.93133 0x3fd766340f2418f6, 0x3fedc8d7cb410260, // 0.36561, 0.93077 0x3fd77d96ca4b73a6, 0x3fedc43d52fcb453, // 0.36704, 0.93021 0x3fd794f5e613dfae, 0x3fedbf9e4395759a, // 0.36847, 0.92964 0x3fd7ac515ee2b172, 0x3fedbafa9dc1b78d, // 0.36989, 0.92907 0x3fd7c3a9311dcce7, 0x3fedb6526238a09b, // 0.37132, 0.92851 0x3fd7dafd592ba621, 0x3fedb1a591b20c38, // 0.37274, 0.92794 0x3fd7f24dd37341e3, 0x3fedacf42ce68ab9, // 0.37416, 0.92736 0x3fd8099a9c5c362d, 0x3feda83e348f613b, // 0.37559, 0.92679 0x3fd820e3b04eaac4, 0x3feda383a9668988, // 0.37701, 0.92621 0x3fd838290bb359c8, 0x3fed9ec48c26b1f3, // 0.37843, 0.92563 0x3fd84f6aaaf3903f, 0x3fed9a00dd8b3d46, // 0.37985, 0.92505 0x3fd866a88a792ea0, 0x3fed95389e50429b, // 0.38127, 0.92447 0x3fd87de2a6aea963, 0x3fed906bcf328d46, // 0.38268, 0.92388 0x3fd89518fbff098e, 0x3fed8b9a70ef9cb4, // 0.3841, 0.92329 0x3fd8ac4b86d5ed44, 0x3fed86c48445a450, // 0.38552, 0.9227 0x3fd8c37a439f884f, 0x3fed81ea09f38b63, // 0.38693, 0.92211 0x3fd8daa52ec8a4af, 0x3fed7d0b02b8ecf9, // 0.38835, 0.92151 0x3fd8f1cc44bea329, 0x3fed78276f5617c6, // 0.38976, 0.92092 0x3fd908ef81ef7bd1, 0x3fed733f508c0dff, // 0.39117, 0.92032 0x3fd9200ee2c9be97, 0x3fed6e52a71c8547, // 0.39258, 0.91972 0x3fd9372a63bc93d7, 0x3fed696173c9e68b, // 0.39399, 0.91911 0x3fd94e420137bce3, 0x3fed646bb7574de5, // 0.3954, 0.91851 0x3fd96555b7ab948f, 0x3fed5f7172888a7f, // 0.39681, 0.9179 0x3fd97c6583890fc2, 0x3fed5a72a6221e73, // 0.39822, 0.91729 0x3fd993716141bdfe, 0x3fed556f52e93eb1, // 0.39962, 0.91668 0x3fd9aa794d47c9ee, 0x3fed506779a3d2d9, // 0.40103, 0.91606 0x3fd9c17d440df9f2, 0x3fed4b5b1b187524, // 0.40243, 0.91545 0x3fd9d87d4207b0ab, 0x3fed464a380e7242, // 0.40384, 0.91483 0x3fd9ef7943a8ed8a, 0x3fed4134d14dc93a, // 0.40524, 0.91421 0x3fda067145664d57, 0x3fed3c1ae79f2b4e, // 0.40664, 0.91359 0x3fda1d6543b50ac0, 0x3fed36fc7bcbfbdc, // 0.40804, 0.91296 0x3fda34553b0afee5, 0x3fed31d98e9e503a, // 0.40944, 0.91234 0x3fda4b4127dea1e4, 0x3fed2cb220e0ef9f, // 0.41084, 0.91171 0x3fda622906a70b63, 0x3fed2786335f52fc, // 0.41224, 0.91107 0x3fda790cd3dbf31a, 0x3fed2255c6e5a4e1, // 0.41364, 0.91044 0x3fda8fec8bf5b166, 0x3fed1d20dc40c15c, // 0.41503, 0.90981 0x3fdaa6c82b6d3fc9, 0x3fed17e7743e35dc, // 0.41643, 0.90917 0x3fdabd9faebc3980, 0x3fed12a98fac410c, // 0.41782, 0.90853 0x3fdad473125cdc08, 0x3fed0d672f59d2b9, // 0.41922, 0.90789 0x3fdaeb4252ca07ab, 0x3fed082054168bac, // 0.42061, 0.90724 0x3fdb020d6c7f4009, 0x3fed02d4feb2bd92, // 0.422, 0.9066 0x3fdb18d45bf8aca6, 0x3fecfd852fff6ad4, // 0.42339, 0.90595 0x3fdb2f971db31972, 0x3fecf830e8ce467b, // 0.42478, 0.9053 0x3fdb4655ae2bf757, 0x3fecf2d829f1b40e, // 0.42617, 0.90464 0x3fdb5d1009e15cc0, 0x3feced7af43cc773, // 0.42756, 0.90399 0x3fdb73c62d520624, 0x3fece819488344ce, // 0.42894, 0.90333 0x3fdb8a7814fd5693, 0x3fece2b32799a060, // 0.43033, 0.90267 0x3fdba125bd63583e, 0x3fecdd489254fe65, // 0.43171, 0.90201 0x3fdbb7cf2304bd01, 0x3fecd7d9898b32f6, // 0.43309, 0.90135 0x3fdbce744262deee, 0x3fecd2660e12c1e6, // 0.43448, 0.90068 0x3fdbe51517ffc0d9, 0x3fecccee20c2de9f, // 0.43586, 0.90002 0x3fdbfbb1a05e0edc, 0x3fecc771c2736c09, // 0.43724, 0.89935 0x3fdc1249d8011ee7, 0x3fecc1f0f3fcfc5c, // 0.43862, 0.89867 0x3fdc28ddbb6cf145, 0x3fecbc6bb638d10b, // 0.43999, 0.898 0x3fdc3f6d47263129, 0x3fecb6e20a00da99, // 0.44137, 0.89732 0x3fdc55f877b23537, 0x3fecb153f02fb87d, // 0.44275, 0.89665 0x3fdc6c7f4997000a, 0x3fecabc169a0b901, // 0.44412, 0.89597 0x3fdc8301b95b40c2, 0x3feca62a772fd919, // 0.4455, 0.89528 0x3fdc997fc3865388, 0x3feca08f19b9c449, // 0.44687, 0.8946 0x3fdcaff964a0421d, 0x3fec9aef521bd480, // 0.44824, 0.89391 0x3fdcc66e9931c45d, 0x3fec954b213411f5, // 0.44961, 0.89322 0x3fdcdcdf5dc440ce, 0x3fec8fa287e13305, // 0.45098, 0.89253 0x3fdcf34baee1cd21, 0x3fec89f587029c13, // 0.45235, 0.89184 0x3fdd09b389152ec1, 0x3fec84441f785f61, // 0.45372, 0.89115 0x3fdd2016e8e9db5b, 0x3fec7e8e52233cf3, // 0.45508, 0.89045 0x3fdd3675caebf962, 0x3fec78d41fe4a267, // 0.45645, 0.88975 0x3fdd4cd02ba8609c, 0x3fec7315899eaad7, // 0.45781, 0.88905 0x3fdd632607ac9aa9, 0x3fec6d5290341eb2, // 0.45918, 0.88835 0x3fdd79775b86e389, 0x3fec678b3488739b, // 0.46054, 0.88764 0x3fdd8fc423c62a25, 0x3fec61bf777fcc48, // 0.4619, 0.88693 0x3fdda60c5cfa10d8, 0x3fec5bef59fef85a, // 0.46326, 0.88622 0x3fddbc5003b2edf8, 0x3fec561adceb743e, // 0.46462, 0.88551 0x3fddd28f1481cc58, 0x3fec5042012b6907, // 0.46598, 0.8848 0x3fdde8c98bf86bd6, 0x3fec4a64c7a5ac4c, // 0.46733, 0.88408 0x3fddfeff66a941de, 0x3fec44833141c004, // 0.46869, 0.88336 0x3fde1530a12779f4, 0x3fec3e9d3ee7d262, // 0.47004, 0.88264 0x3fde2b5d3806f63b, 0x3fec38b2f180bdb1, // 0.4714, 0.88192 0x3fde418527dc4ffa, 0x3fec32c449f60831, // 0.47275, 0.8812 0x3fde57a86d3cd824, 0x3fec2cd14931e3f1, // 0.4741, 0.88047 0x3fde6dc704be97e2, 0x3fec26d9f01f2eaf, // 0.47545, 0.87974 0x3fde83e0eaf85113, 0x3fec20de3fa971b0, // 0.4768, 0.87901 0x3fde99f61c817eda, 0x3fec1ade38bce19b, // 0.47815, 0.87828 0x3fdeb00695f25620, 0x3fec14d9dc465e58, // 0.47949, 0.87755 0x3fdec61253e3c61b, 0x3fec0ed12b3372e9, // 0.48084, 0.87681 0x3fdedc1952ef78d5, 0x3fec08c426725549, // 0.48218, 0.87607 0x3fdef21b8fafd3b5, 0x3fec02b2cef1e641, // 0.48353, 0.87533 0x3fdf081906bff7fd, 0x3febfc9d25a1b147, // 0.48487, 0.87459 0x3fdf1e11b4bbc35c, 0x3febf6832b71ec5b, // 0.48621, 0.87384 0x3fdf3405963fd068, 0x3febf064e15377dd, // 0.48755, 0.87309 0x3fdf49f4a7e97729, 0x3febea424837de6d, // 0.48889, 0.87235 0x3fdf5fdee656cda3, 0x3febe41b611154c1, // 0.49023, 0.8716 0x3fdf75c44e26a852, 0x3febddf02cd2b983, // 0.49156, 0.87084 0x3fdf8ba4dbf89aba, 0x3febd7c0ac6f952a, // 0.4929, 0.87009 0x3fdfa1808c6cf7e0, 0x3febd18ce0dc19d6, // 0.49423, 0.86933 0x3fdfb7575c24d2de, 0x3febcb54cb0d2327, // 0.49557, 0.86857 0x3fdfcd2947c1ff57, 0x3febc5186bf8361d, // 0.4969, 0.86781 0x3fdfe2f64be7120f, 0x3febbed7c49380ea, // 0.49823, 0.86705 0x3fdff8be6537615e, 0x3febb892d5d5dad5, // 0.49956, 0.86628 0x3fe00740c82b82e0, 0x3febb249a0b6c40d, // 0.50089, 0.86551 0x3fe0121fe4f56d2c, 0x3febabfc262e6586, // 0.50221, 0.86474 0x3fe01cfc874c3eb7, 0x3feba5aa673590d2, // 0.50354, 0.86397 0x3fe027d6ad83287e, 0x3feb9f5464c5bffc, // 0.50486, 0.8632 0x3fe032ae55edbd95, 0x3feb98fa1fd9155e, // 0.50619, 0.86242 0x3fe03d837edff370, 0x3feb929b996a5b7f, // 0.50751, 0.86165 0x3fe0485626ae221a, 0x3feb8c38d27504e9, // 0.50883, 0.86087 0x3fe053264bad0483, 0x3feb85d1cbf52c02, // 0.51015, 0.86009 0x3fe05df3ec31b8b6, 0x3feb7f6686e792ea, // 0.51147, 0.8593 0x3fe068bf0691c028, 0x3feb78f70449a34b, // 0.51279, 0.85852 0x3fe073879922ffed, 0x3feb728345196e3e, // 0.5141, 0.85773 0x3fe07e4da23bc102, 0x3feb6c0b4a55ac17, // 0.51542, 0.85694 0x3fe089112032b08c, 0x3feb658f14fdbc47, // 0.51673, 0.85615 0x3fe093d2115ee018, 0x3feb5f0ea611a532, // 0.51804, 0.85535 0x3fe09e907417c5e1, 0x3feb5889fe921405, // 0.51936, 0.85456 0x3fe0a94c46b53d0b, 0x3feb52011f805c92, // 0.52067, 0.85376 0x3fe0b405878f85ec, 0x3feb4b7409de7925, // 0.52198, 0.85296 0x3fe0bebc34ff4646, 0x3feb44e2beaf0a61, // 0.52328, 0.85216 0x3fe0c9704d5d898f, 0x3feb3e4d3ef55712, // 0.52459, 0.85136 0x3fe0d421cf03c12b, 0x3feb37b38bb54c09, // 0.5259, 0.85055 0x3fe0ded0b84bc4b5, 0x3feb3115a5f37bf4, // 0.5272, 0.84974 0x3fe0e97d078fd23b, 0x3feb2a738eb51f33, // 0.5285, 0.84893 0x3fe0f426bb2a8e7d, 0x3feb23cd470013b4, // 0.5298, 0.84812 0x3fe0fecdd1770537, 0x3feb1d22cfdadcc6, // 0.5311, 0.84731 0x3fe1097248d0a956, 0x3feb16742a4ca2f5, // 0.5324, 0.84649 0x3fe114141f935545, 0x3feb0fc1575d33db, // 0.5337, 0.84567 0x3fe11eb3541b4b22, 0x3feb090a58150200, // 0.535, 0.84485 0x3fe1294fe4c5350a, 0x3feb024f2d7d24a9, // 0.53629, 0.84403 0x3fe133e9cfee254e, 0x3feafb8fd89f57b6, // 0.53759, 0.84321 0x3fe13e8113f396c1, 0x3feaf4cc5a85fb73, // 0.53888, 0.84238 0x3fe14915af336ceb, 0x3feaee04b43c1474, // 0.54017, 0.84155 0x3fe153a7a00bf453, 0x3feae738e6cd4b67, // 0.54146, 0.84073 0x3fe15e36e4dbe2bc, 0x3feae068f345ecef, // 0.54275, 0.83989 0x3fe168c37c025764, 0x3fead994dab2e979, // 0.54404, 0.83906 0x3fe1734d63dedb49, 0x3fead2bc9e21d511, // 0.54532, 0.83822 0x3fe17dd49ad16161, 0x3feacbe03ea0e73b, // 0.54661, 0.83739 0x3fe188591f3a46e5, 0x3feac4ffbd3efac8, // 0.54789, 0.83655 0x3fe192daef7a5386, 0x3feabe1b1b0b8dac, // 0.54918, 0.83571 0x3fe19d5a09f2b9b8, 0x3feab7325916c0d4, // 0.55046, 0.83486 0x3fe1a7d66d0516e6, 0x3feab045787157ff, // 0.55174, 0.83402 0x3fe1b250171373be, 0x3feaa9547a2cb98e, // 0.55302, 0.83317 0x3fe1bcc706804467, 0x3feaa25f5f5aee60, // 0.55429, 0.83232 0x3fe1c73b39ae68c8, 0x3fea9b66290ea1a3, // 0.55557, 0.83147 0x3fe1d1acaf012cc2, 0x3fea9468d85b20ae, // 0.55685, 0.83062 0x3fe1dc1b64dc4872, 0x3fea8d676e545ad2, // 0.55812, 0.82976 0x3fe1e68759a3e074, 0x3fea8661ec0ee133, // 0.55939, 0.8289 0x3fe1f0f08bbc861b, 0x3fea7f58529fe69d, // 0.56066, 0.82805 0x3fe1fb56f98b37b8, 0x3fea784aa31d3f55, // 0.56193, 0.82718 0x3fe205baa17560d6, 0x3fea7138de9d60f5, // 0.5632, 0.82632 0x3fe2101b81e0da78, 0x3fea6a230637623b, // 0.56447, 0.82546 0x3fe21a799933eb58, 0x3fea63091b02fae2, // 0.56573, 0.82459 0x3fe224d4e5d5482e, 0x3fea5beb1e188375, // 0.567, 0.82372 0x3fe22f2d662c13e1, 0x3fea54c91090f524, // 0.56826, 0.82285 0x3fe23983189fdfd5, 0x3fea4da2f385e997, // 0.56952, 0.82198 0x3fe243d5fb98ac1f, 0x3fea4678c8119ac8, // 0.57078, 0.8211 0x3fe24e260d7ee7c9, 0x3fea3f4a8f4ee2d2, // 0.57204, 0.82023 0x3fe258734cbb7110, 0x3fea38184a593bc6, // 0.5733, 0.81935 0x3fe262bdb7b795a2, 0x3fea30e1fa4cbf81, // 0.57455, 0.81847 0x3fe26d054cdd12df, 0x3fea29a7a0462782, // 0.57581, 0.81758 0x3fe2774a0a961612, 0x3fea22693d62ccb9, // 0.57706, 0.8167 0x3fe2818bef4d3cba, 0x3fea1b26d2c0a75e, // 0.57831, 0.81581 0x3fe28bcaf96d94ba, 0x3fea13e0617e4ec7, // 0.57956, 0.81493 0x3fe2960727629ca8, 0x3fea0c95eabaf937, // 0.58081, 0.81404 0x3fe2a040779843fb, 0x3fea05476f967bb5, // 0.58206, 0.81314 0x3fe2aa76e87aeb58, 0x3fe9fdf4f13149de, // 0.58331, 0.81225 0x3fe2b4aa787764c4, 0x3fe9f69e70ac75bc, // 0.58455, 0.81135 0x3fe2bedb25faf3ea, 0x3fe9ef43ef29af94, // 0.5858, 0.81046 0x3fe2c908ef734e57, 0x3fe9e7e56dcb45bd, // 0.58704, 0.80956 0x3fe2d333d34e9bb7, 0x3fe9e082edb42472, // 0.58828, 0.80866 0x3fe2dd5bcffb7616, 0x3fe9d91c7007d5a6, // 0.58952, 0.80775 0x3fe2e780e3e8ea16, 0x3fe9d1b1f5ea80d6, // 0.59076, 0.80685 0x3fe2f1a30d86773a, 0x3fe9ca438080eadb, // 0.592, 0.80594 0x3fe2fbc24b441015, 0x3fe9c2d110f075c3, // 0.59323, 0.80503 0x3fe305de9b921a94, 0x3fe9bb5aa85f2098, // 0.59447, 0.80412 0x3fe30ff7fce17035, 0x3fe9b3e047f38741, // 0.5957, 0.80321 0x3fe31a0e6da35e44, 0x3fe9ac61f0d4e247, // 0.59693, 0.80229 0x3fe32421ec49a620, 0x3fe9a4dfa42b06b2, // 0.59816, 0.80138 0x3fe32e3277467d6b, 0x3fe99d59631e65d5, // 0.59939, 0.80046 0x3fe338400d0c8e57, 0x3fe995cf2ed80d22, // 0.60062, 0.79954 0x3fe3424aac0ef7d6, 0x3fe98e410881a600, // 0.60184, 0.79861 0x3fe34c5252c14de1, 0x3fe986aef1457594, // 0.60307, 0.79769 0x3fe35656ff9799ae, 0x3fe97f18ea4e5c9e, // 0.60429, 0.79676 0x3fe36058b10659f3, 0x3fe9777ef4c7d742, // 0.60551, 0.79584 0x3fe36a576582831b, 0x3fe96fe111ddfce0, // 0.60673, 0.79491 0x3fe374531b817f8d, 0x3fe9683f42bd7fe1, // 0.60795, 0.79398 0x3fe37e4bd1792fe2, 0x3fe960998893ad8c, // 0.60917, 0.79304 0x3fe3884185dfeb22, 0x3fe958efe48e6dd7, // 0.61038, 0.79211 0x3fe39234372c7f04, 0x3fe9514257dc4335, // 0.6116, 0.79117 0x3fe39c23e3d63029, 0x3fe94990e3ac4a6c, // 0.61281, 0.79023 0x3fe3a6108a54ba58, 0x3fe941db892e3a65, // 0.61402, 0.78929 0x3fe3affa292050b9, 0x3fe93a22499263fc, // 0.61523, 0.78835 0x3fe3b9e0beb19e18, 0x3fe932652609b1cf, // 0.61644, 0.7874 0x3fe3c3c44981c517, 0x3fe92aa41fc5a815, // 0.61765, 0.78646 0x3fe3cda4c80a6076, 0x3fe922df37f8646a, // 0.61885, 0.78551 0x3fe3d78238c58343, 0x3fe91b166fd49da2, // 0.62006, 0.78456 0x3fe3e15c9a2db922, 0x3fe91349c88da398, // 0.62126, 0.7836 0x3fe3eb33eabe0680, 0x3fe90b7943575efe, // 0.62246, 0.78265 0x3fe3f50828f1e8d2, 0x3fe903a4e1665133, // 0.62366, 0.78169 0x3fe3fed9534556d4, 0x3fe8fbcca3ef940d, // 0.62486, 0.78074 0x3fe408a76834c0c0, 0x3fe8f3f08c28d9ac, // 0.62606, 0.77978 0x3fe41272663d108c, 0x3fe8ec109b486c49, // 0.62725, 0.77882 0x3fe41c3a4bdbaa26, 0x3fe8e42cd2852e0a, // 0.62845, 0.77785 0x3fe425ff178e6bb1, 0x3fe8dc45331698cc, // 0.62964, 0.77689 0x3fe42fc0c7d3adbb, 0x3fe8d459be34bdfa, // 0.63083, 0.77592 0x3fe4397f5b2a4380, 0x3fe8cc6a75184655, // 0.63202, 0.77495 0x3fe4433ad0117b1d, 0x3fe8c47758fa71cb, // 0.63321, 0.77398 0x3fe44cf325091dd6, 0x3fe8bc806b151741, // 0.63439, 0.77301 0x3fe456a858917046, 0x3fe8b485aca2a468, // 0.63558, 0.77204 0x3fe4605a692b32a2, 0x3fe8ac871ede1d88, // 0.63676, 0.77106 0x3fe46a095557a0f1, 0x3fe8a484c3031d50, // 0.63794, 0.77008 0x3fe473b51b987347, 0x3fe89c7e9a4dd4ab, // 0.63912, 0.7691 0x3fe47d5dba6fde01, 0x3fe89474a5fb0a84, // 0.6403, 0.76812 0x3fe48703306091fe, 0x3fe88c66e7481ba1, // 0.64148, 0.76714 0x3fe490a57bedbcdf, 0x3fe884555f72fa6b, // 0.64266, 0.76615 0x3fe49a449b9b0938, 0x3fe87c400fba2ebf, // 0.64383, 0.76517 0x3fe4a3e08dec9ed6, 0x3fe87426f95cd5bd, // 0.645, 0.76418 0x3fe4ad79516722f0, 0x3fe86c0a1d9aa195, // 0.64618, 0.76319 0x3fe4b70ee48fb869, 0x3fe863e97db3d95a, // 0.64735, 0.7622 0x3fe4c0a145ec0004, 0x3fe85bc51ae958cc, // 0.64851, 0.7612 0x3fe4ca30740218a3, 0x3fe8539cf67c9029, // 0.64968, 0.76021 0x3fe4d3bc6d589f80, 0x3fe84b7111af83f9, // 0.65085, 0.75921 0x3fe4dd453076b064, 0x3fe843416dc4cce2, // 0.65201, 0.75821 0x3fe4e6cabbe3e5e9, 0x3fe83b0e0bff976e, // 0.65317, 0.75721 0x3fe4f04d0e2859aa, 0x3fe832d6eda3a3e0, // 0.65433, 0.75621 0x3fe4f9cc25cca486, 0x3fe82a9c13f545ff, // 0.65549, 0.7552 0x3fe503480159ded2, 0x3fe8225d803964e5, // 0.65665, 0.75419 0x3fe50cc09f59a09b, 0x3fe81a1b33b57acc, // 0.65781, 0.75319 0x3fe51635fe5601d7, 0x3fe811d52faf94dc, // 0.65896, 0.75218 0x3fe51fa81cd99aa6, 0x3fe8098b756e52fa, // 0.66011, 0.75117 0x3fe52916f96f8388, 0x3fe8013e0638e795, // 0.66127, 0.75015 0x3fe5328292a35596, 0x3fe7f8ece3571771, // 0.66242, 0.74914 0x3fe53beae7012abe, 0x3fe7f0980e113978, // 0.66356, 0.74812 0x3fe5454ff5159dfb, 0x3fe7e83f87b03686, // 0.66471, 0.7471 0x3fe54eb1bb6dcb8f, 0x3fe7dfe3517d8937, // 0.66586, 0.74608 0x3fe5581038975137, 0x3fe7d7836cc33db2, // 0.667, 0.74506 0x3fe5616b6b204e6e, 0x3fe7cf1fdacbf179, // 0.66814, 0.74403 0x3fe56ac35197649e, 0x3fe7c6b89ce2d333, // 0.66928, 0.74301 0x3fe57417ea8bb75c, 0x3fe7be4db453a27c, // 0.67042, 0.74198 0x3fe57d69348cec9f, 0x3fe7b5df226aafb0, // 0.67156, 0.74095 0x3fe586b72e2b2cfd, 0x3fe7ad6ce874dbb6, // 0.67269, 0.73992 0x3fe59001d5f723df, 0x3fe7a4f707bf97d2, // 0.67383, 0.73889 0x3fe599492a81ffbc, 0x3fe79c7d8198e56e, // 0.67496, 0.73785 0x3fe5a28d2a5d7250, 0x3fe79400574f55e4, // 0.67609, 0.73682 0x3fe5abcdd41bb0d8, 0x3fe78b7f8a320a52, // 0.67722, 0.73578 0x3fe5b50b264f7448, 0x3fe782fb1b90b35b, // 0.67835, 0.73474 0x3fe5be451f8bf980, 0x3fe77a730cbb9100, // 0.67948, 0.7337 0x3fe5c77bbe65018c, 0x3fe771e75f037261, // 0.6806, 0.73265 0x3fe5d0af016ed1d4, 0x3fe7695813b9b594, // 0.68172, 0.73161 0x3fe5d9dee73e345c, 0x3fe760c52c304764, // 0.68285, 0.73056 0x3fe5e30b6e6877f3, 0x3fe7582ea9b9a329, // 0.68397, 0.72951 0x3fe5ec3495837074, 0x3fe74f948da8d28d, // 0.68508, 0.72846 0x3fe5f55a5b2576f8, 0x3fe746f6d9516d59, // 0.6862, 0.72741 0x3fe5fe7cbde56a0f, 0x3fe73e558e079942, // 0.68732, 0.72636 0x3fe6079bbc5aadfa, 0x3fe735b0ad2009b2, // 0.68843, 0.7253 0x3fe610b7551d2cde, 0x3fe72d0837efff97, // 0.68954, 0.72425 0x3fe619cf86c55702, 0x3fe7245c2fcd492a, // 0.69065, 0.72319 0x3fe622e44fec22ff, 0x3fe71bac960e41bf, // 0.69176, 0.72213 0x3fe62bf5af2b0dfd, 0x3fe712f96c09d18d, // 0.69287, 0.72107 0x3fe63503a31c1be8, 0x3fe70a42b3176d7a, // 0.69397, 0.72 0x3fe63e0e2a59d7aa, 0x3fe701886c8f16e6, // 0.69508, 0.71894 0x3fe64715437f535b, 0x3fe6f8ca99c95b75, // 0.69618, 0.71787 0x3fe65018ed28287f, 0x3fe6f0093c1f54de, // 0.69728, 0.7168 0x3fe6591925f0783e, 0x3fe6e74454eaa8ae, // 0.69838, 0.71573 0x3fe66215ec74eb91, 0x3fe6de7be585881d, // 0.69947, 0.71466 0x3fe66b0f3f52b386, 0x3fe6d5afef4aafcc, // 0.70057, 0.71358 0x3fe674051d27896c, 0x3fe6cce07395679f, // 0.70166, 0.71251 0x3fe67cf78491af10, 0x3fe6c40d73c18275, // 0.70275, 0.71143 0x3fe685e6742feeef, 0x3fe6bb36f12b5e06, // 0.70385, 0.71035 0x3fe68ed1eaa19c71, 0x3fe6b25ced2fe29c, // 0.70493, 0.70927 0x3fe697b9e686941c, 0x3fe6a97f692c82ea, // 0.70602, 0.70819 0x3fe6a09e667f3bcc, 0x3fe6a09e667f3bcc, // 0.70711, 0.70711 0x3fe6a97f692c82ea, 0x3fe697b9e686941c, // 0.70819, 0.70602 0x3fe6b25ced2fe29c, 0x3fe68ed1eaa19c71, // 0.70927, 0.70493 0x3fe6bb36f12b5e06, 0x3fe685e6742feeef, // 0.71035, 0.70385 0x3fe6c40d73c18275, 0x3fe67cf78491af10, // 0.71143, 0.70275 0x3fe6cce07395679f, 0x3fe674051d27896c, // 0.71251, 0.70166 0x3fe6d5afef4aafcc, 0x3fe66b0f3f52b386, // 0.71358, 0.70057 0x3fe6de7be585881d, 0x3fe66215ec74eb91, // 0.71466, 0.69947 0x3fe6e74454eaa8ae, 0x3fe6591925f0783e, // 0.71573, 0.69838 0x3fe6f0093c1f54de, 0x3fe65018ed28287f, // 0.7168, 0.69728 0x3fe6f8ca99c95b75, 0x3fe64715437f535b, // 0.71787, 0.69618 0x3fe701886c8f16e6, 0x3fe63e0e2a59d7aa, // 0.71894, 0.69508 0x3fe70a42b3176d7a, 0x3fe63503a31c1be8, // 0.72, 0.69397 0x3fe712f96c09d18d, 0x3fe62bf5af2b0dfd, // 0.72107, 0.69287 0x3fe71bac960e41bf, 0x3fe622e44fec22ff, // 0.72213, 0.69176 0x3fe7245c2fcd492a, 0x3fe619cf86c55702, // 0.72319, 0.69065 0x3fe72d0837efff97, 0x3fe610b7551d2cde, // 0.72425, 0.68954 0x3fe735b0ad2009b2, 0x3fe6079bbc5aadfa, // 0.7253, 0.68843 0x3fe73e558e079942, 0x3fe5fe7cbde56a0f, // 0.72636, 0.68732 0x3fe746f6d9516d59, 0x3fe5f55a5b2576f8, // 0.72741, 0.6862 0x3fe74f948da8d28d, 0x3fe5ec3495837074, // 0.72846, 0.68508 0x3fe7582ea9b9a329, 0x3fe5e30b6e6877f3, // 0.72951, 0.68397 0x3fe760c52c304764, 0x3fe5d9dee73e345c, // 0.73056, 0.68285 0x3fe7695813b9b594, 0x3fe5d0af016ed1d4, // 0.73161, 0.68172 0x3fe771e75f037261, 0x3fe5c77bbe65018c, // 0.73265, 0.6806 0x3fe77a730cbb9100, 0x3fe5be451f8bf980, // 0.7337, 0.67948 0x3fe782fb1b90b35b, 0x3fe5b50b264f7448, // 0.73474, 0.67835 0x3fe78b7f8a320a52, 0x3fe5abcdd41bb0d8, // 0.73578, 0.67722 0x3fe79400574f55e4, 0x3fe5a28d2a5d7250, // 0.73682, 0.67609 0x3fe79c7d8198e56e, 0x3fe599492a81ffbc, // 0.73785, 0.67496 0x3fe7a4f707bf97d2, 0x3fe59001d5f723df, // 0.73889, 0.67383 0x3fe7ad6ce874dbb6, 0x3fe586b72e2b2cfd, // 0.73992, 0.67269 0x3fe7b5df226aafb0, 0x3fe57d69348cec9f, // 0.74095, 0.67156 0x3fe7be4db453a27c, 0x3fe57417ea8bb75c, // 0.74198, 0.67042 0x3fe7c6b89ce2d333, 0x3fe56ac35197649e, // 0.74301, 0.66928 0x3fe7cf1fdacbf179, 0x3fe5616b6b204e6e, // 0.74403, 0.66814 0x3fe7d7836cc33db2, 0x3fe5581038975137, // 0.74506, 0.667 0x3fe7dfe3517d8937, 0x3fe54eb1bb6dcb8f, // 0.74608, 0.66586 0x3fe7e83f87b03686, 0x3fe5454ff5159dfb, // 0.7471, 0.66471 0x3fe7f0980e113978, 0x3fe53beae7012abe, // 0.74812, 0.66356 0x3fe7f8ece3571771, 0x3fe5328292a35596, // 0.74914, 0.66242 0x3fe8013e0638e795, 0x3fe52916f96f8388, // 0.75015, 0.66127 0x3fe8098b756e52fa, 0x3fe51fa81cd99aa6, // 0.75117, 0.66011 0x3fe811d52faf94dc, 0x3fe51635fe5601d7, // 0.75218, 0.65896 0x3fe81a1b33b57acc, 0x3fe50cc09f59a09b, // 0.75319, 0.65781 0x3fe8225d803964e5, 0x3fe503480159ded2, // 0.75419, 0.65665 0x3fe82a9c13f545ff, 0x3fe4f9cc25cca486, // 0.7552, 0.65549 0x3fe832d6eda3a3e0, 0x3fe4f04d0e2859aa, // 0.75621, 0.65433 0x3fe83b0e0bff976e, 0x3fe4e6cabbe3e5e9, // 0.75721, 0.65317 0x3fe843416dc4cce2, 0x3fe4dd453076b064, // 0.75821, 0.65201 0x3fe84b7111af83f9, 0x3fe4d3bc6d589f80, // 0.75921, 0.65085 0x3fe8539cf67c9029, 0x3fe4ca30740218a3, // 0.76021, 0.64968 0x3fe85bc51ae958cc, 0x3fe4c0a145ec0004, // 0.7612, 0.64851 0x3fe863e97db3d95a, 0x3fe4b70ee48fb869, // 0.7622, 0.64735 0x3fe86c0a1d9aa195, 0x3fe4ad79516722f0, // 0.76319, 0.64618 0x3fe87426f95cd5bd, 0x3fe4a3e08dec9ed6, // 0.76418, 0.645 0x3fe87c400fba2ebf, 0x3fe49a449b9b0938, // 0.76517, 0.64383 0x3fe884555f72fa6b, 0x3fe490a57bedbcdf, // 0.76615, 0.64266 0x3fe88c66e7481ba1, 0x3fe48703306091fe, // 0.76714, 0.64148 0x3fe89474a5fb0a84, 0x3fe47d5dba6fde01, // 0.76812, 0.6403 0x3fe89c7e9a4dd4ab, 0x3fe473b51b987347, // 0.7691, 0.63912 0x3fe8a484c3031d50, 0x3fe46a095557a0f1, // 0.77008, 0.63794 0x3fe8ac871ede1d88, 0x3fe4605a692b32a2, // 0.77106, 0.63676 0x3fe8b485aca2a468, 0x3fe456a858917046, // 0.77204, 0.63558 0x3fe8bc806b151741, 0x3fe44cf325091dd6, // 0.77301, 0.63439 0x3fe8c47758fa71cb, 0x3fe4433ad0117b1d, // 0.77398, 0.63321 0x3fe8cc6a75184655, 0x3fe4397f5b2a4380, // 0.77495, 0.63202 0x3fe8d459be34bdfa, 0x3fe42fc0c7d3adbb, // 0.77592, 0.63083 0x3fe8dc45331698cc, 0x3fe425ff178e6bb1, // 0.77689, 0.62964 0x3fe8e42cd2852e0a, 0x3fe41c3a4bdbaa26, // 0.77785, 0.62845 0x3fe8ec109b486c49, 0x3fe41272663d108c, // 0.77882, 0.62725 0x3fe8f3f08c28d9ac, 0x3fe408a76834c0c0, // 0.77978, 0.62606 0x3fe8fbcca3ef940d, 0x3fe3fed9534556d4, // 0.78074, 0.62486 0x3fe903a4e1665133, 0x3fe3f50828f1e8d2, // 0.78169, 0.62366 0x3fe90b7943575efe, 0x3fe3eb33eabe0680, // 0.78265, 0.62246 0x3fe91349c88da398, 0x3fe3e15c9a2db922, // 0.7836, 0.62126 0x3fe91b166fd49da2, 0x3fe3d78238c58343, // 0.78456, 0.62006 0x3fe922df37f8646a, 0x3fe3cda4c80a6076, // 0.78551, 0.61885 0x3fe92aa41fc5a815, 0x3fe3c3c44981c517, // 0.78646, 0.61765 0x3fe932652609b1cf, 0x3fe3b9e0beb19e18, // 0.7874, 0.61644 0x3fe93a22499263fc, 0x3fe3affa292050b9, // 0.78835, 0.61523 0x3fe941db892e3a65, 0x3fe3a6108a54ba58, // 0.78929, 0.61402 0x3fe94990e3ac4a6c, 0x3fe39c23e3d63029, // 0.79023, 0.61281 0x3fe9514257dc4335, 0x3fe39234372c7f04, // 0.79117, 0.6116 0x3fe958efe48e6dd7, 0x3fe3884185dfeb22, // 0.79211, 0.61038 0x3fe960998893ad8c, 0x3fe37e4bd1792fe2, // 0.79304, 0.60917 0x3fe9683f42bd7fe1, 0x3fe374531b817f8d, // 0.79398, 0.60795 0x3fe96fe111ddfce0, 0x3fe36a576582831b, // 0.79491, 0.60673 0x3fe9777ef4c7d742, 0x3fe36058b10659f3, // 0.79584, 0.60551 0x3fe97f18ea4e5c9e, 0x3fe35656ff9799ae, // 0.79676, 0.60429 0x3fe986aef1457594, 0x3fe34c5252c14de1, // 0.79769, 0.60307 0x3fe98e410881a600, 0x3fe3424aac0ef7d6, // 0.79861, 0.60184 0x3fe995cf2ed80d22, 0x3fe338400d0c8e57, // 0.79954, 0.60062 0x3fe99d59631e65d5, 0x3fe32e3277467d6b, // 0.80046, 0.59939 0x3fe9a4dfa42b06b2, 0x3fe32421ec49a620, // 0.80138, 0.59816 0x3fe9ac61f0d4e247, 0x3fe31a0e6da35e44, // 0.80229, 0.59693 0x3fe9b3e047f38741, 0x3fe30ff7fce17035, // 0.80321, 0.5957 0x3fe9bb5aa85f2098, 0x3fe305de9b921a94, // 0.80412, 0.59447 0x3fe9c2d110f075c3, 0x3fe2fbc24b441015, // 0.80503, 0.59323 0x3fe9ca438080eadb, 0x3fe2f1a30d86773a, // 0.80594, 0.592 0x3fe9d1b1f5ea80d6, 0x3fe2e780e3e8ea16, // 0.80685, 0.59076 0x3fe9d91c7007d5a6, 0x3fe2dd5bcffb7616, // 0.80775, 0.58952 0x3fe9e082edb42472, 0x3fe2d333d34e9bb7, // 0.80866, 0.58828 0x3fe9e7e56dcb45bd, 0x3fe2c908ef734e57, // 0.80956, 0.58704 0x3fe9ef43ef29af94, 0x3fe2bedb25faf3ea, // 0.81046, 0.5858 0x3fe9f69e70ac75bc, 0x3fe2b4aa787764c4, // 0.81135, 0.58455 0x3fe9fdf4f13149de, 0x3fe2aa76e87aeb58, // 0.81225, 0.58331 0x3fea05476f967bb5, 0x3fe2a040779843fb, // 0.81314, 0.58206 0x3fea0c95eabaf937, 0x3fe2960727629ca8, // 0.81404, 0.58081 0x3fea13e0617e4ec7, 0x3fe28bcaf96d94ba, // 0.81493, 0.57956 0x3fea1b26d2c0a75e, 0x3fe2818bef4d3cba, // 0.81581, 0.57831 0x3fea22693d62ccb9, 0x3fe2774a0a961612, // 0.8167, 0.57706 0x3fea29a7a0462782, 0x3fe26d054cdd12df, // 0.81758, 0.57581 0x3fea30e1fa4cbf81, 0x3fe262bdb7b795a2, // 0.81847, 0.57455 0x3fea38184a593bc6, 0x3fe258734cbb7110, // 0.81935, 0.5733 0x3fea3f4a8f4ee2d2, 0x3fe24e260d7ee7c9, // 0.82023, 0.57204 0x3fea4678c8119ac8, 0x3fe243d5fb98ac1f, // 0.8211, 0.57078 0x3fea4da2f385e997, 0x3fe23983189fdfd5, // 0.82198, 0.56952 0x3fea54c91090f524, 0x3fe22f2d662c13e1, // 0.82285, 0.56826 0x3fea5beb1e188375, 0x3fe224d4e5d5482e, // 0.82372, 0.567 0x3fea63091b02fae2, 0x3fe21a799933eb58, // 0.82459, 0.56573 0x3fea6a230637623b, 0x3fe2101b81e0da78, // 0.82546, 0.56447 0x3fea7138de9d60f5, 0x3fe205baa17560d6, // 0.82632, 0.5632 0x3fea784aa31d3f55, 0x3fe1fb56f98b37b8, // 0.82718, 0.56193 0x3fea7f58529fe69d, 0x3fe1f0f08bbc861b, // 0.82805, 0.56066 0x3fea8661ec0ee133, 0x3fe1e68759a3e074, // 0.8289, 0.55939 0x3fea8d676e545ad2, 0x3fe1dc1b64dc4872, // 0.82976, 0.55812 0x3fea9468d85b20ae, 0x3fe1d1acaf012cc2, // 0.83062, 0.55685 0x3fea9b66290ea1a3, 0x3fe1c73b39ae68c8, // 0.83147, 0.55557 0x3feaa25f5f5aee60, 0x3fe1bcc706804467, // 0.83232, 0.55429 0x3feaa9547a2cb98e, 0x3fe1b250171373be, // 0.83317, 0.55302 0x3feab045787157ff, 0x3fe1a7d66d0516e6, // 0.83402, 0.55174 0x3feab7325916c0d4, 0x3fe19d5a09f2b9b8, // 0.83486, 0.55046 0x3feabe1b1b0b8dac, 0x3fe192daef7a5386, // 0.83571, 0.54918 0x3feac4ffbd3efac8, 0x3fe188591f3a46e5, // 0.83655, 0.54789 0x3feacbe03ea0e73b, 0x3fe17dd49ad16161, // 0.83739, 0.54661 0x3fead2bc9e21d511, 0x3fe1734d63dedb49, // 0.83822, 0.54532 0x3fead994dab2e979, 0x3fe168c37c025764, // 0.83906, 0.54404 0x3feae068f345ecef, 0x3fe15e36e4dbe2bc, // 0.83989, 0.54275 0x3feae738e6cd4b67, 0x3fe153a7a00bf453, // 0.84073, 0.54146 0x3feaee04b43c1474, 0x3fe14915af336ceb, // 0.84155, 0.54017 0x3feaf4cc5a85fb73, 0x3fe13e8113f396c1, // 0.84238, 0.53888 0x3feafb8fd89f57b6, 0x3fe133e9cfee254e, // 0.84321, 0.53759 0x3feb024f2d7d24a9, 0x3fe1294fe4c5350a, // 0.84403, 0.53629 0x3feb090a58150200, 0x3fe11eb3541b4b22, // 0.84485, 0.535 0x3feb0fc1575d33db, 0x3fe114141f935545, // 0.84567, 0.5337 0x3feb16742a4ca2f5, 0x3fe1097248d0a956, // 0.84649, 0.5324 0x3feb1d22cfdadcc6, 0x3fe0fecdd1770537, // 0.84731, 0.5311 0x3feb23cd470013b4, 0x3fe0f426bb2a8e7d, // 0.84812, 0.5298 0x3feb2a738eb51f33, 0x3fe0e97d078fd23b, // 0.84893, 0.5285 0x3feb3115a5f37bf4, 0x3fe0ded0b84bc4b5, // 0.84974, 0.5272 0x3feb37b38bb54c09, 0x3fe0d421cf03c12b, // 0.85055, 0.5259 0x3feb3e4d3ef55712, 0x3fe0c9704d5d898f, // 0.85136, 0.52459 0x3feb44e2beaf0a61, 0x3fe0bebc34ff4646, // 0.85216, 0.52328 0x3feb4b7409de7925, 0x3fe0b405878f85ec, // 0.85296, 0.52198 0x3feb52011f805c92, 0x3fe0a94c46b53d0b, // 0.85376, 0.52067 0x3feb5889fe921405, 0x3fe09e907417c5e1, // 0.85456, 0.51936 0x3feb5f0ea611a532, 0x3fe093d2115ee018, // 0.85535, 0.51804 0x3feb658f14fdbc47, 0x3fe089112032b08c, // 0.85615, 0.51673 0x3feb6c0b4a55ac17, 0x3fe07e4da23bc102, // 0.85694, 0.51542 0x3feb728345196e3e, 0x3fe073879922ffed, // 0.85773, 0.5141 0x3feb78f70449a34b, 0x3fe068bf0691c028, // 0.85852, 0.51279 0x3feb7f6686e792ea, 0x3fe05df3ec31b8b6, // 0.8593, 0.51147 0x3feb85d1cbf52c02, 0x3fe053264bad0483, // 0.86009, 0.51015 0x3feb8c38d27504e9, 0x3fe0485626ae221a, // 0.86087, 0.50883 0x3feb929b996a5b7f, 0x3fe03d837edff370, // 0.86165, 0.50751 0x3feb98fa1fd9155e, 0x3fe032ae55edbd95, // 0.86242, 0.50619 0x3feb9f5464c5bffc, 0x3fe027d6ad83287e, // 0.8632, 0.50486 0x3feba5aa673590d2, 0x3fe01cfc874c3eb7, // 0.86397, 0.50354 0x3febabfc262e6586, 0x3fe0121fe4f56d2c, // 0.86474, 0.50221 0x3febb249a0b6c40d, 0x3fe00740c82b82e0, // 0.86551, 0.50089 0x3febb892d5d5dad5, 0x3fdff8be6537615e, // 0.86628, 0.49956 0x3febbed7c49380ea, 0x3fdfe2f64be7120f, // 0.86705, 0.49823 0x3febc5186bf8361d, 0x3fdfcd2947c1ff57, // 0.86781, 0.4969 0x3febcb54cb0d2327, 0x3fdfb7575c24d2de, // 0.86857, 0.49557 0x3febd18ce0dc19d6, 0x3fdfa1808c6cf7e0, // 0.86933, 0.49423 0x3febd7c0ac6f952a, 0x3fdf8ba4dbf89aba, // 0.87009, 0.4929 0x3febddf02cd2b983, 0x3fdf75c44e26a852, // 0.87084, 0.49156 0x3febe41b611154c1, 0x3fdf5fdee656cda3, // 0.8716, 0.49023 0x3febea424837de6d, 0x3fdf49f4a7e97729, // 0.87235, 0.48889 0x3febf064e15377dd, 0x3fdf3405963fd068, // 0.87309, 0.48755 0x3febf6832b71ec5b, 0x3fdf1e11b4bbc35c, // 0.87384, 0.48621 0x3febfc9d25a1b147, 0x3fdf081906bff7fd, // 0.87459, 0.48487 0x3fec02b2cef1e641, 0x3fdef21b8fafd3b5, // 0.87533, 0.48353 0x3fec08c426725549, 0x3fdedc1952ef78d5, // 0.87607, 0.48218 0x3fec0ed12b3372e9, 0x3fdec61253e3c61b, // 0.87681, 0.48084 0x3fec14d9dc465e58, 0x3fdeb00695f25620, // 0.87755, 0.47949 0x3fec1ade38bce19b, 0x3fde99f61c817eda, // 0.87828, 0.47815 0x3fec20de3fa971b0, 0x3fde83e0eaf85113, // 0.87901, 0.4768 0x3fec26d9f01f2eaf, 0x3fde6dc704be97e2, // 0.87974, 0.47545 0x3fec2cd14931e3f1, 0x3fde57a86d3cd824, // 0.88047, 0.4741 0x3fec32c449f60831, 0x3fde418527dc4ffa, // 0.8812, 0.47275 0x3fec38b2f180bdb1, 0x3fde2b5d3806f63b, // 0.88192, 0.4714 0x3fec3e9d3ee7d262, 0x3fde1530a12779f4, // 0.88264, 0.47004 0x3fec44833141c004, 0x3fddfeff66a941de, // 0.88336, 0.46869 0x3fec4a64c7a5ac4c, 0x3fdde8c98bf86bd6, // 0.88408, 0.46733 0x3fec5042012b6907, 0x3fddd28f1481cc58, // 0.8848, 0.46598 0x3fec561adceb743e, 0x3fddbc5003b2edf8, // 0.88551, 0.46462 0x3fec5bef59fef85a, 0x3fdda60c5cfa10d8, // 0.88622, 0.46326 0x3fec61bf777fcc48, 0x3fdd8fc423c62a25, // 0.88693, 0.4619 0x3fec678b3488739b, 0x3fdd79775b86e389, // 0.88764, 0.46054 0x3fec6d5290341eb2, 0x3fdd632607ac9aa9, // 0.88835, 0.45918 0x3fec7315899eaad7, 0x3fdd4cd02ba8609c, // 0.88905, 0.45781 0x3fec78d41fe4a267, 0x3fdd3675caebf962, // 0.88975, 0.45645 0x3fec7e8e52233cf3, 0x3fdd2016e8e9db5b, // 0.89045, 0.45508 0x3fec84441f785f61, 0x3fdd09b389152ec1, // 0.89115, 0.45372 0x3fec89f587029c13, 0x3fdcf34baee1cd21, // 0.89184, 0.45235 0x3fec8fa287e13305, 0x3fdcdcdf5dc440ce, // 0.89253, 0.45098 0x3fec954b213411f5, 0x3fdcc66e9931c45d, // 0.89322, 0.44961 0x3fec9aef521bd480, 0x3fdcaff964a0421d, // 0.89391, 0.44824 0x3feca08f19b9c449, 0x3fdc997fc3865388, // 0.8946, 0.44687 0x3feca62a772fd919, 0x3fdc8301b95b40c2, // 0.89528, 0.4455 0x3fecabc169a0b901, 0x3fdc6c7f4997000a, // 0.89597, 0.44412 0x3fecb153f02fb87d, 0x3fdc55f877b23537, // 0.89665, 0.44275 0x3fecb6e20a00da99, 0x3fdc3f6d47263129, // 0.89732, 0.44137 0x3fecbc6bb638d10b, 0x3fdc28ddbb6cf145, // 0.898, 0.43999 0x3fecc1f0f3fcfc5c, 0x3fdc1249d8011ee7, // 0.89867, 0.43862 0x3fecc771c2736c09, 0x3fdbfbb1a05e0edc, // 0.89935, 0.43724 0x3fecccee20c2de9f, 0x3fdbe51517ffc0d9, // 0.90002, 0.43586 0x3fecd2660e12c1e6, 0x3fdbce744262deee, // 0.90068, 0.43448 0x3fecd7d9898b32f6, 0x3fdbb7cf2304bd01, // 0.90135, 0.43309 0x3fecdd489254fe65, 0x3fdba125bd63583e, // 0.90201, 0.43171 0x3fece2b32799a060, 0x3fdb8a7814fd5693, // 0.90267, 0.43033 0x3fece819488344ce, 0x3fdb73c62d520624, // 0.90333, 0.42894 0x3feced7af43cc773, 0x3fdb5d1009e15cc0, // 0.90399, 0.42756 0x3fecf2d829f1b40e, 0x3fdb4655ae2bf757, // 0.90464, 0.42617 0x3fecf830e8ce467b, 0x3fdb2f971db31972, // 0.9053, 0.42478 0x3fecfd852fff6ad4, 0x3fdb18d45bf8aca6, // 0.90595, 0.42339 0x3fed02d4feb2bd92, 0x3fdb020d6c7f4009, // 0.9066, 0.422 0x3fed082054168bac, 0x3fdaeb4252ca07ab, // 0.90724, 0.42061 0x3fed0d672f59d2b9, 0x3fdad473125cdc08, // 0.90789, 0.41922 0x3fed12a98fac410c, 0x3fdabd9faebc3980, // 0.90853, 0.41782 0x3fed17e7743e35dc, 0x3fdaa6c82b6d3fc9, // 0.90917, 0.41643 0x3fed1d20dc40c15c, 0x3fda8fec8bf5b166, // 0.90981, 0.41503 0x3fed2255c6e5a4e1, 0x3fda790cd3dbf31a, // 0.91044, 0.41364 0x3fed2786335f52fc, 0x3fda622906a70b63, // 0.91107, 0.41224 0x3fed2cb220e0ef9f, 0x3fda4b4127dea1e4, // 0.91171, 0.41084 0x3fed31d98e9e503a, 0x3fda34553b0afee5, // 0.91234, 0.40944 0x3fed36fc7bcbfbdc, 0x3fda1d6543b50ac0, // 0.91296, 0.40804 0x3fed3c1ae79f2b4e, 0x3fda067145664d57, // 0.91359, 0.40664 0x3fed4134d14dc93a, 0x3fd9ef7943a8ed8a, // 0.91421, 0.40524 0x3fed464a380e7242, 0x3fd9d87d4207b0ab, // 0.91483, 0.40384 0x3fed4b5b1b187524, 0x3fd9c17d440df9f2, // 0.91545, 0.40243 0x3fed506779a3d2d9, 0x3fd9aa794d47c9ee, // 0.91606, 0.40103 0x3fed556f52e93eb1, 0x3fd993716141bdfe, // 0.91668, 0.39962 0x3fed5a72a6221e73, 0x3fd97c6583890fc2, // 0.91729, 0.39822 0x3fed5f7172888a7f, 0x3fd96555b7ab948f, // 0.9179, 0.39681 0x3fed646bb7574de5, 0x3fd94e420137bce3, // 0.91851, 0.3954 0x3fed696173c9e68b, 0x3fd9372a63bc93d7, // 0.91911, 0.39399 0x3fed6e52a71c8547, 0x3fd9200ee2c9be97, // 0.91972, 0.39258 0x3fed733f508c0dff, 0x3fd908ef81ef7bd1, // 0.92032, 0.39117 0x3fed78276f5617c6, 0x3fd8f1cc44bea329, // 0.92092, 0.38976 0x3fed7d0b02b8ecf9, 0x3fd8daa52ec8a4af, // 0.92151, 0.38835 0x3fed81ea09f38b63, 0x3fd8c37a439f884f, // 0.92211, 0.38693 0x3fed86c48445a450, 0x3fd8ac4b86d5ed44, // 0.9227, 0.38552 0x3fed8b9a70ef9cb4, 0x3fd89518fbff098e, // 0.92329, 0.3841 0x3fed906bcf328d46, 0x3fd87de2a6aea963, // 0.92388, 0.38268 0x3fed95389e50429b, 0x3fd866a88a792ea0, // 0.92447, 0.38127 0x3fed9a00dd8b3d46, 0x3fd84f6aaaf3903f, // 0.92505, 0.37985 0x3fed9ec48c26b1f3, 0x3fd838290bb359c8, // 0.92563, 0.37843 0x3feda383a9668988, 0x3fd820e3b04eaac4, // 0.92621, 0.37701 0x3feda83e348f613b, 0x3fd8099a9c5c362d, // 0.92679, 0.37559 0x3fedacf42ce68ab9, 0x3fd7f24dd37341e3, // 0.92736, 0.37416 0x3fedb1a591b20c38, 0x3fd7dafd592ba621, // 0.92794, 0.37274 0x3fedb6526238a09b, 0x3fd7c3a9311dcce7, // 0.92851, 0.37132 0x3fedbafa9dc1b78d, 0x3fd7ac515ee2b172, // 0.92907, 0.36989 0x3fedbf9e4395759a, 0x3fd794f5e613dfae, // 0.92964, 0.36847 0x3fedc43d52fcb453, 0x3fd77d96ca4b73a6, // 0.93021, 0.36704 0x3fedc8d7cb410260, 0x3fd766340f2418f6, // 0.93077, 0.36561 0x3fedcd6dabaca3a5, 0x3fd74ecdb8390a3e, // 0.93133, 0.36418 0x3fedd1fef38a915a, 0x3fd73763c9261092, // 0.93188, 0.36276 0x3fedd68ba2267a25, 0x3fd71ff6458782ec, // 0.93244, 0.36133 0x3feddb13b6ccc23d, 0x3fd7088530fa459e, // 0.93299, 0.3599 0x3feddf9730ca837b, 0x3fd6f1108f1bc9c5, // 0.93354, 0.35846 0x3fede4160f6d8d81, 0x3fd6d998638a0cb5, // 0.93409, 0.35703 0x3fede890520465ce, 0x3fd6c21cb1e39771, // 0.93464, 0.3556 0x3feded05f7de47da, 0x3fd6aa9d7dc77e16, // 0.93518, 0.35416 0x3fedf177004b2534, 0x3fd6931acad55f51, // 0.93573, 0.35273 0x3fedf5e36a9ba59c, 0x3fd67b949cad63ca, // 0.93627, 0.35129 0x3fedfa4b3621271d, 0x3fd6640af6f03d9e, // 0.9368, 0.34986 0x3fedfeae622dbe2b, 0x3fd64c7ddd3f27c6, // 0.93734, 0.34842 0x3fee030cee1435b8, 0x3fd634ed533be58e, // 0.93787, 0.34698 0x3fee0766d9280f54, 0x3fd61d595c88c203, // 0.9384, 0.34554 0x3fee0bbc22bd8349, 0x3fd605c1fcc88f63, // 0.93893, 0.3441 0x3fee100cca2980ac, 0x3fd5ee27379ea693, // 0.93946, 0.34266 0x3fee1458cec1ad83, 0x3fd5d68910aee686, // 0.93998, 0.34122 0x3fee18a02fdc66d9, 0x3fd5bee78b9db3b6, // 0.94051, 0.33978 0x3fee1ce2ecd0c0d8, 0x3fd5a742ac0ff78d, // 0.94103, 0.33833 0x3fee212104f686e5, 0x3fd58f9a75ab1fdd, // 0.94154, 0.33689 0x3fee255a77a63bb8, 0x3fd577eeec151e47, // 0.94206, 0.33545 0x3fee298f4439197a, 0x3fd5604012f467b4, // 0.94257, 0.334 0x3fee2dbf6a0911d9, 0x3fd5488dedeff3be, // 0.94308, 0.33255 0x3fee31eae870ce25, 0x3fd530d880af3c24, // 0.94359, 0.33111 0x3fee3611becbaf69, 0x3fd5191fceda3c35, // 0.9441, 0.32966 0x3fee3a33ec75ce85, 0x3fd50163dc197047, // 0.9446, 0.32821 0x3fee3e5170cbfc46, 0x3fd4e9a4ac15d520, // 0.94511, 0.32676 0x3fee426a4b2bc17e, 0x3fd4d1e24278e76a, // 0.94561, 0.32531 0x3fee467e7af35f23, 0x3fd4ba1ca2eca31c, // 0.94611, 0.32386 0x3fee4a8dff81ce5e, 0x3fd4a253d11b82f3, // 0.9466, 0.32241 0x3fee4e98d836c0af, 0x3fd48a87d0b07fd7, // 0.94709, 0.32096 0x3fee529f04729ffc, 0x3fd472b8a5571054, // 0.94759, 0.3195 0x3fee56a083968eb1, 0x3fd45ae652bb2800, // 0.94807, 0.31805 0x3fee5a9d550467d3, 0x3fd44310dc8936f0, // 0.94856, 0.31659 0x3fee5e95781ebf1c, 0x3fd42b38466e2928, // 0.94905, 0.31514 0x3fee6288ec48e112, 0x3fd4135c94176602, // 0.94953, 0.31368 0x3fee6677b0e6d31e, 0x3fd3fb7dc932cfa4, // 0.95001, 0.31222 0x3fee6a61c55d53a7, 0x3fd3e39be96ec271, // 0.95049, 0.31077 0x3fee6e472911da27, 0x3fd3cbb6f87a146e, // 0.95096, 0.30931 0x3fee7227db6a9744, 0x3fd3b3cefa0414b7, // 0.95144, 0.30785 0x3fee7603dbce74e9, 0x3fd39be3f1bc8aef, // 0.95191, 0.30639 0x3fee79db29a5165a, 0x3fd383f5e353b6aa, // 0.95238, 0.30493 0x3fee7dadc456d850, 0x3fd36c04d27a4edf, // 0.95284, 0.30347 0x3fee817bab4cd10d, 0x3fd35410c2e18152, // 0.95331, 0.30201 0x3fee8544ddf0d075, 0x3fd33c19b83af207, // 0.95377, 0.30054 0x3fee89095bad6025, 0x3fd3241fb638baaf, // 0.95423, 0.29908 0x3fee8cc923edc388, 0x3fd30c22c08d6a13, // 0.95469, 0.29762 0x3fee9084361df7f3, 0x3fd2f422daec0386, // 0.95514, 0.29615 0x3fee943a91aab4b4, 0x3fd2dc200907fe51, // 0.95559, 0.29469 0x3fee97ec36016b30, 0x3fd2c41a4e954520, // 0.95605, 0.29322 0x3fee9b99229046f8, 0x3fd2ac11af483572, // 0.95649, 0.29175 0x3fee9f4156c62dda, 0x3fd294062ed59f05, // 0.95694, 0.29028 0x3feea2e4d212c000, 0x3fd27bf7d0f2c346, // 0.95738, 0.28882 0x3feea68393e65800, 0x3fd263e6995554ba, // 0.95783, 0.28735 0x3feeaa1d9bb20af3, 0x3fd24bd28bb37672, // 0.95827, 0.28588 0x3feeadb2e8e7a88e, 0x3fd233bbabc3bb72, // 0.9587, 0.28441 0x3feeb1437af9bb34, 0x3fd21ba1fd3d2623, // 0.95914, 0.28294 0x3feeb4cf515b8811, 0x3fd2038583d727bd, // 0.95957, 0.28146 0x3feeb8566b810f2a, 0x3fd1eb6643499fbb, // 0.96, 0.27999 0x3feebbd8c8df0b74, 0x3fd1d3443f4cdb3d, // 0.96043, 0.27852 0x3feebf5668eaf2ef, 0x3fd1bb1f7b999480, // 0.96086, 0.27705 0x3feec2cf4b1af6b2, 0x3fd1a2f7fbe8f243, // 0.96128, 0.27557 0x3feec6436ee60309, 0x3fd18acdc3f4873a, // 0.9617, 0.2741 0x3feec9b2d3c3bf84, 0x3fd172a0d7765177, // 0.96212, 0.27262 0x3feecd1d792c8f10, 0x3fd15a713a28b9d9, // 0.96254, 0.27115 0x3feed0835e999009, 0x3fd1423eefc69378, // 0.96295, 0.26967 0x3feed3e483849c51, 0x3fd12a09fc0b1b12, // 0.96337, 0.26819 0x3feed740e7684963, 0x3fd111d262b1f677, // 0.96378, 0.26671 0x3feeda9889bfe86a, 0x3fd0f998277733f7, // 0.96418, 0.26523 0x3feeddeb6a078651, 0x3fd0e15b4e1749cd, // 0.96459, 0.26375 0x3feee13987bbebdc, 0x3fd0c91bda4f158d, // 0.96499, 0.26227 0x3feee482e25a9dbc, 0x3fd0b0d9cfdbdb90, // 0.96539, 0.26079 0x3feee7c77961dc9e, 0x3fd09895327b465e, // 0.96579, 0.25931 0x3feeeb074c50a544, 0x3fd0804e05eb661e, // 0.96619, 0.25783 0x3feeee425aa6b09a, 0x3fd068044deab002, // 0.96658, 0.25635 0x3feef178a3e473c2, 0x3fd04fb80e37fdae, // 0.96698, 0.25487 0x3feef4aa278b2032, 0x3fd037694a928cac, // 0.96737, 0.25338 0x3feef7d6e51ca3c0, 0x3fd01f1806b9fdd2, // 0.96775, 0.2519 0x3feefafedc1ba8b7, 0x3fd006c4466e54af, // 0.96814, 0.25041 0x3feefe220c0b95ec, 0x3fcfdcdc1adfedf8, // 0.96852, 0.24893 0x3fef014074708ed3, 0x3fcfac2abeff57ff, // 0.9689, 0.24744 0x3fef045a14cf738c, 0x3fcf7b7480bd3801, // 0.96928, 0.24596 0x3fef076eecade0fa, 0x3fcf4ab9679c9f5c, // 0.96966, 0.24447 0x3fef0a7efb9230d7, 0x3fcf19f97b215f1a, // 0.97003, 0.24298 0x3fef0d8a410379c5, 0x3fcee934c2d006c7, // 0.9704, 0.24149 0x3fef1090bc898f5f, 0x3fceb86b462de348, // 0.97077, 0.24 0x3fef13926dad024e, 0x3fce879d0cc0fdaf, // 0.97114, 0.23851 0x3fef168f53f7205d, 0x3fce56ca1e101a1b, // 0.9715, 0.23702 0x3fef19876ef1f486, 0x3fce25f281a2b684, // 0.97187, 0.23553 0x3fef1c7abe284708, 0x3fcdf5163f01099a, // 0.97223, 0.23404 0x3fef1f6941259d7a, 0x3fcdc4355db40195, // 0.97258, 0.23255 0x3fef2252f7763ada, 0x3fcd934fe5454311, // 0.97294, 0.23106 0x3fef2537e0a71f9f, 0x3fcd6265dd3f27e3, // 0.97329, 0.22957 0x3fef2817fc4609ce, 0x3fcd31774d2cbdee, // 0.97364, 0.22807 0x3fef2af349e17507, 0x3fcd00843c99c5f9, // 0.97399, 0.22658 0x3fef2dc9c9089a9d, 0x3fcccf8cb312b286, // 0.97434, 0.22508 0x3fef309b794b719f, 0x3fcc9e90b824a6a9, // 0.97468, 0.22359 0x3fef33685a3aaef0, 0x3fcc6d90535d74dc, // 0.97503, 0.22209 0x3fef36306b67c556, 0x3fcc3c8b8c4b9dd7, // 0.97536, 0.2206 0x3fef38f3ac64e589, 0x3fcc0b826a7e4f63, // 0.9757, 0.2191 0x3fef3bb21cc4fe47, 0x3fcbda74f5856330, // 0.97604, 0.2176 0x3fef3e6bbc1bbc65, 0x3fcba96334f15dad, // 0.97637, 0.21611 0x3fef412089fd8adc, 0x3fcb784d30536cda, // 0.9767, 0.21461 0x3fef43d085ff92dd, 0x3fcb4732ef3d6722, // 0.97703, 0.21311 0x3fef467bafb7bbe0, 0x3fcb16147941ca2a, // 0.97735, 0.21161 0x3fef492206bcabb4, 0x3fcae4f1d5f3b9ab, // 0.97768, 0.21011 0x3fef4bc38aa5c694, 0x3fcab3cb0ce6fe44, // 0.978, 0.20861 0x3fef4e603b0b2f2d, 0x3fca82a025b00451, // 0.97832, 0.20711 0x3fef50f81785c6b9, 0x3fca517127e3dabc, // 0.97863, 0.20561 0x3fef538b1faf2d07, 0x3fca203e1b1831da, // 0.97895, 0.20411 0x3fef56195321c090, 0x3fc9ef0706e35a35, // 0.97926, 0.20261 0x3fef58a2b1789e84, 0x3fc9bdcbf2dc4366, // 0.97957, 0.2011 0x3fef5b273a4fa2d9, 0x3fc98c8ce69a7aec, // 0.97988, 0.1996 0x3fef5da6ed43685d, 0x3fc95b49e9b62af9, // 0.98018, 0.1981 0x3fef6021c9f148c2, 0x3fc92a0303c8194f, // 0.98048, 0.19659 0x3fef6297cff75cb0, 0x3fc8f8b83c69a60a, // 0.98079, 0.19509 0x3fef6508fef47bd5, 0x3fc8c7699b34ca7e, // 0.98108, 0.19359 0x3fef677556883cee, 0x3fc8961727c41804, // 0.98138, 0.19208 0x3fef69dcd652f5de, 0x3fc864c0e9b2b6cf, // 0.98167, 0.19057 0x3fef6c3f7df5bbb7, 0x3fc83366e89c64c5, // 0.98196, 0.18907 0x3fef6e9d4d1262ca, 0x3fc802092c1d744b, // 0.98225, 0.18756 0x3fef70f6434b7eb7, 0x3fc7d0a7bbd2cb1b, // 0.98254, 0.18606 0x3fef734a60446279, 0x3fc79f429f59e11d, // 0.98282, 0.18455 0x3fef7599a3a12077, 0x3fc76dd9de50bf31, // 0.98311, 0.18304 0x3fef77e40d068a90, 0x3fc73c6d8055fe0a, // 0.98339, 0.18153 0x3fef7a299c1a322a, 0x3fc70afd8d08c4ff, // 0.98366, 0.18002 0x3fef7c6a50826840, 0x3fc6d98a0c08c8da, // 0.98394, 0.17851 0x3fef7ea629e63d6e, 0x3fc6a81304f64ab2, // 0.98421, 0.177 0x3fef80dd27ed8204, 0x3fc676987f7216b8, // 0.98448, 0.17549 0x3fef830f4a40c60c, 0x3fc6451a831d830d, // 0.98475, 0.17398 0x3fef853c9089595e, 0x3fc61399179a6e94, // 0.98501, 0.17247 0x3fef8764fa714ba9, 0x3fc5e214448b3fc6, // 0.98528, 0.17096 0x3fef898887a36c84, 0x3fc5b08c1192e381, // 0.98554, 0.16945 0x3fef8ba737cb4b78, 0x3fc57f008654cbde, // 0.9858, 0.16794 0x3fef8dc10a95380d, 0x3fc54d71aa74ef02, // 0.98605, 0.16643 0x3fef8fd5ffae41db, 0x3fc51bdf8597c5f2, // 0.98631, 0.16491 0x3fef91e616c43891, 0x3fc4ea4a1f624b61, // 0.98656, 0.1634 0x3fef93f14f85ac08, 0x3fc4b8b17f79fa88, // 0.98681, 0.16189 0x3fef95f7a9a1ec47, 0x3fc48715ad84cdf5, // 0.98706, 0.16037 0x3fef97f924c9099b, 0x3fc45576b1293e5a, // 0.9873, 0.15886 0x3fef99f5c0abd496, 0x3fc423d4920e4166, // 0.98754, 0.15734 0x3fef9bed7cfbde29, 0x3fc3f22f57db4893, // 0.98778, 0.15583 0x3fef9de0596b77a3, 0x3fc3c0870a383ff6, // 0.98802, 0.15431 0x3fef9fce55adb2c8, 0x3fc38edbb0cd8d14, // 0.98826, 0.1528 0x3fefa1b7717661d5, 0x3fc35d2d53440db2, // 0.98849, 0.15128 0x3fefa39bac7a1791, 0x3fc32b7bf94516a7, // 0.98872, 0.14976 0x3fefa57b066e2754, 0x3fc2f9c7aa7a72af, // 0.98895, 0.14825 0x3fefa7557f08a517, 0x3fc2c8106e8e613a, // 0.98918, 0.14673 0x3fefa92b1600657c, 0x3fc296564d2b953e, // 0.9894, 0.14521 0x3fefaafbcb0cfddc, 0x3fc264994dfd340a, // 0.98962, 0.1437 0x3fefacc79de6c44f, 0x3fc232d978aed413, // 0.98984, 0.14218 0x3fefae8e8e46cfbb, 0x3fc20116d4ec7bce, // 0.99006, 0.14066 0x3fefb0509be6f7db, 0x3fc1cf516a62a077, // 0.99027, 0.13914 0x3fefb20dc681d54d, 0x3fc19d8940be24e7, // 0.99049, 0.13762 0x3fefb3c60dd2c199, 0x3fc16bbe5fac5865, // 0.9907, 0.1361 0x3fefb5797195d741, 0x3fc139f0cedaf576, // 0.9909, 0.13458 0x3fefb727f187f1c7, 0x3fc1082095f820b0, // 0.99111, 0.13306 0x3fefb8d18d66adb7, 0x3fc0d64dbcb26786, // 0.99131, 0.13154 0x3fefba7644f068b5, 0x3fc0a4784ab8bf1d, // 0.99151, 0.13002 0x3fefbc1617e44186, 0x3fc072a047ba831d, // 0.99171, 0.1285 0x3fefbdb106021816, 0x3fc040c5bb67747e, // 0.99191, 0.12698 0x3fefbf470f0a8d88, 0x3fc00ee8ad6fb85b, // 0.9921, 0.12545 0x3fefc0d832bf043a, 0x3fbfba124b07ad85, // 0.99229, 0.12393 0x3fefc26470e19fd3, 0x3fbf564e56a9730e, // 0.99248, 0.12241 0x3fefc3ebc935454c, 0x3fbef2858d27561b, // 0.99267, 0.12089 0x3fefc56e3b7d9af6, 0x3fbe8eb7fde4aa3e, // 0.99285, 0.11937 0x3fefc6ebc77f0887, 0x3fbe2ae5b8457f77, // 0.99303, 0.11784 0x3fefc8646cfeb721, 0x3fbdc70ecbae9fc8, // 0.99321, 0.11632 0x3fefc9d82bc2915e, 0x3fbd633347858ce4, // 0.99339, 0.11479 0x3fefcb4703914354, 0x3fbcff533b307dc1, // 0.99356, 0.11327 0x3fefccb0f4323aa3, 0x3fbc9b6eb6165c42, // 0.99374, 0.11175 0x3fefce15fd6da67b, 0x3fbc3785c79ec2d5, // 0.99391, 0.11022 0x3fefcf761f0c77a3, 0x3fbbd3987f31fa0e, // 0.99407, 0.1087 0x3fefd0d158d86087, 0x3fbb6fa6ec38f64c, // 0.99424, 0.10717 0x3fefd227aa9bd53b, 0x3fbb0bb11e1d5559, // 0.9944, 0.10565 0x3fefd37914220b84, 0x3fbaa7b724495c04, // 0.99456, 0.10412 0x3fefd4c59536fae4, 0x3fba43b90e27f3c4, // 0.99472, 0.1026 0x3fefd60d2da75c9e, 0x3fb9dfb6eb24a85c, // 0.99488, 0.10107 0x3fefd74fdd40abbf, 0x3fb97bb0caaba56f, // 0.99503, 0.099544 0x3fefd88da3d12526, 0x3fb917a6bc29b42c, // 0.99518, 0.098017 0x3fefd9c68127c78c, 0x3fb8b398cf0c38e0, // 0.99533, 0.09649 0x3fefdafa7514538c, 0x3fb84f8712c130a0, // 0.99548, 0.094963 0x3fefdc297f674ba9, 0x3fb7eb7196b72ee4, // 0.99563, 0.093436 0x3fefdd539ff1f456, 0x3fb787586a5d5b21, // 0.99577, 0.091909 0x3fefde78d68653fd, 0x3fb7233b9d236e71, // 0.99591, 0.090381 0x3fefdf9922f73307, 0x3fb6bf1b3e79b129, // 0.99604, 0.088854 0x3fefe0b485181be3, 0x3fb65af75dd0f87b, // 0.99618, 0.087326 0x3fefe1cafcbd5b09, 0x3fb5f6d00a9aa419, // 0.99631, 0.085797 0x3fefe2dc89bbff08, 0x3fb592a554489bc8, // 0.99644, 0.084269 0x3fefe3e92be9d886, 0x3fb52e774a4d4d0a, // 0.99657, 0.08274 0x3fefe4f0e31d7a4a, 0x3fb4ca45fc1ba8b6, // 0.9967, 0.081211 0x3fefe5f3af2e3940, 0x3fb4661179272096, // 0.99682, 0.079682 0x3fefe6f18ff42c84, 0x3fb401d9d0e3a507, // 0.99694, 0.078153 0x3fefe7ea85482d60, 0x3fb39d9f12c5a299, // 0.99706, 0.076624 0x3fefe8de8f03d75c, 0x3fb339614e41ffa5, // 0.99718, 0.075094 0x3fefe9cdad01883a, 0x3fb2d52092ce19f6, // 0.99729, 0.073565 0x3fefeab7df1c6005, 0x3fb270dcefdfc45b, // 0.9974, 0.072035 0x3fefeb9d2530410f, 0x3fb20c9674ed444c, // 0.99751, 0.070505 0x3fefec7d7f19cffc, 0x3fb1a84d316d4f8a, // 0.99762, 0.068974 0x3fefed58ecb673c4, 0x3fb1440134d709b2, // 0.99772, 0.067444 0x3fefee2f6de455ba, 0x3fb0dfb28ea201e6, // 0.99783, 0.065913 0x3fefef0102826191, 0x3fb07b614e463064, // 0.99793, 0.064383 0x3fefefcdaa704562, 0x3fb0170d833bf421, // 0.99802, 0.062852 0x3feff095658e71ad, 0x3faf656e79f820e0, // 0.99812, 0.061321 0x3feff15833be1965, 0x3fae9cbd15ff5527, // 0.99821, 0.05979 0x3feff21614e131ed, 0x3fadd406f9808ec8, // 0.9983, 0.058258 0x3feff2cf08da7321, 0x3fad0b4c436f91d0, // 0.99839, 0.056727 0x3feff3830f8d575c, 0x3fac428d12c0d7e3, // 0.99848, 0.055195 0x3feff43228de1b77, 0x3fab79c986698b78, // 0.99856, 0.053664 0x3feff4dc54b1bed3, 0x3faab101bd5f8317, // 0.99864, 0.052132 0x3feff58192ee0358, 0x3fa9e835d6993c87, // 0.99872, 0.0506 0x3feff621e3796d7e, 0x3fa91f65f10dd814, // 0.9988, 0.049068 0x3feff6bd463b444d, 0x3fa856922bb513c1, // 0.99887, 0.047535 0x3feff753bb1b9164, 0x3fa78dbaa5874685, // 0.99894, 0.046003 0x3feff7e5420320f9, 0x3fa6c4df7d7d5b84, // 0.99901, 0.044471 0x3feff871dadb81df, 0x3fa5fc00d290cd43, // 0.99908, 0.042938 0x3feff8f9858f058b, 0x3fa5331ec3bba0eb, // 0.99914, 0.041406 0x3feff97c4208c014, 0x3fa46a396ff86179, // 0.9992, 0.039873 0x3feff9fa10348837, 0x3fa3a150f6421afc, // 0.99926, 0.03834 0x3feffa72effef75d, 0x3fa2d865759455cd, // 0.99932, 0.036807 0x3feffae6e1556998, 0x3fa20f770ceb11c6, // 0.99938, 0.035274 0x3feffb55e425fdae, 0x3fa14685db42c17e, // 0.99943, 0.033741 0x3feffbbff85f9515, 0x3fa07d91ff984580, // 0.99948, 0.032208 0x3feffc251df1d3f8, 0x3f9f693731d1cf01, // 0.99953, 0.030675 0x3feffc8554cd213a, 0x3f9dd7458c64ab39, // 0.99958, 0.029142 0x3feffce09ce2a679, 0x3f9c454f4ce53b1c, // 0.99962, 0.027608 0x3feffd36f624500c, 0x3f9ab354b1504fca, // 0.99966, 0.026075 0x3feffd886084cd0d, 0x3f992155f7a3667e, // 0.9997, 0.024541 0x3feffdd4dbf78f52, 0x3f978f535ddc9f03, // 0.99974, 0.023008 0x3feffe1c6870cb77, 0x3f95fd4d21fab226, // 0.99977, 0.021474 0x3feffe5f05e578db, 0x3f946b4381fce81c, // 0.9998, 0.01994 0x3feffe9cb44b51a1, 0x3f92d936bbe30efd, // 0.99983, 0.018407 0x3feffed57398d2b7, 0x3f9147270dad7132, // 0.99986, 0.016873 0x3fefff0943c53bd1, 0x3f8f6a296ab997ca, // 0.99988, 0.015339 0x3fefff3824c88f6f, 0x3f8c45ffe1e48ad9, // 0.9999, 0.013805 0x3fefff62169b92db, 0x3f8921d1fcdec784, // 0.99992, 0.012272 0x3fefff871937ce2f, 0x3f85fda037ac05e0, // 0.99994, 0.010738 0x3fefffa72c978c4f, 0x3f82d96b0e509703, // 0.99996, 0.0092038 0x3fefffc250b5daef, 0x3f7f6a65f9a2a3c5, // 0.99997, 0.0076698 0x3fefffd8858e8a92, 0x3f7921f0fe670071, // 0.99998, 0.0061359 0x3fefffe9cb1e2e8d, 0x3f72d97822f996bc, // 0.99999, 0.0046019 0x3feffff621621d02, 0x3f6921f8becca4ba, // 1, 0.003068 0x3feffffd88586ee6, 0x3f5921faaee6472d, // 1, 0.001534 0x3ff0000000000000, 0x0000000000000000, // 1, 0 0x3feffffd88586ee6, 0xbf5921faaee6472d, // 1, -0.001534 0x3feffff621621d02, 0xbf6921f8becca4ba, // 1, -0.003068 0x3fefffe9cb1e2e8d, 0xbf72d97822f996bc, // 0.99999,-0.0046019 0x3fefffd8858e8a92, 0xbf7921f0fe670071, // 0.99998,-0.0061359 0x3fefffc250b5daef, 0xbf7f6a65f9a2a3c5, // 0.99997,-0.0076698 0x3fefffa72c978c4f, 0xbf82d96b0e509703, // 0.99996,-0.0092038 0x3fefff871937ce2f, 0xbf85fda037ac05e0, // 0.99994, -0.010738 0x3fefff62169b92db, 0xbf8921d1fcdec784, // 0.99992, -0.012272 0x3fefff3824c88f6f, 0xbf8c45ffe1e48ad9, // 0.9999, -0.013805 0x3fefff0943c53bd1, 0xbf8f6a296ab997ca, // 0.99988, -0.015339 0x3feffed57398d2b7, 0xbf9147270dad7132, // 0.99986, -0.016873 0x3feffe9cb44b51a1, 0xbf92d936bbe30efd, // 0.99983, -0.018407 0x3feffe5f05e578db, 0xbf946b4381fce81c, // 0.9998, -0.01994 0x3feffe1c6870cb77, 0xbf95fd4d21fab226, // 0.99977, -0.021474 0x3feffdd4dbf78f52, 0xbf978f535ddc9f03, // 0.99974, -0.023008 0x3feffd886084cd0d, 0xbf992155f7a3667e, // 0.9997, -0.024541 0x3feffd36f624500c, 0xbf9ab354b1504fca, // 0.99966, -0.026075 0x3feffce09ce2a679, 0xbf9c454f4ce53b1c, // 0.99962, -0.027608 0x3feffc8554cd213a, 0xbf9dd7458c64ab39, // 0.99958, -0.029142 0x3feffc251df1d3f8, 0xbf9f693731d1cf01, // 0.99953, -0.030675 0x3feffbbff85f9515, 0xbfa07d91ff984580, // 0.99948, -0.032208 0x3feffb55e425fdae, 0xbfa14685db42c17e, // 0.99943, -0.033741 0x3feffae6e1556998, 0xbfa20f770ceb11c6, // 0.99938, -0.035274 0x3feffa72effef75d, 0xbfa2d865759455cd, // 0.99932, -0.036807 0x3feff9fa10348837, 0xbfa3a150f6421afc, // 0.99926, -0.03834 0x3feff97c4208c014, 0xbfa46a396ff86179, // 0.9992, -0.039873 0x3feff8f9858f058b, 0xbfa5331ec3bba0eb, // 0.99914, -0.041406 0x3feff871dadb81df, 0xbfa5fc00d290cd43, // 0.99908, -0.042938 0x3feff7e5420320f9, 0xbfa6c4df7d7d5b84, // 0.99901, -0.044471 0x3feff753bb1b9164, 0xbfa78dbaa5874685, // 0.99894, -0.046003 0x3feff6bd463b444d, 0xbfa856922bb513c1, // 0.99887, -0.047535 0x3feff621e3796d7e, 0xbfa91f65f10dd814, // 0.9988, -0.049068 0x3feff58192ee0358, 0xbfa9e835d6993c87, // 0.99872, -0.0506 0x3feff4dc54b1bed3, 0xbfaab101bd5f8317, // 0.99864, -0.052132 0x3feff43228de1b77, 0xbfab79c986698b78, // 0.99856, -0.053664 0x3feff3830f8d575c, 0xbfac428d12c0d7e3, // 0.99848, -0.055195 0x3feff2cf08da7321, 0xbfad0b4c436f91d0, // 0.99839, -0.056727 0x3feff21614e131ed, 0xbfadd406f9808ec8, // 0.9983, -0.058258 0x3feff15833be1965, 0xbfae9cbd15ff5527, // 0.99821, -0.05979 0x3feff095658e71ad, 0xbfaf656e79f820e0, // 0.99812, -0.061321 0x3fefefcdaa704562, 0xbfb0170d833bf421, // 0.99802, -0.062852 0x3fefef0102826191, 0xbfb07b614e463064, // 0.99793, -0.064383 0x3fefee2f6de455ba, 0xbfb0dfb28ea201e6, // 0.99783, -0.065913 0x3fefed58ecb673c4, 0xbfb1440134d709b2, // 0.99772, -0.067444 0x3fefec7d7f19cffc, 0xbfb1a84d316d4f8a, // 0.99762, -0.068974 0x3fefeb9d2530410f, 0xbfb20c9674ed444c, // 0.99751, -0.070505 0x3fefeab7df1c6005, 0xbfb270dcefdfc45b, // 0.9974, -0.072035 0x3fefe9cdad01883a, 0xbfb2d52092ce19f6, // 0.99729, -0.073565 0x3fefe8de8f03d75c, 0xbfb339614e41ffa5, // 0.99718, -0.075094 0x3fefe7ea85482d60, 0xbfb39d9f12c5a299, // 0.99706, -0.076624 0x3fefe6f18ff42c84, 0xbfb401d9d0e3a507, // 0.99694, -0.078153 0x3fefe5f3af2e3940, 0xbfb4661179272096, // 0.99682, -0.079682 0x3fefe4f0e31d7a4a, 0xbfb4ca45fc1ba8b6, // 0.9967, -0.081211 0x3fefe3e92be9d886, 0xbfb52e774a4d4d0a, // 0.99657, -0.08274 0x3fefe2dc89bbff08, 0xbfb592a554489bc8, // 0.99644, -0.084269 0x3fefe1cafcbd5b09, 0xbfb5f6d00a9aa419, // 0.99631, -0.085797 0x3fefe0b485181be3, 0xbfb65af75dd0f87b, // 0.99618, -0.087326 0x3fefdf9922f73307, 0xbfb6bf1b3e79b129, // 0.99604, -0.088854 0x3fefde78d68653fd, 0xbfb7233b9d236e71, // 0.99591, -0.090381 0x3fefdd539ff1f456, 0xbfb787586a5d5b21, // 0.99577, -0.091909 0x3fefdc297f674ba9, 0xbfb7eb7196b72ee4, // 0.99563, -0.093436 0x3fefdafa7514538c, 0xbfb84f8712c130a0, // 0.99548, -0.094963 0x3fefd9c68127c78c, 0xbfb8b398cf0c38e0, // 0.99533, -0.09649 0x3fefd88da3d12526, 0xbfb917a6bc29b42c, // 0.99518, -0.098017 0x3fefd74fdd40abbf, 0xbfb97bb0caaba56f, // 0.99503, -0.099544 0x3fefd60d2da75c9e, 0xbfb9dfb6eb24a85c, // 0.99488, -0.10107 0x3fefd4c59536fae4, 0xbfba43b90e27f3c4, // 0.99472, -0.1026 0x3fefd37914220b84, 0xbfbaa7b724495c04, // 0.99456, -0.10412 0x3fefd227aa9bd53b, 0xbfbb0bb11e1d5559, // 0.9944, -0.10565 0x3fefd0d158d86087, 0xbfbb6fa6ec38f64c, // 0.99424, -0.10717 0x3fefcf761f0c77a3, 0xbfbbd3987f31fa0e, // 0.99407, -0.1087 0x3fefce15fd6da67b, 0xbfbc3785c79ec2d5, // 0.99391, -0.11022 0x3fefccb0f4323aa3, 0xbfbc9b6eb6165c42, // 0.99374, -0.11175 0x3fefcb4703914354, 0xbfbcff533b307dc1, // 0.99356, -0.11327 0x3fefc9d82bc2915e, 0xbfbd633347858ce4, // 0.99339, -0.11479 0x3fefc8646cfeb721, 0xbfbdc70ecbae9fc8, // 0.99321, -0.11632 0x3fefc6ebc77f0887, 0xbfbe2ae5b8457f77, // 0.99303, -0.11784 0x3fefc56e3b7d9af6, 0xbfbe8eb7fde4aa3e, // 0.99285, -0.11937 0x3fefc3ebc935454c, 0xbfbef2858d27561b, // 0.99267, -0.12089 0x3fefc26470e19fd3, 0xbfbf564e56a9730e, // 0.99248, -0.12241 0x3fefc0d832bf043a, 0xbfbfba124b07ad85, // 0.99229, -0.12393 0x3fefbf470f0a8d88, 0xbfc00ee8ad6fb85b, // 0.9921, -0.12545 0x3fefbdb106021816, 0xbfc040c5bb67747e, // 0.99191, -0.12698 0x3fefbc1617e44186, 0xbfc072a047ba831d, // 0.99171, -0.1285 0x3fefba7644f068b5, 0xbfc0a4784ab8bf1d, // 0.99151, -0.13002 0x3fefb8d18d66adb7, 0xbfc0d64dbcb26786, // 0.99131, -0.13154 0x3fefb727f187f1c7, 0xbfc1082095f820b0, // 0.99111, -0.13306 0x3fefb5797195d741, 0xbfc139f0cedaf576, // 0.9909, -0.13458 0x3fefb3c60dd2c199, 0xbfc16bbe5fac5865, // 0.9907, -0.1361 0x3fefb20dc681d54d, 0xbfc19d8940be24e7, // 0.99049, -0.13762 0x3fefb0509be6f7db, 0xbfc1cf516a62a077, // 0.99027, -0.13914 0x3fefae8e8e46cfbb, 0xbfc20116d4ec7bce, // 0.99006, -0.14066 0x3fefacc79de6c44f, 0xbfc232d978aed413, // 0.98984, -0.14218 0x3fefaafbcb0cfddc, 0xbfc264994dfd340a, // 0.98962, -0.1437 0x3fefa92b1600657c, 0xbfc296564d2b953e, // 0.9894, -0.14521 0x3fefa7557f08a517, 0xbfc2c8106e8e613a, // 0.98918, -0.14673 0x3fefa57b066e2754, 0xbfc2f9c7aa7a72af, // 0.98895, -0.14825 0x3fefa39bac7a1791, 0xbfc32b7bf94516a7, // 0.98872, -0.14976 0x3fefa1b7717661d5, 0xbfc35d2d53440db2, // 0.98849, -0.15128 0x3fef9fce55adb2c8, 0xbfc38edbb0cd8d14, // 0.98826, -0.1528 0x3fef9de0596b77a3, 0xbfc3c0870a383ff6, // 0.98802, -0.15431 0x3fef9bed7cfbde29, 0xbfc3f22f57db4893, // 0.98778, -0.15583 0x3fef99f5c0abd496, 0xbfc423d4920e4166, // 0.98754, -0.15734 0x3fef97f924c9099b, 0xbfc45576b1293e5a, // 0.9873, -0.15886 0x3fef95f7a9a1ec47, 0xbfc48715ad84cdf5, // 0.98706, -0.16037 0x3fef93f14f85ac08, 0xbfc4b8b17f79fa88, // 0.98681, -0.16189 0x3fef91e616c43891, 0xbfc4ea4a1f624b61, // 0.98656, -0.1634 0x3fef8fd5ffae41db, 0xbfc51bdf8597c5f2, // 0.98631, -0.16491 0x3fef8dc10a95380d, 0xbfc54d71aa74ef02, // 0.98605, -0.16643 0x3fef8ba737cb4b78, 0xbfc57f008654cbde, // 0.9858, -0.16794 0x3fef898887a36c84, 0xbfc5b08c1192e381, // 0.98554, -0.16945 0x3fef8764fa714ba9, 0xbfc5e214448b3fc6, // 0.98528, -0.17096 0x3fef853c9089595e, 0xbfc61399179a6e94, // 0.98501, -0.17247 0x3fef830f4a40c60c, 0xbfc6451a831d830d, // 0.98475, -0.17398 0x3fef80dd27ed8204, 0xbfc676987f7216b8, // 0.98448, -0.17549 0x3fef7ea629e63d6e, 0xbfc6a81304f64ab2, // 0.98421, -0.177 0x3fef7c6a50826840, 0xbfc6d98a0c08c8da, // 0.98394, -0.17851 0x3fef7a299c1a322a, 0xbfc70afd8d08c4ff, // 0.98366, -0.18002 0x3fef77e40d068a90, 0xbfc73c6d8055fe0a, // 0.98339, -0.18153 0x3fef7599a3a12077, 0xbfc76dd9de50bf31, // 0.98311, -0.18304 0x3fef734a60446279, 0xbfc79f429f59e11d, // 0.98282, -0.18455 0x3fef70f6434b7eb7, 0xbfc7d0a7bbd2cb1b, // 0.98254, -0.18606 0x3fef6e9d4d1262ca, 0xbfc802092c1d744b, // 0.98225, -0.18756 0x3fef6c3f7df5bbb7, 0xbfc83366e89c64c5, // 0.98196, -0.18907 0x3fef69dcd652f5de, 0xbfc864c0e9b2b6cf, // 0.98167, -0.19057 0x3fef677556883cee, 0xbfc8961727c41804, // 0.98138, -0.19208 0x3fef6508fef47bd5, 0xbfc8c7699b34ca7e, // 0.98108, -0.19359 0x3fef6297cff75cb0, 0xbfc8f8b83c69a60a, // 0.98079, -0.19509 0x3fef6021c9f148c2, 0xbfc92a0303c8194f, // 0.98048, -0.19659 0x3fef5da6ed43685d, 0xbfc95b49e9b62af9, // 0.98018, -0.1981 0x3fef5b273a4fa2d9, 0xbfc98c8ce69a7aec, // 0.97988, -0.1996 0x3fef58a2b1789e84, 0xbfc9bdcbf2dc4366, // 0.97957, -0.2011 0x3fef56195321c090, 0xbfc9ef0706e35a35, // 0.97926, -0.20261 0x3fef538b1faf2d07, 0xbfca203e1b1831da, // 0.97895, -0.20411 0x3fef50f81785c6b9, 0xbfca517127e3dabc, // 0.97863, -0.20561 0x3fef4e603b0b2f2d, 0xbfca82a025b00451, // 0.97832, -0.20711 0x3fef4bc38aa5c694, 0xbfcab3cb0ce6fe44, // 0.978, -0.20861 0x3fef492206bcabb4, 0xbfcae4f1d5f3b9ab, // 0.97768, -0.21011 0x3fef467bafb7bbe0, 0xbfcb16147941ca2a, // 0.97735, -0.21161 0x3fef43d085ff92dd, 0xbfcb4732ef3d6722, // 0.97703, -0.21311 0x3fef412089fd8adc, 0xbfcb784d30536cda, // 0.9767, -0.21461 0x3fef3e6bbc1bbc65, 0xbfcba96334f15dad, // 0.97637, -0.21611 0x3fef3bb21cc4fe47, 0xbfcbda74f5856330, // 0.97604, -0.2176 0x3fef38f3ac64e589, 0xbfcc0b826a7e4f63, // 0.9757, -0.2191 0x3fef36306b67c556, 0xbfcc3c8b8c4b9dd7, // 0.97536, -0.2206 0x3fef33685a3aaef0, 0xbfcc6d90535d74dc, // 0.97503, -0.22209 0x3fef309b794b719f, 0xbfcc9e90b824a6a9, // 0.97468, -0.22359 0x3fef2dc9c9089a9d, 0xbfcccf8cb312b286, // 0.97434, -0.22508 0x3fef2af349e17507, 0xbfcd00843c99c5f9, // 0.97399, -0.22658 0x3fef2817fc4609ce, 0xbfcd31774d2cbdee, // 0.97364, -0.22807 0x3fef2537e0a71f9f, 0xbfcd6265dd3f27e3, // 0.97329, -0.22957 0x3fef2252f7763ada, 0xbfcd934fe5454311, // 0.97294, -0.23106 0x3fef1f6941259d7a, 0xbfcdc4355db40195, // 0.97258, -0.23255 0x3fef1c7abe284708, 0xbfcdf5163f01099a, // 0.97223, -0.23404 0x3fef19876ef1f486, 0xbfce25f281a2b684, // 0.97187, -0.23553 0x3fef168f53f7205d, 0xbfce56ca1e101a1b, // 0.9715, -0.23702 0x3fef13926dad024e, 0xbfce879d0cc0fdaf, // 0.97114, -0.23851 0x3fef1090bc898f5f, 0xbfceb86b462de348, // 0.97077, -0.24 0x3fef0d8a410379c5, 0xbfcee934c2d006c7, // 0.9704, -0.24149 0x3fef0a7efb9230d7, 0xbfcf19f97b215f1a, // 0.97003, -0.24298 0x3fef076eecade0fa, 0xbfcf4ab9679c9f5c, // 0.96966, -0.24447 0x3fef045a14cf738c, 0xbfcf7b7480bd3801, // 0.96928, -0.24596 0x3fef014074708ed3, 0xbfcfac2abeff57ff, // 0.9689, -0.24744 0x3feefe220c0b95ec, 0xbfcfdcdc1adfedf8, // 0.96852, -0.24893 0x3feefafedc1ba8b7, 0xbfd006c4466e54af, // 0.96814, -0.25041 0x3feef7d6e51ca3c0, 0xbfd01f1806b9fdd2, // 0.96775, -0.2519 0x3feef4aa278b2032, 0xbfd037694a928cac, // 0.96737, -0.25338 0x3feef178a3e473c2, 0xbfd04fb80e37fdae, // 0.96698, -0.25487 0x3feeee425aa6b09a, 0xbfd068044deab002, // 0.96658, -0.25635 0x3feeeb074c50a544, 0xbfd0804e05eb661e, // 0.96619, -0.25783 0x3feee7c77961dc9e, 0xbfd09895327b465e, // 0.96579, -0.25931 0x3feee482e25a9dbc, 0xbfd0b0d9cfdbdb90, // 0.96539, -0.26079 0x3feee13987bbebdc, 0xbfd0c91bda4f158d, // 0.96499, -0.26227 0x3feeddeb6a078651, 0xbfd0e15b4e1749cd, // 0.96459, -0.26375 0x3feeda9889bfe86a, 0xbfd0f998277733f7, // 0.96418, -0.26523 0x3feed740e7684963, 0xbfd111d262b1f677, // 0.96378, -0.26671 0x3feed3e483849c51, 0xbfd12a09fc0b1b12, // 0.96337, -0.26819 0x3feed0835e999009, 0xbfd1423eefc69378, // 0.96295, -0.26967 0x3feecd1d792c8f10, 0xbfd15a713a28b9d9, // 0.96254, -0.27115 0x3feec9b2d3c3bf84, 0xbfd172a0d7765177, // 0.96212, -0.27262 0x3feec6436ee60309, 0xbfd18acdc3f4873a, // 0.9617, -0.2741 0x3feec2cf4b1af6b2, 0xbfd1a2f7fbe8f243, // 0.96128, -0.27557 0x3feebf5668eaf2ef, 0xbfd1bb1f7b999480, // 0.96086, -0.27705 0x3feebbd8c8df0b74, 0xbfd1d3443f4cdb3d, // 0.96043, -0.27852 0x3feeb8566b810f2a, 0xbfd1eb6643499fbb, // 0.96, -0.27999 0x3feeb4cf515b8811, 0xbfd2038583d727bd, // 0.95957, -0.28146 0x3feeb1437af9bb34, 0xbfd21ba1fd3d2623, // 0.95914, -0.28294 0x3feeadb2e8e7a88e, 0xbfd233bbabc3bb72, // 0.9587, -0.28441 0x3feeaa1d9bb20af3, 0xbfd24bd28bb37672, // 0.95827, -0.28588 0x3feea68393e65800, 0xbfd263e6995554ba, // 0.95783, -0.28735 0x3feea2e4d212c000, 0xbfd27bf7d0f2c346, // 0.95738, -0.28882 0x3fee9f4156c62dda, 0xbfd294062ed59f05, // 0.95694, -0.29028 0x3fee9b99229046f8, 0xbfd2ac11af483572, // 0.95649, -0.29175 0x3fee97ec36016b30, 0xbfd2c41a4e954520, // 0.95605, -0.29322 0x3fee943a91aab4b4, 0xbfd2dc200907fe51, // 0.95559, -0.29469 0x3fee9084361df7f3, 0xbfd2f422daec0386, // 0.95514, -0.29615 0x3fee8cc923edc388, 0xbfd30c22c08d6a13, // 0.95469, -0.29762 0x3fee89095bad6025, 0xbfd3241fb638baaf, // 0.95423, -0.29908 0x3fee8544ddf0d075, 0xbfd33c19b83af207, // 0.95377, -0.30054 0x3fee817bab4cd10d, 0xbfd35410c2e18152, // 0.95331, -0.30201 0x3fee7dadc456d850, 0xbfd36c04d27a4edf, // 0.95284, -0.30347 0x3fee79db29a5165a, 0xbfd383f5e353b6aa, // 0.95238, -0.30493 0x3fee7603dbce74e9, 0xbfd39be3f1bc8aef, // 0.95191, -0.30639 0x3fee7227db6a9744, 0xbfd3b3cefa0414b7, // 0.95144, -0.30785 0x3fee6e472911da27, 0xbfd3cbb6f87a146e, // 0.95096, -0.30931 0x3fee6a61c55d53a7, 0xbfd3e39be96ec271, // 0.95049, -0.31077 0x3fee6677b0e6d31e, 0xbfd3fb7dc932cfa4, // 0.95001, -0.31222 0x3fee6288ec48e112, 0xbfd4135c94176602, // 0.94953, -0.31368 0x3fee5e95781ebf1c, 0xbfd42b38466e2928, // 0.94905, -0.31514 0x3fee5a9d550467d3, 0xbfd44310dc8936f0, // 0.94856, -0.31659 0x3fee56a083968eb1, 0xbfd45ae652bb2800, // 0.94807, -0.31805 0x3fee529f04729ffc, 0xbfd472b8a5571054, // 0.94759, -0.3195 0x3fee4e98d836c0af, 0xbfd48a87d0b07fd7, // 0.94709, -0.32096 0x3fee4a8dff81ce5e, 0xbfd4a253d11b82f3, // 0.9466, -0.32241 0x3fee467e7af35f23, 0xbfd4ba1ca2eca31c, // 0.94611, -0.32386 0x3fee426a4b2bc17e, 0xbfd4d1e24278e76a, // 0.94561, -0.32531 0x3fee3e5170cbfc46, 0xbfd4e9a4ac15d520, // 0.94511, -0.32676 0x3fee3a33ec75ce85, 0xbfd50163dc197047, // 0.9446, -0.32821 0x3fee3611becbaf69, 0xbfd5191fceda3c35, // 0.9441, -0.32966 0x3fee31eae870ce25, 0xbfd530d880af3c24, // 0.94359, -0.33111 0x3fee2dbf6a0911d9, 0xbfd5488dedeff3be, // 0.94308, -0.33255 0x3fee298f4439197a, 0xbfd5604012f467b4, // 0.94257, -0.334 0x3fee255a77a63bb8, 0xbfd577eeec151e47, // 0.94206, -0.33545 0x3fee212104f686e5, 0xbfd58f9a75ab1fdd, // 0.94154, -0.33689 0x3fee1ce2ecd0c0d8, 0xbfd5a742ac0ff78d, // 0.94103, -0.33833 0x3fee18a02fdc66d9, 0xbfd5bee78b9db3b6, // 0.94051, -0.33978 0x3fee1458cec1ad83, 0xbfd5d68910aee686, // 0.93998, -0.34122 0x3fee100cca2980ac, 0xbfd5ee27379ea693, // 0.93946, -0.34266 0x3fee0bbc22bd8349, 0xbfd605c1fcc88f63, // 0.93893, -0.3441 0x3fee0766d9280f54, 0xbfd61d595c88c203, // 0.9384, -0.34554 0x3fee030cee1435b8, 0xbfd634ed533be58e, // 0.93787, -0.34698 0x3fedfeae622dbe2b, 0xbfd64c7ddd3f27c6, // 0.93734, -0.34842 0x3fedfa4b3621271d, 0xbfd6640af6f03d9e, // 0.9368, -0.34986 0x3fedf5e36a9ba59c, 0xbfd67b949cad63ca, // 0.93627, -0.35129 0x3fedf177004b2534, 0xbfd6931acad55f51, // 0.93573, -0.35273 0x3feded05f7de47da, 0xbfd6aa9d7dc77e16, // 0.93518, -0.35416 0x3fede890520465ce, 0xbfd6c21cb1e39771, // 0.93464, -0.3556 0x3fede4160f6d8d81, 0xbfd6d998638a0cb5, // 0.93409, -0.35703 0x3feddf9730ca837b, 0xbfd6f1108f1bc9c5, // 0.93354, -0.35846 0x3feddb13b6ccc23d, 0xbfd7088530fa459e, // 0.93299, -0.3599 0x3fedd68ba2267a25, 0xbfd71ff6458782ec, // 0.93244, -0.36133 0x3fedd1fef38a915a, 0xbfd73763c9261092, // 0.93188, -0.36276 0x3fedcd6dabaca3a5, 0xbfd74ecdb8390a3e, // 0.93133, -0.36418 0x3fedc8d7cb410260, 0xbfd766340f2418f6, // 0.93077, -0.36561 0x3fedc43d52fcb453, 0xbfd77d96ca4b73a6, // 0.93021, -0.36704 0x3fedbf9e4395759a, 0xbfd794f5e613dfae, // 0.92964, -0.36847 0x3fedbafa9dc1b78d, 0xbfd7ac515ee2b172, // 0.92907, -0.36989 0x3fedb6526238a09b, 0xbfd7c3a9311dcce7, // 0.92851, -0.37132 0x3fedb1a591b20c38, 0xbfd7dafd592ba621, // 0.92794, -0.37274 0x3fedacf42ce68ab9, 0xbfd7f24dd37341e3, // 0.92736, -0.37416 0x3feda83e348f613b, 0xbfd8099a9c5c362d, // 0.92679, -0.37559 0x3feda383a9668988, 0xbfd820e3b04eaac4, // 0.92621, -0.37701 0x3fed9ec48c26b1f3, 0xbfd838290bb359c8, // 0.92563, -0.37843 0x3fed9a00dd8b3d46, 0xbfd84f6aaaf3903f, // 0.92505, -0.37985 0x3fed95389e50429b, 0xbfd866a88a792ea0, // 0.92447, -0.38127 0x3fed906bcf328d46, 0xbfd87de2a6aea963, // 0.92388, -0.38268 0x3fed8b9a70ef9cb4, 0xbfd89518fbff098e, // 0.92329, -0.3841 0x3fed86c48445a450, 0xbfd8ac4b86d5ed44, // 0.9227, -0.38552 0x3fed81ea09f38b63, 0xbfd8c37a439f884f, // 0.92211, -0.38693 0x3fed7d0b02b8ecf9, 0xbfd8daa52ec8a4af, // 0.92151, -0.38835 0x3fed78276f5617c6, 0xbfd8f1cc44bea329, // 0.92092, -0.38976 0x3fed733f508c0dff, 0xbfd908ef81ef7bd1, // 0.92032, -0.39117 0x3fed6e52a71c8547, 0xbfd9200ee2c9be97, // 0.91972, -0.39258 0x3fed696173c9e68b, 0xbfd9372a63bc93d7, // 0.91911, -0.39399 0x3fed646bb7574de5, 0xbfd94e420137bce3, // 0.91851, -0.3954 0x3fed5f7172888a7f, 0xbfd96555b7ab948f, // 0.9179, -0.39681 0x3fed5a72a6221e73, 0xbfd97c6583890fc2, // 0.91729, -0.39822 0x3fed556f52e93eb1, 0xbfd993716141bdfe, // 0.91668, -0.39962 0x3fed506779a3d2d9, 0xbfd9aa794d47c9ee, // 0.91606, -0.40103 0x3fed4b5b1b187524, 0xbfd9c17d440df9f2, // 0.91545, -0.40243 0x3fed464a380e7242, 0xbfd9d87d4207b0ab, // 0.91483, -0.40384 0x3fed4134d14dc93a, 0xbfd9ef7943a8ed8a, // 0.91421, -0.40524 0x3fed3c1ae79f2b4e, 0xbfda067145664d57, // 0.91359, -0.40664 0x3fed36fc7bcbfbdc, 0xbfda1d6543b50ac0, // 0.91296, -0.40804 0x3fed31d98e9e503a, 0xbfda34553b0afee5, // 0.91234, -0.40944 0x3fed2cb220e0ef9f, 0xbfda4b4127dea1e4, // 0.91171, -0.41084 0x3fed2786335f52fc, 0xbfda622906a70b63, // 0.91107, -0.41224 0x3fed2255c6e5a4e1, 0xbfda790cd3dbf31a, // 0.91044, -0.41364 0x3fed1d20dc40c15c, 0xbfda8fec8bf5b166, // 0.90981, -0.41503 0x3fed17e7743e35dc, 0xbfdaa6c82b6d3fc9, // 0.90917, -0.41643 0x3fed12a98fac410c, 0xbfdabd9faebc3980, // 0.90853, -0.41782 0x3fed0d672f59d2b9, 0xbfdad473125cdc08, // 0.90789, -0.41922 0x3fed082054168bac, 0xbfdaeb4252ca07ab, // 0.90724, -0.42061 0x3fed02d4feb2bd92, 0xbfdb020d6c7f4009, // 0.9066, -0.422 0x3fecfd852fff6ad4, 0xbfdb18d45bf8aca6, // 0.90595, -0.42339 0x3fecf830e8ce467b, 0xbfdb2f971db31972, // 0.9053, -0.42478 0x3fecf2d829f1b40e, 0xbfdb4655ae2bf757, // 0.90464, -0.42617 0x3feced7af43cc773, 0xbfdb5d1009e15cc0, // 0.90399, -0.42756 0x3fece819488344ce, 0xbfdb73c62d520624, // 0.90333, -0.42894 0x3fece2b32799a060, 0xbfdb8a7814fd5693, // 0.90267, -0.43033 0x3fecdd489254fe65, 0xbfdba125bd63583e, // 0.90201, -0.43171 0x3fecd7d9898b32f6, 0xbfdbb7cf2304bd01, // 0.90135, -0.43309 0x3fecd2660e12c1e6, 0xbfdbce744262deee, // 0.90068, -0.43448 0x3fecccee20c2de9f, 0xbfdbe51517ffc0d9, // 0.90002, -0.43586 0x3fecc771c2736c09, 0xbfdbfbb1a05e0edc, // 0.89935, -0.43724 0x3fecc1f0f3fcfc5c, 0xbfdc1249d8011ee7, // 0.89867, -0.43862 0x3fecbc6bb638d10b, 0xbfdc28ddbb6cf145, // 0.898, -0.43999 0x3fecb6e20a00da99, 0xbfdc3f6d47263129, // 0.89732, -0.44137 0x3fecb153f02fb87d, 0xbfdc55f877b23537, // 0.89665, -0.44275 0x3fecabc169a0b901, 0xbfdc6c7f4997000a, // 0.89597, -0.44412 0x3feca62a772fd919, 0xbfdc8301b95b40c2, // 0.89528, -0.4455 0x3feca08f19b9c449, 0xbfdc997fc3865388, // 0.8946, -0.44687 0x3fec9aef521bd480, 0xbfdcaff964a0421d, // 0.89391, -0.44824 0x3fec954b213411f5, 0xbfdcc66e9931c45d, // 0.89322, -0.44961 0x3fec8fa287e13305, 0xbfdcdcdf5dc440ce, // 0.89253, -0.45098 0x3fec89f587029c13, 0xbfdcf34baee1cd21, // 0.89184, -0.45235 0x3fec84441f785f61, 0xbfdd09b389152ec1, // 0.89115, -0.45372 0x3fec7e8e52233cf3, 0xbfdd2016e8e9db5b, // 0.89045, -0.45508 0x3fec78d41fe4a267, 0xbfdd3675caebf962, // 0.88975, -0.45645 0x3fec7315899eaad7, 0xbfdd4cd02ba8609c, // 0.88905, -0.45781 0x3fec6d5290341eb2, 0xbfdd632607ac9aa9, // 0.88835, -0.45918 0x3fec678b3488739b, 0xbfdd79775b86e389, // 0.88764, -0.46054 0x3fec61bf777fcc48, 0xbfdd8fc423c62a25, // 0.88693, -0.4619 0x3fec5bef59fef85a, 0xbfdda60c5cfa10d8, // 0.88622, -0.46326 0x3fec561adceb743e, 0xbfddbc5003b2edf8, // 0.88551, -0.46462 0x3fec5042012b6907, 0xbfddd28f1481cc58, // 0.8848, -0.46598 0x3fec4a64c7a5ac4c, 0xbfdde8c98bf86bd6, // 0.88408, -0.46733 0x3fec44833141c004, 0xbfddfeff66a941de, // 0.88336, -0.46869 0x3fec3e9d3ee7d262, 0xbfde1530a12779f4, // 0.88264, -0.47004 0x3fec38b2f180bdb1, 0xbfde2b5d3806f63b, // 0.88192, -0.4714 0x3fec32c449f60831, 0xbfde418527dc4ffa, // 0.8812, -0.47275 0x3fec2cd14931e3f1, 0xbfde57a86d3cd824, // 0.88047, -0.4741 0x3fec26d9f01f2eaf, 0xbfde6dc704be97e2, // 0.87974, -0.47545 0x3fec20de3fa971b0, 0xbfde83e0eaf85113, // 0.87901, -0.4768 0x3fec1ade38bce19b, 0xbfde99f61c817eda, // 0.87828, -0.47815 0x3fec14d9dc465e58, 0xbfdeb00695f25620, // 0.87755, -0.47949 0x3fec0ed12b3372e9, 0xbfdec61253e3c61b, // 0.87681, -0.48084 0x3fec08c426725549, 0xbfdedc1952ef78d5, // 0.87607, -0.48218 0x3fec02b2cef1e641, 0xbfdef21b8fafd3b5, // 0.87533, -0.48353 0x3febfc9d25a1b147, 0xbfdf081906bff7fd, // 0.87459, -0.48487 0x3febf6832b71ec5b, 0xbfdf1e11b4bbc35c, // 0.87384, -0.48621 0x3febf064e15377dd, 0xbfdf3405963fd068, // 0.87309, -0.48755 0x3febea424837de6d, 0xbfdf49f4a7e97729, // 0.87235, -0.48889 0x3febe41b611154c1, 0xbfdf5fdee656cda3, // 0.8716, -0.49023 0x3febddf02cd2b983, 0xbfdf75c44e26a852, // 0.87084, -0.49156 0x3febd7c0ac6f952a, 0xbfdf8ba4dbf89aba, // 0.87009, -0.4929 0x3febd18ce0dc19d6, 0xbfdfa1808c6cf7e0, // 0.86933, -0.49423 0x3febcb54cb0d2327, 0xbfdfb7575c24d2de, // 0.86857, -0.49557 0x3febc5186bf8361d, 0xbfdfcd2947c1ff57, // 0.86781, -0.4969 0x3febbed7c49380ea, 0xbfdfe2f64be7120f, // 0.86705, -0.49823 0x3febb892d5d5dad5, 0xbfdff8be6537615e, // 0.86628, -0.49956 0x3febb249a0b6c40d, 0xbfe00740c82b82e0, // 0.86551, -0.50089 0x3febabfc262e6586, 0xbfe0121fe4f56d2c, // 0.86474, -0.50221 0x3feba5aa673590d2, 0xbfe01cfc874c3eb7, // 0.86397, -0.50354 0x3feb9f5464c5bffc, 0xbfe027d6ad83287e, // 0.8632, -0.50486 0x3feb98fa1fd9155e, 0xbfe032ae55edbd95, // 0.86242, -0.50619 0x3feb929b996a5b7f, 0xbfe03d837edff370, // 0.86165, -0.50751 0x3feb8c38d27504e9, 0xbfe0485626ae221a, // 0.86087, -0.50883 0x3feb85d1cbf52c02, 0xbfe053264bad0483, // 0.86009, -0.51015 0x3feb7f6686e792ea, 0xbfe05df3ec31b8b6, // 0.8593, -0.51147 0x3feb78f70449a34b, 0xbfe068bf0691c028, // 0.85852, -0.51279 0x3feb728345196e3e, 0xbfe073879922ffed, // 0.85773, -0.5141 0x3feb6c0b4a55ac17, 0xbfe07e4da23bc102, // 0.85694, -0.51542 0x3feb658f14fdbc47, 0xbfe089112032b08c, // 0.85615, -0.51673 0x3feb5f0ea611a532, 0xbfe093d2115ee018, // 0.85535, -0.51804 0x3feb5889fe921405, 0xbfe09e907417c5e1, // 0.85456, -0.51936 0x3feb52011f805c92, 0xbfe0a94c46b53d0b, // 0.85376, -0.52067 0x3feb4b7409de7925, 0xbfe0b405878f85ec, // 0.85296, -0.52198 0x3feb44e2beaf0a61, 0xbfe0bebc34ff4646, // 0.85216, -0.52328 0x3feb3e4d3ef55712, 0xbfe0c9704d5d898f, // 0.85136, -0.52459 0x3feb37b38bb54c09, 0xbfe0d421cf03c12b, // 0.85055, -0.5259 0x3feb3115a5f37bf4, 0xbfe0ded0b84bc4b5, // 0.84974, -0.5272 0x3feb2a738eb51f33, 0xbfe0e97d078fd23b, // 0.84893, -0.5285 0x3feb23cd470013b4, 0xbfe0f426bb2a8e7d, // 0.84812, -0.5298 0x3feb1d22cfdadcc6, 0xbfe0fecdd1770537, // 0.84731, -0.5311 0x3feb16742a4ca2f5, 0xbfe1097248d0a956, // 0.84649, -0.5324 0x3feb0fc1575d33db, 0xbfe114141f935545, // 0.84567, -0.5337 0x3feb090a58150200, 0xbfe11eb3541b4b22, // 0.84485, -0.535 0x3feb024f2d7d24a9, 0xbfe1294fe4c5350a, // 0.84403, -0.53629 0x3feafb8fd89f57b6, 0xbfe133e9cfee254e, // 0.84321, -0.53759 0x3feaf4cc5a85fb73, 0xbfe13e8113f396c1, // 0.84238, -0.53888 0x3feaee04b43c1474, 0xbfe14915af336ceb, // 0.84155, -0.54017 0x3feae738e6cd4b67, 0xbfe153a7a00bf453, // 0.84073, -0.54146 0x3feae068f345ecef, 0xbfe15e36e4dbe2bc, // 0.83989, -0.54275 0x3fead994dab2e979, 0xbfe168c37c025764, // 0.83906, -0.54404 0x3fead2bc9e21d511, 0xbfe1734d63dedb49, // 0.83822, -0.54532 0x3feacbe03ea0e73b, 0xbfe17dd49ad16161, // 0.83739, -0.54661 0x3feac4ffbd3efac8, 0xbfe188591f3a46e5, // 0.83655, -0.54789 0x3feabe1b1b0b8dac, 0xbfe192daef7a5386, // 0.83571, -0.54918 0x3feab7325916c0d4, 0xbfe19d5a09f2b9b8, // 0.83486, -0.55046 0x3feab045787157ff, 0xbfe1a7d66d0516e6, // 0.83402, -0.55174 0x3feaa9547a2cb98e, 0xbfe1b250171373be, // 0.83317, -0.55302 0x3feaa25f5f5aee60, 0xbfe1bcc706804467, // 0.83232, -0.55429 0x3fea9b66290ea1a3, 0xbfe1c73b39ae68c8, // 0.83147, -0.55557 0x3fea9468d85b20ae, 0xbfe1d1acaf012cc2, // 0.83062, -0.55685 0x3fea8d676e545ad2, 0xbfe1dc1b64dc4872, // 0.82976, -0.55812 0x3fea8661ec0ee133, 0xbfe1e68759a3e074, // 0.8289, -0.55939 0x3fea7f58529fe69d, 0xbfe1f0f08bbc861b, // 0.82805, -0.56066 0x3fea784aa31d3f55, 0xbfe1fb56f98b37b8, // 0.82718, -0.56193 0x3fea7138de9d60f5, 0xbfe205baa17560d6, // 0.82632, -0.5632 0x3fea6a230637623b, 0xbfe2101b81e0da78, // 0.82546, -0.56447 0x3fea63091b02fae2, 0xbfe21a799933eb58, // 0.82459, -0.56573 0x3fea5beb1e188375, 0xbfe224d4e5d5482e, // 0.82372, -0.567 0x3fea54c91090f524, 0xbfe22f2d662c13e1, // 0.82285, -0.56826 0x3fea4da2f385e997, 0xbfe23983189fdfd5, // 0.82198, -0.56952 0x3fea4678c8119ac8, 0xbfe243d5fb98ac1f, // 0.8211, -0.57078 0x3fea3f4a8f4ee2d2, 0xbfe24e260d7ee7c9, // 0.82023, -0.57204 0x3fea38184a593bc6, 0xbfe258734cbb7110, // 0.81935, -0.5733 0x3fea30e1fa4cbf81, 0xbfe262bdb7b795a2, // 0.81847, -0.57455 0x3fea29a7a0462782, 0xbfe26d054cdd12df, // 0.81758, -0.57581 0x3fea22693d62ccb9, 0xbfe2774a0a961612, // 0.8167, -0.57706 0x3fea1b26d2c0a75e, 0xbfe2818bef4d3cba, // 0.81581, -0.57831 0x3fea13e0617e4ec7, 0xbfe28bcaf96d94ba, // 0.81493, -0.57956 0x3fea0c95eabaf937, 0xbfe2960727629ca8, // 0.81404, -0.58081 0x3fea05476f967bb5, 0xbfe2a040779843fb, // 0.81314, -0.58206 0x3fe9fdf4f13149de, 0xbfe2aa76e87aeb58, // 0.81225, -0.58331 0x3fe9f69e70ac75bc, 0xbfe2b4aa787764c4, // 0.81135, -0.58455 0x3fe9ef43ef29af94, 0xbfe2bedb25faf3ea, // 0.81046, -0.5858 0x3fe9e7e56dcb45bd, 0xbfe2c908ef734e57, // 0.80956, -0.58704 0x3fe9e082edb42472, 0xbfe2d333d34e9bb7, // 0.80866, -0.58828 0x3fe9d91c7007d5a6, 0xbfe2dd5bcffb7616, // 0.80775, -0.58952 0x3fe9d1b1f5ea80d6, 0xbfe2e780e3e8ea16, // 0.80685, -0.59076 0x3fe9ca438080eadb, 0xbfe2f1a30d86773a, // 0.80594, -0.592 0x3fe9c2d110f075c3, 0xbfe2fbc24b441015, // 0.80503, -0.59323 0x3fe9bb5aa85f2098, 0xbfe305de9b921a94, // 0.80412, -0.59447 0x3fe9b3e047f38741, 0xbfe30ff7fce17035, // 0.80321, -0.5957 0x3fe9ac61f0d4e247, 0xbfe31a0e6da35e44, // 0.80229, -0.59693 0x3fe9a4dfa42b06b2, 0xbfe32421ec49a620, // 0.80138, -0.59816 0x3fe99d59631e65d5, 0xbfe32e3277467d6b, // 0.80046, -0.59939 0x3fe995cf2ed80d22, 0xbfe338400d0c8e57, // 0.79954, -0.60062 0x3fe98e410881a600, 0xbfe3424aac0ef7d6, // 0.79861, -0.60184 0x3fe986aef1457594, 0xbfe34c5252c14de1, // 0.79769, -0.60307 0x3fe97f18ea4e5c9e, 0xbfe35656ff9799ae, // 0.79676, -0.60429 0x3fe9777ef4c7d742, 0xbfe36058b10659f3, // 0.79584, -0.60551 0x3fe96fe111ddfce0, 0xbfe36a576582831b, // 0.79491, -0.60673 0x3fe9683f42bd7fe1, 0xbfe374531b817f8d, // 0.79398, -0.60795 0x3fe960998893ad8c, 0xbfe37e4bd1792fe2, // 0.79304, -0.60917 0x3fe958efe48e6dd7, 0xbfe3884185dfeb22, // 0.79211, -0.61038 0x3fe9514257dc4335, 0xbfe39234372c7f04, // 0.79117, -0.6116 0x3fe94990e3ac4a6c, 0xbfe39c23e3d63029, // 0.79023, -0.61281 0x3fe941db892e3a65, 0xbfe3a6108a54ba58, // 0.78929, -0.61402 0x3fe93a22499263fc, 0xbfe3affa292050b9, // 0.78835, -0.61523 0x3fe932652609b1cf, 0xbfe3b9e0beb19e18, // 0.7874, -0.61644 0x3fe92aa41fc5a815, 0xbfe3c3c44981c517, // 0.78646, -0.61765 0x3fe922df37f8646a, 0xbfe3cda4c80a6076, // 0.78551, -0.61885 0x3fe91b166fd49da2, 0xbfe3d78238c58343, // 0.78456, -0.62006 0x3fe91349c88da398, 0xbfe3e15c9a2db922, // 0.7836, -0.62126 0x3fe90b7943575efe, 0xbfe3eb33eabe0680, // 0.78265, -0.62246 0x3fe903a4e1665133, 0xbfe3f50828f1e8d2, // 0.78169, -0.62366 0x3fe8fbcca3ef940d, 0xbfe3fed9534556d4, // 0.78074, -0.62486 0x3fe8f3f08c28d9ac, 0xbfe408a76834c0c0, // 0.77978, -0.62606 0x3fe8ec109b486c49, 0xbfe41272663d108c, // 0.77882, -0.62725 0x3fe8e42cd2852e0a, 0xbfe41c3a4bdbaa26, // 0.77785, -0.62845 0x3fe8dc45331698cc, 0xbfe425ff178e6bb1, // 0.77689, -0.62964 0x3fe8d459be34bdfa, 0xbfe42fc0c7d3adbb, // 0.77592, -0.63083 0x3fe8cc6a75184655, 0xbfe4397f5b2a4380, // 0.77495, -0.63202 0x3fe8c47758fa71cb, 0xbfe4433ad0117b1d, // 0.77398, -0.63321 0x3fe8bc806b151741, 0xbfe44cf325091dd6, // 0.77301, -0.63439 0x3fe8b485aca2a468, 0xbfe456a858917046, // 0.77204, -0.63558 0x3fe8ac871ede1d88, 0xbfe4605a692b32a2, // 0.77106, -0.63676 0x3fe8a484c3031d50, 0xbfe46a095557a0f1, // 0.77008, -0.63794 0x3fe89c7e9a4dd4ab, 0xbfe473b51b987347, // 0.7691, -0.63912 0x3fe89474a5fb0a84, 0xbfe47d5dba6fde01, // 0.76812, -0.6403 0x3fe88c66e7481ba1, 0xbfe48703306091fe, // 0.76714, -0.64148 0x3fe884555f72fa6b, 0xbfe490a57bedbcdf, // 0.76615, -0.64266 0x3fe87c400fba2ebf, 0xbfe49a449b9b0938, // 0.76517, -0.64383 0x3fe87426f95cd5bd, 0xbfe4a3e08dec9ed6, // 0.76418, -0.645 0x3fe86c0a1d9aa195, 0xbfe4ad79516722f0, // 0.76319, -0.64618 0x3fe863e97db3d95a, 0xbfe4b70ee48fb869, // 0.7622, -0.64735 0x3fe85bc51ae958cc, 0xbfe4c0a145ec0004, // 0.7612, -0.64851 0x3fe8539cf67c9029, 0xbfe4ca30740218a3, // 0.76021, -0.64968 0x3fe84b7111af83f9, 0xbfe4d3bc6d589f80, // 0.75921, -0.65085 0x3fe843416dc4cce2, 0xbfe4dd453076b064, // 0.75821, -0.65201 0x3fe83b0e0bff976e, 0xbfe4e6cabbe3e5e9, // 0.75721, -0.65317 0x3fe832d6eda3a3e0, 0xbfe4f04d0e2859aa, // 0.75621, -0.65433 0x3fe82a9c13f545ff, 0xbfe4f9cc25cca486, // 0.7552, -0.65549 0x3fe8225d803964e5, 0xbfe503480159ded2, // 0.75419, -0.65665 0x3fe81a1b33b57acc, 0xbfe50cc09f59a09b, // 0.75319, -0.65781 0x3fe811d52faf94dc, 0xbfe51635fe5601d7, // 0.75218, -0.65896 0x3fe8098b756e52fa, 0xbfe51fa81cd99aa6, // 0.75117, -0.66011 0x3fe8013e0638e795, 0xbfe52916f96f8388, // 0.75015, -0.66127 0x3fe7f8ece3571771, 0xbfe5328292a35596, // 0.74914, -0.66242 0x3fe7f0980e113978, 0xbfe53beae7012abe, // 0.74812, -0.66356 0x3fe7e83f87b03686, 0xbfe5454ff5159dfb, // 0.7471, -0.66471 0x3fe7dfe3517d8937, 0xbfe54eb1bb6dcb8f, // 0.74608, -0.66586 0x3fe7d7836cc33db2, 0xbfe5581038975137, // 0.74506, -0.667 0x3fe7cf1fdacbf179, 0xbfe5616b6b204e6e, // 0.74403, -0.66814 0x3fe7c6b89ce2d333, 0xbfe56ac35197649e, // 0.74301, -0.66928 0x3fe7be4db453a27c, 0xbfe57417ea8bb75c, // 0.74198, -0.67042 0x3fe7b5df226aafb0, 0xbfe57d69348cec9f, // 0.74095, -0.67156 0x3fe7ad6ce874dbb6, 0xbfe586b72e2b2cfd, // 0.73992, -0.67269 0x3fe7a4f707bf97d2, 0xbfe59001d5f723df, // 0.73889, -0.67383 0x3fe79c7d8198e56e, 0xbfe599492a81ffbc, // 0.73785, -0.67496 0x3fe79400574f55e4, 0xbfe5a28d2a5d7250, // 0.73682, -0.67609 0x3fe78b7f8a320a52, 0xbfe5abcdd41bb0d8, // 0.73578, -0.67722 0x3fe782fb1b90b35b, 0xbfe5b50b264f7448, // 0.73474, -0.67835 0x3fe77a730cbb9100, 0xbfe5be451f8bf980, // 0.7337, -0.67948 0x3fe771e75f037261, 0xbfe5c77bbe65018c, // 0.73265, -0.6806 0x3fe7695813b9b594, 0xbfe5d0af016ed1d4, // 0.73161, -0.68172 0x3fe760c52c304764, 0xbfe5d9dee73e345c, // 0.73056, -0.68285 0x3fe7582ea9b9a329, 0xbfe5e30b6e6877f3, // 0.72951, -0.68397 0x3fe74f948da8d28d, 0xbfe5ec3495837074, // 0.72846, -0.68508 0x3fe746f6d9516d59, 0xbfe5f55a5b2576f8, // 0.72741, -0.6862 0x3fe73e558e079942, 0xbfe5fe7cbde56a0f, // 0.72636, -0.68732 0x3fe735b0ad2009b2, 0xbfe6079bbc5aadfa, // 0.7253, -0.68843 0x3fe72d0837efff97, 0xbfe610b7551d2cde, // 0.72425, -0.68954 0x3fe7245c2fcd492a, 0xbfe619cf86c55702, // 0.72319, -0.69065 0x3fe71bac960e41bf, 0xbfe622e44fec22ff, // 0.72213, -0.69176 0x3fe712f96c09d18d, 0xbfe62bf5af2b0dfd, // 0.72107, -0.69287 0x3fe70a42b3176d7a, 0xbfe63503a31c1be8, // 0.72, -0.69397 0x3fe701886c8f16e6, 0xbfe63e0e2a59d7aa, // 0.71894, -0.69508 0x3fe6f8ca99c95b75, 0xbfe64715437f535b, // 0.71787, -0.69618 0x3fe6f0093c1f54de, 0xbfe65018ed28287f, // 0.7168, -0.69728 0x3fe6e74454eaa8ae, 0xbfe6591925f0783e, // 0.71573, -0.69838 0x3fe6de7be585881d, 0xbfe66215ec74eb91, // 0.71466, -0.69947 0x3fe6d5afef4aafcc, 0xbfe66b0f3f52b386, // 0.71358, -0.70057 0x3fe6cce07395679f, 0xbfe674051d27896c, // 0.71251, -0.70166 0x3fe6c40d73c18275, 0xbfe67cf78491af10, // 0.71143, -0.70275 0x3fe6bb36f12b5e06, 0xbfe685e6742feeef, // 0.71035, -0.70385 0x3fe6b25ced2fe29c, 0xbfe68ed1eaa19c71, // 0.70927, -0.70493 0x3fe6a97f692c82ea, 0xbfe697b9e686941c, // 0.70819, -0.70602 0x3fe6a09e667f3bcc, 0xbfe6a09e667f3bcc, // 0.70711, -0.70711 0x3fe697b9e686941c, 0xbfe6a97f692c82ea, // 0.70602, -0.70819 0x3fe68ed1eaa19c71, 0xbfe6b25ced2fe29c, // 0.70493, -0.70927 0x3fe685e6742feeef, 0xbfe6bb36f12b5e06, // 0.70385, -0.71035 0x3fe67cf78491af10, 0xbfe6c40d73c18275, // 0.70275, -0.71143 0x3fe674051d27896c, 0xbfe6cce07395679f, // 0.70166, -0.71251 0x3fe66b0f3f52b386, 0xbfe6d5afef4aafcc, // 0.70057, -0.71358 0x3fe66215ec74eb91, 0xbfe6de7be585881d, // 0.69947, -0.71466 0x3fe6591925f0783e, 0xbfe6e74454eaa8ae, // 0.69838, -0.71573 0x3fe65018ed28287f, 0xbfe6f0093c1f54de, // 0.69728, -0.7168 0x3fe64715437f535b, 0xbfe6f8ca99c95b75, // 0.69618, -0.71787 0x3fe63e0e2a59d7aa, 0xbfe701886c8f16e6, // 0.69508, -0.71894 0x3fe63503a31c1be8, 0xbfe70a42b3176d7a, // 0.69397, -0.72 0x3fe62bf5af2b0dfd, 0xbfe712f96c09d18d, // 0.69287, -0.72107 0x3fe622e44fec22ff, 0xbfe71bac960e41bf, // 0.69176, -0.72213 0x3fe619cf86c55702, 0xbfe7245c2fcd492a, // 0.69065, -0.72319 0x3fe610b7551d2cde, 0xbfe72d0837efff97, // 0.68954, -0.72425 0x3fe6079bbc5aadfa, 0xbfe735b0ad2009b2, // 0.68843, -0.7253 0x3fe5fe7cbde56a0f, 0xbfe73e558e079942, // 0.68732, -0.72636 0x3fe5f55a5b2576f8, 0xbfe746f6d9516d59, // 0.6862, -0.72741 0x3fe5ec3495837074, 0xbfe74f948da8d28d, // 0.68508, -0.72846 0x3fe5e30b6e6877f3, 0xbfe7582ea9b9a329, // 0.68397, -0.72951 0x3fe5d9dee73e345c, 0xbfe760c52c304764, // 0.68285, -0.73056 0x3fe5d0af016ed1d4, 0xbfe7695813b9b594, // 0.68172, -0.73161 0x3fe5c77bbe65018c, 0xbfe771e75f037261, // 0.6806, -0.73265 0x3fe5be451f8bf980, 0xbfe77a730cbb9100, // 0.67948, -0.7337 0x3fe5b50b264f7448, 0xbfe782fb1b90b35b, // 0.67835, -0.73474 0x3fe5abcdd41bb0d8, 0xbfe78b7f8a320a52, // 0.67722, -0.73578 0x3fe5a28d2a5d7250, 0xbfe79400574f55e4, // 0.67609, -0.73682 0x3fe599492a81ffbc, 0xbfe79c7d8198e56e, // 0.67496, -0.73785 0x3fe59001d5f723df, 0xbfe7a4f707bf97d2, // 0.67383, -0.73889 0x3fe586b72e2b2cfd, 0xbfe7ad6ce874dbb6, // 0.67269, -0.73992 0x3fe57d69348cec9f, 0xbfe7b5df226aafb0, // 0.67156, -0.74095 0x3fe57417ea8bb75c, 0xbfe7be4db453a27c, // 0.67042, -0.74198 0x3fe56ac35197649e, 0xbfe7c6b89ce2d333, // 0.66928, -0.74301 0x3fe5616b6b204e6e, 0xbfe7cf1fdacbf179, // 0.66814, -0.74403 0x3fe5581038975137, 0xbfe7d7836cc33db2, // 0.667, -0.74506 0x3fe54eb1bb6dcb8f, 0xbfe7dfe3517d8937, // 0.66586, -0.74608 0x3fe5454ff5159dfb, 0xbfe7e83f87b03686, // 0.66471, -0.7471 0x3fe53beae7012abe, 0xbfe7f0980e113978, // 0.66356, -0.74812 0x3fe5328292a35596, 0xbfe7f8ece3571771, // 0.66242, -0.74914 0x3fe52916f96f8388, 0xbfe8013e0638e795, // 0.66127, -0.75015 0x3fe51fa81cd99aa6, 0xbfe8098b756e52fa, // 0.66011, -0.75117 0x3fe51635fe5601d7, 0xbfe811d52faf94dc, // 0.65896, -0.75218 0x3fe50cc09f59a09b, 0xbfe81a1b33b57acc, // 0.65781, -0.75319 0x3fe503480159ded2, 0xbfe8225d803964e5, // 0.65665, -0.75419 0x3fe4f9cc25cca486, 0xbfe82a9c13f545ff, // 0.65549, -0.7552 0x3fe4f04d0e2859aa, 0xbfe832d6eda3a3e0, // 0.65433, -0.75621 0x3fe4e6cabbe3e5e9, 0xbfe83b0e0bff976e, // 0.65317, -0.75721 0x3fe4dd453076b064, 0xbfe843416dc4cce2, // 0.65201, -0.75821 0x3fe4d3bc6d589f80, 0xbfe84b7111af83f9, // 0.65085, -0.75921 0x3fe4ca30740218a3, 0xbfe8539cf67c9029, // 0.64968, -0.76021 0x3fe4c0a145ec0004, 0xbfe85bc51ae958cc, // 0.64851, -0.7612 0x3fe4b70ee48fb869, 0xbfe863e97db3d95a, // 0.64735, -0.7622 0x3fe4ad79516722f0, 0xbfe86c0a1d9aa195, // 0.64618, -0.76319 0x3fe4a3e08dec9ed6, 0xbfe87426f95cd5bd, // 0.645, -0.76418 0x3fe49a449b9b0938, 0xbfe87c400fba2ebf, // 0.64383, -0.76517 0x3fe490a57bedbcdf, 0xbfe884555f72fa6b, // 0.64266, -0.76615 0x3fe48703306091fe, 0xbfe88c66e7481ba1, // 0.64148, -0.76714 0x3fe47d5dba6fde01, 0xbfe89474a5fb0a84, // 0.6403, -0.76812 0x3fe473b51b987347, 0xbfe89c7e9a4dd4ab, // 0.63912, -0.7691 0x3fe46a095557a0f1, 0xbfe8a484c3031d50, // 0.63794, -0.77008 0x3fe4605a692b32a2, 0xbfe8ac871ede1d88, // 0.63676, -0.77106 0x3fe456a858917046, 0xbfe8b485aca2a468, // 0.63558, -0.77204 0x3fe44cf325091dd6, 0xbfe8bc806b151741, // 0.63439, -0.77301 0x3fe4433ad0117b1d, 0xbfe8c47758fa71cb, // 0.63321, -0.77398 0x3fe4397f5b2a4380, 0xbfe8cc6a75184655, // 0.63202, -0.77495 0x3fe42fc0c7d3adbb, 0xbfe8d459be34bdfa, // 0.63083, -0.77592 0x3fe425ff178e6bb1, 0xbfe8dc45331698cc, // 0.62964, -0.77689 0x3fe41c3a4bdbaa26, 0xbfe8e42cd2852e0a, // 0.62845, -0.77785 0x3fe41272663d108c, 0xbfe8ec109b486c49, // 0.62725, -0.77882 0x3fe408a76834c0c0, 0xbfe8f3f08c28d9ac, // 0.62606, -0.77978 0x3fe3fed9534556d4, 0xbfe8fbcca3ef940d, // 0.62486, -0.78074 0x3fe3f50828f1e8d2, 0xbfe903a4e1665133, // 0.62366, -0.78169 0x3fe3eb33eabe0680, 0xbfe90b7943575efe, // 0.62246, -0.78265 0x3fe3e15c9a2db922, 0xbfe91349c88da398, // 0.62126, -0.7836 0x3fe3d78238c58343, 0xbfe91b166fd49da2, // 0.62006, -0.78456 0x3fe3cda4c80a6076, 0xbfe922df37f8646a, // 0.61885, -0.78551 0x3fe3c3c44981c517, 0xbfe92aa41fc5a815, // 0.61765, -0.78646 0x3fe3b9e0beb19e18, 0xbfe932652609b1cf, // 0.61644, -0.7874 0x3fe3affa292050b9, 0xbfe93a22499263fc, // 0.61523, -0.78835 0x3fe3a6108a54ba58, 0xbfe941db892e3a65, // 0.61402, -0.78929 0x3fe39c23e3d63029, 0xbfe94990e3ac4a6c, // 0.61281, -0.79023 0x3fe39234372c7f04, 0xbfe9514257dc4335, // 0.6116, -0.79117 0x3fe3884185dfeb22, 0xbfe958efe48e6dd7, // 0.61038, -0.79211 0x3fe37e4bd1792fe2, 0xbfe960998893ad8c, // 0.60917, -0.79304 0x3fe374531b817f8d, 0xbfe9683f42bd7fe1, // 0.60795, -0.79398 0x3fe36a576582831b, 0xbfe96fe111ddfce0, // 0.60673, -0.79491 0x3fe36058b10659f3, 0xbfe9777ef4c7d742, // 0.60551, -0.79584 0x3fe35656ff9799ae, 0xbfe97f18ea4e5c9e, // 0.60429, -0.79676 0x3fe34c5252c14de1, 0xbfe986aef1457594, // 0.60307, -0.79769 0x3fe3424aac0ef7d6, 0xbfe98e410881a600, // 0.60184, -0.79861 0x3fe338400d0c8e57, 0xbfe995cf2ed80d22, // 0.60062, -0.79954 0x3fe32e3277467d6b, 0xbfe99d59631e65d5, // 0.59939, -0.80046 0x3fe32421ec49a620, 0xbfe9a4dfa42b06b2, // 0.59816, -0.80138 0x3fe31a0e6da35e44, 0xbfe9ac61f0d4e247, // 0.59693, -0.80229 0x3fe30ff7fce17035, 0xbfe9b3e047f38741, // 0.5957, -0.80321 0x3fe305de9b921a94, 0xbfe9bb5aa85f2098, // 0.59447, -0.80412 0x3fe2fbc24b441015, 0xbfe9c2d110f075c3, // 0.59323, -0.80503 0x3fe2f1a30d86773a, 0xbfe9ca438080eadb, // 0.592, -0.80594 0x3fe2e780e3e8ea16, 0xbfe9d1b1f5ea80d6, // 0.59076, -0.80685 0x3fe2dd5bcffb7616, 0xbfe9d91c7007d5a6, // 0.58952, -0.80775 0x3fe2d333d34e9bb7, 0xbfe9e082edb42472, // 0.58828, -0.80866 0x3fe2c908ef734e57, 0xbfe9e7e56dcb45bd, // 0.58704, -0.80956 0x3fe2bedb25faf3ea, 0xbfe9ef43ef29af94, // 0.5858, -0.81046 0x3fe2b4aa787764c4, 0xbfe9f69e70ac75bc, // 0.58455, -0.81135 0x3fe2aa76e87aeb58, 0xbfe9fdf4f13149de, // 0.58331, -0.81225 0x3fe2a040779843fb, 0xbfea05476f967bb5, // 0.58206, -0.81314 0x3fe2960727629ca8, 0xbfea0c95eabaf937, // 0.58081, -0.81404 0x3fe28bcaf96d94ba, 0xbfea13e0617e4ec7, // 0.57956, -0.81493 0x3fe2818bef4d3cba, 0xbfea1b26d2c0a75e, // 0.57831, -0.81581 0x3fe2774a0a961612, 0xbfea22693d62ccb9, // 0.57706, -0.8167 0x3fe26d054cdd12df, 0xbfea29a7a0462782, // 0.57581, -0.81758 0x3fe262bdb7b795a2, 0xbfea30e1fa4cbf81, // 0.57455, -0.81847 0x3fe258734cbb7110, 0xbfea38184a593bc6, // 0.5733, -0.81935 0x3fe24e260d7ee7c9, 0xbfea3f4a8f4ee2d2, // 0.57204, -0.82023 0x3fe243d5fb98ac1f, 0xbfea4678c8119ac8, // 0.57078, -0.8211 0x3fe23983189fdfd5, 0xbfea4da2f385e997, // 0.56952, -0.82198 0x3fe22f2d662c13e1, 0xbfea54c91090f524, // 0.56826, -0.82285 0x3fe224d4e5d5482e, 0xbfea5beb1e188375, // 0.567, -0.82372 0x3fe21a799933eb58, 0xbfea63091b02fae2, // 0.56573, -0.82459 0x3fe2101b81e0da78, 0xbfea6a230637623b, // 0.56447, -0.82546 0x3fe205baa17560d6, 0xbfea7138de9d60f5, // 0.5632, -0.82632 0x3fe1fb56f98b37b8, 0xbfea784aa31d3f55, // 0.56193, -0.82718 0x3fe1f0f08bbc861b, 0xbfea7f58529fe69d, // 0.56066, -0.82805 0x3fe1e68759a3e074, 0xbfea8661ec0ee133, // 0.55939, -0.8289 0x3fe1dc1b64dc4872, 0xbfea8d676e545ad2, // 0.55812, -0.82976 0x3fe1d1acaf012cc2, 0xbfea9468d85b20ae, // 0.55685, -0.83062 0x3fe1c73b39ae68c8, 0xbfea9b66290ea1a3, // 0.55557, -0.83147 0x3fe1bcc706804467, 0xbfeaa25f5f5aee60, // 0.55429, -0.83232 0x3fe1b250171373be, 0xbfeaa9547a2cb98e, // 0.55302, -0.83317 0x3fe1a7d66d0516e6, 0xbfeab045787157ff, // 0.55174, -0.83402 0x3fe19d5a09f2b9b8, 0xbfeab7325916c0d4, // 0.55046, -0.83486 0x3fe192daef7a5386, 0xbfeabe1b1b0b8dac, // 0.54918, -0.83571 0x3fe188591f3a46e5, 0xbfeac4ffbd3efac8, // 0.54789, -0.83655 0x3fe17dd49ad16161, 0xbfeacbe03ea0e73b, // 0.54661, -0.83739 0x3fe1734d63dedb49, 0xbfead2bc9e21d511, // 0.54532, -0.83822 0x3fe168c37c025764, 0xbfead994dab2e979, // 0.54404, -0.83906 0x3fe15e36e4dbe2bc, 0xbfeae068f345ecef, // 0.54275, -0.83989 0x3fe153a7a00bf453, 0xbfeae738e6cd4b67, // 0.54146, -0.84073 0x3fe14915af336ceb, 0xbfeaee04b43c1474, // 0.54017, -0.84155 0x3fe13e8113f396c1, 0xbfeaf4cc5a85fb73, // 0.53888, -0.84238 0x3fe133e9cfee254e, 0xbfeafb8fd89f57b6, // 0.53759, -0.84321 0x3fe1294fe4c5350a, 0xbfeb024f2d7d24a9, // 0.53629, -0.84403 0x3fe11eb3541b4b22, 0xbfeb090a58150200, // 0.535, -0.84485 0x3fe114141f935545, 0xbfeb0fc1575d33db, // 0.5337, -0.84567 0x3fe1097248d0a956, 0xbfeb16742a4ca2f5, // 0.5324, -0.84649 0x3fe0fecdd1770537, 0xbfeb1d22cfdadcc6, // 0.5311, -0.84731 0x3fe0f426bb2a8e7d, 0xbfeb23cd470013b4, // 0.5298, -0.84812 0x3fe0e97d078fd23b, 0xbfeb2a738eb51f33, // 0.5285, -0.84893 0x3fe0ded0b84bc4b5, 0xbfeb3115a5f37bf4, // 0.5272, -0.84974 0x3fe0d421cf03c12b, 0xbfeb37b38bb54c09, // 0.5259, -0.85055 0x3fe0c9704d5d898f, 0xbfeb3e4d3ef55712, // 0.52459, -0.85136 0x3fe0bebc34ff4646, 0xbfeb44e2beaf0a61, // 0.52328, -0.85216 0x3fe0b405878f85ec, 0xbfeb4b7409de7925, // 0.52198, -0.85296 0x3fe0a94c46b53d0b, 0xbfeb52011f805c92, // 0.52067, -0.85376 0x3fe09e907417c5e1, 0xbfeb5889fe921405, // 0.51936, -0.85456 0x3fe093d2115ee018, 0xbfeb5f0ea611a532, // 0.51804, -0.85535 0x3fe089112032b08c, 0xbfeb658f14fdbc47, // 0.51673, -0.85615 0x3fe07e4da23bc102, 0xbfeb6c0b4a55ac17, // 0.51542, -0.85694 0x3fe073879922ffed, 0xbfeb728345196e3e, // 0.5141, -0.85773 0x3fe068bf0691c028, 0xbfeb78f70449a34b, // 0.51279, -0.85852 0x3fe05df3ec31b8b6, 0xbfeb7f6686e792ea, // 0.51147, -0.8593 0x3fe053264bad0483, 0xbfeb85d1cbf52c02, // 0.51015, -0.86009 0x3fe0485626ae221a, 0xbfeb8c38d27504e9, // 0.50883, -0.86087 0x3fe03d837edff370, 0xbfeb929b996a5b7f, // 0.50751, -0.86165 0x3fe032ae55edbd95, 0xbfeb98fa1fd9155e, // 0.50619, -0.86242 0x3fe027d6ad83287e, 0xbfeb9f5464c5bffc, // 0.50486, -0.8632 0x3fe01cfc874c3eb7, 0xbfeba5aa673590d2, // 0.50354, -0.86397 0x3fe0121fe4f56d2c, 0xbfebabfc262e6586, // 0.50221, -0.86474 0x3fe00740c82b82e0, 0xbfebb249a0b6c40d, // 0.50089, -0.86551 0x3fdff8be6537615e, 0xbfebb892d5d5dad5, // 0.49956, -0.86628 0x3fdfe2f64be7120f, 0xbfebbed7c49380ea, // 0.49823, -0.86705 0x3fdfcd2947c1ff57, 0xbfebc5186bf8361d, // 0.4969, -0.86781 0x3fdfb7575c24d2de, 0xbfebcb54cb0d2327, // 0.49557, -0.86857 0x3fdfa1808c6cf7e0, 0xbfebd18ce0dc19d6, // 0.49423, -0.86933 0x3fdf8ba4dbf89aba, 0xbfebd7c0ac6f952a, // 0.4929, -0.87009 0x3fdf75c44e26a852, 0xbfebddf02cd2b983, // 0.49156, -0.87084 0x3fdf5fdee656cda3, 0xbfebe41b611154c1, // 0.49023, -0.8716 0x3fdf49f4a7e97729, 0xbfebea424837de6d, // 0.48889, -0.87235 0x3fdf3405963fd068, 0xbfebf064e15377dd, // 0.48755, -0.87309 0x3fdf1e11b4bbc35c, 0xbfebf6832b71ec5b, // 0.48621, -0.87384 0x3fdf081906bff7fd, 0xbfebfc9d25a1b147, // 0.48487, -0.87459 0x3fdef21b8fafd3b5, 0xbfec02b2cef1e641, // 0.48353, -0.87533 0x3fdedc1952ef78d5, 0xbfec08c426725549, // 0.48218, -0.87607 0x3fdec61253e3c61b, 0xbfec0ed12b3372e9, // 0.48084, -0.87681 0x3fdeb00695f25620, 0xbfec14d9dc465e58, // 0.47949, -0.87755 0x3fde99f61c817eda, 0xbfec1ade38bce19b, // 0.47815, -0.87828 0x3fde83e0eaf85113, 0xbfec20de3fa971b0, // 0.4768, -0.87901 0x3fde6dc704be97e2, 0xbfec26d9f01f2eaf, // 0.47545, -0.87974 0x3fde57a86d3cd824, 0xbfec2cd14931e3f1, // 0.4741, -0.88047 0x3fde418527dc4ffa, 0xbfec32c449f60831, // 0.47275, -0.8812 0x3fde2b5d3806f63b, 0xbfec38b2f180bdb1, // 0.4714, -0.88192 0x3fde1530a12779f4, 0xbfec3e9d3ee7d262, // 0.47004, -0.88264 0x3fddfeff66a941de, 0xbfec44833141c004, // 0.46869, -0.88336 0x3fdde8c98bf86bd6, 0xbfec4a64c7a5ac4c, // 0.46733, -0.88408 0x3fddd28f1481cc58, 0xbfec5042012b6907, // 0.46598, -0.8848 0x3fddbc5003b2edf8, 0xbfec561adceb743e, // 0.46462, -0.88551 0x3fdda60c5cfa10d8, 0xbfec5bef59fef85a, // 0.46326, -0.88622 0x3fdd8fc423c62a25, 0xbfec61bf777fcc48, // 0.4619, -0.88693 0x3fdd79775b86e389, 0xbfec678b3488739b, // 0.46054, -0.88764 0x3fdd632607ac9aa9, 0xbfec6d5290341eb2, // 0.45918, -0.88835 0x3fdd4cd02ba8609c, 0xbfec7315899eaad7, // 0.45781, -0.88905 0x3fdd3675caebf962, 0xbfec78d41fe4a267, // 0.45645, -0.88975 0x3fdd2016e8e9db5b, 0xbfec7e8e52233cf3, // 0.45508, -0.89045 0x3fdd09b389152ec1, 0xbfec84441f785f61, // 0.45372, -0.89115 0x3fdcf34baee1cd21, 0xbfec89f587029c13, // 0.45235, -0.89184 0x3fdcdcdf5dc440ce, 0xbfec8fa287e13305, // 0.45098, -0.89253 0x3fdcc66e9931c45d, 0xbfec954b213411f5, // 0.44961, -0.89322 0x3fdcaff964a0421d, 0xbfec9aef521bd480, // 0.44824, -0.89391 0x3fdc997fc3865388, 0xbfeca08f19b9c449, // 0.44687, -0.8946 0x3fdc8301b95b40c2, 0xbfeca62a772fd919, // 0.4455, -0.89528 0x3fdc6c7f4997000a, 0xbfecabc169a0b901, // 0.44412, -0.89597 0x3fdc55f877b23537, 0xbfecb153f02fb87d, // 0.44275, -0.89665 0x3fdc3f6d47263129, 0xbfecb6e20a00da99, // 0.44137, -0.89732 0x3fdc28ddbb6cf145, 0xbfecbc6bb638d10b, // 0.43999, -0.898 0x3fdc1249d8011ee7, 0xbfecc1f0f3fcfc5c, // 0.43862, -0.89867 0x3fdbfbb1a05e0edc, 0xbfecc771c2736c09, // 0.43724, -0.89935 0x3fdbe51517ffc0d9, 0xbfecccee20c2de9f, // 0.43586, -0.90002 0x3fdbce744262deee, 0xbfecd2660e12c1e6, // 0.43448, -0.90068 0x3fdbb7cf2304bd01, 0xbfecd7d9898b32f6, // 0.43309, -0.90135 0x3fdba125bd63583e, 0xbfecdd489254fe65, // 0.43171, -0.90201 0x3fdb8a7814fd5693, 0xbfece2b32799a060, // 0.43033, -0.90267 0x3fdb73c62d520624, 0xbfece819488344ce, // 0.42894, -0.90333 0x3fdb5d1009e15cc0, 0xbfeced7af43cc773, // 0.42756, -0.90399 0x3fdb4655ae2bf757, 0xbfecf2d829f1b40e, // 0.42617, -0.90464 0x3fdb2f971db31972, 0xbfecf830e8ce467b, // 0.42478, -0.9053 0x3fdb18d45bf8aca6, 0xbfecfd852fff6ad4, // 0.42339, -0.90595 0x3fdb020d6c7f4009, 0xbfed02d4feb2bd92, // 0.422, -0.9066 0x3fdaeb4252ca07ab, 0xbfed082054168bac, // 0.42061, -0.90724 0x3fdad473125cdc08, 0xbfed0d672f59d2b9, // 0.41922, -0.90789 0x3fdabd9faebc3980, 0xbfed12a98fac410c, // 0.41782, -0.90853 0x3fdaa6c82b6d3fc9, 0xbfed17e7743e35dc, // 0.41643, -0.90917 0x3fda8fec8bf5b166, 0xbfed1d20dc40c15c, // 0.41503, -0.90981 0x3fda790cd3dbf31a, 0xbfed2255c6e5a4e1, // 0.41364, -0.91044 0x3fda622906a70b63, 0xbfed2786335f52fc, // 0.41224, -0.91107 0x3fda4b4127dea1e4, 0xbfed2cb220e0ef9f, // 0.41084, -0.91171 0x3fda34553b0afee5, 0xbfed31d98e9e503a, // 0.40944, -0.91234 0x3fda1d6543b50ac0, 0xbfed36fc7bcbfbdc, // 0.40804, -0.91296 0x3fda067145664d57, 0xbfed3c1ae79f2b4e, // 0.40664, -0.91359 0x3fd9ef7943a8ed8a, 0xbfed4134d14dc93a, // 0.40524, -0.91421 0x3fd9d87d4207b0ab, 0xbfed464a380e7242, // 0.40384, -0.91483 0x3fd9c17d440df9f2, 0xbfed4b5b1b187524, // 0.40243, -0.91545 0x3fd9aa794d47c9ee, 0xbfed506779a3d2d9, // 0.40103, -0.91606 0x3fd993716141bdfe, 0xbfed556f52e93eb1, // 0.39962, -0.91668 0x3fd97c6583890fc2, 0xbfed5a72a6221e73, // 0.39822, -0.91729 0x3fd96555b7ab948f, 0xbfed5f7172888a7f, // 0.39681, -0.9179 0x3fd94e420137bce3, 0xbfed646bb7574de5, // 0.3954, -0.91851 0x3fd9372a63bc93d7, 0xbfed696173c9e68b, // 0.39399, -0.91911 0x3fd9200ee2c9be97, 0xbfed6e52a71c8547, // 0.39258, -0.91972 0x3fd908ef81ef7bd1, 0xbfed733f508c0dff, // 0.39117, -0.92032 0x3fd8f1cc44bea329, 0xbfed78276f5617c6, // 0.38976, -0.92092 0x3fd8daa52ec8a4af, 0xbfed7d0b02b8ecf9, // 0.38835, -0.92151 0x3fd8c37a439f884f, 0xbfed81ea09f38b63, // 0.38693, -0.92211 0x3fd8ac4b86d5ed44, 0xbfed86c48445a450, // 0.38552, -0.9227 0x3fd89518fbff098e, 0xbfed8b9a70ef9cb4, // 0.3841, -0.92329 0x3fd87de2a6aea963, 0xbfed906bcf328d46, // 0.38268, -0.92388 0x3fd866a88a792ea0, 0xbfed95389e50429b, // 0.38127, -0.92447 0x3fd84f6aaaf3903f, 0xbfed9a00dd8b3d46, // 0.37985, -0.92505 0x3fd838290bb359c8, 0xbfed9ec48c26b1f3, // 0.37843, -0.92563 0x3fd820e3b04eaac4, 0xbfeda383a9668988, // 0.37701, -0.92621 0x3fd8099a9c5c362d, 0xbfeda83e348f613b, // 0.37559, -0.92679 0x3fd7f24dd37341e3, 0xbfedacf42ce68ab9, // 0.37416, -0.92736 0x3fd7dafd592ba621, 0xbfedb1a591b20c38, // 0.37274, -0.92794 0x3fd7c3a9311dcce7, 0xbfedb6526238a09b, // 0.37132, -0.92851 0x3fd7ac515ee2b172, 0xbfedbafa9dc1b78d, // 0.36989, -0.92907 0x3fd794f5e613dfae, 0xbfedbf9e4395759a, // 0.36847, -0.92964 0x3fd77d96ca4b73a6, 0xbfedc43d52fcb453, // 0.36704, -0.93021 0x3fd766340f2418f6, 0xbfedc8d7cb410260, // 0.36561, -0.93077 0x3fd74ecdb8390a3e, 0xbfedcd6dabaca3a5, // 0.36418, -0.93133 0x3fd73763c9261092, 0xbfedd1fef38a915a, // 0.36276, -0.93188 0x3fd71ff6458782ec, 0xbfedd68ba2267a25, // 0.36133, -0.93244 0x3fd7088530fa459e, 0xbfeddb13b6ccc23d, // 0.3599, -0.93299 0x3fd6f1108f1bc9c5, 0xbfeddf9730ca837b, // 0.35846, -0.93354 0x3fd6d998638a0cb5, 0xbfede4160f6d8d81, // 0.35703, -0.93409 0x3fd6c21cb1e39771, 0xbfede890520465ce, // 0.3556, -0.93464 0x3fd6aa9d7dc77e16, 0xbfeded05f7de47da, // 0.35416, -0.93518 0x3fd6931acad55f51, 0xbfedf177004b2534, // 0.35273, -0.93573 0x3fd67b949cad63ca, 0xbfedf5e36a9ba59c, // 0.35129, -0.93627 0x3fd6640af6f03d9e, 0xbfedfa4b3621271d, // 0.34986, -0.9368 0x3fd64c7ddd3f27c6, 0xbfedfeae622dbe2b, // 0.34842, -0.93734 0x3fd634ed533be58e, 0xbfee030cee1435b8, // 0.34698, -0.93787 0x3fd61d595c88c203, 0xbfee0766d9280f54, // 0.34554, -0.9384 0x3fd605c1fcc88f63, 0xbfee0bbc22bd8349, // 0.3441, -0.93893 0x3fd5ee27379ea693, 0xbfee100cca2980ac, // 0.34266, -0.93946 0x3fd5d68910aee686, 0xbfee1458cec1ad83, // 0.34122, -0.93998 0x3fd5bee78b9db3b6, 0xbfee18a02fdc66d9, // 0.33978, -0.94051 0x3fd5a742ac0ff78d, 0xbfee1ce2ecd0c0d8, // 0.33833, -0.94103 0x3fd58f9a75ab1fdd, 0xbfee212104f686e5, // 0.33689, -0.94154 0x3fd577eeec151e47, 0xbfee255a77a63bb8, // 0.33545, -0.94206 0x3fd5604012f467b4, 0xbfee298f4439197a, // 0.334, -0.94257 0x3fd5488dedeff3be, 0xbfee2dbf6a0911d9, // 0.33255, -0.94308 0x3fd530d880af3c24, 0xbfee31eae870ce25, // 0.33111, -0.94359 0x3fd5191fceda3c35, 0xbfee3611becbaf69, // 0.32966, -0.9441 0x3fd50163dc197047, 0xbfee3a33ec75ce85, // 0.32821, -0.9446 0x3fd4e9a4ac15d520, 0xbfee3e5170cbfc46, // 0.32676, -0.94511 0x3fd4d1e24278e76a, 0xbfee426a4b2bc17e, // 0.32531, -0.94561 0x3fd4ba1ca2eca31c, 0xbfee467e7af35f23, // 0.32386, -0.94611 0x3fd4a253d11b82f3, 0xbfee4a8dff81ce5e, // 0.32241, -0.9466 0x3fd48a87d0b07fd7, 0xbfee4e98d836c0af, // 0.32096, -0.94709 0x3fd472b8a5571054, 0xbfee529f04729ffc, // 0.3195, -0.94759 0x3fd45ae652bb2800, 0xbfee56a083968eb1, // 0.31805, -0.94807 0x3fd44310dc8936f0, 0xbfee5a9d550467d3, // 0.31659, -0.94856 0x3fd42b38466e2928, 0xbfee5e95781ebf1c, // 0.31514, -0.94905 0x3fd4135c94176602, 0xbfee6288ec48e112, // 0.31368, -0.94953 0x3fd3fb7dc932cfa4, 0xbfee6677b0e6d31e, // 0.31222, -0.95001 0x3fd3e39be96ec271, 0xbfee6a61c55d53a7, // 0.31077, -0.95049 0x3fd3cbb6f87a146e, 0xbfee6e472911da27, // 0.30931, -0.95096 0x3fd3b3cefa0414b7, 0xbfee7227db6a9744, // 0.30785, -0.95144 0x3fd39be3f1bc8aef, 0xbfee7603dbce74e9, // 0.30639, -0.95191 0x3fd383f5e353b6aa, 0xbfee79db29a5165a, // 0.30493, -0.95238 0x3fd36c04d27a4edf, 0xbfee7dadc456d850, // 0.30347, -0.95284 0x3fd35410c2e18152, 0xbfee817bab4cd10d, // 0.30201, -0.95331 0x3fd33c19b83af207, 0xbfee8544ddf0d075, // 0.30054, -0.95377 0x3fd3241fb638baaf, 0xbfee89095bad6025, // 0.29908, -0.95423 0x3fd30c22c08d6a13, 0xbfee8cc923edc388, // 0.29762, -0.95469 0x3fd2f422daec0386, 0xbfee9084361df7f3, // 0.29615, -0.95514 0x3fd2dc200907fe51, 0xbfee943a91aab4b4, // 0.29469, -0.95559 0x3fd2c41a4e954520, 0xbfee97ec36016b30, // 0.29322, -0.95605 0x3fd2ac11af483572, 0xbfee9b99229046f8, // 0.29175, -0.95649 0x3fd294062ed59f05, 0xbfee9f4156c62dda, // 0.29028, -0.95694 0x3fd27bf7d0f2c346, 0xbfeea2e4d212c000, // 0.28882, -0.95738 0x3fd263e6995554ba, 0xbfeea68393e65800, // 0.28735, -0.95783 0x3fd24bd28bb37672, 0xbfeeaa1d9bb20af3, // 0.28588, -0.95827 0x3fd233bbabc3bb72, 0xbfeeadb2e8e7a88e, // 0.28441, -0.9587 0x3fd21ba1fd3d2623, 0xbfeeb1437af9bb34, // 0.28294, -0.95914 0x3fd2038583d727bd, 0xbfeeb4cf515b8811, // 0.28146, -0.95957 0x3fd1eb6643499fbb, 0xbfeeb8566b810f2a, // 0.27999, -0.96 0x3fd1d3443f4cdb3d, 0xbfeebbd8c8df0b74, // 0.27852, -0.96043 0x3fd1bb1f7b999480, 0xbfeebf5668eaf2ef, // 0.27705, -0.96086 0x3fd1a2f7fbe8f243, 0xbfeec2cf4b1af6b2, // 0.27557, -0.96128 0x3fd18acdc3f4873a, 0xbfeec6436ee60309, // 0.2741, -0.9617 0x3fd172a0d7765177, 0xbfeec9b2d3c3bf84, // 0.27262, -0.96212 0x3fd15a713a28b9d9, 0xbfeecd1d792c8f10, // 0.27115, -0.96254 0x3fd1423eefc69378, 0xbfeed0835e999009, // 0.26967, -0.96295 0x3fd12a09fc0b1b12, 0xbfeed3e483849c51, // 0.26819, -0.96337 0x3fd111d262b1f677, 0xbfeed740e7684963, // 0.26671, -0.96378 0x3fd0f998277733f7, 0xbfeeda9889bfe86a, // 0.26523, -0.96418 0x3fd0e15b4e1749cd, 0xbfeeddeb6a078651, // 0.26375, -0.96459 0x3fd0c91bda4f158d, 0xbfeee13987bbebdc, // 0.26227, -0.96499 0x3fd0b0d9cfdbdb90, 0xbfeee482e25a9dbc, // 0.26079, -0.96539 0x3fd09895327b465e, 0xbfeee7c77961dc9e, // 0.25931, -0.96579 0x3fd0804e05eb661e, 0xbfeeeb074c50a544, // 0.25783, -0.96619 0x3fd068044deab002, 0xbfeeee425aa6b09a, // 0.25635, -0.96658 0x3fd04fb80e37fdae, 0xbfeef178a3e473c2, // 0.25487, -0.96698 0x3fd037694a928cac, 0xbfeef4aa278b2032, // 0.25338, -0.96737 0x3fd01f1806b9fdd2, 0xbfeef7d6e51ca3c0, // 0.2519, -0.96775 0x3fd006c4466e54af, 0xbfeefafedc1ba8b7, // 0.25041, -0.96814 0x3fcfdcdc1adfedf8, 0xbfeefe220c0b95ec, // 0.24893, -0.96852 0x3fcfac2abeff57ff, 0xbfef014074708ed3, // 0.24744, -0.9689 0x3fcf7b7480bd3801, 0xbfef045a14cf738c, // 0.24596, -0.96928 0x3fcf4ab9679c9f5c, 0xbfef076eecade0fa, // 0.24447, -0.96966 0x3fcf19f97b215f1a, 0xbfef0a7efb9230d7, // 0.24298, -0.97003 0x3fcee934c2d006c7, 0xbfef0d8a410379c5, // 0.24149, -0.9704 0x3fceb86b462de348, 0xbfef1090bc898f5f, // 0.24, -0.97077 0x3fce879d0cc0fdaf, 0xbfef13926dad024e, // 0.23851, -0.97114 0x3fce56ca1e101a1b, 0xbfef168f53f7205d, // 0.23702, -0.9715 0x3fce25f281a2b684, 0xbfef19876ef1f486, // 0.23553, -0.97187 0x3fcdf5163f01099a, 0xbfef1c7abe284708, // 0.23404, -0.97223 0x3fcdc4355db40195, 0xbfef1f6941259d7a, // 0.23255, -0.97258 0x3fcd934fe5454311, 0xbfef2252f7763ada, // 0.23106, -0.97294 0x3fcd6265dd3f27e3, 0xbfef2537e0a71f9f, // 0.22957, -0.97329 0x3fcd31774d2cbdee, 0xbfef2817fc4609ce, // 0.22807, -0.97364 0x3fcd00843c99c5f9, 0xbfef2af349e17507, // 0.22658, -0.97399 0x3fcccf8cb312b286, 0xbfef2dc9c9089a9d, // 0.22508, -0.97434 0x3fcc9e90b824a6a9, 0xbfef309b794b719f, // 0.22359, -0.97468 0x3fcc6d90535d74dc, 0xbfef33685a3aaef0, // 0.22209, -0.97503 0x3fcc3c8b8c4b9dd7, 0xbfef36306b67c556, // 0.2206, -0.97536 0x3fcc0b826a7e4f63, 0xbfef38f3ac64e589, // 0.2191, -0.9757 0x3fcbda74f5856330, 0xbfef3bb21cc4fe47, // 0.2176, -0.97604 0x3fcba96334f15dad, 0xbfef3e6bbc1bbc65, // 0.21611, -0.97637 0x3fcb784d30536cda, 0xbfef412089fd8adc, // 0.21461, -0.9767 0x3fcb4732ef3d6722, 0xbfef43d085ff92dd, // 0.21311, -0.97703 0x3fcb16147941ca2a, 0xbfef467bafb7bbe0, // 0.21161, -0.97735 0x3fcae4f1d5f3b9ab, 0xbfef492206bcabb4, // 0.21011, -0.97768 0x3fcab3cb0ce6fe44, 0xbfef4bc38aa5c694, // 0.20861, -0.978 0x3fca82a025b00451, 0xbfef4e603b0b2f2d, // 0.20711, -0.97832 0x3fca517127e3dabc, 0xbfef50f81785c6b9, // 0.20561, -0.97863 0x3fca203e1b1831da, 0xbfef538b1faf2d07, // 0.20411, -0.97895 0x3fc9ef0706e35a35, 0xbfef56195321c090, // 0.20261, -0.97926 0x3fc9bdcbf2dc4366, 0xbfef58a2b1789e84, // 0.2011, -0.97957 0x3fc98c8ce69a7aec, 0xbfef5b273a4fa2d9, // 0.1996, -0.97988 0x3fc95b49e9b62af9, 0xbfef5da6ed43685d, // 0.1981, -0.98018 0x3fc92a0303c8194f, 0xbfef6021c9f148c2, // 0.19659, -0.98048 0x3fc8f8b83c69a60a, 0xbfef6297cff75cb0, // 0.19509, -0.98079 0x3fc8c7699b34ca7e, 0xbfef6508fef47bd5, // 0.19359, -0.98108 0x3fc8961727c41804, 0xbfef677556883cee, // 0.19208, -0.98138 0x3fc864c0e9b2b6cf, 0xbfef69dcd652f5de, // 0.19057, -0.98167 0x3fc83366e89c64c5, 0xbfef6c3f7df5bbb7, // 0.18907, -0.98196 0x3fc802092c1d744b, 0xbfef6e9d4d1262ca, // 0.18756, -0.98225 0x3fc7d0a7bbd2cb1b, 0xbfef70f6434b7eb7, // 0.18606, -0.98254 0x3fc79f429f59e11d, 0xbfef734a60446279, // 0.18455, -0.98282 0x3fc76dd9de50bf31, 0xbfef7599a3a12077, // 0.18304, -0.98311 0x3fc73c6d8055fe0a, 0xbfef77e40d068a90, // 0.18153, -0.98339 0x3fc70afd8d08c4ff, 0xbfef7a299c1a322a, // 0.18002, -0.98366 0x3fc6d98a0c08c8da, 0xbfef7c6a50826840, // 0.17851, -0.98394 0x3fc6a81304f64ab2, 0xbfef7ea629e63d6e, // 0.177, -0.98421 0x3fc676987f7216b8, 0xbfef80dd27ed8204, // 0.17549, -0.98448 0x3fc6451a831d830d, 0xbfef830f4a40c60c, // 0.17398, -0.98475 0x3fc61399179a6e94, 0xbfef853c9089595e, // 0.17247, -0.98501 0x3fc5e214448b3fc6, 0xbfef8764fa714ba9, // 0.17096, -0.98528 0x3fc5b08c1192e381, 0xbfef898887a36c84, // 0.16945, -0.98554 0x3fc57f008654cbde, 0xbfef8ba737cb4b78, // 0.16794, -0.9858 0x3fc54d71aa74ef02, 0xbfef8dc10a95380d, // 0.16643, -0.98605 0x3fc51bdf8597c5f2, 0xbfef8fd5ffae41db, // 0.16491, -0.98631 0x3fc4ea4a1f624b61, 0xbfef91e616c43891, // 0.1634, -0.98656 0x3fc4b8b17f79fa88, 0xbfef93f14f85ac08, // 0.16189, -0.98681 0x3fc48715ad84cdf5, 0xbfef95f7a9a1ec47, // 0.16037, -0.98706 0x3fc45576b1293e5a, 0xbfef97f924c9099b, // 0.15886, -0.9873 0x3fc423d4920e4166, 0xbfef99f5c0abd496, // 0.15734, -0.98754 0x3fc3f22f57db4893, 0xbfef9bed7cfbde29, // 0.15583, -0.98778 0x3fc3c0870a383ff6, 0xbfef9de0596b77a3, // 0.15431, -0.98802 0x3fc38edbb0cd8d14, 0xbfef9fce55adb2c8, // 0.1528, -0.98826 0x3fc35d2d53440db2, 0xbfefa1b7717661d5, // 0.15128, -0.98849 0x3fc32b7bf94516a7, 0xbfefa39bac7a1791, // 0.14976, -0.98872 0x3fc2f9c7aa7a72af, 0xbfefa57b066e2754, // 0.14825, -0.98895 0x3fc2c8106e8e613a, 0xbfefa7557f08a517, // 0.14673, -0.98918 0x3fc296564d2b953e, 0xbfefa92b1600657c, // 0.14521, -0.9894 0x3fc264994dfd340a, 0xbfefaafbcb0cfddc, // 0.1437, -0.98962 0x3fc232d978aed413, 0xbfefacc79de6c44f, // 0.14218, -0.98984 0x3fc20116d4ec7bce, 0xbfefae8e8e46cfbb, // 0.14066, -0.99006 0x3fc1cf516a62a077, 0xbfefb0509be6f7db, // 0.13914, -0.99027 0x3fc19d8940be24e7, 0xbfefb20dc681d54d, // 0.13762, -0.99049 0x3fc16bbe5fac5865, 0xbfefb3c60dd2c199, // 0.1361, -0.9907 0x3fc139f0cedaf576, 0xbfefb5797195d741, // 0.13458, -0.9909 0x3fc1082095f820b0, 0xbfefb727f187f1c7, // 0.13306, -0.99111 0x3fc0d64dbcb26786, 0xbfefb8d18d66adb7, // 0.13154, -0.99131 0x3fc0a4784ab8bf1d, 0xbfefba7644f068b5, // 0.13002, -0.99151 0x3fc072a047ba831d, 0xbfefbc1617e44186, // 0.1285, -0.99171 0x3fc040c5bb67747e, 0xbfefbdb106021816, // 0.12698, -0.99191 0x3fc00ee8ad6fb85b, 0xbfefbf470f0a8d88, // 0.12545, -0.9921 0x3fbfba124b07ad85, 0xbfefc0d832bf043a, // 0.12393, -0.99229 0x3fbf564e56a9730e, 0xbfefc26470e19fd3, // 0.12241, -0.99248 0x3fbef2858d27561b, 0xbfefc3ebc935454c, // 0.12089, -0.99267 0x3fbe8eb7fde4aa3e, 0xbfefc56e3b7d9af6, // 0.11937, -0.99285 0x3fbe2ae5b8457f77, 0xbfefc6ebc77f0887, // 0.11784, -0.99303 0x3fbdc70ecbae9fc8, 0xbfefc8646cfeb721, // 0.11632, -0.99321 0x3fbd633347858ce4, 0xbfefc9d82bc2915e, // 0.11479, -0.99339 0x3fbcff533b307dc1, 0xbfefcb4703914354, // 0.11327, -0.99356 0x3fbc9b6eb6165c42, 0xbfefccb0f4323aa3, // 0.11175, -0.99374 0x3fbc3785c79ec2d5, 0xbfefce15fd6da67b, // 0.11022, -0.99391 0x3fbbd3987f31fa0e, 0xbfefcf761f0c77a3, // 0.1087, -0.99407 0x3fbb6fa6ec38f64c, 0xbfefd0d158d86087, // 0.10717, -0.99424 0x3fbb0bb11e1d5559, 0xbfefd227aa9bd53b, // 0.10565, -0.9944 0x3fbaa7b724495c04, 0xbfefd37914220b84, // 0.10412, -0.99456 0x3fba43b90e27f3c4, 0xbfefd4c59536fae4, // 0.1026, -0.99472 0x3fb9dfb6eb24a85c, 0xbfefd60d2da75c9e, // 0.10107, -0.99488 0x3fb97bb0caaba56f, 0xbfefd74fdd40abbf, // 0.099544, -0.99503 0x3fb917a6bc29b42c, 0xbfefd88da3d12526, // 0.098017, -0.99518 0x3fb8b398cf0c38e0, 0xbfefd9c68127c78c, // 0.09649, -0.99533 0x3fb84f8712c130a0, 0xbfefdafa7514538c, // 0.094963, -0.99548 0x3fb7eb7196b72ee4, 0xbfefdc297f674ba9, // 0.093436, -0.99563 0x3fb787586a5d5b21, 0xbfefdd539ff1f456, // 0.091909, -0.99577 0x3fb7233b9d236e71, 0xbfefde78d68653fd, // 0.090381, -0.99591 0x3fb6bf1b3e79b129, 0xbfefdf9922f73307, // 0.088854, -0.99604 0x3fb65af75dd0f87b, 0xbfefe0b485181be3, // 0.087326, -0.99618 0x3fb5f6d00a9aa419, 0xbfefe1cafcbd5b09, // 0.085797, -0.99631 0x3fb592a554489bc8, 0xbfefe2dc89bbff08, // 0.084269, -0.99644 0x3fb52e774a4d4d0a, 0xbfefe3e92be9d886, // 0.08274, -0.99657 0x3fb4ca45fc1ba8b6, 0xbfefe4f0e31d7a4a, // 0.081211, -0.9967 0x3fb4661179272096, 0xbfefe5f3af2e3940, // 0.079682, -0.99682 0x3fb401d9d0e3a507, 0xbfefe6f18ff42c84, // 0.078153, -0.99694 0x3fb39d9f12c5a299, 0xbfefe7ea85482d60, // 0.076624, -0.99706 0x3fb339614e41ffa5, 0xbfefe8de8f03d75c, // 0.075094, -0.99718 0x3fb2d52092ce19f6, 0xbfefe9cdad01883a, // 0.073565, -0.99729 0x3fb270dcefdfc45b, 0xbfefeab7df1c6005, // 0.072035, -0.9974 0x3fb20c9674ed444c, 0xbfefeb9d2530410f, // 0.070505, -0.99751 0x3fb1a84d316d4f8a, 0xbfefec7d7f19cffc, // 0.068974, -0.99762 0x3fb1440134d709b2, 0xbfefed58ecb673c4, // 0.067444, -0.99772 0x3fb0dfb28ea201e6, 0xbfefee2f6de455ba, // 0.065913, -0.99783 0x3fb07b614e463064, 0xbfefef0102826191, // 0.064383, -0.99793 0x3fb0170d833bf421, 0xbfefefcdaa704562, // 0.062852, -0.99802 0x3faf656e79f820e0, 0xbfeff095658e71ad, // 0.061321, -0.99812 0x3fae9cbd15ff5527, 0xbfeff15833be1965, // 0.05979, -0.99821 0x3fadd406f9808ec8, 0xbfeff21614e131ed, // 0.058258, -0.9983 0x3fad0b4c436f91d0, 0xbfeff2cf08da7321, // 0.056727, -0.99839 0x3fac428d12c0d7e3, 0xbfeff3830f8d575c, // 0.055195, -0.99848 0x3fab79c986698b78, 0xbfeff43228de1b77, // 0.053664, -0.99856 0x3faab101bd5f8317, 0xbfeff4dc54b1bed3, // 0.052132, -0.99864 0x3fa9e835d6993c87, 0xbfeff58192ee0358, // 0.0506, -0.99872 0x3fa91f65f10dd814, 0xbfeff621e3796d7e, // 0.049068, -0.9988 0x3fa856922bb513c1, 0xbfeff6bd463b444d, // 0.047535, -0.99887 0x3fa78dbaa5874685, 0xbfeff753bb1b9164, // 0.046003, -0.99894 0x3fa6c4df7d7d5b84, 0xbfeff7e5420320f9, // 0.044471, -0.99901 0x3fa5fc00d290cd43, 0xbfeff871dadb81df, // 0.042938, -0.99908 0x3fa5331ec3bba0eb, 0xbfeff8f9858f058b, // 0.041406, -0.99914 0x3fa46a396ff86179, 0xbfeff97c4208c014, // 0.039873, -0.9992 0x3fa3a150f6421afc, 0xbfeff9fa10348837, // 0.03834, -0.99926 0x3fa2d865759455cd, 0xbfeffa72effef75d, // 0.036807, -0.99932 0x3fa20f770ceb11c6, 0xbfeffae6e1556998, // 0.035274, -0.99938 0x3fa14685db42c17e, 0xbfeffb55e425fdae, // 0.033741, -0.99943 0x3fa07d91ff984580, 0xbfeffbbff85f9515, // 0.032208, -0.99948 0x3f9f693731d1cf01, 0xbfeffc251df1d3f8, // 0.030675, -0.99953 0x3f9dd7458c64ab39, 0xbfeffc8554cd213a, // 0.029142, -0.99958 0x3f9c454f4ce53b1c, 0xbfeffce09ce2a679, // 0.027608, -0.99962 0x3f9ab354b1504fca, 0xbfeffd36f624500c, // 0.026075, -0.99966 0x3f992155f7a3667e, 0xbfeffd886084cd0d, // 0.024541, -0.9997 0x3f978f535ddc9f03, 0xbfeffdd4dbf78f52, // 0.023008, -0.99974 0x3f95fd4d21fab226, 0xbfeffe1c6870cb77, // 0.021474, -0.99977 0x3f946b4381fce81c, 0xbfeffe5f05e578db, // 0.01994, -0.9998 0x3f92d936bbe30efd, 0xbfeffe9cb44b51a1, // 0.018407, -0.99983 0x3f9147270dad7132, 0xbfeffed57398d2b7, // 0.016873, -0.99986 0x3f8f6a296ab997ca, 0xbfefff0943c53bd1, // 0.015339, -0.99988 0x3f8c45ffe1e48ad9, 0xbfefff3824c88f6f, // 0.013805, -0.9999 0x3f8921d1fcdec784, 0xbfefff62169b92db, // 0.012272, -0.99992 0x3f85fda037ac05e0, 0xbfefff871937ce2f, // 0.010738, -0.99994 0x3f82d96b0e509703, 0xbfefffa72c978c4f, //0.0092038, -0.99996 0x3f7f6a65f9a2a3c5, 0xbfefffc250b5daef, //0.0076698, -0.99997 0x3f7921f0fe670071, 0xbfefffd8858e8a92, //0.0061359, -0.99998 0x3f72d97822f996bc, 0xbfefffe9cb1e2e8d, //0.0046019, -0.99999 0x3f6921f8becca4ba, 0xbfeffff621621d02, // 0.003068, -1 0x3f5921faaee6472d, 0xbfeffffd88586ee6, // 0.001534, -1 }; /** @par Example code for Floating-point RFFT Twiddle factors Generation: @par
TW = exp(pi/2*i-2*pi*i*[0:L/2-1]/L).' 
@par Real and Imag values are in interleaved fashion */ const float32_t twiddleCoef_rfft_32[32] ARM_DSP_TABLE_ATTRIBUTE = { 0.000000000f, 1.000000000f, 0.195090322f, 0.980785280f, 0.382683432f, 0.923879533f, 0.555570233f, 0.831469612f, 0.707106781f, 0.707106781f, 0.831469612f, 0.555570233f, 0.923879533f, 0.382683432f, 0.980785280f, 0.195090322f, 1.000000000f, 0.000000000f, 0.980785280f, -0.195090322f, 0.923879533f, -0.382683432f, 0.831469612f, -0.555570233f, 0.707106781f, -0.707106781f, 0.555570233f, -0.831469612f, 0.382683432f, -0.923879533f, 0.195090322f, -0.980785280f }; const float32_t twiddleCoef_rfft_64[64] ARM_DSP_TABLE_ATTRIBUTE = { 0.000000000000000f, 1.000000000000000f, 0.098017140329561f, 0.995184726672197f, 0.195090322016128f, 0.980785280403230f, 0.290284677254462f, 0.956940335732209f, 0.382683432365090f, 0.923879532511287f, 0.471396736825998f, 0.881921264348355f, 0.555570233019602f, 0.831469612302545f, 0.634393284163645f, 0.773010453362737f, 0.707106781186547f, 0.707106781186548f, 0.773010453362737f, 0.634393284163645f, 0.831469612302545f, 0.555570233019602f, 0.881921264348355f, 0.471396736825998f, 0.923879532511287f, 0.382683432365090f, 0.956940335732209f, 0.290284677254462f, 0.980785280403230f, 0.195090322016128f, 0.995184726672197f, 0.098017140329561f, 1.000000000000000f, 0.000000000000000f, 0.995184726672197f, -0.098017140329561f, 0.980785280403230f, -0.195090322016128f, 0.956940335732209f, -0.290284677254462f, 0.923879532511287f, -0.382683432365090f, 0.881921264348355f, -0.471396736825998f, 0.831469612302545f, -0.555570233019602f, 0.773010453362737f, -0.634393284163645f, 0.707106781186548f, -0.707106781186547f, 0.634393284163645f, -0.773010453362737f, 0.555570233019602f, -0.831469612302545f, 0.471396736825998f, -0.881921264348355f, 0.382683432365090f, -0.923879532511287f, 0.290284677254462f, -0.956940335732209f, 0.195090322016129f, -0.980785280403230f, 0.098017140329561f, -0.995184726672197f }; const float32_t twiddleCoef_rfft_128[128] ARM_DSP_TABLE_ATTRIBUTE = { 0.000000000f, 1.000000000f, 0.049067674f, 0.998795456f, 0.098017140f, 0.995184727f, 0.146730474f, 0.989176510f, 0.195090322f, 0.980785280f, 0.242980180f, 0.970031253f, 0.290284677f, 0.956940336f, 0.336889853f, 0.941544065f, 0.382683432f, 0.923879533f, 0.427555093f, 0.903989293f, 0.471396737f, 0.881921264f, 0.514102744f, 0.857728610f, 0.555570233f, 0.831469612f, 0.595699304f, 0.803207531f, 0.634393284f, 0.773010453f, 0.671558955f, 0.740951125f, 0.707106781f, 0.707106781f, 0.740951125f, 0.671558955f, 0.773010453f, 0.634393284f, 0.803207531f, 0.595699304f, 0.831469612f, 0.555570233f, 0.857728610f, 0.514102744f, 0.881921264f, 0.471396737f, 0.903989293f, 0.427555093f, 0.923879533f, 0.382683432f, 0.941544065f, 0.336889853f, 0.956940336f, 0.290284677f, 0.970031253f, 0.242980180f, 0.980785280f, 0.195090322f, 0.989176510f, 0.146730474f, 0.995184727f, 0.098017140f, 0.998795456f, 0.049067674f, 1.000000000f, 0.000000000f, 0.998795456f, -0.049067674f, 0.995184727f, -0.098017140f, 0.989176510f, -0.146730474f, 0.980785280f, -0.195090322f, 0.970031253f, -0.242980180f, 0.956940336f, -0.290284677f, 0.941544065f, -0.336889853f, 0.923879533f, -0.382683432f, 0.903989293f, -0.427555093f, 0.881921264f, -0.471396737f, 0.857728610f, -0.514102744f, 0.831469612f, -0.555570233f, 0.803207531f, -0.595699304f, 0.773010453f, -0.634393284f, 0.740951125f, -0.671558955f, 0.707106781f, -0.707106781f, 0.671558955f, -0.740951125f, 0.634393284f, -0.773010453f, 0.595699304f, -0.803207531f, 0.555570233f, -0.831469612f, 0.514102744f, -0.857728610f, 0.471396737f, -0.881921264f, 0.427555093f, -0.903989293f, 0.382683432f, -0.923879533f, 0.336889853f, -0.941544065f, 0.290284677f, -0.956940336f, 0.242980180f, -0.970031253f, 0.195090322f, -0.980785280f, 0.146730474f, -0.989176510f, 0.098017140f, -0.995184727f, 0.049067674f, -0.998795456f }; const float32_t twiddleCoef_rfft_256[256] ARM_DSP_TABLE_ATTRIBUTE = { 0.000000000f, 1.000000000f, 0.024541229f, 0.999698819f, 0.049067674f, 0.998795456f, 0.073564564f, 0.997290457f, 0.098017140f, 0.995184727f, 0.122410675f, 0.992479535f, 0.146730474f, 0.989176510f, 0.170961889f, 0.985277642f, 0.195090322f, 0.980785280f, 0.219101240f, 0.975702130f, 0.242980180f, 0.970031253f, 0.266712757f, 0.963776066f, 0.290284677f, 0.956940336f, 0.313681740f, 0.949528181f, 0.336889853f, 0.941544065f, 0.359895037f, 0.932992799f, 0.382683432f, 0.923879533f, 0.405241314f, 0.914209756f, 0.427555093f, 0.903989293f, 0.449611330f, 0.893224301f, 0.471396737f, 0.881921264f, 0.492898192f, 0.870086991f, 0.514102744f, 0.857728610f, 0.534997620f, 0.844853565f, 0.555570233f, 0.831469612f, 0.575808191f, 0.817584813f, 0.595699304f, 0.803207531f, 0.615231591f, 0.788346428f, 0.634393284f, 0.773010453f, 0.653172843f, 0.757208847f, 0.671558955f, 0.740951125f, 0.689540545f, 0.724247083f, 0.707106781f, 0.707106781f, 0.724247083f, 0.689540545f, 0.740951125f, 0.671558955f, 0.757208847f, 0.653172843f, 0.773010453f, 0.634393284f, 0.788346428f, 0.615231591f, 0.803207531f, 0.595699304f, 0.817584813f, 0.575808191f, 0.831469612f, 0.555570233f, 0.844853565f, 0.534997620f, 0.857728610f, 0.514102744f, 0.870086991f, 0.492898192f, 0.881921264f, 0.471396737f, 0.893224301f, 0.449611330f, 0.903989293f, 0.427555093f, 0.914209756f, 0.405241314f, 0.923879533f, 0.382683432f, 0.932992799f, 0.359895037f, 0.941544065f, 0.336889853f, 0.949528181f, 0.313681740f, 0.956940336f, 0.290284677f, 0.963776066f, 0.266712757f, 0.970031253f, 0.242980180f, 0.975702130f, 0.219101240f, 0.980785280f, 0.195090322f, 0.985277642f, 0.170961889f, 0.989176510f, 0.146730474f, 0.992479535f, 0.122410675f, 0.995184727f, 0.098017140f, 0.997290457f, 0.073564564f, 0.998795456f, 0.049067674f, 0.999698819f, 0.024541229f, 1.000000000f, 0.000000000f, 0.999698819f, -0.024541229f, 0.998795456f, -0.049067674f, 0.997290457f, -0.073564564f, 0.995184727f, -0.098017140f, 0.992479535f, -0.122410675f, 0.989176510f, -0.146730474f, 0.985277642f, -0.170961889f, 0.980785280f, -0.195090322f, 0.975702130f, -0.219101240f, 0.970031253f, -0.242980180f, 0.963776066f, -0.266712757f, 0.956940336f, -0.290284677f, 0.949528181f, -0.313681740f, 0.941544065f, -0.336889853f, 0.932992799f, -0.359895037f, 0.923879533f, -0.382683432f, 0.914209756f, -0.405241314f, 0.903989293f, -0.427555093f, 0.893224301f, -0.449611330f, 0.881921264f, -0.471396737f, 0.870086991f, -0.492898192f, 0.857728610f, -0.514102744f, 0.844853565f, -0.534997620f, 0.831469612f, -0.555570233f, 0.817584813f, -0.575808191f, 0.803207531f, -0.595699304f, 0.788346428f, -0.615231591f, 0.773010453f, -0.634393284f, 0.757208847f, -0.653172843f, 0.740951125f, -0.671558955f, 0.724247083f, -0.689540545f, 0.707106781f, -0.707106781f, 0.689540545f, -0.724247083f, 0.671558955f, -0.740951125f, 0.653172843f, -0.757208847f, 0.634393284f, -0.773010453f, 0.615231591f, -0.788346428f, 0.595699304f, -0.803207531f, 0.575808191f, -0.817584813f, 0.555570233f, -0.831469612f, 0.534997620f, -0.844853565f, 0.514102744f, -0.857728610f, 0.492898192f, -0.870086991f, 0.471396737f, -0.881921264f, 0.449611330f, -0.893224301f, 0.427555093f, -0.903989293f, 0.405241314f, -0.914209756f, 0.382683432f, -0.923879533f, 0.359895037f, -0.932992799f, 0.336889853f, -0.941544065f, 0.313681740f, -0.949528181f, 0.290284677f, -0.956940336f, 0.266712757f, -0.963776066f, 0.242980180f, -0.970031253f, 0.219101240f, -0.975702130f, 0.195090322f, -0.980785280f, 0.170961889f, -0.985277642f, 0.146730474f, -0.989176510f, 0.122410675f, -0.992479535f, 0.098017140f, -0.995184727f, 0.073564564f, -0.997290457f, 0.049067674f, -0.998795456f, 0.024541229f, -0.999698819f }; const float32_t twiddleCoef_rfft_512[512] ARM_DSP_TABLE_ATTRIBUTE = { 0.000000000f, 1.000000000f, 0.012271538f, 0.999924702f, 0.024541229f, 0.999698819f, 0.036807223f, 0.999322385f, 0.049067674f, 0.998795456f, 0.061320736f, 0.998118113f, 0.073564564f, 0.997290457f, 0.085797312f, 0.996312612f, 0.098017140f, 0.995184727f, 0.110222207f, 0.993906970f, 0.122410675f, 0.992479535f, 0.134580709f, 0.990902635f, 0.146730474f, 0.989176510f, 0.158858143f, 0.987301418f, 0.170961889f, 0.985277642f, 0.183039888f, 0.983105487f, 0.195090322f, 0.980785280f, 0.207111376f, 0.978317371f, 0.219101240f, 0.975702130f, 0.231058108f, 0.972939952f, 0.242980180f, 0.970031253f, 0.254865660f, 0.966976471f, 0.266712757f, 0.963776066f, 0.278519689f, 0.960430519f, 0.290284677f, 0.956940336f, 0.302005949f, 0.953306040f, 0.313681740f, 0.949528181f, 0.325310292f, 0.945607325f, 0.336889853f, 0.941544065f, 0.348418680f, 0.937339012f, 0.359895037f, 0.932992799f, 0.371317194f, 0.928506080f, 0.382683432f, 0.923879533f, 0.393992040f, 0.919113852f, 0.405241314f, 0.914209756f, 0.416429560f, 0.909167983f, 0.427555093f, 0.903989293f, 0.438616239f, 0.898674466f, 0.449611330f, 0.893224301f, 0.460538711f, 0.887639620f, 0.471396737f, 0.881921264f, 0.482183772f, 0.876070094f, 0.492898192f, 0.870086991f, 0.503538384f, 0.863972856f, 0.514102744f, 0.857728610f, 0.524589683f, 0.851355193f, 0.534997620f, 0.844853565f, 0.545324988f, 0.838224706f, 0.555570233f, 0.831469612f, 0.565731811f, 0.824589303f, 0.575808191f, 0.817584813f, 0.585797857f, 0.810457198f, 0.595699304f, 0.803207531f, 0.605511041f, 0.795836905f, 0.615231591f, 0.788346428f, 0.624859488f, 0.780737229f, 0.634393284f, 0.773010453f, 0.643831543f, 0.765167266f, 0.653172843f, 0.757208847f, 0.662415778f, 0.749136395f, 0.671558955f, 0.740951125f, 0.680600998f, 0.732654272f, 0.689540545f, 0.724247083f, 0.698376249f, 0.715730825f, 0.707106781f, 0.707106781f, 0.715730825f, 0.698376249f, 0.724247083f, 0.689540545f, 0.732654272f, 0.680600998f, 0.740951125f, 0.671558955f, 0.749136395f, 0.662415778f, 0.757208847f, 0.653172843f, 0.765167266f, 0.643831543f, 0.773010453f, 0.634393284f, 0.780737229f, 0.624859488f, 0.788346428f, 0.615231591f, 0.795836905f, 0.605511041f, 0.803207531f, 0.595699304f, 0.810457198f, 0.585797857f, 0.817584813f, 0.575808191f, 0.824589303f, 0.565731811f, 0.831469612f, 0.555570233f, 0.838224706f, 0.545324988f, 0.844853565f, 0.534997620f, 0.851355193f, 0.524589683f, 0.857728610f, 0.514102744f, 0.863972856f, 0.503538384f, 0.870086991f, 0.492898192f, 0.876070094f, 0.482183772f, 0.881921264f, 0.471396737f, 0.887639620f, 0.460538711f, 0.893224301f, 0.449611330f, 0.898674466f, 0.438616239f, 0.903989293f, 0.427555093f, 0.909167983f, 0.416429560f, 0.914209756f, 0.405241314f, 0.919113852f, 0.393992040f, 0.923879533f, 0.382683432f, 0.928506080f, 0.371317194f, 0.932992799f, 0.359895037f, 0.937339012f, 0.348418680f, 0.941544065f, 0.336889853f, 0.945607325f, 0.325310292f, 0.949528181f, 0.313681740f, 0.953306040f, 0.302005949f, 0.956940336f, 0.290284677f, 0.960430519f, 0.278519689f, 0.963776066f, 0.266712757f, 0.966976471f, 0.254865660f, 0.970031253f, 0.242980180f, 0.972939952f, 0.231058108f, 0.975702130f, 0.219101240f, 0.978317371f, 0.207111376f, 0.980785280f, 0.195090322f, 0.983105487f, 0.183039888f, 0.985277642f, 0.170961889f, 0.987301418f, 0.158858143f, 0.989176510f, 0.146730474f, 0.990902635f, 0.134580709f, 0.992479535f, 0.122410675f, 0.993906970f, 0.110222207f, 0.995184727f, 0.098017140f, 0.996312612f, 0.085797312f, 0.997290457f, 0.073564564f, 0.998118113f, 0.061320736f, 0.998795456f, 0.049067674f, 0.999322385f, 0.036807223f, 0.999698819f, 0.024541229f, 0.999924702f, 0.012271538f, 1.000000000f, 0.000000000f, 0.999924702f, -0.012271538f, 0.999698819f, -0.024541229f, 0.999322385f, -0.036807223f, 0.998795456f, -0.049067674f, 0.998118113f, -0.061320736f, 0.997290457f, -0.073564564f, 0.996312612f, -0.085797312f, 0.995184727f, -0.098017140f, 0.993906970f, -0.110222207f, 0.992479535f, -0.122410675f, 0.990902635f, -0.134580709f, 0.989176510f, -0.146730474f, 0.987301418f, -0.158858143f, 0.985277642f, -0.170961889f, 0.983105487f, -0.183039888f, 0.980785280f, -0.195090322f, 0.978317371f, -0.207111376f, 0.975702130f, -0.219101240f, 0.972939952f, -0.231058108f, 0.970031253f, -0.242980180f, 0.966976471f, -0.254865660f, 0.963776066f, -0.266712757f, 0.960430519f, -0.278519689f, 0.956940336f, -0.290284677f, 0.953306040f, -0.302005949f, 0.949528181f, -0.313681740f, 0.945607325f, -0.325310292f, 0.941544065f, -0.336889853f, 0.937339012f, -0.348418680f, 0.932992799f, -0.359895037f, 0.928506080f, -0.371317194f, 0.923879533f, -0.382683432f, 0.919113852f, -0.393992040f, 0.914209756f, -0.405241314f, 0.909167983f, -0.416429560f, 0.903989293f, -0.427555093f, 0.898674466f, -0.438616239f, 0.893224301f, -0.449611330f, 0.887639620f, -0.460538711f, 0.881921264f, -0.471396737f, 0.876070094f, -0.482183772f, 0.870086991f, -0.492898192f, 0.863972856f, -0.503538384f, 0.857728610f, -0.514102744f, 0.851355193f, -0.524589683f, 0.844853565f, -0.534997620f, 0.838224706f, -0.545324988f, 0.831469612f, -0.555570233f, 0.824589303f, -0.565731811f, 0.817584813f, -0.575808191f, 0.810457198f, -0.585797857f, 0.803207531f, -0.595699304f, 0.795836905f, -0.605511041f, 0.788346428f, -0.615231591f, 0.780737229f, -0.624859488f, 0.773010453f, -0.634393284f, 0.765167266f, -0.643831543f, 0.757208847f, -0.653172843f, 0.749136395f, -0.662415778f, 0.740951125f, -0.671558955f, 0.732654272f, -0.680600998f, 0.724247083f, -0.689540545f, 0.715730825f, -0.698376249f, 0.707106781f, -0.707106781f, 0.698376249f, -0.715730825f, 0.689540545f, -0.724247083f, 0.680600998f, -0.732654272f, 0.671558955f, -0.740951125f, 0.662415778f, -0.749136395f, 0.653172843f, -0.757208847f, 0.643831543f, -0.765167266f, 0.634393284f, -0.773010453f, 0.624859488f, -0.780737229f, 0.615231591f, -0.788346428f, 0.605511041f, -0.795836905f, 0.595699304f, -0.803207531f, 0.585797857f, -0.810457198f, 0.575808191f, -0.817584813f, 0.565731811f, -0.824589303f, 0.555570233f, -0.831469612f, 0.545324988f, -0.838224706f, 0.534997620f, -0.844853565f, 0.524589683f, -0.851355193f, 0.514102744f, -0.857728610f, 0.503538384f, -0.863972856f, 0.492898192f, -0.870086991f, 0.482183772f, -0.876070094f, 0.471396737f, -0.881921264f, 0.460538711f, -0.887639620f, 0.449611330f, -0.893224301f, 0.438616239f, -0.898674466f, 0.427555093f, -0.903989293f, 0.416429560f, -0.909167983f, 0.405241314f, -0.914209756f, 0.393992040f, -0.919113852f, 0.382683432f, -0.923879533f, 0.371317194f, -0.928506080f, 0.359895037f, -0.932992799f, 0.348418680f, -0.937339012f, 0.336889853f, -0.941544065f, 0.325310292f, -0.945607325f, 0.313681740f, -0.949528181f, 0.302005949f, -0.953306040f, 0.290284677f, -0.956940336f, 0.278519689f, -0.960430519f, 0.266712757f, -0.963776066f, 0.254865660f, -0.966976471f, 0.242980180f, -0.970031253f, 0.231058108f, -0.972939952f, 0.219101240f, -0.975702130f, 0.207111376f, -0.978317371f, 0.195090322f, -0.980785280f, 0.183039888f, -0.983105487f, 0.170961889f, -0.985277642f, 0.158858143f, -0.987301418f, 0.146730474f, -0.989176510f, 0.134580709f, -0.990902635f, 0.122410675f, -0.992479535f, 0.110222207f, -0.993906970f, 0.098017140f, -0.995184727f, 0.085797312f, -0.996312612f, 0.073564564f, -0.997290457f, 0.061320736f, -0.998118113f, 0.049067674f, -0.998795456f, 0.036807223f, -0.999322385f, 0.024541229f, -0.999698819f, 0.012271538f, -0.999924702f }; const float32_t twiddleCoef_rfft_1024[1024] ARM_DSP_TABLE_ATTRIBUTE = { 0.000000000f, 1.000000000f, 0.006135885f, 0.999981175f, 0.012271538f, 0.999924702f, 0.018406730f, 0.999830582f, 0.024541229f, 0.999698819f, 0.030674803f, 0.999529418f, 0.036807223f, 0.999322385f, 0.042938257f, 0.999077728f, 0.049067674f, 0.998795456f, 0.055195244f, 0.998475581f, 0.061320736f, 0.998118113f, 0.067443920f, 0.997723067f, 0.073564564f, 0.997290457f, 0.079682438f, 0.996820299f, 0.085797312f, 0.996312612f, 0.091908956f, 0.995767414f, 0.098017140f, 0.995184727f, 0.104121634f, 0.994564571f, 0.110222207f, 0.993906970f, 0.116318631f, 0.993211949f, 0.122410675f, 0.992479535f, 0.128498111f, 0.991709754f, 0.134580709f, 0.990902635f, 0.140658239f, 0.990058210f, 0.146730474f, 0.989176510f, 0.152797185f, 0.988257568f, 0.158858143f, 0.987301418f, 0.164913120f, 0.986308097f, 0.170961889f, 0.985277642f, 0.177004220f, 0.984210092f, 0.183039888f, 0.983105487f, 0.189068664f, 0.981963869f, 0.195090322f, 0.980785280f, 0.201104635f, 0.979569766f, 0.207111376f, 0.978317371f, 0.213110320f, 0.977028143f, 0.219101240f, 0.975702130f, 0.225083911f, 0.974339383f, 0.231058108f, 0.972939952f, 0.237023606f, 0.971503891f, 0.242980180f, 0.970031253f, 0.248927606f, 0.968522094f, 0.254865660f, 0.966976471f, 0.260794118f, 0.965394442f, 0.266712757f, 0.963776066f, 0.272621355f, 0.962121404f, 0.278519689f, 0.960430519f, 0.284407537f, 0.958703475f, 0.290284677f, 0.956940336f, 0.296150888f, 0.955141168f, 0.302005949f, 0.953306040f, 0.307849640f, 0.951435021f, 0.313681740f, 0.949528181f, 0.319502031f, 0.947585591f, 0.325310292f, 0.945607325f, 0.331106306f, 0.943593458f, 0.336889853f, 0.941544065f, 0.342660717f, 0.939459224f, 0.348418680f, 0.937339012f, 0.354163525f, 0.935183510f, 0.359895037f, 0.932992799f, 0.365612998f, 0.930766961f, 0.371317194f, 0.928506080f, 0.377007410f, 0.926210242f, 0.382683432f, 0.923879533f, 0.388345047f, 0.921514039f, 0.393992040f, 0.919113852f, 0.399624200f, 0.916679060f, 0.405241314f, 0.914209756f, 0.410843171f, 0.911706032f, 0.416429560f, 0.909167983f, 0.422000271f, 0.906595705f, 0.427555093f, 0.903989293f, 0.433093819f, 0.901348847f, 0.438616239f, 0.898674466f, 0.444122145f, 0.895966250f, 0.449611330f, 0.893224301f, 0.455083587f, 0.890448723f, 0.460538711f, 0.887639620f, 0.465976496f, 0.884797098f, 0.471396737f, 0.881921264f, 0.476799230f, 0.879012226f, 0.482183772f, 0.876070094f, 0.487550160f, 0.873094978f, 0.492898192f, 0.870086991f, 0.498227667f, 0.867046246f, 0.503538384f, 0.863972856f, 0.508830143f, 0.860866939f, 0.514102744f, 0.857728610f, 0.519355990f, 0.854557988f, 0.524589683f, 0.851355193f, 0.529803625f, 0.848120345f, 0.534997620f, 0.844853565f, 0.540171473f, 0.841554977f, 0.545324988f, 0.838224706f, 0.550457973f, 0.834862875f, 0.555570233f, 0.831469612f, 0.560661576f, 0.828045045f, 0.565731811f, 0.824589303f, 0.570780746f, 0.821102515f, 0.575808191f, 0.817584813f, 0.580813958f, 0.814036330f, 0.585797857f, 0.810457198f, 0.590759702f, 0.806847554f, 0.595699304f, 0.803207531f, 0.600616479f, 0.799537269f, 0.605511041f, 0.795836905f, 0.610382806f, 0.792106577f, 0.615231591f, 0.788346428f, 0.620057212f, 0.784556597f, 0.624859488f, 0.780737229f, 0.629638239f, 0.776888466f, 0.634393284f, 0.773010453f, 0.639124445f, 0.769103338f, 0.643831543f, 0.765167266f, 0.648514401f, 0.761202385f, 0.653172843f, 0.757208847f, 0.657806693f, 0.753186799f, 0.662415778f, 0.749136395f, 0.666999922f, 0.745057785f, 0.671558955f, 0.740951125f, 0.676092704f, 0.736816569f, 0.680600998f, 0.732654272f, 0.685083668f, 0.728464390f, 0.689540545f, 0.724247083f, 0.693971461f, 0.720002508f, 0.698376249f, 0.715730825f, 0.702754744f, 0.711432196f, 0.707106781f, 0.707106781f, 0.711432196f, 0.702754744f, 0.715730825f, 0.698376249f, 0.720002508f, 0.693971461f, 0.724247083f, 0.689540545f, 0.728464390f, 0.685083668f, 0.732654272f, 0.680600998f, 0.736816569f, 0.676092704f, 0.740951125f, 0.671558955f, 0.745057785f, 0.666999922f, 0.749136395f, 0.662415778f, 0.753186799f, 0.657806693f, 0.757208847f, 0.653172843f, 0.761202385f, 0.648514401f, 0.765167266f, 0.643831543f, 0.769103338f, 0.639124445f, 0.773010453f, 0.634393284f, 0.776888466f, 0.629638239f, 0.780737229f, 0.624859488f, 0.784556597f, 0.620057212f, 0.788346428f, 0.615231591f, 0.792106577f, 0.610382806f, 0.795836905f, 0.605511041f, 0.799537269f, 0.600616479f, 0.803207531f, 0.595699304f, 0.806847554f, 0.590759702f, 0.810457198f, 0.585797857f, 0.814036330f, 0.580813958f, 0.817584813f, 0.575808191f, 0.821102515f, 0.570780746f, 0.824589303f, 0.565731811f, 0.828045045f, 0.560661576f, 0.831469612f, 0.555570233f, 0.834862875f, 0.550457973f, 0.838224706f, 0.545324988f, 0.841554977f, 0.540171473f, 0.844853565f, 0.534997620f, 0.848120345f, 0.529803625f, 0.851355193f, 0.524589683f, 0.854557988f, 0.519355990f, 0.857728610f, 0.514102744f, 0.860866939f, 0.508830143f, 0.863972856f, 0.503538384f, 0.867046246f, 0.498227667f, 0.870086991f, 0.492898192f, 0.873094978f, 0.487550160f, 0.876070094f, 0.482183772f, 0.879012226f, 0.476799230f, 0.881921264f, 0.471396737f, 0.884797098f, 0.465976496f, 0.887639620f, 0.460538711f, 0.890448723f, 0.455083587f, 0.893224301f, 0.449611330f, 0.895966250f, 0.444122145f, 0.898674466f, 0.438616239f, 0.901348847f, 0.433093819f, 0.903989293f, 0.427555093f, 0.906595705f, 0.422000271f, 0.909167983f, 0.416429560f, 0.911706032f, 0.410843171f, 0.914209756f, 0.405241314f, 0.916679060f, 0.399624200f, 0.919113852f, 0.393992040f, 0.921514039f, 0.388345047f, 0.923879533f, 0.382683432f, 0.926210242f, 0.377007410f, 0.928506080f, 0.371317194f, 0.930766961f, 0.365612998f, 0.932992799f, 0.359895037f, 0.935183510f, 0.354163525f, 0.937339012f, 0.348418680f, 0.939459224f, 0.342660717f, 0.941544065f, 0.336889853f, 0.943593458f, 0.331106306f, 0.945607325f, 0.325310292f, 0.947585591f, 0.319502031f, 0.949528181f, 0.313681740f, 0.951435021f, 0.307849640f, 0.953306040f, 0.302005949f, 0.955141168f, 0.296150888f, 0.956940336f, 0.290284677f, 0.958703475f, 0.284407537f, 0.960430519f, 0.278519689f, 0.962121404f, 0.272621355f, 0.963776066f, 0.266712757f, 0.965394442f, 0.260794118f, 0.966976471f, 0.254865660f, 0.968522094f, 0.248927606f, 0.970031253f, 0.242980180f, 0.971503891f, 0.237023606f, 0.972939952f, 0.231058108f, 0.974339383f, 0.225083911f, 0.975702130f, 0.219101240f, 0.977028143f, 0.213110320f, 0.978317371f, 0.207111376f, 0.979569766f, 0.201104635f, 0.980785280f, 0.195090322f, 0.981963869f, 0.189068664f, 0.983105487f, 0.183039888f, 0.984210092f, 0.177004220f, 0.985277642f, 0.170961889f, 0.986308097f, 0.164913120f, 0.987301418f, 0.158858143f, 0.988257568f, 0.152797185f, 0.989176510f, 0.146730474f, 0.990058210f, 0.140658239f, 0.990902635f, 0.134580709f, 0.991709754f, 0.128498111f, 0.992479535f, 0.122410675f, 0.993211949f, 0.116318631f, 0.993906970f, 0.110222207f, 0.994564571f, 0.104121634f, 0.995184727f, 0.098017140f, 0.995767414f, 0.091908956f, 0.996312612f, 0.085797312f, 0.996820299f, 0.079682438f, 0.997290457f, 0.073564564f, 0.997723067f, 0.067443920f, 0.998118113f, 0.061320736f, 0.998475581f, 0.055195244f, 0.998795456f, 0.049067674f, 0.999077728f, 0.042938257f, 0.999322385f, 0.036807223f, 0.999529418f, 0.030674803f, 0.999698819f, 0.024541229f, 0.999830582f, 0.018406730f, 0.999924702f, 0.012271538f, 0.999981175f, 0.006135885f, 1.000000000f, 0.000000000f, 0.999981175f, -0.006135885f, 0.999924702f, -0.012271538f, 0.999830582f, -0.018406730f, 0.999698819f, -0.024541229f, 0.999529418f, -0.030674803f, 0.999322385f, -0.036807223f, 0.999077728f, -0.042938257f, 0.998795456f, -0.049067674f, 0.998475581f, -0.055195244f, 0.998118113f, -0.061320736f, 0.997723067f, -0.067443920f, 0.997290457f, -0.073564564f, 0.996820299f, -0.079682438f, 0.996312612f, -0.085797312f, 0.995767414f, -0.091908956f, 0.995184727f, -0.098017140f, 0.994564571f, -0.104121634f, 0.993906970f, -0.110222207f, 0.993211949f, -0.116318631f, 0.992479535f, -0.122410675f, 0.991709754f, -0.128498111f, 0.990902635f, -0.134580709f, 0.990058210f, -0.140658239f, 0.989176510f, -0.146730474f, 0.988257568f, -0.152797185f, 0.987301418f, -0.158858143f, 0.986308097f, -0.164913120f, 0.985277642f, -0.170961889f, 0.984210092f, -0.177004220f, 0.983105487f, -0.183039888f, 0.981963869f, -0.189068664f, 0.980785280f, -0.195090322f, 0.979569766f, -0.201104635f, 0.978317371f, -0.207111376f, 0.977028143f, -0.213110320f, 0.975702130f, -0.219101240f, 0.974339383f, -0.225083911f, 0.972939952f, -0.231058108f, 0.971503891f, -0.237023606f, 0.970031253f, -0.242980180f, 0.968522094f, -0.248927606f, 0.966976471f, -0.254865660f, 0.965394442f, -0.260794118f, 0.963776066f, -0.266712757f, 0.962121404f, -0.272621355f, 0.960430519f, -0.278519689f, 0.958703475f, -0.284407537f, 0.956940336f, -0.290284677f, 0.955141168f, -0.296150888f, 0.953306040f, -0.302005949f, 0.951435021f, -0.307849640f, 0.949528181f, -0.313681740f, 0.947585591f, -0.319502031f, 0.945607325f, -0.325310292f, 0.943593458f, -0.331106306f, 0.941544065f, -0.336889853f, 0.939459224f, -0.342660717f, 0.937339012f, -0.348418680f, 0.935183510f, -0.354163525f, 0.932992799f, -0.359895037f, 0.930766961f, -0.365612998f, 0.928506080f, -0.371317194f, 0.926210242f, -0.377007410f, 0.923879533f, -0.382683432f, 0.921514039f, -0.388345047f, 0.919113852f, -0.393992040f, 0.916679060f, -0.399624200f, 0.914209756f, -0.405241314f, 0.911706032f, -0.410843171f, 0.909167983f, -0.416429560f, 0.906595705f, -0.422000271f, 0.903989293f, -0.427555093f, 0.901348847f, -0.433093819f, 0.898674466f, -0.438616239f, 0.895966250f, -0.444122145f, 0.893224301f, -0.449611330f, 0.890448723f, -0.455083587f, 0.887639620f, -0.460538711f, 0.884797098f, -0.465976496f, 0.881921264f, -0.471396737f, 0.879012226f, -0.476799230f, 0.876070094f, -0.482183772f, 0.873094978f, -0.487550160f, 0.870086991f, -0.492898192f, 0.867046246f, -0.498227667f, 0.863972856f, -0.503538384f, 0.860866939f, -0.508830143f, 0.857728610f, -0.514102744f, 0.854557988f, -0.519355990f, 0.851355193f, -0.524589683f, 0.848120345f, -0.529803625f, 0.844853565f, -0.534997620f, 0.841554977f, -0.540171473f, 0.838224706f, -0.545324988f, 0.834862875f, -0.550457973f, 0.831469612f, -0.555570233f, 0.828045045f, -0.560661576f, 0.824589303f, -0.565731811f, 0.821102515f, -0.570780746f, 0.817584813f, -0.575808191f, 0.814036330f, -0.580813958f, 0.810457198f, -0.585797857f, 0.806847554f, -0.590759702f, 0.803207531f, -0.595699304f, 0.799537269f, -0.600616479f, 0.795836905f, -0.605511041f, 0.792106577f, -0.610382806f, 0.788346428f, -0.615231591f, 0.784556597f, -0.620057212f, 0.780737229f, -0.624859488f, 0.776888466f, -0.629638239f, 0.773010453f, -0.634393284f, 0.769103338f, -0.639124445f, 0.765167266f, -0.643831543f, 0.761202385f, -0.648514401f, 0.757208847f, -0.653172843f, 0.753186799f, -0.657806693f, 0.749136395f, -0.662415778f, 0.745057785f, -0.666999922f, 0.740951125f, -0.671558955f, 0.736816569f, -0.676092704f, 0.732654272f, -0.680600998f, 0.728464390f, -0.685083668f, 0.724247083f, -0.689540545f, 0.720002508f, -0.693971461f, 0.715730825f, -0.698376249f, 0.711432196f, -0.702754744f, 0.707106781f, -0.707106781f, 0.702754744f, -0.711432196f, 0.698376249f, -0.715730825f, 0.693971461f, -0.720002508f, 0.689540545f, -0.724247083f, 0.685083668f, -0.728464390f, 0.680600998f, -0.732654272f, 0.676092704f, -0.736816569f, 0.671558955f, -0.740951125f, 0.666999922f, -0.745057785f, 0.662415778f, -0.749136395f, 0.657806693f, -0.753186799f, 0.653172843f, -0.757208847f, 0.648514401f, -0.761202385f, 0.643831543f, -0.765167266f, 0.639124445f, -0.769103338f, 0.634393284f, -0.773010453f, 0.629638239f, -0.776888466f, 0.624859488f, -0.780737229f, 0.620057212f, -0.784556597f, 0.615231591f, -0.788346428f, 0.610382806f, -0.792106577f, 0.605511041f, -0.795836905f, 0.600616479f, -0.799537269f, 0.595699304f, -0.803207531f, 0.590759702f, -0.806847554f, 0.585797857f, -0.810457198f, 0.580813958f, -0.814036330f, 0.575808191f, -0.817584813f, 0.570780746f, -0.821102515f, 0.565731811f, -0.824589303f, 0.560661576f, -0.828045045f, 0.555570233f, -0.831469612f, 0.550457973f, -0.834862875f, 0.545324988f, -0.838224706f, 0.540171473f, -0.841554977f, 0.534997620f, -0.844853565f, 0.529803625f, -0.848120345f, 0.524589683f, -0.851355193f, 0.519355990f, -0.854557988f, 0.514102744f, -0.857728610f, 0.508830143f, -0.860866939f, 0.503538384f, -0.863972856f, 0.498227667f, -0.867046246f, 0.492898192f, -0.870086991f, 0.487550160f, -0.873094978f, 0.482183772f, -0.876070094f, 0.476799230f, -0.879012226f, 0.471396737f, -0.881921264f, 0.465976496f, -0.884797098f, 0.460538711f, -0.887639620f, 0.455083587f, -0.890448723f, 0.449611330f, -0.893224301f, 0.444122145f, -0.895966250f, 0.438616239f, -0.898674466f, 0.433093819f, -0.901348847f, 0.427555093f, -0.903989293f, 0.422000271f, -0.906595705f, 0.416429560f, -0.909167983f, 0.410843171f, -0.911706032f, 0.405241314f, -0.914209756f, 0.399624200f, -0.916679060f, 0.393992040f, -0.919113852f, 0.388345047f, -0.921514039f, 0.382683432f, -0.923879533f, 0.377007410f, -0.926210242f, 0.371317194f, -0.928506080f, 0.365612998f, -0.930766961f, 0.359895037f, -0.932992799f, 0.354163525f, -0.935183510f, 0.348418680f, -0.937339012f, 0.342660717f, -0.939459224f, 0.336889853f, -0.941544065f, 0.331106306f, -0.943593458f, 0.325310292f, -0.945607325f, 0.319502031f, -0.947585591f, 0.313681740f, -0.949528181f, 0.307849640f, -0.951435021f, 0.302005949f, -0.953306040f, 0.296150888f, -0.955141168f, 0.290284677f, -0.956940336f, 0.284407537f, -0.958703475f, 0.278519689f, -0.960430519f, 0.272621355f, -0.962121404f, 0.266712757f, -0.963776066f, 0.260794118f, -0.965394442f, 0.254865660f, -0.966976471f, 0.248927606f, -0.968522094f, 0.242980180f, -0.970031253f, 0.237023606f, -0.971503891f, 0.231058108f, -0.972939952f, 0.225083911f, -0.974339383f, 0.219101240f, -0.975702130f, 0.213110320f, -0.977028143f, 0.207111376f, -0.978317371f, 0.201104635f, -0.979569766f, 0.195090322f, -0.980785280f, 0.189068664f, -0.981963869f, 0.183039888f, -0.983105487f, 0.177004220f, -0.984210092f, 0.170961889f, -0.985277642f, 0.164913120f, -0.986308097f, 0.158858143f, -0.987301418f, 0.152797185f, -0.988257568f, 0.146730474f, -0.989176510f, 0.140658239f, -0.990058210f, 0.134580709f, -0.990902635f, 0.128498111f, -0.991709754f, 0.122410675f, -0.992479535f, 0.116318631f, -0.993211949f, 0.110222207f, -0.993906970f, 0.104121634f, -0.994564571f, 0.098017140f, -0.995184727f, 0.091908956f, -0.995767414f, 0.085797312f, -0.996312612f, 0.079682438f, -0.996820299f, 0.073564564f, -0.997290457f, 0.067443920f, -0.997723067f, 0.061320736f, -0.998118113f, 0.055195244f, -0.998475581f, 0.049067674f, -0.998795456f, 0.042938257f, -0.999077728f, 0.036807223f, -0.999322385f, 0.030674803f, -0.999529418f, 0.024541229f, -0.999698819f, 0.018406730f, -0.999830582f, 0.012271538f, -0.999924702f, 0.006135885f, -0.999981175f }; const float32_t twiddleCoef_rfft_2048[2048] ARM_DSP_TABLE_ATTRIBUTE = { 0.000000000f, 1.000000000f, 0.003067957f, 0.999995294f, 0.006135885f, 0.999981175f, 0.009203755f, 0.999957645f, 0.012271538f, 0.999924702f, 0.015339206f, 0.999882347f, 0.018406730f, 0.999830582f, 0.021474080f, 0.999769405f, 0.024541229f, 0.999698819f, 0.027608146f, 0.999618822f, 0.030674803f, 0.999529418f, 0.033741172f, 0.999430605f, 0.036807223f, 0.999322385f, 0.039872928f, 0.999204759f, 0.042938257f, 0.999077728f, 0.046003182f, 0.998941293f, 0.049067674f, 0.998795456f, 0.052131705f, 0.998640218f, 0.055195244f, 0.998475581f, 0.058258265f, 0.998301545f, 0.061320736f, 0.998118113f, 0.064382631f, 0.997925286f, 0.067443920f, 0.997723067f, 0.070504573f, 0.997511456f, 0.073564564f, 0.997290457f, 0.076623861f, 0.997060070f, 0.079682438f, 0.996820299f, 0.082740265f, 0.996571146f, 0.085797312f, 0.996312612f, 0.088853553f, 0.996044701f, 0.091908956f, 0.995767414f, 0.094963495f, 0.995480755f, 0.098017140f, 0.995184727f, 0.101069863f, 0.994879331f, 0.104121634f, 0.994564571f, 0.107172425f, 0.994240449f, 0.110222207f, 0.993906970f, 0.113270952f, 0.993564136f, 0.116318631f, 0.993211949f, 0.119365215f, 0.992850414f, 0.122410675f, 0.992479535f, 0.125454983f, 0.992099313f, 0.128498111f, 0.991709754f, 0.131540029f, 0.991310860f, 0.134580709f, 0.990902635f, 0.137620122f, 0.990485084f, 0.140658239f, 0.990058210f, 0.143695033f, 0.989622017f, 0.146730474f, 0.989176510f, 0.149764535f, 0.988721692f, 0.152797185f, 0.988257568f, 0.155828398f, 0.987784142f, 0.158858143f, 0.987301418f, 0.161886394f, 0.986809402f, 0.164913120f, 0.986308097f, 0.167938295f, 0.985797509f, 0.170961889f, 0.985277642f, 0.173983873f, 0.984748502f, 0.177004220f, 0.984210092f, 0.180022901f, 0.983662419f, 0.183039888f, 0.983105487f, 0.186055152f, 0.982539302f, 0.189068664f, 0.981963869f, 0.192080397f, 0.981379193f, 0.195090322f, 0.980785280f, 0.198098411f, 0.980182136f, 0.201104635f, 0.979569766f, 0.204108966f, 0.978948175f, 0.207111376f, 0.978317371f, 0.210111837f, 0.977677358f, 0.213110320f, 0.977028143f, 0.216106797f, 0.976369731f, 0.219101240f, 0.975702130f, 0.222093621f, 0.975025345f, 0.225083911f, 0.974339383f, 0.228072083f, 0.973644250f, 0.231058108f, 0.972939952f, 0.234041959f, 0.972226497f, 0.237023606f, 0.971503891f, 0.240003022f, 0.970772141f, 0.242980180f, 0.970031253f, 0.245955050f, 0.969281235f, 0.248927606f, 0.968522094f, 0.251897818f, 0.967753837f, 0.254865660f, 0.966976471f, 0.257831102f, 0.966190003f, 0.260794118f, 0.965394442f, 0.263754679f, 0.964589793f, 0.266712757f, 0.963776066f, 0.269668326f, 0.962953267f, 0.272621355f, 0.962121404f, 0.275571819f, 0.961280486f, 0.278519689f, 0.960430519f, 0.281464938f, 0.959571513f, 0.284407537f, 0.958703475f, 0.287347460f, 0.957826413f, 0.290284677f, 0.956940336f, 0.293219163f, 0.956045251f, 0.296150888f, 0.955141168f, 0.299079826f, 0.954228095f, 0.302005949f, 0.953306040f, 0.304929230f, 0.952375013f, 0.307849640f, 0.951435021f, 0.310767153f, 0.950486074f, 0.313681740f, 0.949528181f, 0.316593376f, 0.948561350f, 0.319502031f, 0.947585591f, 0.322407679f, 0.946600913f, 0.325310292f, 0.945607325f, 0.328209844f, 0.944604837f, 0.331106306f, 0.943593458f, 0.333999651f, 0.942573198f, 0.336889853f, 0.941544065f, 0.339776884f, 0.940506071f, 0.342660717f, 0.939459224f, 0.345541325f, 0.938403534f, 0.348418680f, 0.937339012f, 0.351292756f, 0.936265667f, 0.354163525f, 0.935183510f, 0.357030961f, 0.934092550f, 0.359895037f, 0.932992799f, 0.362755724f, 0.931884266f, 0.365612998f, 0.930766961f, 0.368466830f, 0.929640896f, 0.371317194f, 0.928506080f, 0.374164063f, 0.927362526f, 0.377007410f, 0.926210242f, 0.379847209f, 0.925049241f, 0.382683432f, 0.923879533f, 0.385516054f, 0.922701128f, 0.388345047f, 0.921514039f, 0.391170384f, 0.920318277f, 0.393992040f, 0.919113852f, 0.396809987f, 0.917900776f, 0.399624200f, 0.916679060f, 0.402434651f, 0.915448716f, 0.405241314f, 0.914209756f, 0.408044163f, 0.912962190f, 0.410843171f, 0.911706032f, 0.413638312f, 0.910441292f, 0.416429560f, 0.909167983f, 0.419216888f, 0.907886116f, 0.422000271f, 0.906595705f, 0.424779681f, 0.905296759f, 0.427555093f, 0.903989293f, 0.430326481f, 0.902673318f, 0.433093819f, 0.901348847f, 0.435857080f, 0.900015892f, 0.438616239f, 0.898674466f, 0.441371269f, 0.897324581f, 0.444122145f, 0.895966250f, 0.446868840f, 0.894599486f, 0.449611330f, 0.893224301f, 0.452349587f, 0.891840709f, 0.455083587f, 0.890448723f, 0.457813304f, 0.889048356f, 0.460538711f, 0.887639620f, 0.463259784f, 0.886222530f, 0.465976496f, 0.884797098f, 0.468688822f, 0.883363339f, 0.471396737f, 0.881921264f, 0.474100215f, 0.880470889f, 0.476799230f, 0.879012226f, 0.479493758f, 0.877545290f, 0.482183772f, 0.876070094f, 0.484869248f, 0.874586652f, 0.487550160f, 0.873094978f, 0.490226483f, 0.871595087f, 0.492898192f, 0.870086991f, 0.495565262f, 0.868570706f, 0.498227667f, 0.867046246f, 0.500885383f, 0.865513624f, 0.503538384f, 0.863972856f, 0.506186645f, 0.862423956f, 0.508830143f, 0.860866939f, 0.511468850f, 0.859301818f, 0.514102744f, 0.857728610f, 0.516731799f, 0.856147328f, 0.519355990f, 0.854557988f, 0.521975293f, 0.852960605f, 0.524589683f, 0.851355193f, 0.527199135f, 0.849741768f, 0.529803625f, 0.848120345f, 0.532403128f, 0.846490939f, 0.534997620f, 0.844853565f, 0.537587076f, 0.843208240f, 0.540171473f, 0.841554977f, 0.542750785f, 0.839893794f, 0.545324988f, 0.838224706f, 0.547894059f, 0.836547727f, 0.550457973f, 0.834862875f, 0.553016706f, 0.833170165f, 0.555570233f, 0.831469612f, 0.558118531f, 0.829761234f, 0.560661576f, 0.828045045f, 0.563199344f, 0.826321063f, 0.565731811f, 0.824589303f, 0.568258953f, 0.822849781f, 0.570780746f, 0.821102515f, 0.573297167f, 0.819347520f, 0.575808191f, 0.817584813f, 0.578313796f, 0.815814411f, 0.580813958f, 0.814036330f, 0.583308653f, 0.812250587f, 0.585797857f, 0.810457198f, 0.588281548f, 0.808656182f, 0.590759702f, 0.806847554f, 0.593232295f, 0.805031331f, 0.595699304f, 0.803207531f, 0.598160707f, 0.801376172f, 0.600616479f, 0.799537269f, 0.603066599f, 0.797690841f, 0.605511041f, 0.795836905f, 0.607949785f, 0.793975478f, 0.610382806f, 0.792106577f, 0.612810082f, 0.790230221f, 0.615231591f, 0.788346428f, 0.617647308f, 0.786455214f, 0.620057212f, 0.784556597f, 0.622461279f, 0.782650596f, 0.624859488f, 0.780737229f, 0.627251815f, 0.778816512f, 0.629638239f, 0.776888466f, 0.632018736f, 0.774953107f, 0.634393284f, 0.773010453f, 0.636761861f, 0.771060524f, 0.639124445f, 0.769103338f, 0.641481013f, 0.767138912f, 0.643831543f, 0.765167266f, 0.646176013f, 0.763188417f, 0.648514401f, 0.761202385f, 0.650846685f, 0.759209189f, 0.653172843f, 0.757208847f, 0.655492853f, 0.755201377f, 0.657806693f, 0.753186799f, 0.660114342f, 0.751165132f, 0.662415778f, 0.749136395f, 0.664710978f, 0.747100606f, 0.666999922f, 0.745057785f, 0.669282588f, 0.743007952f, 0.671558955f, 0.740951125f, 0.673829000f, 0.738887324f, 0.676092704f, 0.736816569f, 0.678350043f, 0.734738878f, 0.680600998f, 0.732654272f, 0.682845546f, 0.730562769f, 0.685083668f, 0.728464390f, 0.687315341f, 0.726359155f, 0.689540545f, 0.724247083f, 0.691759258f, 0.722128194f, 0.693971461f, 0.720002508f, 0.696177131f, 0.717870045f, 0.698376249f, 0.715730825f, 0.700568794f, 0.713584869f, 0.702754744f, 0.711432196f, 0.704934080f, 0.709272826f, 0.707106781f, 0.707106781f, 0.709272826f, 0.704934080f, 0.711432196f, 0.702754744f, 0.713584869f, 0.700568794f, 0.715730825f, 0.698376249f, 0.717870045f, 0.696177131f, 0.720002508f, 0.693971461f, 0.722128194f, 0.691759258f, 0.724247083f, 0.689540545f, 0.726359155f, 0.687315341f, 0.728464390f, 0.685083668f, 0.730562769f, 0.682845546f, 0.732654272f, 0.680600998f, 0.734738878f, 0.678350043f, 0.736816569f, 0.676092704f, 0.738887324f, 0.673829000f, 0.740951125f, 0.671558955f, 0.743007952f, 0.669282588f, 0.745057785f, 0.666999922f, 0.747100606f, 0.664710978f, 0.749136395f, 0.662415778f, 0.751165132f, 0.660114342f, 0.753186799f, 0.657806693f, 0.755201377f, 0.655492853f, 0.757208847f, 0.653172843f, 0.759209189f, 0.650846685f, 0.761202385f, 0.648514401f, 0.763188417f, 0.646176013f, 0.765167266f, 0.643831543f, 0.767138912f, 0.641481013f, 0.769103338f, 0.639124445f, 0.771060524f, 0.636761861f, 0.773010453f, 0.634393284f, 0.774953107f, 0.632018736f, 0.776888466f, 0.629638239f, 0.778816512f, 0.627251815f, 0.780737229f, 0.624859488f, 0.782650596f, 0.622461279f, 0.784556597f, 0.620057212f, 0.786455214f, 0.617647308f, 0.788346428f, 0.615231591f, 0.790230221f, 0.612810082f, 0.792106577f, 0.610382806f, 0.793975478f, 0.607949785f, 0.795836905f, 0.605511041f, 0.797690841f, 0.603066599f, 0.799537269f, 0.600616479f, 0.801376172f, 0.598160707f, 0.803207531f, 0.595699304f, 0.805031331f, 0.593232295f, 0.806847554f, 0.590759702f, 0.808656182f, 0.588281548f, 0.810457198f, 0.585797857f, 0.812250587f, 0.583308653f, 0.814036330f, 0.580813958f, 0.815814411f, 0.578313796f, 0.817584813f, 0.575808191f, 0.819347520f, 0.573297167f, 0.821102515f, 0.570780746f, 0.822849781f, 0.568258953f, 0.824589303f, 0.565731811f, 0.826321063f, 0.563199344f, 0.828045045f, 0.560661576f, 0.829761234f, 0.558118531f, 0.831469612f, 0.555570233f, 0.833170165f, 0.553016706f, 0.834862875f, 0.550457973f, 0.836547727f, 0.547894059f, 0.838224706f, 0.545324988f, 0.839893794f, 0.542750785f, 0.841554977f, 0.540171473f, 0.843208240f, 0.537587076f, 0.844853565f, 0.534997620f, 0.846490939f, 0.532403128f, 0.848120345f, 0.529803625f, 0.849741768f, 0.527199135f, 0.851355193f, 0.524589683f, 0.852960605f, 0.521975293f, 0.854557988f, 0.519355990f, 0.856147328f, 0.516731799f, 0.857728610f, 0.514102744f, 0.859301818f, 0.511468850f, 0.860866939f, 0.508830143f, 0.862423956f, 0.506186645f, 0.863972856f, 0.503538384f, 0.865513624f, 0.500885383f, 0.867046246f, 0.498227667f, 0.868570706f, 0.495565262f, 0.870086991f, 0.492898192f, 0.871595087f, 0.490226483f, 0.873094978f, 0.487550160f, 0.874586652f, 0.484869248f, 0.876070094f, 0.482183772f, 0.877545290f, 0.479493758f, 0.879012226f, 0.476799230f, 0.880470889f, 0.474100215f, 0.881921264f, 0.471396737f, 0.883363339f, 0.468688822f, 0.884797098f, 0.465976496f, 0.886222530f, 0.463259784f, 0.887639620f, 0.460538711f, 0.889048356f, 0.457813304f, 0.890448723f, 0.455083587f, 0.891840709f, 0.452349587f, 0.893224301f, 0.449611330f, 0.894599486f, 0.446868840f, 0.895966250f, 0.444122145f, 0.897324581f, 0.441371269f, 0.898674466f, 0.438616239f, 0.900015892f, 0.435857080f, 0.901348847f, 0.433093819f, 0.902673318f, 0.430326481f, 0.903989293f, 0.427555093f, 0.905296759f, 0.424779681f, 0.906595705f, 0.422000271f, 0.907886116f, 0.419216888f, 0.909167983f, 0.416429560f, 0.910441292f, 0.413638312f, 0.911706032f, 0.410843171f, 0.912962190f, 0.408044163f, 0.914209756f, 0.405241314f, 0.915448716f, 0.402434651f, 0.916679060f, 0.399624200f, 0.917900776f, 0.396809987f, 0.919113852f, 0.393992040f, 0.920318277f, 0.391170384f, 0.921514039f, 0.388345047f, 0.922701128f, 0.385516054f, 0.923879533f, 0.382683432f, 0.925049241f, 0.379847209f, 0.926210242f, 0.377007410f, 0.927362526f, 0.374164063f, 0.928506080f, 0.371317194f, 0.929640896f, 0.368466830f, 0.930766961f, 0.365612998f, 0.931884266f, 0.362755724f, 0.932992799f, 0.359895037f, 0.934092550f, 0.357030961f, 0.935183510f, 0.354163525f, 0.936265667f, 0.351292756f, 0.937339012f, 0.348418680f, 0.938403534f, 0.345541325f, 0.939459224f, 0.342660717f, 0.940506071f, 0.339776884f, 0.941544065f, 0.336889853f, 0.942573198f, 0.333999651f, 0.943593458f, 0.331106306f, 0.944604837f, 0.328209844f, 0.945607325f, 0.325310292f, 0.946600913f, 0.322407679f, 0.947585591f, 0.319502031f, 0.948561350f, 0.316593376f, 0.949528181f, 0.313681740f, 0.950486074f, 0.310767153f, 0.951435021f, 0.307849640f, 0.952375013f, 0.304929230f, 0.953306040f, 0.302005949f, 0.954228095f, 0.299079826f, 0.955141168f, 0.296150888f, 0.956045251f, 0.293219163f, 0.956940336f, 0.290284677f, 0.957826413f, 0.287347460f, 0.958703475f, 0.284407537f, 0.959571513f, 0.281464938f, 0.960430519f, 0.278519689f, 0.961280486f, 0.275571819f, 0.962121404f, 0.272621355f, 0.962953267f, 0.269668326f, 0.963776066f, 0.266712757f, 0.964589793f, 0.263754679f, 0.965394442f, 0.260794118f, 0.966190003f, 0.257831102f, 0.966976471f, 0.254865660f, 0.967753837f, 0.251897818f, 0.968522094f, 0.248927606f, 0.969281235f, 0.245955050f, 0.970031253f, 0.242980180f, 0.970772141f, 0.240003022f, 0.971503891f, 0.237023606f, 0.972226497f, 0.234041959f, 0.972939952f, 0.231058108f, 0.973644250f, 0.228072083f, 0.974339383f, 0.225083911f, 0.975025345f, 0.222093621f, 0.975702130f, 0.219101240f, 0.976369731f, 0.216106797f, 0.977028143f, 0.213110320f, 0.977677358f, 0.210111837f, 0.978317371f, 0.207111376f, 0.978948175f, 0.204108966f, 0.979569766f, 0.201104635f, 0.980182136f, 0.198098411f, 0.980785280f, 0.195090322f, 0.981379193f, 0.192080397f, 0.981963869f, 0.189068664f, 0.982539302f, 0.186055152f, 0.983105487f, 0.183039888f, 0.983662419f, 0.180022901f, 0.984210092f, 0.177004220f, 0.984748502f, 0.173983873f, 0.985277642f, 0.170961889f, 0.985797509f, 0.167938295f, 0.986308097f, 0.164913120f, 0.986809402f, 0.161886394f, 0.987301418f, 0.158858143f, 0.987784142f, 0.155828398f, 0.988257568f, 0.152797185f, 0.988721692f, 0.149764535f, 0.989176510f, 0.146730474f, 0.989622017f, 0.143695033f, 0.990058210f, 0.140658239f, 0.990485084f, 0.137620122f, 0.990902635f, 0.134580709f, 0.991310860f, 0.131540029f, 0.991709754f, 0.128498111f, 0.992099313f, 0.125454983f, 0.992479535f, 0.122410675f, 0.992850414f, 0.119365215f, 0.993211949f, 0.116318631f, 0.993564136f, 0.113270952f, 0.993906970f, 0.110222207f, 0.994240449f, 0.107172425f, 0.994564571f, 0.104121634f, 0.994879331f, 0.101069863f, 0.995184727f, 0.098017140f, 0.995480755f, 0.094963495f, 0.995767414f, 0.091908956f, 0.996044701f, 0.088853553f, 0.996312612f, 0.085797312f, 0.996571146f, 0.082740265f, 0.996820299f, 0.079682438f, 0.997060070f, 0.076623861f, 0.997290457f, 0.073564564f, 0.997511456f, 0.070504573f, 0.997723067f, 0.067443920f, 0.997925286f, 0.064382631f, 0.998118113f, 0.061320736f, 0.998301545f, 0.058258265f, 0.998475581f, 0.055195244f, 0.998640218f, 0.052131705f, 0.998795456f, 0.049067674f, 0.998941293f, 0.046003182f, 0.999077728f, 0.042938257f, 0.999204759f, 0.039872928f, 0.999322385f, 0.036807223f, 0.999430605f, 0.033741172f, 0.999529418f, 0.030674803f, 0.999618822f, 0.027608146f, 0.999698819f, 0.024541229f, 0.999769405f, 0.021474080f, 0.999830582f, 0.018406730f, 0.999882347f, 0.015339206f, 0.999924702f, 0.012271538f, 0.999957645f, 0.009203755f, 0.999981175f, 0.006135885f, 0.999995294f, 0.003067957f, 1.000000000f, 0.000000000f, 0.999995294f, -0.003067957f, 0.999981175f, -0.006135885f, 0.999957645f, -0.009203755f, 0.999924702f, -0.012271538f, 0.999882347f, -0.015339206f, 0.999830582f, -0.018406730f, 0.999769405f, -0.021474080f, 0.999698819f, -0.024541229f, 0.999618822f, -0.027608146f, 0.999529418f, -0.030674803f, 0.999430605f, -0.033741172f, 0.999322385f, -0.036807223f, 0.999204759f, -0.039872928f, 0.999077728f, -0.042938257f, 0.998941293f, -0.046003182f, 0.998795456f, -0.049067674f, 0.998640218f, -0.052131705f, 0.998475581f, -0.055195244f, 0.998301545f, -0.058258265f, 0.998118113f, -0.061320736f, 0.997925286f, -0.064382631f, 0.997723067f, -0.067443920f, 0.997511456f, -0.070504573f, 0.997290457f, -0.073564564f, 0.997060070f, -0.076623861f, 0.996820299f, -0.079682438f, 0.996571146f, -0.082740265f, 0.996312612f, -0.085797312f, 0.996044701f, -0.088853553f, 0.995767414f, -0.091908956f, 0.995480755f, -0.094963495f, 0.995184727f, -0.098017140f, 0.994879331f, -0.101069863f, 0.994564571f, -0.104121634f, 0.994240449f, -0.107172425f, 0.993906970f, -0.110222207f, 0.993564136f, -0.113270952f, 0.993211949f, -0.116318631f, 0.992850414f, -0.119365215f, 0.992479535f, -0.122410675f, 0.992099313f, -0.125454983f, 0.991709754f, -0.128498111f, 0.991310860f, -0.131540029f, 0.990902635f, -0.134580709f, 0.990485084f, -0.137620122f, 0.990058210f, -0.140658239f, 0.989622017f, -0.143695033f, 0.989176510f, -0.146730474f, 0.988721692f, -0.149764535f, 0.988257568f, -0.152797185f, 0.987784142f, -0.155828398f, 0.987301418f, -0.158858143f, 0.986809402f, -0.161886394f, 0.986308097f, -0.164913120f, 0.985797509f, -0.167938295f, 0.985277642f, -0.170961889f, 0.984748502f, -0.173983873f, 0.984210092f, -0.177004220f, 0.983662419f, -0.180022901f, 0.983105487f, -0.183039888f, 0.982539302f, -0.186055152f, 0.981963869f, -0.189068664f, 0.981379193f, -0.192080397f, 0.980785280f, -0.195090322f, 0.980182136f, -0.198098411f, 0.979569766f, -0.201104635f, 0.978948175f, -0.204108966f, 0.978317371f, -0.207111376f, 0.977677358f, -0.210111837f, 0.977028143f, -0.213110320f, 0.976369731f, -0.216106797f, 0.975702130f, -0.219101240f, 0.975025345f, -0.222093621f, 0.974339383f, -0.225083911f, 0.973644250f, -0.228072083f, 0.972939952f, -0.231058108f, 0.972226497f, -0.234041959f, 0.971503891f, -0.237023606f, 0.970772141f, -0.240003022f, 0.970031253f, -0.242980180f, 0.969281235f, -0.245955050f, 0.968522094f, -0.248927606f, 0.967753837f, -0.251897818f, 0.966976471f, -0.254865660f, 0.966190003f, -0.257831102f, 0.965394442f, -0.260794118f, 0.964589793f, -0.263754679f, 0.963776066f, -0.266712757f, 0.962953267f, -0.269668326f, 0.962121404f, -0.272621355f, 0.961280486f, -0.275571819f, 0.960430519f, -0.278519689f, 0.959571513f, -0.281464938f, 0.958703475f, -0.284407537f, 0.957826413f, -0.287347460f, 0.956940336f, -0.290284677f, 0.956045251f, -0.293219163f, 0.955141168f, -0.296150888f, 0.954228095f, -0.299079826f, 0.953306040f, -0.302005949f, 0.952375013f, -0.304929230f, 0.951435021f, -0.307849640f, 0.950486074f, -0.310767153f, 0.949528181f, -0.313681740f, 0.948561350f, -0.316593376f, 0.947585591f, -0.319502031f, 0.946600913f, -0.322407679f, 0.945607325f, -0.325310292f, 0.944604837f, -0.328209844f, 0.943593458f, -0.331106306f, 0.942573198f, -0.333999651f, 0.941544065f, -0.336889853f, 0.940506071f, -0.339776884f, 0.939459224f, -0.342660717f, 0.938403534f, -0.345541325f, 0.937339012f, -0.348418680f, 0.936265667f, -0.351292756f, 0.935183510f, -0.354163525f, 0.934092550f, -0.357030961f, 0.932992799f, -0.359895037f, 0.931884266f, -0.362755724f, 0.930766961f, -0.365612998f, 0.929640896f, -0.368466830f, 0.928506080f, -0.371317194f, 0.927362526f, -0.374164063f, 0.926210242f, -0.377007410f, 0.925049241f, -0.379847209f, 0.923879533f, -0.382683432f, 0.922701128f, -0.385516054f, 0.921514039f, -0.388345047f, 0.920318277f, -0.391170384f, 0.919113852f, -0.393992040f, 0.917900776f, -0.396809987f, 0.916679060f, -0.399624200f, 0.915448716f, -0.402434651f, 0.914209756f, -0.405241314f, 0.912962190f, -0.408044163f, 0.911706032f, -0.410843171f, 0.910441292f, -0.413638312f, 0.909167983f, -0.416429560f, 0.907886116f, -0.419216888f, 0.906595705f, -0.422000271f, 0.905296759f, -0.424779681f, 0.903989293f, -0.427555093f, 0.902673318f, -0.430326481f, 0.901348847f, -0.433093819f, 0.900015892f, -0.435857080f, 0.898674466f, -0.438616239f, 0.897324581f, -0.441371269f, 0.895966250f, -0.444122145f, 0.894599486f, -0.446868840f, 0.893224301f, -0.449611330f, 0.891840709f, -0.452349587f, 0.890448723f, -0.455083587f, 0.889048356f, -0.457813304f, 0.887639620f, -0.460538711f, 0.886222530f, -0.463259784f, 0.884797098f, -0.465976496f, 0.883363339f, -0.468688822f, 0.881921264f, -0.471396737f, 0.880470889f, -0.474100215f, 0.879012226f, -0.476799230f, 0.877545290f, -0.479493758f, 0.876070094f, -0.482183772f, 0.874586652f, -0.484869248f, 0.873094978f, -0.487550160f, 0.871595087f, -0.490226483f, 0.870086991f, -0.492898192f, 0.868570706f, -0.495565262f, 0.867046246f, -0.498227667f, 0.865513624f, -0.500885383f, 0.863972856f, -0.503538384f, 0.862423956f, -0.506186645f, 0.860866939f, -0.508830143f, 0.859301818f, -0.511468850f, 0.857728610f, -0.514102744f, 0.856147328f, -0.516731799f, 0.854557988f, -0.519355990f, 0.852960605f, -0.521975293f, 0.851355193f, -0.524589683f, 0.849741768f, -0.527199135f, 0.848120345f, -0.529803625f, 0.846490939f, -0.532403128f, 0.844853565f, -0.534997620f, 0.843208240f, -0.537587076f, 0.841554977f, -0.540171473f, 0.839893794f, -0.542750785f, 0.838224706f, -0.545324988f, 0.836547727f, -0.547894059f, 0.834862875f, -0.550457973f, 0.833170165f, -0.553016706f, 0.831469612f, -0.555570233f, 0.829761234f, -0.558118531f, 0.828045045f, -0.560661576f, 0.826321063f, -0.563199344f, 0.824589303f, -0.565731811f, 0.822849781f, -0.568258953f, 0.821102515f, -0.570780746f, 0.819347520f, -0.573297167f, 0.817584813f, -0.575808191f, 0.815814411f, -0.578313796f, 0.814036330f, -0.580813958f, 0.812250587f, -0.583308653f, 0.810457198f, -0.585797857f, 0.808656182f, -0.588281548f, 0.806847554f, -0.590759702f, 0.805031331f, -0.593232295f, 0.803207531f, -0.595699304f, 0.801376172f, -0.598160707f, 0.799537269f, -0.600616479f, 0.797690841f, -0.603066599f, 0.795836905f, -0.605511041f, 0.793975478f, -0.607949785f, 0.792106577f, -0.610382806f, 0.790230221f, -0.612810082f, 0.788346428f, -0.615231591f, 0.786455214f, -0.617647308f, 0.784556597f, -0.620057212f, 0.782650596f, -0.622461279f, 0.780737229f, -0.624859488f, 0.778816512f, -0.627251815f, 0.776888466f, -0.629638239f, 0.774953107f, -0.632018736f, 0.773010453f, -0.634393284f, 0.771060524f, -0.636761861f, 0.769103338f, -0.639124445f, 0.767138912f, -0.641481013f, 0.765167266f, -0.643831543f, 0.763188417f, -0.646176013f, 0.761202385f, -0.648514401f, 0.759209189f, -0.650846685f, 0.757208847f, -0.653172843f, 0.755201377f, -0.655492853f, 0.753186799f, -0.657806693f, 0.751165132f, -0.660114342f, 0.749136395f, -0.662415778f, 0.747100606f, -0.664710978f, 0.745057785f, -0.666999922f, 0.743007952f, -0.669282588f, 0.740951125f, -0.671558955f, 0.738887324f, -0.673829000f, 0.736816569f, -0.676092704f, 0.734738878f, -0.678350043f, 0.732654272f, -0.680600998f, 0.730562769f, -0.682845546f, 0.728464390f, -0.685083668f, 0.726359155f, -0.687315341f, 0.724247083f, -0.689540545f, 0.722128194f, -0.691759258f, 0.720002508f, -0.693971461f, 0.717870045f, -0.696177131f, 0.715730825f, -0.698376249f, 0.713584869f, -0.700568794f, 0.711432196f, -0.702754744f, 0.709272826f, -0.704934080f, 0.707106781f, -0.707106781f, 0.704934080f, -0.709272826f, 0.702754744f, -0.711432196f, 0.700568794f, -0.713584869f, 0.698376249f, -0.715730825f, 0.696177131f, -0.717870045f, 0.693971461f, -0.720002508f, 0.691759258f, -0.722128194f, 0.689540545f, -0.724247083f, 0.687315341f, -0.726359155f, 0.685083668f, -0.728464390f, 0.682845546f, -0.730562769f, 0.680600998f, -0.732654272f, 0.678350043f, -0.734738878f, 0.676092704f, -0.736816569f, 0.673829000f, -0.738887324f, 0.671558955f, -0.740951125f, 0.669282588f, -0.743007952f, 0.666999922f, -0.745057785f, 0.664710978f, -0.747100606f, 0.662415778f, -0.749136395f, 0.660114342f, -0.751165132f, 0.657806693f, -0.753186799f, 0.655492853f, -0.755201377f, 0.653172843f, -0.757208847f, 0.650846685f, -0.759209189f, 0.648514401f, -0.761202385f, 0.646176013f, -0.763188417f, 0.643831543f, -0.765167266f, 0.641481013f, -0.767138912f, 0.639124445f, -0.769103338f, 0.636761861f, -0.771060524f, 0.634393284f, -0.773010453f, 0.632018736f, -0.774953107f, 0.629638239f, -0.776888466f, 0.627251815f, -0.778816512f, 0.624859488f, -0.780737229f, 0.622461279f, -0.782650596f, 0.620057212f, -0.784556597f, 0.617647308f, -0.786455214f, 0.615231591f, -0.788346428f, 0.612810082f, -0.790230221f, 0.610382806f, -0.792106577f, 0.607949785f, -0.793975478f, 0.605511041f, -0.795836905f, 0.603066599f, -0.797690841f, 0.600616479f, -0.799537269f, 0.598160707f, -0.801376172f, 0.595699304f, -0.803207531f, 0.593232295f, -0.805031331f, 0.590759702f, -0.806847554f, 0.588281548f, -0.808656182f, 0.585797857f, -0.810457198f, 0.583308653f, -0.812250587f, 0.580813958f, -0.814036330f, 0.578313796f, -0.815814411f, 0.575808191f, -0.817584813f, 0.573297167f, -0.819347520f, 0.570780746f, -0.821102515f, 0.568258953f, -0.822849781f, 0.565731811f, -0.824589303f, 0.563199344f, -0.826321063f, 0.560661576f, -0.828045045f, 0.558118531f, -0.829761234f, 0.555570233f, -0.831469612f, 0.553016706f, -0.833170165f, 0.550457973f, -0.834862875f, 0.547894059f, -0.836547727f, 0.545324988f, -0.838224706f, 0.542750785f, -0.839893794f, 0.540171473f, -0.841554977f, 0.537587076f, -0.843208240f, 0.534997620f, -0.844853565f, 0.532403128f, -0.846490939f, 0.529803625f, -0.848120345f, 0.527199135f, -0.849741768f, 0.524589683f, -0.851355193f, 0.521975293f, -0.852960605f, 0.519355990f, -0.854557988f, 0.516731799f, -0.856147328f, 0.514102744f, -0.857728610f, 0.511468850f, -0.859301818f, 0.508830143f, -0.860866939f, 0.506186645f, -0.862423956f, 0.503538384f, -0.863972856f, 0.500885383f, -0.865513624f, 0.498227667f, -0.867046246f, 0.495565262f, -0.868570706f, 0.492898192f, -0.870086991f, 0.490226483f, -0.871595087f, 0.487550160f, -0.873094978f, 0.484869248f, -0.874586652f, 0.482183772f, -0.876070094f, 0.479493758f, -0.877545290f, 0.476799230f, -0.879012226f, 0.474100215f, -0.880470889f, 0.471396737f, -0.881921264f, 0.468688822f, -0.883363339f, 0.465976496f, -0.884797098f, 0.463259784f, -0.886222530f, 0.460538711f, -0.887639620f, 0.457813304f, -0.889048356f, 0.455083587f, -0.890448723f, 0.452349587f, -0.891840709f, 0.449611330f, -0.893224301f, 0.446868840f, -0.894599486f, 0.444122145f, -0.895966250f, 0.441371269f, -0.897324581f, 0.438616239f, -0.898674466f, 0.435857080f, -0.900015892f, 0.433093819f, -0.901348847f, 0.430326481f, -0.902673318f, 0.427555093f, -0.903989293f, 0.424779681f, -0.905296759f, 0.422000271f, -0.906595705f, 0.419216888f, -0.907886116f, 0.416429560f, -0.909167983f, 0.413638312f, -0.910441292f, 0.410843171f, -0.911706032f, 0.408044163f, -0.912962190f, 0.405241314f, -0.914209756f, 0.402434651f, -0.915448716f, 0.399624200f, -0.916679060f, 0.396809987f, -0.917900776f, 0.393992040f, -0.919113852f, 0.391170384f, -0.920318277f, 0.388345047f, -0.921514039f, 0.385516054f, -0.922701128f, 0.382683432f, -0.923879533f, 0.379847209f, -0.925049241f, 0.377007410f, -0.926210242f, 0.374164063f, -0.927362526f, 0.371317194f, -0.928506080f, 0.368466830f, -0.929640896f, 0.365612998f, -0.930766961f, 0.362755724f, -0.931884266f, 0.359895037f, -0.932992799f, 0.357030961f, -0.934092550f, 0.354163525f, -0.935183510f, 0.351292756f, -0.936265667f, 0.348418680f, -0.937339012f, 0.345541325f, -0.938403534f, 0.342660717f, -0.939459224f, 0.339776884f, -0.940506071f, 0.336889853f, -0.941544065f, 0.333999651f, -0.942573198f, 0.331106306f, -0.943593458f, 0.328209844f, -0.944604837f, 0.325310292f, -0.945607325f, 0.322407679f, -0.946600913f, 0.319502031f, -0.947585591f, 0.316593376f, -0.948561350f, 0.313681740f, -0.949528181f, 0.310767153f, -0.950486074f, 0.307849640f, -0.951435021f, 0.304929230f, -0.952375013f, 0.302005949f, -0.953306040f, 0.299079826f, -0.954228095f, 0.296150888f, -0.955141168f, 0.293219163f, -0.956045251f, 0.290284677f, -0.956940336f, 0.287347460f, -0.957826413f, 0.284407537f, -0.958703475f, 0.281464938f, -0.959571513f, 0.278519689f, -0.960430519f, 0.275571819f, -0.961280486f, 0.272621355f, -0.962121404f, 0.269668326f, -0.962953267f, 0.266712757f, -0.963776066f, 0.263754679f, -0.964589793f, 0.260794118f, -0.965394442f, 0.257831102f, -0.966190003f, 0.254865660f, -0.966976471f, 0.251897818f, -0.967753837f, 0.248927606f, -0.968522094f, 0.245955050f, -0.969281235f, 0.242980180f, -0.970031253f, 0.240003022f, -0.970772141f, 0.237023606f, -0.971503891f, 0.234041959f, -0.972226497f, 0.231058108f, -0.972939952f, 0.228072083f, -0.973644250f, 0.225083911f, -0.974339383f, 0.222093621f, -0.975025345f, 0.219101240f, -0.975702130f, 0.216106797f, -0.976369731f, 0.213110320f, -0.977028143f, 0.210111837f, -0.977677358f, 0.207111376f, -0.978317371f, 0.204108966f, -0.978948175f, 0.201104635f, -0.979569766f, 0.198098411f, -0.980182136f, 0.195090322f, -0.980785280f, 0.192080397f, -0.981379193f, 0.189068664f, -0.981963869f, 0.186055152f, -0.982539302f, 0.183039888f, -0.983105487f, 0.180022901f, -0.983662419f, 0.177004220f, -0.984210092f, 0.173983873f, -0.984748502f, 0.170961889f, -0.985277642f, 0.167938295f, -0.985797509f, 0.164913120f, -0.986308097f, 0.161886394f, -0.986809402f, 0.158858143f, -0.987301418f, 0.155828398f, -0.987784142f, 0.152797185f, -0.988257568f, 0.149764535f, -0.988721692f, 0.146730474f, -0.989176510f, 0.143695033f, -0.989622017f, 0.140658239f, -0.990058210f, 0.137620122f, -0.990485084f, 0.134580709f, -0.990902635f, 0.131540029f, -0.991310860f, 0.128498111f, -0.991709754f, 0.125454983f, -0.992099313f, 0.122410675f, -0.992479535f, 0.119365215f, -0.992850414f, 0.116318631f, -0.993211949f, 0.113270952f, -0.993564136f, 0.110222207f, -0.993906970f, 0.107172425f, -0.994240449f, 0.104121634f, -0.994564571f, 0.101069863f, -0.994879331f, 0.098017140f, -0.995184727f, 0.094963495f, -0.995480755f, 0.091908956f, -0.995767414f, 0.088853553f, -0.996044701f, 0.085797312f, -0.996312612f, 0.082740265f, -0.996571146f, 0.079682438f, -0.996820299f, 0.076623861f, -0.997060070f, 0.073564564f, -0.997290457f, 0.070504573f, -0.997511456f, 0.067443920f, -0.997723067f, 0.064382631f, -0.997925286f, 0.061320736f, -0.998118113f, 0.058258265f, -0.998301545f, 0.055195244f, -0.998475581f, 0.052131705f, -0.998640218f, 0.049067674f, -0.998795456f, 0.046003182f, -0.998941293f, 0.042938257f, -0.999077728f, 0.039872928f, -0.999204759f, 0.036807223f, -0.999322385f, 0.033741172f, -0.999430605f, 0.030674803f, -0.999529418f, 0.027608146f, -0.999618822f, 0.024541229f, -0.999698819f, 0.021474080f, -0.999769405f, 0.018406730f, -0.999830582f, 0.015339206f, -0.999882347f, 0.012271538f, -0.999924702f, 0.009203755f, -0.999957645f, 0.006135885f, -0.999981175f, 0.003067957f, -0.999995294f }; const float32_t twiddleCoef_rfft_4096[4096] ARM_DSP_TABLE_ATTRIBUTE = { 0.000000000f, 1.000000000f, 0.001533980f, 0.999998823f, 0.003067957f, 0.999995294f, 0.004601926f, 0.999989411f, 0.006135885f, 0.999981175f, 0.007669829f, 0.999970586f, 0.009203755f, 0.999957645f, 0.010737659f, 0.999942350f, 0.012271538f, 0.999924702f, 0.013805389f, 0.999904701f, 0.015339206f, 0.999882347f, 0.016872988f, 0.999857641f, 0.018406730f, 0.999830582f, 0.019940429f, 0.999801170f, 0.021474080f, 0.999769405f, 0.023007681f, 0.999735288f, 0.024541229f, 0.999698819f, 0.026074718f, 0.999659997f, 0.027608146f, 0.999618822f, 0.029141509f, 0.999575296f, 0.030674803f, 0.999529418f, 0.032208025f, 0.999481187f, 0.033741172f, 0.999430605f, 0.035274239f, 0.999377670f, 0.036807223f, 0.999322385f, 0.038340120f, 0.999264747f, 0.039872928f, 0.999204759f, 0.041405641f, 0.999142419f, 0.042938257f, 0.999077728f, 0.044470772f, 0.999010686f, 0.046003182f, 0.998941293f, 0.047535484f, 0.998869550f, 0.049067674f, 0.998795456f, 0.050599749f, 0.998719012f, 0.052131705f, 0.998640218f, 0.053663538f, 0.998559074f, 0.055195244f, 0.998475581f, 0.056726821f, 0.998389737f, 0.058258265f, 0.998301545f, 0.059789571f, 0.998211003f, 0.061320736f, 0.998118113f, 0.062851758f, 0.998022874f, 0.064382631f, 0.997925286f, 0.065913353f, 0.997825350f, 0.067443920f, 0.997723067f, 0.068974328f, 0.997618435f, 0.070504573f, 0.997511456f, 0.072034653f, 0.997402130f, 0.073564564f, 0.997290457f, 0.075094301f, 0.997176437f, 0.076623861f, 0.997060070f, 0.078153242f, 0.996941358f, 0.079682438f, 0.996820299f, 0.081211447f, 0.996696895f, 0.082740265f, 0.996571146f, 0.084268888f, 0.996443051f, 0.085797312f, 0.996312612f, 0.087325535f, 0.996179829f, 0.088853553f, 0.996044701f, 0.090381361f, 0.995907229f, 0.091908956f, 0.995767414f, 0.093436336f, 0.995625256f, 0.094963495f, 0.995480755f, 0.096490431f, 0.995333912f, 0.098017140f, 0.995184727f, 0.099543619f, 0.995033199f, 0.101069863f, 0.994879331f, 0.102595869f, 0.994723121f, 0.104121634f, 0.994564571f, 0.105647154f, 0.994403680f, 0.107172425f, 0.994240449f, 0.108697444f, 0.994074879f, 0.110222207f, 0.993906970f, 0.111746711f, 0.993736722f, 0.113270952f, 0.993564136f, 0.114794927f, 0.993389211f, 0.116318631f, 0.993211949f, 0.117842062f, 0.993032350f, 0.119365215f, 0.992850414f, 0.120888087f, 0.992666142f, 0.122410675f, 0.992479535f, 0.123932975f, 0.992290591f, 0.125454983f, 0.992099313f, 0.126976696f, 0.991905700f, 0.128498111f, 0.991709754f, 0.130019223f, 0.991511473f, 0.131540029f, 0.991310860f, 0.133060525f, 0.991107914f, 0.134580709f, 0.990902635f, 0.136100575f, 0.990695025f, 0.137620122f, 0.990485084f, 0.139139344f, 0.990272812f, 0.140658239f, 0.990058210f, 0.142176804f, 0.989841278f, 0.143695033f, 0.989622017f, 0.145212925f, 0.989400428f, 0.146730474f, 0.989176510f, 0.148247679f, 0.988950265f, 0.149764535f, 0.988721692f, 0.151281038f, 0.988490793f, 0.152797185f, 0.988257568f, 0.154312973f, 0.988022017f, 0.155828398f, 0.987784142f, 0.157343456f, 0.987543942f, 0.158858143f, 0.987301418f, 0.160372457f, 0.987056571f, 0.161886394f, 0.986809402f, 0.163399949f, 0.986559910f, 0.164913120f, 0.986308097f, 0.166425904f, 0.986053963f, 0.167938295f, 0.985797509f, 0.169450291f, 0.985538735f, 0.170961889f, 0.985277642f, 0.172473084f, 0.985014231f, 0.173983873f, 0.984748502f, 0.175494253f, 0.984480455f, 0.177004220f, 0.984210092f, 0.178513771f, 0.983937413f, 0.180022901f, 0.983662419f, 0.181531608f, 0.983385110f, 0.183039888f, 0.983105487f, 0.184547737f, 0.982823551f, 0.186055152f, 0.982539302f, 0.187562129f, 0.982252741f, 0.189068664f, 0.981963869f, 0.190574755f, 0.981672686f, 0.192080397f, 0.981379193f, 0.193585587f, 0.981083391f, 0.195090322f, 0.980785280f, 0.196594598f, 0.980484862f, 0.198098411f, 0.980182136f, 0.199601758f, 0.979877104f, 0.201104635f, 0.979569766f, 0.202607039f, 0.979260123f, 0.204108966f, 0.978948175f, 0.205610413f, 0.978633924f, 0.207111376f, 0.978317371f, 0.208611852f, 0.977998515f, 0.210111837f, 0.977677358f, 0.211611327f, 0.977353900f, 0.213110320f, 0.977028143f, 0.214608811f, 0.976700086f, 0.216106797f, 0.976369731f, 0.217604275f, 0.976037079f, 0.219101240f, 0.975702130f, 0.220597690f, 0.975364885f, 0.222093621f, 0.975025345f, 0.223589029f, 0.974683511f, 0.225083911f, 0.974339383f, 0.226578264f, 0.973992962f, 0.228072083f, 0.973644250f, 0.229565366f, 0.973293246f, 0.231058108f, 0.972939952f, 0.232550307f, 0.972584369f, 0.234041959f, 0.972226497f, 0.235533059f, 0.971866337f, 0.237023606f, 0.971503891f, 0.238513595f, 0.971139158f, 0.240003022f, 0.970772141f, 0.241491885f, 0.970402839f, 0.242980180f, 0.970031253f, 0.244467903f, 0.969657385f, 0.245955050f, 0.969281235f, 0.247441619f, 0.968902805f, 0.248927606f, 0.968522094f, 0.250413007f, 0.968139105f, 0.251897818f, 0.967753837f, 0.253382037f, 0.967366292f, 0.254865660f, 0.966976471f, 0.256348682f, 0.966584374f, 0.257831102f, 0.966190003f, 0.259312915f, 0.965793359f, 0.260794118f, 0.965394442f, 0.262274707f, 0.964993253f, 0.263754679f, 0.964589793f, 0.265234030f, 0.964184064f, 0.266712757f, 0.963776066f, 0.268190857f, 0.963365800f, 0.269668326f, 0.962953267f, 0.271145160f, 0.962538468f, 0.272621355f, 0.962121404f, 0.274096910f, 0.961702077f, 0.275571819f, 0.961280486f, 0.277046080f, 0.960856633f, 0.278519689f, 0.960430519f, 0.279992643f, 0.960002146f, 0.281464938f, 0.959571513f, 0.282936570f, 0.959138622f, 0.284407537f, 0.958703475f, 0.285877835f, 0.958266071f, 0.287347460f, 0.957826413f, 0.288816408f, 0.957384501f, 0.290284677f, 0.956940336f, 0.291752263f, 0.956493919f, 0.293219163f, 0.956045251f, 0.294685372f, 0.955594334f, 0.296150888f, 0.955141168f, 0.297615707f, 0.954685755f, 0.299079826f, 0.954228095f, 0.300543241f, 0.953768190f, 0.302005949f, 0.953306040f, 0.303467947f, 0.952841648f, 0.304929230f, 0.952375013f, 0.306389795f, 0.951906137f, 0.307849640f, 0.951435021f, 0.309308760f, 0.950961666f, 0.310767153f, 0.950486074f, 0.312224814f, 0.950008245f, 0.313681740f, 0.949528181f, 0.315137929f, 0.949045882f, 0.316593376f, 0.948561350f, 0.318048077f, 0.948074586f, 0.319502031f, 0.947585591f, 0.320955232f, 0.947094366f, 0.322407679f, 0.946600913f, 0.323859367f, 0.946105232f, 0.325310292f, 0.945607325f, 0.326760452f, 0.945107193f, 0.328209844f, 0.944604837f, 0.329658463f, 0.944100258f, 0.331106306f, 0.943593458f, 0.332553370f, 0.943084437f, 0.333999651f, 0.942573198f, 0.335445147f, 0.942059740f, 0.336889853f, 0.941544065f, 0.338333767f, 0.941026175f, 0.339776884f, 0.940506071f, 0.341219202f, 0.939983753f, 0.342660717f, 0.939459224f, 0.344101426f, 0.938932484f, 0.345541325f, 0.938403534f, 0.346980411f, 0.937872376f, 0.348418680f, 0.937339012f, 0.349856130f, 0.936803442f, 0.351292756f, 0.936265667f, 0.352728556f, 0.935725689f, 0.354163525f, 0.935183510f, 0.355597662f, 0.934639130f, 0.357030961f, 0.934092550f, 0.358463421f, 0.933543773f, 0.359895037f, 0.932992799f, 0.361325806f, 0.932439629f, 0.362755724f, 0.931884266f, 0.364184790f, 0.931326709f, 0.365612998f, 0.930766961f, 0.367040346f, 0.930205023f, 0.368466830f, 0.929640896f, 0.369892447f, 0.929074581f, 0.371317194f, 0.928506080f, 0.372741067f, 0.927935395f, 0.374164063f, 0.927362526f, 0.375586178f, 0.926787474f, 0.377007410f, 0.926210242f, 0.378427755f, 0.925630831f, 0.379847209f, 0.925049241f, 0.381265769f, 0.924465474f, 0.382683432f, 0.923879533f, 0.384100195f, 0.923291417f, 0.385516054f, 0.922701128f, 0.386931006f, 0.922108669f, 0.388345047f, 0.921514039f, 0.389758174f, 0.920917242f, 0.391170384f, 0.920318277f, 0.392581674f, 0.919717146f, 0.393992040f, 0.919113852f, 0.395401479f, 0.918508394f, 0.396809987f, 0.917900776f, 0.398217562f, 0.917290997f, 0.399624200f, 0.916679060f, 0.401029897f, 0.916064966f, 0.402434651f, 0.915448716f, 0.403838458f, 0.914830312f, 0.405241314f, 0.914209756f, 0.406643217f, 0.913587048f, 0.408044163f, 0.912962190f, 0.409444149f, 0.912335185f, 0.410843171f, 0.911706032f, 0.412241227f, 0.911074734f, 0.413638312f, 0.910441292f, 0.415034424f, 0.909805708f, 0.416429560f, 0.909167983f, 0.417823716f, 0.908528119f, 0.419216888f, 0.907886116f, 0.420609074f, 0.907241978f, 0.422000271f, 0.906595705f, 0.423390474f, 0.905947298f, 0.424779681f, 0.905296759f, 0.426167889f, 0.904644091f, 0.427555093f, 0.903989293f, 0.428941292f, 0.903332368f, 0.430326481f, 0.902673318f, 0.431710658f, 0.902012144f, 0.433093819f, 0.901348847f, 0.434475961f, 0.900683429f, 0.435857080f, 0.900015892f, 0.437237174f, 0.899346237f, 0.438616239f, 0.898674466f, 0.439994271f, 0.898000580f, 0.441371269f, 0.897324581f, 0.442747228f, 0.896646470f, 0.444122145f, 0.895966250f, 0.445496017f, 0.895283921f, 0.446868840f, 0.894599486f, 0.448240612f, 0.893912945f, 0.449611330f, 0.893224301f, 0.450980989f, 0.892533555f, 0.452349587f, 0.891840709f, 0.453717121f, 0.891145765f, 0.455083587f, 0.890448723f, 0.456448982f, 0.889749586f, 0.457813304f, 0.889048356f, 0.459176548f, 0.888345033f, 0.460538711f, 0.887639620f, 0.461899791f, 0.886932119f, 0.463259784f, 0.886222530f, 0.464618686f, 0.885510856f, 0.465976496f, 0.884797098f, 0.467333209f, 0.884081259f, 0.468688822f, 0.883363339f, 0.470043332f, 0.882643340f, 0.471396737f, 0.881921264f, 0.472749032f, 0.881197113f, 0.474100215f, 0.880470889f, 0.475450282f, 0.879742593f, 0.476799230f, 0.879012226f, 0.478147056f, 0.878279792f, 0.479493758f, 0.877545290f, 0.480839331f, 0.876808724f, 0.482183772f, 0.876070094f, 0.483527079f, 0.875329403f, 0.484869248f, 0.874586652f, 0.486210276f, 0.873841843f, 0.487550160f, 0.873094978f, 0.488888897f, 0.872346059f, 0.490226483f, 0.871595087f, 0.491562916f, 0.870842063f, 0.492898192f, 0.870086991f, 0.494232309f, 0.869329871f, 0.495565262f, 0.868570706f, 0.496897049f, 0.867809497f, 0.498227667f, 0.867046246f, 0.499557113f, 0.866280954f, 0.500885383f, 0.865513624f, 0.502212474f, 0.864744258f, 0.503538384f, 0.863972856f, 0.504863109f, 0.863199422f, 0.506186645f, 0.862423956f, 0.507508991f, 0.861646461f, 0.508830143f, 0.860866939f, 0.510150097f, 0.860085390f, 0.511468850f, 0.859301818f, 0.512786401f, 0.858516224f, 0.514102744f, 0.857728610f, 0.515417878f, 0.856938977f, 0.516731799f, 0.856147328f, 0.518044504f, 0.855353665f, 0.519355990f, 0.854557988f, 0.520666254f, 0.853760301f, 0.521975293f, 0.852960605f, 0.523283103f, 0.852158902f, 0.524589683f, 0.851355193f, 0.525895027f, 0.850549481f, 0.527199135f, 0.849741768f, 0.528502002f, 0.848932055f, 0.529803625f, 0.848120345f, 0.531104001f, 0.847306639f, 0.532403128f, 0.846490939f, 0.533701002f, 0.845673247f, 0.534997620f, 0.844853565f, 0.536292979f, 0.844031895f, 0.537587076f, 0.843208240f, 0.538879909f, 0.842382600f, 0.540171473f, 0.841554977f, 0.541461766f, 0.840725375f, 0.542750785f, 0.839893794f, 0.544038527f, 0.839060237f, 0.545324988f, 0.838224706f, 0.546610167f, 0.837387202f, 0.547894059f, 0.836547727f, 0.549176662f, 0.835706284f, 0.550457973f, 0.834862875f, 0.551737988f, 0.834017501f, 0.553016706f, 0.833170165f, 0.554294121f, 0.832320868f, 0.555570233f, 0.831469612f, 0.556845037f, 0.830616400f, 0.558118531f, 0.829761234f, 0.559390712f, 0.828904115f, 0.560661576f, 0.828045045f, 0.561931121f, 0.827184027f, 0.563199344f, 0.826321063f, 0.564466242f, 0.825456154f, 0.565731811f, 0.824589303f, 0.566996049f, 0.823720511f, 0.568258953f, 0.822849781f, 0.569520519f, 0.821977115f, 0.570780746f, 0.821102515f, 0.572039629f, 0.820225983f, 0.573297167f, 0.819347520f, 0.574553355f, 0.818467130f, 0.575808191f, 0.817584813f, 0.577061673f, 0.816700573f, 0.578313796f, 0.815814411f, 0.579564559f, 0.814926329f, 0.580813958f, 0.814036330f, 0.582061990f, 0.813144415f, 0.583308653f, 0.812250587f, 0.584553943f, 0.811354847f, 0.585797857f, 0.810457198f, 0.587040394f, 0.809557642f, 0.588281548f, 0.808656182f, 0.589521319f, 0.807752818f, 0.590759702f, 0.806847554f, 0.591996695f, 0.805940391f, 0.593232295f, 0.805031331f, 0.594466499f, 0.804120377f, 0.595699304f, 0.803207531f, 0.596930708f, 0.802292796f, 0.598160707f, 0.801376172f, 0.599389298f, 0.800457662f, 0.600616479f, 0.799537269f, 0.601842247f, 0.798614995f, 0.603066599f, 0.797690841f, 0.604289531f, 0.796764810f, 0.605511041f, 0.795836905f, 0.606731127f, 0.794907126f, 0.607949785f, 0.793975478f, 0.609167012f, 0.793041960f, 0.610382806f, 0.792106577f, 0.611597164f, 0.791169330f, 0.612810082f, 0.790230221f, 0.614021559f, 0.789289253f, 0.615231591f, 0.788346428f, 0.616440175f, 0.787401747f, 0.617647308f, 0.786455214f, 0.618852988f, 0.785506830f, 0.620057212f, 0.784556597f, 0.621259977f, 0.783604519f, 0.622461279f, 0.782650596f, 0.623661118f, 0.781694832f, 0.624859488f, 0.780737229f, 0.626056388f, 0.779777788f, 0.627251815f, 0.778816512f, 0.628445767f, 0.777853404f, 0.629638239f, 0.776888466f, 0.630829230f, 0.775921699f, 0.632018736f, 0.774953107f, 0.633206755f, 0.773982691f, 0.634393284f, 0.773010453f, 0.635578320f, 0.772036397f, 0.636761861f, 0.771060524f, 0.637943904f, 0.770082837f, 0.639124445f, 0.769103338f, 0.640303482f, 0.768122029f, 0.641481013f, 0.767138912f, 0.642657034f, 0.766153990f, 0.643831543f, 0.765167266f, 0.645004537f, 0.764178741f, 0.646176013f, 0.763188417f, 0.647345969f, 0.762196298f, 0.648514401f, 0.761202385f, 0.649681307f, 0.760206682f, 0.650846685f, 0.759209189f, 0.652010531f, 0.758209910f, 0.653172843f, 0.757208847f, 0.654333618f, 0.756206001f, 0.655492853f, 0.755201377f, 0.656650546f, 0.754194975f, 0.657806693f, 0.753186799f, 0.658961293f, 0.752176850f, 0.660114342f, 0.751165132f, 0.661265838f, 0.750151646f, 0.662415778f, 0.749136395f, 0.663564159f, 0.748119380f, 0.664710978f, 0.747100606f, 0.665856234f, 0.746080074f, 0.666999922f, 0.745057785f, 0.668142041f, 0.744033744f, 0.669282588f, 0.743007952f, 0.670421560f, 0.741980412f, 0.671558955f, 0.740951125f, 0.672694769f, 0.739920095f, 0.673829000f, 0.738887324f, 0.674961646f, 0.737852815f, 0.676092704f, 0.736816569f, 0.677222170f, 0.735778589f, 0.678350043f, 0.734738878f, 0.679476320f, 0.733697438f, 0.680600998f, 0.732654272f, 0.681724074f, 0.731609381f, 0.682845546f, 0.730562769f, 0.683965412f, 0.729514438f, 0.685083668f, 0.728464390f, 0.686200312f, 0.727412629f, 0.687315341f, 0.726359155f, 0.688428753f, 0.725303972f, 0.689540545f, 0.724247083f, 0.690650714f, 0.723188489f, 0.691759258f, 0.722128194f, 0.692866175f, 0.721066199f, 0.693971461f, 0.720002508f, 0.695075114f, 0.718937122f, 0.696177131f, 0.717870045f, 0.697277511f, 0.716801279f, 0.698376249f, 0.715730825f, 0.699473345f, 0.714658688f, 0.700568794f, 0.713584869f, 0.701662595f, 0.712509371f, 0.702754744f, 0.711432196f, 0.703845241f, 0.710353347f, 0.704934080f, 0.709272826f, 0.706021261f, 0.708190637f, 0.707106781f, 0.707106781f, 0.708190637f, 0.706021261f, 0.709272826f, 0.704934080f, 0.710353347f, 0.703845241f, 0.711432196f, 0.702754744f, 0.712509371f, 0.701662595f, 0.713584869f, 0.700568794f, 0.714658688f, 0.699473345f, 0.715730825f, 0.698376249f, 0.716801279f, 0.697277511f, 0.717870045f, 0.696177131f, 0.718937122f, 0.695075114f, 0.720002508f, 0.693971461f, 0.721066199f, 0.692866175f, 0.722128194f, 0.691759258f, 0.723188489f, 0.690650714f, 0.724247083f, 0.689540545f, 0.725303972f, 0.688428753f, 0.726359155f, 0.687315341f, 0.727412629f, 0.686200312f, 0.728464390f, 0.685083668f, 0.729514438f, 0.683965412f, 0.730562769f, 0.682845546f, 0.731609381f, 0.681724074f, 0.732654272f, 0.680600998f, 0.733697438f, 0.679476320f, 0.734738878f, 0.678350043f, 0.735778589f, 0.677222170f, 0.736816569f, 0.676092704f, 0.737852815f, 0.674961646f, 0.738887324f, 0.673829000f, 0.739920095f, 0.672694769f, 0.740951125f, 0.671558955f, 0.741980412f, 0.670421560f, 0.743007952f, 0.669282588f, 0.744033744f, 0.668142041f, 0.745057785f, 0.666999922f, 0.746080074f, 0.665856234f, 0.747100606f, 0.664710978f, 0.748119380f, 0.663564159f, 0.749136395f, 0.662415778f, 0.750151646f, 0.661265838f, 0.751165132f, 0.660114342f, 0.752176850f, 0.658961293f, 0.753186799f, 0.657806693f, 0.754194975f, 0.656650546f, 0.755201377f, 0.655492853f, 0.756206001f, 0.654333618f, 0.757208847f, 0.653172843f, 0.758209910f, 0.652010531f, 0.759209189f, 0.650846685f, 0.760206682f, 0.649681307f, 0.761202385f, 0.648514401f, 0.762196298f, 0.647345969f, 0.763188417f, 0.646176013f, 0.764178741f, 0.645004537f, 0.765167266f, 0.643831543f, 0.766153990f, 0.642657034f, 0.767138912f, 0.641481013f, 0.768122029f, 0.640303482f, 0.769103338f, 0.639124445f, 0.770082837f, 0.637943904f, 0.771060524f, 0.636761861f, 0.772036397f, 0.635578320f, 0.773010453f, 0.634393284f, 0.773982691f, 0.633206755f, 0.774953107f, 0.632018736f, 0.775921699f, 0.630829230f, 0.776888466f, 0.629638239f, 0.777853404f, 0.628445767f, 0.778816512f, 0.627251815f, 0.779777788f, 0.626056388f, 0.780737229f, 0.624859488f, 0.781694832f, 0.623661118f, 0.782650596f, 0.622461279f, 0.783604519f, 0.621259977f, 0.784556597f, 0.620057212f, 0.785506830f, 0.618852988f, 0.786455214f, 0.617647308f, 0.787401747f, 0.616440175f, 0.788346428f, 0.615231591f, 0.789289253f, 0.614021559f, 0.790230221f, 0.612810082f, 0.791169330f, 0.611597164f, 0.792106577f, 0.610382806f, 0.793041960f, 0.609167012f, 0.793975478f, 0.607949785f, 0.794907126f, 0.606731127f, 0.795836905f, 0.605511041f, 0.796764810f, 0.604289531f, 0.797690841f, 0.603066599f, 0.798614995f, 0.601842247f, 0.799537269f, 0.600616479f, 0.800457662f, 0.599389298f, 0.801376172f, 0.598160707f, 0.802292796f, 0.596930708f, 0.803207531f, 0.595699304f, 0.804120377f, 0.594466499f, 0.805031331f, 0.593232295f, 0.805940391f, 0.591996695f, 0.806847554f, 0.590759702f, 0.807752818f, 0.589521319f, 0.808656182f, 0.588281548f, 0.809557642f, 0.587040394f, 0.810457198f, 0.585797857f, 0.811354847f, 0.584553943f, 0.812250587f, 0.583308653f, 0.813144415f, 0.582061990f, 0.814036330f, 0.580813958f, 0.814926329f, 0.579564559f, 0.815814411f, 0.578313796f, 0.816700573f, 0.577061673f, 0.817584813f, 0.575808191f, 0.818467130f, 0.574553355f, 0.819347520f, 0.573297167f, 0.820225983f, 0.572039629f, 0.821102515f, 0.570780746f, 0.821977115f, 0.569520519f, 0.822849781f, 0.568258953f, 0.823720511f, 0.566996049f, 0.824589303f, 0.565731811f, 0.825456154f, 0.564466242f, 0.826321063f, 0.563199344f, 0.827184027f, 0.561931121f, 0.828045045f, 0.560661576f, 0.828904115f, 0.559390712f, 0.829761234f, 0.558118531f, 0.830616400f, 0.556845037f, 0.831469612f, 0.555570233f, 0.832320868f, 0.554294121f, 0.833170165f, 0.553016706f, 0.834017501f, 0.551737988f, 0.834862875f, 0.550457973f, 0.835706284f, 0.549176662f, 0.836547727f, 0.547894059f, 0.837387202f, 0.546610167f, 0.838224706f, 0.545324988f, 0.839060237f, 0.544038527f, 0.839893794f, 0.542750785f, 0.840725375f, 0.541461766f, 0.841554977f, 0.540171473f, 0.842382600f, 0.538879909f, 0.843208240f, 0.537587076f, 0.844031895f, 0.536292979f, 0.844853565f, 0.534997620f, 0.845673247f, 0.533701002f, 0.846490939f, 0.532403128f, 0.847306639f, 0.531104001f, 0.848120345f, 0.529803625f, 0.848932055f, 0.528502002f, 0.849741768f, 0.527199135f, 0.850549481f, 0.525895027f, 0.851355193f, 0.524589683f, 0.852158902f, 0.523283103f, 0.852960605f, 0.521975293f, 0.853760301f, 0.520666254f, 0.854557988f, 0.519355990f, 0.855353665f, 0.518044504f, 0.856147328f, 0.516731799f, 0.856938977f, 0.515417878f, 0.857728610f, 0.514102744f, 0.858516224f, 0.512786401f, 0.859301818f, 0.511468850f, 0.860085390f, 0.510150097f, 0.860866939f, 0.508830143f, 0.861646461f, 0.507508991f, 0.862423956f, 0.506186645f, 0.863199422f, 0.504863109f, 0.863972856f, 0.503538384f, 0.864744258f, 0.502212474f, 0.865513624f, 0.500885383f, 0.866280954f, 0.499557113f, 0.867046246f, 0.498227667f, 0.867809497f, 0.496897049f, 0.868570706f, 0.495565262f, 0.869329871f, 0.494232309f, 0.870086991f, 0.492898192f, 0.870842063f, 0.491562916f, 0.871595087f, 0.490226483f, 0.872346059f, 0.488888897f, 0.873094978f, 0.487550160f, 0.873841843f, 0.486210276f, 0.874586652f, 0.484869248f, 0.875329403f, 0.483527079f, 0.876070094f, 0.482183772f, 0.876808724f, 0.480839331f, 0.877545290f, 0.479493758f, 0.878279792f, 0.478147056f, 0.879012226f, 0.476799230f, 0.879742593f, 0.475450282f, 0.880470889f, 0.474100215f, 0.881197113f, 0.472749032f, 0.881921264f, 0.471396737f, 0.882643340f, 0.470043332f, 0.883363339f, 0.468688822f, 0.884081259f, 0.467333209f, 0.884797098f, 0.465976496f, 0.885510856f, 0.464618686f, 0.886222530f, 0.463259784f, 0.886932119f, 0.461899791f, 0.887639620f, 0.460538711f, 0.888345033f, 0.459176548f, 0.889048356f, 0.457813304f, 0.889749586f, 0.456448982f, 0.890448723f, 0.455083587f, 0.891145765f, 0.453717121f, 0.891840709f, 0.452349587f, 0.892533555f, 0.450980989f, 0.893224301f, 0.449611330f, 0.893912945f, 0.448240612f, 0.894599486f, 0.446868840f, 0.895283921f, 0.445496017f, 0.895966250f, 0.444122145f, 0.896646470f, 0.442747228f, 0.897324581f, 0.441371269f, 0.898000580f, 0.439994271f, 0.898674466f, 0.438616239f, 0.899346237f, 0.437237174f, 0.900015892f, 0.435857080f, 0.900683429f, 0.434475961f, 0.901348847f, 0.433093819f, 0.902012144f, 0.431710658f, 0.902673318f, 0.430326481f, 0.903332368f, 0.428941292f, 0.903989293f, 0.427555093f, 0.904644091f, 0.426167889f, 0.905296759f, 0.424779681f, 0.905947298f, 0.423390474f, 0.906595705f, 0.422000271f, 0.907241978f, 0.420609074f, 0.907886116f, 0.419216888f, 0.908528119f, 0.417823716f, 0.909167983f, 0.416429560f, 0.909805708f, 0.415034424f, 0.910441292f, 0.413638312f, 0.911074734f, 0.412241227f, 0.911706032f, 0.410843171f, 0.912335185f, 0.409444149f, 0.912962190f, 0.408044163f, 0.913587048f, 0.406643217f, 0.914209756f, 0.405241314f, 0.914830312f, 0.403838458f, 0.915448716f, 0.402434651f, 0.916064966f, 0.401029897f, 0.916679060f, 0.399624200f, 0.917290997f, 0.398217562f, 0.917900776f, 0.396809987f, 0.918508394f, 0.395401479f, 0.919113852f, 0.393992040f, 0.919717146f, 0.392581674f, 0.920318277f, 0.391170384f, 0.920917242f, 0.389758174f, 0.921514039f, 0.388345047f, 0.922108669f, 0.386931006f, 0.922701128f, 0.385516054f, 0.923291417f, 0.384100195f, 0.923879533f, 0.382683432f, 0.924465474f, 0.381265769f, 0.925049241f, 0.379847209f, 0.925630831f, 0.378427755f, 0.926210242f, 0.377007410f, 0.926787474f, 0.375586178f, 0.927362526f, 0.374164063f, 0.927935395f, 0.372741067f, 0.928506080f, 0.371317194f, 0.929074581f, 0.369892447f, 0.929640896f, 0.368466830f, 0.930205023f, 0.367040346f, 0.930766961f, 0.365612998f, 0.931326709f, 0.364184790f, 0.931884266f, 0.362755724f, 0.932439629f, 0.361325806f, 0.932992799f, 0.359895037f, 0.933543773f, 0.358463421f, 0.934092550f, 0.357030961f, 0.934639130f, 0.355597662f, 0.935183510f, 0.354163525f, 0.935725689f, 0.352728556f, 0.936265667f, 0.351292756f, 0.936803442f, 0.349856130f, 0.937339012f, 0.348418680f, 0.937872376f, 0.346980411f, 0.938403534f, 0.345541325f, 0.938932484f, 0.344101426f, 0.939459224f, 0.342660717f, 0.939983753f, 0.341219202f, 0.940506071f, 0.339776884f, 0.941026175f, 0.338333767f, 0.941544065f, 0.336889853f, 0.942059740f, 0.335445147f, 0.942573198f, 0.333999651f, 0.943084437f, 0.332553370f, 0.943593458f, 0.331106306f, 0.944100258f, 0.329658463f, 0.944604837f, 0.328209844f, 0.945107193f, 0.326760452f, 0.945607325f, 0.325310292f, 0.946105232f, 0.323859367f, 0.946600913f, 0.322407679f, 0.947094366f, 0.320955232f, 0.947585591f, 0.319502031f, 0.948074586f, 0.318048077f, 0.948561350f, 0.316593376f, 0.949045882f, 0.315137929f, 0.949528181f, 0.313681740f, 0.950008245f, 0.312224814f, 0.950486074f, 0.310767153f, 0.950961666f, 0.309308760f, 0.951435021f, 0.307849640f, 0.951906137f, 0.306389795f, 0.952375013f, 0.304929230f, 0.952841648f, 0.303467947f, 0.953306040f, 0.302005949f, 0.953768190f, 0.300543241f, 0.954228095f, 0.299079826f, 0.954685755f, 0.297615707f, 0.955141168f, 0.296150888f, 0.955594334f, 0.294685372f, 0.956045251f, 0.293219163f, 0.956493919f, 0.291752263f, 0.956940336f, 0.290284677f, 0.957384501f, 0.288816408f, 0.957826413f, 0.287347460f, 0.958266071f, 0.285877835f, 0.958703475f, 0.284407537f, 0.959138622f, 0.282936570f, 0.959571513f, 0.281464938f, 0.960002146f, 0.279992643f, 0.960430519f, 0.278519689f, 0.960856633f, 0.277046080f, 0.961280486f, 0.275571819f, 0.961702077f, 0.274096910f, 0.962121404f, 0.272621355f, 0.962538468f, 0.271145160f, 0.962953267f, 0.269668326f, 0.963365800f, 0.268190857f, 0.963776066f, 0.266712757f, 0.964184064f, 0.265234030f, 0.964589793f, 0.263754679f, 0.964993253f, 0.262274707f, 0.965394442f, 0.260794118f, 0.965793359f, 0.259312915f, 0.966190003f, 0.257831102f, 0.966584374f, 0.256348682f, 0.966976471f, 0.254865660f, 0.967366292f, 0.253382037f, 0.967753837f, 0.251897818f, 0.968139105f, 0.250413007f, 0.968522094f, 0.248927606f, 0.968902805f, 0.247441619f, 0.969281235f, 0.245955050f, 0.969657385f, 0.244467903f, 0.970031253f, 0.242980180f, 0.970402839f, 0.241491885f, 0.970772141f, 0.240003022f, 0.971139158f, 0.238513595f, 0.971503891f, 0.237023606f, 0.971866337f, 0.235533059f, 0.972226497f, 0.234041959f, 0.972584369f, 0.232550307f, 0.972939952f, 0.231058108f, 0.973293246f, 0.229565366f, 0.973644250f, 0.228072083f, 0.973992962f, 0.226578264f, 0.974339383f, 0.225083911f, 0.974683511f, 0.223589029f, 0.975025345f, 0.222093621f, 0.975364885f, 0.220597690f, 0.975702130f, 0.219101240f, 0.976037079f, 0.217604275f, 0.976369731f, 0.216106797f, 0.976700086f, 0.214608811f, 0.977028143f, 0.213110320f, 0.977353900f, 0.211611327f, 0.977677358f, 0.210111837f, 0.977998515f, 0.208611852f, 0.978317371f, 0.207111376f, 0.978633924f, 0.205610413f, 0.978948175f, 0.204108966f, 0.979260123f, 0.202607039f, 0.979569766f, 0.201104635f, 0.979877104f, 0.199601758f, 0.980182136f, 0.198098411f, 0.980484862f, 0.196594598f, 0.980785280f, 0.195090322f, 0.981083391f, 0.193585587f, 0.981379193f, 0.192080397f, 0.981672686f, 0.190574755f, 0.981963869f, 0.189068664f, 0.982252741f, 0.187562129f, 0.982539302f, 0.186055152f, 0.982823551f, 0.184547737f, 0.983105487f, 0.183039888f, 0.983385110f, 0.181531608f, 0.983662419f, 0.180022901f, 0.983937413f, 0.178513771f, 0.984210092f, 0.177004220f, 0.984480455f, 0.175494253f, 0.984748502f, 0.173983873f, 0.985014231f, 0.172473084f, 0.985277642f, 0.170961889f, 0.985538735f, 0.169450291f, 0.985797509f, 0.167938295f, 0.986053963f, 0.166425904f, 0.986308097f, 0.164913120f, 0.986559910f, 0.163399949f, 0.986809402f, 0.161886394f, 0.987056571f, 0.160372457f, 0.987301418f, 0.158858143f, 0.987543942f, 0.157343456f, 0.987784142f, 0.155828398f, 0.988022017f, 0.154312973f, 0.988257568f, 0.152797185f, 0.988490793f, 0.151281038f, 0.988721692f, 0.149764535f, 0.988950265f, 0.148247679f, 0.989176510f, 0.146730474f, 0.989400428f, 0.145212925f, 0.989622017f, 0.143695033f, 0.989841278f, 0.142176804f, 0.990058210f, 0.140658239f, 0.990272812f, 0.139139344f, 0.990485084f, 0.137620122f, 0.990695025f, 0.136100575f, 0.990902635f, 0.134580709f, 0.991107914f, 0.133060525f, 0.991310860f, 0.131540029f, 0.991511473f, 0.130019223f, 0.991709754f, 0.128498111f, 0.991905700f, 0.126976696f, 0.992099313f, 0.125454983f, 0.992290591f, 0.123932975f, 0.992479535f, 0.122410675f, 0.992666142f, 0.120888087f, 0.992850414f, 0.119365215f, 0.993032350f, 0.117842062f, 0.993211949f, 0.116318631f, 0.993389211f, 0.114794927f, 0.993564136f, 0.113270952f, 0.993736722f, 0.111746711f, 0.993906970f, 0.110222207f, 0.994074879f, 0.108697444f, 0.994240449f, 0.107172425f, 0.994403680f, 0.105647154f, 0.994564571f, 0.104121634f, 0.994723121f, 0.102595869f, 0.994879331f, 0.101069863f, 0.995033199f, 0.099543619f, 0.995184727f, 0.098017140f, 0.995333912f, 0.096490431f, 0.995480755f, 0.094963495f, 0.995625256f, 0.093436336f, 0.995767414f, 0.091908956f, 0.995907229f, 0.090381361f, 0.996044701f, 0.088853553f, 0.996179829f, 0.087325535f, 0.996312612f, 0.085797312f, 0.996443051f, 0.084268888f, 0.996571146f, 0.082740265f, 0.996696895f, 0.081211447f, 0.996820299f, 0.079682438f, 0.996941358f, 0.078153242f, 0.997060070f, 0.076623861f, 0.997176437f, 0.075094301f, 0.997290457f, 0.073564564f, 0.997402130f, 0.072034653f, 0.997511456f, 0.070504573f, 0.997618435f, 0.068974328f, 0.997723067f, 0.067443920f, 0.997825350f, 0.065913353f, 0.997925286f, 0.064382631f, 0.998022874f, 0.062851758f, 0.998118113f, 0.061320736f, 0.998211003f, 0.059789571f, 0.998301545f, 0.058258265f, 0.998389737f, 0.056726821f, 0.998475581f, 0.055195244f, 0.998559074f, 0.053663538f, 0.998640218f, 0.052131705f, 0.998719012f, 0.050599749f, 0.998795456f, 0.049067674f, 0.998869550f, 0.047535484f, 0.998941293f, 0.046003182f, 0.999010686f, 0.044470772f, 0.999077728f, 0.042938257f, 0.999142419f, 0.041405641f, 0.999204759f, 0.039872928f, 0.999264747f, 0.038340120f, 0.999322385f, 0.036807223f, 0.999377670f, 0.035274239f, 0.999430605f, 0.033741172f, 0.999481187f, 0.032208025f, 0.999529418f, 0.030674803f, 0.999575296f, 0.029141509f, 0.999618822f, 0.027608146f, 0.999659997f, 0.026074718f, 0.999698819f, 0.024541229f, 0.999735288f, 0.023007681f, 0.999769405f, 0.021474080f, 0.999801170f, 0.019940429f, 0.999830582f, 0.018406730f, 0.999857641f, 0.016872988f, 0.999882347f, 0.015339206f, 0.999904701f, 0.013805389f, 0.999924702f, 0.012271538f, 0.999942350f, 0.010737659f, 0.999957645f, 0.009203755f, 0.999970586f, 0.007669829f, 0.999981175f, 0.006135885f, 0.999989411f, 0.004601926f, 0.999995294f, 0.003067957f, 0.999998823f, 0.001533980f, 1.000000000f, 0.000000000f, 0.999998823f, -0.001533980f, 0.999995294f, -0.003067957f, 0.999989411f, -0.004601926f, 0.999981175f, -0.006135885f, 0.999970586f, -0.007669829f, 0.999957645f, -0.009203755f, 0.999942350f, -0.010737659f, 0.999924702f, -0.012271538f, 0.999904701f, -0.013805389f, 0.999882347f, -0.015339206f, 0.999857641f, -0.016872988f, 0.999830582f, -0.018406730f, 0.999801170f, -0.019940429f, 0.999769405f, -0.021474080f, 0.999735288f, -0.023007681f, 0.999698819f, -0.024541229f, 0.999659997f, -0.026074718f, 0.999618822f, -0.027608146f, 0.999575296f, -0.029141509f, 0.999529418f, -0.030674803f, 0.999481187f, -0.032208025f, 0.999430605f, -0.033741172f, 0.999377670f, -0.035274239f, 0.999322385f, -0.036807223f, 0.999264747f, -0.038340120f, 0.999204759f, -0.039872928f, 0.999142419f, -0.041405641f, 0.999077728f, -0.042938257f, 0.999010686f, -0.044470772f, 0.998941293f, -0.046003182f, 0.998869550f, -0.047535484f, 0.998795456f, -0.049067674f, 0.998719012f, -0.050599749f, 0.998640218f, -0.052131705f, 0.998559074f, -0.053663538f, 0.998475581f, -0.055195244f, 0.998389737f, -0.056726821f, 0.998301545f, -0.058258265f, 0.998211003f, -0.059789571f, 0.998118113f, -0.061320736f, 0.998022874f, -0.062851758f, 0.997925286f, -0.064382631f, 0.997825350f, -0.065913353f, 0.997723067f, -0.067443920f, 0.997618435f, -0.068974328f, 0.997511456f, -0.070504573f, 0.997402130f, -0.072034653f, 0.997290457f, -0.073564564f, 0.997176437f, -0.075094301f, 0.997060070f, -0.076623861f, 0.996941358f, -0.078153242f, 0.996820299f, -0.079682438f, 0.996696895f, -0.081211447f, 0.996571146f, -0.082740265f, 0.996443051f, -0.084268888f, 0.996312612f, -0.085797312f, 0.996179829f, -0.087325535f, 0.996044701f, -0.088853553f, 0.995907229f, -0.090381361f, 0.995767414f, -0.091908956f, 0.995625256f, -0.093436336f, 0.995480755f, -0.094963495f, 0.995333912f, -0.096490431f, 0.995184727f, -0.098017140f, 0.995033199f, -0.099543619f, 0.994879331f, -0.101069863f, 0.994723121f, -0.102595869f, 0.994564571f, -0.104121634f, 0.994403680f, -0.105647154f, 0.994240449f, -0.107172425f, 0.994074879f, -0.108697444f, 0.993906970f, -0.110222207f, 0.993736722f, -0.111746711f, 0.993564136f, -0.113270952f, 0.993389211f, -0.114794927f, 0.993211949f, -0.116318631f, 0.993032350f, -0.117842062f, 0.992850414f, -0.119365215f, 0.992666142f, -0.120888087f, 0.992479535f, -0.122410675f, 0.992290591f, -0.123932975f, 0.992099313f, -0.125454983f, 0.991905700f, -0.126976696f, 0.991709754f, -0.128498111f, 0.991511473f, -0.130019223f, 0.991310860f, -0.131540029f, 0.991107914f, -0.133060525f, 0.990902635f, -0.134580709f, 0.990695025f, -0.136100575f, 0.990485084f, -0.137620122f, 0.990272812f, -0.139139344f, 0.990058210f, -0.140658239f, 0.989841278f, -0.142176804f, 0.989622017f, -0.143695033f, 0.989400428f, -0.145212925f, 0.989176510f, -0.146730474f, 0.988950265f, -0.148247679f, 0.988721692f, -0.149764535f, 0.988490793f, -0.151281038f, 0.988257568f, -0.152797185f, 0.988022017f, -0.154312973f, 0.987784142f, -0.155828398f, 0.987543942f, -0.157343456f, 0.987301418f, -0.158858143f, 0.987056571f, -0.160372457f, 0.986809402f, -0.161886394f, 0.986559910f, -0.163399949f, 0.986308097f, -0.164913120f, 0.986053963f, -0.166425904f, 0.985797509f, -0.167938295f, 0.985538735f, -0.169450291f, 0.985277642f, -0.170961889f, 0.985014231f, -0.172473084f, 0.984748502f, -0.173983873f, 0.984480455f, -0.175494253f, 0.984210092f, -0.177004220f, 0.983937413f, -0.178513771f, 0.983662419f, -0.180022901f, 0.983385110f, -0.181531608f, 0.983105487f, -0.183039888f, 0.982823551f, -0.184547737f, 0.982539302f, -0.186055152f, 0.982252741f, -0.187562129f, 0.981963869f, -0.189068664f, 0.981672686f, -0.190574755f, 0.981379193f, -0.192080397f, 0.981083391f, -0.193585587f, 0.980785280f, -0.195090322f, 0.980484862f, -0.196594598f, 0.980182136f, -0.198098411f, 0.979877104f, -0.199601758f, 0.979569766f, -0.201104635f, 0.979260123f, -0.202607039f, 0.978948175f, -0.204108966f, 0.978633924f, -0.205610413f, 0.978317371f, -0.207111376f, 0.977998515f, -0.208611852f, 0.977677358f, -0.210111837f, 0.977353900f, -0.211611327f, 0.977028143f, -0.213110320f, 0.976700086f, -0.214608811f, 0.976369731f, -0.216106797f, 0.976037079f, -0.217604275f, 0.975702130f, -0.219101240f, 0.975364885f, -0.220597690f, 0.975025345f, -0.222093621f, 0.974683511f, -0.223589029f, 0.974339383f, -0.225083911f, 0.973992962f, -0.226578264f, 0.973644250f, -0.228072083f, 0.973293246f, -0.229565366f, 0.972939952f, -0.231058108f, 0.972584369f, -0.232550307f, 0.972226497f, -0.234041959f, 0.971866337f, -0.235533059f, 0.971503891f, -0.237023606f, 0.971139158f, -0.238513595f, 0.970772141f, -0.240003022f, 0.970402839f, -0.241491885f, 0.970031253f, -0.242980180f, 0.969657385f, -0.244467903f, 0.969281235f, -0.245955050f, 0.968902805f, -0.247441619f, 0.968522094f, -0.248927606f, 0.968139105f, -0.250413007f, 0.967753837f, -0.251897818f, 0.967366292f, -0.253382037f, 0.966976471f, -0.254865660f, 0.966584374f, -0.256348682f, 0.966190003f, -0.257831102f, 0.965793359f, -0.259312915f, 0.965394442f, -0.260794118f, 0.964993253f, -0.262274707f, 0.964589793f, -0.263754679f, 0.964184064f, -0.265234030f, 0.963776066f, -0.266712757f, 0.963365800f, -0.268190857f, 0.962953267f, -0.269668326f, 0.962538468f, -0.271145160f, 0.962121404f, -0.272621355f, 0.961702077f, -0.274096910f, 0.961280486f, -0.275571819f, 0.960856633f, -0.277046080f, 0.960430519f, -0.278519689f, 0.960002146f, -0.279992643f, 0.959571513f, -0.281464938f, 0.959138622f, -0.282936570f, 0.958703475f, -0.284407537f, 0.958266071f, -0.285877835f, 0.957826413f, -0.287347460f, 0.957384501f, -0.288816408f, 0.956940336f, -0.290284677f, 0.956493919f, -0.291752263f, 0.956045251f, -0.293219163f, 0.955594334f, -0.294685372f, 0.955141168f, -0.296150888f, 0.954685755f, -0.297615707f, 0.954228095f, -0.299079826f, 0.953768190f, -0.300543241f, 0.953306040f, -0.302005949f, 0.952841648f, -0.303467947f, 0.952375013f, -0.304929230f, 0.951906137f, -0.306389795f, 0.951435021f, -0.307849640f, 0.950961666f, -0.309308760f, 0.950486074f, -0.310767153f, 0.950008245f, -0.312224814f, 0.949528181f, -0.313681740f, 0.949045882f, -0.315137929f, 0.948561350f, -0.316593376f, 0.948074586f, -0.318048077f, 0.947585591f, -0.319502031f, 0.947094366f, -0.320955232f, 0.946600913f, -0.322407679f, 0.946105232f, -0.323859367f, 0.945607325f, -0.325310292f, 0.945107193f, -0.326760452f, 0.944604837f, -0.328209844f, 0.944100258f, -0.329658463f, 0.943593458f, -0.331106306f, 0.943084437f, -0.332553370f, 0.942573198f, -0.333999651f, 0.942059740f, -0.335445147f, 0.941544065f, -0.336889853f, 0.941026175f, -0.338333767f, 0.940506071f, -0.339776884f, 0.939983753f, -0.341219202f, 0.939459224f, -0.342660717f, 0.938932484f, -0.344101426f, 0.938403534f, -0.345541325f, 0.937872376f, -0.346980411f, 0.937339012f, -0.348418680f, 0.936803442f, -0.349856130f, 0.936265667f, -0.351292756f, 0.935725689f, -0.352728556f, 0.935183510f, -0.354163525f, 0.934639130f, -0.355597662f, 0.934092550f, -0.357030961f, 0.933543773f, -0.358463421f, 0.932992799f, -0.359895037f, 0.932439629f, -0.361325806f, 0.931884266f, -0.362755724f, 0.931326709f, -0.364184790f, 0.930766961f, -0.365612998f, 0.930205023f, -0.367040346f, 0.929640896f, -0.368466830f, 0.929074581f, -0.369892447f, 0.928506080f, -0.371317194f, 0.927935395f, -0.372741067f, 0.927362526f, -0.374164063f, 0.926787474f, -0.375586178f, 0.926210242f, -0.377007410f, 0.925630831f, -0.378427755f, 0.925049241f, -0.379847209f, 0.924465474f, -0.381265769f, 0.923879533f, -0.382683432f, 0.923291417f, -0.384100195f, 0.922701128f, -0.385516054f, 0.922108669f, -0.386931006f, 0.921514039f, -0.388345047f, 0.920917242f, -0.389758174f, 0.920318277f, -0.391170384f, 0.919717146f, -0.392581674f, 0.919113852f, -0.393992040f, 0.918508394f, -0.395401479f, 0.917900776f, -0.396809987f, 0.917290997f, -0.398217562f, 0.916679060f, -0.399624200f, 0.916064966f, -0.401029897f, 0.915448716f, -0.402434651f, 0.914830312f, -0.403838458f, 0.914209756f, -0.405241314f, 0.913587048f, -0.406643217f, 0.912962190f, -0.408044163f, 0.912335185f, -0.409444149f, 0.911706032f, -0.410843171f, 0.911074734f, -0.412241227f, 0.910441292f, -0.413638312f, 0.909805708f, -0.415034424f, 0.909167983f, -0.416429560f, 0.908528119f, -0.417823716f, 0.907886116f, -0.419216888f, 0.907241978f, -0.420609074f, 0.906595705f, -0.422000271f, 0.905947298f, -0.423390474f, 0.905296759f, -0.424779681f, 0.904644091f, -0.426167889f, 0.903989293f, -0.427555093f, 0.903332368f, -0.428941292f, 0.902673318f, -0.430326481f, 0.902012144f, -0.431710658f, 0.901348847f, -0.433093819f, 0.900683429f, -0.434475961f, 0.900015892f, -0.435857080f, 0.899346237f, -0.437237174f, 0.898674466f, -0.438616239f, 0.898000580f, -0.439994271f, 0.897324581f, -0.441371269f, 0.896646470f, -0.442747228f, 0.895966250f, -0.444122145f, 0.895283921f, -0.445496017f, 0.894599486f, -0.446868840f, 0.893912945f, -0.448240612f, 0.893224301f, -0.449611330f, 0.892533555f, -0.450980989f, 0.891840709f, -0.452349587f, 0.891145765f, -0.453717121f, 0.890448723f, -0.455083587f, 0.889749586f, -0.456448982f, 0.889048356f, -0.457813304f, 0.888345033f, -0.459176548f, 0.887639620f, -0.460538711f, 0.886932119f, -0.461899791f, 0.886222530f, -0.463259784f, 0.885510856f, -0.464618686f, 0.884797098f, -0.465976496f, 0.884081259f, -0.467333209f, 0.883363339f, -0.468688822f, 0.882643340f, -0.470043332f, 0.881921264f, -0.471396737f, 0.881197113f, -0.472749032f, 0.880470889f, -0.474100215f, 0.879742593f, -0.475450282f, 0.879012226f, -0.476799230f, 0.878279792f, -0.478147056f, 0.877545290f, -0.479493758f, 0.876808724f, -0.480839331f, 0.876070094f, -0.482183772f, 0.875329403f, -0.483527079f, 0.874586652f, -0.484869248f, 0.873841843f, -0.486210276f, 0.873094978f, -0.487550160f, 0.872346059f, -0.488888897f, 0.871595087f, -0.490226483f, 0.870842063f, -0.491562916f, 0.870086991f, -0.492898192f, 0.869329871f, -0.494232309f, 0.868570706f, -0.495565262f, 0.867809497f, -0.496897049f, 0.867046246f, -0.498227667f, 0.866280954f, -0.499557113f, 0.865513624f, -0.500885383f, 0.864744258f, -0.502212474f, 0.863972856f, -0.503538384f, 0.863199422f, -0.504863109f, 0.862423956f, -0.506186645f, 0.861646461f, -0.507508991f, 0.860866939f, -0.508830143f, 0.860085390f, -0.510150097f, 0.859301818f, -0.511468850f, 0.858516224f, -0.512786401f, 0.857728610f, -0.514102744f, 0.856938977f, -0.515417878f, 0.856147328f, -0.516731799f, 0.855353665f, -0.518044504f, 0.854557988f, -0.519355990f, 0.853760301f, -0.520666254f, 0.852960605f, -0.521975293f, 0.852158902f, -0.523283103f, 0.851355193f, -0.524589683f, 0.850549481f, -0.525895027f, 0.849741768f, -0.527199135f, 0.848932055f, -0.528502002f, 0.848120345f, -0.529803625f, 0.847306639f, -0.531104001f, 0.846490939f, -0.532403128f, 0.845673247f, -0.533701002f, 0.844853565f, -0.534997620f, 0.844031895f, -0.536292979f, 0.843208240f, -0.537587076f, 0.842382600f, -0.538879909f, 0.841554977f, -0.540171473f, 0.840725375f, -0.541461766f, 0.839893794f, -0.542750785f, 0.839060237f, -0.544038527f, 0.838224706f, -0.545324988f, 0.837387202f, -0.546610167f, 0.836547727f, -0.547894059f, 0.835706284f, -0.549176662f, 0.834862875f, -0.550457973f, 0.834017501f, -0.551737988f, 0.833170165f, -0.553016706f, 0.832320868f, -0.554294121f, 0.831469612f, -0.555570233f, 0.830616400f, -0.556845037f, 0.829761234f, -0.558118531f, 0.828904115f, -0.559390712f, 0.828045045f, -0.560661576f, 0.827184027f, -0.561931121f, 0.826321063f, -0.563199344f, 0.825456154f, -0.564466242f, 0.824589303f, -0.565731811f, 0.823720511f, -0.566996049f, 0.822849781f, -0.568258953f, 0.821977115f, -0.569520519f, 0.821102515f, -0.570780746f, 0.820225983f, -0.572039629f, 0.819347520f, -0.573297167f, 0.818467130f, -0.574553355f, 0.817584813f, -0.575808191f, 0.816700573f, -0.577061673f, 0.815814411f, -0.578313796f, 0.814926329f, -0.579564559f, 0.814036330f, -0.580813958f, 0.813144415f, -0.582061990f, 0.812250587f, -0.583308653f, 0.811354847f, -0.584553943f, 0.810457198f, -0.585797857f, 0.809557642f, -0.587040394f, 0.808656182f, -0.588281548f, 0.807752818f, -0.589521319f, 0.806847554f, -0.590759702f, 0.805940391f, -0.591996695f, 0.805031331f, -0.593232295f, 0.804120377f, -0.594466499f, 0.803207531f, -0.595699304f, 0.802292796f, -0.596930708f, 0.801376172f, -0.598160707f, 0.800457662f, -0.599389298f, 0.799537269f, -0.600616479f, 0.798614995f, -0.601842247f, 0.797690841f, -0.603066599f, 0.796764810f, -0.604289531f, 0.795836905f, -0.605511041f, 0.794907126f, -0.606731127f, 0.793975478f, -0.607949785f, 0.793041960f, -0.609167012f, 0.792106577f, -0.610382806f, 0.791169330f, -0.611597164f, 0.790230221f, -0.612810082f, 0.789289253f, -0.614021559f, 0.788346428f, -0.615231591f, 0.787401747f, -0.616440175f, 0.786455214f, -0.617647308f, 0.785506830f, -0.618852988f, 0.784556597f, -0.620057212f, 0.783604519f, -0.621259977f, 0.782650596f, -0.622461279f, 0.781694832f, -0.623661118f, 0.780737229f, -0.624859488f, 0.779777788f, -0.626056388f, 0.778816512f, -0.627251815f, 0.777853404f, -0.628445767f, 0.776888466f, -0.629638239f, 0.775921699f, -0.630829230f, 0.774953107f, -0.632018736f, 0.773982691f, -0.633206755f, 0.773010453f, -0.634393284f, 0.772036397f, -0.635578320f, 0.771060524f, -0.636761861f, 0.770082837f, -0.637943904f, 0.769103338f, -0.639124445f, 0.768122029f, -0.640303482f, 0.767138912f, -0.641481013f, 0.766153990f, -0.642657034f, 0.765167266f, -0.643831543f, 0.764178741f, -0.645004537f, 0.763188417f, -0.646176013f, 0.762196298f, -0.647345969f, 0.761202385f, -0.648514401f, 0.760206682f, -0.649681307f, 0.759209189f, -0.650846685f, 0.758209910f, -0.652010531f, 0.757208847f, -0.653172843f, 0.756206001f, -0.654333618f, 0.755201377f, -0.655492853f, 0.754194975f, -0.656650546f, 0.753186799f, -0.657806693f, 0.752176850f, -0.658961293f, 0.751165132f, -0.660114342f, 0.750151646f, -0.661265838f, 0.749136395f, -0.662415778f, 0.748119380f, -0.663564159f, 0.747100606f, -0.664710978f, 0.746080074f, -0.665856234f, 0.745057785f, -0.666999922f, 0.744033744f, -0.668142041f, 0.743007952f, -0.669282588f, 0.741980412f, -0.670421560f, 0.740951125f, -0.671558955f, 0.739920095f, -0.672694769f, 0.738887324f, -0.673829000f, 0.737852815f, -0.674961646f, 0.736816569f, -0.676092704f, 0.735778589f, -0.677222170f, 0.734738878f, -0.678350043f, 0.733697438f, -0.679476320f, 0.732654272f, -0.680600998f, 0.731609381f, -0.681724074f, 0.730562769f, -0.682845546f, 0.729514438f, -0.683965412f, 0.728464390f, -0.685083668f, 0.727412629f, -0.686200312f, 0.726359155f, -0.687315341f, 0.725303972f, -0.688428753f, 0.724247083f, -0.689540545f, 0.723188489f, -0.690650714f, 0.722128194f, -0.691759258f, 0.721066199f, -0.692866175f, 0.720002508f, -0.693971461f, 0.718937122f, -0.695075114f, 0.717870045f, -0.696177131f, 0.716801279f, -0.697277511f, 0.715730825f, -0.698376249f, 0.714658688f, -0.699473345f, 0.713584869f, -0.700568794f, 0.712509371f, -0.701662595f, 0.711432196f, -0.702754744f, 0.710353347f, -0.703845241f, 0.709272826f, -0.704934080f, 0.708190637f, -0.706021261f, 0.707106781f, -0.707106781f, 0.706021261f, -0.708190637f, 0.704934080f, -0.709272826f, 0.703845241f, -0.710353347f, 0.702754744f, -0.711432196f, 0.701662595f, -0.712509371f, 0.700568794f, -0.713584869f, 0.699473345f, -0.714658688f, 0.698376249f, -0.715730825f, 0.697277511f, -0.716801279f, 0.696177131f, -0.717870045f, 0.695075114f, -0.718937122f, 0.693971461f, -0.720002508f, 0.692866175f, -0.721066199f, 0.691759258f, -0.722128194f, 0.690650714f, -0.723188489f, 0.689540545f, -0.724247083f, 0.688428753f, -0.725303972f, 0.687315341f, -0.726359155f, 0.686200312f, -0.727412629f, 0.685083668f, -0.728464390f, 0.683965412f, -0.729514438f, 0.682845546f, -0.730562769f, 0.681724074f, -0.731609381f, 0.680600998f, -0.732654272f, 0.679476320f, -0.733697438f, 0.678350043f, -0.734738878f, 0.677222170f, -0.735778589f, 0.676092704f, -0.736816569f, 0.674961646f, -0.737852815f, 0.673829000f, -0.738887324f, 0.672694769f, -0.739920095f, 0.671558955f, -0.740951125f, 0.670421560f, -0.741980412f, 0.669282588f, -0.743007952f, 0.668142041f, -0.744033744f, 0.666999922f, -0.745057785f, 0.665856234f, -0.746080074f, 0.664710978f, -0.747100606f, 0.663564159f, -0.748119380f, 0.662415778f, -0.749136395f, 0.661265838f, -0.750151646f, 0.660114342f, -0.751165132f, 0.658961293f, -0.752176850f, 0.657806693f, -0.753186799f, 0.656650546f, -0.754194975f, 0.655492853f, -0.755201377f, 0.654333618f, -0.756206001f, 0.653172843f, -0.757208847f, 0.652010531f, -0.758209910f, 0.650846685f, -0.759209189f, 0.649681307f, -0.760206682f, 0.648514401f, -0.761202385f, 0.647345969f, -0.762196298f, 0.646176013f, -0.763188417f, 0.645004537f, -0.764178741f, 0.643831543f, -0.765167266f, 0.642657034f, -0.766153990f, 0.641481013f, -0.767138912f, 0.640303482f, -0.768122029f, 0.639124445f, -0.769103338f, 0.637943904f, -0.770082837f, 0.636761861f, -0.771060524f, 0.635578320f, -0.772036397f, 0.634393284f, -0.773010453f, 0.633206755f, -0.773982691f, 0.632018736f, -0.774953107f, 0.630829230f, -0.775921699f, 0.629638239f, -0.776888466f, 0.628445767f, -0.777853404f, 0.627251815f, -0.778816512f, 0.626056388f, -0.779777788f, 0.624859488f, -0.780737229f, 0.623661118f, -0.781694832f, 0.622461279f, -0.782650596f, 0.621259977f, -0.783604519f, 0.620057212f, -0.784556597f, 0.618852988f, -0.785506830f, 0.617647308f, -0.786455214f, 0.616440175f, -0.787401747f, 0.615231591f, -0.788346428f, 0.614021559f, -0.789289253f, 0.612810082f, -0.790230221f, 0.611597164f, -0.791169330f, 0.610382806f, -0.792106577f, 0.609167012f, -0.793041960f, 0.607949785f, -0.793975478f, 0.606731127f, -0.794907126f, 0.605511041f, -0.795836905f, 0.604289531f, -0.796764810f, 0.603066599f, -0.797690841f, 0.601842247f, -0.798614995f, 0.600616479f, -0.799537269f, 0.599389298f, -0.800457662f, 0.598160707f, -0.801376172f, 0.596930708f, -0.802292796f, 0.595699304f, -0.803207531f, 0.594466499f, -0.804120377f, 0.593232295f, -0.805031331f, 0.591996695f, -0.805940391f, 0.590759702f, -0.806847554f, 0.589521319f, -0.807752818f, 0.588281548f, -0.808656182f, 0.587040394f, -0.809557642f, 0.585797857f, -0.810457198f, 0.584553943f, -0.811354847f, 0.583308653f, -0.812250587f, 0.582061990f, -0.813144415f, 0.580813958f, -0.814036330f, 0.579564559f, -0.814926329f, 0.578313796f, -0.815814411f, 0.577061673f, -0.816700573f, 0.575808191f, -0.817584813f, 0.574553355f, -0.818467130f, 0.573297167f, -0.819347520f, 0.572039629f, -0.820225983f, 0.570780746f, -0.821102515f, 0.569520519f, -0.821977115f, 0.568258953f, -0.822849781f, 0.566996049f, -0.823720511f, 0.565731811f, -0.824589303f, 0.564466242f, -0.825456154f, 0.563199344f, -0.826321063f, 0.561931121f, -0.827184027f, 0.560661576f, -0.828045045f, 0.559390712f, -0.828904115f, 0.558118531f, -0.829761234f, 0.556845037f, -0.830616400f, 0.555570233f, -0.831469612f, 0.554294121f, -0.832320868f, 0.553016706f, -0.833170165f, 0.551737988f, -0.834017501f, 0.550457973f, -0.834862875f, 0.549176662f, -0.835706284f, 0.547894059f, -0.836547727f, 0.546610167f, -0.837387202f, 0.545324988f, -0.838224706f, 0.544038527f, -0.839060237f, 0.542750785f, -0.839893794f, 0.541461766f, -0.840725375f, 0.540171473f, -0.841554977f, 0.538879909f, -0.842382600f, 0.537587076f, -0.843208240f, 0.536292979f, -0.844031895f, 0.534997620f, -0.844853565f, 0.533701002f, -0.845673247f, 0.532403128f, -0.846490939f, 0.531104001f, -0.847306639f, 0.529803625f, -0.848120345f, 0.528502002f, -0.848932055f, 0.527199135f, -0.849741768f, 0.525895027f, -0.850549481f, 0.524589683f, -0.851355193f, 0.523283103f, -0.852158902f, 0.521975293f, -0.852960605f, 0.520666254f, -0.853760301f, 0.519355990f, -0.854557988f, 0.518044504f, -0.855353665f, 0.516731799f, -0.856147328f, 0.515417878f, -0.856938977f, 0.514102744f, -0.857728610f, 0.512786401f, -0.858516224f, 0.511468850f, -0.859301818f, 0.510150097f, -0.860085390f, 0.508830143f, -0.860866939f, 0.507508991f, -0.861646461f, 0.506186645f, -0.862423956f, 0.504863109f, -0.863199422f, 0.503538384f, -0.863972856f, 0.502212474f, -0.864744258f, 0.500885383f, -0.865513624f, 0.499557113f, -0.866280954f, 0.498227667f, -0.867046246f, 0.496897049f, -0.867809497f, 0.495565262f, -0.868570706f, 0.494232309f, -0.869329871f, 0.492898192f, -0.870086991f, 0.491562916f, -0.870842063f, 0.490226483f, -0.871595087f, 0.488888897f, -0.872346059f, 0.487550160f, -0.873094978f, 0.486210276f, -0.873841843f, 0.484869248f, -0.874586652f, 0.483527079f, -0.875329403f, 0.482183772f, -0.876070094f, 0.480839331f, -0.876808724f, 0.479493758f, -0.877545290f, 0.478147056f, -0.878279792f, 0.476799230f, -0.879012226f, 0.475450282f, -0.879742593f, 0.474100215f, -0.880470889f, 0.472749032f, -0.881197113f, 0.471396737f, -0.881921264f, 0.470043332f, -0.882643340f, 0.468688822f, -0.883363339f, 0.467333209f, -0.884081259f, 0.465976496f, -0.884797098f, 0.464618686f, -0.885510856f, 0.463259784f, -0.886222530f, 0.461899791f, -0.886932119f, 0.460538711f, -0.887639620f, 0.459176548f, -0.888345033f, 0.457813304f, -0.889048356f, 0.456448982f, -0.889749586f, 0.455083587f, -0.890448723f, 0.453717121f, -0.891145765f, 0.452349587f, -0.891840709f, 0.450980989f, -0.892533555f, 0.449611330f, -0.893224301f, 0.448240612f, -0.893912945f, 0.446868840f, -0.894599486f, 0.445496017f, -0.895283921f, 0.444122145f, -0.895966250f, 0.442747228f, -0.896646470f, 0.441371269f, -0.897324581f, 0.439994271f, -0.898000580f, 0.438616239f, -0.898674466f, 0.437237174f, -0.899346237f, 0.435857080f, -0.900015892f, 0.434475961f, -0.900683429f, 0.433093819f, -0.901348847f, 0.431710658f, -0.902012144f, 0.430326481f, -0.902673318f, 0.428941292f, -0.903332368f, 0.427555093f, -0.903989293f, 0.426167889f, -0.904644091f, 0.424779681f, -0.905296759f, 0.423390474f, -0.905947298f, 0.422000271f, -0.906595705f, 0.420609074f, -0.907241978f, 0.419216888f, -0.907886116f, 0.417823716f, -0.908528119f, 0.416429560f, -0.909167983f, 0.415034424f, -0.909805708f, 0.413638312f, -0.910441292f, 0.412241227f, -0.911074734f, 0.410843171f, -0.911706032f, 0.409444149f, -0.912335185f, 0.408044163f, -0.912962190f, 0.406643217f, -0.913587048f, 0.405241314f, -0.914209756f, 0.403838458f, -0.914830312f, 0.402434651f, -0.915448716f, 0.401029897f, -0.916064966f, 0.399624200f, -0.916679060f, 0.398217562f, -0.917290997f, 0.396809987f, -0.917900776f, 0.395401479f, -0.918508394f, 0.393992040f, -0.919113852f, 0.392581674f, -0.919717146f, 0.391170384f, -0.920318277f, 0.389758174f, -0.920917242f, 0.388345047f, -0.921514039f, 0.386931006f, -0.922108669f, 0.385516054f, -0.922701128f, 0.384100195f, -0.923291417f, 0.382683432f, -0.923879533f, 0.381265769f, -0.924465474f, 0.379847209f, -0.925049241f, 0.378427755f, -0.925630831f, 0.377007410f, -0.926210242f, 0.375586178f, -0.926787474f, 0.374164063f, -0.927362526f, 0.372741067f, -0.927935395f, 0.371317194f, -0.928506080f, 0.369892447f, -0.929074581f, 0.368466830f, -0.929640896f, 0.367040346f, -0.930205023f, 0.365612998f, -0.930766961f, 0.364184790f, -0.931326709f, 0.362755724f, -0.931884266f, 0.361325806f, -0.932439629f, 0.359895037f, -0.932992799f, 0.358463421f, -0.933543773f, 0.357030961f, -0.934092550f, 0.355597662f, -0.934639130f, 0.354163525f, -0.935183510f, 0.352728556f, -0.935725689f, 0.351292756f, -0.936265667f, 0.349856130f, -0.936803442f, 0.348418680f, -0.937339012f, 0.346980411f, -0.937872376f, 0.345541325f, -0.938403534f, 0.344101426f, -0.938932484f, 0.342660717f, -0.939459224f, 0.341219202f, -0.939983753f, 0.339776884f, -0.940506071f, 0.338333767f, -0.941026175f, 0.336889853f, -0.941544065f, 0.335445147f, -0.942059740f, 0.333999651f, -0.942573198f, 0.332553370f, -0.943084437f, 0.331106306f, -0.943593458f, 0.329658463f, -0.944100258f, 0.328209844f, -0.944604837f, 0.326760452f, -0.945107193f, 0.325310292f, -0.945607325f, 0.323859367f, -0.946105232f, 0.322407679f, -0.946600913f, 0.320955232f, -0.947094366f, 0.319502031f, -0.947585591f, 0.318048077f, -0.948074586f, 0.316593376f, -0.948561350f, 0.315137929f, -0.949045882f, 0.313681740f, -0.949528181f, 0.312224814f, -0.950008245f, 0.310767153f, -0.950486074f, 0.309308760f, -0.950961666f, 0.307849640f, -0.951435021f, 0.306389795f, -0.951906137f, 0.304929230f, -0.952375013f, 0.303467947f, -0.952841648f, 0.302005949f, -0.953306040f, 0.300543241f, -0.953768190f, 0.299079826f, -0.954228095f, 0.297615707f, -0.954685755f, 0.296150888f, -0.955141168f, 0.294685372f, -0.955594334f, 0.293219163f, -0.956045251f, 0.291752263f, -0.956493919f, 0.290284677f, -0.956940336f, 0.288816408f, -0.957384501f, 0.287347460f, -0.957826413f, 0.285877835f, -0.958266071f, 0.284407537f, -0.958703475f, 0.282936570f, -0.959138622f, 0.281464938f, -0.959571513f, 0.279992643f, -0.960002146f, 0.278519689f, -0.960430519f, 0.277046080f, -0.960856633f, 0.275571819f, -0.961280486f, 0.274096910f, -0.961702077f, 0.272621355f, -0.962121404f, 0.271145160f, -0.962538468f, 0.269668326f, -0.962953267f, 0.268190857f, -0.963365800f, 0.266712757f, -0.963776066f, 0.265234030f, -0.964184064f, 0.263754679f, -0.964589793f, 0.262274707f, -0.964993253f, 0.260794118f, -0.965394442f, 0.259312915f, -0.965793359f, 0.257831102f, -0.966190003f, 0.256348682f, -0.966584374f, 0.254865660f, -0.966976471f, 0.253382037f, -0.967366292f, 0.251897818f, -0.967753837f, 0.250413007f, -0.968139105f, 0.248927606f, -0.968522094f, 0.247441619f, -0.968902805f, 0.245955050f, -0.969281235f, 0.244467903f, -0.969657385f, 0.242980180f, -0.970031253f, 0.241491885f, -0.970402839f, 0.240003022f, -0.970772141f, 0.238513595f, -0.971139158f, 0.237023606f, -0.971503891f, 0.235533059f, -0.971866337f, 0.234041959f, -0.972226497f, 0.232550307f, -0.972584369f, 0.231058108f, -0.972939952f, 0.229565366f, -0.973293246f, 0.228072083f, -0.973644250f, 0.226578264f, -0.973992962f, 0.225083911f, -0.974339383f, 0.223589029f, -0.974683511f, 0.222093621f, -0.975025345f, 0.220597690f, -0.975364885f, 0.219101240f, -0.975702130f, 0.217604275f, -0.976037079f, 0.216106797f, -0.976369731f, 0.214608811f, -0.976700086f, 0.213110320f, -0.977028143f, 0.211611327f, -0.977353900f, 0.210111837f, -0.977677358f, 0.208611852f, -0.977998515f, 0.207111376f, -0.978317371f, 0.205610413f, -0.978633924f, 0.204108966f, -0.978948175f, 0.202607039f, -0.979260123f, 0.201104635f, -0.979569766f, 0.199601758f, -0.979877104f, 0.198098411f, -0.980182136f, 0.196594598f, -0.980484862f, 0.195090322f, -0.980785280f, 0.193585587f, -0.981083391f, 0.192080397f, -0.981379193f, 0.190574755f, -0.981672686f, 0.189068664f, -0.981963869f, 0.187562129f, -0.982252741f, 0.186055152f, -0.982539302f, 0.184547737f, -0.982823551f, 0.183039888f, -0.983105487f, 0.181531608f, -0.983385110f, 0.180022901f, -0.983662419f, 0.178513771f, -0.983937413f, 0.177004220f, -0.984210092f, 0.175494253f, -0.984480455f, 0.173983873f, -0.984748502f, 0.172473084f, -0.985014231f, 0.170961889f, -0.985277642f, 0.169450291f, -0.985538735f, 0.167938295f, -0.985797509f, 0.166425904f, -0.986053963f, 0.164913120f, -0.986308097f, 0.163399949f, -0.986559910f, 0.161886394f, -0.986809402f, 0.160372457f, -0.987056571f, 0.158858143f, -0.987301418f, 0.157343456f, -0.987543942f, 0.155828398f, -0.987784142f, 0.154312973f, -0.988022017f, 0.152797185f, -0.988257568f, 0.151281038f, -0.988490793f, 0.149764535f, -0.988721692f, 0.148247679f, -0.988950265f, 0.146730474f, -0.989176510f, 0.145212925f, -0.989400428f, 0.143695033f, -0.989622017f, 0.142176804f, -0.989841278f, 0.140658239f, -0.990058210f, 0.139139344f, -0.990272812f, 0.137620122f, -0.990485084f, 0.136100575f, -0.990695025f, 0.134580709f, -0.990902635f, 0.133060525f, -0.991107914f, 0.131540029f, -0.991310860f, 0.130019223f, -0.991511473f, 0.128498111f, -0.991709754f, 0.126976696f, -0.991905700f, 0.125454983f, -0.992099313f, 0.123932975f, -0.992290591f, 0.122410675f, -0.992479535f, 0.120888087f, -0.992666142f, 0.119365215f, -0.992850414f, 0.117842062f, -0.993032350f, 0.116318631f, -0.993211949f, 0.114794927f, -0.993389211f, 0.113270952f, -0.993564136f, 0.111746711f, -0.993736722f, 0.110222207f, -0.993906970f, 0.108697444f, -0.994074879f, 0.107172425f, -0.994240449f, 0.105647154f, -0.994403680f, 0.104121634f, -0.994564571f, 0.102595869f, -0.994723121f, 0.101069863f, -0.994879331f, 0.099543619f, -0.995033199f, 0.098017140f, -0.995184727f, 0.096490431f, -0.995333912f, 0.094963495f, -0.995480755f, 0.093436336f, -0.995625256f, 0.091908956f, -0.995767414f, 0.090381361f, -0.995907229f, 0.088853553f, -0.996044701f, 0.087325535f, -0.996179829f, 0.085797312f, -0.996312612f, 0.084268888f, -0.996443051f, 0.082740265f, -0.996571146f, 0.081211447f, -0.996696895f, 0.079682438f, -0.996820299f, 0.078153242f, -0.996941358f, 0.076623861f, -0.997060070f, 0.075094301f, -0.997176437f, 0.073564564f, -0.997290457f, 0.072034653f, -0.997402130f, 0.070504573f, -0.997511456f, 0.068974328f, -0.997618435f, 0.067443920f, -0.997723067f, 0.065913353f, -0.997825350f, 0.064382631f, -0.997925286f, 0.062851758f, -0.998022874f, 0.061320736f, -0.998118113f, 0.059789571f, -0.998211003f, 0.058258265f, -0.998301545f, 0.056726821f, -0.998389737f, 0.055195244f, -0.998475581f, 0.053663538f, -0.998559074f, 0.052131705f, -0.998640218f, 0.050599749f, -0.998719012f, 0.049067674f, -0.998795456f, 0.047535484f, -0.998869550f, 0.046003182f, -0.998941293f, 0.044470772f, -0.999010686f, 0.042938257f, -0.999077728f, 0.041405641f, -0.999142419f, 0.039872928f, -0.999204759f, 0.038340120f, -0.999264747f, 0.036807223f, -0.999322385f, 0.035274239f, -0.999377670f, 0.033741172f, -0.999430605f, 0.032208025f, -0.999481187f, 0.030674803f, -0.999529418f, 0.029141509f, -0.999575296f, 0.027608146f, -0.999618822f, 0.026074718f, -0.999659997f, 0.024541229f, -0.999698819f, 0.023007681f, -0.999735288f, 0.021474080f, -0.999769405f, 0.019940429f, -0.999801170f, 0.018406730f, -0.999830582f, 0.016872988f, -0.999857641f, 0.015339206f, -0.999882347f, 0.013805389f, -0.999904701f, 0.012271538f, -0.999924702f, 0.010737659f, -0.999942350f, 0.009203755f, -0.999957645f, 0.007669829f, -0.999970586f, 0.006135885f, -0.999981175f, 0.004601926f, -0.999989411f, 0.003067957f, -0.999995294f, 0.001533980f, -0.999998823f }; /** @ingroup RealFFT */ /** @addtogroup RealFFT_Table Real FFT Tables @{ */ /** @par Generation of realCoefA array: @par n = 4096
for (i = 0; i < n; i++)
  {
     pATable[2 * i]     = 0.5 * ( 1.0 - sin (2 * PI / (double) (2 * n) * (double) i));
     pATable[2 * i + 1] = 0.5 * (-1.0 * cos (2 * PI / (double) (2 * n) * (double) i));
  }
*/ const float32_t realCoefA[8192] ARM_DSP_TABLE_ATTRIBUTE = { 0.500000000000000f, -0.500000000000000f, 0.499616503715515f, -0.499999850988388f, 0.499233007431030f, -0.499999403953552f, 0.498849511146545f, -0.499998688697815f, 0.498466014862061f, -0.499997645616531f, 0.498082518577576f, -0.499996334314346f, 0.497699022293091f, -0.499994695186615f, 0.497315555810928f, -0.499992787837982f, 0.496932059526443f, -0.499990582466125f, 0.496548563241959f, -0.499988079071045f, 0.496165096759796f, -0.499985307455063f, 0.495781600475311f, -0.499982208013535f, 0.495398133993149f, -0.499978810548782f, 0.495014637708664f, -0.499975144863129f, 0.494631171226501f, -0.499971181154251f, 0.494247704744339f, -0.499966919422150f, 0.493864238262177f, -0.499962359666824f, 0.493480771780014f, -0.499957501888275f, 0.493097305297852f, -0.499952346086502f, 0.492713838815689f, -0.499946922063828f, 0.492330402135849f, -0.499941170215607f, 0.491946935653687f, -0.499935150146484f, 0.491563498973846f, -0.499928832054138f, 0.491180062294006f, -0.499922215938568f, 0.490796625614166f, -0.499915301799774f, 0.490413218736649f, -0.499908089637756f, 0.490029782056808f, -0.499900579452515f, 0.489646375179291f, -0.499892801046371f, 0.489262968301773f, -0.499884694814682f, 0.488879561424255f, -0.499876320362091f, 0.488496154546738f, -0.499867647886276f, 0.488112777471542f, -0.499858677387238f, 0.487729400396347f, -0.499849408864975f, 0.487346023321152f, -0.499839842319489f, 0.486962646245956f, -0.499830007553101f, 0.486579269170761f, -0.499819844961166f, 0.486195921897888f, -0.499809414148331f, 0.485812574625015f, -0.499798685312271f, 0.485429257154465f, -0.499787658452988f, 0.485045909881592f, -0.499776333570480f, 0.484662592411041f, -0.499764710664749f, 0.484279274940491f, -0.499752789735794f, 0.483895987272263f, -0.499740600585938f, 0.483512699604034f, -0.499728083610535f, 0.483129411935806f, -0.499715298414230f, 0.482746154069901f, -0.499702215194702f, 0.482362866401672f, -0.499688833951950f, 0.481979638338089f, -0.499675154685974f, 0.481596380472183f, -0.499661177396774f, 0.481213152408600f, -0.499646931886673f, 0.480829954147339f, -0.499632388353348f, 0.480446726083755f, -0.499617516994476f, 0.480063527822495f, -0.499602377414703f, 0.479680359363556f, -0.499586939811707f, 0.479297190904617f, -0.499571204185486f, 0.478914022445679f, -0.499555170536041f, 0.478530883789063f, -0.499538868665695f, 0.478147745132446f, -0.499522238969803f, 0.477764606475830f, -0.499505341053009f, 0.477381497621536f, -0.499488145112991f, 0.476998418569565f, -0.499470651149750f, 0.476615339517593f, -0.499452859163284f, 0.476232260465622f, -0.499434769153595f, 0.475849211215973f, -0.499416410923004f, 0.475466161966324f, -0.499397724866867f, 0.475083142518997f, -0.499378770589828f, 0.474700123071671f, -0.499359518289566f, 0.474317133426666f, -0.499339967966080f, 0.473934143781662f, -0.499320119619370f, 0.473551183938980f, -0.499299973249435f, 0.473168224096298f, -0.499279528856277f, 0.472785294055939f, -0.499258816242218f, 0.472402364015579f, -0.499237775802612f, 0.472019463777542f, -0.499216467142105f, 0.471636593341827f, -0.499194860458374f, 0.471253722906113f, -0.499172955751419f, 0.470870882272720f, -0.499150782823563f, 0.470488041639328f, -0.499128282070160f, 0.470105201005936f, -0.499105513095856f, 0.469722419977188f, -0.499082416296005f, 0.469339638948441f, -0.499059051275253f, 0.468956857919693f, -0.499035388231277f, 0.468574106693268f, -0.499011427164078f, 0.468191385269165f, -0.498987197875977f, 0.467808693647385f, -0.498962640762329f, 0.467426002025604f, -0.498937815427780f, 0.467043310403824f, -0.498912662267685f, 0.466660678386688f, -0.498887240886688f, 0.466278046369553f, -0.498861521482468f, 0.465895414352417f, -0.498835533857346f, 0.465512841939926f, -0.498809218406677f, 0.465130269527435f, -0.498782604932785f, 0.464747726917267f, -0.498755723237991f, 0.464365184307098f, -0.498728543519974f, 0.463982671499252f, -0.498701065778732f, 0.463600188493729f, -0.498673290014267f, 0.463217705488205f, -0.498645216226578f, 0.462835282087326f, -0.498616874217987f, 0.462452858686447f, -0.498588204383850f, 0.462070435285568f, -0.498559266328812f, 0.461688071489334f, -0.498530030250549f, 0.461305707693100f, -0.498500496149063f, 0.460923373699188f, -0.498470664024353f, 0.460541069507599f, -0.498440563678741f, 0.460158795118332f, -0.498410135507584f, 0.459776520729065f, -0.498379439115524f, 0.459394276142120f, -0.498348444700241f, 0.459012061357498f, -0.498317152261734f, 0.458629876375198f, -0.498285561800003f, 0.458247691392899f, -0.498253703117371f, 0.457865566015244f, -0.498221516609192f, 0.457483440637589f, -0.498189061880112f, 0.457101345062256f, -0.498156309127808f, 0.456719279289246f, -0.498123258352280f, 0.456337243318558f, -0.498089909553528f, 0.455955207347870f, -0.498056292533875f, 0.455573230981827f, -0.498022347688675f, 0.455191254615784f, -0.497988134622574f, 0.454809308052063f, -0.497953623533249f, 0.454427421092987f, -0.497918814420700f, 0.454045534133911f, -0.497883707284927f, 0.453663676977158f, -0.497848302125931f, 0.453281819820404f, -0.497812628746033f, 0.452900022268295f, -0.497776657342911f, 0.452518254518509f, -0.497740387916565f, 0.452136516571045f, -0.497703820466995f, 0.451754778623581f, -0.497666954994202f, 0.451373100280762f, -0.497629791498184f, 0.450991421937943f, -0.497592359781265f, 0.450609803199768f, -0.497554630041122f, 0.450228184461594f, -0.497516602277756f, 0.449846625328064f, -0.497478276491165f, 0.449465066194534f, -0.497439652681351f, 0.449083566665649f, -0.497400760650635f, 0.448702067136765f, -0.497361570596695f, 0.448320597410202f, -0.497322082519531f, 0.447939187288284f, -0.497282296419144f, 0.447557777166367f, -0.497242212295532f, 0.447176426649094f, -0.497201830148697f, 0.446795076131821f, -0.497161179780960f, 0.446413785219193f, -0.497120231389999f, 0.446032524108887f, -0.497078984975815f, 0.445651292800903f, -0.497037440538406f, 0.445270061492920f, -0.496995598077774f, 0.444888889789581f, -0.496953487396240f, 0.444507747888565f, -0.496911078691483f, 0.444126635789871f, -0.496868371963501f, 0.443745553493500f, -0.496825367212296f, 0.443364530801773f, -0.496782064437866f, 0.442983508110046f, -0.496738493442535f, 0.442602545022964f, -0.496694594621658f, 0.442221581935883f, -0.496650427579880f, 0.441840678453445f, -0.496605962514877f, 0.441459804773331f, -0.496561229228973f, 0.441078960895538f, -0.496516168117523f, 0.440698176622391f, -0.496470838785172f, 0.440317392349243f, -0.496425211429596f, 0.439936667680740f, -0.496379286050797f, 0.439555943012238f, -0.496333062648773f, 0.439175277948380f, -0.496286571025848f, 0.438794672489166f, -0.496239781379700f, 0.438414067029953f, -0.496192663908005f, 0.438033521175385f, -0.496145308017731f, 0.437653005123138f, -0.496097624301910f, 0.437272518873215f, -0.496049642562866f, 0.436892062425613f, -0.496001392602921f, 0.436511665582657f, -0.495952844619751f, 0.436131268739700f, -0.495903998613358f, 0.435750931501389f, -0.495854884386063f, 0.435370653867722f, -0.495805442333221f, 0.434990376234055f, -0.495755732059479f, 0.434610158205032f, -0.495705723762512f, 0.434229999780655f, -0.495655417442322f, 0.433849841356277f, -0.495604842901230f, 0.433469742536545f, -0.495553970336914f, 0.433089673519135f, -0.495502769947052f, 0.432709634304047f, -0.495451331138611f, 0.432329654693604f, -0.495399564504623f, 0.431949704885483f, -0.495347499847412f, 0.431569814682007f, -0.495295166969299f, 0.431189924478531f, -0.495242536067963f, 0.430810123682022f, -0.495189607143402f, 0.430430322885513f, -0.495136409997940f, 0.430050581693649f, -0.495082914829254f, 0.429670870304108f, -0.495029091835022f, 0.429291218519211f, -0.494975030422211f, 0.428911596536636f, -0.494920641183853f, 0.428532034158707f, -0.494865983724594f, 0.428152471780777f, -0.494810998439789f, 0.427772998809814f, -0.494755744934082f, 0.427393525838852f, -0.494700223207474f, 0.427014142274857f, -0.494644373655319f, 0.426634758710861f, -0.494588255882263f, 0.426255434751511f, -0.494531840085983f, 0.425876170396805f, -0.494475126266479f, 0.425496935844421f, -0.494418144226074f, 0.425117731094360f, -0.494360834360123f, 0.424738585948944f, -0.494303256273270f, 0.424359470605850f, -0.494245409965515f, 0.423980414867401f, -0.494187235832214f, 0.423601418733597f, -0.494128793478012f, 0.423222452402115f, -0.494070053100586f, 0.422843515872955f, -0.494011014699936f, 0.422464638948441f, -0.493951678276062f, 0.422085791826248f, -0.493892073631287f, 0.421707004308701f, -0.493832170963287f, 0.421328276395798f, -0.493771970272064f, 0.420949578285217f, -0.493711471557617f, 0.420570939779282f, -0.493650704622269f, 0.420192331075668f, -0.493589639663696f, 0.419813781976700f, -0.493528276681900f, 0.419435262680054f, -0.493466645479202f, 0.419056802988052f, -0.493404686450958f, 0.418678402900696f, -0.493342459201813f, 0.418300032615662f, -0.493279963731766f, 0.417921721935272f, -0.493217140436172f, 0.417543441057205f, -0.493154048919678f, 0.417165219783783f, -0.493090659379959f, 0.416787058115005f, -0.493026971817017f, 0.416408926248550f, -0.492963016033173f, 0.416030853986740f, -0.492898762226105f, 0.415652841329575f, -0.492834210395813f, 0.415274858474731f, -0.492769360542297f, 0.414896935224533f, -0.492704242467880f, 0.414519041776657f, -0.492638826370239f, 0.414141237735748f, -0.492573112249374f, 0.413763463497162f, -0.492507129907608f, 0.413385748863220f, -0.492440819740295f, 0.413008064031601f, -0.492374241352081f, 0.412630438804626f, -0.492307394742966f, 0.412252873182297f, -0.492240220308304f, 0.411875367164612f, -0.492172777652740f, 0.411497890949249f, -0.492105036973953f, 0.411120474338531f, -0.492037028074265f, 0.410743117332459f, -0.491968721151352f, 0.410365819931030f, -0.491900116205215f, 0.409988552331924f, -0.491831213235855f, 0.409611344337463f, -0.491762012243271f, 0.409234195947647f, -0.491692543029785f, 0.408857107162476f, -0.491622805595398f, 0.408480048179626f, -0.491552740335464f, 0.408103078603745f, -0.491482406854630f, 0.407726138830185f, -0.491411775350571f, 0.407349258661270f, -0.491340845823288f, 0.406972438097000f, -0.491269648075104f, 0.406595647335052f, -0.491198152303696f, 0.406218945980072f, -0.491126358509064f, 0.405842274427414f, -0.491054296493530f, 0.405465662479401f, -0.490981936454773f, 0.405089110136032f, -0.490909278392792f, 0.404712617397308f, -0.490836352109909f, 0.404336184263229f, -0.490763127803802f, 0.403959810733795f, -0.490689605474472f, 0.403583467006683f, -0.490615785121918f, 0.403207212686539f, -0.490541696548462f, 0.402830988168716f, -0.490467309951782f, 0.402454853057861f, -0.490392625331879f, 0.402078747749329f, -0.490317672491074f, 0.401702702045441f, -0.490242421627045f, 0.401326715946198f, -0.490166902542114f, 0.400950789451599f, -0.490091055631638f, 0.400574922561646f, -0.490014940500259f, 0.400199115276337f, -0.489938557147980f, 0.399823367595673f, -0.489861875772476f, 0.399447679519653f, -0.489784896373749f, 0.399072051048279f, -0.489707618951797f, 0.398696482181549f, -0.489630073308945f, 0.398320972919464f, -0.489552229642868f, 0.397945523262024f, -0.489474087953568f, 0.397570133209229f, -0.489395678043365f, 0.397194802761078f, -0.489316970109940f, 0.396819531917572f, -0.489237964153290f, 0.396444320678711f, -0.489158689975739f, 0.396069169044495f, -0.489079117774963f, 0.395694077014923f, -0.488999247550964f, 0.395319044589996f, -0.488919109106064f, 0.394944071769714f, -0.488838672637939f, 0.394569188356400f, -0.488757967948914f, 0.394194334745407f, -0.488676935434341f, 0.393819570541382f, -0.488595664501190f, 0.393444836139679f, -0.488514065742493f, 0.393070191144943f, -0.488432198762894f, 0.392695605754852f, -0.488350033760071f, 0.392321079969406f, -0.488267600536346f, 0.391946613788605f, -0.488184869289398f, 0.391572207212448f, -0.488101840019226f, 0.391197860240936f, -0.488018542528152f, 0.390823602676392f, -0.487934947013855f, 0.390449374914169f, -0.487851053476334f, 0.390075236558914f, -0.487766891717911f, 0.389701157808304f, -0.487682431936264f, 0.389327138662338f, -0.487597703933716f, 0.388953179121017f, -0.487512677907944f, 0.388579308986664f, -0.487427353858948f, 0.388205498456955f, -0.487341761589050f, 0.387831717729568f, -0.487255871295929f, 0.387458056211472f, -0.487169682979584f, 0.387084424495697f, -0.487083226442337f, 0.386710882186890f, -0.486996471881866f, 0.386337369680405f, -0.486909449100494f, 0.385963946580887f, -0.486822128295898f, 0.385590612888336f, -0.486734509468079f, 0.385217308998108f, -0.486646622419357f, 0.384844094514847f, -0.486558437347412f, 0.384470939636230f, -0.486469984054565f, 0.384097874164581f, -0.486381232738495f, 0.383724838495255f, -0.486292183399200f, 0.383351892232895f, -0.486202865839005f, 0.382979035377502f, -0.486113250255585f, 0.382606208324432f, -0.486023366451263f, 0.382233470678329f, -0.485933154821396f, 0.381860792636871f, -0.485842704772949f, 0.381488204002380f, -0.485751956701279f, 0.381115674972534f, -0.485660910606384f, 0.380743205547333f, -0.485569566488266f, 0.380370795726776f, -0.485477954149246f, 0.379998475313187f, -0.485386073589325f, 0.379626244306564f, -0.485293895006180f, 0.379254043102264f, -0.485201418399811f, 0.378881961107254f, -0.485108673572540f, 0.378509908914566f, -0.485015630722046f, 0.378137946128845f, -0.484922289848328f, 0.377766042947769f, -0.484828680753708f, 0.377394229173660f, -0.484734803438187f, 0.377022475004196f, -0.484640628099442f, 0.376650810241699f, -0.484546154737473f, 0.376279205083847f, -0.484451413154602f, 0.375907659530640f, -0.484356373548508f, 0.375536203384399f, -0.484261035919189f, 0.375164806842804f, -0.484165430068970f, 0.374793499708176f, -0.484069555997849f, 0.374422252178192f, -0.483973383903503f, 0.374051094055176f, -0.483876913785934f, 0.373679995536804f, -0.483780175447464f, 0.373308986425400f, -0.483683139085770f, 0.372938036918640f, -0.483585834503174f, 0.372567176818848f, -0.483488231897354f, 0.372196376323700f, -0.483390361070633f, 0.371825665235519f, -0.483292192220688f, 0.371455013751984f, -0.483193725347519f, 0.371084451675415f, -0.483094990253448f, 0.370713949203491f, -0.482995986938477f, 0.370343536138535f, -0.482896685600281f, 0.369973212480545f, -0.482797086238861f, 0.369602948427200f, -0.482697218656540f, 0.369232743978500f, -0.482597053050995f, 0.368862658739090f, -0.482496619224548f, 0.368492603302002f, -0.482395917177200f, 0.368122667074203f, -0.482294887304306f, 0.367752790451050f, -0.482193619012833f, 0.367382973432541f, -0.482092022895813f, 0.367013275623322f, -0.481990188360214f, 0.366643607616425f, -0.481888025999069f, 0.366274058818817f, -0.481785595417023f, 0.365904569625854f, -0.481682896614075f, 0.365535169839859f, -0.481579899787903f, 0.365165829658508f, -0.481476634740829f, 0.364796578884125f, -0.481373071670532f, 0.364427417516708f, -0.481269240379334f, 0.364058345556259f, -0.481165111064911f, 0.363689333200455f, -0.481060713529587f, 0.363320380449295f, -0.480956017971039f, 0.362951546907425f, -0.480851024389267f, 0.362582772970200f, -0.480745792388916f, 0.362214088439941f, -0.480640232563019f, 0.361845493316650f, -0.480534434318542f, 0.361476957798004f, -0.480428308248520f, 0.361108511686325f, -0.480321943759918f, 0.360740154981613f, -0.480215251445770f, 0.360371887683868f, -0.480108320713043f, 0.360003679990768f, -0.480001062154770f, 0.359635561704636f, -0.479893565177917f, 0.359267532825470f, -0.479785770177841f, 0.358899593353271f, -0.479677677154541f, 0.358531713485718f, -0.479569315910339f, 0.358163923025131f, -0.479460656642914f, 0.357796221971512f, -0.479351729154587f, 0.357428610324860f, -0.479242533445358f, 0.357061088085175f, -0.479133039712906f, 0.356693625450134f, -0.479023247957230f, 0.356326282024384f, -0.478913217782974f, 0.355958998203278f, -0.478802859783173f, 0.355591803789139f, -0.478692263364792f, 0.355224698781967f, -0.478581339120865f, 0.354857653379440f, -0.478470176458359f, 0.354490727186203f, -0.478358715772629f, 0.354123860597610f, -0.478246957063675f, 0.353757113218308f, -0.478134930133820f, 0.353390425443649f, -0.478022634983063f, 0.353023827075958f, -0.477910041809082f, 0.352657318115234f, -0.477797180414200f, 0.352290898561478f, -0.477684020996094f, 0.351924568414688f, -0.477570593357086f, 0.351558297872543f, -0.477456867694855f, 0.351192146539688f, -0.477342873811722f, 0.350826084613800f, -0.477228611707687f, 0.350460082292557f, -0.477114051580429f, 0.350094199180603f, -0.476999223232269f, 0.349728375673294f, -0.476884096860886f, 0.349362671375275f, -0.476768702268600f, 0.348997026681900f, -0.476653009653091f, 0.348631471395493f, -0.476537048816681f, 0.348266035318375f, -0.476420819759369f, 0.347900658845901f, -0.476304292678833f, 0.347535371780396f, -0.476187497377396f, 0.347170203924179f, -0.476070433855057f, 0.346805095672607f, -0.475953072309494f, 0.346440106630325f, -0.475835442543030f, 0.346075177192688f, -0.475717514753342f, 0.345710366964340f, -0.475599318742752f, 0.345345616340637f, -0.475480824708939f, 0.344980984926224f, -0.475362062454224f, 0.344616413116455f, -0.475243031978607f, 0.344251960515976f, -0.475123733282089f, 0.343887597322464f, -0.475004136562347f, 0.343523323535919f, -0.474884241819382f, 0.343159139156342f, -0.474764078855515f, 0.342795044183731f, -0.474643647670746f, 0.342431038618088f, -0.474522948265076f, 0.342067122459412f, -0.474401950836182f, 0.341703325510025f, -0.474280685186386f, 0.341339588165283f, -0.474159121513367f, 0.340975970029831f, -0.474037289619446f, 0.340612411499023f, -0.473915189504623f, 0.340248972177505f, -0.473792791366577f, 0.339885622262955f, -0.473670125007629f, 0.339522391557693f, -0.473547190427780f, 0.339159220457077f, -0.473423957824707f, 0.338796168565750f, -0.473300457000732f, 0.338433176279068f, -0.473176687955856f, 0.338070303201675f, -0.473052620887756f, 0.337707549333572f, -0.472928285598755f, 0.337344855070114f, -0.472803652286530f, 0.336982280015945f, -0.472678780555725f, 0.336619764566422f, -0.472553610801697f, 0.336257368326187f, -0.472428143024445f, 0.335895091295242f, -0.472302407026291f, 0.335532873868942f, -0.472176402807236f, 0.335170775651932f, -0.472050130367279f, 0.334808766841888f, -0.471923559904099f, 0.334446847438812f, -0.471796721220016f, 0.334085017442703f, -0.471669614315033f, 0.333723306655884f, -0.471542209386826f, 0.333361685276031f, -0.471414536237717f, 0.333000183105469f, -0.471286594867706f, 0.332638740539551f, -0.471158385276794f, 0.332277417182922f, -0.471029877662659f, 0.331916213035584f, -0.470901101827621f, 0.331555068492889f, -0.470772027969360f, 0.331194043159485f, -0.470642685890198f, 0.330833107233047f, -0.470513075590134f, 0.330472290515900f, -0.470383197069168f, 0.330111563205719f, -0.470253020524979f, 0.329750925302505f, -0.470122605562210f, 0.329390406608582f, -0.469991862773895f, 0.329029977321625f, -0.469860881567001f, 0.328669637441635f, -0.469729602336884f, 0.328309416770935f, -0.469598054885864f, 0.327949285507202f, -0.469466239213943f, 0.327589273452759f, -0.469334155321121f, 0.327229350805283f, -0.469201773405075f, 0.326869517564774f, -0.469069123268127f, 0.326509803533554f, -0.468936175107956f, 0.326150178909302f, -0.468802988529205f, 0.325790673494339f, -0.468669503927231f, 0.325431257486343f, -0.468535751104355f, 0.325071930885315f, -0.468401730060577f, 0.324712723493576f, -0.468267410993576f, 0.324353635311127f, -0.468132823705673f, 0.323994606733322f, -0.467997968196869f, 0.323635727167130f, -0.467862844467163f, 0.323276937007904f, -0.467727422714233f, 0.322918236255646f, -0.467591762542725f, 0.322559654712677f, -0.467455804347992f, 0.322201162576675f, -0.467319577932358f, 0.321842789649963f, -0.467183053493500f, 0.321484506130219f, -0.467046260833740f, 0.321126341819763f, -0.466909229755402f, 0.320768296718597f, -0.466771900653839f, 0.320410341024399f, -0.466634273529053f, 0.320052474737167f, -0.466496407985687f, 0.319694727659225f, -0.466358244419098f, 0.319337099790573f, -0.466219812631607f, 0.318979561328888f, -0.466081112623215f, 0.318622142076492f, -0.465942144393921f, 0.318264812231064f, -0.465802878141403f, 0.317907601594925f, -0.465663343667984f, 0.317550510168076f, -0.465523540973663f, 0.317193508148193f, -0.465383470058441f, 0.316836595535278f, -0.465243130922318f, 0.316479831933975f, -0.465102523565292f, 0.316123157739639f, -0.464961618185043f, 0.315766572952271f, -0.464820444583893f, 0.315410137176514f, -0.464679002761841f, 0.315053790807724f, -0.464537292718887f, 0.314697533845901f, -0.464395314455032f, 0.314341396093369f, -0.464253038167953f, 0.313985377550125f, -0.464110493659973f, 0.313629478216171f, -0.463967710733414f, 0.313273668289185f, -0.463824629783630f, 0.312917977571487f, -0.463681250810623f, 0.312562376260757f, -0.463537633419037f, 0.312206923961639f, -0.463393747806549f, 0.311851561069489f, -0.463249564170837f, 0.311496287584305f, -0.463105112314224f, 0.311141163110733f, -0.462960392236710f, 0.310786128044128f, -0.462815403938293f, 0.310431212186813f, -0.462670147418976f, 0.310076385736465f, -0.462524622678757f, 0.309721708297729f, -0.462378799915314f, 0.309367120265961f, -0.462232738733292f, 0.309012651443481f, -0.462086379528046f, 0.308658272027969f, -0.461939752101898f, 0.308304041624069f, -0.461792886257172f, 0.307949900627136f, -0.461645722389221f, 0.307595878839493f, -0.461498260498047f, 0.307241976261139f, -0.461350560188293f, 0.306888192892075f, -0.461202591657639f, 0.306534498929977f, -0.461054325103760f, 0.306180924177170f, -0.460905820131302f, 0.305827468633652f, -0.460757017135620f, 0.305474132299423f, -0.460607945919037f, 0.305120915174484f, -0.460458606481552f, 0.304767817258835f, -0.460309028625488f, 0.304414808750153f, -0.460159152746201f, 0.304061919450760f, -0.460008978843689f, 0.303709149360657f, -0.459858566522598f, 0.303356528282166f, -0.459707885980606f, 0.303003966808319f, -0.459556937217712f, 0.302651554346085f, -0.459405690431595f, 0.302299261093140f, -0.459254205226898f, 0.301947087049484f, -0.459102421998978f, 0.301595002412796f, -0.458950400352478f, 0.301243066787720f, -0.458798080682755f, 0.300891220569611f, -0.458645492792130f, 0.300539493560791f, -0.458492636680603f, 0.300187885761261f, -0.458339542150497f, 0.299836426973343f, -0.458186149597168f, 0.299485057592392f, -0.458032488822937f, 0.299133807420731f, -0.457878559827805f, 0.298782676458359f, -0.457724362611771f, 0.298431664705276f, -0.457569897174835f, 0.298080772161484f, -0.457415163516998f, 0.297729998826981f, -0.457260161638260f, 0.297379344701767f, -0.457104891538620f, 0.297028809785843f, -0.456949323415756f, 0.296678394079208f, -0.456793516874313f, 0.296328097581863f, -0.456637442111969f, 0.295977920293808f, -0.456481099128723f, 0.295627862215042f, -0.456324487924576f, 0.295277923345566f, -0.456167578697205f, 0.294928103685379f, -0.456010431051254f, 0.294578403234482f, -0.455853015184402f, 0.294228851795197f, -0.455695331096649f, 0.293879389762878f, -0.455537378787994f, 0.293530046939850f, -0.455379128456116f, 0.293180853128433f, -0.455220639705658f, 0.292831748723984f, -0.455061882734299f, 0.292482793331146f, -0.454902857542038f, 0.292133957147598f, -0.454743564128876f, 0.291785210371017f, -0.454584002494812f, 0.291436612606049f, -0.454424172639847f, 0.291088134050369f, -0.454264044761658f, 0.290739774703979f, -0.454103678464890f, 0.290391564369202f, -0.453943043947220f, 0.290043443441391f, -0.453782171010971f, 0.289695471525192f, -0.453621000051498f, 0.289347589015961f, -0.453459560871124f, 0.288999855518341f, -0.453297853469849f, 0.288652241230011f, -0.453135877847672f, 0.288304775953293f, -0.452973634004593f, 0.287957400083542f, -0.452811151742935f, 0.287610173225403f, -0.452648371458054f, 0.287263035774231f, -0.452485352754593f, 0.286916047334671f, -0.452322036027908f, 0.286569178104401f, -0.452158480882645f, 0.286222457885742f, -0.451994657516479f, 0.285875827074051f, -0.451830536127090f, 0.285529345273972f, -0.451666176319122f, 0.285182982683182f, -0.451501548290253f, 0.284836769104004f, -0.451336652040482f, 0.284490644931793f, -0.451171487569809f, 0.284144669771194f, -0.451006084680557f, 0.283798813819885f, -0.450840383768082f, 0.283453077077866f, -0.450674414634705f, 0.283107489347458f, -0.450508207082748f, 0.282762020826340f, -0.450341701507568f, 0.282416671514511f, -0.450174957513809f, 0.282071471214294f, -0.450007945299149f, 0.281726360321045f, -0.449840664863586f, 0.281381398439407f, -0.449673116207123f, 0.281036585569382f, -0.449505299329758f, 0.280691891908646f, -0.449337244033813f, 0.280347317457199f, -0.449168890714645f, 0.280002862215042f, -0.449000298976898f, 0.279658555984497f, -0.448831409215927f, 0.279314368963242f, -0.448662281036377f, 0.278970301151276f, -0.448492884635925f, 0.278626382350922f, -0.448323249816895f, 0.278282582759857f, -0.448153316974640f, 0.277938932180405f, -0.447983115911484f, 0.277595400810242f, -0.447812676429749f, 0.277251988649368f, -0.447641968727112f, 0.276908725500107f, -0.447470992803574f, 0.276565581560135f, -0.447299748659134f, 0.276222556829453f, -0.447128236293793f, 0.275879681110382f, -0.446956485509872f, 0.275536954402924f, -0.446784436702728f, 0.275194346904755f, -0.446612149477005f, 0.274851858615875f, -0.446439594030380f, 0.274509519338608f, -0.446266770362854f, 0.274167299270630f, -0.446093708276749f, 0.273825198411942f, -0.445920348167419f, 0.273483246564865f, -0.445746749639511f, 0.273141443729401f, -0.445572882890701f, 0.272799760103226f, -0.445398747920990f, 0.272458195686340f, -0.445224374532700f, 0.272116780281067f, -0.445049703121185f, 0.271775513887405f, -0.444874793291092f, 0.271434366703033f, -0.444699615240097f, 0.271093338727951f, -0.444524168968201f, 0.270752459764481f, -0.444348484277725f, 0.270411729812622f, -0.444172531366348f, 0.270071119070053f, -0.443996280431747f, 0.269730657339096f, -0.443819820880890f, 0.269390314817429f, -0.443643063306808f, 0.269050091505051f, -0.443466067314148f, 0.268710047006607f, -0.443288803100586f, 0.268370121717453f, -0.443111270666122f, 0.268030315637589f, -0.442933470010757f, 0.267690658569336f, -0.442755430936813f, 0.267351150512695f, -0.442577123641968f, 0.267011761665344f, -0.442398548126221f, 0.266672492027283f, -0.442219734191895f, 0.266333401203156f, -0.442040622234344f, 0.265994429588318f, -0.441861271858215f, 0.265655577182770f, -0.441681683063507f, 0.265316903591156f, -0.441501796245575f, 0.264978319406509f, -0.441321671009064f, 0.264639914035797f, -0.441141277551651f, 0.264301627874374f, -0.440960645675659f, 0.263963490724564f, -0.440779715776443f, 0.263625472784042f, -0.440598547458649f, 0.263287603855133f, -0.440417140722275f, 0.262949883937836f, -0.440235435962677f, 0.262612313032150f, -0.440053492784500f, 0.262274861335754f, -0.439871311187744f, 0.261937558650970f, -0.439688831567764f, 0.261600375175476f, -0.439506113529205f, 0.261263370513916f, -0.439323127269745f, 0.260926485061646f, -0.439139902591705f, 0.260589718818665f, -0.438956409692764f, 0.260253131389618f, -0.438772648572922f, 0.259916663169861f, -0.438588619232178f, 0.259580343961716f, -0.438404351472855f, 0.259244143962860f, -0.438219845294952f, 0.258908122777939f, -0.438035041093826f, 0.258572220802307f, -0.437849998474121f, 0.258236467838287f, -0.437664687633514f, 0.257900834083557f, -0.437479138374329f, 0.257565379142761f, -0.437293320894241f, 0.257230043411255f, -0.437107264995575f, 0.256894856691360f, -0.436920911073685f, 0.256559818983078f, -0.436734348535538f, 0.256224930286407f, -0.436547487974167f, 0.255890160799026f, -0.436360388994217f, 0.255555540323257f, -0.436173021793365f, 0.255221068859100f, -0.435985416173935f, 0.254886746406555f, -0.435797542333603f, 0.254552572965622f, -0.435609430074692f, 0.254218548536301f, -0.435421019792557f, 0.253884643316269f, -0.435232400894165f, 0.253550916910172f, -0.435043483972549f, 0.253217309713364f, -0.434854328632355f, 0.252883851528168f, -0.434664934873581f, 0.252550542354584f, -0.434475272893906f, 0.252217382192612f, -0.434285342693329f, 0.251884341239929f, -0.434095174074173f, 0.251551479101181f, -0.433904737234116f, 0.251218736171722f, -0.433714061975479f, 0.250886172056198f, -0.433523118495941f, 0.250553727149963f, -0.433331936597824f, 0.250221431255341f, -0.433140486478806f, 0.249889299273491f, -0.432948768138886f, 0.249557301402092f, -0.432756811380386f, 0.249225467443466f, -0.432564586400986f, 0.248893767595291f, -0.432372123003006f, 0.248562216758728f, -0.432179391384125f, 0.248230814933777f, -0.431986421346664f, 0.247899547219276f, -0.431793183088303f, 0.247568443417549f, -0.431599706411362f, 0.247237488627434f, -0.431405961513519f, 0.246906682848930f, -0.431211978197098f, 0.246576011180878f, -0.431017726659775f, 0.246245503425598f, -0.430823236703873f, 0.245915144681931f, -0.430628478527069f, 0.245584934949875f, -0.430433481931686f, 0.245254859328270f, -0.430238217115402f, 0.244924947619438f, -0.430042684078217f, 0.244595184922218f, -0.429846942424774f, 0.244265571236610f, -0.429650902748108f, 0.243936106562614f, -0.429454624652863f, 0.243606805801392f, -0.429258108139038f, 0.243277639150620f, -0.429061323404312f, 0.242948621511459f, -0.428864300251007f, 0.242619767785072f, -0.428667008876801f, 0.242291063070297f, -0.428469479084015f, 0.241962507367134f, -0.428271710872650f, 0.241634100675583f, -0.428073674440384f, 0.241305842995644f, -0.427875369787216f, 0.240977749228477f, -0.427676826715469f, 0.240649804472923f, -0.427478045225143f, 0.240322008728981f, -0.427278995513916f, 0.239994361996651f, -0.427079707384110f, 0.239666879177094f, -0.426880151033401f, 0.239339530467987f, -0.426680356264114f, 0.239012360572815f, -0.426480293273926f, 0.238685324788094f, -0.426279991865158f, 0.238358452916145f, -0.426079452037811f, 0.238031730055809f, -0.425878643989563f, 0.237705156207085f, -0.425677597522736f, 0.237378746271133f, -0.425476282835007f, 0.237052485346794f, -0.425274729728699f, 0.236726388335228f, -0.425072938203812f, 0.236400425434113f, -0.424870878458023f, 0.236074641346931f, -0.424668580293655f, 0.235749006271362f, -0.424466013908386f, 0.235423520207405f, -0.424263238906860f, 0.235098183155060f, -0.424060165882111f, 0.234773010015488f, -0.423856884241104f, 0.234448000788689f, -0.423653304576874f, 0.234123140573502f, -0.423449516296387f, 0.233798429369926f, -0.423245459794998f, 0.233473882079124f, -0.423041164875031f, 0.233149498701096f, -0.422836631536484f, 0.232825264334679f, -0.422631829977036f, 0.232501193881035f, -0.422426789999008f, 0.232177272439003f, -0.422221481800079f, 0.231853514909744f, -0.422015935182571f, 0.231529906392097f, -0.421810150146484f, 0.231206461787224f, -0.421604126691818f, 0.230883181095123f, -0.421397835016251f, 0.230560049414635f, -0.421191304922104f, 0.230237081646919f, -0.420984506607056f, 0.229914262890816f, -0.420777499675751f, 0.229591608047485f, -0.420570224523544f, 0.229269117116928f, -0.420362681150436f, 0.228946775197983f, -0.420154929161072f, 0.228624612092972f, -0.419946908950806f, 0.228302597999573f, -0.419738620519638f, 0.227980732917786f, -0.419530123472214f, 0.227659046649933f, -0.419321358203888f, 0.227337509393692f, -0.419112354516983f, 0.227016136050224f, -0.418903112411499f, 0.226694911718369f, -0.418693602085114f, 0.226373866200447f, -0.418483853340149f, 0.226052969694138f, -0.418273866176605f, 0.225732237100601f, -0.418063640594482f, 0.225411668419838f, -0.417853146791458f, 0.225091263651848f, -0.417642414569855f, 0.224771007895470f, -0.417431443929672f, 0.224450930953026f, -0.417220205068588f, 0.224131003022194f, -0.417008757591248f, 0.223811239004135f, -0.416797041893005f, 0.223491653800011f, -0.416585087776184f, 0.223172217607498f, -0.416372895240784f, 0.222852945327759f, -0.416160434484482f, 0.222533836960793f, -0.415947735309601f, 0.222214877605438f, -0.415734797716141f, 0.221896097064018f, -0.415521621704102f, 0.221577480435371f, -0.415308207273483f, 0.221259027719498f, -0.415094524621964f, 0.220940738916397f, -0.414880603551865f, 0.220622614026070f, -0.414666473865509f, 0.220304638147354f, -0.414452046155930f, 0.219986841082573f, -0.414237409830093f, 0.219669207930565f, -0.414022535085678f, 0.219351738691330f, -0.413807392120361f, 0.219034433364868f, -0.413592010736465f, 0.218717306852341f, -0.413376390933990f, 0.218400329351425f, -0.413160532712936f, 0.218083515763283f, -0.412944436073303f, 0.217766880989075f, -0.412728071212769f, 0.217450410127640f, -0.412511497735977f, 0.217134088277817f, -0.412294656038284f, 0.216817945241928f, -0.412077575922012f, 0.216501981019974f, -0.411860257387161f, 0.216186165809631f, -0.411642700433731f, 0.215870529413223f, -0.411424905061722f, 0.215555042028427f, -0.411206841468811f, 0.215239733457565f, -0.410988569259644f, 0.214924603700638f, -0.410770028829575f, 0.214609622955322f, -0.410551249980927f, 0.214294821023941f, -0.410332232713699f, 0.213980183005333f, -0.410112977027893f, 0.213665723800659f, -0.409893482923508f, 0.213351413607597f, -0.409673750400543f, 0.213037282228470f, -0.409453779459000f, 0.212723329663277f, -0.409233570098877f, 0.212409526109695f, -0.409013092517853f, 0.212095901370049f, -0.408792406320572f, 0.211782455444336f, -0.408571451902390f, 0.211469158530235f, -0.408350288867950f, 0.211156040430069f, -0.408128857612610f, 0.210843101143837f, -0.407907217741013f, 0.210530325770378f, -0.407685309648514f, 0.210217714309692f, -0.407463163137436f, 0.209905281662941f, -0.407240778207779f, 0.209593027830124f, -0.407018154859543f, 0.209280923008919f, -0.406795293092728f, 0.208969011902809f, -0.406572192907333f, 0.208657249808311f, -0.406348884105682f, 0.208345666527748f, -0.406125307083130f, 0.208034262061119f, -0.405901491641998f, 0.207723021507263f, -0.405677437782288f, 0.207411959767342f, -0.405453115701675f, 0.207101076841354f, -0.405228585004807f, 0.206790357828140f, -0.405003815889359f, 0.206479802727699f, -0.404778808355331f, 0.206169426441193f, -0.404553562402725f, 0.205859228968620f, -0.404328078031540f, 0.205549195408821f, -0.404102355241776f, 0.205239340662956f, -0.403876423835754f, 0.204929664731026f, -0.403650224208832f, 0.204620152711868f, -0.403423786163330f, 0.204310819506645f, -0.403197109699249f, 0.204001650214195f, -0.402970194816589f, 0.203692659735680f, -0.402743041515350f, 0.203383848071098f, -0.402515679597855f, 0.203075215220451f, -0.402288049459457f, 0.202766746282578f, -0.402060180902481f, 0.202458456158638f, -0.401832103729248f, 0.202150344848633f, -0.401603758335114f, 0.201842412352562f, -0.401375204324722f, 0.201534643769264f, -0.401146411895752f, 0.201227053999901f, -0.400917351245880f, 0.200919643044472f, -0.400688081979752f, 0.200612410902977f, -0.400458574295044f, 0.200305357575417f, -0.400228828191757f, 0.199998468160629f, -0.399998843669891f, 0.199691757559776f, -0.399768620729446f, 0.199385225772858f, -0.399538189172745f, 0.199078872799873f, -0.399307489395142f, 0.198772698640823f, -0.399076581001282f, 0.198466703295708f, -0.398845434188843f, 0.198160871863365f, -0.398614019155502f, 0.197855234146118f, -0.398382395505905f, 0.197549775242805f, -0.398150533437729f, 0.197244480252266f, -0.397918462753296f, 0.196939364075661f, -0.397686123847961f, 0.196634441614151f, -0.397453576326370f, 0.196329683065414f, -0.397220760583878f, 0.196025103330612f, -0.396987736225128f, 0.195720717310905f, -0.396754473447800f, 0.195416495203972f, -0.396520972251892f, 0.195112451910973f, -0.396287262439728f, 0.194808602333069f, -0.396053284406662f, 0.194504916667938f, -0.395819097757339f, 0.194201424717903f, -0.395584672689438f, 0.193898096680641f, -0.395350009202957f, 0.193594962358475f, -0.395115107297897f, 0.193292006850243f, -0.394879996776581f, 0.192989215254784f, -0.394644618034363f, 0.192686617374420f, -0.394409030675888f, 0.192384198307991f, -0.394173204898834f, 0.192081972956657f, -0.393937170505524f, 0.191779911518097f, -0.393700867891312f, 0.191478043794632f, -0.393464356660843f, 0.191176339983940f, -0.393227607011795f, 0.190874829888344f, -0.392990618944168f, 0.190573498606682f, -0.392753422260284f, 0.190272361040115f, -0.392515957355499f, 0.189971387386322f, -0.392278283834457f, 0.189670607447624f, -0.392040401697159f, 0.189370006322861f, -0.391802251338959f, 0.189069598913193f, -0.391563892364502f, 0.188769355416298f, -0.391325294971466f, 0.188469305634499f, -0.391086459159851f, 0.188169434666634f, -0.390847414731979f, 0.187869757413864f, -0.390608131885529f, 0.187570258975029f, -0.390368610620499f, 0.187270939350128f, -0.390128880739212f, 0.186971798539162f, -0.389888882637024f, 0.186672851443291f, -0.389648675918579f, 0.186374098062515f, -0.389408260583878f, 0.186075508594513f, -0.389167606830597f, 0.185777112841606f, -0.388926714658737f, 0.185478910803795f, -0.388685584068298f, 0.185180887579918f, -0.388444244861603f, 0.184883043169975f, -0.388202667236328f, 0.184585392475128f, -0.387960851192474f, 0.184287920594215f, -0.387718826532364f, 0.183990627527237f, -0.387476563453674f, 0.183693528175354f, -0.387234061956406f, 0.183396622538567f, -0.386991351842880f, 0.183099895715714f, -0.386748403310776f, 0.182803362607956f, -0.386505216360092f, 0.182507008314133f, -0.386261820793152f, 0.182210832834244f, -0.386018186807632f, 0.181914865970612f, -0.385774344205856f, 0.181619063019753f, -0.385530263185501f, 0.181323468685150f, -0.385285943746567f, 0.181028053164482f, -0.385041415691376f, 0.180732816457748f, -0.384796649217606f, 0.180437773466110f, -0.384551674127579f, 0.180142924189568f, -0.384306460618973f, 0.179848253726959f, -0.384061008691788f, 0.179553776979446f, -0.383815348148346f, 0.179259493947029f, -0.383569449186325f, 0.178965389728546f, -0.383323341608047f, 0.178671479225159f, -0.383076995611191f, 0.178377762436867f, -0.382830440998077f, 0.178084224462509f, -0.382583618164063f, 0.177790880203247f, -0.382336616516113f, 0.177497729659081f, -0.382089376449585f, 0.177204772830009f, -0.381841897964478f, 0.176911994814873f, -0.381594210863113f, 0.176619410514832f, -0.381346285343170f, 0.176327019929886f, -0.381098151206970f, 0.176034808158875f, -0.380849778652191f, 0.175742805004120f, -0.380601197481155f, 0.175450980663300f, -0.380352377891541f, 0.175159350037575f, -0.380103349685669f, 0.174867913126946f, -0.379854083061218f, 0.174576655030251f, -0.379604607820511f, 0.174285605549812f, -0.379354894161224f, 0.173994734883308f, -0.379104942083359f, 0.173704057931900f, -0.378854811191559f, 0.173413574695587f, -0.378604412078857f, 0.173123285174370f, -0.378353834152222f, 0.172833189368248f, -0.378102988004684f, 0.172543287277222f, -0.377851963043213f, 0.172253578901291f, -0.377600699663162f, 0.171964049339294f, -0.377349197864532f, 0.171674728393555f, -0.377097487449646f, 0.171385586261749f, -0.376845568418503f, 0.171096652746201f, -0.376593410968781f, 0.170807912945747f, -0.376341015100479f, 0.170519351959229f, -0.376088410615921f, 0.170230999588966f, -0.375835597515106f, 0.169942826032639f, -0.375582575798035f, 0.169654861092567f, -0.375329315662384f, 0.169367074966431f, -0.375075817108154f, 0.169079497456551f, -0.374822109937668f, 0.168792113661766f, -0.374568194150925f, 0.168504923582077f, -0.374314039945602f, 0.168217927217484f, -0.374059677124023f, 0.167931124567986f, -0.373805105686188f, 0.167644515633583f, -0.373550295829773f, 0.167358100414276f, -0.373295277357101f, 0.167071878910065f, -0.373040050268173f, 0.166785866022110f, -0.372784584760666f, 0.166500031948090f, -0.372528880834579f, 0.166214406490326f, -0.372272998094559f, 0.165928974747658f, -0.372016876935959f, 0.165643751621246f, -0.371760547161102f, 0.165358707308769f, -0.371503978967667f, 0.165073871612549f, -0.371247202157974f, 0.164789214730263f, -0.370990216732025f, 0.164504766464233f, -0.370732992887497f, 0.164220526814461f, -0.370475560426712f, 0.163936465978622f, -0.370217919349670f, 0.163652613759041f, -0.369960039854050f, 0.163368955254555f, -0.369701951742172f, 0.163085505366325f, -0.369443655014038f, 0.162802234292030f, -0.369185149669647f, 0.162519171833992f, -0.368926405906677f, 0.162236317992210f, -0.368667453527451f, 0.161953642964363f, -0.368408292531967f, 0.161671176552773f, -0.368148893117905f, 0.161388918757439f, -0.367889285087585f, 0.161106839776039f, -0.367629468441010f, 0.160824984312058f, -0.367369443178177f, 0.160543307662010f, -0.367109179496765f, 0.160261839628220f, -0.366848707199097f, 0.159980565309525f, -0.366588026285172f, 0.159699499607086f, -0.366327136754990f, 0.159418627619743f, -0.366066008806229f, 0.159137964248657f, -0.365804702043533f, 0.158857494592667f, -0.365543156862259f, 0.158577233552933f, -0.365281373262405f, 0.158297166228294f, -0.365019410848618f, 0.158017292618752f, -0.364757210016251f, 0.157737627625465f, -0.364494800567627f, 0.157458171248436f, -0.364232182502747f, 0.157178908586502f, -0.363969355821610f, 0.156899839639664f, -0.363706320524216f, 0.156620979309082f, -0.363443046808243f, 0.156342327594757f, -0.363179564476013f, 0.156063869595528f, -0.362915903329849f, 0.155785620212555f, -0.362651973962784f, 0.155507579445839f, -0.362387865781784f, 0.155229732394218f, -0.362123548984528f, 0.154952079057693f, -0.361858993768692f, 0.154674649238586f, -0.361594229936600f, 0.154397398233414f, -0.361329287290573f, 0.154120370745659f, -0.361064106225967f, 0.153843536973000f, -0.360798716545105f, 0.153566911816597f, -0.360533088445663f, 0.153290495276451f, -0.360267281532288f, 0.153014272451401f, -0.360001266002655f, 0.152738258242607f, -0.359735012054443f, 0.152462437748909f, -0.359468549489975f, 0.152186840772629f, -0.359201908111572f, 0.151911437511444f, -0.358935028314590f, 0.151636242866516f, -0.358667939901352f, 0.151361241936684f, -0.358400642871857f, 0.151086464524269f, -0.358133137226105f, 0.150811880826950f, -0.357865422964096f, 0.150537505745888f, -0.357597470283508f, 0.150263324379921f, -0.357329338788986f, 0.149989366531372f, -0.357060998678207f, 0.149715602397919f, -0.356792420148849f, 0.149442046880722f, -0.356523662805557f, 0.149168699979782f, -0.356254696846008f, 0.148895561695099f, -0.355985492467880f, 0.148622632026672f, -0.355716109275818f, 0.148349896073341f, -0.355446487665176f, 0.148077383637428f, -0.355176687240601f, 0.147805064916611f, -0.354906648397446f, 0.147532954812050f, -0.354636400938034f, 0.147261068224907f, -0.354365974664688f, 0.146989375352860f, -0.354095309972763f, 0.146717891097069f, -0.353824466466904f, 0.146446615457535f, -0.353553384542465f, 0.146175548434258f, -0.353282123804092f, 0.145904675126076f, -0.353010624647141f, 0.145634025335312f, -0.352738946676254f, 0.145363584160805f, -0.352467030286789f, 0.145093351602554f, -0.352194935083389f, 0.144823327660561f, -0.351922631263733f, 0.144553512334824f, -0.351650089025497f, 0.144283905625343f, -0.351377367973328f, 0.144014507532120f, -0.351104438304901f, 0.143745318055153f, -0.350831300020218f, 0.143476337194443f, -0.350557953119278f, 0.143207564949989f, -0.350284397602081f, 0.142939001321793f, -0.350010633468628f, 0.142670661211014f, -0.349736660718918f, 0.142402514815331f, -0.349462509155273f, 0.142134591937065f, -0.349188119173050f, 0.141866862773895f, -0.348913550376892f, 0.141599357128143f, -0.348638743162155f, 0.141332060098648f, -0.348363757133484f, 0.141064971685410f, -0.348088562488556f, 0.140798106789589f, -0.347813159227371f, 0.140531435608864f, -0.347537547349930f, 0.140264987945557f, -0.347261756658554f, 0.139998748898506f, -0.346985727548599f, 0.139732718467712f, -0.346709519624710f, 0.139466896653175f, -0.346433073282242f, 0.139201298356056f, -0.346156448125839f, 0.138935908675194f, -0.345879614353180f, 0.138670727610588f, -0.345602601766586f, 0.138405755162239f, -0.345325350761414f, 0.138141006231308f, -0.345047920942307f, 0.137876465916634f, -0.344770282506943f, 0.137612134218216f, -0.344492435455322f, 0.137348011136055f, -0.344214379787445f, 0.137084111571312f, -0.343936115503311f, 0.136820420622826f, -0.343657672405243f, 0.136556953191757f, -0.343379020690918f, 0.136293679475784f, -0.343100160360336f, 0.136030644178391f, -0.342821091413498f, 0.135767802596092f, -0.342541843652725f, 0.135505184531212f, -0.342262357473373f, 0.135242775082588f, -0.341982692480087f, 0.134980589151382f, -0.341702848672867f, 0.134718611836433f, -0.341422766447067f, 0.134456858038902f, -0.341142505407333f, 0.134195312857628f, -0.340862035751343f, 0.133933976292610f, -0.340581357479095f, 0.133672863245010f, -0.340300500392914f, 0.133411958813667f, -0.340019434690475f, 0.133151277899742f, -0.339738160371780f, 0.132890805602074f, -0.339456677436829f, 0.132630556821823f, -0.339175015687943f, 0.132370531558990f, -0.338893145322800f, 0.132110700011253f, -0.338611096143723f, 0.131851106882095f, -0.338328808546066f, 0.131591722369194f, -0.338046342134476f, 0.131332546472549f, -0.337763696908951f, 0.131073594093323f, -0.337480813264847f, 0.130814850330353f, -0.337197750806808f, 0.130556344985962f, -0.336914509534836f, 0.130298033356667f, -0.336631029844284f, 0.130039945244789f, -0.336347371339798f, 0.129782080650330f, -0.336063534021378f, 0.129524439573288f, -0.335779488086700f, 0.129267007112503f, -0.335495233535767f, 0.129009798169136f, -0.335210770368576f, 0.128752797842026f, -0.334926128387451f, 0.128496021032333f, -0.334641307592392f, 0.128239467740059f, -0.334356248378754f, 0.127983123064041f, -0.334071010351181f, 0.127727001905441f, -0.333785593509674f, 0.127471104264259f, -0.333499968051910f, 0.127215430140495f, -0.333214133977890f, 0.126959964632988f, -0.332928121089935f, 0.126704722642899f, -0.332641899585724f, 0.126449704170227f, -0.332355499267578f, 0.126194894313812f, -0.332068890333176f, 0.125940307974815f, -0.331782072782516f, 0.125685945153236f, -0.331495076417923f, 0.125431805849075f, -0.331207901239395f, 0.125177875161171f, -0.330920487642288f, 0.124924175441265f, -0.330632925033569f, 0.124670691788197f, -0.330345153808594f, 0.124417431652546f, -0.330057173967361f, 0.124164395034313f, -0.329769015312195f, 0.123911574482918f, -0.329480648040771f, 0.123658977448940f, -0.329192101955414f, 0.123406603932381f, -0.328903347253799f, 0.123154446482658f, -0.328614413738251f, 0.122902512550354f, -0.328325271606445f, 0.122650802135468f, -0.328035950660706f, 0.122399315237999f, -0.327746421098709f, 0.122148044407368f, -0.327456712722778f, 0.121896997094154f, -0.327166795730591f, 0.121646173298359f, -0.326876699924469f, 0.121395580470562f, -0.326586425304413f, 0.121145196259022f, -0.326295942068100f, 0.120895043015480f, -0.326005280017853f, 0.120645113289356f, -0.325714409351349f, 0.120395407080650f, -0.325423330068588f, 0.120145916938782f, -0.325132101774216f, 0.119896657764912f, -0.324840664863586f, 0.119647622108459f, -0.324549019336700f, 0.119398809969425f, -0.324257194995880f, 0.119150213897228f, -0.323965191841125f, 0.118901848793030f, -0.323672980070114f, 0.118653707206249f, -0.323380589485168f, 0.118405789136887f, -0.323088020086288f, 0.118158094584942f, -0.322795242071152f, 0.117910631000996f, -0.322502255439758f, 0.117663383483887f, -0.322209119796753f, 0.117416366934776f, -0.321915775537491f, 0.117169573903084f, -0.321622252464294f, 0.116923004388809f, -0.321328520774841f, 0.116676658391953f, -0.321034610271454f, 0.116430543363094f, -0.320740520954132f, 0.116184651851654f, -0.320446223020554f, 0.115938983857632f, -0.320151746273041f, 0.115693546831608f, -0.319857090711594f, 0.115448333323002f, -0.319562226533890f, 0.115203343331814f, -0.319267183542252f, 0.114958584308624f, -0.318971961736679f, 0.114714048802853f, -0.318676531314850f, 0.114469736814499f, -0.318380922079086f, 0.114225655794144f, -0.318085134029388f, 0.113981798291206f, -0.317789167165756f, 0.113738171756268f, -0.317492991685867f, 0.113494776189327f, -0.317196637392044f, 0.113251596689224f, -0.316900104284287f, 0.113008655607700f, -0.316603392362595f, 0.112765938043594f, -0.316306471824646f, 0.112523443996906f, -0.316009372472763f, 0.112281180918217f, -0.315712094306946f, 0.112039148807526f, -0.315414607524872f, 0.111797347664833f, -0.315116971731186f, 0.111555770039558f, -0.314819127321243f, 0.111314415931702f, -0.314521104097366f, 0.111073300242424f, -0.314222872257233f, 0.110832408070564f, -0.313924491405487f, 0.110591746866703f, -0.313625901937485f, 0.110351309180260f, -0.313327133655548f, 0.110111102461815f, -0.313028186559677f, 0.109871134161949f, -0.312729060649872f, 0.109631389379501f, -0.312429755926132f, 0.109391868114471f, -0.312130242586136f, 0.109152585268021f, -0.311830550432205f, 0.108913525938988f, -0.311530679464340f, 0.108674705028534f, -0.311230629682541f, 0.108436107635498f, -0.310930401086807f, 0.108197741210461f, -0.310629993677139f, 0.107959605753422f, -0.310329377651215f, 0.107721701264381f, -0.310028612613678f, 0.107484027743340f, -0.309727638959885f, 0.107246585190296f, -0.309426486492157f, 0.107009373605251f, -0.309125155210495f, 0.106772392988205f, -0.308823645114899f, 0.106535643339157f, -0.308521956205368f, 0.106299124658108f, -0.308220088481903f, 0.106062836945057f, -0.307918041944504f, 0.105826787650585f, -0.307615786790848f, 0.105590961873531f, -0.307313382625580f, 0.105355374515057f, -0.307010769844055f, 0.105120018124580f, -0.306708008050919f, 0.104884892702103f, -0.306405037641525f, 0.104649998247623f, -0.306101888418198f, 0.104415334761143f, -0.305798590183258f, 0.104180909693241f, -0.305495083332062f, 0.103946708142757f, -0.305191397666931f, 0.103712752461433f, -0.304887533187866f, 0.103479020297527f, -0.304583519697189f, 0.103245526552200f, -0.304279297590256f, 0.103012263774872f, -0.303974896669388f, 0.102779231965542f, -0.303670316934586f, 0.102546438574791f, -0.303365558385849f, 0.102313876152039f, -0.303060621023178f, 0.102081544697285f, -0.302755534648895f, 0.101849451661110f, -0.302450239658356f, 0.101617597043514f, -0.302144765853882f, 0.101385973393917f, -0.301839113235474f, 0.101154580712318f, -0.301533311605453f, 0.100923426449299f, -0.301227301359177f, 0.100692503154278f, -0.300921112298965f, 0.100461818277836f, -0.300614774227142f, 0.100231364369392f, -0.300308227539063f, 0.100001148879528f, -0.300001531839371f, 0.099771171808243f, -0.299694657325745f, 0.099541425704956f, -0.299387603998184f, 0.099311910569668f, -0.299080342054367f, 0.099082641303539f, -0.298772931098938f, 0.098853603005409f, -0.298465341329575f, 0.098624803125858f, -0.298157602548599f, 0.098396234214306f, -0.297849655151367f, 0.098167903721333f, -0.297541528940201f, 0.097939811646938f, -0.297233253717422f, 0.097711957991123f, -0.296924799680710f, 0.097484335303307f, -0.296616137027740f, 0.097256951034069f, -0.296307325363159f, 0.097029805183411f, -0.295998334884644f, 0.096802897751331f, -0.295689195394516f, 0.096576221287251f, -0.295379847288132f, 0.096349790692329f, -0.295070350170136f, 0.096123591065407f, -0.294760644435883f, 0.095897629857063f, -0.294450789690018f, 0.095671907067299f, -0.294140785932541f, 0.095446422696114f, -0.293830573558807f, 0.095221176743507f, -0.293520182371140f, 0.094996169209480f, -0.293209642171860f, 0.094771400094032f, -0.292898923158646f, 0.094546869397163f, -0.292588025331497f, 0.094322577118874f, -0.292276978492737f, 0.094098523259163f, -0.291965723037720f, 0.093874707818031f, -0.291654318571091f, 0.093651130795479f, -0.291342735290527f, 0.093427792191505f, -0.291031002998352f, 0.093204692006111f, -0.290719062089920f, 0.092981837689877f, -0.290406972169876f, 0.092759214341640f, -0.290094703435898f, 0.092536836862564f, -0.289782285690308f, 0.092314697802067f, -0.289469659328461f, 0.092092797160149f, -0.289156883955002f, 0.091871134936810f, -0.288843959569931f, 0.091649711132050f, -0.288530826568604f, 0.091428533196449f, -0.288217544555664f, 0.091207593679428f, -0.287904083728790f, 0.090986892580986f, -0.287590473890305f, 0.090766437351704f, -0.287276685237885f, 0.090546220541000f, -0.286962717771530f, 0.090326242148876f, -0.286648571491241f, 0.090106502175331f, -0.286334276199341f, 0.089887008070946f, -0.286019802093506f, 0.089667752385139f, -0.285705178976059f, 0.089448742568493f, -0.285390377044678f, 0.089229971170425f, -0.285075396299362f, 0.089011445641518f, -0.284760266542435f, 0.088793158531189f, -0.284444957971573f, 0.088575109839439f, -0.284129470586777f, 0.088357307016850f, -0.283813834190369f, 0.088139742612839f, -0.283498018980026f, 0.087922424077988f, -0.283182054758072f, 0.087705351412296f, -0.282865911722183f, 0.087488517165184f, -0.282549589872360f, 0.087271921336651f, -0.282233119010925f, 0.087055571377277f, -0.281916469335556f, 0.086839467287064f, -0.281599670648575f, 0.086623609066010f, -0.281282693147659f, 0.086407989263535f, -0.280965566635132f, 0.086192607879639f, -0.280648261308670f, 0.085977479815483f, -0.280330777168274f, 0.085762590169907f, -0.280013144016266f, 0.085547938942909f, -0.279695361852646f, 0.085333541035652f, -0.279377400875092f, 0.085119381546974f, -0.279059261083603f, 0.084905467927456f, -0.278740972280502f, 0.084691800177097f, -0.278422504663467f, 0.084478378295898f, -0.278103888034821f, 0.084265194833279f, -0.277785122394562f, 0.084052257239819f, -0.277466177940369f, 0.083839565515518f, -0.277147054672241f, 0.083627119660378f, -0.276827782392502f, 0.083414919674397f, -0.276508361101151f, 0.083202958106995f, -0.276188760995865f, 0.082991249859333f, -0.275868982076645f, 0.082779780030251f, -0.275549083948135f, 0.082568563520908f, -0.275228977203369f, 0.082357585430145f, -0.274908751249313f, 0.082146860659122f, -0.274588316679001f, 0.081936374306679f, -0.274267762899399f, 0.081726133823395f, -0.273947030305862f, 0.081516146659851f, -0.273626148700714f, 0.081306397914886f, -0.273305088281631f, 0.081096902489662f, -0.272983878850937f, 0.080887645483017f, -0.272662490606308f, 0.080678641796112f, -0.272340953350067f, 0.080469883978367f, -0.272019267082214f, 0.080261372029781f, -0.271697402000427f, 0.080053105950356f, -0.271375387907028f, 0.079845085740089f, -0.271053224802017f, 0.079637311398983f, -0.270730882883072f, 0.079429790377617f, -0.270408391952515f, 0.079222507774830f, -0.270085722208023f, 0.079015478491783f, -0.269762933254242f, 0.078808702528477f, -0.269439965486526f, 0.078602164983749f, -0.269116818904877f, 0.078395880758762f, -0.268793523311615f, 0.078189842402935f, -0.268470078706741f, 0.077984049916267f, -0.268146485090256f, 0.077778510749340f, -0.267822742462158f, 0.077573217451572f, -0.267498821020126f, 0.077368170022964f, -0.267174720764160f, 0.077163375914097f, -0.266850501298904f, 0.076958827674389f, -0.266526103019714f, 0.076754532754421f, -0.266201555728912f, 0.076550483703613f, -0.265876859426498f, 0.076346680521965f, -0.265552014112473f, 0.076143130660057f, -0.265226989984512f, 0.075939826667309f, -0.264901816844940f, 0.075736775994301f, -0.264576494693756f, 0.075533971190453f, -0.264250993728638f, 0.075331419706345f, -0.263925373554230f, 0.075129114091396f, -0.263599574565887f, 0.074927061796188f, -0.263273626565933f, 0.074725262820721f, -0.262947499752045f, 0.074523709714413f, -0.262621253728867f, 0.074322402477264f, -0.262294828891754f, 0.074121348559856f, -0.261968284845352f, 0.073920547962189f, -0.261641561985016f, 0.073720000684261f, -0.261314690113068f, 0.073519699275494f, -0.260987639427185f, 0.073319651186466f, -0.260660469532013f, 0.073119848966599f, -0.260333120822906f, 0.072920300066471f, -0.260005623102188f, 0.072721004486084f, -0.259678006172180f, 0.072521962225437f, -0.259350210428238f, 0.072323165833950f, -0.259022265672684f, 0.072124622762203f, -0.258694142103195f, 0.071926333010197f, -0.258365899324417f, 0.071728296577930f, -0.258037507534027f, 0.071530513465405f, -0.257708936929703f, 0.071332976222038f, -0.257380217313766f, 0.071135692298412f, -0.257051378488541f, 0.070938661694527f, -0.256722360849380f, 0.070741884410381f, -0.256393194198608f, 0.070545360445976f, -0.256063878536224f, 0.070349089801311f, -0.255734413862228f, 0.070153072476387f, -0.255404800176620f, 0.069957308471203f, -0.255075037479401f, 0.069761790335178f, -0.254745125770569f, 0.069566532969475f, -0.254415065050125f, 0.069371521472931f, -0.254084855318069f, 0.069176770746708f, -0.253754496574402f, 0.068982265889645f, -0.253423988819122f, 0.068788021802902f, -0.253093332052231f, 0.068594031035900f, -0.252762526273727f, 0.068400286138058f, -0.252431541681290f, 0.068206802010536f, -0.252100437879562f, 0.068013571202755f, -0.251769185066223f, 0.067820593714714f, -0.251437783241272f, 0.067627869546413f, -0.251106232404709f, 0.067435398697853f, -0.250774532556534f, 0.067243188619614f, -0.250442683696747f, 0.067051224410534f, -0.250110685825348f, 0.066859520971775f, -0.249778553843498f, 0.066668070852757f, -0.249446272850037f, 0.066476874053478f, -0.249113827943802f, 0.066285938024521f, -0.248781248927116f, 0.066095255315304f, -0.248448520898819f, 0.065904818475246f, -0.248115643858910f, 0.065714649856091f, -0.247782632708550f, 0.065524727106094f, -0.247449472546577f, 0.065335065126419f, -0.247116148471832f, 0.065145656466484f, -0.246782705187798f, 0.064956501126289f, -0.246449097990990f, 0.064767606556416f, -0.246115356683731f, 0.064578965306282f, -0.245781451463699f, 0.064390584826469f, -0.245447427034378f, 0.064202457666397f, -0.245113238692284f, 0.064014583826065f, -0.244778916239738f, 0.063826970756054f, -0.244444444775581f, 0.063639611005783f, -0.244109839200974f, 0.063452512025833f, -0.243775084614754f, 0.063265666365623f, -0.243440181016922f, 0.063079081475735f, -0.243105143308640f, 0.062892749905586f, -0.242769956588745f, 0.062706671655178f, -0.242434620857239f, 0.062520854175091f, -0.242099151015282f, 0.062335297465324f, -0.241763532161713f, 0.062149997800589f, -0.241427779197693f, 0.061964951455593f, -0.241091892123222f, 0.061780165880919f, -0.240755841135979f, 0.061595637351274f, -0.240419670939446f, 0.061411365866661f, -0.240083336830139f, 0.061227355152369f, -0.239746883511543f, 0.061043601483107f, -0.239410281181335f, 0.060860104858875f, -0.239073529839516f, 0.060676865279675f, -0.238736644387245f, 0.060493886470795f, -0.238399609923363f, 0.060311164706945f, -0.238062441349030f, 0.060128703713417f, -0.237725138664246f, 0.059946499764919f, -0.237387686967850f, 0.059764556586742f, -0.237050101161003f, 0.059582870453596f, -0.236712381243706f, 0.059401445090771f, -0.236374512314796f, 0.059220276772976f, -0.236036509275436f, 0.059039369225502f, -0.235698372125626f, 0.058858718723059f, -0.235360085964203f, 0.058678328990936f, -0.235021665692329f, 0.058498200029135f, -0.234683111310005f, 0.058318331837654f, -0.234344407916069f, 0.058138720691204f, -0.234005570411682f, 0.057959370315075f, -0.233666598796844f, 0.057780280709267f, -0.233327493071556f, 0.057601451873779f, -0.232988253235817f, 0.057422880083323f, -0.232648864388466f, 0.057244572788477f, -0.232309341430664f, 0.057066522538662f, -0.231969684362412f, 0.056888736784458f, -0.231629893183708f, 0.056711208075285f, -0.231289967894554f, 0.056533940136433f, -0.230949893593788f, 0.056356932967901f, -0.230609700083733f, 0.056180190294981f, -0.230269357562065f, 0.056003704667091f, -0.229928880929947f, 0.055827483534813f, -0.229588270187378f, 0.055651523172855f, -0.229247525334358f, 0.055475823581219f, -0.228906646370888f, 0.055300384759903f, -0.228565633296967f, 0.055125206708908f, -0.228224486112595f, 0.054950293153524f, -0.227883204817772f, 0.054775636643171f, -0.227541789412498f, 0.054601248353720f, -0.227200239896774f, 0.054427117109299f, -0.226858556270599f, 0.054253250360489f, -0.226516738533974f, 0.054079644382000f, -0.226174786686897f, 0.053906302899122f, -0.225832715630531f, 0.053733222186565f, -0.225490495562553f, 0.053560405969620f, -0.225148141384125f, 0.053387850522995f, -0.224805667996407f, 0.053215555846691f, -0.224463045597076f, 0.053043525665998f, -0.224120303988457f, 0.052871759980917f, -0.223777428269386f, 0.052700258791447f, -0.223434418439865f, 0.052529018372297f, -0.223091274499893f, 0.052358038723469f, -0.222748011350632f, 0.052187327295542f, -0.222404599189758f, 0.052016876637936f, -0.222061067819595f, 0.051846686750650f, -0.221717402338982f, 0.051676765084267f, -0.221373617649078f, 0.051507104188204f, -0.221029683947563f, 0.051337707787752f, -0.220685631036758f, 0.051168579608202f, -0.220341444015503f, 0.050999708473682f, -0.219997137784958f, 0.050831105560064f, -0.219652697443962f, 0.050662767142057f, -0.219308122992516f, 0.050494693219662f, -0.218963414430618f, 0.050326880067587f, -0.218618586659431f, 0.050159335136414f, -0.218273624777794f, 0.049992054700851f, -0.217928543686867f, 0.049825038760900f, -0.217583328485489f, 0.049658283591270f, -0.217237979173660f, 0.049491796642542f, -0.216892510652542f, 0.049325577914715f, -0.216546908020973f, 0.049159619957209f, -0.216201186180115f, 0.048993926495314f, -0.215855330228806f, 0.048828501254320f, -0.215509355068207f, 0.048663340508938f, -0.215163245797157f, 0.048498444259167f, -0.214817002415657f, 0.048333816230297f, -0.214470639824867f, 0.048169452697039f, -0.214124158024788f, 0.048005353659391f, -0.213777542114258f, 0.047841522842646f, -0.213430806994438f, 0.047677956521511f, -0.213083937764168f, 0.047514654695988f, -0.212736949324608f, 0.047351621091366f, -0.212389841675758f, 0.047188851982355f, -0.212042599916458f, 0.047026351094246f, -0.211695238947868f, 0.046864114701748f, -0.211347743868828f, 0.046702146530151f, -0.211000129580498f, 0.046540446579456f, -0.210652396082878f, 0.046379011124372f, -0.210304543375969f, 0.046217843890190f, -0.209956556558609f, 0.046056941151619f, -0.209608450531960f, 0.045896306633949f, -0.209260210394859f, 0.045735940337181f, -0.208911851048470f, 0.045575842261314f, -0.208563387393951f, 0.045416008681059f, -0.208214774727821f, 0.045256443321705f, -0.207866057753563f, 0.045097146183252f, -0.207517206668854f, 0.044938117265701f, -0.207168251276016f, 0.044779352843761f, -0.206819161772728f, 0.044620860368013f, -0.206469938158989f, 0.044462632387877f, -0.206120610237122f, 0.044304672628641f, -0.205771163105965f, 0.044146984815598f, -0.205421581864357f, 0.043989561498165f, -0.205071896314621f, 0.043832406401634f, -0.204722076654434f, 0.043675523251295f, -0.204372137784958f, 0.043518904596567f, -0.204022079706192f, 0.043362557888031f, -0.203671902418137f, 0.043206475675106f, -0.203321605920792f, 0.043050665408373f, -0.202971190214157f, 0.042895123362541f, -0.202620655298233f, 0.042739849537611f, -0.202270001173019f, 0.042584843933582f, -0.201919227838516f, 0.042430106550455f, -0.201568335294724f, 0.042275641113520f, -0.201217323541641f, 0.042121443897486f, -0.200866192579269f, 0.041967518627644f, -0.200514942407608f, 0.041813857853413f, -0.200163587927818f, 0.041660469025373f, -0.199812099337578f, 0.041507352143526f, -0.199460506439209f, 0.041354499757290f, -0.199108779430389f, 0.041201923042536f, -0.198756948113441f, 0.041049610823393f, -0.198404997587204f, 0.040897574275732f, -0.198052927851677f, 0.040745802223682f, -0.197700738906860f, 0.040594302117825f, -0.197348430752754f, 0.040443073958158f, -0.196996018290520f, 0.040292114019394f, -0.196643486618996f, 0.040141426026821f, -0.196290835738182f, 0.039991009980440f, -0.195938065648079f, 0.039840862154961f, -0.195585191249847f, 0.039690986275673f, -0.195232197642326f, 0.039541378617287f, -0.194879084825516f, 0.039392042905092f, -0.194525867700577f, 0.039242979139090f, -0.194172516465187f, 0.039094187319279f, -0.193819075822830f, 0.038945667445660f, -0.193465501070023f, 0.038797415792942f, -0.193111822009087f, 0.038649436086416f, -0.192758023738861f, 0.038501728326082f, -0.192404121160507f, 0.038354292511940f, -0.192050099372864f, 0.038207128643990f, -0.191695958375931f, 0.038060232996941f, -0.191341713070869f, 0.037913613021374f, -0.190987363457680f, 0.037767261266708f, -0.190632879734039f, 0.037621185183525f, -0.190278306603432f, 0.037475381046534f, -0.189923599362373f, 0.037329845130444f, -0.189568802714348f, 0.037184584885836f, -0.189213871955872f, 0.037039596587420f, -0.188858851790428f, 0.036894880235195f, -0.188503712415695f, 0.036750435829163f, -0.188148453831673f, 0.036606263369322f, -0.187793090939522f, 0.036462362855673f, -0.187437608838081f, 0.036318738013506f, -0.187082037329674f, 0.036175385117531f, -0.186726331710815f, 0.036032304167747f, -0.186370536684990f, 0.035889495164156f, -0.186014622449875f, 0.035746958106756f, -0.185658603906631f, 0.035604696720839f, -0.185302466154099f, 0.035462711006403f, -0.184946224093437f, 0.035320993512869f, -0.184589877724648f, 0.035179551690817f, -0.184233412146568f, 0.035038381814957f, -0.183876842260361f, 0.034897487610579f, -0.183520168066025f, 0.034756865352392f, -0.183163389563560f, 0.034616518765688f, -0.182806491851807f, 0.034476444125175f, -0.182449504733086f, 0.034336645156145f, -0.182092398405075f, 0.034197118133307f, -0.181735187768936f, 0.034057866781950f, -0.181377857923508f, 0.033918887376785f, -0.181020438671112f, 0.033780183643103f, -0.180662900209427f, 0.033641755580902f, -0.180305257439613f, 0.033503599464893f, -0.179947525262833f, 0.033365719020367f, -0.179589673876762f, 0.033228114247322f, -0.179231703281403f, 0.033090781420469f, -0.178873643279076f, 0.032953724265099f, -0.178515478968620f, 0.032816942781210f, -0.178157210350037f, 0.032680433243513f, -0.177798837423325f, 0.032544203102589f, -0.177440345287323f, 0.032408244907856f, -0.177081763744354f, 0.032272562384605f, -0.176723077893257f, 0.032137155532837f, -0.176364272832870f, 0.032002024352551f, -0.176005378365517f, 0.031867165118456f, -0.175646379590034f, 0.031732585281134f, -0.175287276506424f, 0.031598277390003f, -0.174928069114685f, 0.031464248895645f, -0.174568757414818f, 0.031330492347479f, -0.174209341406822f, 0.031197015196085f, -0.173849821090698f, 0.031063811853528f, -0.173490211367607f, 0.030930884182453f, -0.173130482435226f, 0.030798232182860f, -0.172770664095879f, 0.030665857717395f, -0.172410741448402f, 0.030533758923411f, -0.172050714492798f, 0.030401935800910f, -0.171690583229065f, 0.030270388349891f, -0.171330362558365f, 0.030139118432999f, -0.170970037579536f, 0.030008124187589f, -0.170609608292580f, 0.029877405613661f, -0.170249074697495f, 0.029746964573860f, -0.169888436794281f, 0.029616801068187f, -0.169527709484100f, 0.029486913233995f, -0.169166877865791f, 0.029357301071286f, -0.168805956840515f, 0.029227968305349f, -0.168444931507111f, 0.029098909348249f, -0.168083801865578f, 0.028970129787922f, -0.167722567915916f, 0.028841627761722f, -0.167361244559288f, 0.028713401407003f, -0.166999831795692f, 0.028585452586412f, -0.166638299822807f, 0.028457781299949f, -0.166276678442955f, 0.028330387547612f, -0.165914967656136f, 0.028203271329403f, -0.165553152561188f, 0.028076432645321f, -0.165191248059273f, 0.027949871495366f, -0.164829224348068f, 0.027823587879539f, -0.164467126131058f, 0.027697581797838f, -0.164104923605919f, 0.027571853250265f, -0.163742616772652f, 0.027446404099464f, -0.163380220532417f, 0.027321230620146f, -0.163017734885216f, 0.027196336537600f, -0.162655144929886f, 0.027071721851826f, -0.162292465567589f, 0.026947384700179f, -0.161929681897163f, 0.026823325082660f, -0.161566808819771f, 0.026699542999268f, -0.161203846335411f, 0.026576040312648f, -0.160840779542923f, 0.026452817022800f, -0.160477623343468f, 0.026329871267080f, -0.160114362835884f, 0.026207204908133f, -0.159751012921333f, 0.026084816083312f, -0.159387573599815f, 0.025962706655264f, -0.159024044871330f, 0.025840876623988f, -0.158660411834717f, 0.025719324126840f, -0.158296689391136f, 0.025598052889109f, -0.157932877540588f, 0.025477059185505f, -0.157568961381912f, 0.025356344878674f, -0.157204970717430f, 0.025235909968615f, -0.156840875744820f, 0.025115754455328f, -0.156476691365242f, 0.024995878338814f, -0.156112402677536f, 0.024876279756427f, -0.155748039484024f, 0.024756962433457f, -0.155383571982384f, 0.024637924507260f, -0.155019029974937f, 0.024519165977836f, -0.154654383659363f, 0.024400688707829f, -0.154289647936821f, 0.024282488971949f, -0.153924822807312f, 0.024164570495486f, -0.153559908270836f, 0.024046931415796f, -0.153194904327393f, 0.023929571732879f, -0.152829796075821f, 0.023812493309379f, -0.152464613318443f, 0.023695694282651f, -0.152099341154099f, 0.023579176515341f, -0.151733979582787f, 0.023462938144803f, -0.151368513703346f, 0.023346979171038f, -0.151002973318100f, 0.023231301456690f, -0.150637343525887f, 0.023115905001760f, -0.150271624326706f, 0.023000787943602f, -0.149905815720558f, 0.022885952144861f, -0.149539917707443f, 0.022771397605538f, -0.149173930287361f, 0.022657122462988f, -0.148807853460312f, 0.022543128579855f, -0.148441687226295f, 0.022429415956140f, -0.148075446486473f, 0.022315984591842f, -0.147709101438522f, 0.022202832624316f, -0.147342681884766f, 0.022089963778853f, -0.146976172924042f, 0.021977374330163f, -0.146609574556351f, 0.021865066140890f, -0.146242901682854f, 0.021753041073680f, -0.145876124501228f, 0.021641295403242f, -0.145509272813797f, 0.021529832854867f, -0.145142331719399f, 0.021418649703264f, -0.144775316119194f, 0.021307749673724f, -0.144408211112022f, 0.021197130903602f, -0.144041016697884f, 0.021086793392897f, -0.143673732876778f, 0.020976737141609f, -0.143306359648705f, 0.020866964012384f, -0.142938911914825f, 0.020757472142577f, -0.142571389675140f, 0.020648263394833f, -0.142203763127327f, 0.020539334043860f, -0.141836062073708f, 0.020430689677596f, -0.141468286514282f, 0.020322324708104f, -0.141100421547890f, 0.020214242860675f, -0.140732467174530f, 0.020106444135308f, -0.140364438295364f, 0.019998926669359f, -0.139996320009232f, 0.019891692325473f, -0.139628127217293f, 0.019784741103649f, -0.139259845018387f, 0.019678071141243f, -0.138891488313675f, 0.019571684300900f, -0.138523042201996f, 0.019465578719974f, -0.138154521584511f, 0.019359756261110f, -0.137785911560059f, 0.019254218786955f, -0.137417227029800f, 0.019148962572217f, -0.137048453092575f, 0.019043987616897f, -0.136679604649544f, 0.018939297646284f, -0.136310681700706f, 0.018834890797734f, -0.135941669344902f, 0.018730765208602f, -0.135572582483292f, 0.018626924604177f, -0.135203406214714f, 0.018523367121816f, -0.134834155440331f, 0.018420090898871f, -0.134464830160141f, 0.018317099660635f, -0.134095430374146f, 0.018214391544461f, -0.133725941181183f, 0.018111966550350f, -0.133356377482414f, 0.018009826540947f, -0.132986739277840f, 0.017907967790961f, -0.132617011666298f, 0.017806394025683f, -0.132247209548950f, 0.017705103382468f, -0.131877332925797f, 0.017604095861316f, -0.131507381796837f, 0.017503373324871f, -0.131137356162071f, 0.017402933910489f, -0.130767241120338f, 0.017302779480815f, -0.130397051572800f, 0.017202908173203f, -0.130026802420616f, 0.017103319987655f, -0.129656463861465f, 0.017004016786814f, -0.129286035895348f, 0.016904998570681f, -0.128915548324585f, 0.016806263476610f, -0.128544986248016f, 0.016707813367248f, -0.128174334764481f, 0.016609646379948f, -0.127803623676300f, 0.016511764377356f, -0.127432823181152f, 0.016414167359471f, -0.127061963081360f, 0.016316853463650f, -0.126691013574600f, 0.016219824552536f, -0.126320004463196f, 0.016123080626130f, -0.125948905944824f, 0.016026621684432f, -0.125577747821808f, 0.015930447727442f, -0.125206500291824f, 0.015834558755159f, -0.124835193157196f, 0.015738952904940f, -0.124463804066181f, 0.015643632039428f, -0.124092340469360f, 0.015548598021269f, -0.123720809817314f, 0.015453847125173f, -0.123349204659462f, 0.015359382145107f, -0.122977524995804f, 0.015265202149749f, -0.122605770826340f, 0.015171307139099f, -0.122233949601650f, 0.015077698044479f, -0.121862053871155f, 0.014984373003244f, -0.121490091085434f, 0.014891333878040f, -0.121118053793907f, 0.014798580668867f, -0.120745941996574f, 0.014706112444401f, -0.120373763144016f, 0.014613929204643f, -0.120001509785652f, 0.014522032812238f, -0.119629189372063f, 0.014430420473218f, -0.119256794452667f, 0.014339094981551f, -0.118884332478046f, 0.014248054474592f, -0.118511803448200f, 0.014157299883664f, -0.118139199912548f, 0.014066831208766f, -0.117766529321671f, 0.013976648449898f, -0.117393791675568f, 0.013886751607060f, -0.117020979523659f, 0.013797140680254f, -0.116648100316525f, 0.013707815669477f, -0.116275154054165f, 0.013618776574731f, -0.115902140736580f, 0.013530024327338f, -0.115529052913189f, 0.013441557064652f, -0.115155905485153f, 0.013353376649320f, -0.114782683551311f, 0.013265483081341f, -0.114409394562244f, 0.013177875429392f, -0.114036038517952f, 0.013090553693473f, -0.113662622869015f, 0.013003518804908f, -0.113289132714272f, 0.012916770763695f, -0.112915575504303f, 0.012830308638513f, -0.112541958689690f, 0.012744133360684f, -0.112168267369270f, 0.012658244930208f, -0.111794516444206f, 0.012572642415762f, -0.111420698463917f, 0.012487327679992f, -0.111046813428402f, 0.012402298860252f, -0.110672861337662f, 0.012317557819188f, -0.110298842191696f, 0.012233102694154f, -0.109924763441086f, 0.012148935347795f, -0.109550617635250f, 0.012065053917468f, -0.109176412224770f, 0.011981460265815f, -0.108802139759064f, 0.011898153461516f, -0.108427800238132f, 0.011815134435892f, -0.108053401112556f, 0.011732402257621f, -0.107678934931755f, 0.011649956926703f, -0.107304409146309f, 0.011567799374461f, -0.106929816305637f, 0.011485928669572f, -0.106555156409740f, 0.011404345743358f, -0.106180444359779f, 0.011323049664497f, -0.105805665254593f, 0.011242041364312f, -0.105430819094181f, 0.011161320842803f, -0.105055920779705f, 0.011080888099968f, -0.104680955410004f, 0.011000742204487f, -0.104305922985077f, 0.010920885019004f, -0.103930838406086f, 0.010841314680874f, -0.103555686771870f, 0.010762032121420f, -0.103180475533009f, 0.010683037340641f, -0.102805204689503f, 0.010604331269860f, -0.102429874241352f, 0.010525912046432f, -0.102054484188557f, 0.010447781533003f, -0.101679034531116f, 0.010369938798249f, -0.101303517818451f, 0.010292383842170f, -0.100927948951721f, 0.010215117596090f, -0.100552320480347f, 0.010138138197362f, -0.100176624953747f, 0.010061448439956f, -0.099800877273083f, 0.009985045529902f, -0.099425069987774f, 0.009908932261169f, -0.099049203097820f, 0.009833106771111f, -0.098673284053802f, 0.009757569059730f, -0.098297297954559f, 0.009682320058346f, -0.097921259701252f, 0.009607359766960f, -0.097545161843300f, 0.009532688185573f, -0.097169004380703f, 0.009458304382861f, -0.096792794764042f, 0.009384209290147f, -0.096416525542736f, 0.009310402907431f, -0.096040196716785f, 0.009236886166036f, -0.095663815736771f, 0.009163657203317f, -0.095287375152111f, 0.009090716950595f, -0.094910882413387f, 0.009018065407872f, -0.094534330070019f, 0.008945702575147f, -0.094157725572586f, 0.008873629383743f, -0.093781061470509f, 0.008801844902337f, -0.093404345214367f, 0.008730349130929f, -0.093027576804161f, 0.008659142069519f, -0.092650748789310f, 0.008588224649429f, -0.092273868620396f, 0.008517595939338f, -0.091896936297417f, 0.008447255939245f, -0.091519944369793f, 0.008377205580473f, -0.091142900288105f, 0.008307444863021f, -0.090765804052353f, 0.008237972855568f, -0.090388655662537f, 0.008168790489435f, -0.090011447668076f, 0.008099896833301f, -0.089634194970131f, 0.008031292818487f, -0.089256882667542f, 0.007962978444993f, -0.088879525661469f, 0.007894953712821f, -0.088502109050751f, 0.007827218621969f, -0.088124647736549f, 0.007759772241116f, -0.087747126817703f, 0.007692615967244f, -0.087369553744793f, 0.007625748869032f, -0.086991935968399f, 0.007559171877801f, -0.086614266037941f, 0.007492884527892f, -0.086236543953419f, 0.007426886819303f, -0.085858769714832f, 0.007361178752035f, -0.085480943322182f, 0.007295760791749f, -0.085103072226048f, 0.007230632472783f, -0.084725148975849f, 0.007165793795139f, -0.084347173571587f, 0.007101245224476f, -0.083969146013260f, 0.007036986760795f, -0.083591073751450f, 0.006973018404096f, -0.083212949335575f, 0.006909339688718f, -0.082834780216217f, 0.006845951545984f, -0.082456558942795f, 0.006782853044569f, -0.082078292965889f, 0.006720044650137f, -0.081699974834919f, 0.006657526828349f, -0.081321612000465f, 0.006595299113542f, -0.080943197011948f, 0.006533361505717f, -0.080564737319946f, 0.006471714470536f, -0.080186225473881f, 0.006410357542336f, -0.079807676374912f, 0.006349290721118f, -0.079429075121880f, 0.006288514938205f, -0.079050421714783f, 0.006228029262275f, -0.078671731054783f, 0.006167833693326f, -0.078292988240719f, 0.006107929162681f, -0.077914200723171f, 0.006048315204680f, -0.077535368502140f, 0.005988991353661f, -0.077156484127045f, 0.005929958540946f, -0.076777562499046f, 0.005871216300875f, -0.076398596167564f, 0.005812764633447f, -0.076019577682018f, 0.005754603538662f, -0.075640521943569f, 0.005696733482182f, -0.075261414051056f, 0.005639153998345f, -0.074882268905640f, 0.005581865552813f, -0.074503071606159f, 0.005524867679924f, -0.074123837053776f, 0.005468160845339f, -0.073744557797909f, 0.005411745049059f, -0.073365233838558f, 0.005355620291084f, -0.072985872626305f, 0.005299786105752f, -0.072606459259987f, 0.005244242958724f, -0.072227008640766f, 0.005188991315663f, -0.071847513318062f, 0.005134030245245f, -0.071467980742455f, 0.005079360678792f, -0.071088403463364f, 0.005024982150644f, -0.070708781480789f, 0.004970894660801f, -0.070329122245312f, 0.004917098674923f, -0.069949418306351f, 0.004863593727350f, -0.069569669663906f, 0.004810380283743f, -0.069189883768559f, 0.004757457878441f, -0.068810060620308f, 0.004704826977104f, -0.068430192768574f, 0.004652487114072f, -0.068050287663937f, 0.004600439220667f, -0.067670337855816f, 0.004548682365566f, -0.067290350794792f, 0.004497217014432f, -0.066910326480865f, 0.004446043167263f, -0.066530264914036f, 0.004395160824060f, -0.066150158643723f, 0.004344569984823f, -0.065770015120506f, 0.004294271115214f, -0.065389834344387f, 0.004244263283908f, -0.065009608864784f, 0.004194547422230f, -0.064629353582859f, 0.004145123064518f, -0.064249053597450f, 0.004095990676433f, -0.063868723809719f, 0.004047149792314f, -0.063488349318504f, 0.003998600877821f, -0.063107937574387f, 0.003950343467295f, -0.062727488577366f, 0.003902378026396f, -0.062347009778023f, 0.003854704322293f, -0.061966486275196f, 0.003807322587818f, -0.061585929244757f, 0.003760232590139f, -0.061205338686705f, 0.003713434794918f, -0.060824707150459f, 0.003666928736493f, -0.060444042086601f, 0.003620714880526f, -0.060063343495131f, 0.003574792761356f, -0.059682607650757f, 0.003529162844643f, -0.059301838278770f, 0.003483824897557f, -0.058921031653881f, 0.003438779152930f, -0.058540191501379f, 0.003394025377929f, -0.058159314095974f, 0.003349563805386f, -0.057778406888247f, 0.003305394435301f, -0.057397462427616f, 0.003261517267674f, -0.057016488164663f, 0.003217932302505f, -0.056635476648808f, 0.003174639539793f, -0.056254431605339f, 0.003131638979539f, -0.055873356759548f, 0.003088930854574f, -0.055492244660854f, 0.003046514932066f, -0.055111102759838f, 0.003004391444847f, -0.054729927331209f, 0.002962560392916f, -0.054348722100258f, 0.002921021543443f, -0.053967483341694f, 0.002879775362089f, -0.053586211055517f, 0.002838821383193f, -0.053204908967018f, 0.002798160072416f, -0.052823577076197f, 0.002757790964097f, -0.052442211657763f, 0.002717714523897f, -0.052060816437006f, 0.002677930751815f, -0.051679391413927f, 0.002638439415023f, -0.051297932863235f, 0.002599240746349f, -0.050916448235512f, 0.002560334512964f, -0.050534930080175f, 0.002521721180528f, -0.050153385847807f, 0.002483400283381f, -0.049771808087826f, 0.002445372054353f, -0.049390204250813f, 0.002407636726275f, -0.049008570611477f, 0.002370193833485f, -0.048626907169819f, 0.002333043841645f, -0.048245213925838f, 0.002296186750755f, -0.047863494604826f, 0.002259622327983f, -0.047481749206781f, 0.002223350573331f, -0.047099970281124f, 0.002187371719629f, -0.046718169003725f, 0.002151685766876f, -0.046336337924004f, 0.002116292715073f, -0.045954477041960f, 0.002081192564219f, -0.045572593808174f, 0.002046385314316f, -0.045190680772066f, 0.002011870965362f, -0.044808741658926f, 0.001977649517357f, -0.044426776468754f, 0.001943721086718f, -0.044044785201550f, 0.001910085673444f, -0.043662767857313f, 0.001876743277535f, -0.043280724436045f, 0.001843693898991f, -0.042898654937744f, 0.001810937537812f, -0.042516563087702f, 0.001778474310413f, -0.042134445160627f, 0.001746304216795f, -0.041752301156521f, 0.001714427140541f, -0.041370131075382f, 0.001682843198068f, -0.040987938642502f, 0.001651552389376f, -0.040605723857880f, 0.001620554830879f, -0.040223482996225f, 0.001589850406162f, -0.039841219782829f, 0.001559439115226f, -0.039458930492401f, 0.001529321074486f, -0.039076622575521f, 0.001499496400356f, -0.038694288581610f, 0.001469964860007f, -0.038311932235956f, 0.001440726569854f, -0.037929553538561f, 0.001411781646311f, -0.037547148764133f, 0.001383129972965f, -0.037164725363255f, 0.001354771666229f, -0.036782283335924f, 0.001326706726104f, -0.036399815231562f, 0.001298935036175f, -0.036017324775457f, 0.001271456829272f, -0.035634815692902f, 0.001244271872565f, -0.035252287983894f, 0.001217380515300f, -0.034869734197855f, 0.001190782408230f, -0.034487165510654f, 0.001164477784187f, -0.034104570746422f, 0.001138466643170f, -0.033721961081028f, 0.001112748985179f, -0.033339329063892f, 0.001087324810214f, -0.032956674695015f, 0.001062194118276f, -0.032574005424976f, 0.001037356909364f, -0.032191313803196f, 0.001012813183479f, -0.031808607280254f, 0.000988563057035f, -0.031425878405571f, 0.000964606530033f, -0.031043132767081f, 0.000940943544265f, -0.030660368502140f, 0.000917574157938f, -0.030277585610747f, 0.000894498312846f, -0.029894785955548f, 0.000871716125403f, -0.029511967673898f, 0.000849227537401f, -0.029129132628441f, 0.000827032607049f, -0.028746278956532f, 0.000805131276138f, -0.028363410383463f, 0.000783523661084f, -0.027980525046587f, 0.000762209703680f, -0.027597622945905f, 0.000741189462133f, -0.027214704081416f, 0.000720462878235f, -0.026831768453121f, 0.000700030010194f, -0.026448817923665f, 0.000679890916217f, -0.026065852493048f, 0.000660045538098f, -0.025682870298624f, 0.000640493875835f, -0.025299875065684f, 0.000621235987637f, -0.024916863068938f, 0.000602271873504f, -0.024533838033676f, 0.000583601591643f, -0.024150796234608f, 0.000565225025639f, -0.023767741397023f, 0.000547142291907f, -0.023384673520923f, 0.000529353390448f, -0.023001590743661f, 0.000511858321261f, -0.022618494927883f, 0.000494657084346f, -0.022235386073589f, 0.000477749679703f, -0.021852264180779f, 0.000461136136437f, -0.021469129249454f, 0.000444816454547f, -0.021085981279612f, 0.000428790634032f, -0.020702820271254f, 0.000413058703998f, -0.020319648087025f, 0.000397620693548f, -0.019936462864280f, 0.000382476573577f, -0.019553268328309f, 0.000367626344087f, -0.019170060753822f, 0.000353070063284f, -0.018786842003465f, 0.000338807702065f, -0.018403612077236f, 0.000324839289533f, -0.018020370975137f, 0.000311164796585f, -0.017637118697166f, 0.000297784281429f, -0.017253857105970f, 0.000284697714960f, -0.016870586201549f, 0.000271905126283f, -0.016487304121256f, 0.000259406515397f, -0.016104012727737f, 0.000247201882303f, -0.015720712020993f, 0.000235291256104f, -0.015337402001023f, 0.000223674607696f, -0.014954082667828f, 0.000212351980736f, -0.014570754021406f, 0.000201323360670f, -0.014187417924404f, 0.000190588747500f, -0.013804072514176f, 0.000180148170330f, -0.013420719653368f, 0.000170001629158f, -0.013037359341979f, 0.000160149123985f, -0.012653990648687f, 0.000150590654812f, -0.012270614504814f, 0.000141326236189f, -0.011887230910361f, 0.000132355868118f, -0.011503840796649f, 0.000123679565149f, -0.011120444163680f, 0.000115297327284f, -0.010737040080130f, 0.000107209154521f, -0.010353630408645f, 0.000099415054137f, -0.009970214217901f, 0.000091915040684f, -0.009586792439222f, 0.000084709099610f, -0.009203365072608f, 0.000077797252743f, -0.008819932118058f, 0.000071179500083f, -0.008436493575573f, 0.000064855834353f, -0.008053051307797f, 0.000058826273744f, -0.007669602986425f, 0.000053090810979f, -0.007286150939763f, 0.000047649456974f, -0.006902694236487f, 0.000042502211727f, -0.006519233807921f, 0.000037649078877f, -0.006135769188404f, 0.000033090062061f, -0.005752300843596f, 0.000028825161280f, -0.005368829704821f, 0.000024854381991f, -0.004985354840755f, 0.000021177724193f, -0.004601877182722f, 0.000017795191525f, -0.004218397196382f, 0.000014706784896f, -0.003834914416075f, 0.000011912506125f, -0.003451429307461f, 0.000009412358850f, -0.003067942336202f, 0.000007206342616f, -0.002684453502297f, 0.000005294459243f, -0.002300963038579f, 0.000003676709639f, -0.001917471294291f, 0.000002353095169f, -0.001533978385851f, 0.000001323616516f, -0.001150484546088f, 0.000000588274133f, -0.000766990066040f, 0.000000147068562f, -0.000383495149435f, 0.000000000000000f, -0.000000000000023f, 0.000000147068562f, 0.000383495149435f, 0.000000588274133f, 0.000766990066040f, 0.000001323616516f, 0.001150484546088f, 0.000002353095169f, 0.001533978385851f, 0.000003676709639f, 0.001917471294291f, 0.000005294459243f, 0.002300963038579f, 0.000007206342616f, 0.002684453502297f, 0.000009412358850f, 0.003067942336202f, 0.000011912506125f, 0.003451429307461f, 0.000014706784896f, 0.003834914416075f, 0.000017795191525f, 0.004218397196382f, 0.000021177724193f, 0.004601877182722f, 0.000024854381991f, 0.004985354840755f, 0.000028825161280f, 0.005368829704821f, 0.000033090062061f, 0.005752300843596f, 0.000037649078877f, 0.006135769188404f, 0.000042502211727f, 0.006519233807921f, 0.000047649456974f, 0.006902694236487f, 0.000053090810979f, 0.007286150939763f, 0.000058826273744f, 0.007669602986425f, 0.000064855834353f, 0.008053051307797f, 0.000071179500083f, 0.008436493575573f, 0.000077797252743f, 0.008819932118058f, 0.000084709099610f, 0.009203365072608f, 0.000091915040684f, 0.009586792439222f, 0.000099415054137f, 0.009970214217901f, 0.000107209154521f, 0.010353630408645f, 0.000115297327284f, 0.010737040080130f, 0.000123679565149f, 0.011120444163680f, 0.000132355868118f, 0.011503840796649f, 0.000141326236189f, 0.011887230910361f, 0.000150590654812f, 0.012270614504814f, 0.000160149123985f, 0.012653990648687f, 0.000170001629158f, 0.013037359341979f, 0.000180148170330f, 0.013420719653368f, 0.000190588747500f, 0.013804072514176f, 0.000201323360670f, 0.014187417924404f, 0.000212351980736f, 0.014570754021406f, 0.000223674607696f, 0.014954082667828f, 0.000235291256104f, 0.015337402001023f, 0.000247201882303f, 0.015720712020993f, 0.000259406515397f, 0.016104012727737f, 0.000271905126283f, 0.016487304121256f, 0.000284697714960f, 0.016870586201549f, 0.000297784281429f, 0.017253857105970f, 0.000311164796585f, 0.017637118697166f, 0.000324839289533f, 0.018020370975137f, 0.000338807702065f, 0.018403612077236f, 0.000353070063284f, 0.018786842003465f, 0.000367626344087f, 0.019170060753822f, 0.000382476573577f, 0.019553268328309f, 0.000397620693548f, 0.019936462864280f, 0.000413058703998f, 0.020319648087025f, 0.000428790634032f, 0.020702820271254f, 0.000444816454547f, 0.021085981279612f, 0.000461136136437f, 0.021469129249454f, 0.000477749679703f, 0.021852264180779f, 0.000494657084346f, 0.022235386073589f, 0.000511858321261f, 0.022618494927883f, 0.000529353390448f, 0.023001590743661f, 0.000547142291907f, 0.023384673520923f, 0.000565225025639f, 0.023767741397023f, 0.000583601591643f, 0.024150796234608f, 0.000602271873504f, 0.024533838033676f, 0.000621235987637f, 0.024916863068938f, 0.000640493875835f, 0.025299875065684f, 0.000660045538098f, 0.025682870298624f, 0.000679890916217f, 0.026065852493048f, 0.000700030010194f, 0.026448817923665f, 0.000720462878235f, 0.026831768453121f, 0.000741189462133f, 0.027214704081416f, 0.000762209703680f, 0.027597622945905f, 0.000783523661084f, 0.027980525046587f, 0.000805131276138f, 0.028363410383463f, 0.000827032607049f, 0.028746278956532f, 0.000849227537401f, 0.029129132628441f, 0.000871716125403f, 0.029511967673898f, 0.000894498312846f, 0.029894785955548f, 0.000917574157938f, 0.030277585610747f, 0.000940943544265f, 0.030660368502140f, 0.000964606530033f, 0.031043132767081f, 0.000988563057035f, 0.031425878405571f, 0.001012813183479f, 0.031808607280254f, 0.001037356909364f, 0.032191313803196f, 0.001062194118276f, 0.032574005424976f, 0.001087324810214f, 0.032956674695015f, 0.001112748985179f, 0.033339329063892f, 0.001138466643170f, 0.033721961081028f, 0.001164477784187f, 0.034104570746422f, 0.001190782408230f, 0.034487165510654f, 0.001217380515300f, 0.034869734197855f, 0.001244271872565f, 0.035252287983894f, 0.001271456829272f, 0.035634815692902f, 0.001298935036175f, 0.036017324775457f, 0.001326706726104f, 0.036399815231562f, 0.001354771666229f, 0.036782283335924f, 0.001383129972965f, 0.037164725363255f, 0.001411781646311f, 0.037547148764133f, 0.001440726569854f, 0.037929553538561f, 0.001469964860007f, 0.038311932235956f, 0.001499496400356f, 0.038694288581610f, 0.001529321074486f, 0.039076622575521f, 0.001559439115226f, 0.039458930492401f, 0.001589850406162f, 0.039841219782829f, 0.001620554830879f, 0.040223482996225f, 0.001651552389376f, 0.040605723857880f, 0.001682843198068f, 0.040987938642502f, 0.001714427140541f, 0.041370131075382f, 0.001746304216795f, 0.041752301156521f, 0.001778474310413f, 0.042134445160627f, 0.001810937537812f, 0.042516563087702f, 0.001843693898991f, 0.042898654937744f, 0.001876743277535f, 0.043280724436045f, 0.001910085673444f, 0.043662767857313f, 0.001943721086718f, 0.044044785201550f, 0.001977649517357f, 0.044426776468754f, 0.002011870965362f, 0.044808741658926f, 0.002046385314316f, 0.045190680772066f, 0.002081192564219f, 0.045572593808174f, 0.002116292715073f, 0.045954477041960f, 0.002151685766876f, 0.046336337924004f, 0.002187371719629f, 0.046718169003725f, 0.002223350573331f, 0.047099970281124f, 0.002259622327983f, 0.047481749206781f, 0.002296186750755f, 0.047863494604826f, 0.002333043841645f, 0.048245213925838f, 0.002370193833485f, 0.048626907169819f, 0.002407636726275f, 0.049008570611477f, 0.002445372054353f, 0.049390204250813f, 0.002483400283381f, 0.049771808087826f, 0.002521721180528f, 0.050153385847807f, 0.002560334512964f, 0.050534930080175f, 0.002599240746349f, 0.050916448235512f, 0.002638439415023f, 0.051297932863235f, 0.002677930751815f, 0.051679391413927f, 0.002717714523897f, 0.052060816437006f, 0.002757790964097f, 0.052442211657763f, 0.002798160072416f, 0.052823577076197f, 0.002838821383193f, 0.053204908967018f, 0.002879775362089f, 0.053586211055517f, 0.002921021543443f, 0.053967483341694f, 0.002962560392916f, 0.054348722100258f, 0.003004391444847f, 0.054729927331209f, 0.003046514932066f, 0.055111102759838f, 0.003088930854574f, 0.055492244660854f, 0.003131638979539f, 0.055873356759548f, 0.003174639539793f, 0.056254431605339f, 0.003217932302505f, 0.056635476648808f, 0.003261517267674f, 0.057016488164663f, 0.003305394435301f, 0.057397462427616f, 0.003349563805386f, 0.057778406888247f, 0.003394025377929f, 0.058159314095974f, 0.003438779152930f, 0.058540191501379f, 0.003483824897557f, 0.058921031653881f, 0.003529162844643f, 0.059301838278770f, 0.003574792761356f, 0.059682607650757f, 0.003620714880526f, 0.060063343495131f, 0.003666928736493f, 0.060444042086601f, 0.003713434794918f, 0.060824707150459f, 0.003760232590139f, 0.061205338686705f, 0.003807322587818f, 0.061585929244757f, 0.003854704322293f, 0.061966486275196f, 0.003902378026396f, 0.062347009778023f, 0.003950343467295f, 0.062727488577366f, 0.003998600877821f, 0.063107937574387f, 0.004047149792314f, 0.063488349318504f, 0.004095990676433f, 0.063868723809719f, 0.004145123064518f, 0.064249053597450f, 0.004194547422230f, 0.064629353582859f, 0.004244263283908f, 0.065009608864784f, 0.004294271115214f, 0.065389834344387f, 0.004344569984823f, 0.065770015120506f, 0.004395160824060f, 0.066150158643723f, 0.004446043167263f, 0.066530264914036f, 0.004497217014432f, 0.066910326480865f, 0.004548682365566f, 0.067290350794792f, 0.004600439220667f, 0.067670337855816f, 0.004652487114072f, 0.068050287663937f, 0.004704826977104f, 0.068430192768574f, 0.004757457878441f, 0.068810060620308f, 0.004810380283743f, 0.069189883768559f, 0.004863593727350f, 0.069569669663906f, 0.004917098674923f, 0.069949418306351f, 0.004970894660801f, 0.070329122245312f, 0.005024982150644f, 0.070708781480789f, 0.005079360678792f, 0.071088403463364f, 0.005134030245245f, 0.071467980742455f, 0.005188991315663f, 0.071847513318062f, 0.005244242958724f, 0.072227008640766f, 0.005299786105752f, 0.072606459259987f, 0.005355620291084f, 0.072985872626305f, 0.005411745049059f, 0.073365233838558f, 0.005468160845339f, 0.073744557797909f, 0.005524867679924f, 0.074123837053776f, 0.005581865552813f, 0.074503071606159f, 0.005639153998345f, 0.074882268905640f, 0.005696733482182f, 0.075261414051056f, 0.005754603538662f, 0.075640521943569f, 0.005812764633447f, 0.076019577682018f, 0.005871216300875f, 0.076398596167564f, 0.005929958540946f, 0.076777562499046f, 0.005988991353661f, 0.077156484127045f, 0.006048315204680f, 0.077535368502140f, 0.006107929162681f, 0.077914200723171f, 0.006167833693326f, 0.078292988240719f, 0.006228029262275f, 0.078671731054783f, 0.006288514938205f, 0.079050421714783f, 0.006349290721118f, 0.079429075121880f, 0.006410357542336f, 0.079807676374912f, 0.006471714470536f, 0.080186225473881f, 0.006533361505717f, 0.080564737319946f, 0.006595299113542f, 0.080943197011948f, 0.006657526828349f, 0.081321612000465f, 0.006720044650137f, 0.081699974834919f, 0.006782853044569f, 0.082078292965889f, 0.006845951545984f, 0.082456558942795f, 0.006909339688718f, 0.082834780216217f, 0.006973018404096f, 0.083212949335575f, 0.007036986760795f, 0.083591073751450f, 0.007101245224476f, 0.083969146013260f, 0.007165793795139f, 0.084347173571587f, 0.007230632472783f, 0.084725148975849f, 0.007295760791749f, 0.085103072226048f, 0.007361178752035f, 0.085480943322182f, 0.007426886819303f, 0.085858769714832f, 0.007492884527892f, 0.086236543953419f, 0.007559171877801f, 0.086614266037941f, 0.007625748869032f, 0.086991935968399f, 0.007692615967244f, 0.087369553744793f, 0.007759772241116f, 0.087747126817703f, 0.007827218621969f, 0.088124647736549f, 0.007894953712821f, 0.088502109050751f, 0.007962978444993f, 0.088879525661469f, 0.008031292818487f, 0.089256882667542f, 0.008099896833301f, 0.089634194970131f, 0.008168790489435f, 0.090011447668076f, 0.008237972855568f, 0.090388655662537f, 0.008307444863021f, 0.090765804052353f, 0.008377205580473f, 0.091142900288105f, 0.008447255939245f, 0.091519944369793f, 0.008517595939338f, 0.091896936297417f, 0.008588224649429f, 0.092273868620396f, 0.008659142069519f, 0.092650748789310f, 0.008730349130929f, 0.093027576804161f, 0.008801844902337f, 0.093404345214367f, 0.008873629383743f, 0.093781061470509f, 0.008945702575147f, 0.094157725572586f, 0.009018065407872f, 0.094534330070019f, 0.009090716950595f, 0.094910882413387f, 0.009163657203317f, 0.095287375152111f, 0.009236886166036f, 0.095663815736771f, 0.009310402907431f, 0.096040196716785f, 0.009384209290147f, 0.096416525542736f, 0.009458304382861f, 0.096792794764042f, 0.009532688185573f, 0.097169004380703f, 0.009607359766960f, 0.097545161843300f, 0.009682320058346f, 0.097921259701252f, 0.009757569059730f, 0.098297297954559f, 0.009833106771111f, 0.098673284053802f, 0.009908932261169f, 0.099049203097820f, 0.009985045529902f, 0.099425069987774f, 0.010061448439956f, 0.099800877273083f, 0.010138138197362f, 0.100176624953747f, 0.010215117596090f, 0.100552320480347f, 0.010292383842170f, 0.100927948951721f, 0.010369938798249f, 0.101303517818451f, 0.010447781533003f, 0.101679034531116f, 0.010525912046432f, 0.102054484188557f, 0.010604331269860f, 0.102429874241352f, 0.010683037340641f, 0.102805204689503f, 0.010762032121420f, 0.103180475533009f, 0.010841314680874f, 0.103555686771870f, 0.010920885019004f, 0.103930838406086f, 0.011000742204487f, 0.104305922985077f, 0.011080888099968f, 0.104680955410004f, 0.011161320842803f, 0.105055920779705f, 0.011242041364312f, 0.105430819094181f, 0.011323049664497f, 0.105805665254593f, 0.011404345743358f, 0.106180444359779f, 0.011485928669572f, 0.106555156409740f, 0.011567799374461f, 0.106929816305637f, 0.011649956926703f, 0.107304409146309f, 0.011732402257621f, 0.107678934931755f, 0.011815134435892f, 0.108053401112556f, 0.011898153461516f, 0.108427800238132f, 0.011981460265815f, 0.108802139759064f, 0.012065053917468f, 0.109176412224770f, 0.012148935347795f, 0.109550617635250f, 0.012233102694154f, 0.109924763441086f, 0.012317557819188f, 0.110298842191696f, 0.012402298860252f, 0.110672861337662f, 0.012487327679992f, 0.111046813428402f, 0.012572642415762f, 0.111420698463917f, 0.012658244930208f, 0.111794516444206f, 0.012744133360684f, 0.112168267369270f, 0.012830308638513f, 0.112541958689690f, 0.012916770763695f, 0.112915575504303f, 0.013003518804908f, 0.113289132714272f, 0.013090553693473f, 0.113662622869015f, 0.013177875429392f, 0.114036038517952f, 0.013265483081341f, 0.114409394562244f, 0.013353376649320f, 0.114782683551311f, 0.013441557064652f, 0.115155905485153f, 0.013530024327338f, 0.115529052913189f, 0.013618776574731f, 0.115902140736580f, 0.013707815669477f, 0.116275154054165f, 0.013797140680254f, 0.116648100316525f, 0.013886751607060f, 0.117020979523659f, 0.013976648449898f, 0.117393791675568f, 0.014066831208766f, 0.117766529321671f, 0.014157299883664f, 0.118139199912548f, 0.014248054474592f, 0.118511803448200f, 0.014339094981551f, 0.118884332478046f, 0.014430420473218f, 0.119256794452667f, 0.014522032812238f, 0.119629189372063f, 0.014613929204643f, 0.120001509785652f, 0.014706112444401f, 0.120373763144016f, 0.014798580668867f, 0.120745941996574f, 0.014891333878040f, 0.121118053793907f, 0.014984373003244f, 0.121490091085434f, 0.015077698044479f, 0.121862053871155f, 0.015171307139099f, 0.122233949601650f, 0.015265202149749f, 0.122605770826340f, 0.015359382145107f, 0.122977524995804f, 0.015453847125173f, 0.123349204659462f, 0.015548598021269f, 0.123720809817314f, 0.015643632039428f, 0.124092340469360f, 0.015738952904940f, 0.124463804066181f, 0.015834558755159f, 0.124835193157196f, 0.015930447727442f, 0.125206500291824f, 0.016026621684432f, 0.125577747821808f, 0.016123080626130f, 0.125948905944824f, 0.016219824552536f, 0.126320004463196f, 0.016316853463650f, 0.126691013574600f, 0.016414167359471f, 0.127061963081360f, 0.016511764377356f, 0.127432823181152f, 0.016609646379948f, 0.127803623676300f, 0.016707813367248f, 0.128174334764481f, 0.016806263476610f, 0.128544986248016f, 0.016904998570681f, 0.128915548324585f, 0.017004016786814f, 0.129286035895348f, 0.017103319987655f, 0.129656463861465f, 0.017202908173203f, 0.130026802420616f, 0.017302779480815f, 0.130397051572800f, 0.017402933910489f, 0.130767241120338f, 0.017503373324871f, 0.131137356162071f, 0.017604095861316f, 0.131507381796837f, 0.017705103382468f, 0.131877332925797f, 0.017806394025683f, 0.132247209548950f, 0.017907967790961f, 0.132617011666298f, 0.018009826540947f, 0.132986739277840f, 0.018111966550350f, 0.133356377482414f, 0.018214391544461f, 0.133725941181183f, 0.018317099660635f, 0.134095430374146f, 0.018420090898871f, 0.134464830160141f, 0.018523367121816f, 0.134834155440331f, 0.018626924604177f, 0.135203406214714f, 0.018730765208602f, 0.135572582483292f, 0.018834890797734f, 0.135941669344902f, 0.018939297646284f, 0.136310681700706f, 0.019043987616897f, 0.136679604649544f, 0.019148962572217f, 0.137048453092575f, 0.019254218786955f, 0.137417227029800f, 0.019359756261110f, 0.137785911560059f, 0.019465578719974f, 0.138154521584511f, 0.019571684300900f, 0.138523042201996f, 0.019678071141243f, 0.138891488313675f, 0.019784741103649f, 0.139259845018387f, 0.019891692325473f, 0.139628127217293f, 0.019998926669359f, 0.139996320009232f, 0.020106444135308f, 0.140364438295364f, 0.020214242860675f, 0.140732467174530f, 0.020322324708104f, 0.141100421547890f, 0.020430689677596f, 0.141468286514282f, 0.020539334043860f, 0.141836062073708f, 0.020648263394833f, 0.142203763127327f, 0.020757472142577f, 0.142571389675140f, 0.020866964012384f, 0.142938911914825f, 0.020976737141609f, 0.143306359648705f, 0.021086793392897f, 0.143673732876778f, 0.021197130903602f, 0.144041016697884f, 0.021307749673724f, 0.144408211112022f, 0.021418649703264f, 0.144775316119194f, 0.021529832854867f, 0.145142331719399f, 0.021641295403242f, 0.145509272813797f, 0.021753041073680f, 0.145876124501228f, 0.021865066140890f, 0.146242901682854f, 0.021977374330163f, 0.146609574556351f, 0.022089963778853f, 0.146976172924042f, 0.022202832624316f, 0.147342681884766f, 0.022315984591842f, 0.147709101438522f, 0.022429415956140f, 0.148075446486473f, 0.022543128579855f, 0.148441687226295f, 0.022657122462988f, 0.148807853460312f, 0.022771397605538f, 0.149173930287361f, 0.022885952144861f, 0.149539917707443f, 0.023000787943602f, 0.149905815720558f, 0.023115905001760f, 0.150271624326706f, 0.023231301456690f, 0.150637343525887f, 0.023346979171038f, 0.151002973318100f, 0.023462938144803f, 0.151368513703346f, 0.023579176515341f, 0.151733979582787f, 0.023695694282651f, 0.152099341154099f, 0.023812493309379f, 0.152464613318443f, 0.023929571732879f, 0.152829796075821f, 0.024046931415796f, 0.153194904327393f, 0.024164570495486f, 0.153559908270836f, 0.024282488971949f, 0.153924822807312f, 0.024400688707829f, 0.154289647936821f, 0.024519165977836f, 0.154654383659363f, 0.024637924507260f, 0.155019029974937f, 0.024756962433457f, 0.155383571982384f, 0.024876279756427f, 0.155748039484024f, 0.024995878338814f, 0.156112402677536f, 0.025115754455328f, 0.156476691365242f, 0.025235909968615f, 0.156840875744820f, 0.025356344878674f, 0.157204970717430f, 0.025477059185505f, 0.157568961381912f, 0.025598052889109f, 0.157932877540588f, 0.025719324126840f, 0.158296689391136f, 0.025840876623988f, 0.158660411834717f, 0.025962706655264f, 0.159024044871330f, 0.026084816083312f, 0.159387573599815f, 0.026207204908133f, 0.159751012921333f, 0.026329871267080f, 0.160114362835884f, 0.026452817022800f, 0.160477623343468f, 0.026576040312648f, 0.160840779542923f, 0.026699542999268f, 0.161203846335411f, 0.026823325082660f, 0.161566808819771f, 0.026947384700179f, 0.161929681897163f, 0.027071721851826f, 0.162292465567589f, 0.027196336537600f, 0.162655144929886f, 0.027321230620146f, 0.163017734885216f, 0.027446404099464f, 0.163380220532417f, 0.027571853250265f, 0.163742616772652f, 0.027697581797838f, 0.164104923605919f, 0.027823587879539f, 0.164467126131058f, 0.027949871495366f, 0.164829224348068f, 0.028076432645321f, 0.165191248059273f, 0.028203271329403f, 0.165553152561188f, 0.028330387547612f, 0.165914967656136f, 0.028457781299949f, 0.166276678442955f, 0.028585452586412f, 0.166638299822807f, 0.028713401407003f, 0.166999831795692f, 0.028841627761722f, 0.167361244559288f, 0.028970129787922f, 0.167722567915916f, 0.029098909348249f, 0.168083801865578f, 0.029227968305349f, 0.168444931507111f, 0.029357301071286f, 0.168805956840515f, 0.029486913233995f, 0.169166877865791f, 0.029616801068187f, 0.169527709484100f, 0.029746964573860f, 0.169888436794281f, 0.029877405613661f, 0.170249074697495f, 0.030008124187589f, 0.170609608292580f, 0.030139118432999f, 0.170970037579536f, 0.030270388349891f, 0.171330362558365f, 0.030401935800910f, 0.171690583229065f, 0.030533758923411f, 0.172050714492798f, 0.030665857717395f, 0.172410741448402f, 0.030798232182860f, 0.172770664095879f, 0.030930884182453f, 0.173130482435226f, 0.031063811853528f, 0.173490211367607f, 0.031197015196085f, 0.173849821090698f, 0.031330492347479f, 0.174209341406822f, 0.031464248895645f, 0.174568757414818f, 0.031598277390003f, 0.174928069114685f, 0.031732585281134f, 0.175287276506424f, 0.031867165118456f, 0.175646379590034f, 0.032002024352551f, 0.176005378365517f, 0.032137155532837f, 0.176364272832870f, 0.032272562384605f, 0.176723077893257f, 0.032408244907856f, 0.177081763744354f, 0.032544203102589f, 0.177440345287323f, 0.032680433243513f, 0.177798837423325f, 0.032816942781210f, 0.178157210350037f, 0.032953724265099f, 0.178515478968620f, 0.033090781420469f, 0.178873643279076f, 0.033228114247322f, 0.179231703281403f, 0.033365719020367f, 0.179589673876762f, 0.033503599464893f, 0.179947525262833f, 0.033641755580902f, 0.180305257439613f, 0.033780183643103f, 0.180662900209427f, 0.033918887376785f, 0.181020438671112f, 0.034057866781950f, 0.181377857923508f, 0.034197118133307f, 0.181735187768936f, 0.034336645156145f, 0.182092398405075f, 0.034476444125175f, 0.182449504733086f, 0.034616518765688f, 0.182806491851807f, 0.034756865352392f, 0.183163389563560f, 0.034897487610579f, 0.183520168066025f, 0.035038381814957f, 0.183876842260361f, 0.035179551690817f, 0.184233412146568f, 0.035320993512869f, 0.184589877724648f, 0.035462711006403f, 0.184946224093437f, 0.035604696720839f, 0.185302466154099f, 0.035746958106756f, 0.185658603906631f, 0.035889495164156f, 0.186014622449875f, 0.036032304167747f, 0.186370536684990f, 0.036175385117531f, 0.186726331710815f, 0.036318738013506f, 0.187082037329674f, 0.036462362855673f, 0.187437608838081f, 0.036606263369322f, 0.187793090939522f, 0.036750435829163f, 0.188148453831673f, 0.036894880235195f, 0.188503712415695f, 0.037039596587420f, 0.188858851790428f, 0.037184584885836f, 0.189213871955872f, 0.037329845130444f, 0.189568802714348f, 0.037475381046534f, 0.189923599362373f, 0.037621185183525f, 0.190278306603432f, 0.037767261266708f, 0.190632879734039f, 0.037913613021374f, 0.190987363457680f, 0.038060232996941f, 0.191341713070869f, 0.038207128643990f, 0.191695958375931f, 0.038354292511940f, 0.192050099372864f, 0.038501728326082f, 0.192404121160507f, 0.038649436086416f, 0.192758023738861f, 0.038797415792942f, 0.193111822009087f, 0.038945667445660f, 0.193465501070023f, 0.039094187319279f, 0.193819075822830f, 0.039242979139090f, 0.194172516465187f, 0.039392042905092f, 0.194525867700577f, 0.039541378617287f, 0.194879084825516f, 0.039690986275673f, 0.195232197642326f, 0.039840862154961f, 0.195585191249847f, 0.039991009980440f, 0.195938065648079f, 0.040141426026821f, 0.196290835738182f, 0.040292114019394f, 0.196643486618996f, 0.040443073958158f, 0.196996018290520f, 0.040594302117825f, 0.197348430752754f, 0.040745802223682f, 0.197700738906860f, 0.040897574275732f, 0.198052927851677f, 0.041049610823393f, 0.198404997587204f, 0.041201923042536f, 0.198756948113441f, 0.041354499757290f, 0.199108779430389f, 0.041507352143526f, 0.199460506439209f, 0.041660469025373f, 0.199812099337578f, 0.041813857853413f, 0.200163587927818f, 0.041967518627644f, 0.200514942407608f, 0.042121443897486f, 0.200866192579269f, 0.042275641113520f, 0.201217323541641f, 0.042430106550455f, 0.201568335294724f, 0.042584843933582f, 0.201919227838516f, 0.042739849537611f, 0.202270001173019f, 0.042895123362541f, 0.202620655298233f, 0.043050665408373f, 0.202971190214157f, 0.043206475675106f, 0.203321605920792f, 0.043362557888031f, 0.203671902418137f, 0.043518904596567f, 0.204022079706192f, 0.043675523251295f, 0.204372137784958f, 0.043832406401634f, 0.204722076654434f, 0.043989561498165f, 0.205071896314621f, 0.044146984815598f, 0.205421581864357f, 0.044304672628641f, 0.205771163105965f, 0.044462632387877f, 0.206120610237122f, 0.044620860368013f, 0.206469938158989f, 0.044779352843761f, 0.206819161772728f, 0.044938117265701f, 0.207168251276016f, 0.045097146183252f, 0.207517206668854f, 0.045256443321705f, 0.207866057753563f, 0.045416008681059f, 0.208214774727821f, 0.045575842261314f, 0.208563387393951f, 0.045735940337181f, 0.208911851048470f, 0.045896306633949f, 0.209260210394859f, 0.046056941151619f, 0.209608450531960f, 0.046217843890190f, 0.209956556558609f, 0.046379011124372f, 0.210304543375969f, 0.046540446579456f, 0.210652396082878f, 0.046702146530151f, 0.211000129580498f, 0.046864114701748f, 0.211347743868828f, 0.047026351094246f, 0.211695238947868f, 0.047188851982355f, 0.212042599916458f, 0.047351621091366f, 0.212389841675758f, 0.047514654695988f, 0.212736949324608f, 0.047677956521511f, 0.213083937764168f, 0.047841522842646f, 0.213430806994438f, 0.048005353659391f, 0.213777542114258f, 0.048169452697039f, 0.214124158024788f, 0.048333816230297f, 0.214470639824867f, 0.048498444259167f, 0.214817002415657f, 0.048663340508938f, 0.215163245797157f, 0.048828501254320f, 0.215509355068207f, 0.048993926495314f, 0.215855330228806f, 0.049159619957209f, 0.216201186180115f, 0.049325577914715f, 0.216546908020973f, 0.049491796642542f, 0.216892510652542f, 0.049658283591270f, 0.217237979173660f, 0.049825038760900f, 0.217583328485489f, 0.049992054700851f, 0.217928543686867f, 0.050159335136414f, 0.218273624777794f, 0.050326880067587f, 0.218618586659431f, 0.050494693219662f, 0.218963414430618f, 0.050662767142057f, 0.219308122992516f, 0.050831105560064f, 0.219652697443962f, 0.050999708473682f, 0.219997137784958f, 0.051168579608202f, 0.220341444015503f, 0.051337707787752f, 0.220685631036758f, 0.051507104188204f, 0.221029683947563f, 0.051676765084267f, 0.221373617649078f, 0.051846686750650f, 0.221717402338982f, 0.052016876637936f, 0.222061067819595f, 0.052187327295542f, 0.222404599189758f, 0.052358038723469f, 0.222748011350632f, 0.052529018372297f, 0.223091274499893f, 0.052700258791447f, 0.223434418439865f, 0.052871759980917f, 0.223777428269386f, 0.053043525665998f, 0.224120303988457f, 0.053215555846691f, 0.224463045597076f, 0.053387850522995f, 0.224805667996407f, 0.053560405969620f, 0.225148141384125f, 0.053733222186565f, 0.225490495562553f, 0.053906302899122f, 0.225832715630531f, 0.054079644382000f, 0.226174786686897f, 0.054253250360489f, 0.226516738533974f, 0.054427117109299f, 0.226858556270599f, 0.054601248353720f, 0.227200239896774f, 0.054775636643171f, 0.227541789412498f, 0.054950293153524f, 0.227883204817772f, 0.055125206708908f, 0.228224486112595f, 0.055300384759903f, 0.228565633296967f, 0.055475823581219f, 0.228906646370888f, 0.055651523172855f, 0.229247525334358f, 0.055827483534813f, 0.229588270187378f, 0.056003704667091f, 0.229928880929947f, 0.056180190294981f, 0.230269357562065f, 0.056356932967901f, 0.230609700083733f, 0.056533940136433f, 0.230949893593788f, 0.056711208075285f, 0.231289967894554f, 0.056888736784458f, 0.231629893183708f, 0.057066522538662f, 0.231969684362412f, 0.057244572788477f, 0.232309341430664f, 0.057422880083323f, 0.232648864388466f, 0.057601451873779f, 0.232988253235817f, 0.057780280709267f, 0.233327493071556f, 0.057959370315075f, 0.233666598796844f, 0.058138720691204f, 0.234005570411682f, 0.058318331837654f, 0.234344407916069f, 0.058498200029135f, 0.234683111310005f, 0.058678328990936f, 0.235021665692329f, 0.058858718723059f, 0.235360085964203f, 0.059039369225502f, 0.235698372125626f, 0.059220276772976f, 0.236036509275436f, 0.059401445090771f, 0.236374512314796f, 0.059582870453596f, 0.236712381243706f, 0.059764556586742f, 0.237050101161003f, 0.059946499764919f, 0.237387686967850f, 0.060128703713417f, 0.237725138664246f, 0.060311164706945f, 0.238062441349030f, 0.060493886470795f, 0.238399609923363f, 0.060676865279675f, 0.238736644387245f, 0.060860104858875f, 0.239073529839516f, 0.061043601483107f, 0.239410281181335f, 0.061227355152369f, 0.239746883511543f, 0.061411365866661f, 0.240083336830139f, 0.061595637351274f, 0.240419670939446f, 0.061780165880919f, 0.240755841135979f, 0.061964951455593f, 0.241091892123222f, 0.062149997800589f, 0.241427779197693f, 0.062335297465324f, 0.241763532161713f, 0.062520854175091f, 0.242099151015282f, 0.062706671655178f, 0.242434620857239f, 0.062892749905586f, 0.242769956588745f, 0.063079081475735f, 0.243105143308640f, 0.063265666365623f, 0.243440181016922f, 0.063452512025833f, 0.243775084614754f, 0.063639611005783f, 0.244109839200974f, 0.063826970756054f, 0.244444444775581f, 0.064014583826065f, 0.244778916239738f, 0.064202457666397f, 0.245113238692284f, 0.064390584826469f, 0.245447427034378f, 0.064578965306282f, 0.245781451463699f, 0.064767606556416f, 0.246115356683731f, 0.064956501126289f, 0.246449097990990f, 0.065145656466484f, 0.246782705187798f, 0.065335065126419f, 0.247116148471832f, 0.065524727106094f, 0.247449472546577f, 0.065714649856091f, 0.247782632708550f, 0.065904818475246f, 0.248115643858910f, 0.066095255315304f, 0.248448520898819f, 0.066285938024521f, 0.248781248927116f, 0.066476874053478f, 0.249113827943802f, 0.066668070852757f, 0.249446272850037f, 0.066859520971775f, 0.249778553843498f, 0.067051224410534f, 0.250110685825348f, 0.067243188619614f, 0.250442683696747f, 0.067435398697853f, 0.250774532556534f, 0.067627869546413f, 0.251106232404709f, 0.067820593714714f, 0.251437783241272f, 0.068013571202755f, 0.251769185066223f, 0.068206802010536f, 0.252100437879562f, 0.068400286138058f, 0.252431541681290f, 0.068594031035900f, 0.252762526273727f, 0.068788021802902f, 0.253093332052231f, 0.068982265889645f, 0.253423988819122f, 0.069176770746708f, 0.253754496574402f, 0.069371521472931f, 0.254084855318069f, 0.069566532969475f, 0.254415065050125f, 0.069761790335178f, 0.254745125770569f, 0.069957308471203f, 0.255075037479401f, 0.070153072476387f, 0.255404800176620f, 0.070349089801311f, 0.255734413862228f, 0.070545360445976f, 0.256063878536224f, 0.070741884410381f, 0.256393194198608f, 0.070938661694527f, 0.256722360849380f, 0.071135692298412f, 0.257051378488541f, 0.071332976222038f, 0.257380217313766f, 0.071530513465405f, 0.257708936929703f, 0.071728296577930f, 0.258037507534027f, 0.071926333010197f, 0.258365899324417f, 0.072124622762203f, 0.258694142103195f, 0.072323165833950f, 0.259022265672684f, 0.072521962225437f, 0.259350210428238f, 0.072721004486084f, 0.259678006172180f, 0.072920300066471f, 0.260005623102188f, 0.073119848966599f, 0.260333120822906f, 0.073319651186466f, 0.260660469532013f, 0.073519699275494f, 0.260987639427185f, 0.073720000684261f, 0.261314690113068f, 0.073920547962189f, 0.261641561985016f, 0.074121348559856f, 0.261968284845352f, 0.074322402477264f, 0.262294828891754f, 0.074523709714413f, 0.262621253728867f, 0.074725262820721f, 0.262947499752045f, 0.074927061796188f, 0.263273626565933f, 0.075129114091396f, 0.263599574565887f, 0.075331419706345f, 0.263925373554230f, 0.075533971190453f, 0.264250993728638f, 0.075736775994301f, 0.264576494693756f, 0.075939826667309f, 0.264901816844940f, 0.076143130660057f, 0.265226989984512f, 0.076346680521965f, 0.265552014112473f, 0.076550483703613f, 0.265876859426498f, 0.076754532754421f, 0.266201555728912f, 0.076958827674389f, 0.266526103019714f, 0.077163375914097f, 0.266850501298904f, 0.077368170022964f, 0.267174720764160f, 0.077573217451572f, 0.267498821020126f, 0.077778510749340f, 0.267822742462158f, 0.077984049916267f, 0.268146485090256f, 0.078189842402935f, 0.268470078706741f, 0.078395880758762f, 0.268793523311615f, 0.078602164983749f, 0.269116818904877f, 0.078808702528477f, 0.269439965486526f, 0.079015478491783f, 0.269762933254242f, 0.079222507774830f, 0.270085722208023f, 0.079429790377617f, 0.270408391952515f, 0.079637311398983f, 0.270730882883072f, 0.079845085740089f, 0.271053224802017f, 0.080053105950356f, 0.271375387907028f, 0.080261372029781f, 0.271697402000427f, 0.080469883978367f, 0.272019267082214f, 0.080678641796112f, 0.272340953350067f, 0.080887645483017f, 0.272662490606308f, 0.081096902489662f, 0.272983878850937f, 0.081306397914886f, 0.273305088281631f, 0.081516146659851f, 0.273626148700714f, 0.081726133823395f, 0.273947030305862f, 0.081936374306679f, 0.274267762899399f, 0.082146860659122f, 0.274588316679001f, 0.082357585430145f, 0.274908751249313f, 0.082568563520908f, 0.275228977203369f, 0.082779780030251f, 0.275549083948135f, 0.082991249859333f, 0.275868982076645f, 0.083202958106995f, 0.276188760995865f, 0.083414919674397f, 0.276508361101151f, 0.083627119660378f, 0.276827782392502f, 0.083839565515518f, 0.277147054672241f, 0.084052257239819f, 0.277466177940369f, 0.084265194833279f, 0.277785122394562f, 0.084478378295898f, 0.278103888034821f, 0.084691800177097f, 0.278422504663467f, 0.084905467927456f, 0.278740972280502f, 0.085119381546974f, 0.279059261083603f, 0.085333541035652f, 0.279377400875092f, 0.085547938942909f, 0.279695361852646f, 0.085762590169907f, 0.280013144016266f, 0.085977479815483f, 0.280330777168274f, 0.086192607879639f, 0.280648261308670f, 0.086407989263535f, 0.280965566635132f, 0.086623609066010f, 0.281282693147659f, 0.086839467287064f, 0.281599670648575f, 0.087055571377277f, 0.281916469335556f, 0.087271921336651f, 0.282233119010925f, 0.087488517165184f, 0.282549589872360f, 0.087705351412296f, 0.282865911722183f, 0.087922424077988f, 0.283182054758072f, 0.088139742612839f, 0.283498018980026f, 0.088357307016850f, 0.283813834190369f, 0.088575109839439f, 0.284129470586777f, 0.088793158531189f, 0.284444957971573f, 0.089011445641518f, 0.284760266542435f, 0.089229971170425f, 0.285075396299362f, 0.089448742568493f, 0.285390377044678f, 0.089667752385139f, 0.285705178976059f, 0.089887008070946f, 0.286019802093506f, 0.090106502175331f, 0.286334276199341f, 0.090326242148876f, 0.286648571491241f, 0.090546220541000f, 0.286962717771530f, 0.090766437351704f, 0.287276685237885f, 0.090986892580986f, 0.287590473890305f, 0.091207593679428f, 0.287904083728790f, 0.091428533196449f, 0.288217544555664f, 0.091649711132050f, 0.288530826568604f, 0.091871134936810f, 0.288843959569931f, 0.092092797160149f, 0.289156883955002f, 0.092314697802067f, 0.289469659328461f, 0.092536836862564f, 0.289782285690308f, 0.092759214341640f, 0.290094703435898f, 0.092981837689877f, 0.290406972169876f, 0.093204692006111f, 0.290719062089920f, 0.093427792191505f, 0.291031002998352f, 0.093651130795479f, 0.291342735290527f, 0.093874707818031f, 0.291654318571091f, 0.094098523259163f, 0.291965723037720f, 0.094322577118874f, 0.292276978492737f, 0.094546869397163f, 0.292588025331497f, 0.094771400094032f, 0.292898923158646f, 0.094996169209480f, 0.293209642171860f, 0.095221176743507f, 0.293520182371140f, 0.095446422696114f, 0.293830573558807f, 0.095671907067299f, 0.294140785932541f, 0.095897629857063f, 0.294450789690018f, 0.096123591065407f, 0.294760644435883f, 0.096349790692329f, 0.295070350170136f, 0.096576221287251f, 0.295379847288132f, 0.096802897751331f, 0.295689195394516f, 0.097029805183411f, 0.295998334884644f, 0.097256951034069f, 0.296307325363159f, 0.097484335303307f, 0.296616137027740f, 0.097711957991123f, 0.296924799680710f, 0.097939811646938f, 0.297233253717422f, 0.098167903721333f, 0.297541528940201f, 0.098396234214306f, 0.297849655151367f, 0.098624803125858f, 0.298157602548599f, 0.098853603005409f, 0.298465341329575f, 0.099082641303539f, 0.298772931098938f, 0.099311910569668f, 0.299080342054367f, 0.099541425704956f, 0.299387603998184f, 0.099771171808243f, 0.299694657325745f, 0.100001148879528f, 0.300001531839371f, 0.100231364369392f, 0.300308227539063f, 0.100461818277836f, 0.300614774227142f, 0.100692503154278f, 0.300921112298965f, 0.100923426449299f, 0.301227301359177f, 0.101154580712318f, 0.301533311605453f, 0.101385973393917f, 0.301839113235474f, 0.101617597043514f, 0.302144765853882f, 0.101849451661110f, 0.302450239658356f, 0.102081544697285f, 0.302755534648895f, 0.102313876152039f, 0.303060621023178f, 0.102546438574791f, 0.303365558385849f, 0.102779231965542f, 0.303670316934586f, 0.103012263774872f, 0.303974896669388f, 0.103245526552200f, 0.304279297590256f, 0.103479020297527f, 0.304583519697189f, 0.103712752461433f, 0.304887533187866f, 0.103946708142757f, 0.305191397666931f, 0.104180909693241f, 0.305495083332062f, 0.104415334761143f, 0.305798590183258f, 0.104649998247623f, 0.306101888418198f, 0.104884892702103f, 0.306405037641525f, 0.105120018124580f, 0.306708008050919f, 0.105355374515057f, 0.307010769844055f, 0.105590961873531f, 0.307313382625580f, 0.105826787650585f, 0.307615786790848f, 0.106062836945057f, 0.307918041944504f, 0.106299124658108f, 0.308220088481903f, 0.106535643339157f, 0.308521956205368f, 0.106772392988205f, 0.308823645114899f, 0.107009373605251f, 0.309125155210495f, 0.107246585190296f, 0.309426486492157f, 0.107484027743340f, 0.309727638959885f, 0.107721701264381f, 0.310028612613678f, 0.107959605753422f, 0.310329377651215f, 0.108197741210461f, 0.310629993677139f, 0.108436107635498f, 0.310930401086807f, 0.108674705028534f, 0.311230629682541f, 0.108913525938988f, 0.311530679464340f, 0.109152585268021f, 0.311830550432205f, 0.109391868114471f, 0.312130242586136f, 0.109631389379501f, 0.312429755926132f, 0.109871134161949f, 0.312729060649872f, 0.110111102461815f, 0.313028186559677f, 0.110351309180260f, 0.313327133655548f, 0.110591746866703f, 0.313625901937485f, 0.110832408070564f, 0.313924491405487f, 0.111073300242424f, 0.314222872257233f, 0.111314415931702f, 0.314521104097366f, 0.111555770039558f, 0.314819127321243f, 0.111797347664833f, 0.315116971731186f, 0.112039148807526f, 0.315414607524872f, 0.112281180918217f, 0.315712094306946f, 0.112523443996906f, 0.316009372472763f, 0.112765938043594f, 0.316306471824646f, 0.113008655607700f, 0.316603392362595f, 0.113251596689224f, 0.316900104284287f, 0.113494776189327f, 0.317196637392044f, 0.113738171756268f, 0.317492991685867f, 0.113981798291206f, 0.317789167165756f, 0.114225655794144f, 0.318085134029388f, 0.114469736814499f, 0.318380922079086f, 0.114714048802853f, 0.318676531314850f, 0.114958584308624f, 0.318971961736679f, 0.115203343331814f, 0.319267183542252f, 0.115448333323002f, 0.319562226533890f, 0.115693546831608f, 0.319857090711594f, 0.115938983857632f, 0.320151746273041f, 0.116184651851654f, 0.320446223020554f, 0.116430543363094f, 0.320740520954132f, 0.116676658391953f, 0.321034610271454f, 0.116923004388809f, 0.321328520774841f, 0.117169573903084f, 0.321622252464294f, 0.117416366934776f, 0.321915775537491f, 0.117663383483887f, 0.322209119796753f, 0.117910631000996f, 0.322502255439758f, 0.118158094584942f, 0.322795242071152f, 0.118405789136887f, 0.323088020086288f, 0.118653707206249f, 0.323380589485168f, 0.118901848793030f, 0.323672980070114f, 0.119150213897228f, 0.323965191841125f, 0.119398809969425f, 0.324257194995880f, 0.119647622108459f, 0.324549019336700f, 0.119896657764912f, 0.324840664863586f, 0.120145916938782f, 0.325132101774216f, 0.120395407080650f, 0.325423330068588f, 0.120645113289356f, 0.325714409351349f, 0.120895043015480f, 0.326005280017853f, 0.121145196259022f, 0.326295942068100f, 0.121395580470562f, 0.326586425304413f, 0.121646173298359f, 0.326876699924469f, 0.121896997094154f, 0.327166795730591f, 0.122148044407368f, 0.327456712722778f, 0.122399315237999f, 0.327746421098709f, 0.122650802135468f, 0.328035950660706f, 0.122902512550354f, 0.328325271606445f, 0.123154446482658f, 0.328614413738251f, 0.123406603932381f, 0.328903347253799f, 0.123658977448940f, 0.329192101955414f, 0.123911574482918f, 0.329480648040771f, 0.124164395034313f, 0.329769015312195f, 0.124417431652546f, 0.330057173967361f, 0.124670691788197f, 0.330345153808594f, 0.124924175441265f, 0.330632925033569f, 0.125177875161171f, 0.330920487642288f, 0.125431805849075f, 0.331207901239395f, 0.125685945153236f, 0.331495076417923f, 0.125940307974815f, 0.331782072782516f, 0.126194894313812f, 0.332068890333176f, 0.126449704170227f, 0.332355499267578f, 0.126704722642899f, 0.332641899585724f, 0.126959964632988f, 0.332928121089935f, 0.127215430140495f, 0.333214133977890f, 0.127471104264259f, 0.333499968051910f, 0.127727001905441f, 0.333785593509674f, 0.127983123064041f, 0.334071010351181f, 0.128239467740059f, 0.334356248378754f, 0.128496021032333f, 0.334641307592392f, 0.128752797842026f, 0.334926128387451f, 0.129009798169136f, 0.335210770368576f, 0.129267007112503f, 0.335495233535767f, 0.129524439573288f, 0.335779488086700f, 0.129782080650330f, 0.336063534021378f, 0.130039945244789f, 0.336347371339798f, 0.130298033356667f, 0.336631029844284f, 0.130556344985962f, 0.336914509534836f, 0.130814850330353f, 0.337197750806808f, 0.131073594093323f, 0.337480813264847f, 0.131332546472549f, 0.337763696908951f, 0.131591722369194f, 0.338046342134476f, 0.131851106882095f, 0.338328808546066f, 0.132110700011253f, 0.338611096143723f, 0.132370531558990f, 0.338893145322800f, 0.132630556821823f, 0.339175015687943f, 0.132890805602074f, 0.339456677436829f, 0.133151277899742f, 0.339738160371780f, 0.133411958813667f, 0.340019434690475f, 0.133672863245010f, 0.340300500392914f, 0.133933976292610f, 0.340581357479095f, 0.134195312857628f, 0.340862035751343f, 0.134456858038902f, 0.341142505407333f, 0.134718611836433f, 0.341422766447067f, 0.134980589151382f, 0.341702848672867f, 0.135242775082588f, 0.341982692480087f, 0.135505184531212f, 0.342262357473373f, 0.135767802596092f, 0.342541843652725f, 0.136030644178391f, 0.342821091413498f, 0.136293679475784f, 0.343100160360336f, 0.136556953191757f, 0.343379020690918f, 0.136820420622826f, 0.343657672405243f, 0.137084111571312f, 0.343936115503311f, 0.137348011136055f, 0.344214379787445f, 0.137612134218216f, 0.344492435455322f, 0.137876465916634f, 0.344770282506943f, 0.138141006231308f, 0.345047920942307f, 0.138405755162239f, 0.345325350761414f, 0.138670727610588f, 0.345602601766586f, 0.138935908675194f, 0.345879614353180f, 0.139201298356056f, 0.346156448125839f, 0.139466896653175f, 0.346433073282242f, 0.139732718467712f, 0.346709519624710f, 0.139998748898506f, 0.346985727548599f, 0.140264987945557f, 0.347261756658554f, 0.140531435608864f, 0.347537547349930f, 0.140798106789589f, 0.347813159227371f, 0.141064971685410f, 0.348088562488556f, 0.141332060098648f, 0.348363757133484f, 0.141599357128143f, 0.348638743162155f, 0.141866862773895f, 0.348913550376892f, 0.142134591937065f, 0.349188119173050f, 0.142402514815331f, 0.349462509155273f, 0.142670661211014f, 0.349736660718918f, 0.142939001321793f, 0.350010633468628f, 0.143207564949989f, 0.350284397602081f, 0.143476337194443f, 0.350557953119278f, 0.143745318055153f, 0.350831300020218f, 0.144014507532120f, 0.351104438304901f, 0.144283905625343f, 0.351377367973328f, 0.144553512334824f, 0.351650089025497f, 0.144823327660561f, 0.351922631263733f, 0.145093351602554f, 0.352194935083389f, 0.145363584160805f, 0.352467030286789f, 0.145634025335312f, 0.352738946676254f, 0.145904675126076f, 0.353010624647141f, 0.146175548434258f, 0.353282123804092f, 0.146446615457535f, 0.353553384542465f, 0.146717891097069f, 0.353824466466904f, 0.146989375352860f, 0.354095309972763f, 0.147261068224907f, 0.354365974664688f, 0.147532954812050f, 0.354636400938034f, 0.147805064916611f, 0.354906648397446f, 0.148077383637428f, 0.355176687240601f, 0.148349896073341f, 0.355446487665176f, 0.148622632026672f, 0.355716109275818f, 0.148895561695099f, 0.355985492467880f, 0.149168699979782f, 0.356254696846008f, 0.149442046880722f, 0.356523662805557f, 0.149715602397919f, 0.356792420148849f, 0.149989366531372f, 0.357060998678207f, 0.150263324379921f, 0.357329338788986f, 0.150537505745888f, 0.357597470283508f, 0.150811880826950f, 0.357865422964096f, 0.151086464524269f, 0.358133137226105f, 0.151361241936684f, 0.358400642871857f, 0.151636242866516f, 0.358667939901352f, 0.151911437511444f, 0.358935028314590f, 0.152186840772629f, 0.359201908111572f, 0.152462437748909f, 0.359468549489975f, 0.152738258242607f, 0.359735012054443f, 0.153014272451401f, 0.360001266002655f, 0.153290495276451f, 0.360267281532288f, 0.153566911816597f, 0.360533088445663f, 0.153843536973000f, 0.360798716545105f, 0.154120370745659f, 0.361064106225967f, 0.154397398233414f, 0.361329287290573f, 0.154674649238586f, 0.361594229936600f, 0.154952079057693f, 0.361858993768692f, 0.155229732394218f, 0.362123548984528f, 0.155507579445839f, 0.362387865781784f, 0.155785620212555f, 0.362651973962784f, 0.156063869595528f, 0.362915903329849f, 0.156342327594757f, 0.363179564476013f, 0.156620979309082f, 0.363443046808243f, 0.156899839639664f, 0.363706320524216f, 0.157178908586502f, 0.363969355821610f, 0.157458171248436f, 0.364232182502747f, 0.157737627625465f, 0.364494800567627f, 0.158017292618752f, 0.364757210016251f, 0.158297166228294f, 0.365019410848618f, 0.158577233552933f, 0.365281373262405f, 0.158857494592667f, 0.365543156862259f, 0.159137964248657f, 0.365804702043533f, 0.159418627619743f, 0.366066008806229f, 0.159699499607086f, 0.366327136754990f, 0.159980565309525f, 0.366588026285172f, 0.160261839628220f, 0.366848707199097f, 0.160543307662010f, 0.367109179496765f, 0.160824984312058f, 0.367369443178177f, 0.161106839776039f, 0.367629468441010f, 0.161388918757439f, 0.367889285087585f, 0.161671176552773f, 0.368148893117905f, 0.161953642964363f, 0.368408292531967f, 0.162236317992210f, 0.368667453527451f, 0.162519171833992f, 0.368926405906677f, 0.162802234292030f, 0.369185149669647f, 0.163085505366325f, 0.369443655014038f, 0.163368955254555f, 0.369701951742172f, 0.163652613759041f, 0.369960039854050f, 0.163936465978622f, 0.370217919349670f, 0.164220526814461f, 0.370475560426712f, 0.164504766464233f, 0.370732992887497f, 0.164789214730263f, 0.370990216732025f, 0.165073871612549f, 0.371247202157974f, 0.165358707308769f, 0.371503978967667f, 0.165643751621246f, 0.371760547161102f, 0.165928974747658f, 0.372016876935959f, 0.166214406490326f, 0.372272998094559f, 0.166500031948090f, 0.372528880834579f, 0.166785866022110f, 0.372784584760666f, 0.167071878910065f, 0.373040050268173f, 0.167358100414276f, 0.373295277357101f, 0.167644515633583f, 0.373550295829773f, 0.167931124567986f, 0.373805105686188f, 0.168217927217484f, 0.374059677124023f, 0.168504923582077f, 0.374314039945602f, 0.168792113661766f, 0.374568194150925f, 0.169079497456551f, 0.374822109937668f, 0.169367074966431f, 0.375075817108154f, 0.169654861092567f, 0.375329315662384f, 0.169942826032639f, 0.375582575798035f, 0.170230999588966f, 0.375835597515106f, 0.170519351959229f, 0.376088410615921f, 0.170807912945747f, 0.376341015100479f, 0.171096652746201f, 0.376593410968781f, 0.171385586261749f, 0.376845568418503f, 0.171674728393555f, 0.377097487449646f, 0.171964049339294f, 0.377349197864532f, 0.172253578901291f, 0.377600699663162f, 0.172543287277222f, 0.377851963043213f, 0.172833189368248f, 0.378102988004684f, 0.173123285174370f, 0.378353834152222f, 0.173413574695587f, 0.378604412078857f, 0.173704057931900f, 0.378854811191559f, 0.173994734883308f, 0.379104942083359f, 0.174285605549812f, 0.379354894161224f, 0.174576655030251f, 0.379604607820511f, 0.174867913126946f, 0.379854083061218f, 0.175159350037575f, 0.380103349685669f, 0.175450980663300f, 0.380352377891541f, 0.175742805004120f, 0.380601197481155f, 0.176034808158875f, 0.380849778652191f, 0.176327019929886f, 0.381098151206970f, 0.176619410514832f, 0.381346285343170f, 0.176911994814873f, 0.381594210863113f, 0.177204772830009f, 0.381841897964478f, 0.177497729659081f, 0.382089376449585f, 0.177790880203247f, 0.382336616516113f, 0.178084224462509f, 0.382583618164063f, 0.178377762436867f, 0.382830440998077f, 0.178671479225159f, 0.383076995611191f, 0.178965389728546f, 0.383323341608047f, 0.179259493947029f, 0.383569449186325f, 0.179553776979446f, 0.383815348148346f, 0.179848253726959f, 0.384061008691788f, 0.180142924189568f, 0.384306460618973f, 0.180437773466110f, 0.384551674127579f, 0.180732816457748f, 0.384796649217606f, 0.181028053164482f, 0.385041415691376f, 0.181323468685150f, 0.385285943746567f, 0.181619063019753f, 0.385530263185501f, 0.181914865970612f, 0.385774344205856f, 0.182210832834244f, 0.386018186807632f, 0.182507008314133f, 0.386261820793152f, 0.182803362607956f, 0.386505216360092f, 0.183099895715714f, 0.386748403310776f, 0.183396622538567f, 0.386991351842880f, 0.183693528175354f, 0.387234061956406f, 0.183990627527237f, 0.387476563453674f, 0.184287920594215f, 0.387718826532364f, 0.184585392475128f, 0.387960851192474f, 0.184883043169975f, 0.388202667236328f, 0.185180887579918f, 0.388444244861603f, 0.185478910803795f, 0.388685584068298f, 0.185777112841606f, 0.388926714658737f, 0.186075508594513f, 0.389167606830597f, 0.186374098062515f, 0.389408260583878f, 0.186672851443291f, 0.389648675918579f, 0.186971798539162f, 0.389888882637024f, 0.187270939350128f, 0.390128880739212f, 0.187570258975029f, 0.390368610620499f, 0.187869757413864f, 0.390608131885529f, 0.188169434666634f, 0.390847414731979f, 0.188469305634499f, 0.391086459159851f, 0.188769355416298f, 0.391325294971466f, 0.189069598913193f, 0.391563892364502f, 0.189370006322861f, 0.391802251338959f, 0.189670607447624f, 0.392040401697159f, 0.189971387386322f, 0.392278283834457f, 0.190272361040115f, 0.392515957355499f, 0.190573498606682f, 0.392753422260284f, 0.190874829888344f, 0.392990618944168f, 0.191176339983940f, 0.393227607011795f, 0.191478043794632f, 0.393464356660843f, 0.191779911518097f, 0.393700867891312f, 0.192081972956657f, 0.393937170505524f, 0.192384198307991f, 0.394173204898834f, 0.192686617374420f, 0.394409030675888f, 0.192989215254784f, 0.394644618034363f, 0.193292006850243f, 0.394879996776581f, 0.193594962358475f, 0.395115107297897f, 0.193898096680641f, 0.395350009202957f, 0.194201424717903f, 0.395584672689438f, 0.194504916667938f, 0.395819097757339f, 0.194808602333069f, 0.396053284406662f, 0.195112451910973f, 0.396287262439728f, 0.195416495203972f, 0.396520972251892f, 0.195720717310905f, 0.396754473447800f, 0.196025103330612f, 0.396987736225128f, 0.196329683065414f, 0.397220760583878f, 0.196634441614151f, 0.397453576326370f, 0.196939364075661f, 0.397686123847961f, 0.197244480252266f, 0.397918462753296f, 0.197549775242805f, 0.398150533437729f, 0.197855234146118f, 0.398382395505905f, 0.198160871863365f, 0.398614019155502f, 0.198466703295708f, 0.398845434188843f, 0.198772698640823f, 0.399076581001282f, 0.199078872799873f, 0.399307489395142f, 0.199385225772858f, 0.399538189172745f, 0.199691757559776f, 0.399768620729446f, 0.199998468160629f, 0.399998843669891f, 0.200305357575417f, 0.400228828191757f, 0.200612410902977f, 0.400458574295044f, 0.200919643044472f, 0.400688081979752f, 0.201227053999901f, 0.400917351245880f, 0.201534643769264f, 0.401146411895752f, 0.201842412352562f, 0.401375204324722f, 0.202150344848633f, 0.401603758335114f, 0.202458456158638f, 0.401832103729248f, 0.202766746282578f, 0.402060180902481f, 0.203075215220451f, 0.402288049459457f, 0.203383848071098f, 0.402515679597855f, 0.203692659735680f, 0.402743041515350f, 0.204001650214195f, 0.402970194816589f, 0.204310819506645f, 0.403197109699249f, 0.204620152711868f, 0.403423786163330f, 0.204929664731026f, 0.403650224208832f, 0.205239340662956f, 0.403876423835754f, 0.205549195408821f, 0.404102355241776f, 0.205859228968620f, 0.404328078031540f, 0.206169426441193f, 0.404553562402725f, 0.206479802727699f, 0.404778808355331f, 0.206790357828140f, 0.405003815889359f, 0.207101076841354f, 0.405228585004807f, 0.207411959767342f, 0.405453115701675f, 0.207723021507263f, 0.405677437782288f, 0.208034262061119f, 0.405901491641998f, 0.208345666527748f, 0.406125307083130f, 0.208657249808311f, 0.406348884105682f, 0.208969011902809f, 0.406572192907333f, 0.209280923008919f, 0.406795293092728f, 0.209593027830124f, 0.407018154859543f, 0.209905281662941f, 0.407240778207779f, 0.210217714309692f, 0.407463163137436f, 0.210530325770378f, 0.407685309648514f, 0.210843101143837f, 0.407907217741013f, 0.211156040430069f, 0.408128857612610f, 0.211469158530235f, 0.408350288867950f, 0.211782455444336f, 0.408571451902390f, 0.212095901370049f, 0.408792406320572f, 0.212409526109695f, 0.409013092517853f, 0.212723329663277f, 0.409233570098877f, 0.213037282228470f, 0.409453779459000f, 0.213351413607597f, 0.409673750400543f, 0.213665723800659f, 0.409893482923508f, 0.213980183005333f, 0.410112977027893f, 0.214294821023941f, 0.410332232713699f, 0.214609622955322f, 0.410551249980927f, 0.214924603700638f, 0.410770028829575f, 0.215239733457565f, 0.410988569259644f, 0.215555042028427f, 0.411206841468811f, 0.215870529413223f, 0.411424905061722f, 0.216186165809631f, 0.411642700433731f, 0.216501981019974f, 0.411860257387161f, 0.216817945241928f, 0.412077575922012f, 0.217134088277817f, 0.412294656038284f, 0.217450410127640f, 0.412511497735977f, 0.217766880989075f, 0.412728071212769f, 0.218083515763283f, 0.412944436073303f, 0.218400329351425f, 0.413160532712936f, 0.218717306852341f, 0.413376390933990f, 0.219034433364868f, 0.413592010736465f, 0.219351738691330f, 0.413807392120361f, 0.219669207930565f, 0.414022535085678f, 0.219986841082573f, 0.414237409830093f, 0.220304638147354f, 0.414452046155930f, 0.220622614026070f, 0.414666473865509f, 0.220940738916397f, 0.414880603551865f, 0.221259027719498f, 0.415094524621964f, 0.221577480435371f, 0.415308207273483f, 0.221896097064018f, 0.415521621704102f, 0.222214877605438f, 0.415734797716141f, 0.222533836960793f, 0.415947735309601f, 0.222852945327759f, 0.416160434484482f, 0.223172217607498f, 0.416372895240784f, 0.223491653800011f, 0.416585087776184f, 0.223811239004135f, 0.416797041893005f, 0.224131003022194f, 0.417008757591248f, 0.224450930953026f, 0.417220205068588f, 0.224771007895470f, 0.417431443929672f, 0.225091263651848f, 0.417642414569855f, 0.225411668419838f, 0.417853146791458f, 0.225732237100601f, 0.418063640594482f, 0.226052969694138f, 0.418273866176605f, 0.226373866200447f, 0.418483853340149f, 0.226694911718369f, 0.418693602085114f, 0.227016136050224f, 0.418903112411499f, 0.227337509393692f, 0.419112354516983f, 0.227659046649933f, 0.419321358203888f, 0.227980732917786f, 0.419530123472214f, 0.228302597999573f, 0.419738620519638f, 0.228624612092972f, 0.419946908950806f, 0.228946775197983f, 0.420154929161072f, 0.229269117116928f, 0.420362681150436f, 0.229591608047485f, 0.420570224523544f, 0.229914262890816f, 0.420777499675751f, 0.230237081646919f, 0.420984506607056f, 0.230560049414635f, 0.421191304922104f, 0.230883181095123f, 0.421397835016251f, 0.231206461787224f, 0.421604126691818f, 0.231529906392097f, 0.421810150146484f, 0.231853514909744f, 0.422015935182571f, 0.232177272439003f, 0.422221481800079f, 0.232501193881035f, 0.422426789999008f, 0.232825264334679f, 0.422631829977036f, 0.233149498701096f, 0.422836631536484f, 0.233473882079124f, 0.423041164875031f, 0.233798429369926f, 0.423245459794998f, 0.234123140573502f, 0.423449516296387f, 0.234448000788689f, 0.423653304576874f, 0.234773010015488f, 0.423856884241104f, 0.235098183155060f, 0.424060165882111f, 0.235423520207405f, 0.424263238906860f, 0.235749006271362f, 0.424466013908386f, 0.236074641346931f, 0.424668580293655f, 0.236400425434113f, 0.424870878458023f, 0.236726388335228f, 0.425072938203812f, 0.237052485346794f, 0.425274729728699f, 0.237378746271133f, 0.425476282835007f, 0.237705156207085f, 0.425677597522736f, 0.238031730055809f, 0.425878643989563f, 0.238358452916145f, 0.426079452037811f, 0.238685324788094f, 0.426279991865158f, 0.239012360572815f, 0.426480293273926f, 0.239339530467987f, 0.426680356264114f, 0.239666879177094f, 0.426880151033401f, 0.239994361996651f, 0.427079707384110f, 0.240322008728981f, 0.427278995513916f, 0.240649804472923f, 0.427478045225143f, 0.240977749228477f, 0.427676826715469f, 0.241305842995644f, 0.427875369787216f, 0.241634100675583f, 0.428073674440384f, 0.241962507367134f, 0.428271710872650f, 0.242291063070297f, 0.428469479084015f, 0.242619767785072f, 0.428667008876801f, 0.242948621511459f, 0.428864300251007f, 0.243277639150620f, 0.429061323404312f, 0.243606805801392f, 0.429258108139038f, 0.243936106562614f, 0.429454624652863f, 0.244265571236610f, 0.429650902748108f, 0.244595184922218f, 0.429846942424774f, 0.244924947619438f, 0.430042684078217f, 0.245254859328270f, 0.430238217115402f, 0.245584934949875f, 0.430433481931686f, 0.245915144681931f, 0.430628478527069f, 0.246245503425598f, 0.430823236703873f, 0.246576011180878f, 0.431017726659775f, 0.246906682848930f, 0.431211978197098f, 0.247237488627434f, 0.431405961513519f, 0.247568443417549f, 0.431599706411362f, 0.247899547219276f, 0.431793183088303f, 0.248230814933777f, 0.431986421346664f, 0.248562216758728f, 0.432179391384125f, 0.248893767595291f, 0.432372123003006f, 0.249225467443466f, 0.432564586400986f, 0.249557301402092f, 0.432756811380386f, 0.249889299273491f, 0.432948768138886f, 0.250221431255341f, 0.433140486478806f, 0.250553727149963f, 0.433331936597824f, 0.250886172056198f, 0.433523118495941f, 0.251218736171722f, 0.433714061975479f, 0.251551479101181f, 0.433904737234116f, 0.251884341239929f, 0.434095174074173f, 0.252217382192612f, 0.434285342693329f, 0.252550542354584f, 0.434475272893906f, 0.252883851528168f, 0.434664934873581f, 0.253217309713364f, 0.434854328632355f, 0.253550916910172f, 0.435043483972549f, 0.253884643316269f, 0.435232400894165f, 0.254218548536301f, 0.435421019792557f, 0.254552572965622f, 0.435609430074692f, 0.254886746406555f, 0.435797542333603f, 0.255221068859100f, 0.435985416173935f, 0.255555540323257f, 0.436173021793365f, 0.255890160799026f, 0.436360388994217f, 0.256224930286407f, 0.436547487974167f, 0.256559818983078f, 0.436734348535538f, 0.256894856691360f, 0.436920911073685f, 0.257230043411255f, 0.437107264995575f, 0.257565379142761f, 0.437293320894241f, 0.257900834083557f, 0.437479138374329f, 0.258236467838287f, 0.437664687633514f, 0.258572220802307f, 0.437849998474121f, 0.258908122777939f, 0.438035041093826f, 0.259244143962860f, 0.438219845294952f, 0.259580343961716f, 0.438404351472855f, 0.259916663169861f, 0.438588619232178f, 0.260253131389618f, 0.438772648572922f, 0.260589718818665f, 0.438956409692764f, 0.260926485061646f, 0.439139902591705f, 0.261263370513916f, 0.439323127269745f, 0.261600375175476f, 0.439506113529205f, 0.261937558650970f, 0.439688831567764f, 0.262274861335754f, 0.439871311187744f, 0.262612313032150f, 0.440053492784500f, 0.262949883937836f, 0.440235435962677f, 0.263287603855133f, 0.440417140722275f, 0.263625472784042f, 0.440598547458649f, 0.263963490724564f, 0.440779715776443f, 0.264301627874374f, 0.440960645675659f, 0.264639914035797f, 0.441141277551651f, 0.264978319406509f, 0.441321671009064f, 0.265316903591156f, 0.441501796245575f, 0.265655577182770f, 0.441681683063507f, 0.265994429588318f, 0.441861271858215f, 0.266333401203156f, 0.442040622234344f, 0.266672492027283f, 0.442219734191895f, 0.267011761665344f, 0.442398548126221f, 0.267351150512695f, 0.442577123641968f, 0.267690658569336f, 0.442755430936813f, 0.268030315637589f, 0.442933470010757f, 0.268370121717453f, 0.443111270666122f, 0.268710047006607f, 0.443288803100586f, 0.269050091505051f, 0.443466067314148f, 0.269390314817429f, 0.443643063306808f, 0.269730657339096f, 0.443819820880890f, 0.270071119070053f, 0.443996280431747f, 0.270411729812622f, 0.444172531366348f, 0.270752459764481f, 0.444348484277725f, 0.271093338727951f, 0.444524168968201f, 0.271434366703033f, 0.444699615240097f, 0.271775513887405f, 0.444874793291092f, 0.272116780281067f, 0.445049703121185f, 0.272458195686340f, 0.445224374532700f, 0.272799760103226f, 0.445398747920990f, 0.273141443729401f, 0.445572882890701f, 0.273483246564865f, 0.445746749639511f, 0.273825198411942f, 0.445920348167419f, 0.274167299270630f, 0.446093708276749f, 0.274509519338608f, 0.446266770362854f, 0.274851858615875f, 0.446439594030380f, 0.275194346904755f, 0.446612149477005f, 0.275536954402924f, 0.446784436702728f, 0.275879681110382f, 0.446956485509872f, 0.276222556829453f, 0.447128236293793f, 0.276565581560135f, 0.447299748659134f, 0.276908725500107f, 0.447470992803574f, 0.277251988649368f, 0.447641968727112f, 0.277595400810242f, 0.447812676429749f, 0.277938932180405f, 0.447983115911484f, 0.278282582759857f, 0.448153316974640f, 0.278626382350922f, 0.448323249816895f, 0.278970301151276f, 0.448492884635925f, 0.279314368963242f, 0.448662281036377f, 0.279658555984497f, 0.448831409215927f, 0.280002862215042f, 0.449000298976898f, 0.280347317457199f, 0.449168890714645f, 0.280691891908646f, 0.449337244033813f, 0.281036585569382f, 0.449505299329758f, 0.281381398439407f, 0.449673116207123f, 0.281726360321045f, 0.449840664863586f, 0.282071471214294f, 0.450007945299149f, 0.282416671514511f, 0.450174957513809f, 0.282762020826340f, 0.450341701507568f, 0.283107489347458f, 0.450508207082748f, 0.283453077077866f, 0.450674414634705f, 0.283798813819885f, 0.450840383768082f, 0.284144669771194f, 0.451006084680557f, 0.284490644931793f, 0.451171487569809f, 0.284836769104004f, 0.451336652040482f, 0.285182982683182f, 0.451501548290253f, 0.285529345273972f, 0.451666176319122f, 0.285875827074051f, 0.451830536127090f, 0.286222457885742f, 0.451994657516479f, 0.286569178104401f, 0.452158480882645f, 0.286916047334671f, 0.452322036027908f, 0.287263035774231f, 0.452485352754593f, 0.287610173225403f, 0.452648371458054f, 0.287957400083542f, 0.452811151742935f, 0.288304775953293f, 0.452973634004593f, 0.288652241230011f, 0.453135877847672f, 0.288999855518341f, 0.453297853469849f, 0.289347589015961f, 0.453459560871124f, 0.289695471525192f, 0.453621000051498f, 0.290043443441391f, 0.453782171010971f, 0.290391564369202f, 0.453943043947220f, 0.290739774703979f, 0.454103678464890f, 0.291088134050369f, 0.454264044761658f, 0.291436612606049f, 0.454424172639847f, 0.291785210371017f, 0.454584002494812f, 0.292133957147598f, 0.454743564128876f, 0.292482793331146f, 0.454902857542038f, 0.292831748723984f, 0.455061882734299f, 0.293180853128433f, 0.455220639705658f, 0.293530046939850f, 0.455379128456116f, 0.293879389762878f, 0.455537378787994f, 0.294228851795197f, 0.455695331096649f, 0.294578403234482f, 0.455853015184402f, 0.294928103685379f, 0.456010431051254f, 0.295277923345566f, 0.456167578697205f, 0.295627862215042f, 0.456324487924576f, 0.295977920293808f, 0.456481099128723f, 0.296328097581863f, 0.456637442111969f, 0.296678394079208f, 0.456793516874313f, 0.297028809785843f, 0.456949323415756f, 0.297379344701767f, 0.457104891538620f, 0.297729998826981f, 0.457260161638260f, 0.298080772161484f, 0.457415163516998f, 0.298431664705276f, 0.457569897174835f, 0.298782676458359f, 0.457724362611771f, 0.299133807420731f, 0.457878559827805f, 0.299485057592392f, 0.458032488822937f, 0.299836426973343f, 0.458186149597168f, 0.300187885761261f, 0.458339542150497f, 0.300539493560791f, 0.458492636680603f, 0.300891220569611f, 0.458645492792130f, 0.301243066787720f, 0.458798080682755f, 0.301595002412796f, 0.458950400352478f, 0.301947087049484f, 0.459102421998978f, 0.302299261093140f, 0.459254205226898f, 0.302651554346085f, 0.459405690431595f, 0.303003966808319f, 0.459556937217712f, 0.303356528282166f, 0.459707885980606f, 0.303709149360657f, 0.459858566522598f, 0.304061919450760f, 0.460008978843689f, 0.304414808750153f, 0.460159152746201f, 0.304767817258835f, 0.460309028625488f, 0.305120915174484f, 0.460458606481552f, 0.305474132299423f, 0.460607945919037f, 0.305827468633652f, 0.460757017135620f, 0.306180924177170f, 0.460905820131302f, 0.306534498929977f, 0.461054325103760f, 0.306888192892075f, 0.461202591657639f, 0.307241976261139f, 0.461350560188293f, 0.307595878839493f, 0.461498260498047f, 0.307949900627136f, 0.461645722389221f, 0.308304041624069f, 0.461792886257172f, 0.308658272027969f, 0.461939752101898f, 0.309012651443481f, 0.462086379528046f, 0.309367120265961f, 0.462232738733292f, 0.309721708297729f, 0.462378799915314f, 0.310076385736465f, 0.462524622678757f, 0.310431212186813f, 0.462670147418976f, 0.310786128044128f, 0.462815403938293f, 0.311141163110733f, 0.462960392236710f, 0.311496287584305f, 0.463105112314224f, 0.311851561069489f, 0.463249564170837f, 0.312206923961639f, 0.463393747806549f, 0.312562376260757f, 0.463537633419037f, 0.312917977571487f, 0.463681250810623f, 0.313273668289185f, 0.463824629783630f, 0.313629478216171f, 0.463967710733414f, 0.313985377550125f, 0.464110493659973f, 0.314341396093369f, 0.464253038167953f, 0.314697533845901f, 0.464395314455032f, 0.315053790807724f, 0.464537292718887f, 0.315410137176514f, 0.464679002761841f, 0.315766572952271f, 0.464820444583893f, 0.316123157739639f, 0.464961618185043f, 0.316479831933975f, 0.465102523565292f, 0.316836595535278f, 0.465243130922318f, 0.317193508148193f, 0.465383470058441f, 0.317550510168076f, 0.465523540973663f, 0.317907601594925f, 0.465663343667984f, 0.318264812231064f, 0.465802878141403f, 0.318622142076492f, 0.465942144393921f, 0.318979561328888f, 0.466081112623215f, 0.319337099790573f, 0.466219812631607f, 0.319694727659225f, 0.466358244419098f, 0.320052474737167f, 0.466496407985687f, 0.320410341024399f, 0.466634273529053f, 0.320768296718597f, 0.466771900653839f, 0.321126341819763f, 0.466909229755402f, 0.321484506130219f, 0.467046260833740f, 0.321842789649963f, 0.467183053493500f, 0.322201162576675f, 0.467319577932358f, 0.322559654712677f, 0.467455804347992f, 0.322918236255646f, 0.467591762542725f, 0.323276937007904f, 0.467727422714233f, 0.323635727167130f, 0.467862844467163f, 0.323994606733322f, 0.467997968196869f, 0.324353635311127f, 0.468132823705673f, 0.324712723493576f, 0.468267410993576f, 0.325071930885315f, 0.468401730060577f, 0.325431257486343f, 0.468535751104355f, 0.325790673494339f, 0.468669503927231f, 0.326150178909302f, 0.468802988529205f, 0.326509803533554f, 0.468936175107956f, 0.326869517564774f, 0.469069123268127f, 0.327229350805283f, 0.469201773405075f, 0.327589273452759f, 0.469334155321121f, 0.327949285507202f, 0.469466239213943f, 0.328309416770935f, 0.469598054885864f, 0.328669637441635f, 0.469729602336884f, 0.329029977321625f, 0.469860881567001f, 0.329390406608582f, 0.469991862773895f, 0.329750925302505f, 0.470122605562210f, 0.330111563205719f, 0.470253020524979f, 0.330472290515900f, 0.470383197069168f, 0.330833107233047f, 0.470513075590134f, 0.331194043159485f, 0.470642685890198f, 0.331555068492889f, 0.470772027969360f, 0.331916213035584f, 0.470901101827621f, 0.332277417182922f, 0.471029877662659f, 0.332638740539551f, 0.471158385276794f, 0.333000183105469f, 0.471286594867706f, 0.333361685276031f, 0.471414536237717f, 0.333723306655884f, 0.471542209386826f, 0.334085017442703f, 0.471669614315033f, 0.334446847438812f, 0.471796721220016f, 0.334808766841888f, 0.471923559904099f, 0.335170775651932f, 0.472050130367279f, 0.335532873868942f, 0.472176402807236f, 0.335895091295242f, 0.472302407026291f, 0.336257368326187f, 0.472428143024445f, 0.336619764566422f, 0.472553610801697f, 0.336982280015945f, 0.472678780555725f, 0.337344855070114f, 0.472803652286530f, 0.337707549333572f, 0.472928285598755f, 0.338070303201675f, 0.473052620887756f, 0.338433176279068f, 0.473176687955856f, 0.338796168565750f, 0.473300457000732f, 0.339159220457077f, 0.473423957824707f, 0.339522391557693f, 0.473547190427780f, 0.339885622262955f, 0.473670125007629f, 0.340248972177505f, 0.473792791366577f, 0.340612411499023f, 0.473915189504623f, 0.340975970029831f, 0.474037289619446f, 0.341339588165283f, 0.474159121513367f, 0.341703325510025f, 0.474280685186386f, 0.342067122459412f, 0.474401950836182f, 0.342431038618088f, 0.474522948265076f, 0.342795044183731f, 0.474643647670746f, 0.343159139156342f, 0.474764078855515f, 0.343523323535919f, 0.474884241819382f, 0.343887597322464f, 0.475004136562347f, 0.344251960515976f, 0.475123733282089f, 0.344616413116455f, 0.475243031978607f, 0.344980984926224f, 0.475362062454224f, 0.345345616340637f, 0.475480824708939f, 0.345710366964340f, 0.475599318742752f, 0.346075177192688f, 0.475717514753342f, 0.346440106630325f, 0.475835442543030f, 0.346805095672607f, 0.475953072309494f, 0.347170203924179f, 0.476070433855057f, 0.347535371780396f, 0.476187497377396f, 0.347900658845901f, 0.476304292678833f, 0.348266035318375f, 0.476420819759369f, 0.348631471395493f, 0.476537048816681f, 0.348997026681900f, 0.476653009653091f, 0.349362671375275f, 0.476768702268600f, 0.349728375673294f, 0.476884096860886f, 0.350094199180603f, 0.476999223232269f, 0.350460082292557f, 0.477114051580429f, 0.350826084613800f, 0.477228611707687f, 0.351192146539688f, 0.477342873811722f, 0.351558297872543f, 0.477456867694855f, 0.351924568414688f, 0.477570593357086f, 0.352290898561478f, 0.477684020996094f, 0.352657318115234f, 0.477797180414200f, 0.353023827075958f, 0.477910041809082f, 0.353390425443649f, 0.478022634983063f, 0.353757113218308f, 0.478134930133820f, 0.354123860597610f, 0.478246957063675f, 0.354490727186203f, 0.478358715772629f, 0.354857653379440f, 0.478470176458359f, 0.355224698781967f, 0.478581339120865f, 0.355591803789139f, 0.478692263364792f, 0.355958998203278f, 0.478802859783173f, 0.356326282024384f, 0.478913217782974f, 0.356693625450134f, 0.479023247957230f, 0.357061088085175f, 0.479133039712906f, 0.357428610324860f, 0.479242533445358f, 0.357796221971512f, 0.479351729154587f, 0.358163923025131f, 0.479460656642914f, 0.358531713485718f, 0.479569315910339f, 0.358899593353271f, 0.479677677154541f, 0.359267532825470f, 0.479785770177841f, 0.359635561704636f, 0.479893565177917f, 0.360003679990768f, 0.480001062154770f, 0.360371887683868f, 0.480108320713043f, 0.360740154981613f, 0.480215251445770f, 0.361108511686325f, 0.480321943759918f, 0.361476957798004f, 0.480428308248520f, 0.361845493316650f, 0.480534434318542f, 0.362214088439941f, 0.480640232563019f, 0.362582772970200f, 0.480745792388916f, 0.362951546907425f, 0.480851024389267f, 0.363320380449295f, 0.480956017971039f, 0.363689333200455f, 0.481060713529587f, 0.364058345556259f, 0.481165111064911f, 0.364427417516708f, 0.481269240379334f, 0.364796578884125f, 0.481373071670532f, 0.365165829658508f, 0.481476634740829f, 0.365535169839859f, 0.481579899787903f, 0.365904569625854f, 0.481682896614075f, 0.366274058818817f, 0.481785595417023f, 0.366643607616425f, 0.481888025999069f, 0.367013275623322f, 0.481990188360214f, 0.367382973432541f, 0.482092022895813f, 0.367752790451050f, 0.482193619012833f, 0.368122667074203f, 0.482294887304306f, 0.368492603302002f, 0.482395917177200f, 0.368862658739090f, 0.482496619224548f, 0.369232743978500f, 0.482597053050995f, 0.369602948427200f, 0.482697218656540f, 0.369973212480545f, 0.482797086238861f, 0.370343536138535f, 0.482896685600281f, 0.370713949203491f, 0.482995986938477f, 0.371084451675415f, 0.483094990253448f, 0.371455013751984f, 0.483193725347519f, 0.371825665235519f, 0.483292192220688f, 0.372196376323700f, 0.483390361070633f, 0.372567176818848f, 0.483488231897354f, 0.372938036918640f, 0.483585834503174f, 0.373308986425400f, 0.483683139085770f, 0.373679995536804f, 0.483780175447464f, 0.374051094055176f, 0.483876913785934f, 0.374422252178192f, 0.483973383903503f, 0.374793499708176f, 0.484069555997849f, 0.375164806842804f, 0.484165430068970f, 0.375536203384399f, 0.484261035919189f, 0.375907659530640f, 0.484356373548508f, 0.376279205083847f, 0.484451413154602f, 0.376650810241699f, 0.484546154737473f, 0.377022475004196f, 0.484640628099442f, 0.377394229173660f, 0.484734803438187f, 0.377766042947769f, 0.484828680753708f, 0.378137946128845f, 0.484922289848328f, 0.378509908914566f, 0.485015630722046f, 0.378881961107254f, 0.485108673572540f, 0.379254043102264f, 0.485201418399811f, 0.379626244306564f, 0.485293895006180f, 0.379998475313187f, 0.485386073589325f, 0.380370795726776f, 0.485477954149246f, 0.380743205547333f, 0.485569566488266f, 0.381115674972534f, 0.485660910606384f, 0.381488204002380f, 0.485751956701279f, 0.381860792636871f, 0.485842704772949f, 0.382233470678329f, 0.485933154821396f, 0.382606208324432f, 0.486023366451263f, 0.382979035377502f, 0.486113250255585f, 0.383351892232895f, 0.486202865839005f, 0.383724838495255f, 0.486292183399200f, 0.384097874164581f, 0.486381232738495f, 0.384470939636230f, 0.486469984054565f, 0.384844094514847f, 0.486558437347412f, 0.385217308998108f, 0.486646622419357f, 0.385590612888336f, 0.486734509468079f, 0.385963946580887f, 0.486822128295898f, 0.386337369680405f, 0.486909449100494f, 0.386710882186890f, 0.486996471881866f, 0.387084424495697f, 0.487083226442337f, 0.387458056211472f, 0.487169682979584f, 0.387831717729568f, 0.487255871295929f, 0.388205498456955f, 0.487341761589050f, 0.388579308986664f, 0.487427353858948f, 0.388953179121017f, 0.487512677907944f, 0.389327138662338f, 0.487597703933716f, 0.389701157808304f, 0.487682431936264f, 0.390075236558914f, 0.487766891717911f, 0.390449374914169f, 0.487851053476334f, 0.390823602676392f, 0.487934947013855f, 0.391197860240936f, 0.488018542528152f, 0.391572207212448f, 0.488101840019226f, 0.391946613788605f, 0.488184869289398f, 0.392321079969406f, 0.488267600536346f, 0.392695605754852f, 0.488350033760071f, 0.393070191144943f, 0.488432198762894f, 0.393444836139679f, 0.488514065742493f, 0.393819570541382f, 0.488595664501190f, 0.394194334745407f, 0.488676935434341f, 0.394569188356400f, 0.488757967948914f, 0.394944071769714f, 0.488838672637939f, 0.395319044589996f, 0.488919109106064f, 0.395694077014923f, 0.488999247550964f, 0.396069169044495f, 0.489079117774963f, 0.396444320678711f, 0.489158689975739f, 0.396819531917572f, 0.489237964153290f, 0.397194802761078f, 0.489316970109940f, 0.397570133209229f, 0.489395678043365f, 0.397945523262024f, 0.489474087953568f, 0.398320972919464f, 0.489552229642868f, 0.398696482181549f, 0.489630073308945f, 0.399072051048279f, 0.489707618951797f, 0.399447679519653f, 0.489784896373749f, 0.399823367595673f, 0.489861875772476f, 0.400199115276337f, 0.489938557147980f, 0.400574922561646f, 0.490014940500259f, 0.400950789451599f, 0.490091055631638f, 0.401326715946198f, 0.490166902542114f, 0.401702702045441f, 0.490242421627045f, 0.402078747749329f, 0.490317672491074f, 0.402454853057861f, 0.490392625331879f, 0.402830988168716f, 0.490467309951782f, 0.403207212686539f, 0.490541696548462f, 0.403583467006683f, 0.490615785121918f, 0.403959810733795f, 0.490689605474472f, 0.404336184263229f, 0.490763127803802f, 0.404712617397308f, 0.490836352109909f, 0.405089110136032f, 0.490909278392792f, 0.405465662479401f, 0.490981936454773f, 0.405842274427414f, 0.491054296493530f, 0.406218945980072f, 0.491126358509064f, 0.406595647335052f, 0.491198152303696f, 0.406972438097000f, 0.491269648075104f, 0.407349258661270f, 0.491340845823288f, 0.407726138830185f, 0.491411775350571f, 0.408103078603745f, 0.491482406854630f, 0.408480048179626f, 0.491552740335464f, 0.408857107162476f, 0.491622805595398f, 0.409234195947647f, 0.491692543029785f, 0.409611344337463f, 0.491762012243271f, 0.409988552331924f, 0.491831213235855f, 0.410365819931030f, 0.491900116205215f, 0.410743117332459f, 0.491968721151352f, 0.411120474338531f, 0.492037028074265f, 0.411497890949249f, 0.492105036973953f, 0.411875367164612f, 0.492172777652740f, 0.412252873182297f, 0.492240220308304f, 0.412630438804626f, 0.492307394742966f, 0.413008064031601f, 0.492374241352081f, 0.413385748863220f, 0.492440819740295f, 0.413763463497162f, 0.492507129907608f, 0.414141237735748f, 0.492573112249374f, 0.414519041776657f, 0.492638826370239f, 0.414896935224533f, 0.492704242467880f, 0.415274858474731f, 0.492769360542297f, 0.415652841329575f, 0.492834210395813f, 0.416030853986740f, 0.492898762226105f, 0.416408926248550f, 0.492963016033173f, 0.416787058115005f, 0.493026971817017f, 0.417165219783783f, 0.493090659379959f, 0.417543441057205f, 0.493154048919678f, 0.417921721935272f, 0.493217140436172f, 0.418300032615662f, 0.493279963731766f, 0.418678402900696f, 0.493342459201813f, 0.419056802988052f, 0.493404686450958f, 0.419435262680054f, 0.493466645479202f, 0.419813781976700f, 0.493528276681900f, 0.420192331075668f, 0.493589639663696f, 0.420570939779282f, 0.493650704622269f, 0.420949578285217f, 0.493711471557617f, 0.421328276395798f, 0.493771970272064f, 0.421707004308701f, 0.493832170963287f, 0.422085791826248f, 0.493892073631287f, 0.422464638948441f, 0.493951678276062f, 0.422843515872955f, 0.494011014699936f, 0.423222452402115f, 0.494070053100586f, 0.423601418733597f, 0.494128793478012f, 0.423980414867401f, 0.494187235832214f, 0.424359470605850f, 0.494245409965515f, 0.424738585948944f, 0.494303256273270f, 0.425117731094360f, 0.494360834360123f, 0.425496935844421f, 0.494418144226074f, 0.425876170396805f, 0.494475126266479f, 0.426255434751511f, 0.494531840085983f, 0.426634758710861f, 0.494588255882263f, 0.427014142274857f, 0.494644373655319f, 0.427393525838852f, 0.494700223207474f, 0.427772998809814f, 0.494755744934082f, 0.428152471780777f, 0.494810998439789f, 0.428532034158707f, 0.494865983724594f, 0.428911596536636f, 0.494920641183853f, 0.429291218519211f, 0.494975030422211f, 0.429670870304108f, 0.495029091835022f, 0.430050581693649f, 0.495082914829254f, 0.430430322885513f, 0.495136409997940f, 0.430810123682022f, 0.495189607143402f, 0.431189924478531f, 0.495242536067963f, 0.431569814682007f, 0.495295166969299f, 0.431949704885483f, 0.495347499847412f, 0.432329654693604f, 0.495399564504623f, 0.432709634304047f, 0.495451331138611f, 0.433089673519135f, 0.495502769947052f, 0.433469742536545f, 0.495553970336914f, 0.433849841356277f, 0.495604842901230f, 0.434229999780655f, 0.495655417442322f, 0.434610158205032f, 0.495705723762512f, 0.434990376234055f, 0.495755732059479f, 0.435370653867722f, 0.495805442333221f, 0.435750931501389f, 0.495854884386063f, 0.436131268739700f, 0.495903998613358f, 0.436511665582657f, 0.495952844619751f, 0.436892062425613f, 0.496001392602921f, 0.437272518873215f, 0.496049642562866f, 0.437653005123138f, 0.496097624301910f, 0.438033521175385f, 0.496145308017731f, 0.438414067029953f, 0.496192663908005f, 0.438794672489166f, 0.496239781379700f, 0.439175277948380f, 0.496286571025848f, 0.439555943012238f, 0.496333062648773f, 0.439936667680740f, 0.496379286050797f, 0.440317392349243f, 0.496425211429596f, 0.440698176622391f, 0.496470838785172f, 0.441078960895538f, 0.496516168117523f, 0.441459804773331f, 0.496561229228973f, 0.441840678453445f, 0.496605962514877f, 0.442221581935883f, 0.496650427579880f, 0.442602545022964f, 0.496694594621658f, 0.442983508110046f, 0.496738493442535f, 0.443364530801773f, 0.496782064437866f, 0.443745553493500f, 0.496825367212296f, 0.444126635789871f, 0.496868371963501f, 0.444507747888565f, 0.496911078691483f, 0.444888889789581f, 0.496953487396240f, 0.445270061492920f, 0.496995598077774f, 0.445651292800903f, 0.497037440538406f, 0.446032524108887f, 0.497078984975815f, 0.446413785219193f, 0.497120231389999f, 0.446795076131821f, 0.497161179780960f, 0.447176426649094f, 0.497201830148697f, 0.447557777166367f, 0.497242212295532f, 0.447939187288284f, 0.497282296419144f, 0.448320597410202f, 0.497322082519531f, 0.448702067136765f, 0.497361570596695f, 0.449083566665649f, 0.497400760650635f, 0.449465066194534f, 0.497439652681351f, 0.449846625328064f, 0.497478276491165f, 0.450228184461594f, 0.497516602277756f, 0.450609803199768f, 0.497554630041122f, 0.450991421937943f, 0.497592359781265f, 0.451373100280762f, 0.497629791498184f, 0.451754778623581f, 0.497666954994202f, 0.452136516571045f, 0.497703820466995f, 0.452518254518509f, 0.497740387916565f, 0.452900022268295f, 0.497776657342911f, 0.453281819820404f, 0.497812628746033f, 0.453663676977158f, 0.497848302125931f, 0.454045534133911f, 0.497883707284927f, 0.454427421092987f, 0.497918814420700f, 0.454809308052063f, 0.497953623533249f, 0.455191254615784f, 0.497988134622574f, 0.455573230981827f, 0.498022347688675f, 0.455955207347870f, 0.498056292533875f, 0.456337243318558f, 0.498089909553528f, 0.456719279289246f, 0.498123258352280f, 0.457101345062256f, 0.498156309127808f, 0.457483440637589f, 0.498189061880112f, 0.457865566015244f, 0.498221516609192f, 0.458247691392899f, 0.498253703117371f, 0.458629876375198f, 0.498285561800003f, 0.459012061357498f, 0.498317152261734f, 0.459394276142120f, 0.498348444700241f, 0.459776520729065f, 0.498379439115524f, 0.460158795118332f, 0.498410135507584f, 0.460541069507599f, 0.498440563678741f, 0.460923373699188f, 0.498470664024353f, 0.461305707693100f, 0.498500496149063f, 0.461688071489334f, 0.498530030250549f, 0.462070435285568f, 0.498559266328812f, 0.462452858686447f, 0.498588204383850f, 0.462835282087326f, 0.498616874217987f, 0.463217705488205f, 0.498645216226578f, 0.463600188493729f, 0.498673290014267f, 0.463982671499252f, 0.498701065778732f, 0.464365184307098f, 0.498728543519974f, 0.464747726917267f, 0.498755723237991f, 0.465130269527435f, 0.498782604932785f, 0.465512841939926f, 0.498809218406677f, 0.465895414352417f, 0.498835533857346f, 0.466278046369553f, 0.498861521482468f, 0.466660678386688f, 0.498887240886688f, 0.467043310403824f, 0.498912662267685f, 0.467426002025604f, 0.498937815427780f, 0.467808693647385f, 0.498962640762329f, 0.468191385269165f, 0.498987197875977f, 0.468574106693268f, 0.499011427164078f, 0.468956857919693f, 0.499035388231277f, 0.469339638948441f, 0.499059051275253f, 0.469722419977188f, 0.499082416296005f, 0.470105201005936f, 0.499105513095856f, 0.470488041639328f, 0.499128282070160f, 0.470870882272720f, 0.499150782823563f, 0.471253722906113f, 0.499172955751419f, 0.471636593341827f, 0.499194860458374f, 0.472019463777542f, 0.499216467142105f, 0.472402364015579f, 0.499237775802612f, 0.472785294055939f, 0.499258816242218f, 0.473168224096298f, 0.499279528856277f, 0.473551183938980f, 0.499299973249435f, 0.473934143781662f, 0.499320119619370f, 0.474317133426666f, 0.499339967966080f, 0.474700123071671f, 0.499359518289566f, 0.475083142518997f, 0.499378770589828f, 0.475466161966324f, 0.499397724866867f, 0.475849211215973f, 0.499416410923004f, 0.476232260465622f, 0.499434769153595f, 0.476615339517593f, 0.499452859163284f, 0.476998418569565f, 0.499470651149750f, 0.477381497621536f, 0.499488145112991f, 0.477764606475830f, 0.499505341053009f, 0.478147745132446f, 0.499522238969803f, 0.478530883789063f, 0.499538868665695f, 0.478914022445679f, 0.499555170536041f, 0.479297190904617f, 0.499571204185486f, 0.479680359363556f, 0.499586939811707f, 0.480063527822495f, 0.499602377414703f, 0.480446726083755f, 0.499617516994476f, 0.480829954147339f, 0.499632388353348f, 0.481213152408600f, 0.499646931886673f, 0.481596380472183f, 0.499661177396774f, 0.481979638338089f, 0.499675154685974f, 0.482362866401672f, 0.499688833951950f, 0.482746154069901f, 0.499702215194702f, 0.483129411935806f, 0.499715298414230f, 0.483512699604034f, 0.499728083610535f, 0.483895987272263f, 0.499740600585938f, 0.484279274940491f, 0.499752789735794f, 0.484662592411041f, 0.499764710664749f, 0.485045909881592f, 0.499776333570480f, 0.485429257154465f, 0.499787658452988f, 0.485812574625015f, 0.499798685312271f, 0.486195921897888f, 0.499809414148331f, 0.486579269170761f, 0.499819844961166f, 0.486962646245956f, 0.499830007553101f, 0.487346023321152f, 0.499839842319489f, 0.487729400396347f, 0.499849408864975f, 0.488112777471542f, 0.499858677387238f, 0.488496154546738f, 0.499867647886276f, 0.488879561424255f, 0.499876320362091f, 0.489262968301773f, 0.499884694814682f, 0.489646375179291f, 0.499892801046371f, 0.490029782056808f, 0.499900579452515f, 0.490413218736649f, 0.499908089637756f, 0.490796625614166f, 0.499915301799774f, 0.491180062294006f, 0.499922215938568f, 0.491563498973846f, 0.499928832054138f, 0.491946935653687f, 0.499935150146484f, 0.492330402135849f, 0.499941170215607f, 0.492713838815689f, 0.499946922063828f, 0.493097305297852f, 0.499952346086502f, 0.493480771780014f, 0.499957501888275f, 0.493864238262177f, 0.499962359666824f, 0.494247704744339f, 0.499966919422150f, 0.494631171226501f, 0.499971181154251f, 0.495014637708664f, 0.499975144863129f, 0.495398133993149f, 0.499978810548782f, 0.495781600475311f, 0.499982208013535f, 0.496165096759796f, 0.499985307455063f, 0.496548563241959f, 0.499988079071045f, 0.496932059526443f, 0.499990582466125f, 0.497315555810928f, 0.499992787837982f, 0.497699022293091f, 0.499994695186615f, 0.498082518577576f, 0.499996334314346f, 0.498466014862061f, 0.499997645616531f, 0.498849511146545f, 0.499998688697815f, 0.499233007431030f, 0.499999403953552f, 0.499616503715515f, 0.499999850988388f, }; /** @par Generation of realCoefB array: @par n = 4096
for (i = 0; i < n; i++)
  {
     pBTable[2 * i]     = 0.5 * (1.0 + sin (2 * PI / (double) (2 * n) * (double) i));
     pBTable[2 * i + 1] = 0.5 * (1.0 * cos (2 * PI / (double) (2 * n) * (double) i));
  }
*/ const float32_t realCoefB[8192] ARM_DSP_TABLE_ATTRIBUTE = { 0.500000000000000f, 0.500000000000000f, 0.500383496284485f, 0.499999850988388f, 0.500766992568970f, 0.499999403953552f, 0.501150488853455f, 0.499998688697815f, 0.501533985137939f, 0.499997645616531f, 0.501917481422424f, 0.499996334314346f, 0.502300977706909f, 0.499994695186615f, 0.502684473991394f, 0.499992787837982f, 0.503067970275879f, 0.499990582466125f, 0.503451406955719f, 0.499988079071045f, 0.503834903240204f, 0.499985307455063f, 0.504218399524689f, 0.499982208013535f, 0.504601895809174f, 0.499978810548782f, 0.504985332489014f, 0.499975144863129f, 0.505368828773499f, 0.499971181154251f, 0.505752325057983f, 0.499966919422150f, 0.506135761737823f, 0.499962359666824f, 0.506519258022308f, 0.499957501888275f, 0.506902694702148f, 0.499952346086502f, 0.507286131381989f, 0.499946922063828f, 0.507669627666473f, 0.499941170215607f, 0.508053064346313f, 0.499935150146484f, 0.508436501026154f, 0.499928832054138f, 0.508819937705994f, 0.499922215938568f, 0.509203374385834f, 0.499915301799774f, 0.509586811065674f, 0.499908089637756f, 0.509970188140869f, 0.499900579452515f, 0.510353624820709f, 0.499892801046371f, 0.510737061500549f, 0.499884694814682f, 0.511120438575745f, 0.499876320362091f, 0.511503815650940f, 0.499867647886276f, 0.511887252330780f, 0.499858677387238f, 0.512270629405975f, 0.499849408864975f, 0.512654006481171f, 0.499839842319489f, 0.513037383556366f, 0.499830007553101f, 0.513420701026917f, 0.499819844961166f, 0.513804078102112f, 0.499809414148331f, 0.514187395572662f, 0.499798685312271f, 0.514570772647858f, 0.499787658452988f, 0.514954090118408f, 0.499776333570480f, 0.515337407588959f, 0.499764710664749f, 0.515720725059509f, 0.499752789735794f, 0.516103982925415f, 0.499740600585938f, 0.516487300395966f, 0.499728083610535f, 0.516870558261871f, 0.499715298414230f, 0.517253875732422f, 0.499702215194702f, 0.517637133598328f, 0.499688833951950f, 0.518020391464233f, 0.499675154685974f, 0.518403589725494f, 0.499661177396774f, 0.518786847591400f, 0.499646931886673f, 0.519170045852661f, 0.499632388353348f, 0.519553244113922f, 0.499617516994476f, 0.519936442375183f, 0.499602377414703f, 0.520319640636444f, 0.499586939811707f, 0.520702838897705f, 0.499571204185486f, 0.521085977554321f, 0.499555170536041f, 0.521469116210938f, 0.499538868665695f, 0.521852254867554f, 0.499522238969803f, 0.522235393524170f, 0.499505341053009f, 0.522618472576141f, 0.499488145112991f, 0.523001611232758f, 0.499470651149750f, 0.523384690284729f, 0.499452859163284f, 0.523767769336700f, 0.499434769153595f, 0.524150788784027f, 0.499416410923004f, 0.524533808231354f, 0.499397724866867f, 0.524916887283325f, 0.499378770589828f, 0.525299847126007f, 0.499359518289566f, 0.525682866573334f, 0.499339967966080f, 0.526065826416016f, 0.499320119619370f, 0.526448845863342f, 0.499299973249435f, 0.526831746101379f, 0.499279528856277f, 0.527214705944061f, 0.499258816242218f, 0.527597606182098f, 0.499237775802612f, 0.527980506420136f, 0.499216467142105f, 0.528363406658173f, 0.499194860458374f, 0.528746306896210f, 0.499172955751419f, 0.529129147529602f, 0.499150782823563f, 0.529511988162994f, 0.499128282070160f, 0.529894769191742f, 0.499105513095856f, 0.530277609825134f, 0.499082416296005f, 0.530660390853882f, 0.499059051275253f, 0.531043112277985f, 0.499035388231277f, 0.531425893306732f, 0.499011427164078f, 0.531808614730835f, 0.498987197875977f, 0.532191336154938f, 0.498962640762329f, 0.532573997974396f, 0.498937815427780f, 0.532956659793854f, 0.498912662267685f, 0.533339321613312f, 0.498887240886688f, 0.533721983432770f, 0.498861521482468f, 0.534104585647583f, 0.498835533857346f, 0.534487187862396f, 0.498809218406677f, 0.534869730472565f, 0.498782604932785f, 0.535252273082733f, 0.498755723237991f, 0.535634815692902f, 0.498728543519974f, 0.536017298698425f, 0.498701065778732f, 0.536399841308594f, 0.498673290014267f, 0.536782264709473f, 0.498645216226578f, 0.537164747714996f, 0.498616874217987f, 0.537547171115875f, 0.498588204383850f, 0.537929534912109f, 0.498559266328812f, 0.538311958312988f, 0.498530030250549f, 0.538694262504578f, 0.498500496149063f, 0.539076626300812f, 0.498470664024353f, 0.539458930492401f, 0.498440563678741f, 0.539841234683990f, 0.498410135507584f, 0.540223479270935f, 0.498379439115524f, 0.540605723857880f, 0.498348444700241f, 0.540987968444824f, 0.498317152261734f, 0.541370153427124f, 0.498285561800003f, 0.541752278804779f, 0.498253703117371f, 0.542134463787079f, 0.498221516609192f, 0.542516589164734f, 0.498189061880112f, 0.542898654937744f, 0.498156309127808f, 0.543280720710754f, 0.498123258352280f, 0.543662786483765f, 0.498089909553528f, 0.544044792652130f, 0.498056292533875f, 0.544426798820496f, 0.498022347688675f, 0.544808745384216f, 0.497988134622574f, 0.545190691947937f, 0.497953623533249f, 0.545572578907013f, 0.497918814420700f, 0.545954465866089f, 0.497883707284927f, 0.546336352825165f, 0.497848302125931f, 0.546718180179596f, 0.497812628746033f, 0.547099947929382f, 0.497776657342911f, 0.547481775283813f, 0.497740387916565f, 0.547863483428955f, 0.497703820466995f, 0.548245191574097f, 0.497666954994202f, 0.548626899719238f, 0.497629791498184f, 0.549008548259735f, 0.497592359781265f, 0.549390196800232f, 0.497554630041122f, 0.549771785736084f, 0.497516602277756f, 0.550153374671936f, 0.497478276491165f, 0.550534904003143f, 0.497439652681351f, 0.550916433334351f, 0.497400760650635f, 0.551297962665558f, 0.497361570596695f, 0.551679372787476f, 0.497322082519531f, 0.552060842514038f, 0.497282296419144f, 0.552442193031311f, 0.497242212295532f, 0.552823603153229f, 0.497201830148697f, 0.553204894065857f, 0.497161179780960f, 0.553586184978485f, 0.497120231389999f, 0.553967475891113f, 0.497078984975815f, 0.554348707199097f, 0.497037440538406f, 0.554729938507080f, 0.496995598077774f, 0.555111110210419f, 0.496953487396240f, 0.555492222309113f, 0.496911078691483f, 0.555873334407806f, 0.496868371963501f, 0.556254446506500f, 0.496825367212296f, 0.556635499000549f, 0.496782064437866f, 0.557016491889954f, 0.496738493442535f, 0.557397484779358f, 0.496694594621658f, 0.557778418064117f, 0.496650427579880f, 0.558159291744232f, 0.496605962514877f, 0.558540165424347f, 0.496561229228973f, 0.558921039104462f, 0.496516168117523f, 0.559301853179932f, 0.496470838785172f, 0.559682607650757f, 0.496425211429596f, 0.560063362121582f, 0.496379286050797f, 0.560444056987762f, 0.496333062648773f, 0.560824692249298f, 0.496286571025848f, 0.561205327510834f, 0.496239781379700f, 0.561585903167725f, 0.496192663908005f, 0.561966478824615f, 0.496145308017731f, 0.562346994876862f, 0.496097624301910f, 0.562727510929108f, 0.496049642562866f, 0.563107967376709f, 0.496001392602921f, 0.563488364219666f, 0.495952844619751f, 0.563868701457977f, 0.495903998613358f, 0.564249038696289f, 0.495854884386063f, 0.564629375934601f, 0.495805442333221f, 0.565009593963623f, 0.495755732059479f, 0.565389811992645f, 0.495705723762512f, 0.565770030021667f, 0.495655417442322f, 0.566150128841400f, 0.495604842901230f, 0.566530287265778f, 0.495553970336914f, 0.566910326480865f, 0.495502769947052f, 0.567290365695953f, 0.495451331138611f, 0.567670345306396f, 0.495399564504623f, 0.568050265312195f, 0.495347499847412f, 0.568430185317993f, 0.495295166969299f, 0.568810045719147f, 0.495242536067963f, 0.569189906120300f, 0.495189607143402f, 0.569569647312164f, 0.495136409997940f, 0.569949388504028f, 0.495082914829254f, 0.570329129695892f, 0.495029091835022f, 0.570708811283112f, 0.494975030422211f, 0.571088373661041f, 0.494920641183853f, 0.571467995643616f, 0.494865983724594f, 0.571847498416901f, 0.494810998439789f, 0.572227001190186f, 0.494755744934082f, 0.572606444358826f, 0.494700223207474f, 0.572985887527466f, 0.494644373655319f, 0.573365211486816f, 0.494588255882263f, 0.573744535446167f, 0.494531840085983f, 0.574123859405518f, 0.494475126266479f, 0.574503064155579f, 0.494418144226074f, 0.574882268905640f, 0.494360834360123f, 0.575261414051056f, 0.494303256273270f, 0.575640499591827f, 0.494245409965515f, 0.576019585132599f, 0.494187235832214f, 0.576398611068726f, 0.494128793478012f, 0.576777577400208f, 0.494070053100586f, 0.577156484127045f, 0.494011014699936f, 0.577535390853882f, 0.493951678276062f, 0.577914178371429f, 0.493892073631287f, 0.578292965888977f, 0.493832170963287f, 0.578671753406525f, 0.493771970272064f, 0.579050421714783f, 0.493711471557617f, 0.579429090023041f, 0.493650704622269f, 0.579807698726654f, 0.493589639663696f, 0.580186247825623f, 0.493528276681900f, 0.580564737319946f, 0.493466645479202f, 0.580943167209625f, 0.493404686450958f, 0.581321597099304f, 0.493342459201813f, 0.581699967384338f, 0.493279963731766f, 0.582078278064728f, 0.493217140436172f, 0.582456588745117f, 0.493154048919678f, 0.582834780216217f, 0.493090659379959f, 0.583212971687317f, 0.493026971817017f, 0.583591103553772f, 0.492963016033173f, 0.583969175815582f, 0.492898762226105f, 0.584347188472748f, 0.492834210395813f, 0.584725141525269f, 0.492769360542297f, 0.585103094577789f, 0.492704242467880f, 0.585480928421021f, 0.492638826370239f, 0.585858762264252f, 0.492573112249374f, 0.586236536502838f, 0.492507129907608f, 0.586614251136780f, 0.492440819740295f, 0.586991965770721f, 0.492374241352081f, 0.587369561195374f, 0.492307394742966f, 0.587747097015381f, 0.492240220308304f, 0.588124632835388f, 0.492172777652740f, 0.588502109050751f, 0.492105036973953f, 0.588879525661469f, 0.492037028074265f, 0.589256882667542f, 0.491968721151352f, 0.589634180068970f, 0.491900116205215f, 0.590011477470398f, 0.491831213235855f, 0.590388655662537f, 0.491762012243271f, 0.590765833854675f, 0.491692543029785f, 0.591142892837524f, 0.491622805595398f, 0.591519951820374f, 0.491552740335464f, 0.591896951198578f, 0.491482406854630f, 0.592273890972137f, 0.491411775350571f, 0.592650771141052f, 0.491340845823288f, 0.593027591705322f, 0.491269648075104f, 0.593404352664948f, 0.491198152303696f, 0.593781054019928f, 0.491126358509064f, 0.594157755374908f, 0.491054296493530f, 0.594534337520599f, 0.490981936454773f, 0.594910860061646f, 0.490909278392792f, 0.595287382602692f, 0.490836352109909f, 0.595663845539093f, 0.490763127803802f, 0.596040189266205f, 0.490689605474472f, 0.596416532993317f, 0.490615785121918f, 0.596792817115784f, 0.490541696548462f, 0.597168982028961f, 0.490467309951782f, 0.597545146942139f, 0.490392625331879f, 0.597921252250671f, 0.490317672491074f, 0.598297297954559f, 0.490242421627045f, 0.598673284053802f, 0.490166902542114f, 0.599049210548401f, 0.490091055631638f, 0.599425077438354f, 0.490014940500259f, 0.599800884723663f, 0.489938557147980f, 0.600176632404327f, 0.489861875772476f, 0.600552320480347f, 0.489784896373749f, 0.600927948951721f, 0.489707618951797f, 0.601303517818451f, 0.489630073308945f, 0.601679027080536f, 0.489552229642868f, 0.602054476737976f, 0.489474087953568f, 0.602429866790771f, 0.489395678043365f, 0.602805197238922f, 0.489316970109940f, 0.603180468082428f, 0.489237964153290f, 0.603555679321289f, 0.489158689975739f, 0.603930830955505f, 0.489079117774963f, 0.604305922985077f, 0.488999247550964f, 0.604680955410004f, 0.488919109106064f, 0.605055928230286f, 0.488838672637939f, 0.605430841445923f, 0.488757967948914f, 0.605805635452271f, 0.488676935434341f, 0.606180429458618f, 0.488595664501190f, 0.606555163860321f, 0.488514065742493f, 0.606929838657379f, 0.488432198762894f, 0.607304394245148f, 0.488350033760071f, 0.607678949832916f, 0.488267600536346f, 0.608053386211395f, 0.488184869289398f, 0.608427822589874f, 0.488101840019226f, 0.608802139759064f, 0.488018542528152f, 0.609176397323608f, 0.487934947013855f, 0.609550595283508f, 0.487851053476334f, 0.609924793243408f, 0.487766891717911f, 0.610298871994019f, 0.487682431936264f, 0.610672831535339f, 0.487597703933716f, 0.611046791076660f, 0.487512677907944f, 0.611420691013336f, 0.487427353858948f, 0.611794531345367f, 0.487341761589050f, 0.612168252468109f, 0.487255871295929f, 0.612541973590851f, 0.487169682979584f, 0.612915575504303f, 0.487083226442337f, 0.613289117813110f, 0.486996471881866f, 0.613662600517273f, 0.486909449100494f, 0.614036023616791f, 0.486822128295898f, 0.614409387111664f, 0.486734509468079f, 0.614782691001892f, 0.486646622419357f, 0.615155875682831f, 0.486558437347412f, 0.615529060363770f, 0.486469984054565f, 0.615902125835419f, 0.486381232738495f, 0.616275131702423f, 0.486292183399200f, 0.616648077964783f, 0.486202865839005f, 0.617020964622498f, 0.486113250255585f, 0.617393791675568f, 0.486023366451263f, 0.617766559123993f, 0.485933154821396f, 0.618139207363129f, 0.485842704772949f, 0.618511795997620f, 0.485751956701279f, 0.618884325027466f, 0.485660910606384f, 0.619256794452667f, 0.485569566488266f, 0.619629204273224f, 0.485477954149246f, 0.620001494884491f, 0.485386073589325f, 0.620373785495758f, 0.485293895006180f, 0.620745956897736f, 0.485201418399811f, 0.621118068695068f, 0.485108673572540f, 0.621490061283112f, 0.485015630722046f, 0.621862053871155f, 0.484922289848328f, 0.622233927249908f, 0.484828680753708f, 0.622605800628662f, 0.484734803438187f, 0.622977554798126f, 0.484640628099442f, 0.623349189758301f, 0.484546154737473f, 0.623720824718475f, 0.484451413154602f, 0.624092340469360f, 0.484356373548508f, 0.624463796615601f, 0.484261035919189f, 0.624835193157196f, 0.484165430068970f, 0.625206530094147f, 0.484069555997849f, 0.625577747821808f, 0.483973383903503f, 0.625948905944824f, 0.483876913785934f, 0.626320004463196f, 0.483780175447464f, 0.626691043376923f, 0.483683139085770f, 0.627061963081360f, 0.483585834503174f, 0.627432823181152f, 0.483488231897354f, 0.627803623676300f, 0.483390361070633f, 0.628174364566803f, 0.483292192220688f, 0.628544986248016f, 0.483193725347519f, 0.628915548324585f, 0.483094990253448f, 0.629286050796509f, 0.482995986938477f, 0.629656434059143f, 0.482896685600281f, 0.630026817321777f, 0.482797086238861f, 0.630397081375122f, 0.482697218656540f, 0.630767226219177f, 0.482597053050995f, 0.631137371063232f, 0.482496619224548f, 0.631507396697998f, 0.482395917177200f, 0.631877362728119f, 0.482294887304306f, 0.632247209548950f, 0.482193619012833f, 0.632616996765137f, 0.482092022895813f, 0.632986724376678f, 0.481990188360214f, 0.633356392383575f, 0.481888025999069f, 0.633725941181183f, 0.481785595417023f, 0.634095430374146f, 0.481682896614075f, 0.634464859962463f, 0.481579899787903f, 0.634834170341492f, 0.481476634740829f, 0.635203421115875f, 0.481373071670532f, 0.635572552680969f, 0.481269240379334f, 0.635941684246063f, 0.481165111064911f, 0.636310696601868f, 0.481060713529587f, 0.636679589748383f, 0.480956017971039f, 0.637048482894897f, 0.480851024389267f, 0.637417197227478f, 0.480745792388916f, 0.637785911560059f, 0.480640232563019f, 0.638154506683350f, 0.480534434318542f, 0.638523042201996f, 0.480428308248520f, 0.638891458511353f, 0.480321943759918f, 0.639259815216064f, 0.480215251445770f, 0.639628112316132f, 0.480108320713043f, 0.639996349811554f, 0.480001062154770f, 0.640364408493042f, 0.479893565177917f, 0.640732467174530f, 0.479785770177841f, 0.641100406646729f, 0.479677677154541f, 0.641468286514282f, 0.479569315910339f, 0.641836047172546f, 0.479460656642914f, 0.642203748226166f, 0.479351729154587f, 0.642571389675140f, 0.479242533445358f, 0.642938911914825f, 0.479133039712906f, 0.643306374549866f, 0.479023247957230f, 0.643673717975616f, 0.478913217782974f, 0.644041001796722f, 0.478802859783173f, 0.644408226013184f, 0.478692263364792f, 0.644775331020355f, 0.478581339120865f, 0.645142316818237f, 0.478470176458359f, 0.645509302616119f, 0.478358715772629f, 0.645876109600067f, 0.478246957063675f, 0.646242916584015f, 0.478134930133820f, 0.646609604358673f, 0.478022634983063f, 0.646976172924042f, 0.477910041809082f, 0.647342681884766f, 0.477797180414200f, 0.647709131240845f, 0.477684020996094f, 0.648075461387634f, 0.477570593357086f, 0.648441672325134f, 0.477456867694855f, 0.648807883262634f, 0.477342873811722f, 0.649173915386200f, 0.477228611707687f, 0.649539887905121f, 0.477114051580429f, 0.649905800819397f, 0.476999223232269f, 0.650271594524384f, 0.476884096860886f, 0.650637328624725f, 0.476768702268600f, 0.651003003120422f, 0.476653009653091f, 0.651368498802185f, 0.476537048816681f, 0.651733994483948f, 0.476420819759369f, 0.652099311351776f, 0.476304292678833f, 0.652464628219604f, 0.476187497377396f, 0.652829825878143f, 0.476070433855057f, 0.653194904327393f, 0.475953072309494f, 0.653559923171997f, 0.475835442543030f, 0.653924822807312f, 0.475717514753342f, 0.654289662837982f, 0.475599318742752f, 0.654654383659363f, 0.475480824708939f, 0.655019044876099f, 0.475362062454224f, 0.655383586883545f, 0.475243031978607f, 0.655748009681702f, 0.475123733282089f, 0.656112432479858f, 0.475004136562347f, 0.656476676464081f, 0.474884241819382f, 0.656840860843658f, 0.474764078855515f, 0.657204985618591f, 0.474643647670746f, 0.657568991184235f, 0.474522948265076f, 0.657932877540588f, 0.474401950836182f, 0.658296704292297f, 0.474280685186386f, 0.658660411834717f, 0.474159121513367f, 0.659024059772491f, 0.474037289619446f, 0.659387588500977f, 0.473915189504623f, 0.659750998020172f, 0.473792791366577f, 0.660114347934723f, 0.473670125007629f, 0.660477638244629f, 0.473547190427780f, 0.660840749740601f, 0.473423957824707f, 0.661203861236572f, 0.473300457000732f, 0.661566793918610f, 0.473176687955856f, 0.661929666996002f, 0.473052620887756f, 0.662292480468750f, 0.472928285598755f, 0.662655174732208f, 0.472803652286530f, 0.663017749786377f, 0.472678780555725f, 0.663380205631256f, 0.472553610801697f, 0.663742601871490f, 0.472428143024445f, 0.664104938507080f, 0.472302407026291f, 0.664467096328735f, 0.472176402807236f, 0.664829254150391f, 0.472050130367279f, 0.665191233158112f, 0.471923559904099f, 0.665553152561188f, 0.471796721220016f, 0.665914952754974f, 0.471669614315033f, 0.666276693344116f, 0.471542209386826f, 0.666638314723969f, 0.471414536237717f, 0.666999816894531f, 0.471286594867706f, 0.667361259460449f, 0.471158385276794f, 0.667722582817078f, 0.471029877662659f, 0.668083786964417f, 0.470901101827621f, 0.668444931507111f, 0.470772027969360f, 0.668805956840515f, 0.470642685890198f, 0.669166862964630f, 0.470513075590134f, 0.669527709484100f, 0.470383197069168f, 0.669888436794281f, 0.470253020524979f, 0.670249044895172f, 0.470122605562210f, 0.670609593391418f, 0.469991862773895f, 0.670970022678375f, 0.469860881567001f, 0.671330332756042f, 0.469729602336884f, 0.671690583229065f, 0.469598054885864f, 0.672050714492798f, 0.469466239213943f, 0.672410726547241f, 0.469334155321121f, 0.672770678997040f, 0.469201773405075f, 0.673130512237549f, 0.469069123268127f, 0.673490226268768f, 0.468936175107956f, 0.673849821090698f, 0.468802988529205f, 0.674209356307983f, 0.468669503927231f, 0.674568772315979f, 0.468535751104355f, 0.674928069114685f, 0.468401730060577f, 0.675287246704102f, 0.468267410993576f, 0.675646364688873f, 0.468132823705673f, 0.676005363464355f, 0.467997968196869f, 0.676364302635193f, 0.467862844467163f, 0.676723062992096f, 0.467727422714233f, 0.677081763744354f, 0.467591762542725f, 0.677440345287323f, 0.467455804347992f, 0.677798807621002f, 0.467319577932358f, 0.678157210350037f, 0.467183053493500f, 0.678515493869781f, 0.467046260833740f, 0.678873658180237f, 0.466909229755402f, 0.679231703281403f, 0.466771900653839f, 0.679589688777924f, 0.466634273529053f, 0.679947495460510f, 0.466496407985687f, 0.680305242538452f, 0.466358244419098f, 0.680662930011749f, 0.466219812631607f, 0.681020438671112f, 0.466081112623215f, 0.681377887725830f, 0.465942144393921f, 0.681735157966614f, 0.465802878141403f, 0.682092368602753f, 0.465663343667984f, 0.682449519634247f, 0.465523540973663f, 0.682806491851807f, 0.465383470058441f, 0.683163404464722f, 0.465243130922318f, 0.683520197868347f, 0.465102523565292f, 0.683876872062683f, 0.464961618185043f, 0.684233427047729f, 0.464820444583893f, 0.684589862823486f, 0.464679002761841f, 0.684946238994598f, 0.464537292718887f, 0.685302436351776f, 0.464395314455032f, 0.685658574104309f, 0.464253038167953f, 0.686014592647552f, 0.464110493659973f, 0.686370551586151f, 0.463967710733414f, 0.686726331710815f, 0.463824629783630f, 0.687082052230835f, 0.463681250810623f, 0.687437593936920f, 0.463537633419037f, 0.687793076038361f, 0.463393747806549f, 0.688148438930511f, 0.463249564170837f, 0.688503682613373f, 0.463105112314224f, 0.688858866691589f, 0.462960392236710f, 0.689213871955872f, 0.462815403938293f, 0.689568817615509f, 0.462670147418976f, 0.689923584461212f, 0.462524622678757f, 0.690278291702271f, 0.462378799915314f, 0.690632879734039f, 0.462232738733292f, 0.690987348556519f, 0.462086379528046f, 0.691341698169708f, 0.461939752101898f, 0.691695988178253f, 0.461792886257172f, 0.692050099372864f, 0.461645722389221f, 0.692404091358185f, 0.461498260498047f, 0.692758023738861f, 0.461350560188293f, 0.693111836910248f, 0.461202591657639f, 0.693465530872345f, 0.461054325103760f, 0.693819046020508f, 0.460905820131302f, 0.694172501564026f, 0.460757017135620f, 0.694525837898254f, 0.460607945919037f, 0.694879114627838f, 0.460458606481552f, 0.695232212543488f, 0.460309028625488f, 0.695585191249847f, 0.460159152746201f, 0.695938050746918f, 0.460008978843689f, 0.696290850639343f, 0.459858566522598f, 0.696643471717834f, 0.459707885980606f, 0.696996033191681f, 0.459556937217712f, 0.697348415851593f, 0.459405690431595f, 0.697700738906860f, 0.459254205226898f, 0.698052942752838f, 0.459102421998978f, 0.698404967784882f, 0.458950400352478f, 0.698756933212280f, 0.458798080682755f, 0.699108779430389f, 0.458645492792130f, 0.699460506439209f, 0.458492636680603f, 0.699812114238739f, 0.458339542150497f, 0.700163602828979f, 0.458186149597168f, 0.700514972209930f, 0.458032488822937f, 0.700866222381592f, 0.457878559827805f, 0.701217353343964f, 0.457724362611771f, 0.701568365097046f, 0.457569897174835f, 0.701919257640839f, 0.457415163516998f, 0.702270030975342f, 0.457260161638260f, 0.702620685100555f, 0.457104891538620f, 0.702971220016479f, 0.456949323415756f, 0.703321635723114f, 0.456793516874313f, 0.703671932220459f, 0.456637442111969f, 0.704022109508514f, 0.456481099128723f, 0.704372167587280f, 0.456324487924576f, 0.704722046852112f, 0.456167578697205f, 0.705071866512299f, 0.456010431051254f, 0.705421566963196f, 0.455853015184402f, 0.705771148204803f, 0.455695331096649f, 0.706120610237122f, 0.455537378787994f, 0.706469953060150f, 0.455379128456116f, 0.706819176673889f, 0.455220639705658f, 0.707168221473694f, 0.455061882734299f, 0.707517206668854f, 0.454902857542038f, 0.707866072654724f, 0.454743564128876f, 0.708214759826660f, 0.454584002494812f, 0.708563387393951f, 0.454424172639847f, 0.708911836147308f, 0.454264044761658f, 0.709260225296021f, 0.454103678464890f, 0.709608435630798f, 0.453943043947220f, 0.709956526756287f, 0.453782171010971f, 0.710304558277130f, 0.453621000051498f, 0.710652410984039f, 0.453459560871124f, 0.711000144481659f, 0.453297853469849f, 0.711347758769989f, 0.453135877847672f, 0.711695253849030f, 0.452973634004593f, 0.712042629718781f, 0.452811151742935f, 0.712389826774597f, 0.452648371458054f, 0.712736964225769f, 0.452485352754593f, 0.713083922863007f, 0.452322036027908f, 0.713430821895599f, 0.452158480882645f, 0.713777542114258f, 0.451994657516479f, 0.714124143123627f, 0.451830536127090f, 0.714470624923706f, 0.451666176319122f, 0.714816987514496f, 0.451501548290253f, 0.715163230895996f, 0.451336652040482f, 0.715509355068207f, 0.451171487569809f, 0.715855300426483f, 0.451006084680557f, 0.716201186180115f, 0.450840383768082f, 0.716546893119812f, 0.450674414634705f, 0.716892480850220f, 0.450508207082748f, 0.717238008975983f, 0.450341701507568f, 0.717583298683167f, 0.450174957513809f, 0.717928528785706f, 0.450007945299149f, 0.718273639678955f, 0.449840664863586f, 0.718618571758270f, 0.449673116207123f, 0.718963444232941f, 0.449505299329758f, 0.719308137893677f, 0.449337244033813f, 0.719652712345123f, 0.449168890714645f, 0.719997107982636f, 0.449000298976898f, 0.720341444015503f, 0.448831409215927f, 0.720685660839081f, 0.448662281036377f, 0.721029698848724f, 0.448492884635925f, 0.721373617649078f, 0.448323249816895f, 0.721717417240143f, 0.448153316974640f, 0.722061097621918f, 0.447983115911484f, 0.722404599189758f, 0.447812676429749f, 0.722747981548309f, 0.447641968727112f, 0.723091304302216f, 0.447470992803574f, 0.723434448242188f, 0.447299748659134f, 0.723777413368225f, 0.447128236293793f, 0.724120318889618f, 0.446956485509872f, 0.724463045597076f, 0.446784436702728f, 0.724805653095245f, 0.446612149477005f, 0.725148141384125f, 0.446439594030380f, 0.725490510463715f, 0.446266770362854f, 0.725832700729370f, 0.446093708276749f, 0.726174771785736f, 0.445920348167419f, 0.726516723632813f, 0.445746749639511f, 0.726858556270599f, 0.445572882890701f, 0.727200269699097f, 0.445398747920990f, 0.727541804313660f, 0.445224374532700f, 0.727883219718933f, 0.445049703121185f, 0.728224515914917f, 0.444874793291092f, 0.728565633296967f, 0.444699615240097f, 0.728906631469727f, 0.444524168968201f, 0.729247510433197f, 0.444348484277725f, 0.729588270187378f, 0.444172531366348f, 0.729928910732269f, 0.443996280431747f, 0.730269372463226f, 0.443819820880890f, 0.730609714984894f, 0.443643063306808f, 0.730949878692627f, 0.443466067314148f, 0.731289982795715f, 0.443288803100586f, 0.731629908084869f, 0.443111270666122f, 0.731969714164734f, 0.442933470010757f, 0.732309341430664f, 0.442755430936813f, 0.732648849487305f, 0.442577123641968f, 0.732988238334656f, 0.442398548126221f, 0.733327507972717f, 0.442219734191895f, 0.733666598796844f, 0.442040622234344f, 0.734005570411682f, 0.441861271858215f, 0.734344422817230f, 0.441681683063507f, 0.734683096408844f, 0.441501796245575f, 0.735021650791168f, 0.441321671009064f, 0.735360085964203f, 0.441141277551651f, 0.735698342323303f, 0.440960645675659f, 0.736036539077759f, 0.440779715776443f, 0.736374497413635f, 0.440598547458649f, 0.736712396144867f, 0.440417140722275f, 0.737050116062164f, 0.440235435962677f, 0.737387716770172f, 0.440053492784500f, 0.737725138664246f, 0.439871311187744f, 0.738062441349030f, 0.439688831567764f, 0.738399624824524f, 0.439506113529205f, 0.738736629486084f, 0.439323127269745f, 0.739073514938354f, 0.439139902591705f, 0.739410281181335f, 0.438956409692764f, 0.739746868610382f, 0.438772648572922f, 0.740083336830139f, 0.438588619232178f, 0.740419685840607f, 0.438404351472855f, 0.740755856037140f, 0.438219845294952f, 0.741091907024384f, 0.438035041093826f, 0.741427779197693f, 0.437849998474121f, 0.741763532161713f, 0.437664687633514f, 0.742099165916443f, 0.437479138374329f, 0.742434620857239f, 0.437293320894241f, 0.742769956588745f, 0.437107264995575f, 0.743105113506317f, 0.436920911073685f, 0.743440151214600f, 0.436734348535538f, 0.743775069713593f, 0.436547487974167f, 0.744109809398651f, 0.436360388994217f, 0.744444429874420f, 0.436173021793365f, 0.744778931140900f, 0.435985416173935f, 0.745113253593445f, 0.435797542333603f, 0.745447397232056f, 0.435609430074692f, 0.745781481266022f, 0.435421019792557f, 0.746115326881409f, 0.435232400894165f, 0.746449112892151f, 0.435043483972549f, 0.746782720088959f, 0.434854328632355f, 0.747116148471832f, 0.434664934873581f, 0.747449457645416f, 0.434475272893906f, 0.747782647609711f, 0.434285342693329f, 0.748115658760071f, 0.434095174074173f, 0.748448550701141f, 0.433904737234116f, 0.748781263828278f, 0.433714061975479f, 0.749113857746124f, 0.433523118495941f, 0.749446272850037f, 0.433331936597824f, 0.749778568744659f, 0.433140486478806f, 0.750110685825348f, 0.432948768138886f, 0.750442683696747f, 0.432756811380386f, 0.750774562358856f, 0.432564586400986f, 0.751106262207031f, 0.432372123003006f, 0.751437783241272f, 0.432179391384125f, 0.751769185066223f, 0.431986421346664f, 0.752100467681885f, 0.431793183088303f, 0.752431571483612f, 0.431599706411362f, 0.752762496471405f, 0.431405961513519f, 0.753093302249908f, 0.431211978197098f, 0.753423988819122f, 0.431017726659775f, 0.753754496574402f, 0.430823236703873f, 0.754084885120392f, 0.430628478527069f, 0.754415094852448f, 0.430433481931686f, 0.754745125770569f, 0.430238217115402f, 0.755075037479401f, 0.430042684078217f, 0.755404829978943f, 0.429846942424774f, 0.755734443664551f, 0.429650902748108f, 0.756063878536224f, 0.429454624652863f, 0.756393194198608f, 0.429258108139038f, 0.756722390651703f, 0.429061323404312f, 0.757051348686218f, 0.428864300251007f, 0.757380247116089f, 0.428667008876801f, 0.757708966732025f, 0.428469479084015f, 0.758037507534027f, 0.428271710872650f, 0.758365929126740f, 0.428073674440384f, 0.758694171905518f, 0.427875369787216f, 0.759022235870361f, 0.427676826715469f, 0.759350180625916f, 0.427478045225143f, 0.759678006172180f, 0.427278995513916f, 0.760005652904511f, 0.427079707384110f, 0.760333120822906f, 0.426880151033401f, 0.760660469532013f, 0.426680356264114f, 0.760987639427185f, 0.426480293273926f, 0.761314690113068f, 0.426279991865158f, 0.761641561985016f, 0.426079452037811f, 0.761968255043030f, 0.425878643989563f, 0.762294828891754f, 0.425677597522736f, 0.762621283531189f, 0.425476282835007f, 0.762947499752045f, 0.425274729728699f, 0.763273596763611f, 0.425072938203812f, 0.763599574565887f, 0.424870878458023f, 0.763925373554230f, 0.424668580293655f, 0.764250993728638f, 0.424466013908386f, 0.764576494693756f, 0.424263238906860f, 0.764901816844940f, 0.424060165882111f, 0.765226960182190f, 0.423856884241104f, 0.765551984310150f, 0.423653304576874f, 0.765876889228821f, 0.423449516296387f, 0.766201555728912f, 0.423245459794998f, 0.766526103019714f, 0.423041164875031f, 0.766850471496582f, 0.422836631536484f, 0.767174720764160f, 0.422631829977036f, 0.767498791217804f, 0.422426789999008f, 0.767822742462158f, 0.422221481800079f, 0.768146514892578f, 0.422015935182571f, 0.768470108509064f, 0.421810150146484f, 0.768793523311615f, 0.421604126691818f, 0.769116818904877f, 0.421397835016251f, 0.769439935684204f, 0.421191304922104f, 0.769762933254242f, 0.420984506607056f, 0.770085752010345f, 0.420777499675751f, 0.770408391952515f, 0.420570224523544f, 0.770730912685394f, 0.420362681150436f, 0.771053194999695f, 0.420154929161072f, 0.771375417709351f, 0.419946908950806f, 0.771697402000427f, 0.419738620519638f, 0.772019267082214f, 0.419530123472214f, 0.772340953350067f, 0.419321358203888f, 0.772662520408630f, 0.419112354516983f, 0.772983849048615f, 0.418903112411499f, 0.773305058479309f, 0.418693602085114f, 0.773626148700714f, 0.418483853340149f, 0.773947000503540f, 0.418273866176605f, 0.774267733097076f, 0.418063640594482f, 0.774588346481323f, 0.417853146791458f, 0.774908721446991f, 0.417642414569855f, 0.775228977203369f, 0.417431443929672f, 0.775549054145813f, 0.417220205068588f, 0.775869011878967f, 0.417008757591248f, 0.776188731193542f, 0.416797041893005f, 0.776508331298828f, 0.416585087776184f, 0.776827812194824f, 0.416372895240784f, 0.777147054672241f, 0.416160434484482f, 0.777466177940369f, 0.415947735309601f, 0.777785122394562f, 0.415734797716141f, 0.778103888034821f, 0.415521621704102f, 0.778422534465790f, 0.415308207273483f, 0.778741002082825f, 0.415094524621964f, 0.779059290885925f, 0.414880603551865f, 0.779377400875092f, 0.414666473865509f, 0.779695332050323f, 0.414452046155930f, 0.780013144016266f, 0.414237409830093f, 0.780330777168274f, 0.414022535085678f, 0.780648231506348f, 0.413807392120361f, 0.780965566635132f, 0.413592010736465f, 0.781282722949982f, 0.413376390933990f, 0.781599700450897f, 0.413160532712936f, 0.781916499137878f, 0.412944436073303f, 0.782233119010925f, 0.412728071212769f, 0.782549619674683f, 0.412511497735977f, 0.782865881919861f, 0.412294656038284f, 0.783182024955750f, 0.412077575922012f, 0.783498048782349f, 0.411860257387161f, 0.783813834190369f, 0.411642700433731f, 0.784129500389099f, 0.411424905061722f, 0.784444928169250f, 0.411206841468811f, 0.784760236740112f, 0.410988569259644f, 0.785075426101685f, 0.410770028829575f, 0.785390377044678f, 0.410551249980927f, 0.785705149173737f, 0.410332232713699f, 0.786019802093506f, 0.410112977027893f, 0.786334276199341f, 0.409893482923508f, 0.786648571491241f, 0.409673750400543f, 0.786962687969208f, 0.409453779459000f, 0.787276685237885f, 0.409233570098877f, 0.787590444087982f, 0.409013092517853f, 0.787904083728790f, 0.408792406320572f, 0.788217544555664f, 0.408571451902390f, 0.788530826568604f, 0.408350288867950f, 0.788843929767609f, 0.408128857612610f, 0.789156913757324f, 0.407907217741013f, 0.789469659328461f, 0.407685309648514f, 0.789782285690308f, 0.407463163137436f, 0.790094733238220f, 0.407240778207779f, 0.790407001972198f, 0.407018154859543f, 0.790719091892242f, 0.406795293092728f, 0.791031002998352f, 0.406572192907333f, 0.791342735290527f, 0.406348884105682f, 0.791654348373413f, 0.406125307083130f, 0.791965723037720f, 0.405901491641998f, 0.792276978492737f, 0.405677437782288f, 0.792588055133820f, 0.405453115701675f, 0.792898952960968f, 0.405228585004807f, 0.793209671974182f, 0.405003815889359f, 0.793520212173462f, 0.404778808355331f, 0.793830573558807f, 0.404553562402725f, 0.794140756130219f, 0.404328078031540f, 0.794450819492340f, 0.404102355241776f, 0.794760644435883f, 0.403876423835754f, 0.795070350170136f, 0.403650224208832f, 0.795379877090454f, 0.403423786163330f, 0.795689165592194f, 0.403197109699249f, 0.795998334884644f, 0.402970194816589f, 0.796307325363159f, 0.402743041515350f, 0.796616137027740f, 0.402515679597855f, 0.796924769878387f, 0.402288049459457f, 0.797233223915100f, 0.402060180902481f, 0.797541558742523f, 0.401832103729248f, 0.797849655151367f, 0.401603758335114f, 0.798157572746277f, 0.401375204324722f, 0.798465371131897f, 0.401146411895752f, 0.798772931098938f, 0.400917351245880f, 0.799080371856689f, 0.400688081979752f, 0.799387574195862f, 0.400458574295044f, 0.799694657325745f, 0.400228828191757f, 0.800001561641693f, 0.399998843669891f, 0.800308227539063f, 0.399768620729446f, 0.800614774227142f, 0.399538189172745f, 0.800921142101288f, 0.399307489395142f, 0.801227271556854f, 0.399076581001282f, 0.801533281803131f, 0.398845434188843f, 0.801839113235474f, 0.398614019155502f, 0.802144765853882f, 0.398382395505905f, 0.802450239658356f, 0.398150533437729f, 0.802755534648895f, 0.397918462753296f, 0.803060650825500f, 0.397686123847961f, 0.803365588188171f, 0.397453576326370f, 0.803670346736908f, 0.397220760583878f, 0.803974866867065f, 0.396987736225128f, 0.804279267787933f, 0.396754473447800f, 0.804583489894867f, 0.396520972251892f, 0.804887533187866f, 0.396287262439728f, 0.805191397666931f, 0.396053284406662f, 0.805495083332062f, 0.395819097757339f, 0.805798590183258f, 0.395584672689438f, 0.806101918220520f, 0.395350009202957f, 0.806405067443848f, 0.395115107297897f, 0.806707978248596f, 0.394879996776581f, 0.807010769844055f, 0.394644618034363f, 0.807313382625580f, 0.394409030675888f, 0.807615816593170f, 0.394173204898834f, 0.807918012142181f, 0.393937170505524f, 0.808220088481903f, 0.393700867891312f, 0.808521986007690f, 0.393464356660843f, 0.808823645114899f, 0.393227607011795f, 0.809125185012817f, 0.392990618944168f, 0.809426486492157f, 0.392753422260284f, 0.809727668762207f, 0.392515957355499f, 0.810028612613678f, 0.392278283834457f, 0.810329377651215f, 0.392040401697159f, 0.810629963874817f, 0.391802251338959f, 0.810930430889130f, 0.391563892364502f, 0.811230659484863f, 0.391325294971466f, 0.811530709266663f, 0.391086459159851f, 0.811830580234528f, 0.390847414731979f, 0.812130272388458f, 0.390608131885529f, 0.812429726123810f, 0.390368610620499f, 0.812729060649872f, 0.390128880739212f, 0.813028216362000f, 0.389888882637024f, 0.813327133655548f, 0.389648675918579f, 0.813625931739807f, 0.389408260583878f, 0.813924491405487f, 0.389167606830597f, 0.814222872257233f, 0.388926714658737f, 0.814521074295044f, 0.388685584068298f, 0.814819097518921f, 0.388444244861603f, 0.815116941928864f, 0.388202667236328f, 0.815414607524872f, 0.387960851192474f, 0.815712094306946f, 0.387718826532364f, 0.816009342670441f, 0.387476563453674f, 0.816306471824646f, 0.387234061956406f, 0.816603362560272f, 0.386991351842880f, 0.816900074481964f, 0.386748403310776f, 0.817196667194366f, 0.386505216360092f, 0.817493021488190f, 0.386261820793152f, 0.817789137363434f, 0.386018186807632f, 0.818085134029388f, 0.385774344205856f, 0.818380951881409f, 0.385530263185501f, 0.818676531314850f, 0.385285943746567f, 0.818971931934357f, 0.385041415691376f, 0.819267153739929f, 0.384796649217606f, 0.819562196731567f, 0.384551674127579f, 0.819857060909271f, 0.384306460618973f, 0.820151746273041f, 0.384061008691788f, 0.820446193218231f, 0.383815348148346f, 0.820740520954132f, 0.383569449186325f, 0.821034610271454f, 0.383323341608047f, 0.821328520774841f, 0.383076995611191f, 0.821622252464294f, 0.382830440998077f, 0.821915745735168f, 0.382583618164063f, 0.822209119796753f, 0.382336616516113f, 0.822502255439758f, 0.382089376449585f, 0.822795212268829f, 0.381841897964478f, 0.823087990283966f, 0.381594210863113f, 0.823380589485168f, 0.381346285343170f, 0.823673009872437f, 0.381098151206970f, 0.823965191841125f, 0.380849778652191f, 0.824257194995880f, 0.380601197481155f, 0.824549019336700f, 0.380352377891541f, 0.824840664863586f, 0.380103349685669f, 0.825132071971893f, 0.379854083061218f, 0.825423359870911f, 0.379604607820511f, 0.825714409351349f, 0.379354894161224f, 0.826005280017853f, 0.379104942083359f, 0.826295912265778f, 0.378854811191559f, 0.826586425304413f, 0.378604412078857f, 0.826876699924469f, 0.378353834152222f, 0.827166795730591f, 0.378102988004684f, 0.827456712722778f, 0.377851963043213f, 0.827746450901031f, 0.377600699663162f, 0.828035950660706f, 0.377349197864532f, 0.828325271606445f, 0.377097487449646f, 0.828614413738251f, 0.376845568418503f, 0.828903317451477f, 0.376593410968781f, 0.829192101955414f, 0.376341015100479f, 0.829480648040771f, 0.376088410615921f, 0.829769015312195f, 0.375835597515106f, 0.830057144165039f, 0.375582575798035f, 0.830345153808594f, 0.375329315662384f, 0.830632925033569f, 0.375075817108154f, 0.830920517444611f, 0.374822109937668f, 0.831207871437073f, 0.374568194150925f, 0.831495106220245f, 0.374314039945602f, 0.831782102584839f, 0.374059677124023f, 0.832068860530853f, 0.373805105686188f, 0.832355499267578f, 0.373550295829773f, 0.832641899585724f, 0.373295277357101f, 0.832928121089935f, 0.373040050268173f, 0.833214163780212f, 0.372784584760666f, 0.833499968051910f, 0.372528880834579f, 0.833785593509674f, 0.372272998094559f, 0.834071040153503f, 0.372016876935959f, 0.834356248378754f, 0.371760547161102f, 0.834641277790070f, 0.371503978967667f, 0.834926128387451f, 0.371247202157974f, 0.835210800170898f, 0.370990216732025f, 0.835495233535767f, 0.370732992887497f, 0.835779488086700f, 0.370475560426712f, 0.836063504219055f, 0.370217919349670f, 0.836347401142120f, 0.369960039854050f, 0.836631059646606f, 0.369701951742172f, 0.836914479732513f, 0.369443655014038f, 0.837197780609131f, 0.369185149669647f, 0.837480843067169f, 0.368926405906677f, 0.837763667106628f, 0.368667453527451f, 0.838046371936798f, 0.368408292531967f, 0.838328838348389f, 0.368148893117905f, 0.838611066341400f, 0.367889285087585f, 0.838893175125122f, 0.367629468441010f, 0.839175045490265f, 0.367369443178177f, 0.839456677436829f, 0.367109179496765f, 0.839738130569458f, 0.366848707199097f, 0.840019404888153f, 0.366588026285172f, 0.840300500392914f, 0.366327136754990f, 0.840581357479095f, 0.366066008806229f, 0.840862035751343f, 0.365804702043533f, 0.841142535209656f, 0.365543156862259f, 0.841422796249390f, 0.365281373262405f, 0.841702818870544f, 0.365019410848618f, 0.841982722282410f, 0.364757210016251f, 0.842262387275696f, 0.364494800567627f, 0.842541813850403f, 0.364232182502747f, 0.842821121215820f, 0.363969355821610f, 0.843100130558014f, 0.363706320524216f, 0.843379020690918f, 0.363443046808243f, 0.843657672405243f, 0.363179564476013f, 0.843936145305634f, 0.362915903329849f, 0.844214379787445f, 0.362651973962784f, 0.844492435455322f, 0.362387865781784f, 0.844770252704620f, 0.362123548984528f, 0.845047891139984f, 0.361858993768692f, 0.845325350761414f, 0.361594229936600f, 0.845602571964264f, 0.361329287290573f, 0.845879614353180f, 0.361064106225967f, 0.846156477928162f, 0.360798716545105f, 0.846433103084564f, 0.360533088445663f, 0.846709489822388f, 0.360267281532288f, 0.846985757350922f, 0.360001266002655f, 0.847261726856232f, 0.359735012054443f, 0.847537577152252f, 0.359468549489975f, 0.847813189029694f, 0.359201908111572f, 0.848088562488556f, 0.358935028314590f, 0.848363757133484f, 0.358667939901352f, 0.848638772964478f, 0.358400642871857f, 0.848913550376892f, 0.358133137226105f, 0.849188148975372f, 0.357865422964096f, 0.849462509155273f, 0.357597470283508f, 0.849736690521240f, 0.357329338788986f, 0.850010633468628f, 0.357060998678207f, 0.850284397602081f, 0.356792420148849f, 0.850557923316956f, 0.356523662805557f, 0.850831270217896f, 0.356254696846008f, 0.851104438304901f, 0.355985492467880f, 0.851377367973328f, 0.355716109275818f, 0.851650118827820f, 0.355446487665176f, 0.851922631263733f, 0.355176687240601f, 0.852194905281067f, 0.354906648397446f, 0.852467060089111f, 0.354636400938034f, 0.852738916873932f, 0.354365974664688f, 0.853010654449463f, 0.354095309972763f, 0.853282094001770f, 0.353824466466904f, 0.853553414344788f, 0.353553384542465f, 0.853824436664581f, 0.353282123804092f, 0.854095339775085f, 0.353010624647141f, 0.854365944862366f, 0.352738946676254f, 0.854636430740356f, 0.352467030286789f, 0.854906618595123f, 0.352194935083389f, 0.855176687240601f, 0.351922631263733f, 0.855446517467499f, 0.351650089025497f, 0.855716109275818f, 0.351377367973328f, 0.855985522270203f, 0.351104438304901f, 0.856254696846008f, 0.350831300020218f, 0.856523692607880f, 0.350557953119278f, 0.856792449951172f, 0.350284397602081f, 0.857060968875885f, 0.350010633468628f, 0.857329368591309f, 0.349736660718918f, 0.857597470283508f, 0.349462509155273f, 0.857865393161774f, 0.349188119173050f, 0.858133137226105f, 0.348913550376892f, 0.858400642871857f, 0.348638743162155f, 0.858667910099030f, 0.348363757133484f, 0.858934998512268f, 0.348088562488556f, 0.859201908111572f, 0.347813159227371f, 0.859468579292297f, 0.347537547349930f, 0.859735012054443f, 0.347261756658554f, 0.860001266002655f, 0.346985727548599f, 0.860267281532288f, 0.346709519624710f, 0.860533118247986f, 0.346433073282242f, 0.860798716545105f, 0.346156448125839f, 0.861064076423645f, 0.345879614353180f, 0.861329257488251f, 0.345602601766586f, 0.861594259738922f, 0.345325350761414f, 0.861859023571014f, 0.345047920942307f, 0.862123548984528f, 0.344770282506943f, 0.862387895584106f, 0.344492435455322f, 0.862652003765106f, 0.344214379787445f, 0.862915873527527f, 0.343936115503311f, 0.863179564476013f, 0.343657672405243f, 0.863443076610565f, 0.343379020690918f, 0.863706290721893f, 0.343100160360336f, 0.863969385623932f, 0.342821091413498f, 0.864232182502747f, 0.342541843652725f, 0.864494800567627f, 0.342262357473373f, 0.864757239818573f, 0.341982692480087f, 0.865019381046295f, 0.341702848672867f, 0.865281403064728f, 0.341422766447067f, 0.865543127059937f, 0.341142505407333f, 0.865804672241211f, 0.340862035751343f, 0.866066038608551f, 0.340581357479095f, 0.866327106952667f, 0.340300500392914f, 0.866588056087494f, 0.340019434690475f, 0.866848707199097f, 0.339738160371780f, 0.867109179496765f, 0.339456677436829f, 0.867369413375854f, 0.339175015687943f, 0.867629468441010f, 0.338893145322800f, 0.867889285087585f, 0.338611096143723f, 0.868148922920227f, 0.338328808546066f, 0.868408262729645f, 0.338046342134476f, 0.868667483329773f, 0.337763696908951f, 0.868926405906677f, 0.337480813264847f, 0.869185149669647f, 0.337197750806808f, 0.869443655014038f, 0.336914509534836f, 0.869701981544495f, 0.336631029844284f, 0.869960069656372f, 0.336347371339798f, 0.870217919349670f, 0.336063534021378f, 0.870475590229034f, 0.335779488086700f, 0.870733022689819f, 0.335495233535767f, 0.870990216732025f, 0.335210770368576f, 0.871247172355652f, 0.334926128387451f, 0.871503949165344f, 0.334641307592392f, 0.871760547161102f, 0.334356248378754f, 0.872016847133636f, 0.334071010351181f, 0.872272968292236f, 0.333785593509674f, 0.872528910636902f, 0.333499968051910f, 0.872784554958344f, 0.333214133977890f, 0.873040020465851f, 0.332928121089935f, 0.873295307159424f, 0.332641899585724f, 0.873550295829773f, 0.332355499267578f, 0.873805105686188f, 0.332068890333176f, 0.874059677124023f, 0.331782072782516f, 0.874314069747925f, 0.331495076417923f, 0.874568223953247f, 0.331207901239395f, 0.874822139739990f, 0.330920487642288f, 0.875075817108154f, 0.330632925033569f, 0.875329315662384f, 0.330345153808594f, 0.875582575798035f, 0.330057173967361f, 0.875835597515106f, 0.329769015312195f, 0.876088440418243f, 0.329480648040771f, 0.876341044902802f, 0.329192101955414f, 0.876593410968781f, 0.328903347253799f, 0.876845538616180f, 0.328614413738251f, 0.877097487449646f, 0.328325271606445f, 0.877349197864532f, 0.328035950660706f, 0.877600669860840f, 0.327746421098709f, 0.877851963043213f, 0.327456712722778f, 0.878103017807007f, 0.327166795730591f, 0.878353834152222f, 0.326876699924469f, 0.878604412078857f, 0.326586425304413f, 0.878854811191559f, 0.326295942068100f, 0.879104971885681f, 0.326005280017853f, 0.879354894161224f, 0.325714409351349f, 0.879604578018188f, 0.325423330068588f, 0.879854083061218f, 0.325132101774216f, 0.880103349685669f, 0.324840664863586f, 0.880352377891541f, 0.324549019336700f, 0.880601167678833f, 0.324257194995880f, 0.880849778652191f, 0.323965191841125f, 0.881098151206970f, 0.323672980070114f, 0.881346285343170f, 0.323380589485168f, 0.881594181060791f, 0.323088020086288f, 0.881841897964478f, 0.322795242071152f, 0.882089376449585f, 0.322502255439758f, 0.882336616516113f, 0.322209119796753f, 0.882583618164063f, 0.321915775537491f, 0.882830440998077f, 0.321622252464294f, 0.883076965808868f, 0.321328520774841f, 0.883323311805725f, 0.321034610271454f, 0.883569478988647f, 0.320740520954132f, 0.883815348148346f, 0.320446223020554f, 0.884061038494110f, 0.320151746273041f, 0.884306430816650f, 0.319857090711594f, 0.884551644325256f, 0.319562226533890f, 0.884796679019928f, 0.319267183542252f, 0.885041415691376f, 0.318971961736679f, 0.885285973548889f, 0.318676531314850f, 0.885530233383179f, 0.318380922079086f, 0.885774314403534f, 0.318085134029388f, 0.886018216609955f, 0.317789167165756f, 0.886261820793152f, 0.317492991685867f, 0.886505246162415f, 0.317196637392044f, 0.886748373508453f, 0.316900104284287f, 0.886991322040558f, 0.316603392362595f, 0.887234091758728f, 0.316306471824646f, 0.887476563453674f, 0.316009372472763f, 0.887718796730042f, 0.315712094306946f, 0.887960851192474f, 0.315414607524872f, 0.888202667236328f, 0.315116971731186f, 0.888444244861603f, 0.314819127321243f, 0.888685584068298f, 0.314521104097366f, 0.888926684856415f, 0.314222872257233f, 0.889167606830597f, 0.313924491405487f, 0.889408230781555f, 0.313625901937485f, 0.889648675918579f, 0.313327133655548f, 0.889888882637024f, 0.313028186559677f, 0.890128850936890f, 0.312729060649872f, 0.890368640422821f, 0.312429755926132f, 0.890608131885529f, 0.312130242586136f, 0.890847444534302f, 0.311830550432205f, 0.891086459159851f, 0.311530679464340f, 0.891325294971466f, 0.311230629682541f, 0.891563892364502f, 0.310930401086807f, 0.891802251338959f, 0.310629993677139f, 0.892040371894836f, 0.310329377651215f, 0.892278313636780f, 0.310028612613678f, 0.892515957355499f, 0.309727638959885f, 0.892753422260284f, 0.309426486492157f, 0.892990648746490f, 0.309125155210495f, 0.893227577209473f, 0.308823645114899f, 0.893464326858521f, 0.308521956205368f, 0.893700897693634f, 0.308220088481903f, 0.893937170505524f, 0.307918041944504f, 0.894173204898834f, 0.307615786790848f, 0.894409060478210f, 0.307313382625580f, 0.894644618034363f, 0.307010769844055f, 0.894879996776581f, 0.306708008050919f, 0.895115137100220f, 0.306405037641525f, 0.895349979400635f, 0.306101888418198f, 0.895584642887115f, 0.305798590183258f, 0.895819067955017f, 0.305495083332062f, 0.896053314208984f, 0.305191397666931f, 0.896287262439728f, 0.304887533187866f, 0.896520972251892f, 0.304583519697189f, 0.896754503250122f, 0.304279297590256f, 0.896987736225128f, 0.303974896669388f, 0.897220790386200f, 0.303670316934586f, 0.897453546524048f, 0.303365558385849f, 0.897686123847961f, 0.303060621023178f, 0.897918462753296f, 0.302755534648895f, 0.898150563240051f, 0.302450239658356f, 0.898382425308228f, 0.302144765853882f, 0.898614048957825f, 0.301839113235474f, 0.898845434188843f, 0.301533311605453f, 0.899076581001282f, 0.301227301359177f, 0.899307489395142f, 0.300921112298965f, 0.899538159370422f, 0.300614774227142f, 0.899768650531769f, 0.300308227539063f, 0.899998843669891f, 0.300001531839371f, 0.900228857994080f, 0.299694657325745f, 0.900458574295044f, 0.299387603998184f, 0.900688111782074f, 0.299080342054367f, 0.900917351245880f, 0.298772931098938f, 0.901146411895752f, 0.298465341329575f, 0.901375174522400f, 0.298157602548599f, 0.901603758335114f, 0.297849655151367f, 0.901832103729248f, 0.297541528940201f, 0.902060210704803f, 0.297233253717422f, 0.902288019657135f, 0.296924799680710f, 0.902515649795532f, 0.296616137027740f, 0.902743041515350f, 0.296307325363159f, 0.902970194816589f, 0.295998334884644f, 0.903197109699249f, 0.295689195394516f, 0.903423786163330f, 0.295379847288132f, 0.903650224208832f, 0.295070350170136f, 0.903876423835754f, 0.294760644435883f, 0.904102385044098f, 0.294450789690018f, 0.904328107833862f, 0.294140785932541f, 0.904553592205048f, 0.293830573558807f, 0.904778838157654f, 0.293520182371140f, 0.905003845691681f, 0.293209642171860f, 0.905228614807129f, 0.292898923158646f, 0.905453145503998f, 0.292588025331497f, 0.905677437782288f, 0.292276978492737f, 0.905901491641998f, 0.291965723037720f, 0.906125307083130f, 0.291654318571091f, 0.906348884105682f, 0.291342735290527f, 0.906572222709656f, 0.291031002998352f, 0.906795322895050f, 0.290719062089920f, 0.907018184661865f, 0.290406972169876f, 0.907240808010101f, 0.290094703435898f, 0.907463192939758f, 0.289782285690308f, 0.907685279846191f, 0.289469659328461f, 0.907907187938690f, 0.289156883955002f, 0.908128857612610f, 0.288843959569931f, 0.908350288867950f, 0.288530826568604f, 0.908571481704712f, 0.288217544555664f, 0.908792436122894f, 0.287904083728790f, 0.909013092517853f, 0.287590473890305f, 0.909233570098877f, 0.287276685237885f, 0.909453809261322f, 0.286962717771530f, 0.909673750400543f, 0.286648571491241f, 0.909893512725830f, 0.286334276199341f, 0.910112977027893f, 0.286019802093506f, 0.910332262516022f, 0.285705178976059f, 0.910551249980927f, 0.285390377044678f, 0.910769999027252f, 0.285075396299362f, 0.910988569259644f, 0.284760266542435f, 0.911206841468811f, 0.284444957971573f, 0.911424875259399f, 0.284129470586777f, 0.911642670631409f, 0.283813834190369f, 0.911860227584839f, 0.283498018980026f, 0.912077546119690f, 0.283182054758072f, 0.912294626235962f, 0.282865911722183f, 0.912511467933655f, 0.282549589872360f, 0.912728071212769f, 0.282233119010925f, 0.912944436073303f, 0.281916469335556f, 0.913160502910614f, 0.281599670648575f, 0.913376390933990f, 0.281282693147659f, 0.913592040538788f, 0.280965566635132f, 0.913807392120361f, 0.280648261308670f, 0.914022505283356f, 0.280330777168274f, 0.914237439632416f, 0.280013144016266f, 0.914452075958252f, 0.279695361852646f, 0.914666473865509f, 0.279377400875092f, 0.914880633354187f, 0.279059261083603f, 0.915094554424286f, 0.278740972280502f, 0.915308177471161f, 0.278422504663467f, 0.915521621704102f, 0.278103888034821f, 0.915734827518463f, 0.277785122394562f, 0.915947735309601f, 0.277466177940369f, 0.916160404682159f, 0.277147054672241f, 0.916372895240784f, 0.276827782392502f, 0.916585087776184f, 0.276508361101151f, 0.916797041893005f, 0.276188760995865f, 0.917008757591248f, 0.275868982076645f, 0.917220234870911f, 0.275549083948135f, 0.917431414127350f, 0.275228977203369f, 0.917642414569855f, 0.274908751249313f, 0.917853116989136f, 0.274588316679001f, 0.918063640594482f, 0.274267762899399f, 0.918273866176605f, 0.273947030305862f, 0.918483853340149f, 0.273626148700714f, 0.918693602085114f, 0.273305088281631f, 0.918903112411499f, 0.272983878850937f, 0.919112324714661f, 0.272662490606308f, 0.919321358203888f, 0.272340953350067f, 0.919530093669891f, 0.272019267082214f, 0.919738650321960f, 0.271697402000427f, 0.919946908950806f, 0.271375387907028f, 0.920154929161072f, 0.271053224802017f, 0.920362710952759f, 0.270730882883072f, 0.920570194721222f, 0.270408391952515f, 0.920777499675751f, 0.270085722208023f, 0.920984506607056f, 0.269762933254242f, 0.921191275119781f, 0.269439965486526f, 0.921397805213928f, 0.269116818904877f, 0.921604096889496f, 0.268793523311615f, 0.921810150146484f, 0.268470078706741f, 0.922015964984894f, 0.268146485090256f, 0.922221481800079f, 0.267822742462158f, 0.922426760196686f, 0.267498821020126f, 0.922631800174713f, 0.267174720764160f, 0.922836601734161f, 0.266850501298904f, 0.923041164875031f, 0.266526103019714f, 0.923245489597321f, 0.266201555728912f, 0.923449516296387f, 0.265876859426498f, 0.923653304576874f, 0.265552014112473f, 0.923856854438782f, 0.265226989984512f, 0.924060165882111f, 0.264901816844940f, 0.924263238906860f, 0.264576494693756f, 0.924466013908386f, 0.264250993728638f, 0.924668610095978f, 0.263925373554230f, 0.924870908260345f, 0.263599574565887f, 0.925072908401489f, 0.263273626565933f, 0.925274729728699f, 0.262947499752045f, 0.925476312637329f, 0.262621253728867f, 0.925677597522736f, 0.262294828891754f, 0.925878643989563f, 0.261968284845352f, 0.926079452037811f, 0.261641561985016f, 0.926280021667480f, 0.261314690113068f, 0.926480293273926f, 0.260987639427185f, 0.926680326461792f, 0.260660469532013f, 0.926880121231079f, 0.260333120822906f, 0.927079677581787f, 0.260005623102188f, 0.927278995513916f, 0.259678006172180f, 0.927478015422821f, 0.259350210428238f, 0.927676856517792f, 0.259022265672684f, 0.927875399589539f, 0.258694142103195f, 0.928073644638062f, 0.258365899324417f, 0.928271710872650f, 0.258037507534027f, 0.928469479084015f, 0.257708936929703f, 0.928667008876801f, 0.257380217313766f, 0.928864300251007f, 0.257051378488541f, 0.929061353206635f, 0.256722360849380f, 0.929258108139038f, 0.256393194198608f, 0.929454624652863f, 0.256063878536224f, 0.929650902748108f, 0.255734413862228f, 0.929846942424774f, 0.255404800176620f, 0.930042684078217f, 0.255075037479401f, 0.930238187313080f, 0.254745125770569f, 0.930433452129364f, 0.254415065050125f, 0.930628478527069f, 0.254084855318069f, 0.930823206901550f, 0.253754496574402f, 0.931017756462097f, 0.253423988819122f, 0.931211948394775f, 0.253093332052231f, 0.931405961513519f, 0.252762526273727f, 0.931599736213684f, 0.252431541681290f, 0.931793212890625f, 0.252100437879562f, 0.931986451148987f, 0.251769185066223f, 0.932179391384125f, 0.251437783241272f, 0.932372152805328f, 0.251106232404709f, 0.932564616203308f, 0.250774532556534f, 0.932756841182709f, 0.250442683696747f, 0.932948768138886f, 0.250110685825348f, 0.933140456676483f, 0.249778553843498f, 0.933331906795502f, 0.249446272850037f, 0.933523118495941f, 0.249113827943802f, 0.933714091777802f, 0.248781248927116f, 0.933904767036438f, 0.248448520898819f, 0.934095203876495f, 0.248115643858910f, 0.934285342693329f, 0.247782632708550f, 0.934475243091583f, 0.247449472546577f, 0.934664964675903f, 0.247116148471832f, 0.934854328632355f, 0.246782705187798f, 0.935043513774872f, 0.246449097990990f, 0.935232400894165f, 0.246115356683731f, 0.935421049594879f, 0.245781451463699f, 0.935609400272369f, 0.245447427034378f, 0.935797572135925f, 0.245113238692284f, 0.935985386371613f, 0.244778916239738f, 0.936173021793365f, 0.244444444775581f, 0.936360359191895f, 0.244109839200974f, 0.936547517776489f, 0.243775084614754f, 0.936734318733215f, 0.243440181016922f, 0.936920940876007f, 0.243105143308640f, 0.937107264995575f, 0.242769956588745f, 0.937293350696564f, 0.242434620857239f, 0.937479138374329f, 0.242099151015282f, 0.937664687633514f, 0.241763532161713f, 0.937849998474121f, 0.241427779197693f, 0.938035070896149f, 0.241091892123222f, 0.938219845294952f, 0.240755841135979f, 0.938404381275177f, 0.240419670939446f, 0.938588619232178f, 0.240083336830139f, 0.938772618770599f, 0.239746883511543f, 0.938956379890442f, 0.239410281181335f, 0.939139902591705f, 0.239073529839516f, 0.939323127269745f, 0.238736644387245f, 0.939506113529205f, 0.238399609923363f, 0.939688861370087f, 0.238062441349030f, 0.939871311187744f, 0.237725138664246f, 0.940053522586823f, 0.237387686967850f, 0.940235435962677f, 0.237050101161003f, 0.940417110919952f, 0.236712381243706f, 0.940598547458649f, 0.236374512314796f, 0.940779745578766f, 0.236036509275436f, 0.940960645675659f, 0.235698372125626f, 0.941141307353973f, 0.235360085964203f, 0.941321671009064f, 0.235021665692329f, 0.941501796245575f, 0.234683111310005f, 0.941681683063507f, 0.234344407916069f, 0.941861271858215f, 0.234005570411682f, 0.942040622234344f, 0.233666598796844f, 0.942219734191895f, 0.233327493071556f, 0.942398548126221f, 0.232988253235817f, 0.942577123641968f, 0.232648864388466f, 0.942755401134491f, 0.232309341430664f, 0.942933499813080f, 0.231969684362412f, 0.943111240863800f, 0.231629893183708f, 0.943288803100586f, 0.231289967894554f, 0.943466067314148f, 0.230949893593788f, 0.943643093109131f, 0.230609700083733f, 0.943819820880890f, 0.230269357562065f, 0.943996310234070f, 0.229928880929947f, 0.944172501564026f, 0.229588270187378f, 0.944348454475403f, 0.229247525334358f, 0.944524168968201f, 0.228906646370888f, 0.944699645042419f, 0.228565633296967f, 0.944874763488770f, 0.228224486112595f, 0.945049703121185f, 0.227883204817772f, 0.945224344730377f, 0.227541789412498f, 0.945398747920990f, 0.227200239896774f, 0.945572853088379f, 0.226858556270599f, 0.945746779441834f, 0.226516738533974f, 0.945920348167419f, 0.226174786686897f, 0.946093678474426f, 0.225832715630531f, 0.946266770362854f, 0.225490495562553f, 0.946439623832703f, 0.225148141384125f, 0.946612179279327f, 0.224805667996407f, 0.946784436702728f, 0.224463045597076f, 0.946956455707550f, 0.224120303988457f, 0.947128236293793f, 0.223777428269386f, 0.947299718856812f, 0.223434418439865f, 0.947470963001251f, 0.223091274499893f, 0.947641968727112f, 0.222748011350632f, 0.947812676429749f, 0.222404599189758f, 0.947983145713806f, 0.222061067819595f, 0.948153316974640f, 0.221717402338982f, 0.948323249816895f, 0.221373617649078f, 0.948492884635925f, 0.221029683947563f, 0.948662281036377f, 0.220685631036758f, 0.948831439018250f, 0.220341444015503f, 0.949000298976898f, 0.219997137784958f, 0.949168920516968f, 0.219652697443962f, 0.949337244033813f, 0.219308122992516f, 0.949505329132080f, 0.218963414430618f, 0.949673116207123f, 0.218618586659431f, 0.949840664863586f, 0.218273624777794f, 0.950007975101471f, 0.217928543686867f, 0.950174987316132f, 0.217583328485489f, 0.950341701507568f, 0.217237979173660f, 0.950508177280426f, 0.216892510652542f, 0.950674414634705f, 0.216546908020973f, 0.950840353965759f, 0.216201186180115f, 0.951006054878235f, 0.215855330228806f, 0.951171517372131f, 0.215509355068207f, 0.951336681842804f, 0.215163245797157f, 0.951501548290253f, 0.214817002415657f, 0.951666176319122f, 0.214470639824867f, 0.951830565929413f, 0.214124158024788f, 0.951994657516479f, 0.213777542114258f, 0.952158451080322f, 0.213430806994438f, 0.952322065830231f, 0.213083937764168f, 0.952485322952271f, 0.212736949324608f, 0.952648401260376f, 0.212389841675758f, 0.952811121940613f, 0.212042599916458f, 0.952973663806915f, 0.211695238947868f, 0.953135907649994f, 0.211347743868828f, 0.953297853469849f, 0.211000129580498f, 0.953459560871124f, 0.210652396082878f, 0.953620970249176f, 0.210304543375969f, 0.953782141208649f, 0.209956556558609f, 0.953943073749542f, 0.209608450531960f, 0.954103708267212f, 0.209260210394859f, 0.954264044761658f, 0.208911851048470f, 0.954424142837524f, 0.208563387393951f, 0.954584002494812f, 0.208214774727821f, 0.954743564128876f, 0.207866057753563f, 0.954902827739716f, 0.207517206668854f, 0.955061912536621f, 0.207168251276016f, 0.955220639705658f, 0.206819161772728f, 0.955379128456116f, 0.206469938158989f, 0.955537378787994f, 0.206120610237122f, 0.955695331096649f, 0.205771163105965f, 0.955853044986725f, 0.205421581864357f, 0.956010460853577f, 0.205071896314621f, 0.956167578697205f, 0.204722076654434f, 0.956324458122253f, 0.204372137784958f, 0.956481099128723f, 0.204022079706192f, 0.956637442111969f, 0.203671902418137f, 0.956793546676636f, 0.203321605920792f, 0.956949353218079f, 0.202971190214157f, 0.957104861736298f, 0.202620655298233f, 0.957260131835938f, 0.202270001173019f, 0.957415163516998f, 0.201919227838516f, 0.957569897174835f, 0.201568335294724f, 0.957724332809448f, 0.201217323541641f, 0.957878530025482f, 0.200866192579269f, 0.958032488822937f, 0.200514942407608f, 0.958186149597168f, 0.200163587927818f, 0.958339512348175f, 0.199812099337578f, 0.958492636680603f, 0.199460506439209f, 0.958645522594452f, 0.199108779430389f, 0.958798050880432f, 0.198756948113441f, 0.958950400352478f, 0.198404997587204f, 0.959102451801300f, 0.198052927851677f, 0.959254205226898f, 0.197700738906860f, 0.959405720233917f, 0.197348430752754f, 0.959556937217712f, 0.196996018290520f, 0.959707856178284f, 0.196643486618996f, 0.959858596324921f, 0.196290835738182f, 0.960008978843689f, 0.195938065648079f, 0.960159122943878f, 0.195585191249847f, 0.960309028625488f, 0.195232197642326f, 0.960458636283875f, 0.194879084825516f, 0.960607945919037f, 0.194525867700577f, 0.960757017135620f, 0.194172516465187f, 0.960905790328979f, 0.193819075822830f, 0.961054325103760f, 0.193465501070023f, 0.961202561855316f, 0.193111822009087f, 0.961350560188293f, 0.192758023738861f, 0.961498260498047f, 0.192404121160507f, 0.961645722389221f, 0.192050099372864f, 0.961792886257172f, 0.191695958375931f, 0.961939752101898f, 0.191341713070869f, 0.962086379528046f, 0.190987363457680f, 0.962232708930969f, 0.190632879734039f, 0.962378799915314f, 0.190278306603432f, 0.962524592876434f, 0.189923599362373f, 0.962670147418976f, 0.189568802714348f, 0.962815403938293f, 0.189213871955872f, 0.962960422039032f, 0.188858851790428f, 0.963105142116547f, 0.188503712415695f, 0.963249564170837f, 0.188148453831673f, 0.963393747806549f, 0.187793090939522f, 0.963537633419037f, 0.187437608838081f, 0.963681280612946f, 0.187082037329674f, 0.963824629783630f, 0.186726331710815f, 0.963967680931091f, 0.186370536684990f, 0.964110493659973f, 0.186014622449875f, 0.964253067970276f, 0.185658603906631f, 0.964395284652710f, 0.185302466154099f, 0.964537262916565f, 0.184946224093437f, 0.964679002761841f, 0.184589877724648f, 0.964820444583893f, 0.184233412146568f, 0.964961588382721f, 0.183876842260361f, 0.965102493762970f, 0.183520168066025f, 0.965243160724640f, 0.183163389563560f, 0.965383470058441f, 0.182806491851807f, 0.965523540973663f, 0.182449504733086f, 0.965663373470306f, 0.182092398405075f, 0.965802907943726f, 0.181735187768936f, 0.965942144393921f, 0.181377857923508f, 0.966081082820892f, 0.181020438671112f, 0.966219842433929f, 0.180662900209427f, 0.966358244419098f, 0.180305257439613f, 0.966496407985687f, 0.179947525262833f, 0.966634273529053f, 0.179589673876762f, 0.966771900653839f, 0.179231703281403f, 0.966909229755402f, 0.178873643279076f, 0.967046260833740f, 0.178515478968620f, 0.967183053493500f, 0.178157210350037f, 0.967319548130035f, 0.177798837423325f, 0.967455804347992f, 0.177440345287323f, 0.967591762542725f, 0.177081763744354f, 0.967727422714233f, 0.176723077893257f, 0.967862844467163f, 0.176364272832870f, 0.967997968196869f, 0.176005378365517f, 0.968132853507996f, 0.175646379590034f, 0.968267440795898f, 0.175287276506424f, 0.968401730060577f, 0.174928069114685f, 0.968535780906677f, 0.174568757414818f, 0.968669533729553f, 0.174209341406822f, 0.968802988529205f, 0.173849821090698f, 0.968936204910278f, 0.173490211367607f, 0.969069123268127f, 0.173130482435226f, 0.969201743602753f, 0.172770664095879f, 0.969334125518799f, 0.172410741448402f, 0.969466269016266f, 0.172050714492798f, 0.969598054885864f, 0.171690583229065f, 0.969729602336884f, 0.171330362558365f, 0.969860911369324f, 0.170970037579536f, 0.969991862773895f, 0.170609608292580f, 0.970122575759888f, 0.170249074697495f, 0.970253050327301f, 0.169888436794281f, 0.970383226871490f, 0.169527709484100f, 0.970513105392456f, 0.169166877865791f, 0.970642685890198f, 0.168805956840515f, 0.970772027969360f, 0.168444931507111f, 0.970901072025299f, 0.168083801865578f, 0.971029877662659f, 0.167722567915916f, 0.971158385276794f, 0.167361244559288f, 0.971286594867706f, 0.166999831795692f, 0.971414566040039f, 0.166638299822807f, 0.971542239189148f, 0.166276678442955f, 0.971669614315033f, 0.165914967656136f, 0.971796751022339f, 0.165553152561188f, 0.971923589706421f, 0.165191248059273f, 0.972050130367279f, 0.164829224348068f, 0.972176432609558f, 0.164467126131058f, 0.972302436828613f, 0.164104923605919f, 0.972428143024445f, 0.163742616772652f, 0.972553610801697f, 0.163380220532417f, 0.972678780555725f, 0.163017734885216f, 0.972803652286530f, 0.162655144929886f, 0.972928285598755f, 0.162292465567589f, 0.973052620887756f, 0.161929681897163f, 0.973176658153534f, 0.161566808819771f, 0.973300457000732f, 0.161203846335411f, 0.973423957824707f, 0.160840779542923f, 0.973547160625458f, 0.160477623343468f, 0.973670125007629f, 0.160114362835884f, 0.973792791366577f, 0.159751012921333f, 0.973915159702301f, 0.159387573599815f, 0.974037289619446f, 0.159024044871330f, 0.974159121513367f, 0.158660411834717f, 0.974280655384064f, 0.158296689391136f, 0.974401950836182f, 0.157932877540588f, 0.974522948265076f, 0.157568961381912f, 0.974643647670746f, 0.157204970717430f, 0.974764108657837f, 0.156840875744820f, 0.974884271621704f, 0.156476691365242f, 0.975004136562347f, 0.156112402677536f, 0.975123703479767f, 0.155748039484024f, 0.975243031978607f, 0.155383571982384f, 0.975362062454224f, 0.155019029974937f, 0.975480854511261f, 0.154654383659363f, 0.975599288940430f, 0.154289647936821f, 0.975717484951019f, 0.153924822807312f, 0.975835442543030f, 0.153559908270836f, 0.975953042507172f, 0.153194904327393f, 0.976070404052734f, 0.152829796075821f, 0.976187527179718f, 0.152464613318443f, 0.976304292678833f, 0.152099341154099f, 0.976420819759369f, 0.151733979582787f, 0.976537048816681f, 0.151368513703346f, 0.976653039455414f, 0.151002973318100f, 0.976768672466278f, 0.150637343525887f, 0.976884067058563f, 0.150271624326706f, 0.976999223232269f, 0.149905815720558f, 0.977114021778107f, 0.149539917707443f, 0.977228581905365f, 0.149173930287361f, 0.977342903614044f, 0.148807853460312f, 0.977456867694855f, 0.148441687226295f, 0.977570593357086f, 0.148075446486473f, 0.977684020996094f, 0.147709101438522f, 0.977797150611877f, 0.147342681884766f, 0.977910041809082f, 0.146976172924042f, 0.978022634983063f, 0.146609574556351f, 0.978134930133820f, 0.146242901682854f, 0.978246986865997f, 0.145876124501228f, 0.978358685970306f, 0.145509272813797f, 0.978470146656036f, 0.145142331719399f, 0.978581368923187f, 0.144775316119194f, 0.978692233562469f, 0.144408211112022f, 0.978802859783173f, 0.144041016697884f, 0.978913187980652f, 0.143673732876778f, 0.979023277759552f, 0.143306359648705f, 0.979133009910584f, 0.142938911914825f, 0.979242503643036f, 0.142571389675140f, 0.979351758956909f, 0.142203763127327f, 0.979460656642914f, 0.141836062073708f, 0.979569315910339f, 0.141468286514282f, 0.979677677154541f, 0.141100421547890f, 0.979785740375519f, 0.140732467174530f, 0.979893565177917f, 0.140364438295364f, 0.980001091957092f, 0.139996320009232f, 0.980108320713043f, 0.139628127217293f, 0.980215251445770f, 0.139259845018387f, 0.980321943759918f, 0.138891488313675f, 0.980428338050842f, 0.138523042201996f, 0.980534434318542f, 0.138154521584511f, 0.980640232563019f, 0.137785911560059f, 0.980745792388916f, 0.137417227029800f, 0.980851054191589f, 0.137048453092575f, 0.980956017971039f, 0.136679604649544f, 0.981060683727264f, 0.136310681700706f, 0.981165111064911f, 0.135941669344902f, 0.981269240379334f, 0.135572582483292f, 0.981373071670532f, 0.135203406214714f, 0.981476604938507f, 0.134834155440331f, 0.981579899787903f, 0.134464830160141f, 0.981682896614075f, 0.134095430374146f, 0.981785595417023f, 0.133725941181183f, 0.981888055801392f, 0.133356377482414f, 0.981990158557892f, 0.132986739277840f, 0.982092022895813f, 0.132617011666298f, 0.982193589210510f, 0.132247209548950f, 0.982294917106628f, 0.131877332925797f, 0.982395887374878f, 0.131507381796837f, 0.982496619224548f, 0.131137356162071f, 0.982597053050995f, 0.130767241120338f, 0.982697248458862f, 0.130397051572800f, 0.982797086238861f, 0.130026802420616f, 0.982896685600281f, 0.129656463861465f, 0.982995986938477f, 0.129286035895348f, 0.983094990253448f, 0.128915548324585f, 0.983193755149841f, 0.128544986248016f, 0.983292162418365f, 0.128174334764481f, 0.983390331268311f, 0.127803623676300f, 0.983488261699677f, 0.127432823181152f, 0.983585834503174f, 0.127061963081360f, 0.983683168888092f, 0.126691013574600f, 0.983780145645142f, 0.126320004463196f, 0.983876943588257f, 0.125948905944824f, 0.983973383903503f, 0.125577747821808f, 0.984069526195526f, 0.125206500291824f, 0.984165430068970f, 0.124835193157196f, 0.984261035919189f, 0.124463804066181f, 0.984356343746185f, 0.124092340469360f, 0.984451413154602f, 0.123720809817314f, 0.984546124935150f, 0.123349204659462f, 0.984640598297119f, 0.122977524995804f, 0.984734773635864f, 0.122605770826340f, 0.984828710556030f, 0.122233949601650f, 0.984922289848328f, 0.121862053871155f, 0.985015630722046f, 0.121490091085434f, 0.985108673572540f, 0.121118053793907f, 0.985201418399811f, 0.120745941996574f, 0.985293865203857f, 0.120373763144016f, 0.985386073589325f, 0.120001509785652f, 0.985477983951569f, 0.119629189372063f, 0.985569596290588f, 0.119256794452667f, 0.985660910606384f, 0.118884332478046f, 0.985751926898956f, 0.118511803448200f, 0.985842704772949f, 0.118139199912548f, 0.985933184623718f, 0.117766529321671f, 0.986023366451263f, 0.117393791675568f, 0.986113250255585f, 0.117020979523659f, 0.986202836036682f, 0.116648100316525f, 0.986292183399200f, 0.116275154054165f, 0.986381232738495f, 0.115902140736580f, 0.986469984054565f, 0.115529052913189f, 0.986558437347412f, 0.115155905485153f, 0.986646652221680f, 0.114782683551311f, 0.986734509468079f, 0.114409394562244f, 0.986822128295898f, 0.114036038517952f, 0.986909449100494f, 0.113662622869015f, 0.986996471881866f, 0.113289132714272f, 0.987083256244659f, 0.112915575504303f, 0.987169682979584f, 0.112541958689690f, 0.987255871295929f, 0.112168267369270f, 0.987341761589050f, 0.111794516444206f, 0.987427353858948f, 0.111420698463917f, 0.987512648105621f, 0.111046813428402f, 0.987597703933716f, 0.110672861337662f, 0.987682461738586f, 0.110298842191696f, 0.987766921520233f, 0.109924763441086f, 0.987851083278656f, 0.109550617635250f, 0.987934947013855f, 0.109176412224770f, 0.988018512725830f, 0.108802139759064f, 0.988101840019226f, 0.108427800238132f, 0.988184869289398f, 0.108053401112556f, 0.988267600536346f, 0.107678934931755f, 0.988350033760071f, 0.107304409146309f, 0.988432228565216f, 0.106929816305637f, 0.988514065742493f, 0.106555156409740f, 0.988595664501190f, 0.106180444359779f, 0.988676965236664f, 0.105805665254593f, 0.988757967948914f, 0.105430819094181f, 0.988838672637939f, 0.105055920779705f, 0.988919138908386f, 0.104680955410004f, 0.988999247550964f, 0.104305922985077f, 0.989079117774963f, 0.103930838406086f, 0.989158689975739f, 0.103555686771870f, 0.989237964153290f, 0.103180475533009f, 0.989316940307617f, 0.102805204689503f, 0.989395678043365f, 0.102429874241352f, 0.989474058151245f, 0.102054484188557f, 0.989552199840546f, 0.101679034531116f, 0.989630043506622f, 0.101303517818451f, 0.989707589149475f, 0.100927948951721f, 0.989784896373749f, 0.100552320480347f, 0.989861845970154f, 0.100176624953747f, 0.989938557147980f, 0.099800877273083f, 0.990014970302582f, 0.099425069987774f, 0.990091085433960f, 0.099049203097820f, 0.990166902542114f, 0.098673284053802f, 0.990242421627045f, 0.098297297954559f, 0.990317702293396f, 0.097921259701252f, 0.990392625331879f, 0.097545161843300f, 0.990467309951782f, 0.097169004380703f, 0.990541696548462f, 0.096792794764042f, 0.990615785121918f, 0.096416525542736f, 0.990689575672150f, 0.096040196716785f, 0.990763127803802f, 0.095663815736771f, 0.990836322307587f, 0.095287375152111f, 0.990909278392792f, 0.094910882413387f, 0.990981936454773f, 0.094534330070019f, 0.991054296493530f, 0.094157725572586f, 0.991126358509064f, 0.093781061470509f, 0.991198182106018f, 0.093404345214367f, 0.991269648075104f, 0.093027576804161f, 0.991340875625610f, 0.092650748789310f, 0.991411805152893f, 0.092273868620396f, 0.991482377052307f, 0.091896936297417f, 0.991552770137787f, 0.091519944369793f, 0.991622805595398f, 0.091142900288105f, 0.991692543029785f, 0.090765804052353f, 0.991762042045593f, 0.090388655662537f, 0.991831183433533f, 0.090011447668076f, 0.991900086402893f, 0.089634194970131f, 0.991968691349030f, 0.089256882667542f, 0.992036998271942f, 0.088879525661469f, 0.992105066776276f, 0.088502109050751f, 0.992172777652740f, 0.088124647736549f, 0.992240250110626f, 0.087747126817703f, 0.992307364940643f, 0.087369553744793f, 0.992374241352081f, 0.086991935968399f, 0.992440819740295f, 0.086614266037941f, 0.992507100105286f, 0.086236543953419f, 0.992573142051697f, 0.085858769714832f, 0.992638826370239f, 0.085480943322182f, 0.992704212665558f, 0.085103072226048f, 0.992769360542297f, 0.084725148975849f, 0.992834210395813f, 0.084347173571587f, 0.992898762226105f, 0.083969146013260f, 0.992963016033173f, 0.083591073751450f, 0.993026971817017f, 0.083212949335575f, 0.993090689182281f, 0.082834780216217f, 0.993154048919678f, 0.082456558942795f, 0.993217170238495f, 0.082078292965889f, 0.993279933929443f, 0.081699974834919f, 0.993342459201813f, 0.081321612000465f, 0.993404686450958f, 0.080943197011948f, 0.993466615676880f, 0.080564737319946f, 0.993528306484222f, 0.080186225473881f, 0.993589639663696f, 0.079807676374912f, 0.993650734424591f, 0.079429075121880f, 0.993711471557617f, 0.079050421714783f, 0.993771970272064f, 0.078671731054783f, 0.993832170963287f, 0.078292988240719f, 0.993892073631287f, 0.077914200723171f, 0.993951678276062f, 0.077535368502140f, 0.994010984897614f, 0.077156484127045f, 0.994070053100586f, 0.076777562499046f, 0.994128763675690f, 0.076398596167564f, 0.994187235832214f, 0.076019577682018f, 0.994245409965515f, 0.075640521943569f, 0.994303286075592f, 0.075261414051056f, 0.994360864162445f, 0.074882268905640f, 0.994418144226074f, 0.074503071606159f, 0.994475126266479f, 0.074123837053776f, 0.994531810283661f, 0.073744557797909f, 0.994588255882263f, 0.073365233838558f, 0.994644403457642f, 0.072985872626305f, 0.994700193405151f, 0.072606459259987f, 0.994755744934082f, 0.072227008640766f, 0.994810998439789f, 0.071847513318062f, 0.994865953922272f, 0.071467980742455f, 0.994920611381531f, 0.071088403463364f, 0.994975030422211f, 0.070708781480789f, 0.995029091835022f, 0.070329122245312f, 0.995082914829254f, 0.069949418306351f, 0.995136380195618f, 0.069569669663906f, 0.995189607143402f, 0.069189883768559f, 0.995242536067963f, 0.068810060620308f, 0.995295166969299f, 0.068430192768574f, 0.995347499847412f, 0.068050287663937f, 0.995399534702301f, 0.067670337855816f, 0.995451331138611f, 0.067290350794792f, 0.995502769947052f, 0.066910326480865f, 0.995553970336914f, 0.066530264914036f, 0.995604813098907f, 0.066150158643723f, 0.995655417442322f, 0.065770015120506f, 0.995705723762512f, 0.065389834344387f, 0.995755732059479f, 0.065009608864784f, 0.995805442333221f, 0.064629353582859f, 0.995854854583740f, 0.064249053597450f, 0.995904028415680f, 0.063868723809719f, 0.995952844619751f, 0.063488349318504f, 0.996001422405243f, 0.063107937574387f, 0.996049642562866f, 0.062727488577366f, 0.996097624301910f, 0.062347009778023f, 0.996145308017731f, 0.061966486275196f, 0.996192693710327f, 0.061585929244757f, 0.996239781379700f, 0.061205338686705f, 0.996286571025848f, 0.060824707150459f, 0.996333062648773f, 0.060444042086601f, 0.996379256248474f, 0.060063343495131f, 0.996425211429596f, 0.059682607650757f, 0.996470808982849f, 0.059301838278770f, 0.996516168117523f, 0.058921031653881f, 0.996561229228973f, 0.058540191501379f, 0.996605992317200f, 0.058159314095974f, 0.996650457382202f, 0.057778406888247f, 0.996694624423981f, 0.057397462427616f, 0.996738493442535f, 0.057016488164663f, 0.996782064437866f, 0.056635476648808f, 0.996825337409973f, 0.056254431605339f, 0.996868371963501f, 0.055873356759548f, 0.996911048889160f, 0.055492244660854f, 0.996953487396240f, 0.055111102759838f, 0.996995627880096f, 0.054729927331209f, 0.997037410736084f, 0.054348722100258f, 0.997078955173492f, 0.053967483341694f, 0.997120201587677f, 0.053586211055517f, 0.997161149978638f, 0.053204908967018f, 0.997201859951019f, 0.052823577076197f, 0.997242212295532f, 0.052442211657763f, 0.997282266616821f, 0.052060816437006f, 0.997322082519531f, 0.051679391413927f, 0.997361540794373f, 0.051297932863235f, 0.997400760650635f, 0.050916448235512f, 0.997439682483673f, 0.050534930080175f, 0.997478306293488f, 0.050153385847807f, 0.997516572475433f, 0.049771808087826f, 0.997554600238800f, 0.049390204250813f, 0.997592389583588f, 0.049008570611477f, 0.997629821300507f, 0.048626907169819f, 0.997666954994202f, 0.048245213925838f, 0.997703790664673f, 0.047863494604826f, 0.997740387916565f, 0.047481749206781f, 0.997776627540588f, 0.047099970281124f, 0.997812628746033f, 0.046718169003725f, 0.997848331928253f, 0.046336337924004f, 0.997883677482605f, 0.045954477041960f, 0.997918784618378f, 0.045572593808174f, 0.997953593730927f, 0.045190680772066f, 0.997988104820251f, 0.044808741658926f, 0.998022377490997f, 0.044426776468754f, 0.998056292533875f, 0.044044785201550f, 0.998089909553528f, 0.043662767857313f, 0.998123228549957f, 0.043280724436045f, 0.998156309127808f, 0.042898654937744f, 0.998189091682434f, 0.042516563087702f, 0.998221516609192f, 0.042134445160627f, 0.998253703117371f, 0.041752301156521f, 0.998285591602325f, 0.041370131075382f, 0.998317182064056f, 0.040987938642502f, 0.998348474502563f, 0.040605723857880f, 0.998379468917847f, 0.040223482996225f, 0.998410165309906f, 0.039841219782829f, 0.998440563678741f, 0.039458930492401f, 0.998470664024353f, 0.039076622575521f, 0.998500525951386f, 0.038694288581610f, 0.998530030250549f, 0.038311932235956f, 0.998559296131134f, 0.037929553538561f, 0.998588204383850f, 0.037547148764133f, 0.998616874217987f, 0.037164725363255f, 0.998645246028900f, 0.036782283335924f, 0.998673319816589f, 0.036399815231562f, 0.998701035976410f, 0.036017324775457f, 0.998728513717651f, 0.035634815692902f, 0.998755753040314f, 0.035252287983894f, 0.998782634735107f, 0.034869734197855f, 0.998809218406677f, 0.034487165510654f, 0.998835504055023f, 0.034104570746422f, 0.998861551284790f, 0.033721961081028f, 0.998887240886688f, 0.033339329063892f, 0.998912692070007f, 0.032956674695015f, 0.998937785625458f, 0.032574005424976f, 0.998962640762329f, 0.032191313803196f, 0.998987197875977f, 0.031808607280254f, 0.999011456966400f, 0.031425878405571f, 0.999035418033600f, 0.031043132767081f, 0.999059081077576f, 0.030660368502140f, 0.999082446098328f, 0.030277585610747f, 0.999105513095856f, 0.029894785955548f, 0.999128282070160f, 0.029511967673898f, 0.999150753021240f, 0.029129132628441f, 0.999172985553741f, 0.028746278956532f, 0.999194860458374f, 0.028363410383463f, 0.999216496944427f, 0.027980525046587f, 0.999237775802612f, 0.027597622945905f, 0.999258816242218f, 0.027214704081416f, 0.999279558658600f, 0.026831768453121f, 0.999299943447113f, 0.026448817923665f, 0.999320089817047f, 0.026065852493048f, 0.999339938163757f, 0.025682870298624f, 0.999359488487244f, 0.025299875065684f, 0.999378740787506f, 0.024916863068938f, 0.999397754669189f, 0.024533838033676f, 0.999416410923004f, 0.024150796234608f, 0.999434769153595f, 0.023767741397023f, 0.999452829360962f, 0.023384673520923f, 0.999470651149750f, 0.023001590743661f, 0.999488115310669f, 0.022618494927883f, 0.999505341053009f, 0.022235386073589f, 0.999522268772125f, 0.021852264180779f, 0.999538838863373f, 0.021469129249454f, 0.999555170536041f, 0.021085981279612f, 0.999571204185486f, 0.020702820271254f, 0.999586939811707f, 0.020319648087025f, 0.999602377414703f, 0.019936462864280f, 0.999617516994476f, 0.019553268328309f, 0.999632358551025f, 0.019170060753822f, 0.999646902084351f, 0.018786842003465f, 0.999661207199097f, 0.018403612077236f, 0.999675154685974f, 0.018020370975137f, 0.999688863754272f, 0.017637118697166f, 0.999702215194702f, 0.017253857105970f, 0.999715328216553f, 0.016870586201549f, 0.999728083610535f, 0.016487304121256f, 0.999740600585938f, 0.016104012727737f, 0.999752819538116f, 0.015720712020993f, 0.999764680862427f, 0.015337402001023f, 0.999776303768158f, 0.014954082667828f, 0.999787628650665f, 0.014570754021406f, 0.999798655509949f, 0.014187417924404f, 0.999809384346008f, 0.013804072514176f, 0.999819874763489f, 0.013420719653368f, 0.999830007553101f, 0.013037359341979f, 0.999839842319489f, 0.012653990648687f, 0.999849438667297f, 0.012270614504814f, 0.999858677387238f, 0.011887230910361f, 0.999867618083954f, 0.011503840796649f, 0.999876320362091f, 0.011120444163680f, 0.999884724617004f, 0.010737040080130f, 0.999892771244049f, 0.010353630408645f, 0.999900579452515f, 0.009970214217901f, 0.999908089637756f, 0.009586792439222f, 0.999915301799774f, 0.009203365072608f, 0.999922215938568f, 0.008819932118058f, 0.999928832054138f, 0.008436493575573f, 0.999935150146484f, 0.008053051307797f, 0.999941170215607f, 0.007669602986425f, 0.999946892261505f, 0.007286150939763f, 0.999952375888824f, 0.006902694236487f, 0.999957501888275f, 0.006519233807921f, 0.999962329864502f, 0.006135769188404f, 0.999966919422150f, 0.005752300843596f, 0.999971151351929f, 0.005368829704821f, 0.999975144863129f, 0.004985354840755f, 0.999978840351105f, 0.004601877182722f, 0.999982178211212f, 0.004218397196382f, 0.999985277652740f, 0.003834914416075f, 0.999988079071045f, 0.003451429307461f, 0.999990582466125f, 0.003067942336202f, 0.999992787837982f, 0.002684453502297f, 0.999994695186615f, 0.002300963038579f, 0.999996304512024f, 0.001917471294291f, 0.999997675418854f, 0.001533978385851f, 0.999998688697815f, 0.001150484546088f, 0.999999403953552f, 0.000766990066040f, 0.999999880790710f, 0.000383495149435f, 1.000000000000000f, 0.000000000000023f, 0.999999880790710f, -0.000383495149435f, 0.999999403953552f, -0.000766990066040f, 0.999998688697815f, -0.001150484546088f, 0.999997675418854f, -0.001533978385851f, 0.999996304512024f, -0.001917471294291f, 0.999994695186615f, -0.002300963038579f, 0.999992787837982f, -0.002684453502297f, 0.999990582466125f, -0.003067942336202f, 0.999988079071045f, -0.003451429307461f, 0.999985277652740f, -0.003834914416075f, 0.999982178211212f, -0.004218397196382f, 0.999978840351105f, -0.004601877182722f, 0.999975144863129f, -0.004985354840755f, 0.999971151351929f, -0.005368829704821f, 0.999966919422150f, -0.005752300843596f, 0.999962329864502f, -0.006135769188404f, 0.999957501888275f, -0.006519233807921f, 0.999952375888824f, -0.006902694236487f, 0.999946892261505f, -0.007286150939763f, 0.999941170215607f, -0.007669602986425f, 0.999935150146484f, -0.008053051307797f, 0.999928832054138f, -0.008436493575573f, 0.999922215938568f, -0.008819932118058f, 0.999915301799774f, -0.009203365072608f, 0.999908089637756f, -0.009586792439222f, 0.999900579452515f, -0.009970214217901f, 0.999892771244049f, -0.010353630408645f, 0.999884724617004f, -0.010737040080130f, 0.999876320362091f, -0.011120444163680f, 0.999867618083954f, -0.011503840796649f, 0.999858677387238f, -0.011887230910361f, 0.999849438667297f, -0.012270614504814f, 0.999839842319489f, -0.012653990648687f, 0.999830007553101f, -0.013037359341979f, 0.999819874763489f, -0.013420719653368f, 0.999809384346008f, -0.013804072514176f, 0.999798655509949f, -0.014187417924404f, 0.999787628650665f, -0.014570754021406f, 0.999776303768158f, -0.014954082667828f, 0.999764680862427f, -0.015337402001023f, 0.999752819538116f, -0.015720712020993f, 0.999740600585938f, -0.016104012727737f, 0.999728083610535f, -0.016487304121256f, 0.999715328216553f, -0.016870586201549f, 0.999702215194702f, -0.017253857105970f, 0.999688863754272f, -0.017637118697166f, 0.999675154685974f, -0.018020370975137f, 0.999661207199097f, -0.018403612077236f, 0.999646902084351f, -0.018786842003465f, 0.999632358551025f, -0.019170060753822f, 0.999617516994476f, -0.019553268328309f, 0.999602377414703f, -0.019936462864280f, 0.999586939811707f, -0.020319648087025f, 0.999571204185486f, -0.020702820271254f, 0.999555170536041f, -0.021085981279612f, 0.999538838863373f, -0.021469129249454f, 0.999522268772125f, -0.021852264180779f, 0.999505341053009f, -0.022235386073589f, 0.999488115310669f, -0.022618494927883f, 0.999470651149750f, -0.023001590743661f, 0.999452829360962f, -0.023384673520923f, 0.999434769153595f, -0.023767741397023f, 0.999416410923004f, -0.024150796234608f, 0.999397754669189f, -0.024533838033676f, 0.999378740787506f, -0.024916863068938f, 0.999359488487244f, -0.025299875065684f, 0.999339938163757f, -0.025682870298624f, 0.999320089817047f, -0.026065852493048f, 0.999299943447113f, -0.026448817923665f, 0.999279558658600f, -0.026831768453121f, 0.999258816242218f, -0.027214704081416f, 0.999237775802612f, -0.027597622945905f, 0.999216496944427f, -0.027980525046587f, 0.999194860458374f, -0.028363410383463f, 0.999172985553741f, -0.028746278956532f, 0.999150753021240f, -0.029129132628441f, 0.999128282070160f, -0.029511967673898f, 0.999105513095856f, -0.029894785955548f, 0.999082446098328f, -0.030277585610747f, 0.999059081077576f, -0.030660368502140f, 0.999035418033600f, -0.031043132767081f, 0.999011456966400f, -0.031425878405571f, 0.998987197875977f, -0.031808607280254f, 0.998962640762329f, -0.032191313803196f, 0.998937785625458f, -0.032574005424976f, 0.998912692070007f, -0.032956674695015f, 0.998887240886688f, -0.033339329063892f, 0.998861551284790f, -0.033721961081028f, 0.998835504055023f, -0.034104570746422f, 0.998809218406677f, -0.034487165510654f, 0.998782634735107f, -0.034869734197855f, 0.998755753040314f, -0.035252287983894f, 0.998728513717651f, -0.035634815692902f, 0.998701035976410f, -0.036017324775457f, 0.998673319816589f, -0.036399815231562f, 0.998645246028900f, -0.036782283335924f, 0.998616874217987f, -0.037164725363255f, 0.998588204383850f, -0.037547148764133f, 0.998559296131134f, -0.037929553538561f, 0.998530030250549f, -0.038311932235956f, 0.998500525951386f, -0.038694288581610f, 0.998470664024353f, -0.039076622575521f, 0.998440563678741f, -0.039458930492401f, 0.998410165309906f, -0.039841219782829f, 0.998379468917847f, -0.040223482996225f, 0.998348474502563f, -0.040605723857880f, 0.998317182064056f, -0.040987938642502f, 0.998285591602325f, -0.041370131075382f, 0.998253703117371f, -0.041752301156521f, 0.998221516609192f, -0.042134445160627f, 0.998189091682434f, -0.042516563087702f, 0.998156309127808f, -0.042898654937744f, 0.998123228549957f, -0.043280724436045f, 0.998089909553528f, -0.043662767857313f, 0.998056292533875f, -0.044044785201550f, 0.998022377490997f, -0.044426776468754f, 0.997988104820251f, -0.044808741658926f, 0.997953593730927f, -0.045190680772066f, 0.997918784618378f, -0.045572593808174f, 0.997883677482605f, -0.045954477041960f, 0.997848331928253f, -0.046336337924004f, 0.997812628746033f, -0.046718169003725f, 0.997776627540588f, -0.047099970281124f, 0.997740387916565f, -0.047481749206781f, 0.997703790664673f, -0.047863494604826f, 0.997666954994202f, -0.048245213925838f, 0.997629821300507f, -0.048626907169819f, 0.997592389583588f, -0.049008570611477f, 0.997554600238800f, -0.049390204250813f, 0.997516572475433f, -0.049771808087826f, 0.997478306293488f, -0.050153385847807f, 0.997439682483673f, -0.050534930080175f, 0.997400760650635f, -0.050916448235512f, 0.997361540794373f, -0.051297932863235f, 0.997322082519531f, -0.051679391413927f, 0.997282266616821f, -0.052060816437006f, 0.997242212295532f, -0.052442211657763f, 0.997201859951019f, -0.052823577076197f, 0.997161149978638f, -0.053204908967018f, 0.997120201587677f, -0.053586211055517f, 0.997078955173492f, -0.053967483341694f, 0.997037410736084f, -0.054348722100258f, 0.996995627880096f, -0.054729927331209f, 0.996953487396240f, -0.055111102759838f, 0.996911048889160f, -0.055492244660854f, 0.996868371963501f, -0.055873356759548f, 0.996825337409973f, -0.056254431605339f, 0.996782064437866f, -0.056635476648808f, 0.996738493442535f, -0.057016488164663f, 0.996694624423981f, -0.057397462427616f, 0.996650457382202f, -0.057778406888247f, 0.996605992317200f, -0.058159314095974f, 0.996561229228973f, -0.058540191501379f, 0.996516168117523f, -0.058921031653881f, 0.996470808982849f, -0.059301838278770f, 0.996425211429596f, -0.059682607650757f, 0.996379256248474f, -0.060063343495131f, 0.996333062648773f, -0.060444042086601f, 0.996286571025848f, -0.060824707150459f, 0.996239781379700f, -0.061205338686705f, 0.996192693710327f, -0.061585929244757f, 0.996145308017731f, -0.061966486275196f, 0.996097624301910f, -0.062347009778023f, 0.996049642562866f, -0.062727488577366f, 0.996001422405243f, -0.063107937574387f, 0.995952844619751f, -0.063488349318504f, 0.995904028415680f, -0.063868723809719f, 0.995854854583740f, -0.064249053597450f, 0.995805442333221f, -0.064629353582859f, 0.995755732059479f, -0.065009608864784f, 0.995705723762512f, -0.065389834344387f, 0.995655417442322f, -0.065770015120506f, 0.995604813098907f, -0.066150158643723f, 0.995553970336914f, -0.066530264914036f, 0.995502769947052f, -0.066910326480865f, 0.995451331138611f, -0.067290350794792f, 0.995399534702301f, -0.067670337855816f, 0.995347499847412f, -0.068050287663937f, 0.995295166969299f, -0.068430192768574f, 0.995242536067963f, -0.068810060620308f, 0.995189607143402f, -0.069189883768559f, 0.995136380195618f, -0.069569669663906f, 0.995082914829254f, -0.069949418306351f, 0.995029091835022f, -0.070329122245312f, 0.994975030422211f, -0.070708781480789f, 0.994920611381531f, -0.071088403463364f, 0.994865953922272f, -0.071467980742455f, 0.994810998439789f, -0.071847513318062f, 0.994755744934082f, -0.072227008640766f, 0.994700193405151f, -0.072606459259987f, 0.994644403457642f, -0.072985872626305f, 0.994588255882263f, -0.073365233838558f, 0.994531810283661f, -0.073744557797909f, 0.994475126266479f, -0.074123837053776f, 0.994418144226074f, -0.074503071606159f, 0.994360864162445f, -0.074882268905640f, 0.994303286075592f, -0.075261414051056f, 0.994245409965515f, -0.075640521943569f, 0.994187235832214f, -0.076019577682018f, 0.994128763675690f, -0.076398596167564f, 0.994070053100586f, -0.076777562499046f, 0.994010984897614f, -0.077156484127045f, 0.993951678276062f, -0.077535368502140f, 0.993892073631287f, -0.077914200723171f, 0.993832170963287f, -0.078292988240719f, 0.993771970272064f, -0.078671731054783f, 0.993711471557617f, -0.079050421714783f, 0.993650734424591f, -0.079429075121880f, 0.993589639663696f, -0.079807676374912f, 0.993528306484222f, -0.080186225473881f, 0.993466615676880f, -0.080564737319946f, 0.993404686450958f, -0.080943197011948f, 0.993342459201813f, -0.081321612000465f, 0.993279933929443f, -0.081699974834919f, 0.993217170238495f, -0.082078292965889f, 0.993154048919678f, -0.082456558942795f, 0.993090689182281f, -0.082834780216217f, 0.993026971817017f, -0.083212949335575f, 0.992963016033173f, -0.083591073751450f, 0.992898762226105f, -0.083969146013260f, 0.992834210395813f, -0.084347173571587f, 0.992769360542297f, -0.084725148975849f, 0.992704212665558f, -0.085103072226048f, 0.992638826370239f, -0.085480943322182f, 0.992573142051697f, -0.085858769714832f, 0.992507100105286f, -0.086236543953419f, 0.992440819740295f, -0.086614266037941f, 0.992374241352081f, -0.086991935968399f, 0.992307364940643f, -0.087369553744793f, 0.992240250110626f, -0.087747126817703f, 0.992172777652740f, -0.088124647736549f, 0.992105066776276f, -0.088502109050751f, 0.992036998271942f, -0.088879525661469f, 0.991968691349030f, -0.089256882667542f, 0.991900086402893f, -0.089634194970131f, 0.991831183433533f, -0.090011447668076f, 0.991762042045593f, -0.090388655662537f, 0.991692543029785f, -0.090765804052353f, 0.991622805595398f, -0.091142900288105f, 0.991552770137787f, -0.091519944369793f, 0.991482377052307f, -0.091896936297417f, 0.991411805152893f, -0.092273868620396f, 0.991340875625610f, -0.092650748789310f, 0.991269648075104f, -0.093027576804161f, 0.991198182106018f, -0.093404345214367f, 0.991126358509064f, -0.093781061470509f, 0.991054296493530f, -0.094157725572586f, 0.990981936454773f, -0.094534330070019f, 0.990909278392792f, -0.094910882413387f, 0.990836322307587f, -0.095287375152111f, 0.990763127803802f, -0.095663815736771f, 0.990689575672150f, -0.096040196716785f, 0.990615785121918f, -0.096416525542736f, 0.990541696548462f, -0.096792794764042f, 0.990467309951782f, -0.097169004380703f, 0.990392625331879f, -0.097545161843300f, 0.990317702293396f, -0.097921259701252f, 0.990242421627045f, -0.098297297954559f, 0.990166902542114f, -0.098673284053802f, 0.990091085433960f, -0.099049203097820f, 0.990014970302582f, -0.099425069987774f, 0.989938557147980f, -0.099800877273083f, 0.989861845970154f, -0.100176624953747f, 0.989784896373749f, -0.100552320480347f, 0.989707589149475f, -0.100927948951721f, 0.989630043506622f, -0.101303517818451f, 0.989552199840546f, -0.101679034531116f, 0.989474058151245f, -0.102054484188557f, 0.989395678043365f, -0.102429874241352f, 0.989316940307617f, -0.102805204689503f, 0.989237964153290f, -0.103180475533009f, 0.989158689975739f, -0.103555686771870f, 0.989079117774963f, -0.103930838406086f, 0.988999247550964f, -0.104305922985077f, 0.988919138908386f, -0.104680955410004f, 0.988838672637939f, -0.105055920779705f, 0.988757967948914f, -0.105430819094181f, 0.988676965236664f, -0.105805665254593f, 0.988595664501190f, -0.106180444359779f, 0.988514065742493f, -0.106555156409740f, 0.988432228565216f, -0.106929816305637f, 0.988350033760071f, -0.107304409146309f, 0.988267600536346f, -0.107678934931755f, 0.988184869289398f, -0.108053401112556f, 0.988101840019226f, -0.108427800238132f, 0.988018512725830f, -0.108802139759064f, 0.987934947013855f, -0.109176412224770f, 0.987851083278656f, -0.109550617635250f, 0.987766921520233f, -0.109924763441086f, 0.987682461738586f, -0.110298842191696f, 0.987597703933716f, -0.110672861337662f, 0.987512648105621f, -0.111046813428402f, 0.987427353858948f, -0.111420698463917f, 0.987341761589050f, -0.111794516444206f, 0.987255871295929f, -0.112168267369270f, 0.987169682979584f, -0.112541958689690f, 0.987083256244659f, -0.112915575504303f, 0.986996471881866f, -0.113289132714272f, 0.986909449100494f, -0.113662622869015f, 0.986822128295898f, -0.114036038517952f, 0.986734509468079f, -0.114409394562244f, 0.986646652221680f, -0.114782683551311f, 0.986558437347412f, -0.115155905485153f, 0.986469984054565f, -0.115529052913189f, 0.986381232738495f, -0.115902140736580f, 0.986292183399200f, -0.116275154054165f, 0.986202836036682f, -0.116648100316525f, 0.986113250255585f, -0.117020979523659f, 0.986023366451263f, -0.117393791675568f, 0.985933184623718f, -0.117766529321671f, 0.985842704772949f, -0.118139199912548f, 0.985751926898956f, -0.118511803448200f, 0.985660910606384f, -0.118884332478046f, 0.985569596290588f, -0.119256794452667f, 0.985477983951569f, -0.119629189372063f, 0.985386073589325f, -0.120001509785652f, 0.985293865203857f, -0.120373763144016f, 0.985201418399811f, -0.120745941996574f, 0.985108673572540f, -0.121118053793907f, 0.985015630722046f, -0.121490091085434f, 0.984922289848328f, -0.121862053871155f, 0.984828710556030f, -0.122233949601650f, 0.984734773635864f, -0.122605770826340f, 0.984640598297119f, -0.122977524995804f, 0.984546124935150f, -0.123349204659462f, 0.984451413154602f, -0.123720809817314f, 0.984356343746185f, -0.124092340469360f, 0.984261035919189f, -0.124463804066181f, 0.984165430068970f, -0.124835193157196f, 0.984069526195526f, -0.125206500291824f, 0.983973383903503f, -0.125577747821808f, 0.983876943588257f, -0.125948905944824f, 0.983780145645142f, -0.126320004463196f, 0.983683168888092f, -0.126691013574600f, 0.983585834503174f, -0.127061963081360f, 0.983488261699677f, -0.127432823181152f, 0.983390331268311f, -0.127803623676300f, 0.983292162418365f, -0.128174334764481f, 0.983193755149841f, -0.128544986248016f, 0.983094990253448f, -0.128915548324585f, 0.982995986938477f, -0.129286035895348f, 0.982896685600281f, -0.129656463861465f, 0.982797086238861f, -0.130026802420616f, 0.982697248458862f, -0.130397051572800f, 0.982597053050995f, -0.130767241120338f, 0.982496619224548f, -0.131137356162071f, 0.982395887374878f, -0.131507381796837f, 0.982294917106628f, -0.131877332925797f, 0.982193589210510f, -0.132247209548950f, 0.982092022895813f, -0.132617011666298f, 0.981990158557892f, -0.132986739277840f, 0.981888055801392f, -0.133356377482414f, 0.981785595417023f, -0.133725941181183f, 0.981682896614075f, -0.134095430374146f, 0.981579899787903f, -0.134464830160141f, 0.981476604938507f, -0.134834155440331f, 0.981373071670532f, -0.135203406214714f, 0.981269240379334f, -0.135572582483292f, 0.981165111064911f, -0.135941669344902f, 0.981060683727264f, -0.136310681700706f, 0.980956017971039f, -0.136679604649544f, 0.980851054191589f, -0.137048453092575f, 0.980745792388916f, -0.137417227029800f, 0.980640232563019f, -0.137785911560059f, 0.980534434318542f, -0.138154521584511f, 0.980428338050842f, -0.138523042201996f, 0.980321943759918f, -0.138891488313675f, 0.980215251445770f, -0.139259845018387f, 0.980108320713043f, -0.139628127217293f, 0.980001091957092f, -0.139996320009232f, 0.979893565177917f, -0.140364438295364f, 0.979785740375519f, -0.140732467174530f, 0.979677677154541f, -0.141100421547890f, 0.979569315910339f, -0.141468286514282f, 0.979460656642914f, -0.141836062073708f, 0.979351758956909f, -0.142203763127327f, 0.979242503643036f, -0.142571389675140f, 0.979133009910584f, -0.142938911914825f, 0.979023277759552f, -0.143306359648705f, 0.978913187980652f, -0.143673732876778f, 0.978802859783173f, -0.144041016697884f, 0.978692233562469f, -0.144408211112022f, 0.978581368923187f, -0.144775316119194f, 0.978470146656036f, -0.145142331719399f, 0.978358685970306f, -0.145509272813797f, 0.978246986865997f, -0.145876124501228f, 0.978134930133820f, -0.146242901682854f, 0.978022634983063f, -0.146609574556351f, 0.977910041809082f, -0.146976172924042f, 0.977797150611877f, -0.147342681884766f, 0.977684020996094f, -0.147709101438522f, 0.977570593357086f, -0.148075446486473f, 0.977456867694855f, -0.148441687226295f, 0.977342903614044f, -0.148807853460312f, 0.977228581905365f, -0.149173930287361f, 0.977114021778107f, -0.149539917707443f, 0.976999223232269f, -0.149905815720558f, 0.976884067058563f, -0.150271624326706f, 0.976768672466278f, -0.150637343525887f, 0.976653039455414f, -0.151002973318100f, 0.976537048816681f, -0.151368513703346f, 0.976420819759369f, -0.151733979582787f, 0.976304292678833f, -0.152099341154099f, 0.976187527179718f, -0.152464613318443f, 0.976070404052734f, -0.152829796075821f, 0.975953042507172f, -0.153194904327393f, 0.975835442543030f, -0.153559908270836f, 0.975717484951019f, -0.153924822807312f, 0.975599288940430f, -0.154289647936821f, 0.975480854511261f, -0.154654383659363f, 0.975362062454224f, -0.155019029974937f, 0.975243031978607f, -0.155383571982384f, 0.975123703479767f, -0.155748039484024f, 0.975004136562347f, -0.156112402677536f, 0.974884271621704f, -0.156476691365242f, 0.974764108657837f, -0.156840875744820f, 0.974643647670746f, -0.157204970717430f, 0.974522948265076f, -0.157568961381912f, 0.974401950836182f, -0.157932877540588f, 0.974280655384064f, -0.158296689391136f, 0.974159121513367f, -0.158660411834717f, 0.974037289619446f, -0.159024044871330f, 0.973915159702301f, -0.159387573599815f, 0.973792791366577f, -0.159751012921333f, 0.973670125007629f, -0.160114362835884f, 0.973547160625458f, -0.160477623343468f, 0.973423957824707f, -0.160840779542923f, 0.973300457000732f, -0.161203846335411f, 0.973176658153534f, -0.161566808819771f, 0.973052620887756f, -0.161929681897163f, 0.972928285598755f, -0.162292465567589f, 0.972803652286530f, -0.162655144929886f, 0.972678780555725f, -0.163017734885216f, 0.972553610801697f, -0.163380220532417f, 0.972428143024445f, -0.163742616772652f, 0.972302436828613f, -0.164104923605919f, 0.972176432609558f, -0.164467126131058f, 0.972050130367279f, -0.164829224348068f, 0.971923589706421f, -0.165191248059273f, 0.971796751022339f, -0.165553152561188f, 0.971669614315033f, -0.165914967656136f, 0.971542239189148f, -0.166276678442955f, 0.971414566040039f, -0.166638299822807f, 0.971286594867706f, -0.166999831795692f, 0.971158385276794f, -0.167361244559288f, 0.971029877662659f, -0.167722567915916f, 0.970901072025299f, -0.168083801865578f, 0.970772027969360f, -0.168444931507111f, 0.970642685890198f, -0.168805956840515f, 0.970513105392456f, -0.169166877865791f, 0.970383226871490f, -0.169527709484100f, 0.970253050327301f, -0.169888436794281f, 0.970122575759888f, -0.170249074697495f, 0.969991862773895f, -0.170609608292580f, 0.969860911369324f, -0.170970037579536f, 0.969729602336884f, -0.171330362558365f, 0.969598054885864f, -0.171690583229065f, 0.969466269016266f, -0.172050714492798f, 0.969334125518799f, -0.172410741448402f, 0.969201743602753f, -0.172770664095879f, 0.969069123268127f, -0.173130482435226f, 0.968936204910278f, -0.173490211367607f, 0.968802988529205f, -0.173849821090698f, 0.968669533729553f, -0.174209341406822f, 0.968535780906677f, -0.174568757414818f, 0.968401730060577f, -0.174928069114685f, 0.968267440795898f, -0.175287276506424f, 0.968132853507996f, -0.175646379590034f, 0.967997968196869f, -0.176005378365517f, 0.967862844467163f, -0.176364272832870f, 0.967727422714233f, -0.176723077893257f, 0.967591762542725f, -0.177081763744354f, 0.967455804347992f, -0.177440345287323f, 0.967319548130035f, -0.177798837423325f, 0.967183053493500f, -0.178157210350037f, 0.967046260833740f, -0.178515478968620f, 0.966909229755402f, -0.178873643279076f, 0.966771900653839f, -0.179231703281403f, 0.966634273529053f, -0.179589673876762f, 0.966496407985687f, -0.179947525262833f, 0.966358244419098f, -0.180305257439613f, 0.966219842433929f, -0.180662900209427f, 0.966081082820892f, -0.181020438671112f, 0.965942144393921f, -0.181377857923508f, 0.965802907943726f, -0.181735187768936f, 0.965663373470306f, -0.182092398405075f, 0.965523540973663f, -0.182449504733086f, 0.965383470058441f, -0.182806491851807f, 0.965243160724640f, -0.183163389563560f, 0.965102493762970f, -0.183520168066025f, 0.964961588382721f, -0.183876842260361f, 0.964820444583893f, -0.184233412146568f, 0.964679002761841f, -0.184589877724648f, 0.964537262916565f, -0.184946224093437f, 0.964395284652710f, -0.185302466154099f, 0.964253067970276f, -0.185658603906631f, 0.964110493659973f, -0.186014622449875f, 0.963967680931091f, -0.186370536684990f, 0.963824629783630f, -0.186726331710815f, 0.963681280612946f, -0.187082037329674f, 0.963537633419037f, -0.187437608838081f, 0.963393747806549f, -0.187793090939522f, 0.963249564170837f, -0.188148453831673f, 0.963105142116547f, -0.188503712415695f, 0.962960422039032f, -0.188858851790428f, 0.962815403938293f, -0.189213871955872f, 0.962670147418976f, -0.189568802714348f, 0.962524592876434f, -0.189923599362373f, 0.962378799915314f, -0.190278306603432f, 0.962232708930969f, -0.190632879734039f, 0.962086379528046f, -0.190987363457680f, 0.961939752101898f, -0.191341713070869f, 0.961792886257172f, -0.191695958375931f, 0.961645722389221f, -0.192050099372864f, 0.961498260498047f, -0.192404121160507f, 0.961350560188293f, -0.192758023738861f, 0.961202561855316f, -0.193111822009087f, 0.961054325103760f, -0.193465501070023f, 0.960905790328979f, -0.193819075822830f, 0.960757017135620f, -0.194172516465187f, 0.960607945919037f, -0.194525867700577f, 0.960458636283875f, -0.194879084825516f, 0.960309028625488f, -0.195232197642326f, 0.960159122943878f, -0.195585191249847f, 0.960008978843689f, -0.195938065648079f, 0.959858596324921f, -0.196290835738182f, 0.959707856178284f, -0.196643486618996f, 0.959556937217712f, -0.196996018290520f, 0.959405720233917f, -0.197348430752754f, 0.959254205226898f, -0.197700738906860f, 0.959102451801300f, -0.198052927851677f, 0.958950400352478f, -0.198404997587204f, 0.958798050880432f, -0.198756948113441f, 0.958645522594452f, -0.199108779430389f, 0.958492636680603f, -0.199460506439209f, 0.958339512348175f, -0.199812099337578f, 0.958186149597168f, -0.200163587927818f, 0.958032488822937f, -0.200514942407608f, 0.957878530025482f, -0.200866192579269f, 0.957724332809448f, -0.201217323541641f, 0.957569897174835f, -0.201568335294724f, 0.957415163516998f, -0.201919227838516f, 0.957260131835938f, -0.202270001173019f, 0.957104861736298f, -0.202620655298233f, 0.956949353218079f, -0.202971190214157f, 0.956793546676636f, -0.203321605920792f, 0.956637442111969f, -0.203671902418137f, 0.956481099128723f, -0.204022079706192f, 0.956324458122253f, -0.204372137784958f, 0.956167578697205f, -0.204722076654434f, 0.956010460853577f, -0.205071896314621f, 0.955853044986725f, -0.205421581864357f, 0.955695331096649f, -0.205771163105965f, 0.955537378787994f, -0.206120610237122f, 0.955379128456116f, -0.206469938158989f, 0.955220639705658f, -0.206819161772728f, 0.955061912536621f, -0.207168251276016f, 0.954902827739716f, -0.207517206668854f, 0.954743564128876f, -0.207866057753563f, 0.954584002494812f, -0.208214774727821f, 0.954424142837524f, -0.208563387393951f, 0.954264044761658f, -0.208911851048470f, 0.954103708267212f, -0.209260210394859f, 0.953943073749542f, -0.209608450531960f, 0.953782141208649f, -0.209956556558609f, 0.953620970249176f, -0.210304543375969f, 0.953459560871124f, -0.210652396082878f, 0.953297853469849f, -0.211000129580498f, 0.953135907649994f, -0.211347743868828f, 0.952973663806915f, -0.211695238947868f, 0.952811121940613f, -0.212042599916458f, 0.952648401260376f, -0.212389841675758f, 0.952485322952271f, -0.212736949324608f, 0.952322065830231f, -0.213083937764168f, 0.952158451080322f, -0.213430806994438f, 0.951994657516479f, -0.213777542114258f, 0.951830565929413f, -0.214124158024788f, 0.951666176319122f, -0.214470639824867f, 0.951501548290253f, -0.214817002415657f, 0.951336681842804f, -0.215163245797157f, 0.951171517372131f, -0.215509355068207f, 0.951006054878235f, -0.215855330228806f, 0.950840353965759f, -0.216201186180115f, 0.950674414634705f, -0.216546908020973f, 0.950508177280426f, -0.216892510652542f, 0.950341701507568f, -0.217237979173660f, 0.950174987316132f, -0.217583328485489f, 0.950007975101471f, -0.217928543686867f, 0.949840664863586f, -0.218273624777794f, 0.949673116207123f, -0.218618586659431f, 0.949505329132080f, -0.218963414430618f, 0.949337244033813f, -0.219308122992516f, 0.949168920516968f, -0.219652697443962f, 0.949000298976898f, -0.219997137784958f, 0.948831439018250f, -0.220341444015503f, 0.948662281036377f, -0.220685631036758f, 0.948492884635925f, -0.221029683947563f, 0.948323249816895f, -0.221373617649078f, 0.948153316974640f, -0.221717402338982f, 0.947983145713806f, -0.222061067819595f, 0.947812676429749f, -0.222404599189758f, 0.947641968727112f, -0.222748011350632f, 0.947470963001251f, -0.223091274499893f, 0.947299718856812f, -0.223434418439865f, 0.947128236293793f, -0.223777428269386f, 0.946956455707550f, -0.224120303988457f, 0.946784436702728f, -0.224463045597076f, 0.946612179279327f, -0.224805667996407f, 0.946439623832703f, -0.225148141384125f, 0.946266770362854f, -0.225490495562553f, 0.946093678474426f, -0.225832715630531f, 0.945920348167419f, -0.226174786686897f, 0.945746779441834f, -0.226516738533974f, 0.945572853088379f, -0.226858556270599f, 0.945398747920990f, -0.227200239896774f, 0.945224344730377f, -0.227541789412498f, 0.945049703121185f, -0.227883204817772f, 0.944874763488770f, -0.228224486112595f, 0.944699645042419f, -0.228565633296967f, 0.944524168968201f, -0.228906646370888f, 0.944348454475403f, -0.229247525334358f, 0.944172501564026f, -0.229588270187378f, 0.943996310234070f, -0.229928880929947f, 0.943819820880890f, -0.230269357562065f, 0.943643093109131f, -0.230609700083733f, 0.943466067314148f, -0.230949893593788f, 0.943288803100586f, -0.231289967894554f, 0.943111240863800f, -0.231629893183708f, 0.942933499813080f, -0.231969684362412f, 0.942755401134491f, -0.232309341430664f, 0.942577123641968f, -0.232648864388466f, 0.942398548126221f, -0.232988253235817f, 0.942219734191895f, -0.233327493071556f, 0.942040622234344f, -0.233666598796844f, 0.941861271858215f, -0.234005570411682f, 0.941681683063507f, -0.234344407916069f, 0.941501796245575f, -0.234683111310005f, 0.941321671009064f, -0.235021665692329f, 0.941141307353973f, -0.235360085964203f, 0.940960645675659f, -0.235698372125626f, 0.940779745578766f, -0.236036509275436f, 0.940598547458649f, -0.236374512314796f, 0.940417110919952f, -0.236712381243706f, 0.940235435962677f, -0.237050101161003f, 0.940053522586823f, -0.237387686967850f, 0.939871311187744f, -0.237725138664246f, 0.939688861370087f, -0.238062441349030f, 0.939506113529205f, -0.238399609923363f, 0.939323127269745f, -0.238736644387245f, 0.939139902591705f, -0.239073529839516f, 0.938956379890442f, -0.239410281181335f, 0.938772618770599f, -0.239746883511543f, 0.938588619232178f, -0.240083336830139f, 0.938404381275177f, -0.240419670939446f, 0.938219845294952f, -0.240755841135979f, 0.938035070896149f, -0.241091892123222f, 0.937849998474121f, -0.241427779197693f, 0.937664687633514f, -0.241763532161713f, 0.937479138374329f, -0.242099151015282f, 0.937293350696564f, -0.242434620857239f, 0.937107264995575f, -0.242769956588745f, 0.936920940876007f, -0.243105143308640f, 0.936734318733215f, -0.243440181016922f, 0.936547517776489f, -0.243775084614754f, 0.936360359191895f, -0.244109839200974f, 0.936173021793365f, -0.244444444775581f, 0.935985386371613f, -0.244778916239738f, 0.935797572135925f, -0.245113238692284f, 0.935609400272369f, -0.245447427034378f, 0.935421049594879f, -0.245781451463699f, 0.935232400894165f, -0.246115356683731f, 0.935043513774872f, -0.246449097990990f, 0.934854328632355f, -0.246782705187798f, 0.934664964675903f, -0.247116148471832f, 0.934475243091583f, -0.247449472546577f, 0.934285342693329f, -0.247782632708550f, 0.934095203876495f, -0.248115643858910f, 0.933904767036438f, -0.248448520898819f, 0.933714091777802f, -0.248781248927116f, 0.933523118495941f, -0.249113827943802f, 0.933331906795502f, -0.249446272850037f, 0.933140456676483f, -0.249778553843498f, 0.932948768138886f, -0.250110685825348f, 0.932756841182709f, -0.250442683696747f, 0.932564616203308f, -0.250774532556534f, 0.932372152805328f, -0.251106232404709f, 0.932179391384125f, -0.251437783241272f, 0.931986451148987f, -0.251769185066223f, 0.931793212890625f, -0.252100437879562f, 0.931599736213684f, -0.252431541681290f, 0.931405961513519f, -0.252762526273727f, 0.931211948394775f, -0.253093332052231f, 0.931017756462097f, -0.253423988819122f, 0.930823206901550f, -0.253754496574402f, 0.930628478527069f, -0.254084855318069f, 0.930433452129364f, -0.254415065050125f, 0.930238187313080f, -0.254745125770569f, 0.930042684078217f, -0.255075037479401f, 0.929846942424774f, -0.255404800176620f, 0.929650902748108f, -0.255734413862228f, 0.929454624652863f, -0.256063878536224f, 0.929258108139038f, -0.256393194198608f, 0.929061353206635f, -0.256722360849380f, 0.928864300251007f, -0.257051378488541f, 0.928667008876801f, -0.257380217313766f, 0.928469479084015f, -0.257708936929703f, 0.928271710872650f, -0.258037507534027f, 0.928073644638062f, -0.258365899324417f, 0.927875399589539f, -0.258694142103195f, 0.927676856517792f, -0.259022265672684f, 0.927478015422821f, -0.259350210428238f, 0.927278995513916f, -0.259678006172180f, 0.927079677581787f, -0.260005623102188f, 0.926880121231079f, -0.260333120822906f, 0.926680326461792f, -0.260660469532013f, 0.926480293273926f, -0.260987639427185f, 0.926280021667480f, -0.261314690113068f, 0.926079452037811f, -0.261641561985016f, 0.925878643989563f, -0.261968284845352f, 0.925677597522736f, -0.262294828891754f, 0.925476312637329f, -0.262621253728867f, 0.925274729728699f, -0.262947499752045f, 0.925072908401489f, -0.263273626565933f, 0.924870908260345f, -0.263599574565887f, 0.924668610095978f, -0.263925373554230f, 0.924466013908386f, -0.264250993728638f, 0.924263238906860f, -0.264576494693756f, 0.924060165882111f, -0.264901816844940f, 0.923856854438782f, -0.265226989984512f, 0.923653304576874f, -0.265552014112473f, 0.923449516296387f, -0.265876859426498f, 0.923245489597321f, -0.266201555728912f, 0.923041164875031f, -0.266526103019714f, 0.922836601734161f, -0.266850501298904f, 0.922631800174713f, -0.267174720764160f, 0.922426760196686f, -0.267498821020126f, 0.922221481800079f, -0.267822742462158f, 0.922015964984894f, -0.268146485090256f, 0.921810150146484f, -0.268470078706741f, 0.921604096889496f, -0.268793523311615f, 0.921397805213928f, -0.269116818904877f, 0.921191275119781f, -0.269439965486526f, 0.920984506607056f, -0.269762933254242f, 0.920777499675751f, -0.270085722208023f, 0.920570194721222f, -0.270408391952515f, 0.920362710952759f, -0.270730882883072f, 0.920154929161072f, -0.271053224802017f, 0.919946908950806f, -0.271375387907028f, 0.919738650321960f, -0.271697402000427f, 0.919530093669891f, -0.272019267082214f, 0.919321358203888f, -0.272340953350067f, 0.919112324714661f, -0.272662490606308f, 0.918903112411499f, -0.272983878850937f, 0.918693602085114f, -0.273305088281631f, 0.918483853340149f, -0.273626148700714f, 0.918273866176605f, -0.273947030305862f, 0.918063640594482f, -0.274267762899399f, 0.917853116989136f, -0.274588316679001f, 0.917642414569855f, -0.274908751249313f, 0.917431414127350f, -0.275228977203369f, 0.917220234870911f, -0.275549083948135f, 0.917008757591248f, -0.275868982076645f, 0.916797041893005f, -0.276188760995865f, 0.916585087776184f, -0.276508361101151f, 0.916372895240784f, -0.276827782392502f, 0.916160404682159f, -0.277147054672241f, 0.915947735309601f, -0.277466177940369f, 0.915734827518463f, -0.277785122394562f, 0.915521621704102f, -0.278103888034821f, 0.915308177471161f, -0.278422504663467f, 0.915094554424286f, -0.278740972280502f, 0.914880633354187f, -0.279059261083603f, 0.914666473865509f, -0.279377400875092f, 0.914452075958252f, -0.279695361852646f, 0.914237439632416f, -0.280013144016266f, 0.914022505283356f, -0.280330777168274f, 0.913807392120361f, -0.280648261308670f, 0.913592040538788f, -0.280965566635132f, 0.913376390933990f, -0.281282693147659f, 0.913160502910614f, -0.281599670648575f, 0.912944436073303f, -0.281916469335556f, 0.912728071212769f, -0.282233119010925f, 0.912511467933655f, -0.282549589872360f, 0.912294626235962f, -0.282865911722183f, 0.912077546119690f, -0.283182054758072f, 0.911860227584839f, -0.283498018980026f, 0.911642670631409f, -0.283813834190369f, 0.911424875259399f, -0.284129470586777f, 0.911206841468811f, -0.284444957971573f, 0.910988569259644f, -0.284760266542435f, 0.910769999027252f, -0.285075396299362f, 0.910551249980927f, -0.285390377044678f, 0.910332262516022f, -0.285705178976059f, 0.910112977027893f, -0.286019802093506f, 0.909893512725830f, -0.286334276199341f, 0.909673750400543f, -0.286648571491241f, 0.909453809261322f, -0.286962717771530f, 0.909233570098877f, -0.287276685237885f, 0.909013092517853f, -0.287590473890305f, 0.908792436122894f, -0.287904083728790f, 0.908571481704712f, -0.288217544555664f, 0.908350288867950f, -0.288530826568604f, 0.908128857612610f, -0.288843959569931f, 0.907907187938690f, -0.289156883955002f, 0.907685279846191f, -0.289469659328461f, 0.907463192939758f, -0.289782285690308f, 0.907240808010101f, -0.290094703435898f, 0.907018184661865f, -0.290406972169876f, 0.906795322895050f, -0.290719062089920f, 0.906572222709656f, -0.291031002998352f, 0.906348884105682f, -0.291342735290527f, 0.906125307083130f, -0.291654318571091f, 0.905901491641998f, -0.291965723037720f, 0.905677437782288f, -0.292276978492737f, 0.905453145503998f, -0.292588025331497f, 0.905228614807129f, -0.292898923158646f, 0.905003845691681f, -0.293209642171860f, 0.904778838157654f, -0.293520182371140f, 0.904553592205048f, -0.293830573558807f, 0.904328107833862f, -0.294140785932541f, 0.904102385044098f, -0.294450789690018f, 0.903876423835754f, -0.294760644435883f, 0.903650224208832f, -0.295070350170136f, 0.903423786163330f, -0.295379847288132f, 0.903197109699249f, -0.295689195394516f, 0.902970194816589f, -0.295998334884644f, 0.902743041515350f, -0.296307325363159f, 0.902515649795532f, -0.296616137027740f, 0.902288019657135f, -0.296924799680710f, 0.902060210704803f, -0.297233253717422f, 0.901832103729248f, -0.297541528940201f, 0.901603758335114f, -0.297849655151367f, 0.901375174522400f, -0.298157602548599f, 0.901146411895752f, -0.298465341329575f, 0.900917351245880f, -0.298772931098938f, 0.900688111782074f, -0.299080342054367f, 0.900458574295044f, -0.299387603998184f, 0.900228857994080f, -0.299694657325745f, 0.899998843669891f, -0.300001531839371f, 0.899768650531769f, -0.300308227539063f, 0.899538159370422f, -0.300614774227142f, 0.899307489395142f, -0.300921112298965f, 0.899076581001282f, -0.301227301359177f, 0.898845434188843f, -0.301533311605453f, 0.898614048957825f, -0.301839113235474f, 0.898382425308228f, -0.302144765853882f, 0.898150563240051f, -0.302450239658356f, 0.897918462753296f, -0.302755534648895f, 0.897686123847961f, -0.303060621023178f, 0.897453546524048f, -0.303365558385849f, 0.897220790386200f, -0.303670316934586f, 0.896987736225128f, -0.303974896669388f, 0.896754503250122f, -0.304279297590256f, 0.896520972251892f, -0.304583519697189f, 0.896287262439728f, -0.304887533187866f, 0.896053314208984f, -0.305191397666931f, 0.895819067955017f, -0.305495083332062f, 0.895584642887115f, -0.305798590183258f, 0.895349979400635f, -0.306101888418198f, 0.895115137100220f, -0.306405037641525f, 0.894879996776581f, -0.306708008050919f, 0.894644618034363f, -0.307010769844055f, 0.894409060478210f, -0.307313382625580f, 0.894173204898834f, -0.307615786790848f, 0.893937170505524f, -0.307918041944504f, 0.893700897693634f, -0.308220088481903f, 0.893464326858521f, -0.308521956205368f, 0.893227577209473f, -0.308823645114899f, 0.892990648746490f, -0.309125155210495f, 0.892753422260284f, -0.309426486492157f, 0.892515957355499f, -0.309727638959885f, 0.892278313636780f, -0.310028612613678f, 0.892040371894836f, -0.310329377651215f, 0.891802251338959f, -0.310629993677139f, 0.891563892364502f, -0.310930401086807f, 0.891325294971466f, -0.311230629682541f, 0.891086459159851f, -0.311530679464340f, 0.890847444534302f, -0.311830550432205f, 0.890608131885529f, -0.312130242586136f, 0.890368640422821f, -0.312429755926132f, 0.890128850936890f, -0.312729060649872f, 0.889888882637024f, -0.313028186559677f, 0.889648675918579f, -0.313327133655548f, 0.889408230781555f, -0.313625901937485f, 0.889167606830597f, -0.313924491405487f, 0.888926684856415f, -0.314222872257233f, 0.888685584068298f, -0.314521104097366f, 0.888444244861603f, -0.314819127321243f, 0.888202667236328f, -0.315116971731186f, 0.887960851192474f, -0.315414607524872f, 0.887718796730042f, -0.315712094306946f, 0.887476563453674f, -0.316009372472763f, 0.887234091758728f, -0.316306471824646f, 0.886991322040558f, -0.316603392362595f, 0.886748373508453f, -0.316900104284287f, 0.886505246162415f, -0.317196637392044f, 0.886261820793152f, -0.317492991685867f, 0.886018216609955f, -0.317789167165756f, 0.885774314403534f, -0.318085134029388f, 0.885530233383179f, -0.318380922079086f, 0.885285973548889f, -0.318676531314850f, 0.885041415691376f, -0.318971961736679f, 0.884796679019928f, -0.319267183542252f, 0.884551644325256f, -0.319562226533890f, 0.884306430816650f, -0.319857090711594f, 0.884061038494110f, -0.320151746273041f, 0.883815348148346f, -0.320446223020554f, 0.883569478988647f, -0.320740520954132f, 0.883323311805725f, -0.321034610271454f, 0.883076965808868f, -0.321328520774841f, 0.882830440998077f, -0.321622252464294f, 0.882583618164063f, -0.321915775537491f, 0.882336616516113f, -0.322209119796753f, 0.882089376449585f, -0.322502255439758f, 0.881841897964478f, -0.322795242071152f, 0.881594181060791f, -0.323088020086288f, 0.881346285343170f, -0.323380589485168f, 0.881098151206970f, -0.323672980070114f, 0.880849778652191f, -0.323965191841125f, 0.880601167678833f, -0.324257194995880f, 0.880352377891541f, -0.324549019336700f, 0.880103349685669f, -0.324840664863586f, 0.879854083061218f, -0.325132101774216f, 0.879604578018188f, -0.325423330068588f, 0.879354894161224f, -0.325714409351349f, 0.879104971885681f, -0.326005280017853f, 0.878854811191559f, -0.326295942068100f, 0.878604412078857f, -0.326586425304413f, 0.878353834152222f, -0.326876699924469f, 0.878103017807007f, -0.327166795730591f, 0.877851963043213f, -0.327456712722778f, 0.877600669860840f, -0.327746421098709f, 0.877349197864532f, -0.328035950660706f, 0.877097487449646f, -0.328325271606445f, 0.876845538616180f, -0.328614413738251f, 0.876593410968781f, -0.328903347253799f, 0.876341044902802f, -0.329192101955414f, 0.876088440418243f, -0.329480648040771f, 0.875835597515106f, -0.329769015312195f, 0.875582575798035f, -0.330057173967361f, 0.875329315662384f, -0.330345153808594f, 0.875075817108154f, -0.330632925033569f, 0.874822139739990f, -0.330920487642288f, 0.874568223953247f, -0.331207901239395f, 0.874314069747925f, -0.331495076417923f, 0.874059677124023f, -0.331782072782516f, 0.873805105686188f, -0.332068890333176f, 0.873550295829773f, -0.332355499267578f, 0.873295307159424f, -0.332641899585724f, 0.873040020465851f, -0.332928121089935f, 0.872784554958344f, -0.333214133977890f, 0.872528910636902f, -0.333499968051910f, 0.872272968292236f, -0.333785593509674f, 0.872016847133636f, -0.334071010351181f, 0.871760547161102f, -0.334356248378754f, 0.871503949165344f, -0.334641307592392f, 0.871247172355652f, -0.334926128387451f, 0.870990216732025f, -0.335210770368576f, 0.870733022689819f, -0.335495233535767f, 0.870475590229034f, -0.335779488086700f, 0.870217919349670f, -0.336063534021378f, 0.869960069656372f, -0.336347371339798f, 0.869701981544495f, -0.336631029844284f, 0.869443655014038f, -0.336914509534836f, 0.869185149669647f, -0.337197750806808f, 0.868926405906677f, -0.337480813264847f, 0.868667483329773f, -0.337763696908951f, 0.868408262729645f, -0.338046342134476f, 0.868148922920227f, -0.338328808546066f, 0.867889285087585f, -0.338611096143723f, 0.867629468441010f, -0.338893145322800f, 0.867369413375854f, -0.339175015687943f, 0.867109179496765f, -0.339456677436829f, 0.866848707199097f, -0.339738160371780f, 0.866588056087494f, -0.340019434690475f, 0.866327106952667f, -0.340300500392914f, 0.866066038608551f, -0.340581357479095f, 0.865804672241211f, -0.340862035751343f, 0.865543127059937f, -0.341142505407333f, 0.865281403064728f, -0.341422766447067f, 0.865019381046295f, -0.341702848672867f, 0.864757239818573f, -0.341982692480087f, 0.864494800567627f, -0.342262357473373f, 0.864232182502747f, -0.342541843652725f, 0.863969385623932f, -0.342821091413498f, 0.863706290721893f, -0.343100160360336f, 0.863443076610565f, -0.343379020690918f, 0.863179564476013f, -0.343657672405243f, 0.862915873527527f, -0.343936115503311f, 0.862652003765106f, -0.344214379787445f, 0.862387895584106f, -0.344492435455322f, 0.862123548984528f, -0.344770282506943f, 0.861859023571014f, -0.345047920942307f, 0.861594259738922f, -0.345325350761414f, 0.861329257488251f, -0.345602601766586f, 0.861064076423645f, -0.345879614353180f, 0.860798716545105f, -0.346156448125839f, 0.860533118247986f, -0.346433073282242f, 0.860267281532288f, -0.346709519624710f, 0.860001266002655f, -0.346985727548599f, 0.859735012054443f, -0.347261756658554f, 0.859468579292297f, -0.347537547349930f, 0.859201908111572f, -0.347813159227371f, 0.858934998512268f, -0.348088562488556f, 0.858667910099030f, -0.348363757133484f, 0.858400642871857f, -0.348638743162155f, 0.858133137226105f, -0.348913550376892f, 0.857865393161774f, -0.349188119173050f, 0.857597470283508f, -0.349462509155273f, 0.857329368591309f, -0.349736660718918f, 0.857060968875885f, -0.350010633468628f, 0.856792449951172f, -0.350284397602081f, 0.856523692607880f, -0.350557953119278f, 0.856254696846008f, -0.350831300020218f, 0.855985522270203f, -0.351104438304901f, 0.855716109275818f, -0.351377367973328f, 0.855446517467499f, -0.351650089025497f, 0.855176687240601f, -0.351922631263733f, 0.854906618595123f, -0.352194935083389f, 0.854636430740356f, -0.352467030286789f, 0.854365944862366f, -0.352738946676254f, 0.854095339775085f, -0.353010624647141f, 0.853824436664581f, -0.353282123804092f, 0.853553414344788f, -0.353553384542465f, 0.853282094001770f, -0.353824466466904f, 0.853010654449463f, -0.354095309972763f, 0.852738916873932f, -0.354365974664688f, 0.852467060089111f, -0.354636400938034f, 0.852194905281067f, -0.354906648397446f, 0.851922631263733f, -0.355176687240601f, 0.851650118827820f, -0.355446487665176f, 0.851377367973328f, -0.355716109275818f, 0.851104438304901f, -0.355985492467880f, 0.850831270217896f, -0.356254696846008f, 0.850557923316956f, -0.356523662805557f, 0.850284397602081f, -0.356792420148849f, 0.850010633468628f, -0.357060998678207f, 0.849736690521240f, -0.357329338788986f, 0.849462509155273f, -0.357597470283508f, 0.849188148975372f, -0.357865422964096f, 0.848913550376892f, -0.358133137226105f, 0.848638772964478f, -0.358400642871857f, 0.848363757133484f, -0.358667939901352f, 0.848088562488556f, -0.358935028314590f, 0.847813189029694f, -0.359201908111572f, 0.847537577152252f, -0.359468549489975f, 0.847261726856232f, -0.359735012054443f, 0.846985757350922f, -0.360001266002655f, 0.846709489822388f, -0.360267281532288f, 0.846433103084564f, -0.360533088445663f, 0.846156477928162f, -0.360798716545105f, 0.845879614353180f, -0.361064106225967f, 0.845602571964264f, -0.361329287290573f, 0.845325350761414f, -0.361594229936600f, 0.845047891139984f, -0.361858993768692f, 0.844770252704620f, -0.362123548984528f, 0.844492435455322f, -0.362387865781784f, 0.844214379787445f, -0.362651973962784f, 0.843936145305634f, -0.362915903329849f, 0.843657672405243f, -0.363179564476013f, 0.843379020690918f, -0.363443046808243f, 0.843100130558014f, -0.363706320524216f, 0.842821121215820f, -0.363969355821610f, 0.842541813850403f, -0.364232182502747f, 0.842262387275696f, -0.364494800567627f, 0.841982722282410f, -0.364757210016251f, 0.841702818870544f, -0.365019410848618f, 0.841422796249390f, -0.365281373262405f, 0.841142535209656f, -0.365543156862259f, 0.840862035751343f, -0.365804702043533f, 0.840581357479095f, -0.366066008806229f, 0.840300500392914f, -0.366327136754990f, 0.840019404888153f, -0.366588026285172f, 0.839738130569458f, -0.366848707199097f, 0.839456677436829f, -0.367109179496765f, 0.839175045490265f, -0.367369443178177f, 0.838893175125122f, -0.367629468441010f, 0.838611066341400f, -0.367889285087585f, 0.838328838348389f, -0.368148893117905f, 0.838046371936798f, -0.368408292531967f, 0.837763667106628f, -0.368667453527451f, 0.837480843067169f, -0.368926405906677f, 0.837197780609131f, -0.369185149669647f, 0.836914479732513f, -0.369443655014038f, 0.836631059646606f, -0.369701951742172f, 0.836347401142120f, -0.369960039854050f, 0.836063504219055f, -0.370217919349670f, 0.835779488086700f, -0.370475560426712f, 0.835495233535767f, -0.370732992887497f, 0.835210800170898f, -0.370990216732025f, 0.834926128387451f, -0.371247202157974f, 0.834641277790070f, -0.371503978967667f, 0.834356248378754f, -0.371760547161102f, 0.834071040153503f, -0.372016876935959f, 0.833785593509674f, -0.372272998094559f, 0.833499968051910f, -0.372528880834579f, 0.833214163780212f, -0.372784584760666f, 0.832928121089935f, -0.373040050268173f, 0.832641899585724f, -0.373295277357101f, 0.832355499267578f, -0.373550295829773f, 0.832068860530853f, -0.373805105686188f, 0.831782102584839f, -0.374059677124023f, 0.831495106220245f, -0.374314039945602f, 0.831207871437073f, -0.374568194150925f, 0.830920517444611f, -0.374822109937668f, 0.830632925033569f, -0.375075817108154f, 0.830345153808594f, -0.375329315662384f, 0.830057144165039f, -0.375582575798035f, 0.829769015312195f, -0.375835597515106f, 0.829480648040771f, -0.376088410615921f, 0.829192101955414f, -0.376341015100479f, 0.828903317451477f, -0.376593410968781f, 0.828614413738251f, -0.376845568418503f, 0.828325271606445f, -0.377097487449646f, 0.828035950660706f, -0.377349197864532f, 0.827746450901031f, -0.377600699663162f, 0.827456712722778f, -0.377851963043213f, 0.827166795730591f, -0.378102988004684f, 0.826876699924469f, -0.378353834152222f, 0.826586425304413f, -0.378604412078857f, 0.826295912265778f, -0.378854811191559f, 0.826005280017853f, -0.379104942083359f, 0.825714409351349f, -0.379354894161224f, 0.825423359870911f, -0.379604607820511f, 0.825132071971893f, -0.379854083061218f, 0.824840664863586f, -0.380103349685669f, 0.824549019336700f, -0.380352377891541f, 0.824257194995880f, -0.380601197481155f, 0.823965191841125f, -0.380849778652191f, 0.823673009872437f, -0.381098151206970f, 0.823380589485168f, -0.381346285343170f, 0.823087990283966f, -0.381594210863113f, 0.822795212268829f, -0.381841897964478f, 0.822502255439758f, -0.382089376449585f, 0.822209119796753f, -0.382336616516113f, 0.821915745735168f, -0.382583618164063f, 0.821622252464294f, -0.382830440998077f, 0.821328520774841f, -0.383076995611191f, 0.821034610271454f, -0.383323341608047f, 0.820740520954132f, -0.383569449186325f, 0.820446193218231f, -0.383815348148346f, 0.820151746273041f, -0.384061008691788f, 0.819857060909271f, -0.384306460618973f, 0.819562196731567f, -0.384551674127579f, 0.819267153739929f, -0.384796649217606f, 0.818971931934357f, -0.385041415691376f, 0.818676531314850f, -0.385285943746567f, 0.818380951881409f, -0.385530263185501f, 0.818085134029388f, -0.385774344205856f, 0.817789137363434f, -0.386018186807632f, 0.817493021488190f, -0.386261820793152f, 0.817196667194366f, -0.386505216360092f, 0.816900074481964f, -0.386748403310776f, 0.816603362560272f, -0.386991351842880f, 0.816306471824646f, -0.387234061956406f, 0.816009342670441f, -0.387476563453674f, 0.815712094306946f, -0.387718826532364f, 0.815414607524872f, -0.387960851192474f, 0.815116941928864f, -0.388202667236328f, 0.814819097518921f, -0.388444244861603f, 0.814521074295044f, -0.388685584068298f, 0.814222872257233f, -0.388926714658737f, 0.813924491405487f, -0.389167606830597f, 0.813625931739807f, -0.389408260583878f, 0.813327133655548f, -0.389648675918579f, 0.813028216362000f, -0.389888882637024f, 0.812729060649872f, -0.390128880739212f, 0.812429726123810f, -0.390368610620499f, 0.812130272388458f, -0.390608131885529f, 0.811830580234528f, -0.390847414731979f, 0.811530709266663f, -0.391086459159851f, 0.811230659484863f, -0.391325294971466f, 0.810930430889130f, -0.391563892364502f, 0.810629963874817f, -0.391802251338959f, 0.810329377651215f, -0.392040401697159f, 0.810028612613678f, -0.392278283834457f, 0.809727668762207f, -0.392515957355499f, 0.809426486492157f, -0.392753422260284f, 0.809125185012817f, -0.392990618944168f, 0.808823645114899f, -0.393227607011795f, 0.808521986007690f, -0.393464356660843f, 0.808220088481903f, -0.393700867891312f, 0.807918012142181f, -0.393937170505524f, 0.807615816593170f, -0.394173204898834f, 0.807313382625580f, -0.394409030675888f, 0.807010769844055f, -0.394644618034363f, 0.806707978248596f, -0.394879996776581f, 0.806405067443848f, -0.395115107297897f, 0.806101918220520f, -0.395350009202957f, 0.805798590183258f, -0.395584672689438f, 0.805495083332062f, -0.395819097757339f, 0.805191397666931f, -0.396053284406662f, 0.804887533187866f, -0.396287262439728f, 0.804583489894867f, -0.396520972251892f, 0.804279267787933f, -0.396754473447800f, 0.803974866867065f, -0.396987736225128f, 0.803670346736908f, -0.397220760583878f, 0.803365588188171f, -0.397453576326370f, 0.803060650825500f, -0.397686123847961f, 0.802755534648895f, -0.397918462753296f, 0.802450239658356f, -0.398150533437729f, 0.802144765853882f, -0.398382395505905f, 0.801839113235474f, -0.398614019155502f, 0.801533281803131f, -0.398845434188843f, 0.801227271556854f, -0.399076581001282f, 0.800921142101288f, -0.399307489395142f, 0.800614774227142f, -0.399538189172745f, 0.800308227539063f, -0.399768620729446f, 0.800001561641693f, -0.399998843669891f, 0.799694657325745f, -0.400228828191757f, 0.799387574195862f, -0.400458574295044f, 0.799080371856689f, -0.400688081979752f, 0.798772931098938f, -0.400917351245880f, 0.798465371131897f, -0.401146411895752f, 0.798157572746277f, -0.401375204324722f, 0.797849655151367f, -0.401603758335114f, 0.797541558742523f, -0.401832103729248f, 0.797233223915100f, -0.402060180902481f, 0.796924769878387f, -0.402288049459457f, 0.796616137027740f, -0.402515679597855f, 0.796307325363159f, -0.402743041515350f, 0.795998334884644f, -0.402970194816589f, 0.795689165592194f, -0.403197109699249f, 0.795379877090454f, -0.403423786163330f, 0.795070350170136f, -0.403650224208832f, 0.794760644435883f, -0.403876423835754f, 0.794450819492340f, -0.404102355241776f, 0.794140756130219f, -0.404328078031540f, 0.793830573558807f, -0.404553562402725f, 0.793520212173462f, -0.404778808355331f, 0.793209671974182f, -0.405003815889359f, 0.792898952960968f, -0.405228585004807f, 0.792588055133820f, -0.405453115701675f, 0.792276978492737f, -0.405677437782288f, 0.791965723037720f, -0.405901491641998f, 0.791654348373413f, -0.406125307083130f, 0.791342735290527f, -0.406348884105682f, 0.791031002998352f, -0.406572192907333f, 0.790719091892242f, -0.406795293092728f, 0.790407001972198f, -0.407018154859543f, 0.790094733238220f, -0.407240778207779f, 0.789782285690308f, -0.407463163137436f, 0.789469659328461f, -0.407685309648514f, 0.789156913757324f, -0.407907217741013f, 0.788843929767609f, -0.408128857612610f, 0.788530826568604f, -0.408350288867950f, 0.788217544555664f, -0.408571451902390f, 0.787904083728790f, -0.408792406320572f, 0.787590444087982f, -0.409013092517853f, 0.787276685237885f, -0.409233570098877f, 0.786962687969208f, -0.409453779459000f, 0.786648571491241f, -0.409673750400543f, 0.786334276199341f, -0.409893482923508f, 0.786019802093506f, -0.410112977027893f, 0.785705149173737f, -0.410332232713699f, 0.785390377044678f, -0.410551249980927f, 0.785075426101685f, -0.410770028829575f, 0.784760236740112f, -0.410988569259644f, 0.784444928169250f, -0.411206841468811f, 0.784129500389099f, -0.411424905061722f, 0.783813834190369f, -0.411642700433731f, 0.783498048782349f, -0.411860257387161f, 0.783182024955750f, -0.412077575922012f, 0.782865881919861f, -0.412294656038284f, 0.782549619674683f, -0.412511497735977f, 0.782233119010925f, -0.412728071212769f, 0.781916499137878f, -0.412944436073303f, 0.781599700450897f, -0.413160532712936f, 0.781282722949982f, -0.413376390933990f, 0.780965566635132f, -0.413592010736465f, 0.780648231506348f, -0.413807392120361f, 0.780330777168274f, -0.414022535085678f, 0.780013144016266f, -0.414237409830093f, 0.779695332050323f, -0.414452046155930f, 0.779377400875092f, -0.414666473865509f, 0.779059290885925f, -0.414880603551865f, 0.778741002082825f, -0.415094524621964f, 0.778422534465790f, -0.415308207273483f, 0.778103888034821f, -0.415521621704102f, 0.777785122394562f, -0.415734797716141f, 0.777466177940369f, -0.415947735309601f, 0.777147054672241f, -0.416160434484482f, 0.776827812194824f, -0.416372895240784f, 0.776508331298828f, -0.416585087776184f, 0.776188731193542f, -0.416797041893005f, 0.775869011878967f, -0.417008757591248f, 0.775549054145813f, -0.417220205068588f, 0.775228977203369f, -0.417431443929672f, 0.774908721446991f, -0.417642414569855f, 0.774588346481323f, -0.417853146791458f, 0.774267733097076f, -0.418063640594482f, 0.773947000503540f, -0.418273866176605f, 0.773626148700714f, -0.418483853340149f, 0.773305058479309f, -0.418693602085114f, 0.772983849048615f, -0.418903112411499f, 0.772662520408630f, -0.419112354516983f, 0.772340953350067f, -0.419321358203888f, 0.772019267082214f, -0.419530123472214f, 0.771697402000427f, -0.419738620519638f, 0.771375417709351f, -0.419946908950806f, 0.771053194999695f, -0.420154929161072f, 0.770730912685394f, -0.420362681150436f, 0.770408391952515f, -0.420570224523544f, 0.770085752010345f, -0.420777499675751f, 0.769762933254242f, -0.420984506607056f, 0.769439935684204f, -0.421191304922104f, 0.769116818904877f, -0.421397835016251f, 0.768793523311615f, -0.421604126691818f, 0.768470108509064f, -0.421810150146484f, 0.768146514892578f, -0.422015935182571f, 0.767822742462158f, -0.422221481800079f, 0.767498791217804f, -0.422426789999008f, 0.767174720764160f, -0.422631829977036f, 0.766850471496582f, -0.422836631536484f, 0.766526103019714f, -0.423041164875031f, 0.766201555728912f, -0.423245459794998f, 0.765876889228821f, -0.423449516296387f, 0.765551984310150f, -0.423653304576874f, 0.765226960182190f, -0.423856884241104f, 0.764901816844940f, -0.424060165882111f, 0.764576494693756f, -0.424263238906860f, 0.764250993728638f, -0.424466013908386f, 0.763925373554230f, -0.424668580293655f, 0.763599574565887f, -0.424870878458023f, 0.763273596763611f, -0.425072938203812f, 0.762947499752045f, -0.425274729728699f, 0.762621283531189f, -0.425476282835007f, 0.762294828891754f, -0.425677597522736f, 0.761968255043030f, -0.425878643989563f, 0.761641561985016f, -0.426079452037811f, 0.761314690113068f, -0.426279991865158f, 0.760987639427185f, -0.426480293273926f, 0.760660469532013f, -0.426680356264114f, 0.760333120822906f, -0.426880151033401f, 0.760005652904511f, -0.427079707384110f, 0.759678006172180f, -0.427278995513916f, 0.759350180625916f, -0.427478045225143f, 0.759022235870361f, -0.427676826715469f, 0.758694171905518f, -0.427875369787216f, 0.758365929126740f, -0.428073674440384f, 0.758037507534027f, -0.428271710872650f, 0.757708966732025f, -0.428469479084015f, 0.757380247116089f, -0.428667008876801f, 0.757051348686218f, -0.428864300251007f, 0.756722390651703f, -0.429061323404312f, 0.756393194198608f, -0.429258108139038f, 0.756063878536224f, -0.429454624652863f, 0.755734443664551f, -0.429650902748108f, 0.755404829978943f, -0.429846942424774f, 0.755075037479401f, -0.430042684078217f, 0.754745125770569f, -0.430238217115402f, 0.754415094852448f, -0.430433481931686f, 0.754084885120392f, -0.430628478527069f, 0.753754496574402f, -0.430823236703873f, 0.753423988819122f, -0.431017726659775f, 0.753093302249908f, -0.431211978197098f, 0.752762496471405f, -0.431405961513519f, 0.752431571483612f, -0.431599706411362f, 0.752100467681885f, -0.431793183088303f, 0.751769185066223f, -0.431986421346664f, 0.751437783241272f, -0.432179391384125f, 0.751106262207031f, -0.432372123003006f, 0.750774562358856f, -0.432564586400986f, 0.750442683696747f, -0.432756811380386f, 0.750110685825348f, -0.432948768138886f, 0.749778568744659f, -0.433140486478806f, 0.749446272850037f, -0.433331936597824f, 0.749113857746124f, -0.433523118495941f, 0.748781263828278f, -0.433714061975479f, 0.748448550701141f, -0.433904737234116f, 0.748115658760071f, -0.434095174074173f, 0.747782647609711f, -0.434285342693329f, 0.747449457645416f, -0.434475272893906f, 0.747116148471832f, -0.434664934873581f, 0.746782720088959f, -0.434854328632355f, 0.746449112892151f, -0.435043483972549f, 0.746115326881409f, -0.435232400894165f, 0.745781481266022f, -0.435421019792557f, 0.745447397232056f, -0.435609430074692f, 0.745113253593445f, -0.435797542333603f, 0.744778931140900f, -0.435985416173935f, 0.744444429874420f, -0.436173021793365f, 0.744109809398651f, -0.436360388994217f, 0.743775069713593f, -0.436547487974167f, 0.743440151214600f, -0.436734348535538f, 0.743105113506317f, -0.436920911073685f, 0.742769956588745f, -0.437107264995575f, 0.742434620857239f, -0.437293320894241f, 0.742099165916443f, -0.437479138374329f, 0.741763532161713f, -0.437664687633514f, 0.741427779197693f, -0.437849998474121f, 0.741091907024384f, -0.438035041093826f, 0.740755856037140f, -0.438219845294952f, 0.740419685840607f, -0.438404351472855f, 0.740083336830139f, -0.438588619232178f, 0.739746868610382f, -0.438772648572922f, 0.739410281181335f, -0.438956409692764f, 0.739073514938354f, -0.439139902591705f, 0.738736629486084f, -0.439323127269745f, 0.738399624824524f, -0.439506113529205f, 0.738062441349030f, -0.439688831567764f, 0.737725138664246f, -0.439871311187744f, 0.737387716770172f, -0.440053492784500f, 0.737050116062164f, -0.440235435962677f, 0.736712396144867f, -0.440417140722275f, 0.736374497413635f, -0.440598547458649f, 0.736036539077759f, -0.440779715776443f, 0.735698342323303f, -0.440960645675659f, 0.735360085964203f, -0.441141277551651f, 0.735021650791168f, -0.441321671009064f, 0.734683096408844f, -0.441501796245575f, 0.734344422817230f, -0.441681683063507f, 0.734005570411682f, -0.441861271858215f, 0.733666598796844f, -0.442040622234344f, 0.733327507972717f, -0.442219734191895f, 0.732988238334656f, -0.442398548126221f, 0.732648849487305f, -0.442577123641968f, 0.732309341430664f, -0.442755430936813f, 0.731969714164734f, -0.442933470010757f, 0.731629908084869f, -0.443111270666122f, 0.731289982795715f, -0.443288803100586f, 0.730949878692627f, -0.443466067314148f, 0.730609714984894f, -0.443643063306808f, 0.730269372463226f, -0.443819820880890f, 0.729928910732269f, -0.443996280431747f, 0.729588270187378f, -0.444172531366348f, 0.729247510433197f, -0.444348484277725f, 0.728906631469727f, -0.444524168968201f, 0.728565633296967f, -0.444699615240097f, 0.728224515914917f, -0.444874793291092f, 0.727883219718933f, -0.445049703121185f, 0.727541804313660f, -0.445224374532700f, 0.727200269699097f, -0.445398747920990f, 0.726858556270599f, -0.445572882890701f, 0.726516723632813f, -0.445746749639511f, 0.726174771785736f, -0.445920348167419f, 0.725832700729370f, -0.446093708276749f, 0.725490510463715f, -0.446266770362854f, 0.725148141384125f, -0.446439594030380f, 0.724805653095245f, -0.446612149477005f, 0.724463045597076f, -0.446784436702728f, 0.724120318889618f, -0.446956485509872f, 0.723777413368225f, -0.447128236293793f, 0.723434448242188f, -0.447299748659134f, 0.723091304302216f, -0.447470992803574f, 0.722747981548309f, -0.447641968727112f, 0.722404599189758f, -0.447812676429749f, 0.722061097621918f, -0.447983115911484f, 0.721717417240143f, -0.448153316974640f, 0.721373617649078f, -0.448323249816895f, 0.721029698848724f, -0.448492884635925f, 0.720685660839081f, -0.448662281036377f, 0.720341444015503f, -0.448831409215927f, 0.719997107982636f, -0.449000298976898f, 0.719652712345123f, -0.449168890714645f, 0.719308137893677f, -0.449337244033813f, 0.718963444232941f, -0.449505299329758f, 0.718618571758270f, -0.449673116207123f, 0.718273639678955f, -0.449840664863586f, 0.717928528785706f, -0.450007945299149f, 0.717583298683167f, -0.450174957513809f, 0.717238008975983f, -0.450341701507568f, 0.716892480850220f, -0.450508207082748f, 0.716546893119812f, -0.450674414634705f, 0.716201186180115f, -0.450840383768082f, 0.715855300426483f, -0.451006084680557f, 0.715509355068207f, -0.451171487569809f, 0.715163230895996f, -0.451336652040482f, 0.714816987514496f, -0.451501548290253f, 0.714470624923706f, -0.451666176319122f, 0.714124143123627f, -0.451830536127090f, 0.713777542114258f, -0.451994657516479f, 0.713430821895599f, -0.452158480882645f, 0.713083922863007f, -0.452322036027908f, 0.712736964225769f, -0.452485352754593f, 0.712389826774597f, -0.452648371458054f, 0.712042629718781f, -0.452811151742935f, 0.711695253849030f, -0.452973634004593f, 0.711347758769989f, -0.453135877847672f, 0.711000144481659f, -0.453297853469849f, 0.710652410984039f, -0.453459560871124f, 0.710304558277130f, -0.453621000051498f, 0.709956526756287f, -0.453782171010971f, 0.709608435630798f, -0.453943043947220f, 0.709260225296021f, -0.454103678464890f, 0.708911836147308f, -0.454264044761658f, 0.708563387393951f, -0.454424172639847f, 0.708214759826660f, -0.454584002494812f, 0.707866072654724f, -0.454743564128876f, 0.707517206668854f, -0.454902857542038f, 0.707168221473694f, -0.455061882734299f, 0.706819176673889f, -0.455220639705658f, 0.706469953060150f, -0.455379128456116f, 0.706120610237122f, -0.455537378787994f, 0.705771148204803f, -0.455695331096649f, 0.705421566963196f, -0.455853015184402f, 0.705071866512299f, -0.456010431051254f, 0.704722046852112f, -0.456167578697205f, 0.704372167587280f, -0.456324487924576f, 0.704022109508514f, -0.456481099128723f, 0.703671932220459f, -0.456637442111969f, 0.703321635723114f, -0.456793516874313f, 0.702971220016479f, -0.456949323415756f, 0.702620685100555f, -0.457104891538620f, 0.702270030975342f, -0.457260161638260f, 0.701919257640839f, -0.457415163516998f, 0.701568365097046f, -0.457569897174835f, 0.701217353343964f, -0.457724362611771f, 0.700866222381592f, -0.457878559827805f, 0.700514972209930f, -0.458032488822937f, 0.700163602828979f, -0.458186149597168f, 0.699812114238739f, -0.458339542150497f, 0.699460506439209f, -0.458492636680603f, 0.699108779430389f, -0.458645492792130f, 0.698756933212280f, -0.458798080682755f, 0.698404967784882f, -0.458950400352478f, 0.698052942752838f, -0.459102421998978f, 0.697700738906860f, -0.459254205226898f, 0.697348415851593f, -0.459405690431595f, 0.696996033191681f, -0.459556937217712f, 0.696643471717834f, -0.459707885980606f, 0.696290850639343f, -0.459858566522598f, 0.695938050746918f, -0.460008978843689f, 0.695585191249847f, -0.460159152746201f, 0.695232212543488f, -0.460309028625488f, 0.694879114627838f, -0.460458606481552f, 0.694525837898254f, -0.460607945919037f, 0.694172501564026f, -0.460757017135620f, 0.693819046020508f, -0.460905820131302f, 0.693465530872345f, -0.461054325103760f, 0.693111836910248f, -0.461202591657639f, 0.692758023738861f, -0.461350560188293f, 0.692404091358185f, -0.461498260498047f, 0.692050099372864f, -0.461645722389221f, 0.691695988178253f, -0.461792886257172f, 0.691341698169708f, -0.461939752101898f, 0.690987348556519f, -0.462086379528046f, 0.690632879734039f, -0.462232738733292f, 0.690278291702271f, -0.462378799915314f, 0.689923584461212f, -0.462524622678757f, 0.689568817615509f, -0.462670147418976f, 0.689213871955872f, -0.462815403938293f, 0.688858866691589f, -0.462960392236710f, 0.688503682613373f, -0.463105112314224f, 0.688148438930511f, -0.463249564170837f, 0.687793076038361f, -0.463393747806549f, 0.687437593936920f, -0.463537633419037f, 0.687082052230835f, -0.463681250810623f, 0.686726331710815f, -0.463824629783630f, 0.686370551586151f, -0.463967710733414f, 0.686014592647552f, -0.464110493659973f, 0.685658574104309f, -0.464253038167953f, 0.685302436351776f, -0.464395314455032f, 0.684946238994598f, -0.464537292718887f, 0.684589862823486f, -0.464679002761841f, 0.684233427047729f, -0.464820444583893f, 0.683876872062683f, -0.464961618185043f, 0.683520197868347f, -0.465102523565292f, 0.683163404464722f, -0.465243130922318f, 0.682806491851807f, -0.465383470058441f, 0.682449519634247f, -0.465523540973663f, 0.682092368602753f, -0.465663343667984f, 0.681735157966614f, -0.465802878141403f, 0.681377887725830f, -0.465942144393921f, 0.681020438671112f, -0.466081112623215f, 0.680662930011749f, -0.466219812631607f, 0.680305242538452f, -0.466358244419098f, 0.679947495460510f, -0.466496407985687f, 0.679589688777924f, -0.466634273529053f, 0.679231703281403f, -0.466771900653839f, 0.678873658180237f, -0.466909229755402f, 0.678515493869781f, -0.467046260833740f, 0.678157210350037f, -0.467183053493500f, 0.677798807621002f, -0.467319577932358f, 0.677440345287323f, -0.467455804347992f, 0.677081763744354f, -0.467591762542725f, 0.676723062992096f, -0.467727422714233f, 0.676364302635193f, -0.467862844467163f, 0.676005363464355f, -0.467997968196869f, 0.675646364688873f, -0.468132823705673f, 0.675287246704102f, -0.468267410993576f, 0.674928069114685f, -0.468401730060577f, 0.674568772315979f, -0.468535751104355f, 0.674209356307983f, -0.468669503927231f, 0.673849821090698f, -0.468802988529205f, 0.673490226268768f, -0.468936175107956f, 0.673130512237549f, -0.469069123268127f, 0.672770678997040f, -0.469201773405075f, 0.672410726547241f, -0.469334155321121f, 0.672050714492798f, -0.469466239213943f, 0.671690583229065f, -0.469598054885864f, 0.671330332756042f, -0.469729602336884f, 0.670970022678375f, -0.469860881567001f, 0.670609593391418f, -0.469991862773895f, 0.670249044895172f, -0.470122605562210f, 0.669888436794281f, -0.470253020524979f, 0.669527709484100f, -0.470383197069168f, 0.669166862964630f, -0.470513075590134f, 0.668805956840515f, -0.470642685890198f, 0.668444931507111f, -0.470772027969360f, 0.668083786964417f, -0.470901101827621f, 0.667722582817078f, -0.471029877662659f, 0.667361259460449f, -0.471158385276794f, 0.666999816894531f, -0.471286594867706f, 0.666638314723969f, -0.471414536237717f, 0.666276693344116f, -0.471542209386826f, 0.665914952754974f, -0.471669614315033f, 0.665553152561188f, -0.471796721220016f, 0.665191233158112f, -0.471923559904099f, 0.664829254150391f, -0.472050130367279f, 0.664467096328735f, -0.472176402807236f, 0.664104938507080f, -0.472302407026291f, 0.663742601871490f, -0.472428143024445f, 0.663380205631256f, -0.472553610801697f, 0.663017749786377f, -0.472678780555725f, 0.662655174732208f, -0.472803652286530f, 0.662292480468750f, -0.472928285598755f, 0.661929666996002f, -0.473052620887756f, 0.661566793918610f, -0.473176687955856f, 0.661203861236572f, -0.473300457000732f, 0.660840749740601f, -0.473423957824707f, 0.660477638244629f, -0.473547190427780f, 0.660114347934723f, -0.473670125007629f, 0.659750998020172f, -0.473792791366577f, 0.659387588500977f, -0.473915189504623f, 0.659024059772491f, -0.474037289619446f, 0.658660411834717f, -0.474159121513367f, 0.658296704292297f, -0.474280685186386f, 0.657932877540588f, -0.474401950836182f, 0.657568991184235f, -0.474522948265076f, 0.657204985618591f, -0.474643647670746f, 0.656840860843658f, -0.474764078855515f, 0.656476676464081f, -0.474884241819382f, 0.656112432479858f, -0.475004136562347f, 0.655748009681702f, -0.475123733282089f, 0.655383586883545f, -0.475243031978607f, 0.655019044876099f, -0.475362062454224f, 0.654654383659363f, -0.475480824708939f, 0.654289662837982f, -0.475599318742752f, 0.653924822807312f, -0.475717514753342f, 0.653559923171997f, -0.475835442543030f, 0.653194904327393f, -0.475953072309494f, 0.652829825878143f, -0.476070433855057f, 0.652464628219604f, -0.476187497377396f, 0.652099311351776f, -0.476304292678833f, 0.651733994483948f, -0.476420819759369f, 0.651368498802185f, -0.476537048816681f, 0.651003003120422f, -0.476653009653091f, 0.650637328624725f, -0.476768702268600f, 0.650271594524384f, -0.476884096860886f, 0.649905800819397f, -0.476999223232269f, 0.649539887905121f, -0.477114051580429f, 0.649173915386200f, -0.477228611707687f, 0.648807883262634f, -0.477342873811722f, 0.648441672325134f, -0.477456867694855f, 0.648075461387634f, -0.477570593357086f, 0.647709131240845f, -0.477684020996094f, 0.647342681884766f, -0.477797180414200f, 0.646976172924042f, -0.477910041809082f, 0.646609604358673f, -0.478022634983063f, 0.646242916584015f, -0.478134930133820f, 0.645876109600067f, -0.478246957063675f, 0.645509302616119f, -0.478358715772629f, 0.645142316818237f, -0.478470176458359f, 0.644775331020355f, -0.478581339120865f, 0.644408226013184f, -0.478692263364792f, 0.644041001796722f, -0.478802859783173f, 0.643673717975616f, -0.478913217782974f, 0.643306374549866f, -0.479023247957230f, 0.642938911914825f, -0.479133039712906f, 0.642571389675140f, -0.479242533445358f, 0.642203748226166f, -0.479351729154587f, 0.641836047172546f, -0.479460656642914f, 0.641468286514282f, -0.479569315910339f, 0.641100406646729f, -0.479677677154541f, 0.640732467174530f, -0.479785770177841f, 0.640364408493042f, -0.479893565177917f, 0.639996349811554f, -0.480001062154770f, 0.639628112316132f, -0.480108320713043f, 0.639259815216064f, -0.480215251445770f, 0.638891458511353f, -0.480321943759918f, 0.638523042201996f, -0.480428308248520f, 0.638154506683350f, -0.480534434318542f, 0.637785911560059f, -0.480640232563019f, 0.637417197227478f, -0.480745792388916f, 0.637048482894897f, -0.480851024389267f, 0.636679589748383f, -0.480956017971039f, 0.636310696601868f, -0.481060713529587f, 0.635941684246063f, -0.481165111064911f, 0.635572552680969f, -0.481269240379334f, 0.635203421115875f, -0.481373071670532f, 0.634834170341492f, -0.481476634740829f, 0.634464859962463f, -0.481579899787903f, 0.634095430374146f, -0.481682896614075f, 0.633725941181183f, -0.481785595417023f, 0.633356392383575f, -0.481888025999069f, 0.632986724376678f, -0.481990188360214f, 0.632616996765137f, -0.482092022895813f, 0.632247209548950f, -0.482193619012833f, 0.631877362728119f, -0.482294887304306f, 0.631507396697998f, -0.482395917177200f, 0.631137371063232f, -0.482496619224548f, 0.630767226219177f, -0.482597053050995f, 0.630397081375122f, -0.482697218656540f, 0.630026817321777f, -0.482797086238861f, 0.629656434059143f, -0.482896685600281f, 0.629286050796509f, -0.482995986938477f, 0.628915548324585f, -0.483094990253448f, 0.628544986248016f, -0.483193725347519f, 0.628174364566803f, -0.483292192220688f, 0.627803623676300f, -0.483390361070633f, 0.627432823181152f, -0.483488231897354f, 0.627061963081360f, -0.483585834503174f, 0.626691043376923f, -0.483683139085770f, 0.626320004463196f, -0.483780175447464f, 0.625948905944824f, -0.483876913785934f, 0.625577747821808f, -0.483973383903503f, 0.625206530094147f, -0.484069555997849f, 0.624835193157196f, -0.484165430068970f, 0.624463796615601f, -0.484261035919189f, 0.624092340469360f, -0.484356373548508f, 0.623720824718475f, -0.484451413154602f, 0.623349189758301f, -0.484546154737473f, 0.622977554798126f, -0.484640628099442f, 0.622605800628662f, -0.484734803438187f, 0.622233927249908f, -0.484828680753708f, 0.621862053871155f, -0.484922289848328f, 0.621490061283112f, -0.485015630722046f, 0.621118068695068f, -0.485108673572540f, 0.620745956897736f, -0.485201418399811f, 0.620373785495758f, -0.485293895006180f, 0.620001494884491f, -0.485386073589325f, 0.619629204273224f, -0.485477954149246f, 0.619256794452667f, -0.485569566488266f, 0.618884325027466f, -0.485660910606384f, 0.618511795997620f, -0.485751956701279f, 0.618139207363129f, -0.485842704772949f, 0.617766559123993f, -0.485933154821396f, 0.617393791675568f, -0.486023366451263f, 0.617020964622498f, -0.486113250255585f, 0.616648077964783f, -0.486202865839005f, 0.616275131702423f, -0.486292183399200f, 0.615902125835419f, -0.486381232738495f, 0.615529060363770f, -0.486469984054565f, 0.615155875682831f, -0.486558437347412f, 0.614782691001892f, -0.486646622419357f, 0.614409387111664f, -0.486734509468079f, 0.614036023616791f, -0.486822128295898f, 0.613662600517273f, -0.486909449100494f, 0.613289117813110f, -0.486996471881866f, 0.612915575504303f, -0.487083226442337f, 0.612541973590851f, -0.487169682979584f, 0.612168252468109f, -0.487255871295929f, 0.611794531345367f, -0.487341761589050f, 0.611420691013336f, -0.487427353858948f, 0.611046791076660f, -0.487512677907944f, 0.610672831535339f, -0.487597703933716f, 0.610298871994019f, -0.487682431936264f, 0.609924793243408f, -0.487766891717911f, 0.609550595283508f, -0.487851053476334f, 0.609176397323608f, -0.487934947013855f, 0.608802139759064f, -0.488018542528152f, 0.608427822589874f, -0.488101840019226f, 0.608053386211395f, -0.488184869289398f, 0.607678949832916f, -0.488267600536346f, 0.607304394245148f, -0.488350033760071f, 0.606929838657379f, -0.488432198762894f, 0.606555163860321f, -0.488514065742493f, 0.606180429458618f, -0.488595664501190f, 0.605805635452271f, -0.488676935434341f, 0.605430841445923f, -0.488757967948914f, 0.605055928230286f, -0.488838672637939f, 0.604680955410004f, -0.488919109106064f, 0.604305922985077f, -0.488999247550964f, 0.603930830955505f, -0.489079117774963f, 0.603555679321289f, -0.489158689975739f, 0.603180468082428f, -0.489237964153290f, 0.602805197238922f, -0.489316970109940f, 0.602429866790771f, -0.489395678043365f, 0.602054476737976f, -0.489474087953568f, 0.601679027080536f, -0.489552229642868f, 0.601303517818451f, -0.489630073308945f, 0.600927948951721f, -0.489707618951797f, 0.600552320480347f, -0.489784896373749f, 0.600176632404327f, -0.489861875772476f, 0.599800884723663f, -0.489938557147980f, 0.599425077438354f, -0.490014940500259f, 0.599049210548401f, -0.490091055631638f, 0.598673284053802f, -0.490166902542114f, 0.598297297954559f, -0.490242421627045f, 0.597921252250671f, -0.490317672491074f, 0.597545146942139f, -0.490392625331879f, 0.597168982028961f, -0.490467309951782f, 0.596792817115784f, -0.490541696548462f, 0.596416532993317f, -0.490615785121918f, 0.596040189266205f, -0.490689605474472f, 0.595663845539093f, -0.490763127803802f, 0.595287382602692f, -0.490836352109909f, 0.594910860061646f, -0.490909278392792f, 0.594534337520599f, -0.490981936454773f, 0.594157755374908f, -0.491054296493530f, 0.593781054019928f, -0.491126358509064f, 0.593404352664948f, -0.491198152303696f, 0.593027591705322f, -0.491269648075104f, 0.592650771141052f, -0.491340845823288f, 0.592273890972137f, -0.491411775350571f, 0.591896951198578f, -0.491482406854630f, 0.591519951820374f, -0.491552740335464f, 0.591142892837524f, -0.491622805595398f, 0.590765833854675f, -0.491692543029785f, 0.590388655662537f, -0.491762012243271f, 0.590011477470398f, -0.491831213235855f, 0.589634180068970f, -0.491900116205215f, 0.589256882667542f, -0.491968721151352f, 0.588879525661469f, -0.492037028074265f, 0.588502109050751f, -0.492105036973953f, 0.588124632835388f, -0.492172777652740f, 0.587747097015381f, -0.492240220308304f, 0.587369561195374f, -0.492307394742966f, 0.586991965770721f, -0.492374241352081f, 0.586614251136780f, -0.492440819740295f, 0.586236536502838f, -0.492507129907608f, 0.585858762264252f, -0.492573112249374f, 0.585480928421021f, -0.492638826370239f, 0.585103094577789f, -0.492704242467880f, 0.584725141525269f, -0.492769360542297f, 0.584347188472748f, -0.492834210395813f, 0.583969175815582f, -0.492898762226105f, 0.583591103553772f, -0.492963016033173f, 0.583212971687317f, -0.493026971817017f, 0.582834780216217f, -0.493090659379959f, 0.582456588745117f, -0.493154048919678f, 0.582078278064728f, -0.493217140436172f, 0.581699967384338f, -0.493279963731766f, 0.581321597099304f, -0.493342459201813f, 0.580943167209625f, -0.493404686450958f, 0.580564737319946f, -0.493466645479202f, 0.580186247825623f, -0.493528276681900f, 0.579807698726654f, -0.493589639663696f, 0.579429090023041f, -0.493650704622269f, 0.579050421714783f, -0.493711471557617f, 0.578671753406525f, -0.493771970272064f, 0.578292965888977f, -0.493832170963287f, 0.577914178371429f, -0.493892073631287f, 0.577535390853882f, -0.493951678276062f, 0.577156484127045f, -0.494011014699936f, 0.576777577400208f, -0.494070053100586f, 0.576398611068726f, -0.494128793478012f, 0.576019585132599f, -0.494187235832214f, 0.575640499591827f, -0.494245409965515f, 0.575261414051056f, -0.494303256273270f, 0.574882268905640f, -0.494360834360123f, 0.574503064155579f, -0.494418144226074f, 0.574123859405518f, -0.494475126266479f, 0.573744535446167f, -0.494531840085983f, 0.573365211486816f, -0.494588255882263f, 0.572985887527466f, -0.494644373655319f, 0.572606444358826f, -0.494700223207474f, 0.572227001190186f, -0.494755744934082f, 0.571847498416901f, -0.494810998439789f, 0.571467995643616f, -0.494865983724594f, 0.571088373661041f, -0.494920641183853f, 0.570708811283112f, -0.494975030422211f, 0.570329129695892f, -0.495029091835022f, 0.569949388504028f, -0.495082914829254f, 0.569569647312164f, -0.495136409997940f, 0.569189906120300f, -0.495189607143402f, 0.568810045719147f, -0.495242536067963f, 0.568430185317993f, -0.495295166969299f, 0.568050265312195f, -0.495347499847412f, 0.567670345306396f, -0.495399564504623f, 0.567290365695953f, -0.495451331138611f, 0.566910326480865f, -0.495502769947052f, 0.566530287265778f, -0.495553970336914f, 0.566150128841400f, -0.495604842901230f, 0.565770030021667f, -0.495655417442322f, 0.565389811992645f, -0.495705723762512f, 0.565009593963623f, -0.495755732059479f, 0.564629375934601f, -0.495805442333221f, 0.564249038696289f, -0.495854884386063f, 0.563868701457977f, -0.495903998613358f, 0.563488364219666f, -0.495952844619751f, 0.563107967376709f, -0.496001392602921f, 0.562727510929108f, -0.496049642562866f, 0.562346994876862f, -0.496097624301910f, 0.561966478824615f, -0.496145308017731f, 0.561585903167725f, -0.496192663908005f, 0.561205327510834f, -0.496239781379700f, 0.560824692249298f, -0.496286571025848f, 0.560444056987762f, -0.496333062648773f, 0.560063362121582f, -0.496379286050797f, 0.559682607650757f, -0.496425211429596f, 0.559301853179932f, -0.496470838785172f, 0.558921039104462f, -0.496516168117523f, 0.558540165424347f, -0.496561229228973f, 0.558159291744232f, -0.496605962514877f, 0.557778418064117f, -0.496650427579880f, 0.557397484779358f, -0.496694594621658f, 0.557016491889954f, -0.496738493442535f, 0.556635499000549f, -0.496782064437866f, 0.556254446506500f, -0.496825367212296f, 0.555873334407806f, -0.496868371963501f, 0.555492222309113f, -0.496911078691483f, 0.555111110210419f, -0.496953487396240f, 0.554729938507080f, -0.496995598077774f, 0.554348707199097f, -0.497037440538406f, 0.553967475891113f, -0.497078984975815f, 0.553586184978485f, -0.497120231389999f, 0.553204894065857f, -0.497161179780960f, 0.552823603153229f, -0.497201830148697f, 0.552442193031311f, -0.497242212295532f, 0.552060842514038f, -0.497282296419144f, 0.551679372787476f, -0.497322082519531f, 0.551297962665558f, -0.497361570596695f, 0.550916433334351f, -0.497400760650635f, 0.550534904003143f, -0.497439652681351f, 0.550153374671936f, -0.497478276491165f, 0.549771785736084f, -0.497516602277756f, 0.549390196800232f, -0.497554630041122f, 0.549008548259735f, -0.497592359781265f, 0.548626899719238f, -0.497629791498184f, 0.548245191574097f, -0.497666954994202f, 0.547863483428955f, -0.497703820466995f, 0.547481775283813f, -0.497740387916565f, 0.547099947929382f, -0.497776657342911f, 0.546718180179596f, -0.497812628746033f, 0.546336352825165f, -0.497848302125931f, 0.545954465866089f, -0.497883707284927f, 0.545572578907013f, -0.497918814420700f, 0.545190691947937f, -0.497953623533249f, 0.544808745384216f, -0.497988134622574f, 0.544426798820496f, -0.498022347688675f, 0.544044792652130f, -0.498056292533875f, 0.543662786483765f, -0.498089909553528f, 0.543280720710754f, -0.498123258352280f, 0.542898654937744f, -0.498156309127808f, 0.542516589164734f, -0.498189061880112f, 0.542134463787079f, -0.498221516609192f, 0.541752278804779f, -0.498253703117371f, 0.541370153427124f, -0.498285561800003f, 0.540987968444824f, -0.498317152261734f, 0.540605723857880f, -0.498348444700241f, 0.540223479270935f, -0.498379439115524f, 0.539841234683990f, -0.498410135507584f, 0.539458930492401f, -0.498440563678741f, 0.539076626300812f, -0.498470664024353f, 0.538694262504578f, -0.498500496149063f, 0.538311958312988f, -0.498530030250549f, 0.537929534912109f, -0.498559266328812f, 0.537547171115875f, -0.498588204383850f, 0.537164747714996f, -0.498616874217987f, 0.536782264709473f, -0.498645216226578f, 0.536399841308594f, -0.498673290014267f, 0.536017298698425f, -0.498701065778732f, 0.535634815692902f, -0.498728543519974f, 0.535252273082733f, -0.498755723237991f, 0.534869730472565f, -0.498782604932785f, 0.534487187862396f, -0.498809218406677f, 0.534104585647583f, -0.498835533857346f, 0.533721983432770f, -0.498861521482468f, 0.533339321613312f, -0.498887240886688f, 0.532956659793854f, -0.498912662267685f, 0.532573997974396f, -0.498937815427780f, 0.532191336154938f, -0.498962640762329f, 0.531808614730835f, -0.498987197875977f, 0.531425893306732f, -0.499011427164078f, 0.531043112277985f, -0.499035388231277f, 0.530660390853882f, -0.499059051275253f, 0.530277609825134f, -0.499082416296005f, 0.529894769191742f, -0.499105513095856f, 0.529511988162994f, -0.499128282070160f, 0.529129147529602f, -0.499150782823563f, 0.528746306896210f, -0.499172955751419f, 0.528363406658173f, -0.499194860458374f, 0.527980506420136f, -0.499216467142105f, 0.527597606182098f, -0.499237775802612f, 0.527214705944061f, -0.499258816242218f, 0.526831746101379f, -0.499279528856277f, 0.526448845863342f, -0.499299973249435f, 0.526065826416016f, -0.499320119619370f, 0.525682866573334f, -0.499339967966080f, 0.525299847126007f, -0.499359518289566f, 0.524916887283325f, -0.499378770589828f, 0.524533808231354f, -0.499397724866867f, 0.524150788784027f, -0.499416410923004f, 0.523767769336700f, -0.499434769153595f, 0.523384690284729f, -0.499452859163284f, 0.523001611232758f, -0.499470651149750f, 0.522618472576141f, -0.499488145112991f, 0.522235393524170f, -0.499505341053009f, 0.521852254867554f, -0.499522238969803f, 0.521469116210938f, -0.499538868665695f, 0.521085977554321f, -0.499555170536041f, 0.520702838897705f, -0.499571204185486f, 0.520319640636444f, -0.499586939811707f, 0.519936442375183f, -0.499602377414703f, 0.519553244113922f, -0.499617516994476f, 0.519170045852661f, -0.499632388353348f, 0.518786847591400f, -0.499646931886673f, 0.518403589725494f, -0.499661177396774f, 0.518020391464233f, -0.499675154685974f, 0.517637133598328f, -0.499688833951950f, 0.517253875732422f, -0.499702215194702f, 0.516870558261871f, -0.499715298414230f, 0.516487300395966f, -0.499728083610535f, 0.516103982925415f, -0.499740600585938f, 0.515720725059509f, -0.499752789735794f, 0.515337407588959f, -0.499764710664749f, 0.514954090118408f, -0.499776333570480f, 0.514570772647858f, -0.499787658452988f, 0.514187395572662f, -0.499798685312271f, 0.513804078102112f, -0.499809414148331f, 0.513420701026917f, -0.499819844961166f, 0.513037383556366f, -0.499830007553101f, 0.512654006481171f, -0.499839842319489f, 0.512270629405975f, -0.499849408864975f, 0.511887252330780f, -0.499858677387238f, 0.511503815650940f, -0.499867647886276f, 0.511120438575745f, -0.499876320362091f, 0.510737061500549f, -0.499884694814682f, 0.510353624820709f, -0.499892801046371f, 0.509970188140869f, -0.499900579452515f, 0.509586811065674f, -0.499908089637756f, 0.509203374385834f, -0.499915301799774f, 0.508819937705994f, -0.499922215938568f, 0.508436501026154f, -0.499928832054138f, 0.508053064346313f, -0.499935150146484f, 0.507669627666473f, -0.499941170215607f, 0.507286131381989f, -0.499946922063828f, 0.506902694702148f, -0.499952346086502f, 0.506519258022308f, -0.499957501888275f, 0.506135761737823f, -0.499962359666824f, 0.505752325057983f, -0.499966919422150f, 0.505368828773499f, -0.499971181154251f, 0.504985332489014f, -0.499975144863129f, 0.504601895809174f, -0.499978810548782f, 0.504218399524689f, -0.499982208013535f, 0.503834903240204f, -0.499985307455063f, 0.503451406955719f, -0.499988079071045f, 0.503067970275879f, -0.499990582466125f, 0.502684473991394f, -0.499992787837982f, 0.502300977706909f, -0.499994695186615f, 0.501917481422424f, -0.499996334314346f, 0.501533985137939f, -0.499997645616531f, 0.501150488853455f, -0.499998688697815f, 0.500766992568970f, -0.499999403953552f, 0.500383496284485f, -0.499999850988388f, }; /** @par Generation fixed-point realCoefAQ31 array in Q31 format: @par n = 4096
for (i = 0; i < n; i++)
  {
     pATable[2 * i]     = 0.5 * ( 1.0 - sin (2 * PI / (double) (2 * n) * (double) i));
     pATable[2 * i + 1] = 0.5 * (-1.0 * cos (2 * PI / (double) (2 * n) * (double) i));
  }
@par Convert to fixed point Q31 format round(pATable[i] * pow(2, 31)) */ const q31_t realCoefAQ31[8192] ARM_DSP_TABLE_ATTRIBUTE = { (q31_t)0x40000000, (q31_t)0xc0000000, (q31_t)0x3ff36f02, (q31_t)0xc000013c, (q31_t)0x3fe6de05, (q31_t)0xc00004ef, (q31_t)0x3fda4d09, (q31_t)0xc0000b1a, (q31_t)0x3fcdbc0f, (q31_t)0xc00013bd, (q31_t)0x3fc12b16, (q31_t)0xc0001ed8, (q31_t)0x3fb49a1f, (q31_t)0xc0002c6a, (q31_t)0x3fa8092c, (q31_t)0xc0003c74, (q31_t)0x3f9b783c, (q31_t)0xc0004ef5, (q31_t)0x3f8ee750, (q31_t)0xc00063ee, (q31_t)0x3f825668, (q31_t)0xc0007b5f, (q31_t)0x3f75c585, (q31_t)0xc0009547, (q31_t)0x3f6934a8, (q31_t)0xc000b1a7, (q31_t)0x3f5ca3d0, (q31_t)0xc000d07e, (q31_t)0x3f5012fe, (q31_t)0xc000f1ce, (q31_t)0x3f438234, (q31_t)0xc0011594, (q31_t)0x3f36f170, (q31_t)0xc0013bd3, (q31_t)0x3f2a60b4, (q31_t)0xc0016489, (q31_t)0x3f1dd001, (q31_t)0xc0018fb6, (q31_t)0x3f113f56, (q31_t)0xc001bd5c, (q31_t)0x3f04aeb5, (q31_t)0xc001ed78, (q31_t)0x3ef81e1d, (q31_t)0xc002200d, (q31_t)0x3eeb8d8f, (q31_t)0xc0025519, (q31_t)0x3edefd0c, (q31_t)0xc0028c9c, (q31_t)0x3ed26c94, (q31_t)0xc002c697, (q31_t)0x3ec5dc28, (q31_t)0xc003030a, (q31_t)0x3eb94bc8, (q31_t)0xc00341f4, (q31_t)0x3eacbb74, (q31_t)0xc0038356, (q31_t)0x3ea02b2e, (q31_t)0xc003c72f, (q31_t)0x3e939af5, (q31_t)0xc0040d80, (q31_t)0x3e870aca, (q31_t)0xc0045648, (q31_t)0x3e7a7aae, (q31_t)0xc004a188, (q31_t)0x3e6deaa1, (q31_t)0xc004ef3f, (q31_t)0x3e615aa3, (q31_t)0xc0053f6e, (q31_t)0x3e54cab5, (q31_t)0xc0059214, (q31_t)0x3e483ad8, (q31_t)0xc005e731, (q31_t)0x3e3bab0b, (q31_t)0xc0063ec6, (q31_t)0x3e2f1b50, (q31_t)0xc00698d3, (q31_t)0x3e228ba7, (q31_t)0xc006f556, (q31_t)0x3e15fc11, (q31_t)0xc0075452, (q31_t)0x3e096c8d, (q31_t)0xc007b5c4, (q31_t)0x3dfcdd1d, (q31_t)0xc00819ae, (q31_t)0x3df04dc0, (q31_t)0xc008800f, (q31_t)0x3de3be78, (q31_t)0xc008e8e8, (q31_t)0x3dd72f45, (q31_t)0xc0095438, (q31_t)0x3dcaa027, (q31_t)0xc009c1ff, (q31_t)0x3dbe111e, (q31_t)0xc00a323d, (q31_t)0x3db1822c, (q31_t)0xc00aa4f3, (q31_t)0x3da4f351, (q31_t)0xc00b1a20, (q31_t)0x3d98648d, (q31_t)0xc00b91c4, (q31_t)0x3d8bd5e1, (q31_t)0xc00c0be0, (q31_t)0x3d7f474d, (q31_t)0xc00c8872, (q31_t)0x3d72b8d2, (q31_t)0xc00d077c, (q31_t)0x3d662a70, (q31_t)0xc00d88fd, (q31_t)0x3d599c28, (q31_t)0xc00e0cf5, (q31_t)0x3d4d0df9, (q31_t)0xc00e9364, (q31_t)0x3d407fe6, (q31_t)0xc00f1c4a, (q31_t)0x3d33f1ed, (q31_t)0xc00fa7a8, (q31_t)0x3d276410, (q31_t)0xc010357c, (q31_t)0x3d1ad650, (q31_t)0xc010c5c7, (q31_t)0x3d0e48ab, (q31_t)0xc011588a, (q31_t)0x3d01bb24, (q31_t)0xc011edc3, (q31_t)0x3cf52dbb, (q31_t)0xc0128574, (q31_t)0x3ce8a06f, (q31_t)0xc0131f9b, (q31_t)0x3cdc1342, (q31_t)0xc013bc39, (q31_t)0x3ccf8634, (q31_t)0xc0145b4e, (q31_t)0x3cc2f945, (q31_t)0xc014fcda, (q31_t)0x3cb66c77, (q31_t)0xc015a0dd, (q31_t)0x3ca9dfc8, (q31_t)0xc0164757, (q31_t)0x3c9d533b, (q31_t)0xc016f047, (q31_t)0x3c90c6cf, (q31_t)0xc0179bae, (q31_t)0x3c843a85, (q31_t)0xc018498c, (q31_t)0x3c77ae5e, (q31_t)0xc018f9e1, (q31_t)0x3c6b2259, (q31_t)0xc019acac, (q31_t)0x3c5e9678, (q31_t)0xc01a61ee, (q31_t)0x3c520aba, (q31_t)0xc01b19a7, (q31_t)0x3c457f21, (q31_t)0xc01bd3d6, (q31_t)0x3c38f3ac, (q31_t)0xc01c907c, (q31_t)0x3c2c685d, (q31_t)0xc01d4f99, (q31_t)0x3c1fdd34, (q31_t)0xc01e112b, (q31_t)0x3c135231, (q31_t)0xc01ed535, (q31_t)0x3c06c754, (q31_t)0xc01f9bb5, (q31_t)0x3bfa3c9f, (q31_t)0xc02064ab, (q31_t)0x3bedb212, (q31_t)0xc0213018, (q31_t)0x3be127ac, (q31_t)0xc021fdfb, (q31_t)0x3bd49d70, (q31_t)0xc022ce54, (q31_t)0x3bc8135c, (q31_t)0xc023a124, (q31_t)0x3bbb8973, (q31_t)0xc024766a, (q31_t)0x3baeffb3, (q31_t)0xc0254e27, (q31_t)0x3ba2761e, (q31_t)0xc0262859, (q31_t)0x3b95ecb4, (q31_t)0xc0270502, (q31_t)0x3b896375, (q31_t)0xc027e421, (q31_t)0x3b7cda63, (q31_t)0xc028c5b6, (q31_t)0x3b70517d, (q31_t)0xc029a9c1, (q31_t)0x3b63c8c4, (q31_t)0xc02a9042, (q31_t)0x3b574039, (q31_t)0xc02b7939, (q31_t)0x3b4ab7db, (q31_t)0xc02c64a6, (q31_t)0x3b3e2fac, (q31_t)0xc02d5289, (q31_t)0x3b31a7ac, (q31_t)0xc02e42e2, (q31_t)0x3b251fdc, (q31_t)0xc02f35b1, (q31_t)0x3b18983b, (q31_t)0xc0302af5, (q31_t)0x3b0c10cb, (q31_t)0xc03122b0, (q31_t)0x3aff898c, (q31_t)0xc0321ce0, (q31_t)0x3af3027e, (q31_t)0xc0331986, (q31_t)0x3ae67ba2, (q31_t)0xc03418a2, (q31_t)0x3ad9f4f8, (q31_t)0xc0351a33, (q31_t)0x3acd6e81, (q31_t)0xc0361e3a, (q31_t)0x3ac0e83d, (q31_t)0xc03724b6, (q31_t)0x3ab4622d, (q31_t)0xc0382da8, (q31_t)0x3aa7dc52, (q31_t)0xc0393910, (q31_t)0x3a9b56ab, (q31_t)0xc03a46ed, (q31_t)0x3a8ed139, (q31_t)0xc03b573f, (q31_t)0x3a824bfd, (q31_t)0xc03c6a07, (q31_t)0x3a75c6f8, (q31_t)0xc03d7f44, (q31_t)0x3a694229, (q31_t)0xc03e96f6, (q31_t)0x3a5cbd91, (q31_t)0xc03fb11d, (q31_t)0x3a503930, (q31_t)0xc040cdba, (q31_t)0x3a43b508, (q31_t)0xc041eccc, (q31_t)0x3a373119, (q31_t)0xc0430e53, (q31_t)0x3a2aad62, (q31_t)0xc044324f, (q31_t)0x3a1e29e5, (q31_t)0xc04558c0, (q31_t)0x3a11a6a3, (q31_t)0xc04681a6, (q31_t)0x3a05239a, (q31_t)0xc047ad01, (q31_t)0x39f8a0cd, (q31_t)0xc048dad1, (q31_t)0x39ec1e3b, (q31_t)0xc04a0b16, (q31_t)0x39df9be6, (q31_t)0xc04b3dcf, (q31_t)0x39d319cc, (q31_t)0xc04c72fe, (q31_t)0x39c697f0, (q31_t)0xc04daaa1, (q31_t)0x39ba1651, (q31_t)0xc04ee4b8, (q31_t)0x39ad94f0, (q31_t)0xc0502145, (q31_t)0x39a113cd, (q31_t)0xc0516045, (q31_t)0x399492ea, (q31_t)0xc052a1bb, (q31_t)0x39881245, (q31_t)0xc053e5a5, (q31_t)0x397b91e1, (q31_t)0xc0552c03, (q31_t)0x396f11bc, (q31_t)0xc05674d6, (q31_t)0x396291d9, (q31_t)0xc057c01d, (q31_t)0x39561237, (q31_t)0xc0590dd8, (q31_t)0x394992d7, (q31_t)0xc05a5e07, (q31_t)0x393d13b8, (q31_t)0xc05bb0ab, (q31_t)0x393094dd, (q31_t)0xc05d05c3, (q31_t)0x39241645, (q31_t)0xc05e5d4e, (q31_t)0x391797f0, (q31_t)0xc05fb74e, (q31_t)0x390b19e0, (q31_t)0xc06113c2, (q31_t)0x38fe9c15, (q31_t)0xc06272aa, (q31_t)0x38f21e8e, (q31_t)0xc063d405, (q31_t)0x38e5a14d, (q31_t)0xc06537d4, (q31_t)0x38d92452, (q31_t)0xc0669e18, (q31_t)0x38cca79e, (q31_t)0xc06806ce, (q31_t)0x38c02b31, (q31_t)0xc06971f9, (q31_t)0x38b3af0c, (q31_t)0xc06adf97, (q31_t)0x38a7332e, (q31_t)0xc06c4fa8, (q31_t)0x389ab799, (q31_t)0xc06dc22e, (q31_t)0x388e3c4d, (q31_t)0xc06f3726, (q31_t)0x3881c14b, (q31_t)0xc070ae92, (q31_t)0x38754692, (q31_t)0xc0722871, (q31_t)0x3868cc24, (q31_t)0xc073a4c3, (q31_t)0x385c5201, (q31_t)0xc0752389, (q31_t)0x384fd829, (q31_t)0xc076a4c2, (q31_t)0x38435e9d, (q31_t)0xc078286e, (q31_t)0x3836e55d, (q31_t)0xc079ae8c, (q31_t)0x382a6c6a, (q31_t)0xc07b371e, (q31_t)0x381df3c5, (q31_t)0xc07cc223, (q31_t)0x38117b6d, (q31_t)0xc07e4f9b, (q31_t)0x38050364, (q31_t)0xc07fdf85, (q31_t)0x37f88ba9, (q31_t)0xc08171e2, (q31_t)0x37ec143e, (q31_t)0xc08306b2, (q31_t)0x37df9d22, (q31_t)0xc0849df4, (q31_t)0x37d32657, (q31_t)0xc08637a9, (q31_t)0x37c6afdc, (q31_t)0xc087d3d0, (q31_t)0x37ba39b3, (q31_t)0xc089726a, (q31_t)0x37adc3db, (q31_t)0xc08b1376, (q31_t)0x37a14e55, (q31_t)0xc08cb6f5, (q31_t)0x3794d922, (q31_t)0xc08e5ce5, (q31_t)0x37886442, (q31_t)0xc0900548, (q31_t)0x377befb5, (q31_t)0xc091b01d, (q31_t)0x376f7b7d, (q31_t)0xc0935d64, (q31_t)0x37630799, (q31_t)0xc0950d1d, (q31_t)0x3756940a, (q31_t)0xc096bf48, (q31_t)0x374a20d0, (q31_t)0xc09873e4, (q31_t)0x373daded, (q31_t)0xc09a2af3, (q31_t)0x37313b60, (q31_t)0xc09be473, (q31_t)0x3724c92a, (q31_t)0xc09da065, (q31_t)0x3718574b, (q31_t)0xc09f5ec8, (q31_t)0x370be5c4, (q31_t)0xc0a11f9d, (q31_t)0x36ff7496, (q31_t)0xc0a2e2e3, (q31_t)0x36f303c0, (q31_t)0xc0a4a89b, (q31_t)0x36e69344, (q31_t)0xc0a670c4, (q31_t)0x36da2321, (q31_t)0xc0a83b5e, (q31_t)0x36cdb359, (q31_t)0xc0aa086a, (q31_t)0x36c143ec, (q31_t)0xc0abd7e6, (q31_t)0x36b4d4d9, (q31_t)0xc0ada9d4, (q31_t)0x36a86623, (q31_t)0xc0af7e33, (q31_t)0x369bf7c9, (q31_t)0xc0b15502, (q31_t)0x368f89cb, (q31_t)0xc0b32e42, (q31_t)0x36831c2b, (q31_t)0xc0b509f3, (q31_t)0x3676aee8, (q31_t)0xc0b6e815, (q31_t)0x366a4203, (q31_t)0xc0b8c8a7, (q31_t)0x365dd57d, (q31_t)0xc0baabaa, (q31_t)0x36516956, (q31_t)0xc0bc911d, (q31_t)0x3644fd8f, (q31_t)0xc0be7901, (q31_t)0x36389228, (q31_t)0xc0c06355, (q31_t)0x362c2721, (q31_t)0xc0c25019, (q31_t)0x361fbc7b, (q31_t)0xc0c43f4d, (q31_t)0x36135237, (q31_t)0xc0c630f2, (q31_t)0x3606e854, (q31_t)0xc0c82506, (q31_t)0x35fa7ed4, (q31_t)0xc0ca1b8a, (q31_t)0x35ee15b7, (q31_t)0xc0cc147f, (q31_t)0x35e1acfd, (q31_t)0xc0ce0fe3, (q31_t)0x35d544a7, (q31_t)0xc0d00db6, (q31_t)0x35c8dcb6, (q31_t)0xc0d20dfa, (q31_t)0x35bc7529, (q31_t)0xc0d410ad, (q31_t)0x35b00e02, (q31_t)0xc0d615cf, (q31_t)0x35a3a740, (q31_t)0xc0d81d61, (q31_t)0x359740e5, (q31_t)0xc0da2762, (q31_t)0x358adaf0, (q31_t)0xc0dc33d2, (q31_t)0x357e7563, (q31_t)0xc0de42b2, (q31_t)0x3572103d, (q31_t)0xc0e05401, (q31_t)0x3565ab80, (q31_t)0xc0e267be, (q31_t)0x3559472b, (q31_t)0xc0e47deb, (q31_t)0x354ce33f, (q31_t)0xc0e69686, (q31_t)0x35407fbd, (q31_t)0xc0e8b190, (q31_t)0x35341ca5, (q31_t)0xc0eacf09, (q31_t)0x3527b9f7, (q31_t)0xc0eceef1, (q31_t)0x351b57b5, (q31_t)0xc0ef1147, (q31_t)0x350ef5de, (q31_t)0xc0f1360b, (q31_t)0x35029473, (q31_t)0xc0f35d3e, (q31_t)0x34f63374, (q31_t)0xc0f586df, (q31_t)0x34e9d2e3, (q31_t)0xc0f7b2ee, (q31_t)0x34dd72be, (q31_t)0xc0f9e16b, (q31_t)0x34d11308, (q31_t)0xc0fc1257, (q31_t)0x34c4b3c0, (q31_t)0xc0fe45b0, (q31_t)0x34b854e7, (q31_t)0xc1007b77, (q31_t)0x34abf67e, (q31_t)0xc102b3ac, (q31_t)0x349f9884, (q31_t)0xc104ee4f, (q31_t)0x34933afa, (q31_t)0xc1072b5f, (q31_t)0x3486dde1, (q31_t)0xc1096add, (q31_t)0x347a8139, (q31_t)0xc10bacc8, (q31_t)0x346e2504, (q31_t)0xc10df120, (q31_t)0x3461c940, (q31_t)0xc11037e6, (q31_t)0x34556def, (q31_t)0xc1128119, (q31_t)0x34491311, (q31_t)0xc114ccb9, (q31_t)0x343cb8a7, (q31_t)0xc1171ac6, (q31_t)0x34305eb0, (q31_t)0xc1196b3f, (q31_t)0x3424052f, (q31_t)0xc11bbe26, (q31_t)0x3417ac22, (q31_t)0xc11e1379, (q31_t)0x340b538b, (q31_t)0xc1206b39, (q31_t)0x33fefb6a, (q31_t)0xc122c566, (q31_t)0x33f2a3bf, (q31_t)0xc12521ff, (q31_t)0x33e64c8c, (q31_t)0xc1278104, (q31_t)0x33d9f5cf, (q31_t)0xc129e276, (q31_t)0x33cd9f8b, (q31_t)0xc12c4653, (q31_t)0x33c149bf, (q31_t)0xc12eac9d, (q31_t)0x33b4f46c, (q31_t)0xc1311553, (q31_t)0x33a89f92, (q31_t)0xc1338075, (q31_t)0x339c4b32, (q31_t)0xc135ee02, (q31_t)0x338ff74d, (q31_t)0xc1385dfb, (q31_t)0x3383a3e2, (q31_t)0xc13ad060, (q31_t)0x337750f2, (q31_t)0xc13d4530, (q31_t)0x336afe7e, (q31_t)0xc13fbc6c, (q31_t)0x335eac86, (q31_t)0xc1423613, (q31_t)0x33525b0b, (q31_t)0xc144b225, (q31_t)0x33460a0d, (q31_t)0xc14730a3, (q31_t)0x3339b98d, (q31_t)0xc149b18b, (q31_t)0x332d698a, (q31_t)0xc14c34df, (q31_t)0x33211a07, (q31_t)0xc14eba9d, (q31_t)0x3314cb02, (q31_t)0xc15142c6, (q31_t)0x33087c7d, (q31_t)0xc153cd5a, (q31_t)0x32fc2e77, (q31_t)0xc1565a58, (q31_t)0x32efe0f2, (q31_t)0xc158e9c1, (q31_t)0x32e393ef, (q31_t)0xc15b7b94, (q31_t)0x32d7476c, (q31_t)0xc15e0fd1, (q31_t)0x32cafb6b, (q31_t)0xc160a678, (q31_t)0x32beafed, (q31_t)0xc1633f8a, (q31_t)0x32b264f2, (q31_t)0xc165db05, (q31_t)0x32a61a7a, (q31_t)0xc16878eb, (q31_t)0x3299d085, (q31_t)0xc16b193a, (q31_t)0x328d8715, (q31_t)0xc16dbbf3, (q31_t)0x32813e2a, (q31_t)0xc1706115, (q31_t)0x3274f5c3, (q31_t)0xc17308a1, (q31_t)0x3268ade3, (q31_t)0xc175b296, (q31_t)0x325c6688, (q31_t)0xc1785ef4, (q31_t)0x32501fb5, (q31_t)0xc17b0dbb, (q31_t)0x3243d968, (q31_t)0xc17dbeec, (q31_t)0x323793a3, (q31_t)0xc1807285, (q31_t)0x322b4e66, (q31_t)0xc1832888, (q31_t)0x321f09b1, (q31_t)0xc185e0f3, (q31_t)0x3212c585, (q31_t)0xc1889bc6, (q31_t)0x320681e3, (q31_t)0xc18b5903, (q31_t)0x31fa3ecb, (q31_t)0xc18e18a7, (q31_t)0x31edfc3d, (q31_t)0xc190dab4, (q31_t)0x31e1ba3a, (q31_t)0xc1939f29, (q31_t)0x31d578c2, (q31_t)0xc1966606, (q31_t)0x31c937d6, (q31_t)0xc1992f4c, (q31_t)0x31bcf777, (q31_t)0xc19bfaf9, (q31_t)0x31b0b7a4, (q31_t)0xc19ec90d, (q31_t)0x31a4785e, (q31_t)0xc1a1998a, (q31_t)0x319839a6, (q31_t)0xc1a46c6e, (q31_t)0x318bfb7d, (q31_t)0xc1a741b9, (q31_t)0x317fbde2, (q31_t)0xc1aa196c, (q31_t)0x317380d6, (q31_t)0xc1acf386, (q31_t)0x31674459, (q31_t)0xc1afd007, (q31_t)0x315b086d, (q31_t)0xc1b2aef0, (q31_t)0x314ecd11, (q31_t)0xc1b5903f, (q31_t)0x31429247, (q31_t)0xc1b873f5, (q31_t)0x3136580d, (q31_t)0xc1bb5a11, (q31_t)0x312a1e66, (q31_t)0xc1be4294, (q31_t)0x311de551, (q31_t)0xc1c12d7e, (q31_t)0x3111accf, (q31_t)0xc1c41ace, (q31_t)0x310574e0, (q31_t)0xc1c70a84, (q31_t)0x30f93d86, (q31_t)0xc1c9fca0, (q31_t)0x30ed06bf, (q31_t)0xc1ccf122, (q31_t)0x30e0d08d, (q31_t)0xc1cfe80a, (q31_t)0x30d49af1, (q31_t)0xc1d2e158, (q31_t)0x30c865ea, (q31_t)0xc1d5dd0c, (q31_t)0x30bc317a, (q31_t)0xc1d8db25, (q31_t)0x30affda0, (q31_t)0xc1dbdba3, (q31_t)0x30a3ca5d, (q31_t)0xc1dede87, (q31_t)0x309797b2, (q31_t)0xc1e1e3d0, (q31_t)0x308b659f, (q31_t)0xc1e4eb7e, (q31_t)0x307f3424, (q31_t)0xc1e7f591, (q31_t)0x30730342, (q31_t)0xc1eb0209, (q31_t)0x3066d2fa, (q31_t)0xc1ee10e5, (q31_t)0x305aa34c, (q31_t)0xc1f12227, (q31_t)0x304e7438, (q31_t)0xc1f435cc, (q31_t)0x304245c0, (q31_t)0xc1f74bd6, (q31_t)0x303617e2, (q31_t)0xc1fa6445, (q31_t)0x3029eaa1, (q31_t)0xc1fd7f17, (q31_t)0x301dbdfb, (q31_t)0xc2009c4e, (q31_t)0x301191f3, (q31_t)0xc203bbe8, (q31_t)0x30056687, (q31_t)0xc206dde6, (q31_t)0x2ff93bba, (q31_t)0xc20a0248, (q31_t)0x2fed118a, (q31_t)0xc20d290d, (q31_t)0x2fe0e7f9, (q31_t)0xc2105236, (q31_t)0x2fd4bf08, (q31_t)0xc2137dc2, (q31_t)0x2fc896b5, (q31_t)0xc216abb1, (q31_t)0x2fbc6f03, (q31_t)0xc219dc03, (q31_t)0x2fb047f2, (q31_t)0xc21d0eb8, (q31_t)0x2fa42181, (q31_t)0xc22043d0, (q31_t)0x2f97fbb2, (q31_t)0xc2237b4b, (q31_t)0x2f8bd685, (q31_t)0xc226b528, (q31_t)0x2f7fb1fa, (q31_t)0xc229f167, (q31_t)0x2f738e12, (q31_t)0xc22d3009, (q31_t)0x2f676ace, (q31_t)0xc230710d, (q31_t)0x2f5b482d, (q31_t)0xc233b473, (q31_t)0x2f4f2630, (q31_t)0xc236fa3b, (q31_t)0x2f4304d8, (q31_t)0xc23a4265, (q31_t)0x2f36e426, (q31_t)0xc23d8cf1, (q31_t)0x2f2ac419, (q31_t)0xc240d9de, (q31_t)0x2f1ea4b2, (q31_t)0xc244292c, (q31_t)0x2f1285f2, (q31_t)0xc2477adc, (q31_t)0x2f0667d9, (q31_t)0xc24aceed, (q31_t)0x2efa4a67, (q31_t)0xc24e255e, (q31_t)0x2eee2d9d, (q31_t)0xc2517e31, (q31_t)0x2ee2117c, (q31_t)0xc254d965, (q31_t)0x2ed5f604, (q31_t)0xc25836f9, (q31_t)0x2ec9db35, (q31_t)0xc25b96ee, (q31_t)0x2ebdc110, (q31_t)0xc25ef943, (q31_t)0x2eb1a796, (q31_t)0xc2625df8, (q31_t)0x2ea58ec6, (q31_t)0xc265c50e, (q31_t)0x2e9976a1, (q31_t)0xc2692e83, (q31_t)0x2e8d5f29, (q31_t)0xc26c9a58, (q31_t)0x2e81485c, (q31_t)0xc270088e, (q31_t)0x2e75323c, (q31_t)0xc2737922, (q31_t)0x2e691cc9, (q31_t)0xc276ec16, (q31_t)0x2e5d0804, (q31_t)0xc27a616a, (q31_t)0x2e50f3ed, (q31_t)0xc27dd91c, (q31_t)0x2e44e084, (q31_t)0xc281532e, (q31_t)0x2e38cdcb, (q31_t)0xc284cf9f, (q31_t)0x2e2cbbc1, (q31_t)0xc2884e6e, (q31_t)0x2e20aa67, (q31_t)0xc28bcf9c, (q31_t)0x2e1499bd, (q31_t)0xc28f5329, (q31_t)0x2e0889c4, (q31_t)0xc292d914, (q31_t)0x2dfc7a7c, (q31_t)0xc296615d, (q31_t)0x2df06be6, (q31_t)0xc299ec05, (q31_t)0x2de45e03, (q31_t)0xc29d790a, (q31_t)0x2dd850d2, (q31_t)0xc2a1086d, (q31_t)0x2dcc4454, (q31_t)0xc2a49a2e, (q31_t)0x2dc0388a, (q31_t)0xc2a82e4d, (q31_t)0x2db42d74, (q31_t)0xc2abc4c9, (q31_t)0x2da82313, (q31_t)0xc2af5da2, (q31_t)0x2d9c1967, (q31_t)0xc2b2f8d8, (q31_t)0x2d901070, (q31_t)0xc2b6966c, (q31_t)0x2d84082f, (q31_t)0xc2ba365c, (q31_t)0x2d7800a5, (q31_t)0xc2bdd8a9, (q31_t)0x2d6bf9d1, (q31_t)0xc2c17d52, (q31_t)0x2d5ff3b5, (q31_t)0xc2c52459, (q31_t)0x2d53ee51, (q31_t)0xc2c8cdbb, (q31_t)0x2d47e9a5, (q31_t)0xc2cc7979, (q31_t)0x2d3be5b1, (q31_t)0xc2d02794, (q31_t)0x2d2fe277, (q31_t)0xc2d3d80a, (q31_t)0x2d23dff7, (q31_t)0xc2d78add, (q31_t)0x2d17de31, (q31_t)0xc2db400a, (q31_t)0x2d0bdd25, (q31_t)0xc2def794, (q31_t)0x2cffdcd4, (q31_t)0xc2e2b178, (q31_t)0x2cf3dd3f, (q31_t)0xc2e66db8, (q31_t)0x2ce7de66, (q31_t)0xc2ea2c53, (q31_t)0x2cdbe04a, (q31_t)0xc2eded49, (q31_t)0x2ccfe2ea, (q31_t)0xc2f1b099, (q31_t)0x2cc3e648, (q31_t)0xc2f57644, (q31_t)0x2cb7ea63, (q31_t)0xc2f93e4a, (q31_t)0x2cabef3d, (q31_t)0xc2fd08a9, (q31_t)0x2c9ff4d6, (q31_t)0xc300d563, (q31_t)0x2c93fb2e, (q31_t)0xc304a477, (q31_t)0x2c880245, (q31_t)0xc30875e5, (q31_t)0x2c7c0a1d, (q31_t)0xc30c49ad, (q31_t)0x2c7012b5, (q31_t)0xc3101fce, (q31_t)0x2c641c0e, (q31_t)0xc313f848, (q31_t)0x2c582629, (q31_t)0xc317d31c, (q31_t)0x2c4c3106, (q31_t)0xc31bb049, (q31_t)0x2c403ca5, (q31_t)0xc31f8fcf, (q31_t)0x2c344908, (q31_t)0xc32371ae, (q31_t)0x2c28562d, (q31_t)0xc32755e5, (q31_t)0x2c1c6417, (q31_t)0xc32b3c75, (q31_t)0x2c1072c4, (q31_t)0xc32f255e, (q31_t)0x2c048237, (q31_t)0xc333109e, (q31_t)0x2bf8926f, (q31_t)0xc336fe37, (q31_t)0x2beca36c, (q31_t)0xc33aee27, (q31_t)0x2be0b52f, (q31_t)0xc33ee070, (q31_t)0x2bd4c7ba, (q31_t)0xc342d510, (q31_t)0x2bc8db0b, (q31_t)0xc346cc07, (q31_t)0x2bbcef23, (q31_t)0xc34ac556, (q31_t)0x2bb10404, (q31_t)0xc34ec0fc, (q31_t)0x2ba519ad, (q31_t)0xc352bef9, (q31_t)0x2b99301f, (q31_t)0xc356bf4d, (q31_t)0x2b8d475b, (q31_t)0xc35ac1f7, (q31_t)0x2b815f60, (q31_t)0xc35ec6f8, (q31_t)0x2b75782f, (q31_t)0xc362ce50, (q31_t)0x2b6991ca, (q31_t)0xc366d7fd, (q31_t)0x2b5dac2f, (q31_t)0xc36ae401, (q31_t)0x2b51c760, (q31_t)0xc36ef25b, (q31_t)0x2b45e35d, (q31_t)0xc373030a, (q31_t)0x2b3a0027, (q31_t)0xc377160f, (q31_t)0x2b2e1dbe, (q31_t)0xc37b2b6a, (q31_t)0x2b223c22, (q31_t)0xc37f4319, (q31_t)0x2b165b54, (q31_t)0xc3835d1e, (q31_t)0x2b0a7b54, (q31_t)0xc3877978, (q31_t)0x2afe9c24, (q31_t)0xc38b9827, (q31_t)0x2af2bdc3, (q31_t)0xc38fb92a, (q31_t)0x2ae6e031, (q31_t)0xc393dc82, (q31_t)0x2adb0370, (q31_t)0xc398022f, (q31_t)0x2acf277f, (q31_t)0xc39c2a2f, (q31_t)0x2ac34c60, (q31_t)0xc3a05484, (q31_t)0x2ab77212, (q31_t)0xc3a4812c, (q31_t)0x2aab9896, (q31_t)0xc3a8b028, (q31_t)0x2a9fbfed, (q31_t)0xc3ace178, (q31_t)0x2a93e817, (q31_t)0xc3b1151b, (q31_t)0x2a881114, (q31_t)0xc3b54b11, (q31_t)0x2a7c3ae5, (q31_t)0xc3b9835a, (q31_t)0x2a70658a, (q31_t)0xc3bdbdf6, (q31_t)0x2a649105, (q31_t)0xc3c1fae5, (q31_t)0x2a58bd54, (q31_t)0xc3c63a26, (q31_t)0x2a4cea79, (q31_t)0xc3ca7bba, (q31_t)0x2a411874, (q31_t)0xc3cebfa0, (q31_t)0x2a354746, (q31_t)0xc3d305d8, (q31_t)0x2a2976ef, (q31_t)0xc3d74e62, (q31_t)0x2a1da770, (q31_t)0xc3db993e, (q31_t)0x2a11d8c8, (q31_t)0xc3dfe66c, (q31_t)0x2a060af9, (q31_t)0xc3e435ea, (q31_t)0x29fa3e03, (q31_t)0xc3e887bb, (q31_t)0x29ee71e6, (q31_t)0xc3ecdbdc, (q31_t)0x29e2a6a3, (q31_t)0xc3f1324e, (q31_t)0x29d6dc3b, (q31_t)0xc3f58b10, (q31_t)0x29cb12ad, (q31_t)0xc3f9e624, (q31_t)0x29bf49fa, (q31_t)0xc3fe4388, (q31_t)0x29b38223, (q31_t)0xc402a33c, (q31_t)0x29a7bb28, (q31_t)0xc4070540, (q31_t)0x299bf509, (q31_t)0xc40b6994, (q31_t)0x29902fc7, (q31_t)0xc40fd037, (q31_t)0x29846b63, (q31_t)0xc414392b, (q31_t)0x2978a7dd, (q31_t)0xc418a46d, (q31_t)0x296ce535, (q31_t)0xc41d11ff, (q31_t)0x2961236c, (q31_t)0xc42181e0, (q31_t)0x29556282, (q31_t)0xc425f410, (q31_t)0x2949a278, (q31_t)0xc42a688f, (q31_t)0x293de34e, (q31_t)0xc42edf5c, (q31_t)0x29322505, (q31_t)0xc4335877, (q31_t)0x2926679c, (q31_t)0xc437d3e1, (q31_t)0x291aab16, (q31_t)0xc43c5199, (q31_t)0x290eef71, (q31_t)0xc440d19e, (q31_t)0x290334af, (q31_t)0xc44553f2, (q31_t)0x28f77acf, (q31_t)0xc449d892, (q31_t)0x28ebc1d3, (q31_t)0xc44e5f80, (q31_t)0x28e009ba, (q31_t)0xc452e8bc, (q31_t)0x28d45286, (q31_t)0xc4577444, (q31_t)0x28c89c37, (q31_t)0xc45c0219, (q31_t)0x28bce6cd, (q31_t)0xc460923b, (q31_t)0x28b13248, (q31_t)0xc46524a9, (q31_t)0x28a57ea9, (q31_t)0xc469b963, (q31_t)0x2899cbf1, (q31_t)0xc46e5069, (q31_t)0x288e1a20, (q31_t)0xc472e9bc, (q31_t)0x28826936, (q31_t)0xc477855a, (q31_t)0x2876b934, (q31_t)0xc47c2344, (q31_t)0x286b0a1a, (q31_t)0xc480c379, (q31_t)0x285f5be9, (q31_t)0xc48565f9, (q31_t)0x2853aea1, (q31_t)0xc48a0ac4, (q31_t)0x28480243, (q31_t)0xc48eb1db, (q31_t)0x283c56cf, (q31_t)0xc4935b3c, (q31_t)0x2830ac45, (q31_t)0xc49806e7, (q31_t)0x282502a7, (q31_t)0xc49cb4dd, (q31_t)0x281959f4, (q31_t)0xc4a1651c, (q31_t)0x280db22d, (q31_t)0xc4a617a6, (q31_t)0x28020b52, (q31_t)0xc4aacc7a, (q31_t)0x27f66564, (q31_t)0xc4af8397, (q31_t)0x27eac063, (q31_t)0xc4b43cfd, (q31_t)0x27df1c50, (q31_t)0xc4b8f8ad, (q31_t)0x27d3792b, (q31_t)0xc4bdb6a6, (q31_t)0x27c7d6f4, (q31_t)0xc4c276e8, (q31_t)0x27bc35ad, (q31_t)0xc4c73972, (q31_t)0x27b09555, (q31_t)0xc4cbfe45, (q31_t)0x27a4f5ed, (q31_t)0xc4d0c560, (q31_t)0x27995776, (q31_t)0xc4d58ec3, (q31_t)0x278db9ef, (q31_t)0xc4da5a6f, (q31_t)0x27821d59, (q31_t)0xc4df2862, (q31_t)0x277681b6, (q31_t)0xc4e3f89c, (q31_t)0x276ae704, (q31_t)0xc4e8cb1e, (q31_t)0x275f4d45, (q31_t)0xc4ed9fe7, (q31_t)0x2753b479, (q31_t)0xc4f276f7, (q31_t)0x27481ca1, (q31_t)0xc4f7504e, (q31_t)0x273c85bc, (q31_t)0xc4fc2bec, (q31_t)0x2730efcc, (q31_t)0xc50109d0, (q31_t)0x27255ad1, (q31_t)0xc505e9fb, (q31_t)0x2719c6cb, (q31_t)0xc50acc6b, (q31_t)0x270e33bb, (q31_t)0xc50fb121, (q31_t)0x2702a1a1, (q31_t)0xc514981d, (q31_t)0x26f7107e, (q31_t)0xc519815f, (q31_t)0x26eb8052, (q31_t)0xc51e6ce6, (q31_t)0x26dff11d, (q31_t)0xc5235ab2, (q31_t)0x26d462e1, (q31_t)0xc5284ac3, (q31_t)0x26c8d59c, (q31_t)0xc52d3d18, (q31_t)0x26bd4951, (q31_t)0xc53231b3, (q31_t)0x26b1bdff, (q31_t)0xc5372891, (q31_t)0x26a633a6, (q31_t)0xc53c21b4, (q31_t)0x269aaa48, (q31_t)0xc5411d1b, (q31_t)0x268f21e5, (q31_t)0xc5461ac6, (q31_t)0x26839a7c, (q31_t)0xc54b1ab4, (q31_t)0x26781410, (q31_t)0xc5501ce5, (q31_t)0x266c8e9f, (q31_t)0xc555215a, (q31_t)0x26610a2a, (q31_t)0xc55a2812, (q31_t)0x265586b3, (q31_t)0xc55f310d, (q31_t)0x264a0438, (q31_t)0xc5643c4a, (q31_t)0x263e82bc, (q31_t)0xc56949ca, (q31_t)0x2633023e, (q31_t)0xc56e598c, (q31_t)0x262782be, (q31_t)0xc5736b90, (q31_t)0x261c043d, (q31_t)0xc5787fd6, (q31_t)0x261086bc, (q31_t)0xc57d965d, (q31_t)0x26050a3b, (q31_t)0xc582af26, (q31_t)0x25f98ebb, (q31_t)0xc587ca31, (q31_t)0x25ee143b, (q31_t)0xc58ce77c, (q31_t)0x25e29abc, (q31_t)0xc5920708, (q31_t)0x25d72240, (q31_t)0xc59728d5, (q31_t)0x25cbaac5, (q31_t)0xc59c4ce3, (q31_t)0x25c0344d, (q31_t)0xc5a17330, (q31_t)0x25b4bed8, (q31_t)0xc5a69bbe, (q31_t)0x25a94a67, (q31_t)0xc5abc68c, (q31_t)0x259dd6f9, (q31_t)0xc5b0f399, (q31_t)0x25926490, (q31_t)0xc5b622e6, (q31_t)0x2586f32c, (q31_t)0xc5bb5472, (q31_t)0x257b82cd, (q31_t)0xc5c0883d, (q31_t)0x25701374, (q31_t)0xc5c5be47, (q31_t)0x2564a521, (q31_t)0xc5caf690, (q31_t)0x255937d5, (q31_t)0xc5d03118, (q31_t)0x254dcb8f, (q31_t)0xc5d56ddd, (q31_t)0x25426051, (q31_t)0xc5daace1, (q31_t)0x2536f61b, (q31_t)0xc5dfee22, (q31_t)0x252b8cee, (q31_t)0xc5e531a1, (q31_t)0x252024c9, (q31_t)0xc5ea775e, (q31_t)0x2514bdad, (q31_t)0xc5efbf58, (q31_t)0x2509579b, (q31_t)0xc5f5098f, (q31_t)0x24fdf294, (q31_t)0xc5fa5603, (q31_t)0x24f28e96, (q31_t)0xc5ffa4b3, (q31_t)0x24e72ba4, (q31_t)0xc604f5a0, (q31_t)0x24dbc9bd, (q31_t)0xc60a48c9, (q31_t)0x24d068e2, (q31_t)0xc60f9e2e, (q31_t)0x24c50914, (q31_t)0xc614f5cf, (q31_t)0x24b9aa52, (q31_t)0xc61a4fac, (q31_t)0x24ae4c9d, (q31_t)0xc61fabc4, (q31_t)0x24a2eff6, (q31_t)0xc6250a18, (q31_t)0x2497945d, (q31_t)0xc62a6aa6, (q31_t)0x248c39d3, (q31_t)0xc62fcd6f, (q31_t)0x2480e057, (q31_t)0xc6353273, (q31_t)0x247587eb, (q31_t)0xc63a99b1, (q31_t)0x246a308f, (q31_t)0xc6400329, (q31_t)0x245eda43, (q31_t)0xc6456edb, (q31_t)0x24538507, (q31_t)0xc64adcc7, (q31_t)0x244830dd, (q31_t)0xc6504ced, (q31_t)0x243cddc4, (q31_t)0xc655bf4c, (q31_t)0x24318bbe, (q31_t)0xc65b33e4, (q31_t)0x24263ac9, (q31_t)0xc660aab5, (q31_t)0x241aeae8, (q31_t)0xc66623be, (q31_t)0x240f9c1a, (q31_t)0xc66b9f01, (q31_t)0x24044e60, (q31_t)0xc6711c7b, (q31_t)0x23f901ba, (q31_t)0xc6769c2e, (q31_t)0x23edb628, (q31_t)0xc67c1e18, (q31_t)0x23e26bac, (q31_t)0xc681a23a, (q31_t)0x23d72245, (q31_t)0xc6872894, (q31_t)0x23cbd9f4, (q31_t)0xc68cb124, (q31_t)0x23c092b9, (q31_t)0xc6923bec, (q31_t)0x23b54c95, (q31_t)0xc697c8eb, (q31_t)0x23aa0788, (q31_t)0xc69d5820, (q31_t)0x239ec393, (q31_t)0xc6a2e98b, (q31_t)0x239380b6, (q31_t)0xc6a87d2d, (q31_t)0x23883ef2, (q31_t)0xc6ae1304, (q31_t)0x237cfe47, (q31_t)0xc6b3ab12, (q31_t)0x2371beb5, (q31_t)0xc6b94554, (q31_t)0x2366803c, (q31_t)0xc6bee1cd, (q31_t)0x235b42df, (q31_t)0xc6c4807a, (q31_t)0x2350069b, (q31_t)0xc6ca215c, (q31_t)0x2344cb73, (q31_t)0xc6cfc472, (q31_t)0x23399167, (q31_t)0xc6d569be, (q31_t)0x232e5876, (q31_t)0xc6db113d, (q31_t)0x232320a2, (q31_t)0xc6e0baf0, (q31_t)0x2317e9eb, (q31_t)0xc6e666d7, (q31_t)0x230cb451, (q31_t)0xc6ec14f2, (q31_t)0x23017fd5, (q31_t)0xc6f1c540, (q31_t)0x22f64c77, (q31_t)0xc6f777c1, (q31_t)0x22eb1a37, (q31_t)0xc6fd2c75, (q31_t)0x22dfe917, (q31_t)0xc702e35c, (q31_t)0x22d4b916, (q31_t)0xc7089c75, (q31_t)0x22c98a35, (q31_t)0xc70e57c0, (q31_t)0x22be5c74, (q31_t)0xc714153e, (q31_t)0x22b32fd4, (q31_t)0xc719d4ed, (q31_t)0x22a80456, (q31_t)0xc71f96ce, (q31_t)0x229cd9f8, (q31_t)0xc7255ae0, (q31_t)0x2291b0bd, (q31_t)0xc72b2123, (q31_t)0x228688a4, (q31_t)0xc730e997, (q31_t)0x227b61af, (q31_t)0xc736b43c, (q31_t)0x22703bdc, (q31_t)0xc73c8111, (q31_t)0x2265172e, (q31_t)0xc7425016, (q31_t)0x2259f3a3, (q31_t)0xc748214c, (q31_t)0x224ed13d, (q31_t)0xc74df4b1, (q31_t)0x2243affc, (q31_t)0xc753ca46, (q31_t)0x22388fe1, (q31_t)0xc759a20a, (q31_t)0x222d70eb, (q31_t)0xc75f7bfe, (q31_t)0x2222531c, (q31_t)0xc7655820, (q31_t)0x22173674, (q31_t)0xc76b3671, (q31_t)0x220c1af3, (q31_t)0xc77116f0, (q31_t)0x22010099, (q31_t)0xc776f99d, (q31_t)0x21f5e768, (q31_t)0xc77cde79, (q31_t)0x21eacf5f, (q31_t)0xc782c582, (q31_t)0x21dfb87f, (q31_t)0xc788aeb9, (q31_t)0x21d4a2c8, (q31_t)0xc78e9a1d, (q31_t)0x21c98e3b, (q31_t)0xc79487ae, (q31_t)0x21be7ad8, (q31_t)0xc79a776c, (q31_t)0x21b368a0, (q31_t)0xc7a06957, (q31_t)0x21a85793, (q31_t)0xc7a65d6e, (q31_t)0x219d47b1, (q31_t)0xc7ac53b1, (q31_t)0x219238fb, (q31_t)0xc7b24c20, (q31_t)0x21872b72, (q31_t)0xc7b846ba, (q31_t)0x217c1f15, (q31_t)0xc7be4381, (q31_t)0x217113e5, (q31_t)0xc7c44272, (q31_t)0x216609e3, (q31_t)0xc7ca438f, (q31_t)0x215b0110, (q31_t)0xc7d046d6, (q31_t)0x214ff96a, (q31_t)0xc7d64c47, (q31_t)0x2144f2f3, (q31_t)0xc7dc53e3, (q31_t)0x2139edac, (q31_t)0xc7e25daa, (q31_t)0x212ee995, (q31_t)0xc7e8699a, (q31_t)0x2123e6ad, (q31_t)0xc7ee77b3, (q31_t)0x2118e4f6, (q31_t)0xc7f487f6, (q31_t)0x210de470, (q31_t)0xc7fa9a62, (q31_t)0x2102e51c, (q31_t)0xc800aef7, (q31_t)0x20f7e6f9, (q31_t)0xc806c5b5, (q31_t)0x20ecea09, (q31_t)0xc80cde9b, (q31_t)0x20e1ee4b, (q31_t)0xc812f9a9, (q31_t)0x20d6f3c1, (q31_t)0xc81916df, (q31_t)0x20cbfa6a, (q31_t)0xc81f363d, (q31_t)0x20c10247, (q31_t)0xc82557c3, (q31_t)0x20b60b58, (q31_t)0xc82b7b70, (q31_t)0x20ab159e, (q31_t)0xc831a143, (q31_t)0x20a0211a, (q31_t)0xc837c93e, (q31_t)0x20952dcb, (q31_t)0xc83df35f, (q31_t)0x208a3bb2, (q31_t)0xc8441fa6, (q31_t)0x207f4acf, (q31_t)0xc84a4e14, (q31_t)0x20745b24, (q31_t)0xc8507ea7, (q31_t)0x20696cb0, (q31_t)0xc856b160, (q31_t)0x205e7f74, (q31_t)0xc85ce63e, (q31_t)0x2053936f, (q31_t)0xc8631d42, (q31_t)0x2048a8a4, (q31_t)0xc869566a, (q31_t)0x203dbf11, (q31_t)0xc86f91b7, (q31_t)0x2032d6b8, (q31_t)0xc875cf28, (q31_t)0x2027ef99, (q31_t)0xc87c0ebd, (q31_t)0x201d09b4, (q31_t)0xc8825077, (q31_t)0x2012250a, (q31_t)0xc8889454, (q31_t)0x2007419b, (q31_t)0xc88eda54, (q31_t)0x1ffc5f67, (q31_t)0xc8952278, (q31_t)0x1ff17e70, (q31_t)0xc89b6cbf, (q31_t)0x1fe69eb4, (q31_t)0xc8a1b928, (q31_t)0x1fdbc036, (q31_t)0xc8a807b4, (q31_t)0x1fd0e2f5, (q31_t)0xc8ae5862, (q31_t)0x1fc606f1, (q31_t)0xc8b4ab32, (q31_t)0x1fbb2c2c, (q31_t)0xc8bb0023, (q31_t)0x1fb052a5, (q31_t)0xc8c15736, (q31_t)0x1fa57a5d, (q31_t)0xc8c7b06b, (q31_t)0x1f9aa354, (q31_t)0xc8ce0bc0, (q31_t)0x1f8fcd8b, (q31_t)0xc8d46936, (q31_t)0x1f84f902, (q31_t)0xc8dac8cd, (q31_t)0x1f7a25ba, (q31_t)0xc8e12a84, (q31_t)0x1f6f53b3, (q31_t)0xc8e78e5b, (q31_t)0x1f6482ed, (q31_t)0xc8edf452, (q31_t)0x1f59b369, (q31_t)0xc8f45c68, (q31_t)0x1f4ee527, (q31_t)0xc8fac69e, (q31_t)0x1f441828, (q31_t)0xc90132f2, (q31_t)0x1f394c6b, (q31_t)0xc907a166, (q31_t)0x1f2e81f3, (q31_t)0xc90e11f7, (q31_t)0x1f23b8be, (q31_t)0xc91484a8, (q31_t)0x1f18f0ce, (q31_t)0xc91af976, (q31_t)0x1f0e2a22, (q31_t)0xc9217062, (q31_t)0x1f0364bc, (q31_t)0xc927e96b, (q31_t)0x1ef8a09b, (q31_t)0xc92e6492, (q31_t)0x1eedddc0, (q31_t)0xc934e1d6, (q31_t)0x1ee31c2b, (q31_t)0xc93b6137, (q31_t)0x1ed85bdd, (q31_t)0xc941e2b4, (q31_t)0x1ecd9cd7, (q31_t)0xc948664d, (q31_t)0x1ec2df18, (q31_t)0xc94eec03, (q31_t)0x1eb822a1, (q31_t)0xc95573d4, (q31_t)0x1ead6773, (q31_t)0xc95bfdc1, (q31_t)0x1ea2ad8d, (q31_t)0xc96289c9, (q31_t)0x1e97f4f1, (q31_t)0xc96917ec, (q31_t)0x1e8d3d9e, (q31_t)0xc96fa82a, (q31_t)0x1e828796, (q31_t)0xc9763a83, (q31_t)0x1e77d2d8, (q31_t)0xc97ccef5, (q31_t)0x1e6d1f65, (q31_t)0xc9836582, (q31_t)0x1e626d3e, (q31_t)0xc989fe29, (q31_t)0x1e57bc62, (q31_t)0xc99098e9, (q31_t)0x1e4d0cd2, (q31_t)0xc99735c2, (q31_t)0x1e425e8f, (q31_t)0xc99dd4b4, (q31_t)0x1e37b199, (q31_t)0xc9a475bf, (q31_t)0x1e2d05f1, (q31_t)0xc9ab18e3, (q31_t)0x1e225b96, (q31_t)0xc9b1be1e, (q31_t)0x1e17b28a, (q31_t)0xc9b86572, (q31_t)0x1e0d0acc, (q31_t)0xc9bf0edd, (q31_t)0x1e02645d, (q31_t)0xc9c5ba60, (q31_t)0x1df7bf3e, (q31_t)0xc9cc67fa, (q31_t)0x1ded1b6e, (q31_t)0xc9d317ab, (q31_t)0x1de278ef, (q31_t)0xc9d9c973, (q31_t)0x1dd7d7c1, (q31_t)0xc9e07d51, (q31_t)0x1dcd37e4, (q31_t)0xc9e73346, (q31_t)0x1dc29958, (q31_t)0xc9edeb50, (q31_t)0x1db7fc1e, (q31_t)0xc9f4a570, (q31_t)0x1dad6036, (q31_t)0xc9fb61a5, (q31_t)0x1da2c5a2, (q31_t)0xca021fef, (q31_t)0x1d982c60, (q31_t)0xca08e04f, (q31_t)0x1d8d9472, (q31_t)0xca0fa2c3, (q31_t)0x1d82fdd8, (q31_t)0xca16674b, (q31_t)0x1d786892, (q31_t)0xca1d2de7, (q31_t)0x1d6dd4a2, (q31_t)0xca23f698, (q31_t)0x1d634206, (q31_t)0xca2ac15b, (q31_t)0x1d58b0c0, (q31_t)0xca318e32, (q31_t)0x1d4e20d0, (q31_t)0xca385d1d, (q31_t)0x1d439236, (q31_t)0xca3f2e19, (q31_t)0x1d3904f4, (q31_t)0xca460129, (q31_t)0x1d2e7908, (q31_t)0xca4cd64b, (q31_t)0x1d23ee74, (q31_t)0xca53ad7e, (q31_t)0x1d196538, (q31_t)0xca5a86c4, (q31_t)0x1d0edd55, (q31_t)0xca61621b, (q31_t)0x1d0456ca, (q31_t)0xca683f83, (q31_t)0x1cf9d199, (q31_t)0xca6f1efc, (q31_t)0x1cef4dc2, (q31_t)0xca760086, (q31_t)0x1ce4cb44, (q31_t)0xca7ce420, (q31_t)0x1cda4a21, (q31_t)0xca83c9ca, (q31_t)0x1ccfca59, (q31_t)0xca8ab184, (q31_t)0x1cc54bec, (q31_t)0xca919b4e, (q31_t)0x1cbacedb, (q31_t)0xca988727, (q31_t)0x1cb05326, (q31_t)0xca9f750f, (q31_t)0x1ca5d8cd, (q31_t)0xcaa66506, (q31_t)0x1c9b5fd2, (q31_t)0xcaad570c, (q31_t)0x1c90e834, (q31_t)0xcab44b1f, (q31_t)0x1c8671f3, (q31_t)0xcabb4141, (q31_t)0x1c7bfd11, (q31_t)0xcac23971, (q31_t)0x1c71898d, (q31_t)0xcac933ae, (q31_t)0x1c671768, (q31_t)0xcad02ff8, (q31_t)0x1c5ca6a2, (q31_t)0xcad72e4f, (q31_t)0x1c52373c, (q31_t)0xcade2eb3, (q31_t)0x1c47c936, (q31_t)0xcae53123, (q31_t)0x1c3d5c91, (q31_t)0xcaec35a0, (q31_t)0x1c32f14d, (q31_t)0xcaf33c28, (q31_t)0x1c28876a, (q31_t)0xcafa44bc, (q31_t)0x1c1e1ee9, (q31_t)0xcb014f5b, (q31_t)0x1c13b7c9, (q31_t)0xcb085c05, (q31_t)0x1c09520d, (q31_t)0xcb0f6aba, (q31_t)0x1bfeedb3, (q31_t)0xcb167b79, (q31_t)0x1bf48abd, (q31_t)0xcb1d8e43, (q31_t)0x1bea292b, (q31_t)0xcb24a316, (q31_t)0x1bdfc8fc, (q31_t)0xcb2bb9f4, (q31_t)0x1bd56a32, (q31_t)0xcb32d2da, (q31_t)0x1bcb0cce, (q31_t)0xcb39edca, (q31_t)0x1bc0b0ce, (q31_t)0xcb410ac3, (q31_t)0x1bb65634, (q31_t)0xcb4829c4, (q31_t)0x1babfd01, (q31_t)0xcb4f4acd, (q31_t)0x1ba1a534, (q31_t)0xcb566ddf, (q31_t)0x1b974ece, (q31_t)0xcb5d92f8, (q31_t)0x1b8cf9cf, (q31_t)0xcb64ba19, (q31_t)0x1b82a638, (q31_t)0xcb6be341, (q31_t)0x1b785409, (q31_t)0xcb730e70, (q31_t)0x1b6e0342, (q31_t)0xcb7a3ba5, (q31_t)0x1b63b3e5, (q31_t)0xcb816ae1, (q31_t)0x1b5965f1, (q31_t)0xcb889c23, (q31_t)0x1b4f1967, (q31_t)0xcb8fcf6b, (q31_t)0x1b44ce46, (q31_t)0xcb9704b9, (q31_t)0x1b3a8491, (q31_t)0xcb9e3c0b, (q31_t)0x1b303c46, (q31_t)0xcba57563, (q31_t)0x1b25f566, (q31_t)0xcbacb0bf, (q31_t)0x1b1baff2, (q31_t)0xcbb3ee20, (q31_t)0x1b116beb, (q31_t)0xcbbb2d85, (q31_t)0x1b072950, (q31_t)0xcbc26eee, (q31_t)0x1afce821, (q31_t)0xcbc9b25a, (q31_t)0x1af2a860, (q31_t)0xcbd0f7ca, (q31_t)0x1ae86a0d, (q31_t)0xcbd83f3d, (q31_t)0x1ade2d28, (q31_t)0xcbdf88b3, (q31_t)0x1ad3f1b1, (q31_t)0xcbe6d42b, (q31_t)0x1ac9b7a9, (q31_t)0xcbee21a5, (q31_t)0x1abf7f11, (q31_t)0xcbf57121, (q31_t)0x1ab547e8, (q31_t)0xcbfcc29f, (q31_t)0x1aab122f, (q31_t)0xcc04161e, (q31_t)0x1aa0dde7, (q31_t)0xcc0b6b9e, (q31_t)0x1a96ab0f, (q31_t)0xcc12c31f, (q31_t)0x1a8c79a9, (q31_t)0xcc1a1ca0, (q31_t)0x1a8249b4, (q31_t)0xcc217822, (q31_t)0x1a781b31, (q31_t)0xcc28d5a3, (q31_t)0x1a6dee21, (q31_t)0xcc303524, (q31_t)0x1a63c284, (q31_t)0xcc3796a5, (q31_t)0x1a599859, (q31_t)0xcc3efa25, (q31_t)0x1a4f6fa3, (q31_t)0xcc465fa3, (q31_t)0x1a454860, (q31_t)0xcc4dc720, (q31_t)0x1a3b2292, (q31_t)0xcc55309b, (q31_t)0x1a30fe38, (q31_t)0xcc5c9c14, (q31_t)0x1a26db54, (q31_t)0xcc64098b, (q31_t)0x1a1cb9e5, (q31_t)0xcc6b78ff, (q31_t)0x1a1299ec, (q31_t)0xcc72ea70, (q31_t)0x1a087b69, (q31_t)0xcc7a5dde, (q31_t)0x19fe5e5e, (q31_t)0xcc81d349, (q31_t)0x19f442c9, (q31_t)0xcc894aaf, (q31_t)0x19ea28ac, (q31_t)0xcc90c412, (q31_t)0x19e01006, (q31_t)0xcc983f70, (q31_t)0x19d5f8d9, (q31_t)0xcc9fbcca, (q31_t)0x19cbe325, (q31_t)0xcca73c1e, (q31_t)0x19c1cee9, (q31_t)0xccaebd6e, (q31_t)0x19b7bc27, (q31_t)0xccb640b8, (q31_t)0x19adaadf, (q31_t)0xccbdc5fc, (q31_t)0x19a39b11, (q31_t)0xccc54d3a, (q31_t)0x19998cbe, (q31_t)0xccccd671, (q31_t)0x198f7fe6, (q31_t)0xccd461a2, (q31_t)0x19857489, (q31_t)0xccdbeecc, (q31_t)0x197b6aa8, (q31_t)0xcce37def, (q31_t)0x19716243, (q31_t)0xcceb0f0a, (q31_t)0x19675b5a, (q31_t)0xccf2a21d, (q31_t)0x195d55ef, (q31_t)0xccfa3729, (q31_t)0x19535201, (q31_t)0xcd01ce2b, (q31_t)0x19494f90, (q31_t)0xcd096725, (q31_t)0x193f4e9e, (q31_t)0xcd110216, (q31_t)0x19354f2a, (q31_t)0xcd189efe, (q31_t)0x192b5135, (q31_t)0xcd203ddc, (q31_t)0x192154bf, (q31_t)0xcd27deb0, (q31_t)0x191759c9, (q31_t)0xcd2f817b, (q31_t)0x190d6053, (q31_t)0xcd37263a, (q31_t)0x1903685d, (q31_t)0xcd3eccef, (q31_t)0x18f971e8, (q31_t)0xcd467599, (q31_t)0x18ef7cf4, (q31_t)0xcd4e2037, (q31_t)0x18e58982, (q31_t)0xcd55ccca, (q31_t)0x18db9792, (q31_t)0xcd5d7b50, (q31_t)0x18d1a724, (q31_t)0xcd652bcb, (q31_t)0x18c7b838, (q31_t)0xcd6cde39, (q31_t)0x18bdcad0, (q31_t)0xcd74929a, (q31_t)0x18b3deeb, (q31_t)0xcd7c48ee, (q31_t)0x18a9f48a, (q31_t)0xcd840134, (q31_t)0x18a00bae, (q31_t)0xcd8bbb6d, (q31_t)0x18962456, (q31_t)0xcd937798, (q31_t)0x188c3e83, (q31_t)0xcd9b35b4, (q31_t)0x18825a35, (q31_t)0xcda2f5c2, (q31_t)0x1878776d, (q31_t)0xcdaab7c0, (q31_t)0x186e962b, (q31_t)0xcdb27bb0, (q31_t)0x1864b670, (q31_t)0xcdba4190, (q31_t)0x185ad83c, (q31_t)0xcdc20960, (q31_t)0x1850fb8e, (q31_t)0xcdc9d320, (q31_t)0x18472069, (q31_t)0xcdd19ed0, (q31_t)0x183d46cc, (q31_t)0xcdd96c6f, (q31_t)0x18336eb7, (q31_t)0xcde13bfd, (q31_t)0x1829982b, (q31_t)0xcde90d79, (q31_t)0x181fc328, (q31_t)0xcdf0e0e4, (q31_t)0x1815efae, (q31_t)0xcdf8b63d, (q31_t)0x180c1dbf, (q31_t)0xce008d84, (q31_t)0x18024d59, (q31_t)0xce0866b8, (q31_t)0x17f87e7f, (q31_t)0xce1041d9, (q31_t)0x17eeb130, (q31_t)0xce181ee8, (q31_t)0x17e4e56c, (q31_t)0xce1ffde2, (q31_t)0x17db1b34, (q31_t)0xce27dec9, (q31_t)0x17d15288, (q31_t)0xce2fc19c, (q31_t)0x17c78b68, (q31_t)0xce37a65b, (q31_t)0x17bdc5d6, (q31_t)0xce3f8d05, (q31_t)0x17b401d1, (q31_t)0xce47759a, (q31_t)0x17aa3f5a, (q31_t)0xce4f6019, (q31_t)0x17a07e70, (q31_t)0xce574c84, (q31_t)0x1796bf16, (q31_t)0xce5f3ad8, (q31_t)0x178d014a, (q31_t)0xce672b16, (q31_t)0x1783450d, (q31_t)0xce6f1d3d, (q31_t)0x17798a60, (q31_t)0xce77114e, (q31_t)0x176fd143, (q31_t)0xce7f0748, (q31_t)0x176619b6, (q31_t)0xce86ff2a, (q31_t)0x175c63ba, (q31_t)0xce8ef8f4, (q31_t)0x1752af4f, (q31_t)0xce96f4a7, (q31_t)0x1748fc75, (q31_t)0xce9ef241, (q31_t)0x173f4b2e, (q31_t)0xcea6f1c2, (q31_t)0x17359b78, (q31_t)0xceaef32b, (q31_t)0x172bed55, (q31_t)0xceb6f67a, (q31_t)0x172240c5, (q31_t)0xcebefbb0, (q31_t)0x171895c9, (q31_t)0xcec702cb, (q31_t)0x170eec60, (q31_t)0xcecf0bcd, (q31_t)0x1705448b, (q31_t)0xced716b4, (q31_t)0x16fb9e4b, (q31_t)0xcedf2380, (q31_t)0x16f1f99f, (q31_t)0xcee73231, (q31_t)0x16e85689, (q31_t)0xceef42c7, (q31_t)0x16deb508, (q31_t)0xcef75541, (q31_t)0x16d5151d, (q31_t)0xceff699f, (q31_t)0x16cb76c9, (q31_t)0xcf077fe1, (q31_t)0x16c1da0b, (q31_t)0xcf0f9805, (q31_t)0x16b83ee4, (q31_t)0xcf17b20d, (q31_t)0x16aea555, (q31_t)0xcf1fcdf8, (q31_t)0x16a50d5d, (q31_t)0xcf27ebc5, (q31_t)0x169b76fe, (q31_t)0xcf300b74, (q31_t)0x1691e237, (q31_t)0xcf382d05, (q31_t)0x16884f09, (q31_t)0xcf405077, (q31_t)0x167ebd74, (q31_t)0xcf4875ca, (q31_t)0x16752d79, (q31_t)0xcf509cfe, (q31_t)0x166b9f18, (q31_t)0xcf58c613, (q31_t)0x16621251, (q31_t)0xcf60f108, (q31_t)0x16588725, (q31_t)0xcf691ddd, (q31_t)0x164efd94, (q31_t)0xcf714c91, (q31_t)0x1645759f, (q31_t)0xcf797d24, (q31_t)0x163bef46, (q31_t)0xcf81af97, (q31_t)0x16326a88, (q31_t)0xcf89e3e8, (q31_t)0x1628e767, (q31_t)0xcf921a17, (q31_t)0x161f65e4, (q31_t)0xcf9a5225, (q31_t)0x1615e5fd, (q31_t)0xcfa28c10, (q31_t)0x160c67b4, (q31_t)0xcfaac7d8, (q31_t)0x1602eb0a, (q31_t)0xcfb3057d, (q31_t)0x15f96ffd, (q31_t)0xcfbb4500, (q31_t)0x15eff690, (q31_t)0xcfc3865e, (q31_t)0x15e67ec1, (q31_t)0xcfcbc999, (q31_t)0x15dd0892, (q31_t)0xcfd40eaf, (q31_t)0x15d39403, (q31_t)0xcfdc55a1, (q31_t)0x15ca2115, (q31_t)0xcfe49e6d, (q31_t)0x15c0afc6, (q31_t)0xcfece915, (q31_t)0x15b74019, (q31_t)0xcff53597, (q31_t)0x15add20d, (q31_t)0xcffd83f4, (q31_t)0x15a465a3, (q31_t)0xd005d42a, (q31_t)0x159afadb, (q31_t)0xd00e2639, (q31_t)0x159191b5, (q31_t)0xd0167a22, (q31_t)0x15882a32, (q31_t)0xd01ecfe4, (q31_t)0x157ec452, (q31_t)0xd027277e, (q31_t)0x15756016, (q31_t)0xd02f80f1, (q31_t)0x156bfd7d, (q31_t)0xd037dc3b, (q31_t)0x15629c89, (q31_t)0xd040395d, (q31_t)0x15593d3a, (q31_t)0xd0489856, (q31_t)0x154fdf8f, (q31_t)0xd050f926, (q31_t)0x15468389, (q31_t)0xd0595bcd, (q31_t)0x153d292a, (q31_t)0xd061c04a, (q31_t)0x1533d070, (q31_t)0xd06a269d, (q31_t)0x152a795d, (q31_t)0xd0728ec6, (q31_t)0x152123f0, (q31_t)0xd07af8c4, (q31_t)0x1517d02b, (q31_t)0xd0836497, (q31_t)0x150e7e0d, (q31_t)0xd08bd23f, (q31_t)0x15052d97, (q31_t)0xd09441bb, (q31_t)0x14fbdec9, (q31_t)0xd09cb30b, (q31_t)0x14f291a4, (q31_t)0xd0a5262f, (q31_t)0x14e94627, (q31_t)0xd0ad9b26, (q31_t)0x14dffc54, (q31_t)0xd0b611f1, (q31_t)0x14d6b42b, (q31_t)0xd0be8a8d, (q31_t)0x14cd6dab, (q31_t)0xd0c704fd, (q31_t)0x14c428d6, (q31_t)0xd0cf813e, (q31_t)0x14bae5ab, (q31_t)0xd0d7ff51, (q31_t)0x14b1a42c, (q31_t)0xd0e07f36, (q31_t)0x14a86458, (q31_t)0xd0e900ec, (q31_t)0x149f2630, (q31_t)0xd0f18472, (q31_t)0x1495e9b3, (q31_t)0xd0fa09c9, (q31_t)0x148caee4, (q31_t)0xd10290f0, (q31_t)0x148375c1, (q31_t)0xd10b19e7, (q31_t)0x147a3e4b, (q31_t)0xd113a4ad, (q31_t)0x14710883, (q31_t)0xd11c3142, (q31_t)0x1467d469, (q31_t)0xd124bfa6, (q31_t)0x145ea1fd, (q31_t)0xd12d4fd9, (q31_t)0x14557140, (q31_t)0xd135e1d9, (q31_t)0x144c4232, (q31_t)0xd13e75a8, (q31_t)0x144314d3, (q31_t)0xd1470b44, (q31_t)0x1439e923, (q31_t)0xd14fa2ad, (q31_t)0x1430bf24, (q31_t)0xd1583be2, (q31_t)0x142796d5, (q31_t)0xd160d6e5, (q31_t)0x141e7037, (q31_t)0xd16973b3, (q31_t)0x14154b4a, (q31_t)0xd172124d, (q31_t)0x140c280e, (q31_t)0xd17ab2b3, (q31_t)0x14030684, (q31_t)0xd18354e4, (q31_t)0x13f9e6ad, (q31_t)0xd18bf8e0, (q31_t)0x13f0c887, (q31_t)0xd1949ea6, (q31_t)0x13e7ac15, (q31_t)0xd19d4636, (q31_t)0x13de9156, (q31_t)0xd1a5ef90, (q31_t)0x13d5784a, (q31_t)0xd1ae9ab4, (q31_t)0x13cc60f2, (q31_t)0xd1b747a0, (q31_t)0x13c34b4f, (q31_t)0xd1bff656, (q31_t)0x13ba3760, (q31_t)0xd1c8a6d4, (q31_t)0x13b12526, (q31_t)0xd1d1591a, (q31_t)0x13a814a2, (q31_t)0xd1da0d28, (q31_t)0x139f05d3, (q31_t)0xd1e2c2fd, (q31_t)0x1395f8ba, (q31_t)0xd1eb7a9a, (q31_t)0x138ced57, (q31_t)0xd1f433fd, (q31_t)0x1383e3ab, (q31_t)0xd1fcef27, (q31_t)0x137adbb6, (q31_t)0xd205ac17, (q31_t)0x1371d579, (q31_t)0xd20e6acc, (q31_t)0x1368d0f3, (q31_t)0xd2172b48, (q31_t)0x135fce26, (q31_t)0xd21fed88, (q31_t)0x1356cd11, (q31_t)0xd228b18d, (q31_t)0x134dcdb4, (q31_t)0xd2317756, (q31_t)0x1344d011, (q31_t)0xd23a3ee4, (q31_t)0x133bd427, (q31_t)0xd2430835, (q31_t)0x1332d9f7, (q31_t)0xd24bd34a, (q31_t)0x1329e181, (q31_t)0xd254a021, (q31_t)0x1320eac6, (q31_t)0xd25d6ebc, (q31_t)0x1317f5c6, (q31_t)0xd2663f19, (q31_t)0x130f0280, (q31_t)0xd26f1138, (q31_t)0x130610f7, (q31_t)0xd277e518, (q31_t)0x12fd2129, (q31_t)0xd280babb, (q31_t)0x12f43318, (q31_t)0xd289921e, (q31_t)0x12eb46c3, (q31_t)0xd2926b41, (q31_t)0x12e25c2b, (q31_t)0xd29b4626, (q31_t)0x12d97350, (q31_t)0xd2a422ca, (q31_t)0x12d08c33, (q31_t)0xd2ad012e, (q31_t)0x12c7a6d4, (q31_t)0xd2b5e151, (q31_t)0x12bec333, (q31_t)0xd2bec333, (q31_t)0x12b5e151, (q31_t)0xd2c7a6d4, (q31_t)0x12ad012e, (q31_t)0xd2d08c33, (q31_t)0x12a422ca, (q31_t)0xd2d97350, (q31_t)0x129b4626, (q31_t)0xd2e25c2b, (q31_t)0x12926b41, (q31_t)0xd2eb46c3, (q31_t)0x1289921e, (q31_t)0xd2f43318, (q31_t)0x1280babb, (q31_t)0xd2fd2129, (q31_t)0x1277e518, (q31_t)0xd30610f7, (q31_t)0x126f1138, (q31_t)0xd30f0280, (q31_t)0x12663f19, (q31_t)0xd317f5c6, (q31_t)0x125d6ebc, (q31_t)0xd320eac6, (q31_t)0x1254a021, (q31_t)0xd329e181, (q31_t)0x124bd34a, (q31_t)0xd332d9f7, (q31_t)0x12430835, (q31_t)0xd33bd427, (q31_t)0x123a3ee4, (q31_t)0xd344d011, (q31_t)0x12317756, (q31_t)0xd34dcdb4, (q31_t)0x1228b18d, (q31_t)0xd356cd11, (q31_t)0x121fed88, (q31_t)0xd35fce26, (q31_t)0x12172b48, (q31_t)0xd368d0f3, (q31_t)0x120e6acc, (q31_t)0xd371d579, (q31_t)0x1205ac17, (q31_t)0xd37adbb6, (q31_t)0x11fcef27, (q31_t)0xd383e3ab, (q31_t)0x11f433fd, (q31_t)0xd38ced57, (q31_t)0x11eb7a9a, (q31_t)0xd395f8ba, (q31_t)0x11e2c2fd, (q31_t)0xd39f05d3, (q31_t)0x11da0d28, (q31_t)0xd3a814a2, (q31_t)0x11d1591a, (q31_t)0xd3b12526, (q31_t)0x11c8a6d4, (q31_t)0xd3ba3760, (q31_t)0x11bff656, (q31_t)0xd3c34b4f, (q31_t)0x11b747a0, (q31_t)0xd3cc60f2, (q31_t)0x11ae9ab4, (q31_t)0xd3d5784a, (q31_t)0x11a5ef90, (q31_t)0xd3de9156, (q31_t)0x119d4636, (q31_t)0xd3e7ac15, (q31_t)0x11949ea6, (q31_t)0xd3f0c887, (q31_t)0x118bf8e0, (q31_t)0xd3f9e6ad, (q31_t)0x118354e4, (q31_t)0xd4030684, (q31_t)0x117ab2b3, (q31_t)0xd40c280e, (q31_t)0x1172124d, (q31_t)0xd4154b4a, (q31_t)0x116973b3, (q31_t)0xd41e7037, (q31_t)0x1160d6e5, (q31_t)0xd42796d5, (q31_t)0x11583be2, (q31_t)0xd430bf24, (q31_t)0x114fa2ad, (q31_t)0xd439e923, (q31_t)0x11470b44, (q31_t)0xd44314d3, (q31_t)0x113e75a8, (q31_t)0xd44c4232, (q31_t)0x1135e1d9, (q31_t)0xd4557140, (q31_t)0x112d4fd9, (q31_t)0xd45ea1fd, (q31_t)0x1124bfa6, (q31_t)0xd467d469, (q31_t)0x111c3142, (q31_t)0xd4710883, (q31_t)0x1113a4ad, (q31_t)0xd47a3e4b, (q31_t)0x110b19e7, (q31_t)0xd48375c1, (q31_t)0x110290f0, (q31_t)0xd48caee4, (q31_t)0x10fa09c9, (q31_t)0xd495e9b3, (q31_t)0x10f18472, (q31_t)0xd49f2630, (q31_t)0x10e900ec, (q31_t)0xd4a86458, (q31_t)0x10e07f36, (q31_t)0xd4b1a42c, (q31_t)0x10d7ff51, (q31_t)0xd4bae5ab, (q31_t)0x10cf813e, (q31_t)0xd4c428d6, (q31_t)0x10c704fd, (q31_t)0xd4cd6dab, (q31_t)0x10be8a8d, (q31_t)0xd4d6b42b, (q31_t)0x10b611f1, (q31_t)0xd4dffc54, (q31_t)0x10ad9b26, (q31_t)0xd4e94627, (q31_t)0x10a5262f, (q31_t)0xd4f291a4, (q31_t)0x109cb30b, (q31_t)0xd4fbdec9, (q31_t)0x109441bb, (q31_t)0xd5052d97, (q31_t)0x108bd23f, (q31_t)0xd50e7e0d, (q31_t)0x10836497, (q31_t)0xd517d02b, (q31_t)0x107af8c4, (q31_t)0xd52123f0, (q31_t)0x10728ec6, (q31_t)0xd52a795d, (q31_t)0x106a269d, (q31_t)0xd533d070, (q31_t)0x1061c04a, (q31_t)0xd53d292a, (q31_t)0x10595bcd, (q31_t)0xd5468389, (q31_t)0x1050f926, (q31_t)0xd54fdf8f, (q31_t)0x10489856, (q31_t)0xd5593d3a, (q31_t)0x1040395d, (q31_t)0xd5629c89, (q31_t)0x1037dc3b, (q31_t)0xd56bfd7d, (q31_t)0x102f80f1, (q31_t)0xd5756016, (q31_t)0x1027277e, (q31_t)0xd57ec452, (q31_t)0x101ecfe4, (q31_t)0xd5882a32, (q31_t)0x10167a22, (q31_t)0xd59191b5, (q31_t)0x100e2639, (q31_t)0xd59afadb, (q31_t)0x1005d42a, (q31_t)0xd5a465a3, (q31_t)0xffd83f4, (q31_t)0xd5add20d, (q31_t)0xff53597, (q31_t)0xd5b74019, (q31_t)0xfece915, (q31_t)0xd5c0afc6, (q31_t)0xfe49e6d, (q31_t)0xd5ca2115, (q31_t)0xfdc55a1, (q31_t)0xd5d39403, (q31_t)0xfd40eaf, (q31_t)0xd5dd0892, (q31_t)0xfcbc999, (q31_t)0xd5e67ec1, (q31_t)0xfc3865e, (q31_t)0xd5eff690, (q31_t)0xfbb4500, (q31_t)0xd5f96ffd, (q31_t)0xfb3057d, (q31_t)0xd602eb0a, (q31_t)0xfaac7d8, (q31_t)0xd60c67b4, (q31_t)0xfa28c10, (q31_t)0xd615e5fd, (q31_t)0xf9a5225, (q31_t)0xd61f65e4, (q31_t)0xf921a17, (q31_t)0xd628e767, (q31_t)0xf89e3e8, (q31_t)0xd6326a88, (q31_t)0xf81af97, (q31_t)0xd63bef46, (q31_t)0xf797d24, (q31_t)0xd645759f, (q31_t)0xf714c91, (q31_t)0xd64efd94, (q31_t)0xf691ddd, (q31_t)0xd6588725, (q31_t)0xf60f108, (q31_t)0xd6621251, (q31_t)0xf58c613, (q31_t)0xd66b9f18, (q31_t)0xf509cfe, (q31_t)0xd6752d79, (q31_t)0xf4875ca, (q31_t)0xd67ebd74, (q31_t)0xf405077, (q31_t)0xd6884f09, (q31_t)0xf382d05, (q31_t)0xd691e237, (q31_t)0xf300b74, (q31_t)0xd69b76fe, (q31_t)0xf27ebc5, (q31_t)0xd6a50d5d, (q31_t)0xf1fcdf8, (q31_t)0xd6aea555, (q31_t)0xf17b20d, (q31_t)0xd6b83ee4, (q31_t)0xf0f9805, (q31_t)0xd6c1da0b, (q31_t)0xf077fe1, (q31_t)0xd6cb76c9, (q31_t)0xeff699f, (q31_t)0xd6d5151d, (q31_t)0xef75541, (q31_t)0xd6deb508, (q31_t)0xeef42c7, (q31_t)0xd6e85689, (q31_t)0xee73231, (q31_t)0xd6f1f99f, (q31_t)0xedf2380, (q31_t)0xd6fb9e4b, (q31_t)0xed716b4, (q31_t)0xd705448b, (q31_t)0xecf0bcd, (q31_t)0xd70eec60, (q31_t)0xec702cb, (q31_t)0xd71895c9, (q31_t)0xebefbb0, (q31_t)0xd72240c5, (q31_t)0xeb6f67a, (q31_t)0xd72bed55, (q31_t)0xeaef32b, (q31_t)0xd7359b78, (q31_t)0xea6f1c2, (q31_t)0xd73f4b2e, (q31_t)0xe9ef241, (q31_t)0xd748fc75, (q31_t)0xe96f4a7, (q31_t)0xd752af4f, (q31_t)0xe8ef8f4, (q31_t)0xd75c63ba, (q31_t)0xe86ff2a, (q31_t)0xd76619b6, (q31_t)0xe7f0748, (q31_t)0xd76fd143, (q31_t)0xe77114e, (q31_t)0xd7798a60, (q31_t)0xe6f1d3d, (q31_t)0xd783450d, (q31_t)0xe672b16, (q31_t)0xd78d014a, (q31_t)0xe5f3ad8, (q31_t)0xd796bf16, (q31_t)0xe574c84, (q31_t)0xd7a07e70, (q31_t)0xe4f6019, (q31_t)0xd7aa3f5a, (q31_t)0xe47759a, (q31_t)0xd7b401d1, (q31_t)0xe3f8d05, (q31_t)0xd7bdc5d6, (q31_t)0xe37a65b, (q31_t)0xd7c78b68, (q31_t)0xe2fc19c, (q31_t)0xd7d15288, (q31_t)0xe27dec9, (q31_t)0xd7db1b34, (q31_t)0xe1ffde2, (q31_t)0xd7e4e56c, (q31_t)0xe181ee8, (q31_t)0xd7eeb130, (q31_t)0xe1041d9, (q31_t)0xd7f87e7f, (q31_t)0xe0866b8, (q31_t)0xd8024d59, (q31_t)0xe008d84, (q31_t)0xd80c1dbf, (q31_t)0xdf8b63d, (q31_t)0xd815efae, (q31_t)0xdf0e0e4, (q31_t)0xd81fc328, (q31_t)0xde90d79, (q31_t)0xd829982b, (q31_t)0xde13bfd, (q31_t)0xd8336eb7, (q31_t)0xdd96c6f, (q31_t)0xd83d46cc, (q31_t)0xdd19ed0, (q31_t)0xd8472069, (q31_t)0xdc9d320, (q31_t)0xd850fb8e, (q31_t)0xdc20960, (q31_t)0xd85ad83c, (q31_t)0xdba4190, (q31_t)0xd864b670, (q31_t)0xdb27bb0, (q31_t)0xd86e962b, (q31_t)0xdaab7c0, (q31_t)0xd878776d, (q31_t)0xda2f5c2, (q31_t)0xd8825a35, (q31_t)0xd9b35b4, (q31_t)0xd88c3e83, (q31_t)0xd937798, (q31_t)0xd8962456, (q31_t)0xd8bbb6d, (q31_t)0xd8a00bae, (q31_t)0xd840134, (q31_t)0xd8a9f48a, (q31_t)0xd7c48ee, (q31_t)0xd8b3deeb, (q31_t)0xd74929a, (q31_t)0xd8bdcad0, (q31_t)0xd6cde39, (q31_t)0xd8c7b838, (q31_t)0xd652bcb, (q31_t)0xd8d1a724, (q31_t)0xd5d7b50, (q31_t)0xd8db9792, (q31_t)0xd55ccca, (q31_t)0xd8e58982, (q31_t)0xd4e2037, (q31_t)0xd8ef7cf4, (q31_t)0xd467599, (q31_t)0xd8f971e8, (q31_t)0xd3eccef, (q31_t)0xd903685d, (q31_t)0xd37263a, (q31_t)0xd90d6053, (q31_t)0xd2f817b, (q31_t)0xd91759c9, (q31_t)0xd27deb0, (q31_t)0xd92154bf, (q31_t)0xd203ddc, (q31_t)0xd92b5135, (q31_t)0xd189efe, (q31_t)0xd9354f2a, (q31_t)0xd110216, (q31_t)0xd93f4e9e, (q31_t)0xd096725, (q31_t)0xd9494f90, (q31_t)0xd01ce2b, (q31_t)0xd9535201, (q31_t)0xcfa3729, (q31_t)0xd95d55ef, (q31_t)0xcf2a21d, (q31_t)0xd9675b5a, (q31_t)0xceb0f0a, (q31_t)0xd9716243, (q31_t)0xce37def, (q31_t)0xd97b6aa8, (q31_t)0xcdbeecc, (q31_t)0xd9857489, (q31_t)0xcd461a2, (q31_t)0xd98f7fe6, (q31_t)0xcccd671, (q31_t)0xd9998cbe, (q31_t)0xcc54d3a, (q31_t)0xd9a39b11, (q31_t)0xcbdc5fc, (q31_t)0xd9adaadf, (q31_t)0xcb640b8, (q31_t)0xd9b7bc27, (q31_t)0xcaebd6e, (q31_t)0xd9c1cee9, (q31_t)0xca73c1e, (q31_t)0xd9cbe325, (q31_t)0xc9fbcca, (q31_t)0xd9d5f8d9, (q31_t)0xc983f70, (q31_t)0xd9e01006, (q31_t)0xc90c412, (q31_t)0xd9ea28ac, (q31_t)0xc894aaf, (q31_t)0xd9f442c9, (q31_t)0xc81d349, (q31_t)0xd9fe5e5e, (q31_t)0xc7a5dde, (q31_t)0xda087b69, (q31_t)0xc72ea70, (q31_t)0xda1299ec, (q31_t)0xc6b78ff, (q31_t)0xda1cb9e5, (q31_t)0xc64098b, (q31_t)0xda26db54, (q31_t)0xc5c9c14, (q31_t)0xda30fe38, (q31_t)0xc55309b, (q31_t)0xda3b2292, (q31_t)0xc4dc720, (q31_t)0xda454860, (q31_t)0xc465fa3, (q31_t)0xda4f6fa3, (q31_t)0xc3efa25, (q31_t)0xda599859, (q31_t)0xc3796a5, (q31_t)0xda63c284, (q31_t)0xc303524, (q31_t)0xda6dee21, (q31_t)0xc28d5a3, (q31_t)0xda781b31, (q31_t)0xc217822, (q31_t)0xda8249b4, (q31_t)0xc1a1ca0, (q31_t)0xda8c79a9, (q31_t)0xc12c31f, (q31_t)0xda96ab0f, (q31_t)0xc0b6b9e, (q31_t)0xdaa0dde7, (q31_t)0xc04161e, (q31_t)0xdaab122f, (q31_t)0xbfcc29f, (q31_t)0xdab547e8, (q31_t)0xbf57121, (q31_t)0xdabf7f11, (q31_t)0xbee21a5, (q31_t)0xdac9b7a9, (q31_t)0xbe6d42b, (q31_t)0xdad3f1b1, (q31_t)0xbdf88b3, (q31_t)0xdade2d28, (q31_t)0xbd83f3d, (q31_t)0xdae86a0d, (q31_t)0xbd0f7ca, (q31_t)0xdaf2a860, (q31_t)0xbc9b25a, (q31_t)0xdafce821, (q31_t)0xbc26eee, (q31_t)0xdb072950, (q31_t)0xbbb2d85, (q31_t)0xdb116beb, (q31_t)0xbb3ee20, (q31_t)0xdb1baff2, (q31_t)0xbacb0bf, (q31_t)0xdb25f566, (q31_t)0xba57563, (q31_t)0xdb303c46, (q31_t)0xb9e3c0b, (q31_t)0xdb3a8491, (q31_t)0xb9704b9, (q31_t)0xdb44ce46, (q31_t)0xb8fcf6b, (q31_t)0xdb4f1967, (q31_t)0xb889c23, (q31_t)0xdb5965f1, (q31_t)0xb816ae1, (q31_t)0xdb63b3e5, (q31_t)0xb7a3ba5, (q31_t)0xdb6e0342, (q31_t)0xb730e70, (q31_t)0xdb785409, (q31_t)0xb6be341, (q31_t)0xdb82a638, (q31_t)0xb64ba19, (q31_t)0xdb8cf9cf, (q31_t)0xb5d92f8, (q31_t)0xdb974ece, (q31_t)0xb566ddf, (q31_t)0xdba1a534, (q31_t)0xb4f4acd, (q31_t)0xdbabfd01, (q31_t)0xb4829c4, (q31_t)0xdbb65634, (q31_t)0xb410ac3, (q31_t)0xdbc0b0ce, (q31_t)0xb39edca, (q31_t)0xdbcb0cce, (q31_t)0xb32d2da, (q31_t)0xdbd56a32, (q31_t)0xb2bb9f4, (q31_t)0xdbdfc8fc, (q31_t)0xb24a316, (q31_t)0xdbea292b, (q31_t)0xb1d8e43, (q31_t)0xdbf48abd, (q31_t)0xb167b79, (q31_t)0xdbfeedb3, (q31_t)0xb0f6aba, (q31_t)0xdc09520d, (q31_t)0xb085c05, (q31_t)0xdc13b7c9, (q31_t)0xb014f5b, (q31_t)0xdc1e1ee9, (q31_t)0xafa44bc, (q31_t)0xdc28876a, (q31_t)0xaf33c28, (q31_t)0xdc32f14d, (q31_t)0xaec35a0, (q31_t)0xdc3d5c91, (q31_t)0xae53123, (q31_t)0xdc47c936, (q31_t)0xade2eb3, (q31_t)0xdc52373c, (q31_t)0xad72e4f, (q31_t)0xdc5ca6a2, (q31_t)0xad02ff8, (q31_t)0xdc671768, (q31_t)0xac933ae, (q31_t)0xdc71898d, (q31_t)0xac23971, (q31_t)0xdc7bfd11, (q31_t)0xabb4141, (q31_t)0xdc8671f3, (q31_t)0xab44b1f, (q31_t)0xdc90e834, (q31_t)0xaad570c, (q31_t)0xdc9b5fd2, (q31_t)0xaa66506, (q31_t)0xdca5d8cd, (q31_t)0xa9f750f, (q31_t)0xdcb05326, (q31_t)0xa988727, (q31_t)0xdcbacedb, (q31_t)0xa919b4e, (q31_t)0xdcc54bec, (q31_t)0xa8ab184, (q31_t)0xdccfca59, (q31_t)0xa83c9ca, (q31_t)0xdcda4a21, (q31_t)0xa7ce420, (q31_t)0xdce4cb44, (q31_t)0xa760086, (q31_t)0xdcef4dc2, (q31_t)0xa6f1efc, (q31_t)0xdcf9d199, (q31_t)0xa683f83, (q31_t)0xdd0456ca, (q31_t)0xa61621b, (q31_t)0xdd0edd55, (q31_t)0xa5a86c4, (q31_t)0xdd196538, (q31_t)0xa53ad7e, (q31_t)0xdd23ee74, (q31_t)0xa4cd64b, (q31_t)0xdd2e7908, (q31_t)0xa460129, (q31_t)0xdd3904f4, (q31_t)0xa3f2e19, (q31_t)0xdd439236, (q31_t)0xa385d1d, (q31_t)0xdd4e20d0, (q31_t)0xa318e32, (q31_t)0xdd58b0c0, (q31_t)0xa2ac15b, (q31_t)0xdd634206, (q31_t)0xa23f698, (q31_t)0xdd6dd4a2, (q31_t)0xa1d2de7, (q31_t)0xdd786892, (q31_t)0xa16674b, (q31_t)0xdd82fdd8, (q31_t)0xa0fa2c3, (q31_t)0xdd8d9472, (q31_t)0xa08e04f, (q31_t)0xdd982c60, (q31_t)0xa021fef, (q31_t)0xdda2c5a2, (q31_t)0x9fb61a5, (q31_t)0xddad6036, (q31_t)0x9f4a570, (q31_t)0xddb7fc1e, (q31_t)0x9edeb50, (q31_t)0xddc29958, (q31_t)0x9e73346, (q31_t)0xddcd37e4, (q31_t)0x9e07d51, (q31_t)0xddd7d7c1, (q31_t)0x9d9c973, (q31_t)0xdde278ef, (q31_t)0x9d317ab, (q31_t)0xdded1b6e, (q31_t)0x9cc67fa, (q31_t)0xddf7bf3e, (q31_t)0x9c5ba60, (q31_t)0xde02645d, (q31_t)0x9bf0edd, (q31_t)0xde0d0acc, (q31_t)0x9b86572, (q31_t)0xde17b28a, (q31_t)0x9b1be1e, (q31_t)0xde225b96, (q31_t)0x9ab18e3, (q31_t)0xde2d05f1, (q31_t)0x9a475bf, (q31_t)0xde37b199, (q31_t)0x99dd4b4, (q31_t)0xde425e8f, (q31_t)0x99735c2, (q31_t)0xde4d0cd2, (q31_t)0x99098e9, (q31_t)0xde57bc62, (q31_t)0x989fe29, (q31_t)0xde626d3e, (q31_t)0x9836582, (q31_t)0xde6d1f65, (q31_t)0x97ccef5, (q31_t)0xde77d2d8, (q31_t)0x9763a83, (q31_t)0xde828796, (q31_t)0x96fa82a, (q31_t)0xde8d3d9e, (q31_t)0x96917ec, (q31_t)0xde97f4f1, (q31_t)0x96289c9, (q31_t)0xdea2ad8d, (q31_t)0x95bfdc1, (q31_t)0xdead6773, (q31_t)0x95573d4, (q31_t)0xdeb822a1, (q31_t)0x94eec03, (q31_t)0xdec2df18, (q31_t)0x948664d, (q31_t)0xdecd9cd7, (q31_t)0x941e2b4, (q31_t)0xded85bdd, (q31_t)0x93b6137, (q31_t)0xdee31c2b, (q31_t)0x934e1d6, (q31_t)0xdeedddc0, (q31_t)0x92e6492, (q31_t)0xdef8a09b, (q31_t)0x927e96b, (q31_t)0xdf0364bc, (q31_t)0x9217062, (q31_t)0xdf0e2a22, (q31_t)0x91af976, (q31_t)0xdf18f0ce, (q31_t)0x91484a8, (q31_t)0xdf23b8be, (q31_t)0x90e11f7, (q31_t)0xdf2e81f3, (q31_t)0x907a166, (q31_t)0xdf394c6b, (q31_t)0x90132f2, (q31_t)0xdf441828, (q31_t)0x8fac69e, (q31_t)0xdf4ee527, (q31_t)0x8f45c68, (q31_t)0xdf59b369, (q31_t)0x8edf452, (q31_t)0xdf6482ed, (q31_t)0x8e78e5b, (q31_t)0xdf6f53b3, (q31_t)0x8e12a84, (q31_t)0xdf7a25ba, (q31_t)0x8dac8cd, (q31_t)0xdf84f902, (q31_t)0x8d46936, (q31_t)0xdf8fcd8b, (q31_t)0x8ce0bc0, (q31_t)0xdf9aa354, (q31_t)0x8c7b06b, (q31_t)0xdfa57a5d, (q31_t)0x8c15736, (q31_t)0xdfb052a5, (q31_t)0x8bb0023, (q31_t)0xdfbb2c2c, (q31_t)0x8b4ab32, (q31_t)0xdfc606f1, (q31_t)0x8ae5862, (q31_t)0xdfd0e2f5, (q31_t)0x8a807b4, (q31_t)0xdfdbc036, (q31_t)0x8a1b928, (q31_t)0xdfe69eb4, (q31_t)0x89b6cbf, (q31_t)0xdff17e70, (q31_t)0x8952278, (q31_t)0xdffc5f67, (q31_t)0x88eda54, (q31_t)0xe007419b, (q31_t)0x8889454, (q31_t)0xe012250a, (q31_t)0x8825077, (q31_t)0xe01d09b4, (q31_t)0x87c0ebd, (q31_t)0xe027ef99, (q31_t)0x875cf28, (q31_t)0xe032d6b8, (q31_t)0x86f91b7, (q31_t)0xe03dbf11, (q31_t)0x869566a, (q31_t)0xe048a8a4, (q31_t)0x8631d42, (q31_t)0xe053936f, (q31_t)0x85ce63e, (q31_t)0xe05e7f74, (q31_t)0x856b160, (q31_t)0xe0696cb0, (q31_t)0x8507ea7, (q31_t)0xe0745b24, (q31_t)0x84a4e14, (q31_t)0xe07f4acf, (q31_t)0x8441fa6, (q31_t)0xe08a3bb2, (q31_t)0x83df35f, (q31_t)0xe0952dcb, (q31_t)0x837c93e, (q31_t)0xe0a0211a, (q31_t)0x831a143, (q31_t)0xe0ab159e, (q31_t)0x82b7b70, (q31_t)0xe0b60b58, (q31_t)0x82557c3, (q31_t)0xe0c10247, (q31_t)0x81f363d, (q31_t)0xe0cbfa6a, (q31_t)0x81916df, (q31_t)0xe0d6f3c1, (q31_t)0x812f9a9, (q31_t)0xe0e1ee4b, (q31_t)0x80cde9b, (q31_t)0xe0ecea09, (q31_t)0x806c5b5, (q31_t)0xe0f7e6f9, (q31_t)0x800aef7, (q31_t)0xe102e51c, (q31_t)0x7fa9a62, (q31_t)0xe10de470, (q31_t)0x7f487f6, (q31_t)0xe118e4f6, (q31_t)0x7ee77b3, (q31_t)0xe123e6ad, (q31_t)0x7e8699a, (q31_t)0xe12ee995, (q31_t)0x7e25daa, (q31_t)0xe139edac, (q31_t)0x7dc53e3, (q31_t)0xe144f2f3, (q31_t)0x7d64c47, (q31_t)0xe14ff96a, (q31_t)0x7d046d6, (q31_t)0xe15b0110, (q31_t)0x7ca438f, (q31_t)0xe16609e3, (q31_t)0x7c44272, (q31_t)0xe17113e5, (q31_t)0x7be4381, (q31_t)0xe17c1f15, (q31_t)0x7b846ba, (q31_t)0xe1872b72, (q31_t)0x7b24c20, (q31_t)0xe19238fb, (q31_t)0x7ac53b1, (q31_t)0xe19d47b1, (q31_t)0x7a65d6e, (q31_t)0xe1a85793, (q31_t)0x7a06957, (q31_t)0xe1b368a0, (q31_t)0x79a776c, (q31_t)0xe1be7ad8, (q31_t)0x79487ae, (q31_t)0xe1c98e3b, (q31_t)0x78e9a1d, (q31_t)0xe1d4a2c8, (q31_t)0x788aeb9, (q31_t)0xe1dfb87f, (q31_t)0x782c582, (q31_t)0xe1eacf5f, (q31_t)0x77cde79, (q31_t)0xe1f5e768, (q31_t)0x776f99d, (q31_t)0xe2010099, (q31_t)0x77116f0, (q31_t)0xe20c1af3, (q31_t)0x76b3671, (q31_t)0xe2173674, (q31_t)0x7655820, (q31_t)0xe222531c, (q31_t)0x75f7bfe, (q31_t)0xe22d70eb, (q31_t)0x759a20a, (q31_t)0xe2388fe1, (q31_t)0x753ca46, (q31_t)0xe243affc, (q31_t)0x74df4b1, (q31_t)0xe24ed13d, (q31_t)0x748214c, (q31_t)0xe259f3a3, (q31_t)0x7425016, (q31_t)0xe265172e, (q31_t)0x73c8111, (q31_t)0xe2703bdc, (q31_t)0x736b43c, (q31_t)0xe27b61af, (q31_t)0x730e997, (q31_t)0xe28688a4, (q31_t)0x72b2123, (q31_t)0xe291b0bd, (q31_t)0x7255ae0, (q31_t)0xe29cd9f8, (q31_t)0x71f96ce, (q31_t)0xe2a80456, (q31_t)0x719d4ed, (q31_t)0xe2b32fd4, (q31_t)0x714153e, (q31_t)0xe2be5c74, (q31_t)0x70e57c0, (q31_t)0xe2c98a35, (q31_t)0x7089c75, (q31_t)0xe2d4b916, (q31_t)0x702e35c, (q31_t)0xe2dfe917, (q31_t)0x6fd2c75, (q31_t)0xe2eb1a37, (q31_t)0x6f777c1, (q31_t)0xe2f64c77, (q31_t)0x6f1c540, (q31_t)0xe3017fd5, (q31_t)0x6ec14f2, (q31_t)0xe30cb451, (q31_t)0x6e666d7, (q31_t)0xe317e9eb, (q31_t)0x6e0baf0, (q31_t)0xe32320a2, (q31_t)0x6db113d, (q31_t)0xe32e5876, (q31_t)0x6d569be, (q31_t)0xe3399167, (q31_t)0x6cfc472, (q31_t)0xe344cb73, (q31_t)0x6ca215c, (q31_t)0xe350069b, (q31_t)0x6c4807a, (q31_t)0xe35b42df, (q31_t)0x6bee1cd, (q31_t)0xe366803c, (q31_t)0x6b94554, (q31_t)0xe371beb5, (q31_t)0x6b3ab12, (q31_t)0xe37cfe47, (q31_t)0x6ae1304, (q31_t)0xe3883ef2, (q31_t)0x6a87d2d, (q31_t)0xe39380b6, (q31_t)0x6a2e98b, (q31_t)0xe39ec393, (q31_t)0x69d5820, (q31_t)0xe3aa0788, (q31_t)0x697c8eb, (q31_t)0xe3b54c95, (q31_t)0x6923bec, (q31_t)0xe3c092b9, (q31_t)0x68cb124, (q31_t)0xe3cbd9f4, (q31_t)0x6872894, (q31_t)0xe3d72245, (q31_t)0x681a23a, (q31_t)0xe3e26bac, (q31_t)0x67c1e18, (q31_t)0xe3edb628, (q31_t)0x6769c2e, (q31_t)0xe3f901ba, (q31_t)0x6711c7b, (q31_t)0xe4044e60, (q31_t)0x66b9f01, (q31_t)0xe40f9c1a, (q31_t)0x66623be, (q31_t)0xe41aeae8, (q31_t)0x660aab5, (q31_t)0xe4263ac9, (q31_t)0x65b33e4, (q31_t)0xe4318bbe, (q31_t)0x655bf4c, (q31_t)0xe43cddc4, (q31_t)0x6504ced, (q31_t)0xe44830dd, (q31_t)0x64adcc7, (q31_t)0xe4538507, (q31_t)0x6456edb, (q31_t)0xe45eda43, (q31_t)0x6400329, (q31_t)0xe46a308f, (q31_t)0x63a99b1, (q31_t)0xe47587eb, (q31_t)0x6353273, (q31_t)0xe480e057, (q31_t)0x62fcd6f, (q31_t)0xe48c39d3, (q31_t)0x62a6aa6, (q31_t)0xe497945d, (q31_t)0x6250a18, (q31_t)0xe4a2eff6, (q31_t)0x61fabc4, (q31_t)0xe4ae4c9d, (q31_t)0x61a4fac, (q31_t)0xe4b9aa52, (q31_t)0x614f5cf, (q31_t)0xe4c50914, (q31_t)0x60f9e2e, (q31_t)0xe4d068e2, (q31_t)0x60a48c9, (q31_t)0xe4dbc9bd, (q31_t)0x604f5a0, (q31_t)0xe4e72ba4, (q31_t)0x5ffa4b3, (q31_t)0xe4f28e96, (q31_t)0x5fa5603, (q31_t)0xe4fdf294, (q31_t)0x5f5098f, (q31_t)0xe509579b, (q31_t)0x5efbf58, (q31_t)0xe514bdad, (q31_t)0x5ea775e, (q31_t)0xe52024c9, (q31_t)0x5e531a1, (q31_t)0xe52b8cee, (q31_t)0x5dfee22, (q31_t)0xe536f61b, (q31_t)0x5daace1, (q31_t)0xe5426051, (q31_t)0x5d56ddd, (q31_t)0xe54dcb8f, (q31_t)0x5d03118, (q31_t)0xe55937d5, (q31_t)0x5caf690, (q31_t)0xe564a521, (q31_t)0x5c5be47, (q31_t)0xe5701374, (q31_t)0x5c0883d, (q31_t)0xe57b82cd, (q31_t)0x5bb5472, (q31_t)0xe586f32c, (q31_t)0x5b622e6, (q31_t)0xe5926490, (q31_t)0x5b0f399, (q31_t)0xe59dd6f9, (q31_t)0x5abc68c, (q31_t)0xe5a94a67, (q31_t)0x5a69bbe, (q31_t)0xe5b4bed8, (q31_t)0x5a17330, (q31_t)0xe5c0344d, (q31_t)0x59c4ce3, (q31_t)0xe5cbaac5, (q31_t)0x59728d5, (q31_t)0xe5d72240, (q31_t)0x5920708, (q31_t)0xe5e29abc, (q31_t)0x58ce77c, (q31_t)0xe5ee143b, (q31_t)0x587ca31, (q31_t)0xe5f98ebb, (q31_t)0x582af26, (q31_t)0xe6050a3b, (q31_t)0x57d965d, (q31_t)0xe61086bc, (q31_t)0x5787fd6, (q31_t)0xe61c043d, (q31_t)0x5736b90, (q31_t)0xe62782be, (q31_t)0x56e598c, (q31_t)0xe633023e, (q31_t)0x56949ca, (q31_t)0xe63e82bc, (q31_t)0x5643c4a, (q31_t)0xe64a0438, (q31_t)0x55f310d, (q31_t)0xe65586b3, (q31_t)0x55a2812, (q31_t)0xe6610a2a, (q31_t)0x555215a, (q31_t)0xe66c8e9f, (q31_t)0x5501ce5, (q31_t)0xe6781410, (q31_t)0x54b1ab4, (q31_t)0xe6839a7c, (q31_t)0x5461ac6, (q31_t)0xe68f21e5, (q31_t)0x5411d1b, (q31_t)0xe69aaa48, (q31_t)0x53c21b4, (q31_t)0xe6a633a6, (q31_t)0x5372891, (q31_t)0xe6b1bdff, (q31_t)0x53231b3, (q31_t)0xe6bd4951, (q31_t)0x52d3d18, (q31_t)0xe6c8d59c, (q31_t)0x5284ac3, (q31_t)0xe6d462e1, (q31_t)0x5235ab2, (q31_t)0xe6dff11d, (q31_t)0x51e6ce6, (q31_t)0xe6eb8052, (q31_t)0x519815f, (q31_t)0xe6f7107e, (q31_t)0x514981d, (q31_t)0xe702a1a1, (q31_t)0x50fb121, (q31_t)0xe70e33bb, (q31_t)0x50acc6b, (q31_t)0xe719c6cb, (q31_t)0x505e9fb, (q31_t)0xe7255ad1, (q31_t)0x50109d0, (q31_t)0xe730efcc, (q31_t)0x4fc2bec, (q31_t)0xe73c85bc, (q31_t)0x4f7504e, (q31_t)0xe7481ca1, (q31_t)0x4f276f7, (q31_t)0xe753b479, (q31_t)0x4ed9fe7, (q31_t)0xe75f4d45, (q31_t)0x4e8cb1e, (q31_t)0xe76ae704, (q31_t)0x4e3f89c, (q31_t)0xe77681b6, (q31_t)0x4df2862, (q31_t)0xe7821d59, (q31_t)0x4da5a6f, (q31_t)0xe78db9ef, (q31_t)0x4d58ec3, (q31_t)0xe7995776, (q31_t)0x4d0c560, (q31_t)0xe7a4f5ed, (q31_t)0x4cbfe45, (q31_t)0xe7b09555, (q31_t)0x4c73972, (q31_t)0xe7bc35ad, (q31_t)0x4c276e8, (q31_t)0xe7c7d6f4, (q31_t)0x4bdb6a6, (q31_t)0xe7d3792b, (q31_t)0x4b8f8ad, (q31_t)0xe7df1c50, (q31_t)0x4b43cfd, (q31_t)0xe7eac063, (q31_t)0x4af8397, (q31_t)0xe7f66564, (q31_t)0x4aacc7a, (q31_t)0xe8020b52, (q31_t)0x4a617a6, (q31_t)0xe80db22d, (q31_t)0x4a1651c, (q31_t)0xe81959f4, (q31_t)0x49cb4dd, (q31_t)0xe82502a7, (q31_t)0x49806e7, (q31_t)0xe830ac45, (q31_t)0x4935b3c, (q31_t)0xe83c56cf, (q31_t)0x48eb1db, (q31_t)0xe8480243, (q31_t)0x48a0ac4, (q31_t)0xe853aea1, (q31_t)0x48565f9, (q31_t)0xe85f5be9, (q31_t)0x480c379, (q31_t)0xe86b0a1a, (q31_t)0x47c2344, (q31_t)0xe876b934, (q31_t)0x477855a, (q31_t)0xe8826936, (q31_t)0x472e9bc, (q31_t)0xe88e1a20, (q31_t)0x46e5069, (q31_t)0xe899cbf1, (q31_t)0x469b963, (q31_t)0xe8a57ea9, (q31_t)0x46524a9, (q31_t)0xe8b13248, (q31_t)0x460923b, (q31_t)0xe8bce6cd, (q31_t)0x45c0219, (q31_t)0xe8c89c37, (q31_t)0x4577444, (q31_t)0xe8d45286, (q31_t)0x452e8bc, (q31_t)0xe8e009ba, (q31_t)0x44e5f80, (q31_t)0xe8ebc1d3, (q31_t)0x449d892, (q31_t)0xe8f77acf, (q31_t)0x44553f2, (q31_t)0xe90334af, (q31_t)0x440d19e, (q31_t)0xe90eef71, (q31_t)0x43c5199, (q31_t)0xe91aab16, (q31_t)0x437d3e1, (q31_t)0xe926679c, (q31_t)0x4335877, (q31_t)0xe9322505, (q31_t)0x42edf5c, (q31_t)0xe93de34e, (q31_t)0x42a688f, (q31_t)0xe949a278, (q31_t)0x425f410, (q31_t)0xe9556282, (q31_t)0x42181e0, (q31_t)0xe961236c, (q31_t)0x41d11ff, (q31_t)0xe96ce535, (q31_t)0x418a46d, (q31_t)0xe978a7dd, (q31_t)0x414392b, (q31_t)0xe9846b63, (q31_t)0x40fd037, (q31_t)0xe9902fc7, (q31_t)0x40b6994, (q31_t)0xe99bf509, (q31_t)0x4070540, (q31_t)0xe9a7bb28, (q31_t)0x402a33c, (q31_t)0xe9b38223, (q31_t)0x3fe4388, (q31_t)0xe9bf49fa, (q31_t)0x3f9e624, (q31_t)0xe9cb12ad, (q31_t)0x3f58b10, (q31_t)0xe9d6dc3b, (q31_t)0x3f1324e, (q31_t)0xe9e2a6a3, (q31_t)0x3ecdbdc, (q31_t)0xe9ee71e6, (q31_t)0x3e887bb, (q31_t)0xe9fa3e03, (q31_t)0x3e435ea, (q31_t)0xea060af9, (q31_t)0x3dfe66c, (q31_t)0xea11d8c8, (q31_t)0x3db993e, (q31_t)0xea1da770, (q31_t)0x3d74e62, (q31_t)0xea2976ef, (q31_t)0x3d305d8, (q31_t)0xea354746, (q31_t)0x3cebfa0, (q31_t)0xea411874, (q31_t)0x3ca7bba, (q31_t)0xea4cea79, (q31_t)0x3c63a26, (q31_t)0xea58bd54, (q31_t)0x3c1fae5, (q31_t)0xea649105, (q31_t)0x3bdbdf6, (q31_t)0xea70658a, (q31_t)0x3b9835a, (q31_t)0xea7c3ae5, (q31_t)0x3b54b11, (q31_t)0xea881114, (q31_t)0x3b1151b, (q31_t)0xea93e817, (q31_t)0x3ace178, (q31_t)0xea9fbfed, (q31_t)0x3a8b028, (q31_t)0xeaab9896, (q31_t)0x3a4812c, (q31_t)0xeab77212, (q31_t)0x3a05484, (q31_t)0xeac34c60, (q31_t)0x39c2a2f, (q31_t)0xeacf277f, (q31_t)0x398022f, (q31_t)0xeadb0370, (q31_t)0x393dc82, (q31_t)0xeae6e031, (q31_t)0x38fb92a, (q31_t)0xeaf2bdc3, (q31_t)0x38b9827, (q31_t)0xeafe9c24, (q31_t)0x3877978, (q31_t)0xeb0a7b54, (q31_t)0x3835d1e, (q31_t)0xeb165b54, (q31_t)0x37f4319, (q31_t)0xeb223c22, (q31_t)0x37b2b6a, (q31_t)0xeb2e1dbe, (q31_t)0x377160f, (q31_t)0xeb3a0027, (q31_t)0x373030a, (q31_t)0xeb45e35d, (q31_t)0x36ef25b, (q31_t)0xeb51c760, (q31_t)0x36ae401, (q31_t)0xeb5dac2f, (q31_t)0x366d7fd, (q31_t)0xeb6991ca, (q31_t)0x362ce50, (q31_t)0xeb75782f, (q31_t)0x35ec6f8, (q31_t)0xeb815f60, (q31_t)0x35ac1f7, (q31_t)0xeb8d475b, (q31_t)0x356bf4d, (q31_t)0xeb99301f, (q31_t)0x352bef9, (q31_t)0xeba519ad, (q31_t)0x34ec0fc, (q31_t)0xebb10404, (q31_t)0x34ac556, (q31_t)0xebbcef23, (q31_t)0x346cc07, (q31_t)0xebc8db0b, (q31_t)0x342d510, (q31_t)0xebd4c7ba, (q31_t)0x33ee070, (q31_t)0xebe0b52f, (q31_t)0x33aee27, (q31_t)0xebeca36c, (q31_t)0x336fe37, (q31_t)0xebf8926f, (q31_t)0x333109e, (q31_t)0xec048237, (q31_t)0x32f255e, (q31_t)0xec1072c4, (q31_t)0x32b3c75, (q31_t)0xec1c6417, (q31_t)0x32755e5, (q31_t)0xec28562d, (q31_t)0x32371ae, (q31_t)0xec344908, (q31_t)0x31f8fcf, (q31_t)0xec403ca5, (q31_t)0x31bb049, (q31_t)0xec4c3106, (q31_t)0x317d31c, (q31_t)0xec582629, (q31_t)0x313f848, (q31_t)0xec641c0e, (q31_t)0x3101fce, (q31_t)0xec7012b5, (q31_t)0x30c49ad, (q31_t)0xec7c0a1d, (q31_t)0x30875e5, (q31_t)0xec880245, (q31_t)0x304a477, (q31_t)0xec93fb2e, (q31_t)0x300d563, (q31_t)0xec9ff4d6, (q31_t)0x2fd08a9, (q31_t)0xecabef3d, (q31_t)0x2f93e4a, (q31_t)0xecb7ea63, (q31_t)0x2f57644, (q31_t)0xecc3e648, (q31_t)0x2f1b099, (q31_t)0xeccfe2ea, (q31_t)0x2eded49, (q31_t)0xecdbe04a, (q31_t)0x2ea2c53, (q31_t)0xece7de66, (q31_t)0x2e66db8, (q31_t)0xecf3dd3f, (q31_t)0x2e2b178, (q31_t)0xecffdcd4, (q31_t)0x2def794, (q31_t)0xed0bdd25, (q31_t)0x2db400a, (q31_t)0xed17de31, (q31_t)0x2d78add, (q31_t)0xed23dff7, (q31_t)0x2d3d80a, (q31_t)0xed2fe277, (q31_t)0x2d02794, (q31_t)0xed3be5b1, (q31_t)0x2cc7979, (q31_t)0xed47e9a5, (q31_t)0x2c8cdbb, (q31_t)0xed53ee51, (q31_t)0x2c52459, (q31_t)0xed5ff3b5, (q31_t)0x2c17d52, (q31_t)0xed6bf9d1, (q31_t)0x2bdd8a9, (q31_t)0xed7800a5, (q31_t)0x2ba365c, (q31_t)0xed84082f, (q31_t)0x2b6966c, (q31_t)0xed901070, (q31_t)0x2b2f8d8, (q31_t)0xed9c1967, (q31_t)0x2af5da2, (q31_t)0xeda82313, (q31_t)0x2abc4c9, (q31_t)0xedb42d74, (q31_t)0x2a82e4d, (q31_t)0xedc0388a, (q31_t)0x2a49a2e, (q31_t)0xedcc4454, (q31_t)0x2a1086d, (q31_t)0xedd850d2, (q31_t)0x29d790a, (q31_t)0xede45e03, (q31_t)0x299ec05, (q31_t)0xedf06be6, (q31_t)0x296615d, (q31_t)0xedfc7a7c, (q31_t)0x292d914, (q31_t)0xee0889c4, (q31_t)0x28f5329, (q31_t)0xee1499bd, (q31_t)0x28bcf9c, (q31_t)0xee20aa67, (q31_t)0x2884e6e, (q31_t)0xee2cbbc1, (q31_t)0x284cf9f, (q31_t)0xee38cdcb, (q31_t)0x281532e, (q31_t)0xee44e084, (q31_t)0x27dd91c, (q31_t)0xee50f3ed, (q31_t)0x27a616a, (q31_t)0xee5d0804, (q31_t)0x276ec16, (q31_t)0xee691cc9, (q31_t)0x2737922, (q31_t)0xee75323c, (q31_t)0x270088e, (q31_t)0xee81485c, (q31_t)0x26c9a58, (q31_t)0xee8d5f29, (q31_t)0x2692e83, (q31_t)0xee9976a1, (q31_t)0x265c50e, (q31_t)0xeea58ec6, (q31_t)0x2625df8, (q31_t)0xeeb1a796, (q31_t)0x25ef943, (q31_t)0xeebdc110, (q31_t)0x25b96ee, (q31_t)0xeec9db35, (q31_t)0x25836f9, (q31_t)0xeed5f604, (q31_t)0x254d965, (q31_t)0xeee2117c, (q31_t)0x2517e31, (q31_t)0xeeee2d9d, (q31_t)0x24e255e, (q31_t)0xeefa4a67, (q31_t)0x24aceed, (q31_t)0xef0667d9, (q31_t)0x2477adc, (q31_t)0xef1285f2, (q31_t)0x244292c, (q31_t)0xef1ea4b2, (q31_t)0x240d9de, (q31_t)0xef2ac419, (q31_t)0x23d8cf1, (q31_t)0xef36e426, (q31_t)0x23a4265, (q31_t)0xef4304d8, (q31_t)0x236fa3b, (q31_t)0xef4f2630, (q31_t)0x233b473, (q31_t)0xef5b482d, (q31_t)0x230710d, (q31_t)0xef676ace, (q31_t)0x22d3009, (q31_t)0xef738e12, (q31_t)0x229f167, (q31_t)0xef7fb1fa, (q31_t)0x226b528, (q31_t)0xef8bd685, (q31_t)0x2237b4b, (q31_t)0xef97fbb2, (q31_t)0x22043d0, (q31_t)0xefa42181, (q31_t)0x21d0eb8, (q31_t)0xefb047f2, (q31_t)0x219dc03, (q31_t)0xefbc6f03, (q31_t)0x216abb1, (q31_t)0xefc896b5, (q31_t)0x2137dc2, (q31_t)0xefd4bf08, (q31_t)0x2105236, (q31_t)0xefe0e7f9, (q31_t)0x20d290d, (q31_t)0xefed118a, (q31_t)0x20a0248, (q31_t)0xeff93bba, (q31_t)0x206dde6, (q31_t)0xf0056687, (q31_t)0x203bbe8, (q31_t)0xf01191f3, (q31_t)0x2009c4e, (q31_t)0xf01dbdfb, (q31_t)0x1fd7f17, (q31_t)0xf029eaa1, (q31_t)0x1fa6445, (q31_t)0xf03617e2, (q31_t)0x1f74bd6, (q31_t)0xf04245c0, (q31_t)0x1f435cc, (q31_t)0xf04e7438, (q31_t)0x1f12227, (q31_t)0xf05aa34c, (q31_t)0x1ee10e5, (q31_t)0xf066d2fa, (q31_t)0x1eb0209, (q31_t)0xf0730342, (q31_t)0x1e7f591, (q31_t)0xf07f3424, (q31_t)0x1e4eb7e, (q31_t)0xf08b659f, (q31_t)0x1e1e3d0, (q31_t)0xf09797b2, (q31_t)0x1dede87, (q31_t)0xf0a3ca5d, (q31_t)0x1dbdba3, (q31_t)0xf0affda0, (q31_t)0x1d8db25, (q31_t)0xf0bc317a, (q31_t)0x1d5dd0c, (q31_t)0xf0c865ea, (q31_t)0x1d2e158, (q31_t)0xf0d49af1, (q31_t)0x1cfe80a, (q31_t)0xf0e0d08d, (q31_t)0x1ccf122, (q31_t)0xf0ed06bf, (q31_t)0x1c9fca0, (q31_t)0xf0f93d86, (q31_t)0x1c70a84, (q31_t)0xf10574e0, (q31_t)0x1c41ace, (q31_t)0xf111accf, (q31_t)0x1c12d7e, (q31_t)0xf11de551, (q31_t)0x1be4294, (q31_t)0xf12a1e66, (q31_t)0x1bb5a11, (q31_t)0xf136580d, (q31_t)0x1b873f5, (q31_t)0xf1429247, (q31_t)0x1b5903f, (q31_t)0xf14ecd11, (q31_t)0x1b2aef0, (q31_t)0xf15b086d, (q31_t)0x1afd007, (q31_t)0xf1674459, (q31_t)0x1acf386, (q31_t)0xf17380d6, (q31_t)0x1aa196c, (q31_t)0xf17fbde2, (q31_t)0x1a741b9, (q31_t)0xf18bfb7d, (q31_t)0x1a46c6e, (q31_t)0xf19839a6, (q31_t)0x1a1998a, (q31_t)0xf1a4785e, (q31_t)0x19ec90d, (q31_t)0xf1b0b7a4, (q31_t)0x19bfaf9, (q31_t)0xf1bcf777, (q31_t)0x1992f4c, (q31_t)0xf1c937d6, (q31_t)0x1966606, (q31_t)0xf1d578c2, (q31_t)0x1939f29, (q31_t)0xf1e1ba3a, (q31_t)0x190dab4, (q31_t)0xf1edfc3d, (q31_t)0x18e18a7, (q31_t)0xf1fa3ecb, (q31_t)0x18b5903, (q31_t)0xf20681e3, (q31_t)0x1889bc6, (q31_t)0xf212c585, (q31_t)0x185e0f3, (q31_t)0xf21f09b1, (q31_t)0x1832888, (q31_t)0xf22b4e66, (q31_t)0x1807285, (q31_t)0xf23793a3, (q31_t)0x17dbeec, (q31_t)0xf243d968, (q31_t)0x17b0dbb, (q31_t)0xf2501fb5, (q31_t)0x1785ef4, (q31_t)0xf25c6688, (q31_t)0x175b296, (q31_t)0xf268ade3, (q31_t)0x17308a1, (q31_t)0xf274f5c3, (q31_t)0x1706115, (q31_t)0xf2813e2a, (q31_t)0x16dbbf3, (q31_t)0xf28d8715, (q31_t)0x16b193a, (q31_t)0xf299d085, (q31_t)0x16878eb, (q31_t)0xf2a61a7a, (q31_t)0x165db05, (q31_t)0xf2b264f2, (q31_t)0x1633f8a, (q31_t)0xf2beafed, (q31_t)0x160a678, (q31_t)0xf2cafb6b, (q31_t)0x15e0fd1, (q31_t)0xf2d7476c, (q31_t)0x15b7b94, (q31_t)0xf2e393ef, (q31_t)0x158e9c1, (q31_t)0xf2efe0f2, (q31_t)0x1565a58, (q31_t)0xf2fc2e77, (q31_t)0x153cd5a, (q31_t)0xf3087c7d, (q31_t)0x15142c6, (q31_t)0xf314cb02, (q31_t)0x14eba9d, (q31_t)0xf3211a07, (q31_t)0x14c34df, (q31_t)0xf32d698a, (q31_t)0x149b18b, (q31_t)0xf339b98d, (q31_t)0x14730a3, (q31_t)0xf3460a0d, (q31_t)0x144b225, (q31_t)0xf3525b0b, (q31_t)0x1423613, (q31_t)0xf35eac86, (q31_t)0x13fbc6c, (q31_t)0xf36afe7e, (q31_t)0x13d4530, (q31_t)0xf37750f2, (q31_t)0x13ad060, (q31_t)0xf383a3e2, (q31_t)0x1385dfb, (q31_t)0xf38ff74d, (q31_t)0x135ee02, (q31_t)0xf39c4b32, (q31_t)0x1338075, (q31_t)0xf3a89f92, (q31_t)0x1311553, (q31_t)0xf3b4f46c, (q31_t)0x12eac9d, (q31_t)0xf3c149bf, (q31_t)0x12c4653, (q31_t)0xf3cd9f8b, (q31_t)0x129e276, (q31_t)0xf3d9f5cf, (q31_t)0x1278104, (q31_t)0xf3e64c8c, (q31_t)0x12521ff, (q31_t)0xf3f2a3bf, (q31_t)0x122c566, (q31_t)0xf3fefb6a, (q31_t)0x1206b39, (q31_t)0xf40b538b, (q31_t)0x11e1379, (q31_t)0xf417ac22, (q31_t)0x11bbe26, (q31_t)0xf424052f, (q31_t)0x1196b3f, (q31_t)0xf4305eb0, (q31_t)0x1171ac6, (q31_t)0xf43cb8a7, (q31_t)0x114ccb9, (q31_t)0xf4491311, (q31_t)0x1128119, (q31_t)0xf4556def, (q31_t)0x11037e6, (q31_t)0xf461c940, (q31_t)0x10df120, (q31_t)0xf46e2504, (q31_t)0x10bacc8, (q31_t)0xf47a8139, (q31_t)0x1096add, (q31_t)0xf486dde1, (q31_t)0x1072b5f, (q31_t)0xf4933afa, (q31_t)0x104ee4f, (q31_t)0xf49f9884, (q31_t)0x102b3ac, (q31_t)0xf4abf67e, (q31_t)0x1007b77, (q31_t)0xf4b854e7, (q31_t)0xfe45b0, (q31_t)0xf4c4b3c0, (q31_t)0xfc1257, (q31_t)0xf4d11308, (q31_t)0xf9e16b, (q31_t)0xf4dd72be, (q31_t)0xf7b2ee, (q31_t)0xf4e9d2e3, (q31_t)0xf586df, (q31_t)0xf4f63374, (q31_t)0xf35d3e, (q31_t)0xf5029473, (q31_t)0xf1360b, (q31_t)0xf50ef5de, (q31_t)0xef1147, (q31_t)0xf51b57b5, (q31_t)0xeceef1, (q31_t)0xf527b9f7, (q31_t)0xeacf09, (q31_t)0xf5341ca5, (q31_t)0xe8b190, (q31_t)0xf5407fbd, (q31_t)0xe69686, (q31_t)0xf54ce33f, (q31_t)0xe47deb, (q31_t)0xf559472b, (q31_t)0xe267be, (q31_t)0xf565ab80, (q31_t)0xe05401, (q31_t)0xf572103d, (q31_t)0xde42b2, (q31_t)0xf57e7563, (q31_t)0xdc33d2, (q31_t)0xf58adaf0, (q31_t)0xda2762, (q31_t)0xf59740e5, (q31_t)0xd81d61, (q31_t)0xf5a3a740, (q31_t)0xd615cf, (q31_t)0xf5b00e02, (q31_t)0xd410ad, (q31_t)0xf5bc7529, (q31_t)0xd20dfa, (q31_t)0xf5c8dcb6, (q31_t)0xd00db6, (q31_t)0xf5d544a7, (q31_t)0xce0fe3, (q31_t)0xf5e1acfd, (q31_t)0xcc147f, (q31_t)0xf5ee15b7, (q31_t)0xca1b8a, (q31_t)0xf5fa7ed4, (q31_t)0xc82506, (q31_t)0xf606e854, (q31_t)0xc630f2, (q31_t)0xf6135237, (q31_t)0xc43f4d, (q31_t)0xf61fbc7b, (q31_t)0xc25019, (q31_t)0xf62c2721, (q31_t)0xc06355, (q31_t)0xf6389228, (q31_t)0xbe7901, (q31_t)0xf644fd8f, (q31_t)0xbc911d, (q31_t)0xf6516956, (q31_t)0xbaabaa, (q31_t)0xf65dd57d, (q31_t)0xb8c8a7, (q31_t)0xf66a4203, (q31_t)0xb6e815, (q31_t)0xf676aee8, (q31_t)0xb509f3, (q31_t)0xf6831c2b, (q31_t)0xb32e42, (q31_t)0xf68f89cb, (q31_t)0xb15502, (q31_t)0xf69bf7c9, (q31_t)0xaf7e33, (q31_t)0xf6a86623, (q31_t)0xada9d4, (q31_t)0xf6b4d4d9, (q31_t)0xabd7e6, (q31_t)0xf6c143ec, (q31_t)0xaa086a, (q31_t)0xf6cdb359, (q31_t)0xa83b5e, (q31_t)0xf6da2321, (q31_t)0xa670c4, (q31_t)0xf6e69344, (q31_t)0xa4a89b, (q31_t)0xf6f303c0, (q31_t)0xa2e2e3, (q31_t)0xf6ff7496, (q31_t)0xa11f9d, (q31_t)0xf70be5c4, (q31_t)0x9f5ec8, (q31_t)0xf718574b, (q31_t)0x9da065, (q31_t)0xf724c92a, (q31_t)0x9be473, (q31_t)0xf7313b60, (q31_t)0x9a2af3, (q31_t)0xf73daded, (q31_t)0x9873e4, (q31_t)0xf74a20d0, (q31_t)0x96bf48, (q31_t)0xf756940a, (q31_t)0x950d1d, (q31_t)0xf7630799, (q31_t)0x935d64, (q31_t)0xf76f7b7d, (q31_t)0x91b01d, (q31_t)0xf77befb5, (q31_t)0x900548, (q31_t)0xf7886442, (q31_t)0x8e5ce5, (q31_t)0xf794d922, (q31_t)0x8cb6f5, (q31_t)0xf7a14e55, (q31_t)0x8b1376, (q31_t)0xf7adc3db, (q31_t)0x89726a, (q31_t)0xf7ba39b3, (q31_t)0x87d3d0, (q31_t)0xf7c6afdc, (q31_t)0x8637a9, (q31_t)0xf7d32657, (q31_t)0x849df4, (q31_t)0xf7df9d22, (q31_t)0x8306b2, (q31_t)0xf7ec143e, (q31_t)0x8171e2, (q31_t)0xf7f88ba9, (q31_t)0x7fdf85, (q31_t)0xf8050364, (q31_t)0x7e4f9b, (q31_t)0xf8117b6d, (q31_t)0x7cc223, (q31_t)0xf81df3c5, (q31_t)0x7b371e, (q31_t)0xf82a6c6a, (q31_t)0x79ae8c, (q31_t)0xf836e55d, (q31_t)0x78286e, (q31_t)0xf8435e9d, (q31_t)0x76a4c2, (q31_t)0xf84fd829, (q31_t)0x752389, (q31_t)0xf85c5201, (q31_t)0x73a4c3, (q31_t)0xf868cc24, (q31_t)0x722871, (q31_t)0xf8754692, (q31_t)0x70ae92, (q31_t)0xf881c14b, (q31_t)0x6f3726, (q31_t)0xf88e3c4d, (q31_t)0x6dc22e, (q31_t)0xf89ab799, (q31_t)0x6c4fa8, (q31_t)0xf8a7332e, (q31_t)0x6adf97, (q31_t)0xf8b3af0c, (q31_t)0x6971f9, (q31_t)0xf8c02b31, (q31_t)0x6806ce, (q31_t)0xf8cca79e, (q31_t)0x669e18, (q31_t)0xf8d92452, (q31_t)0x6537d4, (q31_t)0xf8e5a14d, (q31_t)0x63d405, (q31_t)0xf8f21e8e, (q31_t)0x6272aa, (q31_t)0xf8fe9c15, (q31_t)0x6113c2, (q31_t)0xf90b19e0, (q31_t)0x5fb74e, (q31_t)0xf91797f0, (q31_t)0x5e5d4e, (q31_t)0xf9241645, (q31_t)0x5d05c3, (q31_t)0xf93094dd, (q31_t)0x5bb0ab, (q31_t)0xf93d13b8, (q31_t)0x5a5e07, (q31_t)0xf94992d7, (q31_t)0x590dd8, (q31_t)0xf9561237, (q31_t)0x57c01d, (q31_t)0xf96291d9, (q31_t)0x5674d6, (q31_t)0xf96f11bc, (q31_t)0x552c03, (q31_t)0xf97b91e1, (q31_t)0x53e5a5, (q31_t)0xf9881245, (q31_t)0x52a1bb, (q31_t)0xf99492ea, (q31_t)0x516045, (q31_t)0xf9a113cd, (q31_t)0x502145, (q31_t)0xf9ad94f0, (q31_t)0x4ee4b8, (q31_t)0xf9ba1651, (q31_t)0x4daaa1, (q31_t)0xf9c697f0, (q31_t)0x4c72fe, (q31_t)0xf9d319cc, (q31_t)0x4b3dcf, (q31_t)0xf9df9be6, (q31_t)0x4a0b16, (q31_t)0xf9ec1e3b, (q31_t)0x48dad1, (q31_t)0xf9f8a0cd, (q31_t)0x47ad01, (q31_t)0xfa05239a, (q31_t)0x4681a6, (q31_t)0xfa11a6a3, (q31_t)0x4558c0, (q31_t)0xfa1e29e5, (q31_t)0x44324f, (q31_t)0xfa2aad62, (q31_t)0x430e53, (q31_t)0xfa373119, (q31_t)0x41eccc, (q31_t)0xfa43b508, (q31_t)0x40cdba, (q31_t)0xfa503930, (q31_t)0x3fb11d, (q31_t)0xfa5cbd91, (q31_t)0x3e96f6, (q31_t)0xfa694229, (q31_t)0x3d7f44, (q31_t)0xfa75c6f8, (q31_t)0x3c6a07, (q31_t)0xfa824bfd, (q31_t)0x3b573f, (q31_t)0xfa8ed139, (q31_t)0x3a46ed, (q31_t)0xfa9b56ab, (q31_t)0x393910, (q31_t)0xfaa7dc52, (q31_t)0x382da8, (q31_t)0xfab4622d, (q31_t)0x3724b6, (q31_t)0xfac0e83d, (q31_t)0x361e3a, (q31_t)0xfacd6e81, (q31_t)0x351a33, (q31_t)0xfad9f4f8, (q31_t)0x3418a2, (q31_t)0xfae67ba2, (q31_t)0x331986, (q31_t)0xfaf3027e, (q31_t)0x321ce0, (q31_t)0xfaff898c, (q31_t)0x3122b0, (q31_t)0xfb0c10cb, (q31_t)0x302af5, (q31_t)0xfb18983b, (q31_t)0x2f35b1, (q31_t)0xfb251fdc, (q31_t)0x2e42e2, (q31_t)0xfb31a7ac, (q31_t)0x2d5289, (q31_t)0xfb3e2fac, (q31_t)0x2c64a6, (q31_t)0xfb4ab7db, (q31_t)0x2b7939, (q31_t)0xfb574039, (q31_t)0x2a9042, (q31_t)0xfb63c8c4, (q31_t)0x29a9c1, (q31_t)0xfb70517d, (q31_t)0x28c5b6, (q31_t)0xfb7cda63, (q31_t)0x27e421, (q31_t)0xfb896375, (q31_t)0x270502, (q31_t)0xfb95ecb4, (q31_t)0x262859, (q31_t)0xfba2761e, (q31_t)0x254e27, (q31_t)0xfbaeffb3, (q31_t)0x24766a, (q31_t)0xfbbb8973, (q31_t)0x23a124, (q31_t)0xfbc8135c, (q31_t)0x22ce54, (q31_t)0xfbd49d70, (q31_t)0x21fdfb, (q31_t)0xfbe127ac, (q31_t)0x213018, (q31_t)0xfbedb212, (q31_t)0x2064ab, (q31_t)0xfbfa3c9f, (q31_t)0x1f9bb5, (q31_t)0xfc06c754, (q31_t)0x1ed535, (q31_t)0xfc135231, (q31_t)0x1e112b, (q31_t)0xfc1fdd34, (q31_t)0x1d4f99, (q31_t)0xfc2c685d, (q31_t)0x1c907c, (q31_t)0xfc38f3ac, (q31_t)0x1bd3d6, (q31_t)0xfc457f21, (q31_t)0x1b19a7, (q31_t)0xfc520aba, (q31_t)0x1a61ee, (q31_t)0xfc5e9678, (q31_t)0x19acac, (q31_t)0xfc6b2259, (q31_t)0x18f9e1, (q31_t)0xfc77ae5e, (q31_t)0x18498c, (q31_t)0xfc843a85, (q31_t)0x179bae, (q31_t)0xfc90c6cf, (q31_t)0x16f047, (q31_t)0xfc9d533b, (q31_t)0x164757, (q31_t)0xfca9dfc8, (q31_t)0x15a0dd, (q31_t)0xfcb66c77, (q31_t)0x14fcda, (q31_t)0xfcc2f945, (q31_t)0x145b4e, (q31_t)0xfccf8634, (q31_t)0x13bc39, (q31_t)0xfcdc1342, (q31_t)0x131f9b, (q31_t)0xfce8a06f, (q31_t)0x128574, (q31_t)0xfcf52dbb, (q31_t)0x11edc3, (q31_t)0xfd01bb24, (q31_t)0x11588a, (q31_t)0xfd0e48ab, (q31_t)0x10c5c7, (q31_t)0xfd1ad650, (q31_t)0x10357c, (q31_t)0xfd276410, (q31_t)0xfa7a8, (q31_t)0xfd33f1ed, (q31_t)0xf1c4a, (q31_t)0xfd407fe6, (q31_t)0xe9364, (q31_t)0xfd4d0df9, (q31_t)0xe0cf5, (q31_t)0xfd599c28, (q31_t)0xd88fd, (q31_t)0xfd662a70, (q31_t)0xd077c, (q31_t)0xfd72b8d2, (q31_t)0xc8872, (q31_t)0xfd7f474d, (q31_t)0xc0be0, (q31_t)0xfd8bd5e1, (q31_t)0xb91c4, (q31_t)0xfd98648d, (q31_t)0xb1a20, (q31_t)0xfda4f351, (q31_t)0xaa4f3, (q31_t)0xfdb1822c, (q31_t)0xa323d, (q31_t)0xfdbe111e, (q31_t)0x9c1ff, (q31_t)0xfdcaa027, (q31_t)0x95438, (q31_t)0xfdd72f45, (q31_t)0x8e8e8, (q31_t)0xfde3be78, (q31_t)0x8800f, (q31_t)0xfdf04dc0, (q31_t)0x819ae, (q31_t)0xfdfcdd1d, (q31_t)0x7b5c4, (q31_t)0xfe096c8d, (q31_t)0x75452, (q31_t)0xfe15fc11, (q31_t)0x6f556, (q31_t)0xfe228ba7, (q31_t)0x698d3, (q31_t)0xfe2f1b50, (q31_t)0x63ec6, (q31_t)0xfe3bab0b, (q31_t)0x5e731, (q31_t)0xfe483ad8, (q31_t)0x59214, (q31_t)0xfe54cab5, (q31_t)0x53f6e, (q31_t)0xfe615aa3, (q31_t)0x4ef3f, (q31_t)0xfe6deaa1, (q31_t)0x4a188, (q31_t)0xfe7a7aae, (q31_t)0x45648, (q31_t)0xfe870aca, (q31_t)0x40d80, (q31_t)0xfe939af5, (q31_t)0x3c72f, (q31_t)0xfea02b2e, (q31_t)0x38356, (q31_t)0xfeacbb74, (q31_t)0x341f4, (q31_t)0xfeb94bc8, (q31_t)0x3030a, (q31_t)0xfec5dc28, (q31_t)0x2c697, (q31_t)0xfed26c94, (q31_t)0x28c9c, (q31_t)0xfedefd0c, (q31_t)0x25519, (q31_t)0xfeeb8d8f, (q31_t)0x2200d, (q31_t)0xfef81e1d, (q31_t)0x1ed78, (q31_t)0xff04aeb5, (q31_t)0x1bd5c, (q31_t)0xff113f56, (q31_t)0x18fb6, (q31_t)0xff1dd001, (q31_t)0x16489, (q31_t)0xff2a60b4, (q31_t)0x13bd3, (q31_t)0xff36f170, (q31_t)0x11594, (q31_t)0xff438234, (q31_t)0xf1ce, (q31_t)0xff5012fe, (q31_t)0xd07e, (q31_t)0xff5ca3d0, (q31_t)0xb1a7, (q31_t)0xff6934a8, (q31_t)0x9547, (q31_t)0xff75c585, (q31_t)0x7b5f, (q31_t)0xff825668, (q31_t)0x63ee, (q31_t)0xff8ee750, (q31_t)0x4ef5, (q31_t)0xff9b783c, (q31_t)0x3c74, (q31_t)0xffa8092c, (q31_t)0x2c6a, (q31_t)0xffb49a1f, (q31_t)0x1ed8, (q31_t)0xffc12b16, (q31_t)0x13bd, (q31_t)0xffcdbc0f, (q31_t)0xb1a, (q31_t)0xffda4d09, (q31_t)0x4ef, (q31_t)0xffe6de05, (q31_t)0x13c, (q31_t)0xfff36f02, (q31_t)0x0, (q31_t)0x0, (q31_t)0x13c, (q31_t)0xc90fe, (q31_t)0x4ef, (q31_t)0x1921fb, (q31_t)0xb1a, (q31_t)0x25b2f7, (q31_t)0x13bd, (q31_t)0x3243f1, (q31_t)0x1ed8, (q31_t)0x3ed4ea, (q31_t)0x2c6a, (q31_t)0x4b65e1, (q31_t)0x3c74, (q31_t)0x57f6d4, (q31_t)0x4ef5, (q31_t)0x6487c4, (q31_t)0x63ee, (q31_t)0x7118b0, (q31_t)0x7b5f, (q31_t)0x7da998, (q31_t)0x9547, (q31_t)0x8a3a7b, (q31_t)0xb1a7, (q31_t)0x96cb58, (q31_t)0xd07e, (q31_t)0xa35c30, (q31_t)0xf1ce, (q31_t)0xafed02, (q31_t)0x11594, (q31_t)0xbc7dcc, (q31_t)0x13bd3, (q31_t)0xc90e90, (q31_t)0x16489, (q31_t)0xd59f4c, (q31_t)0x18fb6, (q31_t)0xe22fff, (q31_t)0x1bd5c, (q31_t)0xeec0aa, (q31_t)0x1ed78, (q31_t)0xfb514b, (q31_t)0x2200d, (q31_t)0x107e1e3, (q31_t)0x25519, (q31_t)0x1147271, (q31_t)0x28c9c, (q31_t)0x12102f4, (q31_t)0x2c697, (q31_t)0x12d936c, (q31_t)0x3030a, (q31_t)0x13a23d8, (q31_t)0x341f4, (q31_t)0x146b438, (q31_t)0x38356, (q31_t)0x153448c, (q31_t)0x3c72f, (q31_t)0x15fd4d2, (q31_t)0x40d80, (q31_t)0x16c650b, (q31_t)0x45648, (q31_t)0x178f536, (q31_t)0x4a188, (q31_t)0x1858552, (q31_t)0x4ef3f, (q31_t)0x192155f, (q31_t)0x53f6e, (q31_t)0x19ea55d, (q31_t)0x59214, (q31_t)0x1ab354b, (q31_t)0x5e731, (q31_t)0x1b7c528, (q31_t)0x63ec6, (q31_t)0x1c454f5, (q31_t)0x698d3, (q31_t)0x1d0e4b0, (q31_t)0x6f556, (q31_t)0x1dd7459, (q31_t)0x75452, (q31_t)0x1ea03ef, (q31_t)0x7b5c4, (q31_t)0x1f69373, (q31_t)0x819ae, (q31_t)0x20322e3, (q31_t)0x8800f, (q31_t)0x20fb240, (q31_t)0x8e8e8, (q31_t)0x21c4188, (q31_t)0x95438, (q31_t)0x228d0bb, (q31_t)0x9c1ff, (q31_t)0x2355fd9, (q31_t)0xa323d, (q31_t)0x241eee2, (q31_t)0xaa4f3, (q31_t)0x24e7dd4, (q31_t)0xb1a20, (q31_t)0x25b0caf, (q31_t)0xb91c4, (q31_t)0x2679b73, (q31_t)0xc0be0, (q31_t)0x2742a1f, (q31_t)0xc8872, (q31_t)0x280b8b3, (q31_t)0xd077c, (q31_t)0x28d472e, (q31_t)0xd88fd, (q31_t)0x299d590, (q31_t)0xe0cf5, (q31_t)0x2a663d8, (q31_t)0xe9364, (q31_t)0x2b2f207, (q31_t)0xf1c4a, (q31_t)0x2bf801a, (q31_t)0xfa7a8, (q31_t)0x2cc0e13, (q31_t)0x10357c, (q31_t)0x2d89bf0, (q31_t)0x10c5c7, (q31_t)0x2e529b0, (q31_t)0x11588a, (q31_t)0x2f1b755, (q31_t)0x11edc3, (q31_t)0x2fe44dc, (q31_t)0x128574, (q31_t)0x30ad245, (q31_t)0x131f9b, (q31_t)0x3175f91, (q31_t)0x13bc39, (q31_t)0x323ecbe, (q31_t)0x145b4e, (q31_t)0x33079cc, (q31_t)0x14fcda, (q31_t)0x33d06bb, (q31_t)0x15a0dd, (q31_t)0x3499389, (q31_t)0x164757, (q31_t)0x3562038, (q31_t)0x16f047, (q31_t)0x362acc5, (q31_t)0x179bae, (q31_t)0x36f3931, (q31_t)0x18498c, (q31_t)0x37bc57b, (q31_t)0x18f9e1, (q31_t)0x38851a2, (q31_t)0x19acac, (q31_t)0x394dda7, (q31_t)0x1a61ee, (q31_t)0x3a16988, (q31_t)0x1b19a7, (q31_t)0x3adf546, (q31_t)0x1bd3d6, (q31_t)0x3ba80df, (q31_t)0x1c907c, (q31_t)0x3c70c54, (q31_t)0x1d4f99, (q31_t)0x3d397a3, (q31_t)0x1e112b, (q31_t)0x3e022cc, (q31_t)0x1ed535, (q31_t)0x3ecadcf, (q31_t)0x1f9bb5, (q31_t)0x3f938ac, (q31_t)0x2064ab, (q31_t)0x405c361, (q31_t)0x213018, (q31_t)0x4124dee, (q31_t)0x21fdfb, (q31_t)0x41ed854, (q31_t)0x22ce54, (q31_t)0x42b6290, (q31_t)0x23a124, (q31_t)0x437eca4, (q31_t)0x24766a, (q31_t)0x444768d, (q31_t)0x254e27, (q31_t)0x451004d, (q31_t)0x262859, (q31_t)0x45d89e2, (q31_t)0x270502, (q31_t)0x46a134c, (q31_t)0x27e421, (q31_t)0x4769c8b, (q31_t)0x28c5b6, (q31_t)0x483259d, (q31_t)0x29a9c1, (q31_t)0x48fae83, (q31_t)0x2a9042, (q31_t)0x49c373c, (q31_t)0x2b7939, (q31_t)0x4a8bfc7, (q31_t)0x2c64a6, (q31_t)0x4b54825, (q31_t)0x2d5289, (q31_t)0x4c1d054, (q31_t)0x2e42e2, (q31_t)0x4ce5854, (q31_t)0x2f35b1, (q31_t)0x4dae024, (q31_t)0x302af5, (q31_t)0x4e767c5, (q31_t)0x3122b0, (q31_t)0x4f3ef35, (q31_t)0x321ce0, (q31_t)0x5007674, (q31_t)0x331986, (q31_t)0x50cfd82, (q31_t)0x3418a2, (q31_t)0x519845e, (q31_t)0x351a33, (q31_t)0x5260b08, (q31_t)0x361e3a, (q31_t)0x532917f, (q31_t)0x3724b6, (q31_t)0x53f17c3, (q31_t)0x382da8, (q31_t)0x54b9dd3, (q31_t)0x393910, (q31_t)0x55823ae, (q31_t)0x3a46ed, (q31_t)0x564a955, (q31_t)0x3b573f, (q31_t)0x5712ec7, (q31_t)0x3c6a07, (q31_t)0x57db403, (q31_t)0x3d7f44, (q31_t)0x58a3908, (q31_t)0x3e96f6, (q31_t)0x596bdd7, (q31_t)0x3fb11d, (q31_t)0x5a3426f, (q31_t)0x40cdba, (q31_t)0x5afc6d0, (q31_t)0x41eccc, (q31_t)0x5bc4af8, (q31_t)0x430e53, (q31_t)0x5c8cee7, (q31_t)0x44324f, (q31_t)0x5d5529e, (q31_t)0x4558c0, (q31_t)0x5e1d61b, (q31_t)0x4681a6, (q31_t)0x5ee595d, (q31_t)0x47ad01, (q31_t)0x5fadc66, (q31_t)0x48dad1, (q31_t)0x6075f33, (q31_t)0x4a0b16, (q31_t)0x613e1c5, (q31_t)0x4b3dcf, (q31_t)0x620641a, (q31_t)0x4c72fe, (q31_t)0x62ce634, (q31_t)0x4daaa1, (q31_t)0x6396810, (q31_t)0x4ee4b8, (q31_t)0x645e9af, (q31_t)0x502145, (q31_t)0x6526b10, (q31_t)0x516045, (q31_t)0x65eec33, (q31_t)0x52a1bb, (q31_t)0x66b6d16, (q31_t)0x53e5a5, (q31_t)0x677edbb, (q31_t)0x552c03, (q31_t)0x6846e1f, (q31_t)0x5674d6, (q31_t)0x690ee44, (q31_t)0x57c01d, (q31_t)0x69d6e27, (q31_t)0x590dd8, (q31_t)0x6a9edc9, (q31_t)0x5a5e07, (q31_t)0x6b66d29, (q31_t)0x5bb0ab, (q31_t)0x6c2ec48, (q31_t)0x5d05c3, (q31_t)0x6cf6b23, (q31_t)0x5e5d4e, (q31_t)0x6dbe9bb, (q31_t)0x5fb74e, (q31_t)0x6e86810, (q31_t)0x6113c2, (q31_t)0x6f4e620, (q31_t)0x6272aa, (q31_t)0x70163eb, (q31_t)0x63d405, (q31_t)0x70de172, (q31_t)0x6537d4, (q31_t)0x71a5eb3, (q31_t)0x669e18, (q31_t)0x726dbae, (q31_t)0x6806ce, (q31_t)0x7335862, (q31_t)0x6971f9, (q31_t)0x73fd4cf, (q31_t)0x6adf97, (q31_t)0x74c50f4, (q31_t)0x6c4fa8, (q31_t)0x758ccd2, (q31_t)0x6dc22e, (q31_t)0x7654867, (q31_t)0x6f3726, (q31_t)0x771c3b3, (q31_t)0x70ae92, (q31_t)0x77e3eb5, (q31_t)0x722871, (q31_t)0x78ab96e, (q31_t)0x73a4c3, (q31_t)0x79733dc, (q31_t)0x752389, (q31_t)0x7a3adff, (q31_t)0x76a4c2, (q31_t)0x7b027d7, (q31_t)0x78286e, (q31_t)0x7bca163, (q31_t)0x79ae8c, (q31_t)0x7c91aa3, (q31_t)0x7b371e, (q31_t)0x7d59396, (q31_t)0x7cc223, (q31_t)0x7e20c3b, (q31_t)0x7e4f9b, (q31_t)0x7ee8493, (q31_t)0x7fdf85, (q31_t)0x7fafc9c, (q31_t)0x8171e2, (q31_t)0x8077457, (q31_t)0x8306b2, (q31_t)0x813ebc2, (q31_t)0x849df4, (q31_t)0x82062de, (q31_t)0x8637a9, (q31_t)0x82cd9a9, (q31_t)0x87d3d0, (q31_t)0x8395024, (q31_t)0x89726a, (q31_t)0x845c64d, (q31_t)0x8b1376, (q31_t)0x8523c25, (q31_t)0x8cb6f5, (q31_t)0x85eb1ab, (q31_t)0x8e5ce5, (q31_t)0x86b26de, (q31_t)0x900548, (q31_t)0x8779bbe, (q31_t)0x91b01d, (q31_t)0x884104b, (q31_t)0x935d64, (q31_t)0x8908483, (q31_t)0x950d1d, (q31_t)0x89cf867, (q31_t)0x96bf48, (q31_t)0x8a96bf6, (q31_t)0x9873e4, (q31_t)0x8b5df30, (q31_t)0x9a2af3, (q31_t)0x8c25213, (q31_t)0x9be473, (q31_t)0x8cec4a0, (q31_t)0x9da065, (q31_t)0x8db36d6, (q31_t)0x9f5ec8, (q31_t)0x8e7a8b5, (q31_t)0xa11f9d, (q31_t)0x8f41a3c, (q31_t)0xa2e2e3, (q31_t)0x9008b6a, (q31_t)0xa4a89b, (q31_t)0x90cfc40, (q31_t)0xa670c4, (q31_t)0x9196cbc, (q31_t)0xa83b5e, (q31_t)0x925dcdf, (q31_t)0xaa086a, (q31_t)0x9324ca7, (q31_t)0xabd7e6, (q31_t)0x93ebc14, (q31_t)0xada9d4, (q31_t)0x94b2b27, (q31_t)0xaf7e33, (q31_t)0x95799dd, (q31_t)0xb15502, (q31_t)0x9640837, (q31_t)0xb32e42, (q31_t)0x9707635, (q31_t)0xb509f3, (q31_t)0x97ce3d5, (q31_t)0xb6e815, (q31_t)0x9895118, (q31_t)0xb8c8a7, (q31_t)0x995bdfd, (q31_t)0xbaabaa, (q31_t)0x9a22a83, (q31_t)0xbc911d, (q31_t)0x9ae96aa, (q31_t)0xbe7901, (q31_t)0x9bb0271, (q31_t)0xc06355, (q31_t)0x9c76dd8, (q31_t)0xc25019, (q31_t)0x9d3d8df, (q31_t)0xc43f4d, (q31_t)0x9e04385, (q31_t)0xc630f2, (q31_t)0x9ecadc9, (q31_t)0xc82506, (q31_t)0x9f917ac, (q31_t)0xca1b8a, (q31_t)0xa05812c, (q31_t)0xcc147f, (q31_t)0xa11ea49, (q31_t)0xce0fe3, (q31_t)0xa1e5303, (q31_t)0xd00db6, (q31_t)0xa2abb59, (q31_t)0xd20dfa, (q31_t)0xa37234a, (q31_t)0xd410ad, (q31_t)0xa438ad7, (q31_t)0xd615cf, (q31_t)0xa4ff1fe, (q31_t)0xd81d61, (q31_t)0xa5c58c0, (q31_t)0xda2762, (q31_t)0xa68bf1b, (q31_t)0xdc33d2, (q31_t)0xa752510, (q31_t)0xde42b2, (q31_t)0xa818a9d, (q31_t)0xe05401, (q31_t)0xa8defc3, (q31_t)0xe267be, (q31_t)0xa9a5480, (q31_t)0xe47deb, (q31_t)0xaa6b8d5, (q31_t)0xe69686, (q31_t)0xab31cc1, (q31_t)0xe8b190, (q31_t)0xabf8043, (q31_t)0xeacf09, (q31_t)0xacbe35b, (q31_t)0xeceef1, (q31_t)0xad84609, (q31_t)0xef1147, (q31_t)0xae4a84b, (q31_t)0xf1360b, (q31_t)0xaf10a22, (q31_t)0xf35d3e, (q31_t)0xafd6b8d, (q31_t)0xf586df, (q31_t)0xb09cc8c, (q31_t)0xf7b2ee, (q31_t)0xb162d1d, (q31_t)0xf9e16b, (q31_t)0xb228d42, (q31_t)0xfc1257, (q31_t)0xb2eecf8, (q31_t)0xfe45b0, (q31_t)0xb3b4c40, (q31_t)0x1007b77, (q31_t)0xb47ab19, (q31_t)0x102b3ac, (q31_t)0xb540982, (q31_t)0x104ee4f, (q31_t)0xb60677c, (q31_t)0x1072b5f, (q31_t)0xb6cc506, (q31_t)0x1096add, (q31_t)0xb79221f, (q31_t)0x10bacc8, (q31_t)0xb857ec7, (q31_t)0x10df120, (q31_t)0xb91dafc, (q31_t)0x11037e6, (q31_t)0xb9e36c0, (q31_t)0x1128119, (q31_t)0xbaa9211, (q31_t)0x114ccb9, (q31_t)0xbb6ecef, (q31_t)0x1171ac6, (q31_t)0xbc34759, (q31_t)0x1196b3f, (q31_t)0xbcfa150, (q31_t)0x11bbe26, (q31_t)0xbdbfad1, (q31_t)0x11e1379, (q31_t)0xbe853de, (q31_t)0x1206b39, (q31_t)0xbf4ac75, (q31_t)0x122c566, (q31_t)0xc010496, (q31_t)0x12521ff, (q31_t)0xc0d5c41, (q31_t)0x1278104, (q31_t)0xc19b374, (q31_t)0x129e276, (q31_t)0xc260a31, (q31_t)0x12c4653, (q31_t)0xc326075, (q31_t)0x12eac9d, (q31_t)0xc3eb641, (q31_t)0x1311553, (q31_t)0xc4b0b94, (q31_t)0x1338075, (q31_t)0xc57606e, (q31_t)0x135ee02, (q31_t)0xc63b4ce, (q31_t)0x1385dfb, (q31_t)0xc7008b3, (q31_t)0x13ad060, (q31_t)0xc7c5c1e, (q31_t)0x13d4530, (q31_t)0xc88af0e, (q31_t)0x13fbc6c, (q31_t)0xc950182, (q31_t)0x1423613, (q31_t)0xca1537a, (q31_t)0x144b225, (q31_t)0xcada4f5, (q31_t)0x14730a3, (q31_t)0xcb9f5f3, (q31_t)0x149b18b, (q31_t)0xcc64673, (q31_t)0x14c34df, (q31_t)0xcd29676, (q31_t)0x14eba9d, (q31_t)0xcdee5f9, (q31_t)0x15142c6, (q31_t)0xceb34fe, (q31_t)0x153cd5a, (q31_t)0xcf78383, (q31_t)0x1565a58, (q31_t)0xd03d189, (q31_t)0x158e9c1, (q31_t)0xd101f0e, (q31_t)0x15b7b94, (q31_t)0xd1c6c11, (q31_t)0x15e0fd1, (q31_t)0xd28b894, (q31_t)0x160a678, (q31_t)0xd350495, (q31_t)0x1633f8a, (q31_t)0xd415013, (q31_t)0x165db05, (q31_t)0xd4d9b0e, (q31_t)0x16878eb, (q31_t)0xd59e586, (q31_t)0x16b193a, (q31_t)0xd662f7b, (q31_t)0x16dbbf3, (q31_t)0xd7278eb, (q31_t)0x1706115, (q31_t)0xd7ec1d6, (q31_t)0x17308a1, (q31_t)0xd8b0a3d, (q31_t)0x175b296, (q31_t)0xd97521d, (q31_t)0x1785ef4, (q31_t)0xda39978, (q31_t)0x17b0dbb, (q31_t)0xdafe04b, (q31_t)0x17dbeec, (q31_t)0xdbc2698, (q31_t)0x1807285, (q31_t)0xdc86c5d, (q31_t)0x1832888, (q31_t)0xdd4b19a, (q31_t)0x185e0f3, (q31_t)0xde0f64f, (q31_t)0x1889bc6, (q31_t)0xded3a7b, (q31_t)0x18b5903, (q31_t)0xdf97e1d, (q31_t)0x18e18a7, (q31_t)0xe05c135, (q31_t)0x190dab4, (q31_t)0xe1203c3, (q31_t)0x1939f29, (q31_t)0xe1e45c6, (q31_t)0x1966606, (q31_t)0xe2a873e, (q31_t)0x1992f4c, (q31_t)0xe36c82a, (q31_t)0x19bfaf9, (q31_t)0xe430889, (q31_t)0x19ec90d, (q31_t)0xe4f485c, (q31_t)0x1a1998a, (q31_t)0xe5b87a2, (q31_t)0x1a46c6e, (q31_t)0xe67c65a, (q31_t)0x1a741b9, (q31_t)0xe740483, (q31_t)0x1aa196c, (q31_t)0xe80421e, (q31_t)0x1acf386, (q31_t)0xe8c7f2a, (q31_t)0x1afd007, (q31_t)0xe98bba7, (q31_t)0x1b2aef0, (q31_t)0xea4f793, (q31_t)0x1b5903f, (q31_t)0xeb132ef, (q31_t)0x1b873f5, (q31_t)0xebd6db9, (q31_t)0x1bb5a11, (q31_t)0xec9a7f3, (q31_t)0x1be4294, (q31_t)0xed5e19a, (q31_t)0x1c12d7e, (q31_t)0xee21aaf, (q31_t)0x1c41ace, (q31_t)0xeee5331, (q31_t)0x1c70a84, (q31_t)0xefa8b20, (q31_t)0x1c9fca0, (q31_t)0xf06c27a, (q31_t)0x1ccf122, (q31_t)0xf12f941, (q31_t)0x1cfe80a, (q31_t)0xf1f2f73, (q31_t)0x1d2e158, (q31_t)0xf2b650f, (q31_t)0x1d5dd0c, (q31_t)0xf379a16, (q31_t)0x1d8db25, (q31_t)0xf43ce86, (q31_t)0x1dbdba3, (q31_t)0xf500260, (q31_t)0x1dede87, (q31_t)0xf5c35a3, (q31_t)0x1e1e3d0, (q31_t)0xf68684e, (q31_t)0x1e4eb7e, (q31_t)0xf749a61, (q31_t)0x1e7f591, (q31_t)0xf80cbdc, (q31_t)0x1eb0209, (q31_t)0xf8cfcbe, (q31_t)0x1ee10e5, (q31_t)0xf992d06, (q31_t)0x1f12227, (q31_t)0xfa55cb4, (q31_t)0x1f435cc, (q31_t)0xfb18bc8, (q31_t)0x1f74bd6, (q31_t)0xfbdba40, (q31_t)0x1fa6445, (q31_t)0xfc9e81e, (q31_t)0x1fd7f17, (q31_t)0xfd6155f, (q31_t)0x2009c4e, (q31_t)0xfe24205, (q31_t)0x203bbe8, (q31_t)0xfee6e0d, (q31_t)0x206dde6, (q31_t)0xffa9979, (q31_t)0x20a0248, (q31_t)0x1006c446, (q31_t)0x20d290d, (q31_t)0x1012ee76, (q31_t)0x2105236, (q31_t)0x101f1807, (q31_t)0x2137dc2, (q31_t)0x102b40f8, (q31_t)0x216abb1, (q31_t)0x1037694b, (q31_t)0x219dc03, (q31_t)0x104390fd, (q31_t)0x21d0eb8, (q31_t)0x104fb80e, (q31_t)0x22043d0, (q31_t)0x105bde7f, (q31_t)0x2237b4b, (q31_t)0x1068044e, (q31_t)0x226b528, (q31_t)0x1074297b, (q31_t)0x229f167, (q31_t)0x10804e06, (q31_t)0x22d3009, (q31_t)0x108c71ee, (q31_t)0x230710d, (q31_t)0x10989532, (q31_t)0x233b473, (q31_t)0x10a4b7d3, (q31_t)0x236fa3b, (q31_t)0x10b0d9d0, (q31_t)0x23a4265, (q31_t)0x10bcfb28, (q31_t)0x23d8cf1, (q31_t)0x10c91bda, (q31_t)0x240d9de, (q31_t)0x10d53be7, (q31_t)0x244292c, (q31_t)0x10e15b4e, (q31_t)0x2477adc, (q31_t)0x10ed7a0e, (q31_t)0x24aceed, (q31_t)0x10f99827, (q31_t)0x24e255e, (q31_t)0x1105b599, (q31_t)0x2517e31, (q31_t)0x1111d263, (q31_t)0x254d965, (q31_t)0x111dee84, (q31_t)0x25836f9, (q31_t)0x112a09fc, (q31_t)0x25b96ee, (q31_t)0x113624cb, (q31_t)0x25ef943, (q31_t)0x11423ef0, (q31_t)0x2625df8, (q31_t)0x114e586a, (q31_t)0x265c50e, (q31_t)0x115a713a, (q31_t)0x2692e83, (q31_t)0x1166895f, (q31_t)0x26c9a58, (q31_t)0x1172a0d7, (q31_t)0x270088e, (q31_t)0x117eb7a4, (q31_t)0x2737922, (q31_t)0x118acdc4, (q31_t)0x276ec16, (q31_t)0x1196e337, (q31_t)0x27a616a, (q31_t)0x11a2f7fc, (q31_t)0x27dd91c, (q31_t)0x11af0c13, (q31_t)0x281532e, (q31_t)0x11bb1f7c, (q31_t)0x284cf9f, (q31_t)0x11c73235, (q31_t)0x2884e6e, (q31_t)0x11d3443f, (q31_t)0x28bcf9c, (q31_t)0x11df5599, (q31_t)0x28f5329, (q31_t)0x11eb6643, (q31_t)0x292d914, (q31_t)0x11f7763c, (q31_t)0x296615d, (q31_t)0x12038584, (q31_t)0x299ec05, (q31_t)0x120f941a, (q31_t)0x29d790a, (q31_t)0x121ba1fd, (q31_t)0x2a1086d, (q31_t)0x1227af2e, (q31_t)0x2a49a2e, (q31_t)0x1233bbac, (q31_t)0x2a82e4d, (q31_t)0x123fc776, (q31_t)0x2abc4c9, (q31_t)0x124bd28c, (q31_t)0x2af5da2, (q31_t)0x1257dced, (q31_t)0x2b2f8d8, (q31_t)0x1263e699, (q31_t)0x2b6966c, (q31_t)0x126fef90, (q31_t)0x2ba365c, (q31_t)0x127bf7d1, (q31_t)0x2bdd8a9, (q31_t)0x1287ff5b, (q31_t)0x2c17d52, (q31_t)0x1294062f, (q31_t)0x2c52459, (q31_t)0x12a00c4b, (q31_t)0x2c8cdbb, (q31_t)0x12ac11af, (q31_t)0x2cc7979, (q31_t)0x12b8165b, (q31_t)0x2d02794, (q31_t)0x12c41a4f, (q31_t)0x2d3d80a, (q31_t)0x12d01d89, (q31_t)0x2d78add, (q31_t)0x12dc2009, (q31_t)0x2db400a, (q31_t)0x12e821cf, (q31_t)0x2def794, (q31_t)0x12f422db, (q31_t)0x2e2b178, (q31_t)0x1300232c, (q31_t)0x2e66db8, (q31_t)0x130c22c1, (q31_t)0x2ea2c53, (q31_t)0x1318219a, (q31_t)0x2eded49, (q31_t)0x13241fb6, (q31_t)0x2f1b099, (q31_t)0x13301d16, (q31_t)0x2f57644, (q31_t)0x133c19b8, (q31_t)0x2f93e4a, (q31_t)0x1348159d, (q31_t)0x2fd08a9, (q31_t)0x135410c3, (q31_t)0x300d563, (q31_t)0x13600b2a, (q31_t)0x304a477, (q31_t)0x136c04d2, (q31_t)0x30875e5, (q31_t)0x1377fdbb, (q31_t)0x30c49ad, (q31_t)0x1383f5e3, (q31_t)0x3101fce, (q31_t)0x138fed4b, (q31_t)0x313f848, (q31_t)0x139be3f2, (q31_t)0x317d31c, (q31_t)0x13a7d9d7, (q31_t)0x31bb049, (q31_t)0x13b3cefa, (q31_t)0x31f8fcf, (q31_t)0x13bfc35b, (q31_t)0x32371ae, (q31_t)0x13cbb6f8, (q31_t)0x32755e5, (q31_t)0x13d7a9d3, (q31_t)0x32b3c75, (q31_t)0x13e39be9, (q31_t)0x32f255e, (q31_t)0x13ef8d3c, (q31_t)0x333109e, (q31_t)0x13fb7dc9, (q31_t)0x336fe37, (q31_t)0x14076d91, (q31_t)0x33aee27, (q31_t)0x14135c94, (q31_t)0x33ee070, (q31_t)0x141f4ad1, (q31_t)0x342d510, (q31_t)0x142b3846, (q31_t)0x346cc07, (q31_t)0x143724f5, (q31_t)0x34ac556, (q31_t)0x144310dd, (q31_t)0x34ec0fc, (q31_t)0x144efbfc, (q31_t)0x352bef9, (q31_t)0x145ae653, (q31_t)0x356bf4d, (q31_t)0x1466cfe1, (q31_t)0x35ac1f7, (q31_t)0x1472b8a5, (q31_t)0x35ec6f8, (q31_t)0x147ea0a0, (q31_t)0x362ce50, (q31_t)0x148a87d1, (q31_t)0x366d7fd, (q31_t)0x14966e36, (q31_t)0x36ae401, (q31_t)0x14a253d1, (q31_t)0x36ef25b, (q31_t)0x14ae38a0, (q31_t)0x373030a, (q31_t)0x14ba1ca3, (q31_t)0x377160f, (q31_t)0x14c5ffd9, (q31_t)0x37b2b6a, (q31_t)0x14d1e242, (q31_t)0x37f4319, (q31_t)0x14ddc3de, (q31_t)0x3835d1e, (q31_t)0x14e9a4ac, (q31_t)0x3877978, (q31_t)0x14f584ac, (q31_t)0x38b9827, (q31_t)0x150163dc, (q31_t)0x38fb92a, (q31_t)0x150d423d, (q31_t)0x393dc82, (q31_t)0x15191fcf, (q31_t)0x398022f, (q31_t)0x1524fc90, (q31_t)0x39c2a2f, (q31_t)0x1530d881, (q31_t)0x3a05484, (q31_t)0x153cb3a0, (q31_t)0x3a4812c, (q31_t)0x15488dee, (q31_t)0x3a8b028, (q31_t)0x1554676a, (q31_t)0x3ace178, (q31_t)0x15604013, (q31_t)0x3b1151b, (q31_t)0x156c17e9, (q31_t)0x3b54b11, (q31_t)0x1577eeec, (q31_t)0x3b9835a, (q31_t)0x1583c51b, (q31_t)0x3bdbdf6, (q31_t)0x158f9a76, (q31_t)0x3c1fae5, (q31_t)0x159b6efb, (q31_t)0x3c63a26, (q31_t)0x15a742ac, (q31_t)0x3ca7bba, (q31_t)0x15b31587, (q31_t)0x3cebfa0, (q31_t)0x15bee78c, (q31_t)0x3d305d8, (q31_t)0x15cab8ba, (q31_t)0x3d74e62, (q31_t)0x15d68911, (q31_t)0x3db993e, (q31_t)0x15e25890, (q31_t)0x3dfe66c, (q31_t)0x15ee2738, (q31_t)0x3e435ea, (q31_t)0x15f9f507, (q31_t)0x3e887bb, (q31_t)0x1605c1fd, (q31_t)0x3ecdbdc, (q31_t)0x16118e1a, (q31_t)0x3f1324e, (q31_t)0x161d595d, (q31_t)0x3f58b10, (q31_t)0x162923c5, (q31_t)0x3f9e624, (q31_t)0x1634ed53, (q31_t)0x3fe4388, (q31_t)0x1640b606, (q31_t)0x402a33c, (q31_t)0x164c7ddd, (q31_t)0x4070540, (q31_t)0x165844d8, (q31_t)0x40b6994, (q31_t)0x16640af7, (q31_t)0x40fd037, (q31_t)0x166fd039, (q31_t)0x414392b, (q31_t)0x167b949d, (q31_t)0x418a46d, (q31_t)0x16875823, (q31_t)0x41d11ff, (q31_t)0x16931acb, (q31_t)0x42181e0, (q31_t)0x169edc94, (q31_t)0x425f410, (q31_t)0x16aa9d7e, (q31_t)0x42a688f, (q31_t)0x16b65d88, (q31_t)0x42edf5c, (q31_t)0x16c21cb2, (q31_t)0x4335877, (q31_t)0x16cddafb, (q31_t)0x437d3e1, (q31_t)0x16d99864, (q31_t)0x43c5199, (q31_t)0x16e554ea, (q31_t)0x440d19e, (q31_t)0x16f1108f, (q31_t)0x44553f2, (q31_t)0x16fccb51, (q31_t)0x449d892, (q31_t)0x17088531, (q31_t)0x44e5f80, (q31_t)0x17143e2d, (q31_t)0x452e8bc, (q31_t)0x171ff646, (q31_t)0x4577444, (q31_t)0x172bad7a, (q31_t)0x45c0219, (q31_t)0x173763c9, (q31_t)0x460923b, (q31_t)0x17431933, (q31_t)0x46524a9, (q31_t)0x174ecdb8, (q31_t)0x469b963, (q31_t)0x175a8157, (q31_t)0x46e5069, (q31_t)0x1766340f, (q31_t)0x472e9bc, (q31_t)0x1771e5e0, (q31_t)0x477855a, (q31_t)0x177d96ca, (q31_t)0x47c2344, (q31_t)0x178946cc, (q31_t)0x480c379, (q31_t)0x1794f5e6, (q31_t)0x48565f9, (q31_t)0x17a0a417, (q31_t)0x48a0ac4, (q31_t)0x17ac515f, (q31_t)0x48eb1db, (q31_t)0x17b7fdbd, (q31_t)0x4935b3c, (q31_t)0x17c3a931, (q31_t)0x49806e7, (q31_t)0x17cf53bb, (q31_t)0x49cb4dd, (q31_t)0x17dafd59, (q31_t)0x4a1651c, (q31_t)0x17e6a60c, (q31_t)0x4a617a6, (q31_t)0x17f24dd3, (q31_t)0x4aacc7a, (q31_t)0x17fdf4ae, (q31_t)0x4af8397, (q31_t)0x18099a9c, (q31_t)0x4b43cfd, (q31_t)0x18153f9d, (q31_t)0x4b8f8ad, (q31_t)0x1820e3b0, (q31_t)0x4bdb6a6, (q31_t)0x182c86d5, (q31_t)0x4c276e8, (q31_t)0x1838290c, (q31_t)0x4c73972, (q31_t)0x1843ca53, (q31_t)0x4cbfe45, (q31_t)0x184f6aab, (q31_t)0x4d0c560, (q31_t)0x185b0a13, (q31_t)0x4d58ec3, (q31_t)0x1866a88a, (q31_t)0x4da5a6f, (q31_t)0x18724611, (q31_t)0x4df2862, (q31_t)0x187de2a7, (q31_t)0x4e3f89c, (q31_t)0x18897e4a, (q31_t)0x4e8cb1e, (q31_t)0x189518fc, (q31_t)0x4ed9fe7, (q31_t)0x18a0b2bb, (q31_t)0x4f276f7, (q31_t)0x18ac4b87, (q31_t)0x4f7504e, (q31_t)0x18b7e35f, (q31_t)0x4fc2bec, (q31_t)0x18c37a44, (q31_t)0x50109d0, (q31_t)0x18cf1034, (q31_t)0x505e9fb, (q31_t)0x18daa52f, (q31_t)0x50acc6b, (q31_t)0x18e63935, (q31_t)0x50fb121, (q31_t)0x18f1cc45, (q31_t)0x514981d, (q31_t)0x18fd5e5f, (q31_t)0x519815f, (q31_t)0x1908ef82, (q31_t)0x51e6ce6, (q31_t)0x19147fae, (q31_t)0x5235ab2, (q31_t)0x19200ee3, (q31_t)0x5284ac3, (q31_t)0x192b9d1f, (q31_t)0x52d3d18, (q31_t)0x19372a64, (q31_t)0x53231b3, (q31_t)0x1942b6af, (q31_t)0x5372891, (q31_t)0x194e4201, (q31_t)0x53c21b4, (q31_t)0x1959cc5a, (q31_t)0x5411d1b, (q31_t)0x196555b8, (q31_t)0x5461ac6, (q31_t)0x1970de1b, (q31_t)0x54b1ab4, (q31_t)0x197c6584, (q31_t)0x5501ce5, (q31_t)0x1987ebf0, (q31_t)0x555215a, (q31_t)0x19937161, (q31_t)0x55a2812, (q31_t)0x199ef5d6, (q31_t)0x55f310d, (q31_t)0x19aa794d, (q31_t)0x5643c4a, (q31_t)0x19b5fbc8, (q31_t)0x56949ca, (q31_t)0x19c17d44, (q31_t)0x56e598c, (q31_t)0x19ccfdc2, (q31_t)0x5736b90, (q31_t)0x19d87d42, (q31_t)0x5787fd6, (q31_t)0x19e3fbc3, (q31_t)0x57d965d, (q31_t)0x19ef7944, (q31_t)0x582af26, (q31_t)0x19faf5c5, (q31_t)0x587ca31, (q31_t)0x1a067145, (q31_t)0x58ce77c, (q31_t)0x1a11ebc5, (q31_t)0x5920708, (q31_t)0x1a1d6544, (q31_t)0x59728d5, (q31_t)0x1a28ddc0, (q31_t)0x59c4ce3, (q31_t)0x1a34553b, (q31_t)0x5a17330, (q31_t)0x1a3fcbb3, (q31_t)0x5a69bbe, (q31_t)0x1a4b4128, (q31_t)0x5abc68c, (q31_t)0x1a56b599, (q31_t)0x5b0f399, (q31_t)0x1a622907, (q31_t)0x5b622e6, (q31_t)0x1a6d9b70, (q31_t)0x5bb5472, (q31_t)0x1a790cd4, (q31_t)0x5c0883d, (q31_t)0x1a847d33, (q31_t)0x5c5be47, (q31_t)0x1a8fec8c, (q31_t)0x5caf690, (q31_t)0x1a9b5adf, (q31_t)0x5d03118, (q31_t)0x1aa6c82b, (q31_t)0x5d56ddd, (q31_t)0x1ab23471, (q31_t)0x5daace1, (q31_t)0x1abd9faf, (q31_t)0x5dfee22, (q31_t)0x1ac909e5, (q31_t)0x5e531a1, (q31_t)0x1ad47312, (q31_t)0x5ea775e, (q31_t)0x1adfdb37, (q31_t)0x5efbf58, (q31_t)0x1aeb4253, (q31_t)0x5f5098f, (q31_t)0x1af6a865, (q31_t)0x5fa5603, (q31_t)0x1b020d6c, (q31_t)0x5ffa4b3, (q31_t)0x1b0d716a, (q31_t)0x604f5a0, (q31_t)0x1b18d45c, (q31_t)0x60a48c9, (q31_t)0x1b243643, (q31_t)0x60f9e2e, (q31_t)0x1b2f971e, (q31_t)0x614f5cf, (q31_t)0x1b3af6ec, (q31_t)0x61a4fac, (q31_t)0x1b4655ae, (q31_t)0x61fabc4, (q31_t)0x1b51b363, (q31_t)0x6250a18, (q31_t)0x1b5d100a, (q31_t)0x62a6aa6, (q31_t)0x1b686ba3, (q31_t)0x62fcd6f, (q31_t)0x1b73c62d, (q31_t)0x6353273, (q31_t)0x1b7f1fa9, (q31_t)0x63a99b1, (q31_t)0x1b8a7815, (q31_t)0x6400329, (q31_t)0x1b95cf71, (q31_t)0x6456edb, (q31_t)0x1ba125bd, (q31_t)0x64adcc7, (q31_t)0x1bac7af9, (q31_t)0x6504ced, (q31_t)0x1bb7cf23, (q31_t)0x655bf4c, (q31_t)0x1bc3223c, (q31_t)0x65b33e4, (q31_t)0x1bce7442, (q31_t)0x660aab5, (q31_t)0x1bd9c537, (q31_t)0x66623be, (q31_t)0x1be51518, (q31_t)0x66b9f01, (q31_t)0x1bf063e6, (q31_t)0x6711c7b, (q31_t)0x1bfbb1a0, (q31_t)0x6769c2e, (q31_t)0x1c06fe46, (q31_t)0x67c1e18, (q31_t)0x1c1249d8, (q31_t)0x681a23a, (q31_t)0x1c1d9454, (q31_t)0x6872894, (q31_t)0x1c28ddbb, (q31_t)0x68cb124, (q31_t)0x1c34260c, (q31_t)0x6923bec, (q31_t)0x1c3f6d47, (q31_t)0x697c8eb, (q31_t)0x1c4ab36b, (q31_t)0x69d5820, (q31_t)0x1c55f878, (q31_t)0x6a2e98b, (q31_t)0x1c613c6d, (q31_t)0x6a87d2d, (q31_t)0x1c6c7f4a, (q31_t)0x6ae1304, (q31_t)0x1c77c10e, (q31_t)0x6b3ab12, (q31_t)0x1c8301b9, (q31_t)0x6b94554, (q31_t)0x1c8e414b, (q31_t)0x6bee1cd, (q31_t)0x1c997fc4, (q31_t)0x6c4807a, (q31_t)0x1ca4bd21, (q31_t)0x6ca215c, (q31_t)0x1caff965, (q31_t)0x6cfc472, (q31_t)0x1cbb348d, (q31_t)0x6d569be, (q31_t)0x1cc66e99, (q31_t)0x6db113d, (q31_t)0x1cd1a78a, (q31_t)0x6e0baf0, (q31_t)0x1cdcdf5e, (q31_t)0x6e666d7, (q31_t)0x1ce81615, (q31_t)0x6ec14f2, (q31_t)0x1cf34baf, (q31_t)0x6f1c540, (q31_t)0x1cfe802b, (q31_t)0x6f777c1, (q31_t)0x1d09b389, (q31_t)0x6fd2c75, (q31_t)0x1d14e5c9, (q31_t)0x702e35c, (q31_t)0x1d2016e9, (q31_t)0x7089c75, (q31_t)0x1d2b46ea, (q31_t)0x70e57c0, (q31_t)0x1d3675cb, (q31_t)0x714153e, (q31_t)0x1d41a38c, (q31_t)0x719d4ed, (q31_t)0x1d4cd02c, (q31_t)0x71f96ce, (q31_t)0x1d57fbaa, (q31_t)0x7255ae0, (q31_t)0x1d632608, (q31_t)0x72b2123, (q31_t)0x1d6e4f43, (q31_t)0x730e997, (q31_t)0x1d79775c, (q31_t)0x736b43c, (q31_t)0x1d849e51, (q31_t)0x73c8111, (q31_t)0x1d8fc424, (q31_t)0x7425016, (q31_t)0x1d9ae8d2, (q31_t)0x748214c, (q31_t)0x1da60c5d, (q31_t)0x74df4b1, (q31_t)0x1db12ec3, (q31_t)0x753ca46, (q31_t)0x1dbc5004, (q31_t)0x759a20a, (q31_t)0x1dc7701f, (q31_t)0x75f7bfe, (q31_t)0x1dd28f15, (q31_t)0x7655820, (q31_t)0x1dddace4, (q31_t)0x76b3671, (q31_t)0x1de8c98c, (q31_t)0x77116f0, (q31_t)0x1df3e50d, (q31_t)0x776f99d, (q31_t)0x1dfeff67, (q31_t)0x77cde79, (q31_t)0x1e0a1898, (q31_t)0x782c582, (q31_t)0x1e1530a1, (q31_t)0x788aeb9, (q31_t)0x1e204781, (q31_t)0x78e9a1d, (q31_t)0x1e2b5d38, (q31_t)0x79487ae, (q31_t)0x1e3671c5, (q31_t)0x79a776c, (q31_t)0x1e418528, (q31_t)0x7a06957, (q31_t)0x1e4c9760, (q31_t)0x7a65d6e, (q31_t)0x1e57a86d, (q31_t)0x7ac53b1, (q31_t)0x1e62b84f, (q31_t)0x7b24c20, (q31_t)0x1e6dc705, (q31_t)0x7b846ba, (q31_t)0x1e78d48e, (q31_t)0x7be4381, (q31_t)0x1e83e0eb, (q31_t)0x7c44272, (q31_t)0x1e8eec1b, (q31_t)0x7ca438f, (q31_t)0x1e99f61d, (q31_t)0x7d046d6, (q31_t)0x1ea4fef0, (q31_t)0x7d64c47, (q31_t)0x1eb00696, (q31_t)0x7dc53e3, (q31_t)0x1ebb0d0d, (q31_t)0x7e25daa, (q31_t)0x1ec61254, (q31_t)0x7e8699a, (q31_t)0x1ed1166b, (q31_t)0x7ee77b3, (q31_t)0x1edc1953, (q31_t)0x7f487f6, (q31_t)0x1ee71b0a, (q31_t)0x7fa9a62, (q31_t)0x1ef21b90, (q31_t)0x800aef7, (q31_t)0x1efd1ae4, (q31_t)0x806c5b5, (q31_t)0x1f081907, (q31_t)0x80cde9b, (q31_t)0x1f1315f7, (q31_t)0x812f9a9, (q31_t)0x1f1e11b5, (q31_t)0x81916df, (q31_t)0x1f290c3f, (q31_t)0x81f363d, (q31_t)0x1f340596, (q31_t)0x82557c3, (q31_t)0x1f3efdb9, (q31_t)0x82b7b70, (q31_t)0x1f49f4a8, (q31_t)0x831a143, (q31_t)0x1f54ea62, (q31_t)0x837c93e, (q31_t)0x1f5fdee6, (q31_t)0x83df35f, (q31_t)0x1f6ad235, (q31_t)0x8441fa6, (q31_t)0x1f75c44e, (q31_t)0x84a4e14, (q31_t)0x1f80b531, (q31_t)0x8507ea7, (q31_t)0x1f8ba4dc, (q31_t)0x856b160, (q31_t)0x1f969350, (q31_t)0x85ce63e, (q31_t)0x1fa1808c, (q31_t)0x8631d42, (q31_t)0x1fac6c91, (q31_t)0x869566a, (q31_t)0x1fb7575c, (q31_t)0x86f91b7, (q31_t)0x1fc240ef, (q31_t)0x875cf28, (q31_t)0x1fcd2948, (q31_t)0x87c0ebd, (q31_t)0x1fd81067, (q31_t)0x8825077, (q31_t)0x1fe2f64c, (q31_t)0x8889454, (q31_t)0x1feddaf6, (q31_t)0x88eda54, (q31_t)0x1ff8be65, (q31_t)0x8952278, (q31_t)0x2003a099, (q31_t)0x89b6cbf, (q31_t)0x200e8190, (q31_t)0x8a1b928, (q31_t)0x2019614c, (q31_t)0x8a807b4, (q31_t)0x20243fca, (q31_t)0x8ae5862, (q31_t)0x202f1d0b, (q31_t)0x8b4ab32, (q31_t)0x2039f90f, (q31_t)0x8bb0023, (q31_t)0x2044d3d4, (q31_t)0x8c15736, (q31_t)0x204fad5b, (q31_t)0x8c7b06b, (q31_t)0x205a85a3, (q31_t)0x8ce0bc0, (q31_t)0x20655cac, (q31_t)0x8d46936, (q31_t)0x20703275, (q31_t)0x8dac8cd, (q31_t)0x207b06fe, (q31_t)0x8e12a84, (q31_t)0x2085da46, (q31_t)0x8e78e5b, (q31_t)0x2090ac4d, (q31_t)0x8edf452, (q31_t)0x209b7d13, (q31_t)0x8f45c68, (q31_t)0x20a64c97, (q31_t)0x8fac69e, (q31_t)0x20b11ad9, (q31_t)0x90132f2, (q31_t)0x20bbe7d8, (q31_t)0x907a166, (q31_t)0x20c6b395, (q31_t)0x90e11f7, (q31_t)0x20d17e0d, (q31_t)0x91484a8, (q31_t)0x20dc4742, (q31_t)0x91af976, (q31_t)0x20e70f32, (q31_t)0x9217062, (q31_t)0x20f1d5de, (q31_t)0x927e96b, (q31_t)0x20fc9b44, (q31_t)0x92e6492, (q31_t)0x21075f65, (q31_t)0x934e1d6, (q31_t)0x21122240, (q31_t)0x93b6137, (q31_t)0x211ce3d5, (q31_t)0x941e2b4, (q31_t)0x2127a423, (q31_t)0x948664d, (q31_t)0x21326329, (q31_t)0x94eec03, (q31_t)0x213d20e8, (q31_t)0x95573d4, (q31_t)0x2147dd5f, (q31_t)0x95bfdc1, (q31_t)0x2152988d, (q31_t)0x96289c9, (q31_t)0x215d5273, (q31_t)0x96917ec, (q31_t)0x21680b0f, (q31_t)0x96fa82a, (q31_t)0x2172c262, (q31_t)0x9763a83, (q31_t)0x217d786a, (q31_t)0x97ccef5, (q31_t)0x21882d28, (q31_t)0x9836582, (q31_t)0x2192e09b, (q31_t)0x989fe29, (q31_t)0x219d92c2, (q31_t)0x99098e9, (q31_t)0x21a8439e, (q31_t)0x99735c2, (q31_t)0x21b2f32e, (q31_t)0x99dd4b4, (q31_t)0x21bda171, (q31_t)0x9a475bf, (q31_t)0x21c84e67, (q31_t)0x9ab18e3, (q31_t)0x21d2fa0f, (q31_t)0x9b1be1e, (q31_t)0x21dda46a, (q31_t)0x9b86572, (q31_t)0x21e84d76, (q31_t)0x9bf0edd, (q31_t)0x21f2f534, (q31_t)0x9c5ba60, (q31_t)0x21fd9ba3, (q31_t)0x9cc67fa, (q31_t)0x220840c2, (q31_t)0x9d317ab, (q31_t)0x2212e492, (q31_t)0x9d9c973, (q31_t)0x221d8711, (q31_t)0x9e07d51, (q31_t)0x2228283f, (q31_t)0x9e73346, (q31_t)0x2232c81c, (q31_t)0x9edeb50, (q31_t)0x223d66a8, (q31_t)0x9f4a570, (q31_t)0x224803e2, (q31_t)0x9fb61a5, (q31_t)0x22529fca, (q31_t)0xa021fef, (q31_t)0x225d3a5e, (q31_t)0xa08e04f, (q31_t)0x2267d3a0, (q31_t)0xa0fa2c3, (q31_t)0x22726b8e, (q31_t)0xa16674b, (q31_t)0x227d0228, (q31_t)0xa1d2de7, (q31_t)0x2287976e, (q31_t)0xa23f698, (q31_t)0x22922b5e, (q31_t)0xa2ac15b, (q31_t)0x229cbdfa, (q31_t)0xa318e32, (q31_t)0x22a74f40, (q31_t)0xa385d1d, (q31_t)0x22b1df30, (q31_t)0xa3f2e19, (q31_t)0x22bc6dca, (q31_t)0xa460129, (q31_t)0x22c6fb0c, (q31_t)0xa4cd64b, (q31_t)0x22d186f8, (q31_t)0xa53ad7e, (q31_t)0x22dc118c, (q31_t)0xa5a86c4, (q31_t)0x22e69ac8, (q31_t)0xa61621b, (q31_t)0x22f122ab, (q31_t)0xa683f83, (q31_t)0x22fba936, (q31_t)0xa6f1efc, (q31_t)0x23062e67, (q31_t)0xa760086, (q31_t)0x2310b23e, (q31_t)0xa7ce420, (q31_t)0x231b34bc, (q31_t)0xa83c9ca, (q31_t)0x2325b5df, (q31_t)0xa8ab184, (q31_t)0x233035a7, (q31_t)0xa919b4e, (q31_t)0x233ab414, (q31_t)0xa988727, (q31_t)0x23453125, (q31_t)0xa9f750f, (q31_t)0x234facda, (q31_t)0xaa66506, (q31_t)0x235a2733, (q31_t)0xaad570c, (q31_t)0x2364a02e, (q31_t)0xab44b1f, (q31_t)0x236f17cc, (q31_t)0xabb4141, (q31_t)0x23798e0d, (q31_t)0xac23971, (q31_t)0x238402ef, (q31_t)0xac933ae, (q31_t)0x238e7673, (q31_t)0xad02ff8, (q31_t)0x2398e898, (q31_t)0xad72e4f, (q31_t)0x23a3595e, (q31_t)0xade2eb3, (q31_t)0x23adc8c4, (q31_t)0xae53123, (q31_t)0x23b836ca, (q31_t)0xaec35a0, (q31_t)0x23c2a36f, (q31_t)0xaf33c28, (q31_t)0x23cd0eb3, (q31_t)0xafa44bc, (q31_t)0x23d77896, (q31_t)0xb014f5b, (q31_t)0x23e1e117, (q31_t)0xb085c05, (q31_t)0x23ec4837, (q31_t)0xb0f6aba, (q31_t)0x23f6adf3, (q31_t)0xb167b79, (q31_t)0x2401124d, (q31_t)0xb1d8e43, (q31_t)0x240b7543, (q31_t)0xb24a316, (q31_t)0x2415d6d5, (q31_t)0xb2bb9f4, (q31_t)0x24203704, (q31_t)0xb32d2da, (q31_t)0x242a95ce, (q31_t)0xb39edca, (q31_t)0x2434f332, (q31_t)0xb410ac3, (q31_t)0x243f4f32, (q31_t)0xb4829c4, (q31_t)0x2449a9cc, (q31_t)0xb4f4acd, (q31_t)0x245402ff, (q31_t)0xb566ddf, (q31_t)0x245e5acc, (q31_t)0xb5d92f8, (q31_t)0x2468b132, (q31_t)0xb64ba19, (q31_t)0x24730631, (q31_t)0xb6be341, (q31_t)0x247d59c8, (q31_t)0xb730e70, (q31_t)0x2487abf7, (q31_t)0xb7a3ba5, (q31_t)0x2491fcbe, (q31_t)0xb816ae1, (q31_t)0x249c4c1b, (q31_t)0xb889c23, (q31_t)0x24a69a0f, (q31_t)0xb8fcf6b, (q31_t)0x24b0e699, (q31_t)0xb9704b9, (q31_t)0x24bb31ba, (q31_t)0xb9e3c0b, (q31_t)0x24c57b6f, (q31_t)0xba57563, (q31_t)0x24cfc3ba, (q31_t)0xbacb0bf, (q31_t)0x24da0a9a, (q31_t)0xbb3ee20, (q31_t)0x24e4500e, (q31_t)0xbbb2d85, (q31_t)0x24ee9415, (q31_t)0xbc26eee, (q31_t)0x24f8d6b0, (q31_t)0xbc9b25a, (q31_t)0x250317df, (q31_t)0xbd0f7ca, (q31_t)0x250d57a0, (q31_t)0xbd83f3d, (q31_t)0x251795f3, (q31_t)0xbdf88b3, (q31_t)0x2521d2d8, (q31_t)0xbe6d42b, (q31_t)0x252c0e4f, (q31_t)0xbee21a5, (q31_t)0x25364857, (q31_t)0xbf57121, (q31_t)0x254080ef, (q31_t)0xbfcc29f, (q31_t)0x254ab818, (q31_t)0xc04161e, (q31_t)0x2554edd1, (q31_t)0xc0b6b9e, (q31_t)0x255f2219, (q31_t)0xc12c31f, (q31_t)0x256954f1, (q31_t)0xc1a1ca0, (q31_t)0x25738657, (q31_t)0xc217822, (q31_t)0x257db64c, (q31_t)0xc28d5a3, (q31_t)0x2587e4cf, (q31_t)0xc303524, (q31_t)0x259211df, (q31_t)0xc3796a5, (q31_t)0x259c3d7c, (q31_t)0xc3efa25, (q31_t)0x25a667a7, (q31_t)0xc465fa3, (q31_t)0x25b0905d, (q31_t)0xc4dc720, (q31_t)0x25bab7a0, (q31_t)0xc55309b, (q31_t)0x25c4dd6e, (q31_t)0xc5c9c14, (q31_t)0x25cf01c8, (q31_t)0xc64098b, (q31_t)0x25d924ac, (q31_t)0xc6b78ff, (q31_t)0x25e3461b, (q31_t)0xc72ea70, (q31_t)0x25ed6614, (q31_t)0xc7a5dde, (q31_t)0x25f78497, (q31_t)0xc81d349, (q31_t)0x2601a1a2, (q31_t)0xc894aaf, (q31_t)0x260bbd37, (q31_t)0xc90c412, (q31_t)0x2615d754, (q31_t)0xc983f70, (q31_t)0x261feffa, (q31_t)0xc9fbcca, (q31_t)0x262a0727, (q31_t)0xca73c1e, (q31_t)0x26341cdb, (q31_t)0xcaebd6e, (q31_t)0x263e3117, (q31_t)0xcb640b8, (q31_t)0x264843d9, (q31_t)0xcbdc5fc, (q31_t)0x26525521, (q31_t)0xcc54d3a, (q31_t)0x265c64ef, (q31_t)0xcccd671, (q31_t)0x26667342, (q31_t)0xcd461a2, (q31_t)0x2670801a, (q31_t)0xcdbeecc, (q31_t)0x267a8b77, (q31_t)0xce37def, (q31_t)0x26849558, (q31_t)0xceb0f0a, (q31_t)0x268e9dbd, (q31_t)0xcf2a21d, (q31_t)0x2698a4a6, (q31_t)0xcfa3729, (q31_t)0x26a2aa11, (q31_t)0xd01ce2b, (q31_t)0x26acadff, (q31_t)0xd096725, (q31_t)0x26b6b070, (q31_t)0xd110216, (q31_t)0x26c0b162, (q31_t)0xd189efe, (q31_t)0x26cab0d6, (q31_t)0xd203ddc, (q31_t)0x26d4aecb, (q31_t)0xd27deb0, (q31_t)0x26deab41, (q31_t)0xd2f817b, (q31_t)0x26e8a637, (q31_t)0xd37263a, (q31_t)0x26f29fad, (q31_t)0xd3eccef, (q31_t)0x26fc97a3, (q31_t)0xd467599, (q31_t)0x27068e18, (q31_t)0xd4e2037, (q31_t)0x2710830c, (q31_t)0xd55ccca, (q31_t)0x271a767e, (q31_t)0xd5d7b50, (q31_t)0x2724686e, (q31_t)0xd652bcb, (q31_t)0x272e58dc, (q31_t)0xd6cde39, (q31_t)0x273847c8, (q31_t)0xd74929a, (q31_t)0x27423530, (q31_t)0xd7c48ee, (q31_t)0x274c2115, (q31_t)0xd840134, (q31_t)0x27560b76, (q31_t)0xd8bbb6d, (q31_t)0x275ff452, (q31_t)0xd937798, (q31_t)0x2769dbaa, (q31_t)0xd9b35b4, (q31_t)0x2773c17d, (q31_t)0xda2f5c2, (q31_t)0x277da5cb, (q31_t)0xdaab7c0, (q31_t)0x27878893, (q31_t)0xdb27bb0, (q31_t)0x279169d5, (q31_t)0xdba4190, (q31_t)0x279b4990, (q31_t)0xdc20960, (q31_t)0x27a527c4, (q31_t)0xdc9d320, (q31_t)0x27af0472, (q31_t)0xdd19ed0, (q31_t)0x27b8df97, (q31_t)0xdd96c6f, (q31_t)0x27c2b934, (q31_t)0xde13bfd, (q31_t)0x27cc9149, (q31_t)0xde90d79, (q31_t)0x27d667d5, (q31_t)0xdf0e0e4, (q31_t)0x27e03cd8, (q31_t)0xdf8b63d, (q31_t)0x27ea1052, (q31_t)0xe008d84, (q31_t)0x27f3e241, (q31_t)0xe0866b8, (q31_t)0x27fdb2a7, (q31_t)0xe1041d9, (q31_t)0x28078181, (q31_t)0xe181ee8, (q31_t)0x28114ed0, (q31_t)0xe1ffde2, (q31_t)0x281b1a94, (q31_t)0xe27dec9, (q31_t)0x2824e4cc, (q31_t)0xe2fc19c, (q31_t)0x282ead78, (q31_t)0xe37a65b, (q31_t)0x28387498, (q31_t)0xe3f8d05, (q31_t)0x28423a2a, (q31_t)0xe47759a, (q31_t)0x284bfe2f, (q31_t)0xe4f6019, (q31_t)0x2855c0a6, (q31_t)0xe574c84, (q31_t)0x285f8190, (q31_t)0xe5f3ad8, (q31_t)0x286940ea, (q31_t)0xe672b16, (q31_t)0x2872feb6, (q31_t)0xe6f1d3d, (q31_t)0x287cbaf3, (q31_t)0xe77114e, (q31_t)0x288675a0, (q31_t)0xe7f0748, (q31_t)0x28902ebd, (q31_t)0xe86ff2a, (q31_t)0x2899e64a, (q31_t)0xe8ef8f4, (q31_t)0x28a39c46, (q31_t)0xe96f4a7, (q31_t)0x28ad50b1, (q31_t)0xe9ef241, (q31_t)0x28b7038b, (q31_t)0xea6f1c2, (q31_t)0x28c0b4d2, (q31_t)0xeaef32b, (q31_t)0x28ca6488, (q31_t)0xeb6f67a, (q31_t)0x28d412ab, (q31_t)0xebefbb0, (q31_t)0x28ddbf3b, (q31_t)0xec702cb, (q31_t)0x28e76a37, (q31_t)0xecf0bcd, (q31_t)0x28f113a0, (q31_t)0xed716b4, (q31_t)0x28fabb75, (q31_t)0xedf2380, (q31_t)0x290461b5, (q31_t)0xee73231, (q31_t)0x290e0661, (q31_t)0xeef42c7, (q31_t)0x2917a977, (q31_t)0xef75541, (q31_t)0x29214af8, (q31_t)0xeff699f, (q31_t)0x292aeae3, (q31_t)0xf077fe1, (q31_t)0x29348937, (q31_t)0xf0f9805, (q31_t)0x293e25f5, (q31_t)0xf17b20d, (q31_t)0x2947c11c, (q31_t)0xf1fcdf8, (q31_t)0x29515aab, (q31_t)0xf27ebc5, (q31_t)0x295af2a3, (q31_t)0xf300b74, (q31_t)0x29648902, (q31_t)0xf382d05, (q31_t)0x296e1dc9, (q31_t)0xf405077, (q31_t)0x2977b0f7, (q31_t)0xf4875ca, (q31_t)0x2981428c, (q31_t)0xf509cfe, (q31_t)0x298ad287, (q31_t)0xf58c613, (q31_t)0x299460e8, (q31_t)0xf60f108, (q31_t)0x299dedaf, (q31_t)0xf691ddd, (q31_t)0x29a778db, (q31_t)0xf714c91, (q31_t)0x29b1026c, (q31_t)0xf797d24, (q31_t)0x29ba8a61, (q31_t)0xf81af97, (q31_t)0x29c410ba, (q31_t)0xf89e3e8, (q31_t)0x29cd9578, (q31_t)0xf921a17, (q31_t)0x29d71899, (q31_t)0xf9a5225, (q31_t)0x29e09a1c, (q31_t)0xfa28c10, (q31_t)0x29ea1a03, (q31_t)0xfaac7d8, (q31_t)0x29f3984c, (q31_t)0xfb3057d, (q31_t)0x29fd14f6, (q31_t)0xfbb4500, (q31_t)0x2a069003, (q31_t)0xfc3865e, (q31_t)0x2a100970, (q31_t)0xfcbc999, (q31_t)0x2a19813f, (q31_t)0xfd40eaf, (q31_t)0x2a22f76e, (q31_t)0xfdc55a1, (q31_t)0x2a2c6bfd, (q31_t)0xfe49e6d, (q31_t)0x2a35deeb, (q31_t)0xfece915, (q31_t)0x2a3f503a, (q31_t)0xff53597, (q31_t)0x2a48bfe7, (q31_t)0xffd83f4, (q31_t)0x2a522df3, (q31_t)0x1005d42a, (q31_t)0x2a5b9a5d, (q31_t)0x100e2639, (q31_t)0x2a650525, (q31_t)0x10167a22, (q31_t)0x2a6e6e4b, (q31_t)0x101ecfe4, (q31_t)0x2a77d5ce, (q31_t)0x1027277e, (q31_t)0x2a813bae, (q31_t)0x102f80f1, (q31_t)0x2a8a9fea, (q31_t)0x1037dc3b, (q31_t)0x2a940283, (q31_t)0x1040395d, (q31_t)0x2a9d6377, (q31_t)0x10489856, (q31_t)0x2aa6c2c6, (q31_t)0x1050f926, (q31_t)0x2ab02071, (q31_t)0x10595bcd, (q31_t)0x2ab97c77, (q31_t)0x1061c04a, (q31_t)0x2ac2d6d6, (q31_t)0x106a269d, (q31_t)0x2acc2f90, (q31_t)0x10728ec6, (q31_t)0x2ad586a3, (q31_t)0x107af8c4, (q31_t)0x2adedc10, (q31_t)0x10836497, (q31_t)0x2ae82fd5, (q31_t)0x108bd23f, (q31_t)0x2af181f3, (q31_t)0x109441bb, (q31_t)0x2afad269, (q31_t)0x109cb30b, (q31_t)0x2b042137, (q31_t)0x10a5262f, (q31_t)0x2b0d6e5c, (q31_t)0x10ad9b26, (q31_t)0x2b16b9d9, (q31_t)0x10b611f1, (q31_t)0x2b2003ac, (q31_t)0x10be8a8d, (q31_t)0x2b294bd5, (q31_t)0x10c704fd, (q31_t)0x2b329255, (q31_t)0x10cf813e, (q31_t)0x2b3bd72a, (q31_t)0x10d7ff51, (q31_t)0x2b451a55, (q31_t)0x10e07f36, (q31_t)0x2b4e5bd4, (q31_t)0x10e900ec, (q31_t)0x2b579ba8, (q31_t)0x10f18472, (q31_t)0x2b60d9d0, (q31_t)0x10fa09c9, (q31_t)0x2b6a164d, (q31_t)0x110290f0, (q31_t)0x2b73511c, (q31_t)0x110b19e7, (q31_t)0x2b7c8a3f, (q31_t)0x1113a4ad, (q31_t)0x2b85c1b5, (q31_t)0x111c3142, (q31_t)0x2b8ef77d, (q31_t)0x1124bfa6, (q31_t)0x2b982b97, (q31_t)0x112d4fd9, (q31_t)0x2ba15e03, (q31_t)0x1135e1d9, (q31_t)0x2baa8ec0, (q31_t)0x113e75a8, (q31_t)0x2bb3bdce, (q31_t)0x11470b44, (q31_t)0x2bbceb2d, (q31_t)0x114fa2ad, (q31_t)0x2bc616dd, (q31_t)0x11583be2, (q31_t)0x2bcf40dc, (q31_t)0x1160d6e5, (q31_t)0x2bd8692b, (q31_t)0x116973b3, (q31_t)0x2be18fc9, (q31_t)0x1172124d, (q31_t)0x2beab4b6, (q31_t)0x117ab2b3, (q31_t)0x2bf3d7f2, (q31_t)0x118354e4, (q31_t)0x2bfcf97c, (q31_t)0x118bf8e0, (q31_t)0x2c061953, (q31_t)0x11949ea6, (q31_t)0x2c0f3779, (q31_t)0x119d4636, (q31_t)0x2c1853eb, (q31_t)0x11a5ef90, (q31_t)0x2c216eaa, (q31_t)0x11ae9ab4, (q31_t)0x2c2a87b6, (q31_t)0x11b747a0, (q31_t)0x2c339f0e, (q31_t)0x11bff656, (q31_t)0x2c3cb4b1, (q31_t)0x11c8a6d4, (q31_t)0x2c45c8a0, (q31_t)0x11d1591a, (q31_t)0x2c4edada, (q31_t)0x11da0d28, (q31_t)0x2c57eb5e, (q31_t)0x11e2c2fd, (q31_t)0x2c60fa2d, (q31_t)0x11eb7a9a, (q31_t)0x2c6a0746, (q31_t)0x11f433fd, (q31_t)0x2c7312a9, (q31_t)0x11fcef27, (q31_t)0x2c7c1c55, (q31_t)0x1205ac17, (q31_t)0x2c85244a, (q31_t)0x120e6acc, (q31_t)0x2c8e2a87, (q31_t)0x12172b48, (q31_t)0x2c972f0d, (q31_t)0x121fed88, (q31_t)0x2ca031da, (q31_t)0x1228b18d, (q31_t)0x2ca932ef, (q31_t)0x12317756, (q31_t)0x2cb2324c, (q31_t)0x123a3ee4, (q31_t)0x2cbb2fef, (q31_t)0x12430835, (q31_t)0x2cc42bd9, (q31_t)0x124bd34a, (q31_t)0x2ccd2609, (q31_t)0x1254a021, (q31_t)0x2cd61e7f, (q31_t)0x125d6ebc, (q31_t)0x2cdf153a, (q31_t)0x12663f19, (q31_t)0x2ce80a3a, (q31_t)0x126f1138, (q31_t)0x2cf0fd80, (q31_t)0x1277e518, (q31_t)0x2cf9ef09, (q31_t)0x1280babb, (q31_t)0x2d02ded7, (q31_t)0x1289921e, (q31_t)0x2d0bcce8, (q31_t)0x12926b41, (q31_t)0x2d14b93d, (q31_t)0x129b4626, (q31_t)0x2d1da3d5, (q31_t)0x12a422ca, (q31_t)0x2d268cb0, (q31_t)0x12ad012e, (q31_t)0x2d2f73cd, (q31_t)0x12b5e151, (q31_t)0x2d38592c, (q31_t)0x12bec333, (q31_t)0x2d413ccd, (q31_t)0x12c7a6d4, (q31_t)0x2d4a1eaf, (q31_t)0x12d08c33, (q31_t)0x2d52fed2, (q31_t)0x12d97350, (q31_t)0x2d5bdd36, (q31_t)0x12e25c2b, (q31_t)0x2d64b9da, (q31_t)0x12eb46c3, (q31_t)0x2d6d94bf, (q31_t)0x12f43318, (q31_t)0x2d766de2, (q31_t)0x12fd2129, (q31_t)0x2d7f4545, (q31_t)0x130610f7, (q31_t)0x2d881ae8, (q31_t)0x130f0280, (q31_t)0x2d90eec8, (q31_t)0x1317f5c6, (q31_t)0x2d99c0e7, (q31_t)0x1320eac6, (q31_t)0x2da29144, (q31_t)0x1329e181, (q31_t)0x2dab5fdf, (q31_t)0x1332d9f7, (q31_t)0x2db42cb6, (q31_t)0x133bd427, (q31_t)0x2dbcf7cb, (q31_t)0x1344d011, (q31_t)0x2dc5c11c, (q31_t)0x134dcdb4, (q31_t)0x2dce88aa, (q31_t)0x1356cd11, (q31_t)0x2dd74e73, (q31_t)0x135fce26, (q31_t)0x2de01278, (q31_t)0x1368d0f3, (q31_t)0x2de8d4b8, (q31_t)0x1371d579, (q31_t)0x2df19534, (q31_t)0x137adbb6, (q31_t)0x2dfa53e9, (q31_t)0x1383e3ab, (q31_t)0x2e0310d9, (q31_t)0x138ced57, (q31_t)0x2e0bcc03, (q31_t)0x1395f8ba, (q31_t)0x2e148566, (q31_t)0x139f05d3, (q31_t)0x2e1d3d03, (q31_t)0x13a814a2, (q31_t)0x2e25f2d8, (q31_t)0x13b12526, (q31_t)0x2e2ea6e6, (q31_t)0x13ba3760, (q31_t)0x2e37592c, (q31_t)0x13c34b4f, (q31_t)0x2e4009aa, (q31_t)0x13cc60f2, (q31_t)0x2e48b860, (q31_t)0x13d5784a, (q31_t)0x2e51654c, (q31_t)0x13de9156, (q31_t)0x2e5a1070, (q31_t)0x13e7ac15, (q31_t)0x2e62b9ca, (q31_t)0x13f0c887, (q31_t)0x2e6b615a, (q31_t)0x13f9e6ad, (q31_t)0x2e740720, (q31_t)0x14030684, (q31_t)0x2e7cab1c, (q31_t)0x140c280e, (q31_t)0x2e854d4d, (q31_t)0x14154b4a, (q31_t)0x2e8dedb3, (q31_t)0x141e7037, (q31_t)0x2e968c4d, (q31_t)0x142796d5, (q31_t)0x2e9f291b, (q31_t)0x1430bf24, (q31_t)0x2ea7c41e, (q31_t)0x1439e923, (q31_t)0x2eb05d53, (q31_t)0x144314d3, (q31_t)0x2eb8f4bc, (q31_t)0x144c4232, (q31_t)0x2ec18a58, (q31_t)0x14557140, (q31_t)0x2eca1e27, (q31_t)0x145ea1fd, (q31_t)0x2ed2b027, (q31_t)0x1467d469, (q31_t)0x2edb405a, (q31_t)0x14710883, (q31_t)0x2ee3cebe, (q31_t)0x147a3e4b, (q31_t)0x2eec5b53, (q31_t)0x148375c1, (q31_t)0x2ef4e619, (q31_t)0x148caee4, (q31_t)0x2efd6f10, (q31_t)0x1495e9b3, (q31_t)0x2f05f637, (q31_t)0x149f2630, (q31_t)0x2f0e7b8e, (q31_t)0x14a86458, (q31_t)0x2f16ff14, (q31_t)0x14b1a42c, (q31_t)0x2f1f80ca, (q31_t)0x14bae5ab, (q31_t)0x2f2800af, (q31_t)0x14c428d6, (q31_t)0x2f307ec2, (q31_t)0x14cd6dab, (q31_t)0x2f38fb03, (q31_t)0x14d6b42b, (q31_t)0x2f417573, (q31_t)0x14dffc54, (q31_t)0x2f49ee0f, (q31_t)0x14e94627, (q31_t)0x2f5264da, (q31_t)0x14f291a4, (q31_t)0x2f5ad9d1, (q31_t)0x14fbdec9, (q31_t)0x2f634cf5, (q31_t)0x15052d97, (q31_t)0x2f6bbe45, (q31_t)0x150e7e0d, (q31_t)0x2f742dc1, (q31_t)0x1517d02b, (q31_t)0x2f7c9b69, (q31_t)0x152123f0, (q31_t)0x2f85073c, (q31_t)0x152a795d, (q31_t)0x2f8d713a, (q31_t)0x1533d070, (q31_t)0x2f95d963, (q31_t)0x153d292a, (q31_t)0x2f9e3fb6, (q31_t)0x15468389, (q31_t)0x2fa6a433, (q31_t)0x154fdf8f, (q31_t)0x2faf06da, (q31_t)0x15593d3a, (q31_t)0x2fb767aa, (q31_t)0x15629c89, (q31_t)0x2fbfc6a3, (q31_t)0x156bfd7d, (q31_t)0x2fc823c5, (q31_t)0x15756016, (q31_t)0x2fd07f0f, (q31_t)0x157ec452, (q31_t)0x2fd8d882, (q31_t)0x15882a32, (q31_t)0x2fe1301c, (q31_t)0x159191b5, (q31_t)0x2fe985de, (q31_t)0x159afadb, (q31_t)0x2ff1d9c7, (q31_t)0x15a465a3, (q31_t)0x2ffa2bd6, (q31_t)0x15add20d, (q31_t)0x30027c0c, (q31_t)0x15b74019, (q31_t)0x300aca69, (q31_t)0x15c0afc6, (q31_t)0x301316eb, (q31_t)0x15ca2115, (q31_t)0x301b6193, (q31_t)0x15d39403, (q31_t)0x3023aa5f, (q31_t)0x15dd0892, (q31_t)0x302bf151, (q31_t)0x15e67ec1, (q31_t)0x30343667, (q31_t)0x15eff690, (q31_t)0x303c79a2, (q31_t)0x15f96ffd, (q31_t)0x3044bb00, (q31_t)0x1602eb0a, (q31_t)0x304cfa83, (q31_t)0x160c67b4, (q31_t)0x30553828, (q31_t)0x1615e5fd, (q31_t)0x305d73f0, (q31_t)0x161f65e4, (q31_t)0x3065addb, (q31_t)0x1628e767, (q31_t)0x306de5e9, (q31_t)0x16326a88, (q31_t)0x30761c18, (q31_t)0x163bef46, (q31_t)0x307e5069, (q31_t)0x1645759f, (q31_t)0x308682dc, (q31_t)0x164efd94, (q31_t)0x308eb36f, (q31_t)0x16588725, (q31_t)0x3096e223, (q31_t)0x16621251, (q31_t)0x309f0ef8, (q31_t)0x166b9f18, (q31_t)0x30a739ed, (q31_t)0x16752d79, (q31_t)0x30af6302, (q31_t)0x167ebd74, (q31_t)0x30b78a36, (q31_t)0x16884f09, (q31_t)0x30bfaf89, (q31_t)0x1691e237, (q31_t)0x30c7d2fb, (q31_t)0x169b76fe, (q31_t)0x30cff48c, (q31_t)0x16a50d5d, (q31_t)0x30d8143b, (q31_t)0x16aea555, (q31_t)0x30e03208, (q31_t)0x16b83ee4, (q31_t)0x30e84df3, (q31_t)0x16c1da0b, (q31_t)0x30f067fb, (q31_t)0x16cb76c9, (q31_t)0x30f8801f, (q31_t)0x16d5151d, (q31_t)0x31009661, (q31_t)0x16deb508, (q31_t)0x3108aabf, (q31_t)0x16e85689, (q31_t)0x3110bd39, (q31_t)0x16f1f99f, (q31_t)0x3118cdcf, (q31_t)0x16fb9e4b, (q31_t)0x3120dc80, (q31_t)0x1705448b, (q31_t)0x3128e94c, (q31_t)0x170eec60, (q31_t)0x3130f433, (q31_t)0x171895c9, (q31_t)0x3138fd35, (q31_t)0x172240c5, (q31_t)0x31410450, (q31_t)0x172bed55, (q31_t)0x31490986, (q31_t)0x17359b78, (q31_t)0x31510cd5, (q31_t)0x173f4b2e, (q31_t)0x31590e3e, (q31_t)0x1748fc75, (q31_t)0x31610dbf, (q31_t)0x1752af4f, (q31_t)0x31690b59, (q31_t)0x175c63ba, (q31_t)0x3171070c, (q31_t)0x176619b6, (q31_t)0x317900d6, (q31_t)0x176fd143, (q31_t)0x3180f8b8, (q31_t)0x17798a60, (q31_t)0x3188eeb2, (q31_t)0x1783450d, (q31_t)0x3190e2c3, (q31_t)0x178d014a, (q31_t)0x3198d4ea, (q31_t)0x1796bf16, (q31_t)0x31a0c528, (q31_t)0x17a07e70, (q31_t)0x31a8b37c, (q31_t)0x17aa3f5a, (q31_t)0x31b09fe7, (q31_t)0x17b401d1, (q31_t)0x31b88a66, (q31_t)0x17bdc5d6, (q31_t)0x31c072fb, (q31_t)0x17c78b68, (q31_t)0x31c859a5, (q31_t)0x17d15288, (q31_t)0x31d03e64, (q31_t)0x17db1b34, (q31_t)0x31d82137, (q31_t)0x17e4e56c, (q31_t)0x31e0021e, (q31_t)0x17eeb130, (q31_t)0x31e7e118, (q31_t)0x17f87e7f, (q31_t)0x31efbe27, (q31_t)0x18024d59, (q31_t)0x31f79948, (q31_t)0x180c1dbf, (q31_t)0x31ff727c, (q31_t)0x1815efae, (q31_t)0x320749c3, (q31_t)0x181fc328, (q31_t)0x320f1f1c, (q31_t)0x1829982b, (q31_t)0x3216f287, (q31_t)0x18336eb7, (q31_t)0x321ec403, (q31_t)0x183d46cc, (q31_t)0x32269391, (q31_t)0x18472069, (q31_t)0x322e6130, (q31_t)0x1850fb8e, (q31_t)0x32362ce0, (q31_t)0x185ad83c, (q31_t)0x323df6a0, (q31_t)0x1864b670, (q31_t)0x3245be70, (q31_t)0x186e962b, (q31_t)0x324d8450, (q31_t)0x1878776d, (q31_t)0x32554840, (q31_t)0x18825a35, (q31_t)0x325d0a3e, (q31_t)0x188c3e83, (q31_t)0x3264ca4c, (q31_t)0x18962456, (q31_t)0x326c8868, (q31_t)0x18a00bae, (q31_t)0x32744493, (q31_t)0x18a9f48a, (q31_t)0x327bfecc, (q31_t)0x18b3deeb, (q31_t)0x3283b712, (q31_t)0x18bdcad0, (q31_t)0x328b6d66, (q31_t)0x18c7b838, (q31_t)0x329321c7, (q31_t)0x18d1a724, (q31_t)0x329ad435, (q31_t)0x18db9792, (q31_t)0x32a284b0, (q31_t)0x18e58982, (q31_t)0x32aa3336, (q31_t)0x18ef7cf4, (q31_t)0x32b1dfc9, (q31_t)0x18f971e8, (q31_t)0x32b98a67, (q31_t)0x1903685d, (q31_t)0x32c13311, (q31_t)0x190d6053, (q31_t)0x32c8d9c6, (q31_t)0x191759c9, (q31_t)0x32d07e85, (q31_t)0x192154bf, (q31_t)0x32d82150, (q31_t)0x192b5135, (q31_t)0x32dfc224, (q31_t)0x19354f2a, (q31_t)0x32e76102, (q31_t)0x193f4e9e, (q31_t)0x32eefdea, (q31_t)0x19494f90, (q31_t)0x32f698db, (q31_t)0x19535201, (q31_t)0x32fe31d5, (q31_t)0x195d55ef, (q31_t)0x3305c8d7, (q31_t)0x19675b5a, (q31_t)0x330d5de3, (q31_t)0x19716243, (q31_t)0x3314f0f6, (q31_t)0x197b6aa8, (q31_t)0x331c8211, (q31_t)0x19857489, (q31_t)0x33241134, (q31_t)0x198f7fe6, (q31_t)0x332b9e5e, (q31_t)0x19998cbe, (q31_t)0x3333298f, (q31_t)0x19a39b11, (q31_t)0x333ab2c6, (q31_t)0x19adaadf, (q31_t)0x33423a04, (q31_t)0x19b7bc27, (q31_t)0x3349bf48, (q31_t)0x19c1cee9, (q31_t)0x33514292, (q31_t)0x19cbe325, (q31_t)0x3358c3e2, (q31_t)0x19d5f8d9, (q31_t)0x33604336, (q31_t)0x19e01006, (q31_t)0x3367c090, (q31_t)0x19ea28ac, (q31_t)0x336f3bee, (q31_t)0x19f442c9, (q31_t)0x3376b551, (q31_t)0x19fe5e5e, (q31_t)0x337e2cb7, (q31_t)0x1a087b69, (q31_t)0x3385a222, (q31_t)0x1a1299ec, (q31_t)0x338d1590, (q31_t)0x1a1cb9e5, (q31_t)0x33948701, (q31_t)0x1a26db54, (q31_t)0x339bf675, (q31_t)0x1a30fe38, (q31_t)0x33a363ec, (q31_t)0x1a3b2292, (q31_t)0x33aacf65, (q31_t)0x1a454860, (q31_t)0x33b238e0, (q31_t)0x1a4f6fa3, (q31_t)0x33b9a05d, (q31_t)0x1a599859, (q31_t)0x33c105db, (q31_t)0x1a63c284, (q31_t)0x33c8695b, (q31_t)0x1a6dee21, (q31_t)0x33cfcadc, (q31_t)0x1a781b31, (q31_t)0x33d72a5d, (q31_t)0x1a8249b4, (q31_t)0x33de87de, (q31_t)0x1a8c79a9, (q31_t)0x33e5e360, (q31_t)0x1a96ab0f, (q31_t)0x33ed3ce1, (q31_t)0x1aa0dde7, (q31_t)0x33f49462, (q31_t)0x1aab122f, (q31_t)0x33fbe9e2, (q31_t)0x1ab547e8, (q31_t)0x34033d61, (q31_t)0x1abf7f11, (q31_t)0x340a8edf, (q31_t)0x1ac9b7a9, (q31_t)0x3411de5b, (q31_t)0x1ad3f1b1, (q31_t)0x34192bd5, (q31_t)0x1ade2d28, (q31_t)0x3420774d, (q31_t)0x1ae86a0d, (q31_t)0x3427c0c3, (q31_t)0x1af2a860, (q31_t)0x342f0836, (q31_t)0x1afce821, (q31_t)0x34364da6, (q31_t)0x1b072950, (q31_t)0x343d9112, (q31_t)0x1b116beb, (q31_t)0x3444d27b, (q31_t)0x1b1baff2, (q31_t)0x344c11e0, (q31_t)0x1b25f566, (q31_t)0x34534f41, (q31_t)0x1b303c46, (q31_t)0x345a8a9d, (q31_t)0x1b3a8491, (q31_t)0x3461c3f5, (q31_t)0x1b44ce46, (q31_t)0x3468fb47, (q31_t)0x1b4f1967, (q31_t)0x34703095, (q31_t)0x1b5965f1, (q31_t)0x347763dd, (q31_t)0x1b63b3e5, (q31_t)0x347e951f, (q31_t)0x1b6e0342, (q31_t)0x3485c45b, (q31_t)0x1b785409, (q31_t)0x348cf190, (q31_t)0x1b82a638, (q31_t)0x34941cbf, (q31_t)0x1b8cf9cf, (q31_t)0x349b45e7, (q31_t)0x1b974ece, (q31_t)0x34a26d08, (q31_t)0x1ba1a534, (q31_t)0x34a99221, (q31_t)0x1babfd01, (q31_t)0x34b0b533, (q31_t)0x1bb65634, (q31_t)0x34b7d63c, (q31_t)0x1bc0b0ce, (q31_t)0x34bef53d, (q31_t)0x1bcb0cce, (q31_t)0x34c61236, (q31_t)0x1bd56a32, (q31_t)0x34cd2d26, (q31_t)0x1bdfc8fc, (q31_t)0x34d4460c, (q31_t)0x1bea292b, (q31_t)0x34db5cea, (q31_t)0x1bf48abd, (q31_t)0x34e271bd, (q31_t)0x1bfeedb3, (q31_t)0x34e98487, (q31_t)0x1c09520d, (q31_t)0x34f09546, (q31_t)0x1c13b7c9, (q31_t)0x34f7a3fb, (q31_t)0x1c1e1ee9, (q31_t)0x34feb0a5, (q31_t)0x1c28876a, (q31_t)0x3505bb44, (q31_t)0x1c32f14d, (q31_t)0x350cc3d8, (q31_t)0x1c3d5c91, (q31_t)0x3513ca60, (q31_t)0x1c47c936, (q31_t)0x351acedd, (q31_t)0x1c52373c, (q31_t)0x3521d14d, (q31_t)0x1c5ca6a2, (q31_t)0x3528d1b1, (q31_t)0x1c671768, (q31_t)0x352fd008, (q31_t)0x1c71898d, (q31_t)0x3536cc52, (q31_t)0x1c7bfd11, (q31_t)0x353dc68f, (q31_t)0x1c8671f3, (q31_t)0x3544bebf, (q31_t)0x1c90e834, (q31_t)0x354bb4e1, (q31_t)0x1c9b5fd2, (q31_t)0x3552a8f4, (q31_t)0x1ca5d8cd, (q31_t)0x35599afa, (q31_t)0x1cb05326, (q31_t)0x35608af1, (q31_t)0x1cbacedb, (q31_t)0x356778d9, (q31_t)0x1cc54bec, (q31_t)0x356e64b2, (q31_t)0x1ccfca59, (q31_t)0x35754e7c, (q31_t)0x1cda4a21, (q31_t)0x357c3636, (q31_t)0x1ce4cb44, (q31_t)0x35831be0, (q31_t)0x1cef4dc2, (q31_t)0x3589ff7a, (q31_t)0x1cf9d199, (q31_t)0x3590e104, (q31_t)0x1d0456ca, (q31_t)0x3597c07d, (q31_t)0x1d0edd55, (q31_t)0x359e9de5, (q31_t)0x1d196538, (q31_t)0x35a5793c, (q31_t)0x1d23ee74, (q31_t)0x35ac5282, (q31_t)0x1d2e7908, (q31_t)0x35b329b5, (q31_t)0x1d3904f4, (q31_t)0x35b9fed7, (q31_t)0x1d439236, (q31_t)0x35c0d1e7, (q31_t)0x1d4e20d0, (q31_t)0x35c7a2e3, (q31_t)0x1d58b0c0, (q31_t)0x35ce71ce, (q31_t)0x1d634206, (q31_t)0x35d53ea5, (q31_t)0x1d6dd4a2, (q31_t)0x35dc0968, (q31_t)0x1d786892, (q31_t)0x35e2d219, (q31_t)0x1d82fdd8, (q31_t)0x35e998b5, (q31_t)0x1d8d9472, (q31_t)0x35f05d3d, (q31_t)0x1d982c60, (q31_t)0x35f71fb1, (q31_t)0x1da2c5a2, (q31_t)0x35fde011, (q31_t)0x1dad6036, (q31_t)0x36049e5b, (q31_t)0x1db7fc1e, (q31_t)0x360b5a90, (q31_t)0x1dc29958, (q31_t)0x361214b0, (q31_t)0x1dcd37e4, (q31_t)0x3618ccba, (q31_t)0x1dd7d7c1, (q31_t)0x361f82af, (q31_t)0x1de278ef, (q31_t)0x3626368d, (q31_t)0x1ded1b6e, (q31_t)0x362ce855, (q31_t)0x1df7bf3e, (q31_t)0x36339806, (q31_t)0x1e02645d, (q31_t)0x363a45a0, (q31_t)0x1e0d0acc, (q31_t)0x3640f123, (q31_t)0x1e17b28a, (q31_t)0x36479a8e, (q31_t)0x1e225b96, (q31_t)0x364e41e2, (q31_t)0x1e2d05f1, (q31_t)0x3654e71d, (q31_t)0x1e37b199, (q31_t)0x365b8a41, (q31_t)0x1e425e8f, (q31_t)0x36622b4c, (q31_t)0x1e4d0cd2, (q31_t)0x3668ca3e, (q31_t)0x1e57bc62, (q31_t)0x366f6717, (q31_t)0x1e626d3e, (q31_t)0x367601d7, (q31_t)0x1e6d1f65, (q31_t)0x367c9a7e, (q31_t)0x1e77d2d8, (q31_t)0x3683310b, (q31_t)0x1e828796, (q31_t)0x3689c57d, (q31_t)0x1e8d3d9e, (q31_t)0x369057d6, (q31_t)0x1e97f4f1, (q31_t)0x3696e814, (q31_t)0x1ea2ad8d, (q31_t)0x369d7637, (q31_t)0x1ead6773, (q31_t)0x36a4023f, (q31_t)0x1eb822a1, (q31_t)0x36aa8c2c, (q31_t)0x1ec2df18, (q31_t)0x36b113fd, (q31_t)0x1ecd9cd7, (q31_t)0x36b799b3, (q31_t)0x1ed85bdd, (q31_t)0x36be1d4c, (q31_t)0x1ee31c2b, (q31_t)0x36c49ec9, (q31_t)0x1eedddc0, (q31_t)0x36cb1e2a, (q31_t)0x1ef8a09b, (q31_t)0x36d19b6e, (q31_t)0x1f0364bc, (q31_t)0x36d81695, (q31_t)0x1f0e2a22, (q31_t)0x36de8f9e, (q31_t)0x1f18f0ce, (q31_t)0x36e5068a, (q31_t)0x1f23b8be, (q31_t)0x36eb7b58, (q31_t)0x1f2e81f3, (q31_t)0x36f1ee09, (q31_t)0x1f394c6b, (q31_t)0x36f85e9a, (q31_t)0x1f441828, (q31_t)0x36fecd0e, (q31_t)0x1f4ee527, (q31_t)0x37053962, (q31_t)0x1f59b369, (q31_t)0x370ba398, (q31_t)0x1f6482ed, (q31_t)0x37120bae, (q31_t)0x1f6f53b3, (q31_t)0x371871a5, (q31_t)0x1f7a25ba, (q31_t)0x371ed57c, (q31_t)0x1f84f902, (q31_t)0x37253733, (q31_t)0x1f8fcd8b, (q31_t)0x372b96ca, (q31_t)0x1f9aa354, (q31_t)0x3731f440, (q31_t)0x1fa57a5d, (q31_t)0x37384f95, (q31_t)0x1fb052a5, (q31_t)0x373ea8ca, (q31_t)0x1fbb2c2c, (q31_t)0x3744ffdd, (q31_t)0x1fc606f1, (q31_t)0x374b54ce, (q31_t)0x1fd0e2f5, (q31_t)0x3751a79e, (q31_t)0x1fdbc036, (q31_t)0x3757f84c, (q31_t)0x1fe69eb4, (q31_t)0x375e46d8, (q31_t)0x1ff17e70, (q31_t)0x37649341, (q31_t)0x1ffc5f67, (q31_t)0x376add88, (q31_t)0x2007419b, (q31_t)0x377125ac, (q31_t)0x2012250a, (q31_t)0x37776bac, (q31_t)0x201d09b4, (q31_t)0x377daf89, (q31_t)0x2027ef99, (q31_t)0x3783f143, (q31_t)0x2032d6b8, (q31_t)0x378a30d8, (q31_t)0x203dbf11, (q31_t)0x37906e49, (q31_t)0x2048a8a4, (q31_t)0x3796a996, (q31_t)0x2053936f, (q31_t)0x379ce2be, (q31_t)0x205e7f74, (q31_t)0x37a319c2, (q31_t)0x20696cb0, (q31_t)0x37a94ea0, (q31_t)0x20745b24, (q31_t)0x37af8159, (q31_t)0x207f4acf, (q31_t)0x37b5b1ec, (q31_t)0x208a3bb2, (q31_t)0x37bbe05a, (q31_t)0x20952dcb, (q31_t)0x37c20ca1, (q31_t)0x20a0211a, (q31_t)0x37c836c2, (q31_t)0x20ab159e, (q31_t)0x37ce5ebd, (q31_t)0x20b60b58, (q31_t)0x37d48490, (q31_t)0x20c10247, (q31_t)0x37daa83d, (q31_t)0x20cbfa6a, (q31_t)0x37e0c9c3, (q31_t)0x20d6f3c1, (q31_t)0x37e6e921, (q31_t)0x20e1ee4b, (q31_t)0x37ed0657, (q31_t)0x20ecea09, (q31_t)0x37f32165, (q31_t)0x20f7e6f9, (q31_t)0x37f93a4b, (q31_t)0x2102e51c, (q31_t)0x37ff5109, (q31_t)0x210de470, (q31_t)0x3805659e, (q31_t)0x2118e4f6, (q31_t)0x380b780a, (q31_t)0x2123e6ad, (q31_t)0x3811884d, (q31_t)0x212ee995, (q31_t)0x38179666, (q31_t)0x2139edac, (q31_t)0x381da256, (q31_t)0x2144f2f3, (q31_t)0x3823ac1d, (q31_t)0x214ff96a, (q31_t)0x3829b3b9, (q31_t)0x215b0110, (q31_t)0x382fb92a, (q31_t)0x216609e3, (q31_t)0x3835bc71, (q31_t)0x217113e5, (q31_t)0x383bbd8e, (q31_t)0x217c1f15, (q31_t)0x3841bc7f, (q31_t)0x21872b72, (q31_t)0x3847b946, (q31_t)0x219238fb, (q31_t)0x384db3e0, (q31_t)0x219d47b1, (q31_t)0x3853ac4f, (q31_t)0x21a85793, (q31_t)0x3859a292, (q31_t)0x21b368a0, (q31_t)0x385f96a9, (q31_t)0x21be7ad8, (q31_t)0x38658894, (q31_t)0x21c98e3b, (q31_t)0x386b7852, (q31_t)0x21d4a2c8, (q31_t)0x387165e3, (q31_t)0x21dfb87f, (q31_t)0x38775147, (q31_t)0x21eacf5f, (q31_t)0x387d3a7e, (q31_t)0x21f5e768, (q31_t)0x38832187, (q31_t)0x22010099, (q31_t)0x38890663, (q31_t)0x220c1af3, (q31_t)0x388ee910, (q31_t)0x22173674, (q31_t)0x3894c98f, (q31_t)0x2222531c, (q31_t)0x389aa7e0, (q31_t)0x222d70eb, (q31_t)0x38a08402, (q31_t)0x22388fe1, (q31_t)0x38a65df6, (q31_t)0x2243affc, (q31_t)0x38ac35ba, (q31_t)0x224ed13d, (q31_t)0x38b20b4f, (q31_t)0x2259f3a3, (q31_t)0x38b7deb4, (q31_t)0x2265172e, (q31_t)0x38bdafea, (q31_t)0x22703bdc, (q31_t)0x38c37eef, (q31_t)0x227b61af, (q31_t)0x38c94bc4, (q31_t)0x228688a4, (q31_t)0x38cf1669, (q31_t)0x2291b0bd, (q31_t)0x38d4dedd, (q31_t)0x229cd9f8, (q31_t)0x38daa520, (q31_t)0x22a80456, (q31_t)0x38e06932, (q31_t)0x22b32fd4, (q31_t)0x38e62b13, (q31_t)0x22be5c74, (q31_t)0x38ebeac2, (q31_t)0x22c98a35, (q31_t)0x38f1a840, (q31_t)0x22d4b916, (q31_t)0x38f7638b, (q31_t)0x22dfe917, (q31_t)0x38fd1ca4, (q31_t)0x22eb1a37, (q31_t)0x3902d38b, (q31_t)0x22f64c77, (q31_t)0x3908883f, (q31_t)0x23017fd5, (q31_t)0x390e3ac0, (q31_t)0x230cb451, (q31_t)0x3913eb0e, (q31_t)0x2317e9eb, (q31_t)0x39199929, (q31_t)0x232320a2, (q31_t)0x391f4510, (q31_t)0x232e5876, (q31_t)0x3924eec3, (q31_t)0x23399167, (q31_t)0x392a9642, (q31_t)0x2344cb73, (q31_t)0x39303b8e, (q31_t)0x2350069b, (q31_t)0x3935dea4, (q31_t)0x235b42df, (q31_t)0x393b7f86, (q31_t)0x2366803c, (q31_t)0x39411e33, (q31_t)0x2371beb5, (q31_t)0x3946baac, (q31_t)0x237cfe47, (q31_t)0x394c54ee, (q31_t)0x23883ef2, (q31_t)0x3951ecfc, (q31_t)0x239380b6, (q31_t)0x395782d3, (q31_t)0x239ec393, (q31_t)0x395d1675, (q31_t)0x23aa0788, (q31_t)0x3962a7e0, (q31_t)0x23b54c95, (q31_t)0x39683715, (q31_t)0x23c092b9, (q31_t)0x396dc414, (q31_t)0x23cbd9f4, (q31_t)0x39734edc, (q31_t)0x23d72245, (q31_t)0x3978d76c, (q31_t)0x23e26bac, (q31_t)0x397e5dc6, (q31_t)0x23edb628, (q31_t)0x3983e1e8, (q31_t)0x23f901ba, (q31_t)0x398963d2, (q31_t)0x24044e60, (q31_t)0x398ee385, (q31_t)0x240f9c1a, (q31_t)0x399460ff, (q31_t)0x241aeae8, (q31_t)0x3999dc42, (q31_t)0x24263ac9, (q31_t)0x399f554b, (q31_t)0x24318bbe, (q31_t)0x39a4cc1c, (q31_t)0x243cddc4, (q31_t)0x39aa40b4, (q31_t)0x244830dd, (q31_t)0x39afb313, (q31_t)0x24538507, (q31_t)0x39b52339, (q31_t)0x245eda43, (q31_t)0x39ba9125, (q31_t)0x246a308f, (q31_t)0x39bffcd7, (q31_t)0x247587eb, (q31_t)0x39c5664f, (q31_t)0x2480e057, (q31_t)0x39cacd8d, (q31_t)0x248c39d3, (q31_t)0x39d03291, (q31_t)0x2497945d, (q31_t)0x39d5955a, (q31_t)0x24a2eff6, (q31_t)0x39daf5e8, (q31_t)0x24ae4c9d, (q31_t)0x39e0543c, (q31_t)0x24b9aa52, (q31_t)0x39e5b054, (q31_t)0x24c50914, (q31_t)0x39eb0a31, (q31_t)0x24d068e2, (q31_t)0x39f061d2, (q31_t)0x24dbc9bd, (q31_t)0x39f5b737, (q31_t)0x24e72ba4, (q31_t)0x39fb0a60, (q31_t)0x24f28e96, (q31_t)0x3a005b4d, (q31_t)0x24fdf294, (q31_t)0x3a05a9fd, (q31_t)0x2509579b, (q31_t)0x3a0af671, (q31_t)0x2514bdad, (q31_t)0x3a1040a8, (q31_t)0x252024c9, (q31_t)0x3a1588a2, (q31_t)0x252b8cee, (q31_t)0x3a1ace5f, (q31_t)0x2536f61b, (q31_t)0x3a2011de, (q31_t)0x25426051, (q31_t)0x3a25531f, (q31_t)0x254dcb8f, (q31_t)0x3a2a9223, (q31_t)0x255937d5, (q31_t)0x3a2fcee8, (q31_t)0x2564a521, (q31_t)0x3a350970, (q31_t)0x25701374, (q31_t)0x3a3a41b9, (q31_t)0x257b82cd, (q31_t)0x3a3f77c3, (q31_t)0x2586f32c, (q31_t)0x3a44ab8e, (q31_t)0x25926490, (q31_t)0x3a49dd1a, (q31_t)0x259dd6f9, (q31_t)0x3a4f0c67, (q31_t)0x25a94a67, (q31_t)0x3a543974, (q31_t)0x25b4bed8, (q31_t)0x3a596442, (q31_t)0x25c0344d, (q31_t)0x3a5e8cd0, (q31_t)0x25cbaac5, (q31_t)0x3a63b31d, (q31_t)0x25d72240, (q31_t)0x3a68d72b, (q31_t)0x25e29abc, (q31_t)0x3a6df8f8, (q31_t)0x25ee143b, (q31_t)0x3a731884, (q31_t)0x25f98ebb, (q31_t)0x3a7835cf, (q31_t)0x26050a3b, (q31_t)0x3a7d50da, (q31_t)0x261086bc, (q31_t)0x3a8269a3, (q31_t)0x261c043d, (q31_t)0x3a87802a, (q31_t)0x262782be, (q31_t)0x3a8c9470, (q31_t)0x2633023e, (q31_t)0x3a91a674, (q31_t)0x263e82bc, (q31_t)0x3a96b636, (q31_t)0x264a0438, (q31_t)0x3a9bc3b6, (q31_t)0x265586b3, (q31_t)0x3aa0cef3, (q31_t)0x26610a2a, (q31_t)0x3aa5d7ee, (q31_t)0x266c8e9f, (q31_t)0x3aaadea6, (q31_t)0x26781410, (q31_t)0x3aafe31b, (q31_t)0x26839a7c, (q31_t)0x3ab4e54c, (q31_t)0x268f21e5, (q31_t)0x3ab9e53a, (q31_t)0x269aaa48, (q31_t)0x3abee2e5, (q31_t)0x26a633a6, (q31_t)0x3ac3de4c, (q31_t)0x26b1bdff, (q31_t)0x3ac8d76f, (q31_t)0x26bd4951, (q31_t)0x3acdce4d, (q31_t)0x26c8d59c, (q31_t)0x3ad2c2e8, (q31_t)0x26d462e1, (q31_t)0x3ad7b53d, (q31_t)0x26dff11d, (q31_t)0x3adca54e, (q31_t)0x26eb8052, (q31_t)0x3ae1931a, (q31_t)0x26f7107e, (q31_t)0x3ae67ea1, (q31_t)0x2702a1a1, (q31_t)0x3aeb67e3, (q31_t)0x270e33bb, (q31_t)0x3af04edf, (q31_t)0x2719c6cb, (q31_t)0x3af53395, (q31_t)0x27255ad1, (q31_t)0x3afa1605, (q31_t)0x2730efcc, (q31_t)0x3afef630, (q31_t)0x273c85bc, (q31_t)0x3b03d414, (q31_t)0x27481ca1, (q31_t)0x3b08afb2, (q31_t)0x2753b479, (q31_t)0x3b0d8909, (q31_t)0x275f4d45, (q31_t)0x3b126019, (q31_t)0x276ae704, (q31_t)0x3b1734e2, (q31_t)0x277681b6, (q31_t)0x3b1c0764, (q31_t)0x27821d59, (q31_t)0x3b20d79e, (q31_t)0x278db9ef, (q31_t)0x3b25a591, (q31_t)0x27995776, (q31_t)0x3b2a713d, (q31_t)0x27a4f5ed, (q31_t)0x3b2f3aa0, (q31_t)0x27b09555, (q31_t)0x3b3401bb, (q31_t)0x27bc35ad, (q31_t)0x3b38c68e, (q31_t)0x27c7d6f4, (q31_t)0x3b3d8918, (q31_t)0x27d3792b, (q31_t)0x3b42495a, (q31_t)0x27df1c50, (q31_t)0x3b470753, (q31_t)0x27eac063, (q31_t)0x3b4bc303, (q31_t)0x27f66564, (q31_t)0x3b507c69, (q31_t)0x28020b52, (q31_t)0x3b553386, (q31_t)0x280db22d, (q31_t)0x3b59e85a, (q31_t)0x281959f4, (q31_t)0x3b5e9ae4, (q31_t)0x282502a7, (q31_t)0x3b634b23, (q31_t)0x2830ac45, (q31_t)0x3b67f919, (q31_t)0x283c56cf, (q31_t)0x3b6ca4c4, (q31_t)0x28480243, (q31_t)0x3b714e25, (q31_t)0x2853aea1, (q31_t)0x3b75f53c, (q31_t)0x285f5be9, (q31_t)0x3b7a9a07, (q31_t)0x286b0a1a, (q31_t)0x3b7f3c87, (q31_t)0x2876b934, (q31_t)0x3b83dcbc, (q31_t)0x28826936, (q31_t)0x3b887aa6, (q31_t)0x288e1a20, (q31_t)0x3b8d1644, (q31_t)0x2899cbf1, (q31_t)0x3b91af97, (q31_t)0x28a57ea9, (q31_t)0x3b96469d, (q31_t)0x28b13248, (q31_t)0x3b9adb57, (q31_t)0x28bce6cd, (q31_t)0x3b9f6dc5, (q31_t)0x28c89c37, (q31_t)0x3ba3fde7, (q31_t)0x28d45286, (q31_t)0x3ba88bbc, (q31_t)0x28e009ba, (q31_t)0x3bad1744, (q31_t)0x28ebc1d3, (q31_t)0x3bb1a080, (q31_t)0x28f77acf, (q31_t)0x3bb6276e, (q31_t)0x290334af, (q31_t)0x3bbaac0e, (q31_t)0x290eef71, (q31_t)0x3bbf2e62, (q31_t)0x291aab16, (q31_t)0x3bc3ae67, (q31_t)0x2926679c, (q31_t)0x3bc82c1f, (q31_t)0x29322505, (q31_t)0x3bcca789, (q31_t)0x293de34e, (q31_t)0x3bd120a4, (q31_t)0x2949a278, (q31_t)0x3bd59771, (q31_t)0x29556282, (q31_t)0x3bda0bf0, (q31_t)0x2961236c, (q31_t)0x3bde7e20, (q31_t)0x296ce535, (q31_t)0x3be2ee01, (q31_t)0x2978a7dd, (q31_t)0x3be75b93, (q31_t)0x29846b63, (q31_t)0x3bebc6d5, (q31_t)0x29902fc7, (q31_t)0x3bf02fc9, (q31_t)0x299bf509, (q31_t)0x3bf4966c, (q31_t)0x29a7bb28, (q31_t)0x3bf8fac0, (q31_t)0x29b38223, (q31_t)0x3bfd5cc4, (q31_t)0x29bf49fa, (q31_t)0x3c01bc78, (q31_t)0x29cb12ad, (q31_t)0x3c0619dc, (q31_t)0x29d6dc3b, (q31_t)0x3c0a74f0, (q31_t)0x29e2a6a3, (q31_t)0x3c0ecdb2, (q31_t)0x29ee71e6, (q31_t)0x3c132424, (q31_t)0x29fa3e03, (q31_t)0x3c177845, (q31_t)0x2a060af9, (q31_t)0x3c1bca16, (q31_t)0x2a11d8c8, (q31_t)0x3c201994, (q31_t)0x2a1da770, (q31_t)0x3c2466c2, (q31_t)0x2a2976ef, (q31_t)0x3c28b19e, (q31_t)0x2a354746, (q31_t)0x3c2cfa28, (q31_t)0x2a411874, (q31_t)0x3c314060, (q31_t)0x2a4cea79, (q31_t)0x3c358446, (q31_t)0x2a58bd54, (q31_t)0x3c39c5da, (q31_t)0x2a649105, (q31_t)0x3c3e051b, (q31_t)0x2a70658a, (q31_t)0x3c42420a, (q31_t)0x2a7c3ae5, (q31_t)0x3c467ca6, (q31_t)0x2a881114, (q31_t)0x3c4ab4ef, (q31_t)0x2a93e817, (q31_t)0x3c4eeae5, (q31_t)0x2a9fbfed, (q31_t)0x3c531e88, (q31_t)0x2aab9896, (q31_t)0x3c574fd8, (q31_t)0x2ab77212, (q31_t)0x3c5b7ed4, (q31_t)0x2ac34c60, (q31_t)0x3c5fab7c, (q31_t)0x2acf277f, (q31_t)0x3c63d5d1, (q31_t)0x2adb0370, (q31_t)0x3c67fdd1, (q31_t)0x2ae6e031, (q31_t)0x3c6c237e, (q31_t)0x2af2bdc3, (q31_t)0x3c7046d6, (q31_t)0x2afe9c24, (q31_t)0x3c7467d9, (q31_t)0x2b0a7b54, (q31_t)0x3c788688, (q31_t)0x2b165b54, (q31_t)0x3c7ca2e2, (q31_t)0x2b223c22, (q31_t)0x3c80bce7, (q31_t)0x2b2e1dbe, (q31_t)0x3c84d496, (q31_t)0x2b3a0027, (q31_t)0x3c88e9f1, (q31_t)0x2b45e35d, (q31_t)0x3c8cfcf6, (q31_t)0x2b51c760, (q31_t)0x3c910da5, (q31_t)0x2b5dac2f, (q31_t)0x3c951bff, (q31_t)0x2b6991ca, (q31_t)0x3c992803, (q31_t)0x2b75782f, (q31_t)0x3c9d31b0, (q31_t)0x2b815f60, (q31_t)0x3ca13908, (q31_t)0x2b8d475b, (q31_t)0x3ca53e09, (q31_t)0x2b99301f, (q31_t)0x3ca940b3, (q31_t)0x2ba519ad, (q31_t)0x3cad4107, (q31_t)0x2bb10404, (q31_t)0x3cb13f04, (q31_t)0x2bbcef23, (q31_t)0x3cb53aaa, (q31_t)0x2bc8db0b, (q31_t)0x3cb933f9, (q31_t)0x2bd4c7ba, (q31_t)0x3cbd2af0, (q31_t)0x2be0b52f, (q31_t)0x3cc11f90, (q31_t)0x2beca36c, (q31_t)0x3cc511d9, (q31_t)0x2bf8926f, (q31_t)0x3cc901c9, (q31_t)0x2c048237, (q31_t)0x3cccef62, (q31_t)0x2c1072c4, (q31_t)0x3cd0daa2, (q31_t)0x2c1c6417, (q31_t)0x3cd4c38b, (q31_t)0x2c28562d, (q31_t)0x3cd8aa1b, (q31_t)0x2c344908, (q31_t)0x3cdc8e52, (q31_t)0x2c403ca5, (q31_t)0x3ce07031, (q31_t)0x2c4c3106, (q31_t)0x3ce44fb7, (q31_t)0x2c582629, (q31_t)0x3ce82ce4, (q31_t)0x2c641c0e, (q31_t)0x3cec07b8, (q31_t)0x2c7012b5, (q31_t)0x3cefe032, (q31_t)0x2c7c0a1d, (q31_t)0x3cf3b653, (q31_t)0x2c880245, (q31_t)0x3cf78a1b, (q31_t)0x2c93fb2e, (q31_t)0x3cfb5b89, (q31_t)0x2c9ff4d6, (q31_t)0x3cff2a9d, (q31_t)0x2cabef3d, (q31_t)0x3d02f757, (q31_t)0x2cb7ea63, (q31_t)0x3d06c1b6, (q31_t)0x2cc3e648, (q31_t)0x3d0a89bc, (q31_t)0x2ccfe2ea, (q31_t)0x3d0e4f67, (q31_t)0x2cdbe04a, (q31_t)0x3d1212b7, (q31_t)0x2ce7de66, (q31_t)0x3d15d3ad, (q31_t)0x2cf3dd3f, (q31_t)0x3d199248, (q31_t)0x2cffdcd4, (q31_t)0x3d1d4e88, (q31_t)0x2d0bdd25, (q31_t)0x3d21086c, (q31_t)0x2d17de31, (q31_t)0x3d24bff6, (q31_t)0x2d23dff7, (q31_t)0x3d287523, (q31_t)0x2d2fe277, (q31_t)0x3d2c27f6, (q31_t)0x2d3be5b1, (q31_t)0x3d2fd86c, (q31_t)0x2d47e9a5, (q31_t)0x3d338687, (q31_t)0x2d53ee51, (q31_t)0x3d373245, (q31_t)0x2d5ff3b5, (q31_t)0x3d3adba7, (q31_t)0x2d6bf9d1, (q31_t)0x3d3e82ae, (q31_t)0x2d7800a5, (q31_t)0x3d422757, (q31_t)0x2d84082f, (q31_t)0x3d45c9a4, (q31_t)0x2d901070, (q31_t)0x3d496994, (q31_t)0x2d9c1967, (q31_t)0x3d4d0728, (q31_t)0x2da82313, (q31_t)0x3d50a25e, (q31_t)0x2db42d74, (q31_t)0x3d543b37, (q31_t)0x2dc0388a, (q31_t)0x3d57d1b3, (q31_t)0x2dcc4454, (q31_t)0x3d5b65d2, (q31_t)0x2dd850d2, (q31_t)0x3d5ef793, (q31_t)0x2de45e03, (q31_t)0x3d6286f6, (q31_t)0x2df06be6, (q31_t)0x3d6613fb, (q31_t)0x2dfc7a7c, (q31_t)0x3d699ea3, (q31_t)0x2e0889c4, (q31_t)0x3d6d26ec, (q31_t)0x2e1499bd, (q31_t)0x3d70acd7, (q31_t)0x2e20aa67, (q31_t)0x3d743064, (q31_t)0x2e2cbbc1, (q31_t)0x3d77b192, (q31_t)0x2e38cdcb, (q31_t)0x3d7b3061, (q31_t)0x2e44e084, (q31_t)0x3d7eacd2, (q31_t)0x2e50f3ed, (q31_t)0x3d8226e4, (q31_t)0x2e5d0804, (q31_t)0x3d859e96, (q31_t)0x2e691cc9, (q31_t)0x3d8913ea, (q31_t)0x2e75323c, (q31_t)0x3d8c86de, (q31_t)0x2e81485c, (q31_t)0x3d8ff772, (q31_t)0x2e8d5f29, (q31_t)0x3d9365a8, (q31_t)0x2e9976a1, (q31_t)0x3d96d17d, (q31_t)0x2ea58ec6, (q31_t)0x3d9a3af2, (q31_t)0x2eb1a796, (q31_t)0x3d9da208, (q31_t)0x2ebdc110, (q31_t)0x3da106bd, (q31_t)0x2ec9db35, (q31_t)0x3da46912, (q31_t)0x2ed5f604, (q31_t)0x3da7c907, (q31_t)0x2ee2117c, (q31_t)0x3dab269b, (q31_t)0x2eee2d9d, (q31_t)0x3dae81cf, (q31_t)0x2efa4a67, (q31_t)0x3db1daa2, (q31_t)0x2f0667d9, (q31_t)0x3db53113, (q31_t)0x2f1285f2, (q31_t)0x3db88524, (q31_t)0x2f1ea4b2, (q31_t)0x3dbbd6d4, (q31_t)0x2f2ac419, (q31_t)0x3dbf2622, (q31_t)0x2f36e426, (q31_t)0x3dc2730f, (q31_t)0x2f4304d8, (q31_t)0x3dc5bd9b, (q31_t)0x2f4f2630, (q31_t)0x3dc905c5, (q31_t)0x2f5b482d, (q31_t)0x3dcc4b8d, (q31_t)0x2f676ace, (q31_t)0x3dcf8ef3, (q31_t)0x2f738e12, (q31_t)0x3dd2cff7, (q31_t)0x2f7fb1fa, (q31_t)0x3dd60e99, (q31_t)0x2f8bd685, (q31_t)0x3dd94ad8, (q31_t)0x2f97fbb2, (q31_t)0x3ddc84b5, (q31_t)0x2fa42181, (q31_t)0x3ddfbc30, (q31_t)0x2fb047f2, (q31_t)0x3de2f148, (q31_t)0x2fbc6f03, (q31_t)0x3de623fd, (q31_t)0x2fc896b5, (q31_t)0x3de9544f, (q31_t)0x2fd4bf08, (q31_t)0x3dec823e, (q31_t)0x2fe0e7f9, (q31_t)0x3defadca, (q31_t)0x2fed118a, (q31_t)0x3df2d6f3, (q31_t)0x2ff93bba, (q31_t)0x3df5fdb8, (q31_t)0x30056687, (q31_t)0x3df9221a, (q31_t)0x301191f3, (q31_t)0x3dfc4418, (q31_t)0x301dbdfb, (q31_t)0x3dff63b2, (q31_t)0x3029eaa1, (q31_t)0x3e0280e9, (q31_t)0x303617e2, (q31_t)0x3e059bbb, (q31_t)0x304245c0, (q31_t)0x3e08b42a, (q31_t)0x304e7438, (q31_t)0x3e0bca34, (q31_t)0x305aa34c, (q31_t)0x3e0eddd9, (q31_t)0x3066d2fa, (q31_t)0x3e11ef1b, (q31_t)0x30730342, (q31_t)0x3e14fdf7, (q31_t)0x307f3424, (q31_t)0x3e180a6f, (q31_t)0x308b659f, (q31_t)0x3e1b1482, (q31_t)0x309797b2, (q31_t)0x3e1e1c30, (q31_t)0x30a3ca5d, (q31_t)0x3e212179, (q31_t)0x30affda0, (q31_t)0x3e24245d, (q31_t)0x30bc317a, (q31_t)0x3e2724db, (q31_t)0x30c865ea, (q31_t)0x3e2a22f4, (q31_t)0x30d49af1, (q31_t)0x3e2d1ea8, (q31_t)0x30e0d08d, (q31_t)0x3e3017f6, (q31_t)0x30ed06bf, (q31_t)0x3e330ede, (q31_t)0x30f93d86, (q31_t)0x3e360360, (q31_t)0x310574e0, (q31_t)0x3e38f57c, (q31_t)0x3111accf, (q31_t)0x3e3be532, (q31_t)0x311de551, (q31_t)0x3e3ed282, (q31_t)0x312a1e66, (q31_t)0x3e41bd6c, (q31_t)0x3136580d, (q31_t)0x3e44a5ef, (q31_t)0x31429247, (q31_t)0x3e478c0b, (q31_t)0x314ecd11, (q31_t)0x3e4a6fc1, (q31_t)0x315b086d, (q31_t)0x3e4d5110, (q31_t)0x31674459, (q31_t)0x3e502ff9, (q31_t)0x317380d6, (q31_t)0x3e530c7a, (q31_t)0x317fbde2, (q31_t)0x3e55e694, (q31_t)0x318bfb7d, (q31_t)0x3e58be47, (q31_t)0x319839a6, (q31_t)0x3e5b9392, (q31_t)0x31a4785e, (q31_t)0x3e5e6676, (q31_t)0x31b0b7a4, (q31_t)0x3e6136f3, (q31_t)0x31bcf777, (q31_t)0x3e640507, (q31_t)0x31c937d6, (q31_t)0x3e66d0b4, (q31_t)0x31d578c2, (q31_t)0x3e6999fa, (q31_t)0x31e1ba3a, (q31_t)0x3e6c60d7, (q31_t)0x31edfc3d, (q31_t)0x3e6f254c, (q31_t)0x31fa3ecb, (q31_t)0x3e71e759, (q31_t)0x320681e3, (q31_t)0x3e74a6fd, (q31_t)0x3212c585, (q31_t)0x3e77643a, (q31_t)0x321f09b1, (q31_t)0x3e7a1f0d, (q31_t)0x322b4e66, (q31_t)0x3e7cd778, (q31_t)0x323793a3, (q31_t)0x3e7f8d7b, (q31_t)0x3243d968, (q31_t)0x3e824114, (q31_t)0x32501fb5, (q31_t)0x3e84f245, (q31_t)0x325c6688, (q31_t)0x3e87a10c, (q31_t)0x3268ade3, (q31_t)0x3e8a4d6a, (q31_t)0x3274f5c3, (q31_t)0x3e8cf75f, (q31_t)0x32813e2a, (q31_t)0x3e8f9eeb, (q31_t)0x328d8715, (q31_t)0x3e92440d, (q31_t)0x3299d085, (q31_t)0x3e94e6c6, (q31_t)0x32a61a7a, (q31_t)0x3e978715, (q31_t)0x32b264f2, (q31_t)0x3e9a24fb, (q31_t)0x32beafed, (q31_t)0x3e9cc076, (q31_t)0x32cafb6b, (q31_t)0x3e9f5988, (q31_t)0x32d7476c, (q31_t)0x3ea1f02f, (q31_t)0x32e393ef, (q31_t)0x3ea4846c, (q31_t)0x32efe0f2, (q31_t)0x3ea7163f, (q31_t)0x32fc2e77, (q31_t)0x3ea9a5a8, (q31_t)0x33087c7d, (q31_t)0x3eac32a6, (q31_t)0x3314cb02, (q31_t)0x3eaebd3a, (q31_t)0x33211a07, (q31_t)0x3eb14563, (q31_t)0x332d698a, (q31_t)0x3eb3cb21, (q31_t)0x3339b98d, (q31_t)0x3eb64e75, (q31_t)0x33460a0d, (q31_t)0x3eb8cf5d, (q31_t)0x33525b0b, (q31_t)0x3ebb4ddb, (q31_t)0x335eac86, (q31_t)0x3ebdc9ed, (q31_t)0x336afe7e, (q31_t)0x3ec04394, (q31_t)0x337750f2, (q31_t)0x3ec2bad0, (q31_t)0x3383a3e2, (q31_t)0x3ec52fa0, (q31_t)0x338ff74d, (q31_t)0x3ec7a205, (q31_t)0x339c4b32, (q31_t)0x3eca11fe, (q31_t)0x33a89f92, (q31_t)0x3ecc7f8b, (q31_t)0x33b4f46c, (q31_t)0x3eceeaad, (q31_t)0x33c149bf, (q31_t)0x3ed15363, (q31_t)0x33cd9f8b, (q31_t)0x3ed3b9ad, (q31_t)0x33d9f5cf, (q31_t)0x3ed61d8a, (q31_t)0x33e64c8c, (q31_t)0x3ed87efc, (q31_t)0x33f2a3bf, (q31_t)0x3edade01, (q31_t)0x33fefb6a, (q31_t)0x3edd3a9a, (q31_t)0x340b538b, (q31_t)0x3edf94c7, (q31_t)0x3417ac22, (q31_t)0x3ee1ec87, (q31_t)0x3424052f, (q31_t)0x3ee441da, (q31_t)0x34305eb0, (q31_t)0x3ee694c1, (q31_t)0x343cb8a7, (q31_t)0x3ee8e53a, (q31_t)0x34491311, (q31_t)0x3eeb3347, (q31_t)0x34556def, (q31_t)0x3eed7ee7, (q31_t)0x3461c940, (q31_t)0x3eefc81a, (q31_t)0x346e2504, (q31_t)0x3ef20ee0, (q31_t)0x347a8139, (q31_t)0x3ef45338, (q31_t)0x3486dde1, (q31_t)0x3ef69523, (q31_t)0x34933afa, (q31_t)0x3ef8d4a1, (q31_t)0x349f9884, (q31_t)0x3efb11b1, (q31_t)0x34abf67e, (q31_t)0x3efd4c54, (q31_t)0x34b854e7, (q31_t)0x3eff8489, (q31_t)0x34c4b3c0, (q31_t)0x3f01ba50, (q31_t)0x34d11308, (q31_t)0x3f03eda9, (q31_t)0x34dd72be, (q31_t)0x3f061e95, (q31_t)0x34e9d2e3, (q31_t)0x3f084d12, (q31_t)0x34f63374, (q31_t)0x3f0a7921, (q31_t)0x35029473, (q31_t)0x3f0ca2c2, (q31_t)0x350ef5de, (q31_t)0x3f0ec9f5, (q31_t)0x351b57b5, (q31_t)0x3f10eeb9, (q31_t)0x3527b9f7, (q31_t)0x3f13110f, (q31_t)0x35341ca5, (q31_t)0x3f1530f7, (q31_t)0x35407fbd, (q31_t)0x3f174e70, (q31_t)0x354ce33f, (q31_t)0x3f19697a, (q31_t)0x3559472b, (q31_t)0x3f1b8215, (q31_t)0x3565ab80, (q31_t)0x3f1d9842, (q31_t)0x3572103d, (q31_t)0x3f1fabff, (q31_t)0x357e7563, (q31_t)0x3f21bd4e, (q31_t)0x358adaf0, (q31_t)0x3f23cc2e, (q31_t)0x359740e5, (q31_t)0x3f25d89e, (q31_t)0x35a3a740, (q31_t)0x3f27e29f, (q31_t)0x35b00e02, (q31_t)0x3f29ea31, (q31_t)0x35bc7529, (q31_t)0x3f2bef53, (q31_t)0x35c8dcb6, (q31_t)0x3f2df206, (q31_t)0x35d544a7, (q31_t)0x3f2ff24a, (q31_t)0x35e1acfd, (q31_t)0x3f31f01d, (q31_t)0x35ee15b7, (q31_t)0x3f33eb81, (q31_t)0x35fa7ed4, (q31_t)0x3f35e476, (q31_t)0x3606e854, (q31_t)0x3f37dafa, (q31_t)0x36135237, (q31_t)0x3f39cf0e, (q31_t)0x361fbc7b, (q31_t)0x3f3bc0b3, (q31_t)0x362c2721, (q31_t)0x3f3dafe7, (q31_t)0x36389228, (q31_t)0x3f3f9cab, (q31_t)0x3644fd8f, (q31_t)0x3f4186ff, (q31_t)0x36516956, (q31_t)0x3f436ee3, (q31_t)0x365dd57d, (q31_t)0x3f455456, (q31_t)0x366a4203, (q31_t)0x3f473759, (q31_t)0x3676aee8, (q31_t)0x3f4917eb, (q31_t)0x36831c2b, (q31_t)0x3f4af60d, (q31_t)0x368f89cb, (q31_t)0x3f4cd1be, (q31_t)0x369bf7c9, (q31_t)0x3f4eaafe, (q31_t)0x36a86623, (q31_t)0x3f5081cd, (q31_t)0x36b4d4d9, (q31_t)0x3f52562c, (q31_t)0x36c143ec, (q31_t)0x3f54281a, (q31_t)0x36cdb359, (q31_t)0x3f55f796, (q31_t)0x36da2321, (q31_t)0x3f57c4a2, (q31_t)0x36e69344, (q31_t)0x3f598f3c, (q31_t)0x36f303c0, (q31_t)0x3f5b5765, (q31_t)0x36ff7496, (q31_t)0x3f5d1d1d, (q31_t)0x370be5c4, (q31_t)0x3f5ee063, (q31_t)0x3718574b, (q31_t)0x3f60a138, (q31_t)0x3724c92a, (q31_t)0x3f625f9b, (q31_t)0x37313b60, (q31_t)0x3f641b8d, (q31_t)0x373daded, (q31_t)0x3f65d50d, (q31_t)0x374a20d0, (q31_t)0x3f678c1c, (q31_t)0x3756940a, (q31_t)0x3f6940b8, (q31_t)0x37630799, (q31_t)0x3f6af2e3, (q31_t)0x376f7b7d, (q31_t)0x3f6ca29c, (q31_t)0x377befb5, (q31_t)0x3f6e4fe3, (q31_t)0x37886442, (q31_t)0x3f6ffab8, (q31_t)0x3794d922, (q31_t)0x3f71a31b, (q31_t)0x37a14e55, (q31_t)0x3f73490b, (q31_t)0x37adc3db, (q31_t)0x3f74ec8a, (q31_t)0x37ba39b3, (q31_t)0x3f768d96, (q31_t)0x37c6afdc, (q31_t)0x3f782c30, (q31_t)0x37d32657, (q31_t)0x3f79c857, (q31_t)0x37df9d22, (q31_t)0x3f7b620c, (q31_t)0x37ec143e, (q31_t)0x3f7cf94e, (q31_t)0x37f88ba9, (q31_t)0x3f7e8e1e, (q31_t)0x38050364, (q31_t)0x3f80207b, (q31_t)0x38117b6d, (q31_t)0x3f81b065, (q31_t)0x381df3c5, (q31_t)0x3f833ddd, (q31_t)0x382a6c6a, (q31_t)0x3f84c8e2, (q31_t)0x3836e55d, (q31_t)0x3f865174, (q31_t)0x38435e9d, (q31_t)0x3f87d792, (q31_t)0x384fd829, (q31_t)0x3f895b3e, (q31_t)0x385c5201, (q31_t)0x3f8adc77, (q31_t)0x3868cc24, (q31_t)0x3f8c5b3d, (q31_t)0x38754692, (q31_t)0x3f8dd78f, (q31_t)0x3881c14b, (q31_t)0x3f8f516e, (q31_t)0x388e3c4d, (q31_t)0x3f90c8da, (q31_t)0x389ab799, (q31_t)0x3f923dd2, (q31_t)0x38a7332e, (q31_t)0x3f93b058, (q31_t)0x38b3af0c, (q31_t)0x3f952069, (q31_t)0x38c02b31, (q31_t)0x3f968e07, (q31_t)0x38cca79e, (q31_t)0x3f97f932, (q31_t)0x38d92452, (q31_t)0x3f9961e8, (q31_t)0x38e5a14d, (q31_t)0x3f9ac82c, (q31_t)0x38f21e8e, (q31_t)0x3f9c2bfb, (q31_t)0x38fe9c15, (q31_t)0x3f9d8d56, (q31_t)0x390b19e0, (q31_t)0x3f9eec3e, (q31_t)0x391797f0, (q31_t)0x3fa048b2, (q31_t)0x39241645, (q31_t)0x3fa1a2b2, (q31_t)0x393094dd, (q31_t)0x3fa2fa3d, (q31_t)0x393d13b8, (q31_t)0x3fa44f55, (q31_t)0x394992d7, (q31_t)0x3fa5a1f9, (q31_t)0x39561237, (q31_t)0x3fa6f228, (q31_t)0x396291d9, (q31_t)0x3fa83fe3, (q31_t)0x396f11bc, (q31_t)0x3fa98b2a, (q31_t)0x397b91e1, (q31_t)0x3faad3fd, (q31_t)0x39881245, (q31_t)0x3fac1a5b, (q31_t)0x399492ea, (q31_t)0x3fad5e45, (q31_t)0x39a113cd, (q31_t)0x3fae9fbb, (q31_t)0x39ad94f0, (q31_t)0x3fafdebb, (q31_t)0x39ba1651, (q31_t)0x3fb11b48, (q31_t)0x39c697f0, (q31_t)0x3fb2555f, (q31_t)0x39d319cc, (q31_t)0x3fb38d02, (q31_t)0x39df9be6, (q31_t)0x3fb4c231, (q31_t)0x39ec1e3b, (q31_t)0x3fb5f4ea, (q31_t)0x39f8a0cd, (q31_t)0x3fb7252f, (q31_t)0x3a05239a, (q31_t)0x3fb852ff, (q31_t)0x3a11a6a3, (q31_t)0x3fb97e5a, (q31_t)0x3a1e29e5, (q31_t)0x3fbaa740, (q31_t)0x3a2aad62, (q31_t)0x3fbbcdb1, (q31_t)0x3a373119, (q31_t)0x3fbcf1ad, (q31_t)0x3a43b508, (q31_t)0x3fbe1334, (q31_t)0x3a503930, (q31_t)0x3fbf3246, (q31_t)0x3a5cbd91, (q31_t)0x3fc04ee3, (q31_t)0x3a694229, (q31_t)0x3fc1690a, (q31_t)0x3a75c6f8, (q31_t)0x3fc280bc, (q31_t)0x3a824bfd, (q31_t)0x3fc395f9, (q31_t)0x3a8ed139, (q31_t)0x3fc4a8c1, (q31_t)0x3a9b56ab, (q31_t)0x3fc5b913, (q31_t)0x3aa7dc52, (q31_t)0x3fc6c6f0, (q31_t)0x3ab4622d, (q31_t)0x3fc7d258, (q31_t)0x3ac0e83d, (q31_t)0x3fc8db4a, (q31_t)0x3acd6e81, (q31_t)0x3fc9e1c6, (q31_t)0x3ad9f4f8, (q31_t)0x3fcae5cd, (q31_t)0x3ae67ba2, (q31_t)0x3fcbe75e, (q31_t)0x3af3027e, (q31_t)0x3fcce67a, (q31_t)0x3aff898c, (q31_t)0x3fcde320, (q31_t)0x3b0c10cb, (q31_t)0x3fcedd50, (q31_t)0x3b18983b, (q31_t)0x3fcfd50b, (q31_t)0x3b251fdc, (q31_t)0x3fd0ca4f, (q31_t)0x3b31a7ac, (q31_t)0x3fd1bd1e, (q31_t)0x3b3e2fac, (q31_t)0x3fd2ad77, (q31_t)0x3b4ab7db, (q31_t)0x3fd39b5a, (q31_t)0x3b574039, (q31_t)0x3fd486c7, (q31_t)0x3b63c8c4, (q31_t)0x3fd56fbe, (q31_t)0x3b70517d, (q31_t)0x3fd6563f, (q31_t)0x3b7cda63, (q31_t)0x3fd73a4a, (q31_t)0x3b896375, (q31_t)0x3fd81bdf, (q31_t)0x3b95ecb4, (q31_t)0x3fd8fafe, (q31_t)0x3ba2761e, (q31_t)0x3fd9d7a7, (q31_t)0x3baeffb3, (q31_t)0x3fdab1d9, (q31_t)0x3bbb8973, (q31_t)0x3fdb8996, (q31_t)0x3bc8135c, (q31_t)0x3fdc5edc, (q31_t)0x3bd49d70, (q31_t)0x3fdd31ac, (q31_t)0x3be127ac, (q31_t)0x3fde0205, (q31_t)0x3bedb212, (q31_t)0x3fdecfe8, (q31_t)0x3bfa3c9f, (q31_t)0x3fdf9b55, (q31_t)0x3c06c754, (q31_t)0x3fe0644b, (q31_t)0x3c135231, (q31_t)0x3fe12acb, (q31_t)0x3c1fdd34, (q31_t)0x3fe1eed5, (q31_t)0x3c2c685d, (q31_t)0x3fe2b067, (q31_t)0x3c38f3ac, (q31_t)0x3fe36f84, (q31_t)0x3c457f21, (q31_t)0x3fe42c2a, (q31_t)0x3c520aba, (q31_t)0x3fe4e659, (q31_t)0x3c5e9678, (q31_t)0x3fe59e12, (q31_t)0x3c6b2259, (q31_t)0x3fe65354, (q31_t)0x3c77ae5e, (q31_t)0x3fe7061f, (q31_t)0x3c843a85, (q31_t)0x3fe7b674, (q31_t)0x3c90c6cf, (q31_t)0x3fe86452, (q31_t)0x3c9d533b, (q31_t)0x3fe90fb9, (q31_t)0x3ca9dfc8, (q31_t)0x3fe9b8a9, (q31_t)0x3cb66c77, (q31_t)0x3fea5f23, (q31_t)0x3cc2f945, (q31_t)0x3feb0326, (q31_t)0x3ccf8634, (q31_t)0x3feba4b2, (q31_t)0x3cdc1342, (q31_t)0x3fec43c7, (q31_t)0x3ce8a06f, (q31_t)0x3fece065, (q31_t)0x3cf52dbb, (q31_t)0x3fed7a8c, (q31_t)0x3d01bb24, (q31_t)0x3fee123d, (q31_t)0x3d0e48ab, (q31_t)0x3feea776, (q31_t)0x3d1ad650, (q31_t)0x3fef3a39, (q31_t)0x3d276410, (q31_t)0x3fefca84, (q31_t)0x3d33f1ed, (q31_t)0x3ff05858, (q31_t)0x3d407fe6, (q31_t)0x3ff0e3b6, (q31_t)0x3d4d0df9, (q31_t)0x3ff16c9c, (q31_t)0x3d599c28, (q31_t)0x3ff1f30b, (q31_t)0x3d662a70, (q31_t)0x3ff27703, (q31_t)0x3d72b8d2, (q31_t)0x3ff2f884, (q31_t)0x3d7f474d, (q31_t)0x3ff3778e, (q31_t)0x3d8bd5e1, (q31_t)0x3ff3f420, (q31_t)0x3d98648d, (q31_t)0x3ff46e3c, (q31_t)0x3da4f351, (q31_t)0x3ff4e5e0, (q31_t)0x3db1822c, (q31_t)0x3ff55b0d, (q31_t)0x3dbe111e, (q31_t)0x3ff5cdc3, (q31_t)0x3dcaa027, (q31_t)0x3ff63e01, (q31_t)0x3dd72f45, (q31_t)0x3ff6abc8, (q31_t)0x3de3be78, (q31_t)0x3ff71718, (q31_t)0x3df04dc0, (q31_t)0x3ff77ff1, (q31_t)0x3dfcdd1d, (q31_t)0x3ff7e652, (q31_t)0x3e096c8d, (q31_t)0x3ff84a3c, (q31_t)0x3e15fc11, (q31_t)0x3ff8abae, (q31_t)0x3e228ba7, (q31_t)0x3ff90aaa, (q31_t)0x3e2f1b50, (q31_t)0x3ff9672d, (q31_t)0x3e3bab0b, (q31_t)0x3ff9c13a, (q31_t)0x3e483ad8, (q31_t)0x3ffa18cf, (q31_t)0x3e54cab5, (q31_t)0x3ffa6dec, (q31_t)0x3e615aa3, (q31_t)0x3ffac092, (q31_t)0x3e6deaa1, (q31_t)0x3ffb10c1, (q31_t)0x3e7a7aae, (q31_t)0x3ffb5e78, (q31_t)0x3e870aca, (q31_t)0x3ffba9b8, (q31_t)0x3e939af5, (q31_t)0x3ffbf280, (q31_t)0x3ea02b2e, (q31_t)0x3ffc38d1, (q31_t)0x3eacbb74, (q31_t)0x3ffc7caa, (q31_t)0x3eb94bc8, (q31_t)0x3ffcbe0c, (q31_t)0x3ec5dc28, (q31_t)0x3ffcfcf6, (q31_t)0x3ed26c94, (q31_t)0x3ffd3969, (q31_t)0x3edefd0c, (q31_t)0x3ffd7364, (q31_t)0x3eeb8d8f, (q31_t)0x3ffdaae7, (q31_t)0x3ef81e1d, (q31_t)0x3ffddff3, (q31_t)0x3f04aeb5, (q31_t)0x3ffe1288, (q31_t)0x3f113f56, (q31_t)0x3ffe42a4, (q31_t)0x3f1dd001, (q31_t)0x3ffe704a, (q31_t)0x3f2a60b4, (q31_t)0x3ffe9b77, (q31_t)0x3f36f170, (q31_t)0x3ffec42d, (q31_t)0x3f438234, (q31_t)0x3ffeea6c, (q31_t)0x3f5012fe, (q31_t)0x3fff0e32, (q31_t)0x3f5ca3d0, (q31_t)0x3fff2f82, (q31_t)0x3f6934a8, (q31_t)0x3fff4e59, (q31_t)0x3f75c585, (q31_t)0x3fff6ab9, (q31_t)0x3f825668, (q31_t)0x3fff84a1, (q31_t)0x3f8ee750, (q31_t)0x3fff9c12, (q31_t)0x3f9b783c, (q31_t)0x3fffb10b, (q31_t)0x3fa8092c, (q31_t)0x3fffc38c, (q31_t)0x3fb49a1f, (q31_t)0x3fffd396, (q31_t)0x3fc12b16, (q31_t)0x3fffe128, (q31_t)0x3fcdbc0f, (q31_t)0x3fffec43, (q31_t)0x3fda4d09, (q31_t)0x3ffff4e6, (q31_t)0x3fe6de05, (q31_t)0x3ffffb11, (q31_t)0x3ff36f02, (q31_t)0x3ffffec4, }; /** @par Generation of realCoefBQ31 array: @par n = 4096
for (i = 0; i < n; i++)
  {
     pBTable[2 * i]     = 0.5 * (1.0 + sin (2 * PI / (double) (2 * n) * (double) i));
     pBTable[2 * i + 1] = 0.5 * (1.0 * cos (2 * PI / (double) (2 * n) * (double) i));
  } 
@par Convert to fixed point Q31 format round(pBTable[i] * pow(2, 31)) */ const q31_t realCoefBQ31[8192] ARM_DSP_TABLE_ATTRIBUTE = { (q31_t)0x40000000, (q31_t)0x40000000, (q31_t)0x400c90fe, (q31_t)0x3ffffec4, (q31_t)0x401921fb, (q31_t)0x3ffffb11, (q31_t)0x4025b2f7, (q31_t)0x3ffff4e6, (q31_t)0x403243f1, (q31_t)0x3fffec43, (q31_t)0x403ed4ea, (q31_t)0x3fffe128, (q31_t)0x404b65e1, (q31_t)0x3fffd396, (q31_t)0x4057f6d4, (q31_t)0x3fffc38c, (q31_t)0x406487c4, (q31_t)0x3fffb10b, (q31_t)0x407118b0, (q31_t)0x3fff9c12, (q31_t)0x407da998, (q31_t)0x3fff84a1, (q31_t)0x408a3a7b, (q31_t)0x3fff6ab9, (q31_t)0x4096cb58, (q31_t)0x3fff4e59, (q31_t)0x40a35c30, (q31_t)0x3fff2f82, (q31_t)0x40afed02, (q31_t)0x3fff0e32, (q31_t)0x40bc7dcc, (q31_t)0x3ffeea6c, (q31_t)0x40c90e90, (q31_t)0x3ffec42d, (q31_t)0x40d59f4c, (q31_t)0x3ffe9b77, (q31_t)0x40e22fff, (q31_t)0x3ffe704a, (q31_t)0x40eec0aa, (q31_t)0x3ffe42a4, (q31_t)0x40fb514b, (q31_t)0x3ffe1288, (q31_t)0x4107e1e3, (q31_t)0x3ffddff3, (q31_t)0x41147271, (q31_t)0x3ffdaae7, (q31_t)0x412102f4, (q31_t)0x3ffd7364, (q31_t)0x412d936c, (q31_t)0x3ffd3969, (q31_t)0x413a23d8, (q31_t)0x3ffcfcf6, (q31_t)0x4146b438, (q31_t)0x3ffcbe0c, (q31_t)0x4153448c, (q31_t)0x3ffc7caa, (q31_t)0x415fd4d2, (q31_t)0x3ffc38d1, (q31_t)0x416c650b, (q31_t)0x3ffbf280, (q31_t)0x4178f536, (q31_t)0x3ffba9b8, (q31_t)0x41858552, (q31_t)0x3ffb5e78, (q31_t)0x4192155f, (q31_t)0x3ffb10c1, (q31_t)0x419ea55d, (q31_t)0x3ffac092, (q31_t)0x41ab354b, (q31_t)0x3ffa6dec, (q31_t)0x41b7c528, (q31_t)0x3ffa18cf, (q31_t)0x41c454f5, (q31_t)0x3ff9c13a, (q31_t)0x41d0e4b0, (q31_t)0x3ff9672d, (q31_t)0x41dd7459, (q31_t)0x3ff90aaa, (q31_t)0x41ea03ef, (q31_t)0x3ff8abae, (q31_t)0x41f69373, (q31_t)0x3ff84a3c, (q31_t)0x420322e3, (q31_t)0x3ff7e652, (q31_t)0x420fb240, (q31_t)0x3ff77ff1, (q31_t)0x421c4188, (q31_t)0x3ff71718, (q31_t)0x4228d0bb, (q31_t)0x3ff6abc8, (q31_t)0x42355fd9, (q31_t)0x3ff63e01, (q31_t)0x4241eee2, (q31_t)0x3ff5cdc3, (q31_t)0x424e7dd4, (q31_t)0x3ff55b0d, (q31_t)0x425b0caf, (q31_t)0x3ff4e5e0, (q31_t)0x42679b73, (q31_t)0x3ff46e3c, (q31_t)0x42742a1f, (q31_t)0x3ff3f420, (q31_t)0x4280b8b3, (q31_t)0x3ff3778e, (q31_t)0x428d472e, (q31_t)0x3ff2f884, (q31_t)0x4299d590, (q31_t)0x3ff27703, (q31_t)0x42a663d8, (q31_t)0x3ff1f30b, (q31_t)0x42b2f207, (q31_t)0x3ff16c9c, (q31_t)0x42bf801a, (q31_t)0x3ff0e3b6, (q31_t)0x42cc0e13, (q31_t)0x3ff05858, (q31_t)0x42d89bf0, (q31_t)0x3fefca84, (q31_t)0x42e529b0, (q31_t)0x3fef3a39, (q31_t)0x42f1b755, (q31_t)0x3feea776, (q31_t)0x42fe44dc, (q31_t)0x3fee123d, (q31_t)0x430ad245, (q31_t)0x3fed7a8c, (q31_t)0x43175f91, (q31_t)0x3fece065, (q31_t)0x4323ecbe, (q31_t)0x3fec43c7, (q31_t)0x433079cc, (q31_t)0x3feba4b2, (q31_t)0x433d06bb, (q31_t)0x3feb0326, (q31_t)0x43499389, (q31_t)0x3fea5f23, (q31_t)0x43562038, (q31_t)0x3fe9b8a9, (q31_t)0x4362acc5, (q31_t)0x3fe90fb9, (q31_t)0x436f3931, (q31_t)0x3fe86452, (q31_t)0x437bc57b, (q31_t)0x3fe7b674, (q31_t)0x438851a2, (q31_t)0x3fe7061f, (q31_t)0x4394dda7, (q31_t)0x3fe65354, (q31_t)0x43a16988, (q31_t)0x3fe59e12, (q31_t)0x43adf546, (q31_t)0x3fe4e659, (q31_t)0x43ba80df, (q31_t)0x3fe42c2a, (q31_t)0x43c70c54, (q31_t)0x3fe36f84, (q31_t)0x43d397a3, (q31_t)0x3fe2b067, (q31_t)0x43e022cc, (q31_t)0x3fe1eed5, (q31_t)0x43ecadcf, (q31_t)0x3fe12acb, (q31_t)0x43f938ac, (q31_t)0x3fe0644b, (q31_t)0x4405c361, (q31_t)0x3fdf9b55, (q31_t)0x44124dee, (q31_t)0x3fdecfe8, (q31_t)0x441ed854, (q31_t)0x3fde0205, (q31_t)0x442b6290, (q31_t)0x3fdd31ac, (q31_t)0x4437eca4, (q31_t)0x3fdc5edc, (q31_t)0x4444768d, (q31_t)0x3fdb8996, (q31_t)0x4451004d, (q31_t)0x3fdab1d9, (q31_t)0x445d89e2, (q31_t)0x3fd9d7a7, (q31_t)0x446a134c, (q31_t)0x3fd8fafe, (q31_t)0x44769c8b, (q31_t)0x3fd81bdf, (q31_t)0x4483259d, (q31_t)0x3fd73a4a, (q31_t)0x448fae83, (q31_t)0x3fd6563f, (q31_t)0x449c373c, (q31_t)0x3fd56fbe, (q31_t)0x44a8bfc7, (q31_t)0x3fd486c7, (q31_t)0x44b54825, (q31_t)0x3fd39b5a, (q31_t)0x44c1d054, (q31_t)0x3fd2ad77, (q31_t)0x44ce5854, (q31_t)0x3fd1bd1e, (q31_t)0x44dae024, (q31_t)0x3fd0ca4f, (q31_t)0x44e767c5, (q31_t)0x3fcfd50b, (q31_t)0x44f3ef35, (q31_t)0x3fcedd50, (q31_t)0x45007674, (q31_t)0x3fcde320, (q31_t)0x450cfd82, (q31_t)0x3fcce67a, (q31_t)0x4519845e, (q31_t)0x3fcbe75e, (q31_t)0x45260b08, (q31_t)0x3fcae5cd, (q31_t)0x4532917f, (q31_t)0x3fc9e1c6, (q31_t)0x453f17c3, (q31_t)0x3fc8db4a, (q31_t)0x454b9dd3, (q31_t)0x3fc7d258, (q31_t)0x455823ae, (q31_t)0x3fc6c6f0, (q31_t)0x4564a955, (q31_t)0x3fc5b913, (q31_t)0x45712ec7, (q31_t)0x3fc4a8c1, (q31_t)0x457db403, (q31_t)0x3fc395f9, (q31_t)0x458a3908, (q31_t)0x3fc280bc, (q31_t)0x4596bdd7, (q31_t)0x3fc1690a, (q31_t)0x45a3426f, (q31_t)0x3fc04ee3, (q31_t)0x45afc6d0, (q31_t)0x3fbf3246, (q31_t)0x45bc4af8, (q31_t)0x3fbe1334, (q31_t)0x45c8cee7, (q31_t)0x3fbcf1ad, (q31_t)0x45d5529e, (q31_t)0x3fbbcdb1, (q31_t)0x45e1d61b, (q31_t)0x3fbaa740, (q31_t)0x45ee595d, (q31_t)0x3fb97e5a, (q31_t)0x45fadc66, (q31_t)0x3fb852ff, (q31_t)0x46075f33, (q31_t)0x3fb7252f, (q31_t)0x4613e1c5, (q31_t)0x3fb5f4ea, (q31_t)0x4620641a, (q31_t)0x3fb4c231, (q31_t)0x462ce634, (q31_t)0x3fb38d02, (q31_t)0x46396810, (q31_t)0x3fb2555f, (q31_t)0x4645e9af, (q31_t)0x3fb11b48, (q31_t)0x46526b10, (q31_t)0x3fafdebb, (q31_t)0x465eec33, (q31_t)0x3fae9fbb, (q31_t)0x466b6d16, (q31_t)0x3fad5e45, (q31_t)0x4677edbb, (q31_t)0x3fac1a5b, (q31_t)0x46846e1f, (q31_t)0x3faad3fd, (q31_t)0x4690ee44, (q31_t)0x3fa98b2a, (q31_t)0x469d6e27, (q31_t)0x3fa83fe3, (q31_t)0x46a9edc9, (q31_t)0x3fa6f228, (q31_t)0x46b66d29, (q31_t)0x3fa5a1f9, (q31_t)0x46c2ec48, (q31_t)0x3fa44f55, (q31_t)0x46cf6b23, (q31_t)0x3fa2fa3d, (q31_t)0x46dbe9bb, (q31_t)0x3fa1a2b2, (q31_t)0x46e86810, (q31_t)0x3fa048b2, (q31_t)0x46f4e620, (q31_t)0x3f9eec3e, (q31_t)0x470163eb, (q31_t)0x3f9d8d56, (q31_t)0x470de172, (q31_t)0x3f9c2bfb, (q31_t)0x471a5eb3, (q31_t)0x3f9ac82c, (q31_t)0x4726dbae, (q31_t)0x3f9961e8, (q31_t)0x47335862, (q31_t)0x3f97f932, (q31_t)0x473fd4cf, (q31_t)0x3f968e07, (q31_t)0x474c50f4, (q31_t)0x3f952069, (q31_t)0x4758ccd2, (q31_t)0x3f93b058, (q31_t)0x47654867, (q31_t)0x3f923dd2, (q31_t)0x4771c3b3, (q31_t)0x3f90c8da, (q31_t)0x477e3eb5, (q31_t)0x3f8f516e, (q31_t)0x478ab96e, (q31_t)0x3f8dd78f, (q31_t)0x479733dc, (q31_t)0x3f8c5b3d, (q31_t)0x47a3adff, (q31_t)0x3f8adc77, (q31_t)0x47b027d7, (q31_t)0x3f895b3e, (q31_t)0x47bca163, (q31_t)0x3f87d792, (q31_t)0x47c91aa3, (q31_t)0x3f865174, (q31_t)0x47d59396, (q31_t)0x3f84c8e2, (q31_t)0x47e20c3b, (q31_t)0x3f833ddd, (q31_t)0x47ee8493, (q31_t)0x3f81b065, (q31_t)0x47fafc9c, (q31_t)0x3f80207b, (q31_t)0x48077457, (q31_t)0x3f7e8e1e, (q31_t)0x4813ebc2, (q31_t)0x3f7cf94e, (q31_t)0x482062de, (q31_t)0x3f7b620c, (q31_t)0x482cd9a9, (q31_t)0x3f79c857, (q31_t)0x48395024, (q31_t)0x3f782c30, (q31_t)0x4845c64d, (q31_t)0x3f768d96, (q31_t)0x48523c25, (q31_t)0x3f74ec8a, (q31_t)0x485eb1ab, (q31_t)0x3f73490b, (q31_t)0x486b26de, (q31_t)0x3f71a31b, (q31_t)0x48779bbe, (q31_t)0x3f6ffab8, (q31_t)0x4884104b, (q31_t)0x3f6e4fe3, (q31_t)0x48908483, (q31_t)0x3f6ca29c, (q31_t)0x489cf867, (q31_t)0x3f6af2e3, (q31_t)0x48a96bf6, (q31_t)0x3f6940b8, (q31_t)0x48b5df30, (q31_t)0x3f678c1c, (q31_t)0x48c25213, (q31_t)0x3f65d50d, (q31_t)0x48cec4a0, (q31_t)0x3f641b8d, (q31_t)0x48db36d6, (q31_t)0x3f625f9b, (q31_t)0x48e7a8b5, (q31_t)0x3f60a138, (q31_t)0x48f41a3c, (q31_t)0x3f5ee063, (q31_t)0x49008b6a, (q31_t)0x3f5d1d1d, (q31_t)0x490cfc40, (q31_t)0x3f5b5765, (q31_t)0x49196cbc, (q31_t)0x3f598f3c, (q31_t)0x4925dcdf, (q31_t)0x3f57c4a2, (q31_t)0x49324ca7, (q31_t)0x3f55f796, (q31_t)0x493ebc14, (q31_t)0x3f54281a, (q31_t)0x494b2b27, (q31_t)0x3f52562c, (q31_t)0x495799dd, (q31_t)0x3f5081cd, (q31_t)0x49640837, (q31_t)0x3f4eaafe, (q31_t)0x49707635, (q31_t)0x3f4cd1be, (q31_t)0x497ce3d5, (q31_t)0x3f4af60d, (q31_t)0x49895118, (q31_t)0x3f4917eb, (q31_t)0x4995bdfd, (q31_t)0x3f473759, (q31_t)0x49a22a83, (q31_t)0x3f455456, (q31_t)0x49ae96aa, (q31_t)0x3f436ee3, (q31_t)0x49bb0271, (q31_t)0x3f4186ff, (q31_t)0x49c76dd8, (q31_t)0x3f3f9cab, (q31_t)0x49d3d8df, (q31_t)0x3f3dafe7, (q31_t)0x49e04385, (q31_t)0x3f3bc0b3, (q31_t)0x49ecadc9, (q31_t)0x3f39cf0e, (q31_t)0x49f917ac, (q31_t)0x3f37dafa, (q31_t)0x4a05812c, (q31_t)0x3f35e476, (q31_t)0x4a11ea49, (q31_t)0x3f33eb81, (q31_t)0x4a1e5303, (q31_t)0x3f31f01d, (q31_t)0x4a2abb59, (q31_t)0x3f2ff24a, (q31_t)0x4a37234a, (q31_t)0x3f2df206, (q31_t)0x4a438ad7, (q31_t)0x3f2bef53, (q31_t)0x4a4ff1fe, (q31_t)0x3f29ea31, (q31_t)0x4a5c58c0, (q31_t)0x3f27e29f, (q31_t)0x4a68bf1b, (q31_t)0x3f25d89e, (q31_t)0x4a752510, (q31_t)0x3f23cc2e, (q31_t)0x4a818a9d, (q31_t)0x3f21bd4e, (q31_t)0x4a8defc3, (q31_t)0x3f1fabff, (q31_t)0x4a9a5480, (q31_t)0x3f1d9842, (q31_t)0x4aa6b8d5, (q31_t)0x3f1b8215, (q31_t)0x4ab31cc1, (q31_t)0x3f19697a, (q31_t)0x4abf8043, (q31_t)0x3f174e70, (q31_t)0x4acbe35b, (q31_t)0x3f1530f7, (q31_t)0x4ad84609, (q31_t)0x3f13110f, (q31_t)0x4ae4a84b, (q31_t)0x3f10eeb9, (q31_t)0x4af10a22, (q31_t)0x3f0ec9f5, (q31_t)0x4afd6b8d, (q31_t)0x3f0ca2c2, (q31_t)0x4b09cc8c, (q31_t)0x3f0a7921, (q31_t)0x4b162d1d, (q31_t)0x3f084d12, (q31_t)0x4b228d42, (q31_t)0x3f061e95, (q31_t)0x4b2eecf8, (q31_t)0x3f03eda9, (q31_t)0x4b3b4c40, (q31_t)0x3f01ba50, (q31_t)0x4b47ab19, (q31_t)0x3eff8489, (q31_t)0x4b540982, (q31_t)0x3efd4c54, (q31_t)0x4b60677c, (q31_t)0x3efb11b1, (q31_t)0x4b6cc506, (q31_t)0x3ef8d4a1, (q31_t)0x4b79221f, (q31_t)0x3ef69523, (q31_t)0x4b857ec7, (q31_t)0x3ef45338, (q31_t)0x4b91dafc, (q31_t)0x3ef20ee0, (q31_t)0x4b9e36c0, (q31_t)0x3eefc81a, (q31_t)0x4baa9211, (q31_t)0x3eed7ee7, (q31_t)0x4bb6ecef, (q31_t)0x3eeb3347, (q31_t)0x4bc34759, (q31_t)0x3ee8e53a, (q31_t)0x4bcfa150, (q31_t)0x3ee694c1, (q31_t)0x4bdbfad1, (q31_t)0x3ee441da, (q31_t)0x4be853de, (q31_t)0x3ee1ec87, (q31_t)0x4bf4ac75, (q31_t)0x3edf94c7, (q31_t)0x4c010496, (q31_t)0x3edd3a9a, (q31_t)0x4c0d5c41, (q31_t)0x3edade01, (q31_t)0x4c19b374, (q31_t)0x3ed87efc, (q31_t)0x4c260a31, (q31_t)0x3ed61d8a, (q31_t)0x4c326075, (q31_t)0x3ed3b9ad, (q31_t)0x4c3eb641, (q31_t)0x3ed15363, (q31_t)0x4c4b0b94, (q31_t)0x3eceeaad, (q31_t)0x4c57606e, (q31_t)0x3ecc7f8b, (q31_t)0x4c63b4ce, (q31_t)0x3eca11fe, (q31_t)0x4c7008b3, (q31_t)0x3ec7a205, (q31_t)0x4c7c5c1e, (q31_t)0x3ec52fa0, (q31_t)0x4c88af0e, (q31_t)0x3ec2bad0, (q31_t)0x4c950182, (q31_t)0x3ec04394, (q31_t)0x4ca1537a, (q31_t)0x3ebdc9ed, (q31_t)0x4cada4f5, (q31_t)0x3ebb4ddb, (q31_t)0x4cb9f5f3, (q31_t)0x3eb8cf5d, (q31_t)0x4cc64673, (q31_t)0x3eb64e75, (q31_t)0x4cd29676, (q31_t)0x3eb3cb21, (q31_t)0x4cdee5f9, (q31_t)0x3eb14563, (q31_t)0x4ceb34fe, (q31_t)0x3eaebd3a, (q31_t)0x4cf78383, (q31_t)0x3eac32a6, (q31_t)0x4d03d189, (q31_t)0x3ea9a5a8, (q31_t)0x4d101f0e, (q31_t)0x3ea7163f, (q31_t)0x4d1c6c11, (q31_t)0x3ea4846c, (q31_t)0x4d28b894, (q31_t)0x3ea1f02f, (q31_t)0x4d350495, (q31_t)0x3e9f5988, (q31_t)0x4d415013, (q31_t)0x3e9cc076, (q31_t)0x4d4d9b0e, (q31_t)0x3e9a24fb, (q31_t)0x4d59e586, (q31_t)0x3e978715, (q31_t)0x4d662f7b, (q31_t)0x3e94e6c6, (q31_t)0x4d7278eb, (q31_t)0x3e92440d, (q31_t)0x4d7ec1d6, (q31_t)0x3e8f9eeb, (q31_t)0x4d8b0a3d, (q31_t)0x3e8cf75f, (q31_t)0x4d97521d, (q31_t)0x3e8a4d6a, (q31_t)0x4da39978, (q31_t)0x3e87a10c, (q31_t)0x4dafe04b, (q31_t)0x3e84f245, (q31_t)0x4dbc2698, (q31_t)0x3e824114, (q31_t)0x4dc86c5d, (q31_t)0x3e7f8d7b, (q31_t)0x4dd4b19a, (q31_t)0x3e7cd778, (q31_t)0x4de0f64f, (q31_t)0x3e7a1f0d, (q31_t)0x4ded3a7b, (q31_t)0x3e77643a, (q31_t)0x4df97e1d, (q31_t)0x3e74a6fd, (q31_t)0x4e05c135, (q31_t)0x3e71e759, (q31_t)0x4e1203c3, (q31_t)0x3e6f254c, (q31_t)0x4e1e45c6, (q31_t)0x3e6c60d7, (q31_t)0x4e2a873e, (q31_t)0x3e6999fa, (q31_t)0x4e36c82a, (q31_t)0x3e66d0b4, (q31_t)0x4e430889, (q31_t)0x3e640507, (q31_t)0x4e4f485c, (q31_t)0x3e6136f3, (q31_t)0x4e5b87a2, (q31_t)0x3e5e6676, (q31_t)0x4e67c65a, (q31_t)0x3e5b9392, (q31_t)0x4e740483, (q31_t)0x3e58be47, (q31_t)0x4e80421e, (q31_t)0x3e55e694, (q31_t)0x4e8c7f2a, (q31_t)0x3e530c7a, (q31_t)0x4e98bba7, (q31_t)0x3e502ff9, (q31_t)0x4ea4f793, (q31_t)0x3e4d5110, (q31_t)0x4eb132ef, (q31_t)0x3e4a6fc1, (q31_t)0x4ebd6db9, (q31_t)0x3e478c0b, (q31_t)0x4ec9a7f3, (q31_t)0x3e44a5ef, (q31_t)0x4ed5e19a, (q31_t)0x3e41bd6c, (q31_t)0x4ee21aaf, (q31_t)0x3e3ed282, (q31_t)0x4eee5331, (q31_t)0x3e3be532, (q31_t)0x4efa8b20, (q31_t)0x3e38f57c, (q31_t)0x4f06c27a, (q31_t)0x3e360360, (q31_t)0x4f12f941, (q31_t)0x3e330ede, (q31_t)0x4f1f2f73, (q31_t)0x3e3017f6, (q31_t)0x4f2b650f, (q31_t)0x3e2d1ea8, (q31_t)0x4f379a16, (q31_t)0x3e2a22f4, (q31_t)0x4f43ce86, (q31_t)0x3e2724db, (q31_t)0x4f500260, (q31_t)0x3e24245d, (q31_t)0x4f5c35a3, (q31_t)0x3e212179, (q31_t)0x4f68684e, (q31_t)0x3e1e1c30, (q31_t)0x4f749a61, (q31_t)0x3e1b1482, (q31_t)0x4f80cbdc, (q31_t)0x3e180a6f, (q31_t)0x4f8cfcbe, (q31_t)0x3e14fdf7, (q31_t)0x4f992d06, (q31_t)0x3e11ef1b, (q31_t)0x4fa55cb4, (q31_t)0x3e0eddd9, (q31_t)0x4fb18bc8, (q31_t)0x3e0bca34, (q31_t)0x4fbdba40, (q31_t)0x3e08b42a, (q31_t)0x4fc9e81e, (q31_t)0x3e059bbb, (q31_t)0x4fd6155f, (q31_t)0x3e0280e9, (q31_t)0x4fe24205, (q31_t)0x3dff63b2, (q31_t)0x4fee6e0d, (q31_t)0x3dfc4418, (q31_t)0x4ffa9979, (q31_t)0x3df9221a, (q31_t)0x5006c446, (q31_t)0x3df5fdb8, (q31_t)0x5012ee76, (q31_t)0x3df2d6f3, (q31_t)0x501f1807, (q31_t)0x3defadca, (q31_t)0x502b40f8, (q31_t)0x3dec823e, (q31_t)0x5037694b, (q31_t)0x3de9544f, (q31_t)0x504390fd, (q31_t)0x3de623fd, (q31_t)0x504fb80e, (q31_t)0x3de2f148, (q31_t)0x505bde7f, (q31_t)0x3ddfbc30, (q31_t)0x5068044e, (q31_t)0x3ddc84b5, (q31_t)0x5074297b, (q31_t)0x3dd94ad8, (q31_t)0x50804e06, (q31_t)0x3dd60e99, (q31_t)0x508c71ee, (q31_t)0x3dd2cff7, (q31_t)0x50989532, (q31_t)0x3dcf8ef3, (q31_t)0x50a4b7d3, (q31_t)0x3dcc4b8d, (q31_t)0x50b0d9d0, (q31_t)0x3dc905c5, (q31_t)0x50bcfb28, (q31_t)0x3dc5bd9b, (q31_t)0x50c91bda, (q31_t)0x3dc2730f, (q31_t)0x50d53be7, (q31_t)0x3dbf2622, (q31_t)0x50e15b4e, (q31_t)0x3dbbd6d4, (q31_t)0x50ed7a0e, (q31_t)0x3db88524, (q31_t)0x50f99827, (q31_t)0x3db53113, (q31_t)0x5105b599, (q31_t)0x3db1daa2, (q31_t)0x5111d263, (q31_t)0x3dae81cf, (q31_t)0x511dee84, (q31_t)0x3dab269b, (q31_t)0x512a09fc, (q31_t)0x3da7c907, (q31_t)0x513624cb, (q31_t)0x3da46912, (q31_t)0x51423ef0, (q31_t)0x3da106bd, (q31_t)0x514e586a, (q31_t)0x3d9da208, (q31_t)0x515a713a, (q31_t)0x3d9a3af2, (q31_t)0x5166895f, (q31_t)0x3d96d17d, (q31_t)0x5172a0d7, (q31_t)0x3d9365a8, (q31_t)0x517eb7a4, (q31_t)0x3d8ff772, (q31_t)0x518acdc4, (q31_t)0x3d8c86de, (q31_t)0x5196e337, (q31_t)0x3d8913ea, (q31_t)0x51a2f7fc, (q31_t)0x3d859e96, (q31_t)0x51af0c13, (q31_t)0x3d8226e4, (q31_t)0x51bb1f7c, (q31_t)0x3d7eacd2, (q31_t)0x51c73235, (q31_t)0x3d7b3061, (q31_t)0x51d3443f, (q31_t)0x3d77b192, (q31_t)0x51df5599, (q31_t)0x3d743064, (q31_t)0x51eb6643, (q31_t)0x3d70acd7, (q31_t)0x51f7763c, (q31_t)0x3d6d26ec, (q31_t)0x52038584, (q31_t)0x3d699ea3, (q31_t)0x520f941a, (q31_t)0x3d6613fb, (q31_t)0x521ba1fd, (q31_t)0x3d6286f6, (q31_t)0x5227af2e, (q31_t)0x3d5ef793, (q31_t)0x5233bbac, (q31_t)0x3d5b65d2, (q31_t)0x523fc776, (q31_t)0x3d57d1b3, (q31_t)0x524bd28c, (q31_t)0x3d543b37, (q31_t)0x5257dced, (q31_t)0x3d50a25e, (q31_t)0x5263e699, (q31_t)0x3d4d0728, (q31_t)0x526fef90, (q31_t)0x3d496994, (q31_t)0x527bf7d1, (q31_t)0x3d45c9a4, (q31_t)0x5287ff5b, (q31_t)0x3d422757, (q31_t)0x5294062f, (q31_t)0x3d3e82ae, (q31_t)0x52a00c4b, (q31_t)0x3d3adba7, (q31_t)0x52ac11af, (q31_t)0x3d373245, (q31_t)0x52b8165b, (q31_t)0x3d338687, (q31_t)0x52c41a4f, (q31_t)0x3d2fd86c, (q31_t)0x52d01d89, (q31_t)0x3d2c27f6, (q31_t)0x52dc2009, (q31_t)0x3d287523, (q31_t)0x52e821cf, (q31_t)0x3d24bff6, (q31_t)0x52f422db, (q31_t)0x3d21086c, (q31_t)0x5300232c, (q31_t)0x3d1d4e88, (q31_t)0x530c22c1, (q31_t)0x3d199248, (q31_t)0x5318219a, (q31_t)0x3d15d3ad, (q31_t)0x53241fb6, (q31_t)0x3d1212b7, (q31_t)0x53301d16, (q31_t)0x3d0e4f67, (q31_t)0x533c19b8, (q31_t)0x3d0a89bc, (q31_t)0x5348159d, (q31_t)0x3d06c1b6, (q31_t)0x535410c3, (q31_t)0x3d02f757, (q31_t)0x53600b2a, (q31_t)0x3cff2a9d, (q31_t)0x536c04d2, (q31_t)0x3cfb5b89, (q31_t)0x5377fdbb, (q31_t)0x3cf78a1b, (q31_t)0x5383f5e3, (q31_t)0x3cf3b653, (q31_t)0x538fed4b, (q31_t)0x3cefe032, (q31_t)0x539be3f2, (q31_t)0x3cec07b8, (q31_t)0x53a7d9d7, (q31_t)0x3ce82ce4, (q31_t)0x53b3cefa, (q31_t)0x3ce44fb7, (q31_t)0x53bfc35b, (q31_t)0x3ce07031, (q31_t)0x53cbb6f8, (q31_t)0x3cdc8e52, (q31_t)0x53d7a9d3, (q31_t)0x3cd8aa1b, (q31_t)0x53e39be9, (q31_t)0x3cd4c38b, (q31_t)0x53ef8d3c, (q31_t)0x3cd0daa2, (q31_t)0x53fb7dc9, (q31_t)0x3cccef62, (q31_t)0x54076d91, (q31_t)0x3cc901c9, (q31_t)0x54135c94, (q31_t)0x3cc511d9, (q31_t)0x541f4ad1, (q31_t)0x3cc11f90, (q31_t)0x542b3846, (q31_t)0x3cbd2af0, (q31_t)0x543724f5, (q31_t)0x3cb933f9, (q31_t)0x544310dd, (q31_t)0x3cb53aaa, (q31_t)0x544efbfc, (q31_t)0x3cb13f04, (q31_t)0x545ae653, (q31_t)0x3cad4107, (q31_t)0x5466cfe1, (q31_t)0x3ca940b3, (q31_t)0x5472b8a5, (q31_t)0x3ca53e09, (q31_t)0x547ea0a0, (q31_t)0x3ca13908, (q31_t)0x548a87d1, (q31_t)0x3c9d31b0, (q31_t)0x54966e36, (q31_t)0x3c992803, (q31_t)0x54a253d1, (q31_t)0x3c951bff, (q31_t)0x54ae38a0, (q31_t)0x3c910da5, (q31_t)0x54ba1ca3, (q31_t)0x3c8cfcf6, (q31_t)0x54c5ffd9, (q31_t)0x3c88e9f1, (q31_t)0x54d1e242, (q31_t)0x3c84d496, (q31_t)0x54ddc3de, (q31_t)0x3c80bce7, (q31_t)0x54e9a4ac, (q31_t)0x3c7ca2e2, (q31_t)0x54f584ac, (q31_t)0x3c788688, (q31_t)0x550163dc, (q31_t)0x3c7467d9, (q31_t)0x550d423d, (q31_t)0x3c7046d6, (q31_t)0x55191fcf, (q31_t)0x3c6c237e, (q31_t)0x5524fc90, (q31_t)0x3c67fdd1, (q31_t)0x5530d881, (q31_t)0x3c63d5d1, (q31_t)0x553cb3a0, (q31_t)0x3c5fab7c, (q31_t)0x55488dee, (q31_t)0x3c5b7ed4, (q31_t)0x5554676a, (q31_t)0x3c574fd8, (q31_t)0x55604013, (q31_t)0x3c531e88, (q31_t)0x556c17e9, (q31_t)0x3c4eeae5, (q31_t)0x5577eeec, (q31_t)0x3c4ab4ef, (q31_t)0x5583c51b, (q31_t)0x3c467ca6, (q31_t)0x558f9a76, (q31_t)0x3c42420a, (q31_t)0x559b6efb, (q31_t)0x3c3e051b, (q31_t)0x55a742ac, (q31_t)0x3c39c5da, (q31_t)0x55b31587, (q31_t)0x3c358446, (q31_t)0x55bee78c, (q31_t)0x3c314060, (q31_t)0x55cab8ba, (q31_t)0x3c2cfa28, (q31_t)0x55d68911, (q31_t)0x3c28b19e, (q31_t)0x55e25890, (q31_t)0x3c2466c2, (q31_t)0x55ee2738, (q31_t)0x3c201994, (q31_t)0x55f9f507, (q31_t)0x3c1bca16, (q31_t)0x5605c1fd, (q31_t)0x3c177845, (q31_t)0x56118e1a, (q31_t)0x3c132424, (q31_t)0x561d595d, (q31_t)0x3c0ecdb2, (q31_t)0x562923c5, (q31_t)0x3c0a74f0, (q31_t)0x5634ed53, (q31_t)0x3c0619dc, (q31_t)0x5640b606, (q31_t)0x3c01bc78, (q31_t)0x564c7ddd, (q31_t)0x3bfd5cc4, (q31_t)0x565844d8, (q31_t)0x3bf8fac0, (q31_t)0x56640af7, (q31_t)0x3bf4966c, (q31_t)0x566fd039, (q31_t)0x3bf02fc9, (q31_t)0x567b949d, (q31_t)0x3bebc6d5, (q31_t)0x56875823, (q31_t)0x3be75b93, (q31_t)0x56931acb, (q31_t)0x3be2ee01, (q31_t)0x569edc94, (q31_t)0x3bde7e20, (q31_t)0x56aa9d7e, (q31_t)0x3bda0bf0, (q31_t)0x56b65d88, (q31_t)0x3bd59771, (q31_t)0x56c21cb2, (q31_t)0x3bd120a4, (q31_t)0x56cddafb, (q31_t)0x3bcca789, (q31_t)0x56d99864, (q31_t)0x3bc82c1f, (q31_t)0x56e554ea, (q31_t)0x3bc3ae67, (q31_t)0x56f1108f, (q31_t)0x3bbf2e62, (q31_t)0x56fccb51, (q31_t)0x3bbaac0e, (q31_t)0x57088531, (q31_t)0x3bb6276e, (q31_t)0x57143e2d, (q31_t)0x3bb1a080, (q31_t)0x571ff646, (q31_t)0x3bad1744, (q31_t)0x572bad7a, (q31_t)0x3ba88bbc, (q31_t)0x573763c9, (q31_t)0x3ba3fde7, (q31_t)0x57431933, (q31_t)0x3b9f6dc5, (q31_t)0x574ecdb8, (q31_t)0x3b9adb57, (q31_t)0x575a8157, (q31_t)0x3b96469d, (q31_t)0x5766340f, (q31_t)0x3b91af97, (q31_t)0x5771e5e0, (q31_t)0x3b8d1644, (q31_t)0x577d96ca, (q31_t)0x3b887aa6, (q31_t)0x578946cc, (q31_t)0x3b83dcbc, (q31_t)0x5794f5e6, (q31_t)0x3b7f3c87, (q31_t)0x57a0a417, (q31_t)0x3b7a9a07, (q31_t)0x57ac515f, (q31_t)0x3b75f53c, (q31_t)0x57b7fdbd, (q31_t)0x3b714e25, (q31_t)0x57c3a931, (q31_t)0x3b6ca4c4, (q31_t)0x57cf53bb, (q31_t)0x3b67f919, (q31_t)0x57dafd59, (q31_t)0x3b634b23, (q31_t)0x57e6a60c, (q31_t)0x3b5e9ae4, (q31_t)0x57f24dd3, (q31_t)0x3b59e85a, (q31_t)0x57fdf4ae, (q31_t)0x3b553386, (q31_t)0x58099a9c, (q31_t)0x3b507c69, (q31_t)0x58153f9d, (q31_t)0x3b4bc303, (q31_t)0x5820e3b0, (q31_t)0x3b470753, (q31_t)0x582c86d5, (q31_t)0x3b42495a, (q31_t)0x5838290c, (q31_t)0x3b3d8918, (q31_t)0x5843ca53, (q31_t)0x3b38c68e, (q31_t)0x584f6aab, (q31_t)0x3b3401bb, (q31_t)0x585b0a13, (q31_t)0x3b2f3aa0, (q31_t)0x5866a88a, (q31_t)0x3b2a713d, (q31_t)0x58724611, (q31_t)0x3b25a591, (q31_t)0x587de2a7, (q31_t)0x3b20d79e, (q31_t)0x58897e4a, (q31_t)0x3b1c0764, (q31_t)0x589518fc, (q31_t)0x3b1734e2, (q31_t)0x58a0b2bb, (q31_t)0x3b126019, (q31_t)0x58ac4b87, (q31_t)0x3b0d8909, (q31_t)0x58b7e35f, (q31_t)0x3b08afb2, (q31_t)0x58c37a44, (q31_t)0x3b03d414, (q31_t)0x58cf1034, (q31_t)0x3afef630, (q31_t)0x58daa52f, (q31_t)0x3afa1605, (q31_t)0x58e63935, (q31_t)0x3af53395, (q31_t)0x58f1cc45, (q31_t)0x3af04edf, (q31_t)0x58fd5e5f, (q31_t)0x3aeb67e3, (q31_t)0x5908ef82, (q31_t)0x3ae67ea1, (q31_t)0x59147fae, (q31_t)0x3ae1931a, (q31_t)0x59200ee3, (q31_t)0x3adca54e, (q31_t)0x592b9d1f, (q31_t)0x3ad7b53d, (q31_t)0x59372a64, (q31_t)0x3ad2c2e8, (q31_t)0x5942b6af, (q31_t)0x3acdce4d, (q31_t)0x594e4201, (q31_t)0x3ac8d76f, (q31_t)0x5959cc5a, (q31_t)0x3ac3de4c, (q31_t)0x596555b8, (q31_t)0x3abee2e5, (q31_t)0x5970de1b, (q31_t)0x3ab9e53a, (q31_t)0x597c6584, (q31_t)0x3ab4e54c, (q31_t)0x5987ebf0, (q31_t)0x3aafe31b, (q31_t)0x59937161, (q31_t)0x3aaadea6, (q31_t)0x599ef5d6, (q31_t)0x3aa5d7ee, (q31_t)0x59aa794d, (q31_t)0x3aa0cef3, (q31_t)0x59b5fbc8, (q31_t)0x3a9bc3b6, (q31_t)0x59c17d44, (q31_t)0x3a96b636, (q31_t)0x59ccfdc2, (q31_t)0x3a91a674, (q31_t)0x59d87d42, (q31_t)0x3a8c9470, (q31_t)0x59e3fbc3, (q31_t)0x3a87802a, (q31_t)0x59ef7944, (q31_t)0x3a8269a3, (q31_t)0x59faf5c5, (q31_t)0x3a7d50da, (q31_t)0x5a067145, (q31_t)0x3a7835cf, (q31_t)0x5a11ebc5, (q31_t)0x3a731884, (q31_t)0x5a1d6544, (q31_t)0x3a6df8f8, (q31_t)0x5a28ddc0, (q31_t)0x3a68d72b, (q31_t)0x5a34553b, (q31_t)0x3a63b31d, (q31_t)0x5a3fcbb3, (q31_t)0x3a5e8cd0, (q31_t)0x5a4b4128, (q31_t)0x3a596442, (q31_t)0x5a56b599, (q31_t)0x3a543974, (q31_t)0x5a622907, (q31_t)0x3a4f0c67, (q31_t)0x5a6d9b70, (q31_t)0x3a49dd1a, (q31_t)0x5a790cd4, (q31_t)0x3a44ab8e, (q31_t)0x5a847d33, (q31_t)0x3a3f77c3, (q31_t)0x5a8fec8c, (q31_t)0x3a3a41b9, (q31_t)0x5a9b5adf, (q31_t)0x3a350970, (q31_t)0x5aa6c82b, (q31_t)0x3a2fcee8, (q31_t)0x5ab23471, (q31_t)0x3a2a9223, (q31_t)0x5abd9faf, (q31_t)0x3a25531f, (q31_t)0x5ac909e5, (q31_t)0x3a2011de, (q31_t)0x5ad47312, (q31_t)0x3a1ace5f, (q31_t)0x5adfdb37, (q31_t)0x3a1588a2, (q31_t)0x5aeb4253, (q31_t)0x3a1040a8, (q31_t)0x5af6a865, (q31_t)0x3a0af671, (q31_t)0x5b020d6c, (q31_t)0x3a05a9fd, (q31_t)0x5b0d716a, (q31_t)0x3a005b4d, (q31_t)0x5b18d45c, (q31_t)0x39fb0a60, (q31_t)0x5b243643, (q31_t)0x39f5b737, (q31_t)0x5b2f971e, (q31_t)0x39f061d2, (q31_t)0x5b3af6ec, (q31_t)0x39eb0a31, (q31_t)0x5b4655ae, (q31_t)0x39e5b054, (q31_t)0x5b51b363, (q31_t)0x39e0543c, (q31_t)0x5b5d100a, (q31_t)0x39daf5e8, (q31_t)0x5b686ba3, (q31_t)0x39d5955a, (q31_t)0x5b73c62d, (q31_t)0x39d03291, (q31_t)0x5b7f1fa9, (q31_t)0x39cacd8d, (q31_t)0x5b8a7815, (q31_t)0x39c5664f, (q31_t)0x5b95cf71, (q31_t)0x39bffcd7, (q31_t)0x5ba125bd, (q31_t)0x39ba9125, (q31_t)0x5bac7af9, (q31_t)0x39b52339, (q31_t)0x5bb7cf23, (q31_t)0x39afb313, (q31_t)0x5bc3223c, (q31_t)0x39aa40b4, (q31_t)0x5bce7442, (q31_t)0x39a4cc1c, (q31_t)0x5bd9c537, (q31_t)0x399f554b, (q31_t)0x5be51518, (q31_t)0x3999dc42, (q31_t)0x5bf063e6, (q31_t)0x399460ff, (q31_t)0x5bfbb1a0, (q31_t)0x398ee385, (q31_t)0x5c06fe46, (q31_t)0x398963d2, (q31_t)0x5c1249d8, (q31_t)0x3983e1e8, (q31_t)0x5c1d9454, (q31_t)0x397e5dc6, (q31_t)0x5c28ddbb, (q31_t)0x3978d76c, (q31_t)0x5c34260c, (q31_t)0x39734edc, (q31_t)0x5c3f6d47, (q31_t)0x396dc414, (q31_t)0x5c4ab36b, (q31_t)0x39683715, (q31_t)0x5c55f878, (q31_t)0x3962a7e0, (q31_t)0x5c613c6d, (q31_t)0x395d1675, (q31_t)0x5c6c7f4a, (q31_t)0x395782d3, (q31_t)0x5c77c10e, (q31_t)0x3951ecfc, (q31_t)0x5c8301b9, (q31_t)0x394c54ee, (q31_t)0x5c8e414b, (q31_t)0x3946baac, (q31_t)0x5c997fc4, (q31_t)0x39411e33, (q31_t)0x5ca4bd21, (q31_t)0x393b7f86, (q31_t)0x5caff965, (q31_t)0x3935dea4, (q31_t)0x5cbb348d, (q31_t)0x39303b8e, (q31_t)0x5cc66e99, (q31_t)0x392a9642, (q31_t)0x5cd1a78a, (q31_t)0x3924eec3, (q31_t)0x5cdcdf5e, (q31_t)0x391f4510, (q31_t)0x5ce81615, (q31_t)0x39199929, (q31_t)0x5cf34baf, (q31_t)0x3913eb0e, (q31_t)0x5cfe802b, (q31_t)0x390e3ac0, (q31_t)0x5d09b389, (q31_t)0x3908883f, (q31_t)0x5d14e5c9, (q31_t)0x3902d38b, (q31_t)0x5d2016e9, (q31_t)0x38fd1ca4, (q31_t)0x5d2b46ea, (q31_t)0x38f7638b, (q31_t)0x5d3675cb, (q31_t)0x38f1a840, (q31_t)0x5d41a38c, (q31_t)0x38ebeac2, (q31_t)0x5d4cd02c, (q31_t)0x38e62b13, (q31_t)0x5d57fbaa, (q31_t)0x38e06932, (q31_t)0x5d632608, (q31_t)0x38daa520, (q31_t)0x5d6e4f43, (q31_t)0x38d4dedd, (q31_t)0x5d79775c, (q31_t)0x38cf1669, (q31_t)0x5d849e51, (q31_t)0x38c94bc4, (q31_t)0x5d8fc424, (q31_t)0x38c37eef, (q31_t)0x5d9ae8d2, (q31_t)0x38bdafea, (q31_t)0x5da60c5d, (q31_t)0x38b7deb4, (q31_t)0x5db12ec3, (q31_t)0x38b20b4f, (q31_t)0x5dbc5004, (q31_t)0x38ac35ba, (q31_t)0x5dc7701f, (q31_t)0x38a65df6, (q31_t)0x5dd28f15, (q31_t)0x38a08402, (q31_t)0x5dddace4, (q31_t)0x389aa7e0, (q31_t)0x5de8c98c, (q31_t)0x3894c98f, (q31_t)0x5df3e50d, (q31_t)0x388ee910, (q31_t)0x5dfeff67, (q31_t)0x38890663, (q31_t)0x5e0a1898, (q31_t)0x38832187, (q31_t)0x5e1530a1, (q31_t)0x387d3a7e, (q31_t)0x5e204781, (q31_t)0x38775147, (q31_t)0x5e2b5d38, (q31_t)0x387165e3, (q31_t)0x5e3671c5, (q31_t)0x386b7852, (q31_t)0x5e418528, (q31_t)0x38658894, (q31_t)0x5e4c9760, (q31_t)0x385f96a9, (q31_t)0x5e57a86d, (q31_t)0x3859a292, (q31_t)0x5e62b84f, (q31_t)0x3853ac4f, (q31_t)0x5e6dc705, (q31_t)0x384db3e0, (q31_t)0x5e78d48e, (q31_t)0x3847b946, (q31_t)0x5e83e0eb, (q31_t)0x3841bc7f, (q31_t)0x5e8eec1b, (q31_t)0x383bbd8e, (q31_t)0x5e99f61d, (q31_t)0x3835bc71, (q31_t)0x5ea4fef0, (q31_t)0x382fb92a, (q31_t)0x5eb00696, (q31_t)0x3829b3b9, (q31_t)0x5ebb0d0d, (q31_t)0x3823ac1d, (q31_t)0x5ec61254, (q31_t)0x381da256, (q31_t)0x5ed1166b, (q31_t)0x38179666, (q31_t)0x5edc1953, (q31_t)0x3811884d, (q31_t)0x5ee71b0a, (q31_t)0x380b780a, (q31_t)0x5ef21b90, (q31_t)0x3805659e, (q31_t)0x5efd1ae4, (q31_t)0x37ff5109, (q31_t)0x5f081907, (q31_t)0x37f93a4b, (q31_t)0x5f1315f7, (q31_t)0x37f32165, (q31_t)0x5f1e11b5, (q31_t)0x37ed0657, (q31_t)0x5f290c3f, (q31_t)0x37e6e921, (q31_t)0x5f340596, (q31_t)0x37e0c9c3, (q31_t)0x5f3efdb9, (q31_t)0x37daa83d, (q31_t)0x5f49f4a8, (q31_t)0x37d48490, (q31_t)0x5f54ea62, (q31_t)0x37ce5ebd, (q31_t)0x5f5fdee6, (q31_t)0x37c836c2, (q31_t)0x5f6ad235, (q31_t)0x37c20ca1, (q31_t)0x5f75c44e, (q31_t)0x37bbe05a, (q31_t)0x5f80b531, (q31_t)0x37b5b1ec, (q31_t)0x5f8ba4dc, (q31_t)0x37af8159, (q31_t)0x5f969350, (q31_t)0x37a94ea0, (q31_t)0x5fa1808c, (q31_t)0x37a319c2, (q31_t)0x5fac6c91, (q31_t)0x379ce2be, (q31_t)0x5fb7575c, (q31_t)0x3796a996, (q31_t)0x5fc240ef, (q31_t)0x37906e49, (q31_t)0x5fcd2948, (q31_t)0x378a30d8, (q31_t)0x5fd81067, (q31_t)0x3783f143, (q31_t)0x5fe2f64c, (q31_t)0x377daf89, (q31_t)0x5feddaf6, (q31_t)0x37776bac, (q31_t)0x5ff8be65, (q31_t)0x377125ac, (q31_t)0x6003a099, (q31_t)0x376add88, (q31_t)0x600e8190, (q31_t)0x37649341, (q31_t)0x6019614c, (q31_t)0x375e46d8, (q31_t)0x60243fca, (q31_t)0x3757f84c, (q31_t)0x602f1d0b, (q31_t)0x3751a79e, (q31_t)0x6039f90f, (q31_t)0x374b54ce, (q31_t)0x6044d3d4, (q31_t)0x3744ffdd, (q31_t)0x604fad5b, (q31_t)0x373ea8ca, (q31_t)0x605a85a3, (q31_t)0x37384f95, (q31_t)0x60655cac, (q31_t)0x3731f440, (q31_t)0x60703275, (q31_t)0x372b96ca, (q31_t)0x607b06fe, (q31_t)0x37253733, (q31_t)0x6085da46, (q31_t)0x371ed57c, (q31_t)0x6090ac4d, (q31_t)0x371871a5, (q31_t)0x609b7d13, (q31_t)0x37120bae, (q31_t)0x60a64c97, (q31_t)0x370ba398, (q31_t)0x60b11ad9, (q31_t)0x37053962, (q31_t)0x60bbe7d8, (q31_t)0x36fecd0e, (q31_t)0x60c6b395, (q31_t)0x36f85e9a, (q31_t)0x60d17e0d, (q31_t)0x36f1ee09, (q31_t)0x60dc4742, (q31_t)0x36eb7b58, (q31_t)0x60e70f32, (q31_t)0x36e5068a, (q31_t)0x60f1d5de, (q31_t)0x36de8f9e, (q31_t)0x60fc9b44, (q31_t)0x36d81695, (q31_t)0x61075f65, (q31_t)0x36d19b6e, (q31_t)0x61122240, (q31_t)0x36cb1e2a, (q31_t)0x611ce3d5, (q31_t)0x36c49ec9, (q31_t)0x6127a423, (q31_t)0x36be1d4c, (q31_t)0x61326329, (q31_t)0x36b799b3, (q31_t)0x613d20e8, (q31_t)0x36b113fd, (q31_t)0x6147dd5f, (q31_t)0x36aa8c2c, (q31_t)0x6152988d, (q31_t)0x36a4023f, (q31_t)0x615d5273, (q31_t)0x369d7637, (q31_t)0x61680b0f, (q31_t)0x3696e814, (q31_t)0x6172c262, (q31_t)0x369057d6, (q31_t)0x617d786a, (q31_t)0x3689c57d, (q31_t)0x61882d28, (q31_t)0x3683310b, (q31_t)0x6192e09b, (q31_t)0x367c9a7e, (q31_t)0x619d92c2, (q31_t)0x367601d7, (q31_t)0x61a8439e, (q31_t)0x366f6717, (q31_t)0x61b2f32e, (q31_t)0x3668ca3e, (q31_t)0x61bda171, (q31_t)0x36622b4c, (q31_t)0x61c84e67, (q31_t)0x365b8a41, (q31_t)0x61d2fa0f, (q31_t)0x3654e71d, (q31_t)0x61dda46a, (q31_t)0x364e41e2, (q31_t)0x61e84d76, (q31_t)0x36479a8e, (q31_t)0x61f2f534, (q31_t)0x3640f123, (q31_t)0x61fd9ba3, (q31_t)0x363a45a0, (q31_t)0x620840c2, (q31_t)0x36339806, (q31_t)0x6212e492, (q31_t)0x362ce855, (q31_t)0x621d8711, (q31_t)0x3626368d, (q31_t)0x6228283f, (q31_t)0x361f82af, (q31_t)0x6232c81c, (q31_t)0x3618ccba, (q31_t)0x623d66a8, (q31_t)0x361214b0, (q31_t)0x624803e2, (q31_t)0x360b5a90, (q31_t)0x62529fca, (q31_t)0x36049e5b, (q31_t)0x625d3a5e, (q31_t)0x35fde011, (q31_t)0x6267d3a0, (q31_t)0x35f71fb1, (q31_t)0x62726b8e, (q31_t)0x35f05d3d, (q31_t)0x627d0228, (q31_t)0x35e998b5, (q31_t)0x6287976e, (q31_t)0x35e2d219, (q31_t)0x62922b5e, (q31_t)0x35dc0968, (q31_t)0x629cbdfa, (q31_t)0x35d53ea5, (q31_t)0x62a74f40, (q31_t)0x35ce71ce, (q31_t)0x62b1df30, (q31_t)0x35c7a2e3, (q31_t)0x62bc6dca, (q31_t)0x35c0d1e7, (q31_t)0x62c6fb0c, (q31_t)0x35b9fed7, (q31_t)0x62d186f8, (q31_t)0x35b329b5, (q31_t)0x62dc118c, (q31_t)0x35ac5282, (q31_t)0x62e69ac8, (q31_t)0x35a5793c, (q31_t)0x62f122ab, (q31_t)0x359e9de5, (q31_t)0x62fba936, (q31_t)0x3597c07d, (q31_t)0x63062e67, (q31_t)0x3590e104, (q31_t)0x6310b23e, (q31_t)0x3589ff7a, (q31_t)0x631b34bc, (q31_t)0x35831be0, (q31_t)0x6325b5df, (q31_t)0x357c3636, (q31_t)0x633035a7, (q31_t)0x35754e7c, (q31_t)0x633ab414, (q31_t)0x356e64b2, (q31_t)0x63453125, (q31_t)0x356778d9, (q31_t)0x634facda, (q31_t)0x35608af1, (q31_t)0x635a2733, (q31_t)0x35599afa, (q31_t)0x6364a02e, (q31_t)0x3552a8f4, (q31_t)0x636f17cc, (q31_t)0x354bb4e1, (q31_t)0x63798e0d, (q31_t)0x3544bebf, (q31_t)0x638402ef, (q31_t)0x353dc68f, (q31_t)0x638e7673, (q31_t)0x3536cc52, (q31_t)0x6398e898, (q31_t)0x352fd008, (q31_t)0x63a3595e, (q31_t)0x3528d1b1, (q31_t)0x63adc8c4, (q31_t)0x3521d14d, (q31_t)0x63b836ca, (q31_t)0x351acedd, (q31_t)0x63c2a36f, (q31_t)0x3513ca60, (q31_t)0x63cd0eb3, (q31_t)0x350cc3d8, (q31_t)0x63d77896, (q31_t)0x3505bb44, (q31_t)0x63e1e117, (q31_t)0x34feb0a5, (q31_t)0x63ec4837, (q31_t)0x34f7a3fb, (q31_t)0x63f6adf3, (q31_t)0x34f09546, (q31_t)0x6401124d, (q31_t)0x34e98487, (q31_t)0x640b7543, (q31_t)0x34e271bd, (q31_t)0x6415d6d5, (q31_t)0x34db5cea, (q31_t)0x64203704, (q31_t)0x34d4460c, (q31_t)0x642a95ce, (q31_t)0x34cd2d26, (q31_t)0x6434f332, (q31_t)0x34c61236, (q31_t)0x643f4f32, (q31_t)0x34bef53d, (q31_t)0x6449a9cc, (q31_t)0x34b7d63c, (q31_t)0x645402ff, (q31_t)0x34b0b533, (q31_t)0x645e5acc, (q31_t)0x34a99221, (q31_t)0x6468b132, (q31_t)0x34a26d08, (q31_t)0x64730631, (q31_t)0x349b45e7, (q31_t)0x647d59c8, (q31_t)0x34941cbf, (q31_t)0x6487abf7, (q31_t)0x348cf190, (q31_t)0x6491fcbe, (q31_t)0x3485c45b, (q31_t)0x649c4c1b, (q31_t)0x347e951f, (q31_t)0x64a69a0f, (q31_t)0x347763dd, (q31_t)0x64b0e699, (q31_t)0x34703095, (q31_t)0x64bb31ba, (q31_t)0x3468fb47, (q31_t)0x64c57b6f, (q31_t)0x3461c3f5, (q31_t)0x64cfc3ba, (q31_t)0x345a8a9d, (q31_t)0x64da0a9a, (q31_t)0x34534f41, (q31_t)0x64e4500e, (q31_t)0x344c11e0, (q31_t)0x64ee9415, (q31_t)0x3444d27b, (q31_t)0x64f8d6b0, (q31_t)0x343d9112, (q31_t)0x650317df, (q31_t)0x34364da6, (q31_t)0x650d57a0, (q31_t)0x342f0836, (q31_t)0x651795f3, (q31_t)0x3427c0c3, (q31_t)0x6521d2d8, (q31_t)0x3420774d, (q31_t)0x652c0e4f, (q31_t)0x34192bd5, (q31_t)0x65364857, (q31_t)0x3411de5b, (q31_t)0x654080ef, (q31_t)0x340a8edf, (q31_t)0x654ab818, (q31_t)0x34033d61, (q31_t)0x6554edd1, (q31_t)0x33fbe9e2, (q31_t)0x655f2219, (q31_t)0x33f49462, (q31_t)0x656954f1, (q31_t)0x33ed3ce1, (q31_t)0x65738657, (q31_t)0x33e5e360, (q31_t)0x657db64c, (q31_t)0x33de87de, (q31_t)0x6587e4cf, (q31_t)0x33d72a5d, (q31_t)0x659211df, (q31_t)0x33cfcadc, (q31_t)0x659c3d7c, (q31_t)0x33c8695b, (q31_t)0x65a667a7, (q31_t)0x33c105db, (q31_t)0x65b0905d, (q31_t)0x33b9a05d, (q31_t)0x65bab7a0, (q31_t)0x33b238e0, (q31_t)0x65c4dd6e, (q31_t)0x33aacf65, (q31_t)0x65cf01c8, (q31_t)0x33a363ec, (q31_t)0x65d924ac, (q31_t)0x339bf675, (q31_t)0x65e3461b, (q31_t)0x33948701, (q31_t)0x65ed6614, (q31_t)0x338d1590, (q31_t)0x65f78497, (q31_t)0x3385a222, (q31_t)0x6601a1a2, (q31_t)0x337e2cb7, (q31_t)0x660bbd37, (q31_t)0x3376b551, (q31_t)0x6615d754, (q31_t)0x336f3bee, (q31_t)0x661feffa, (q31_t)0x3367c090, (q31_t)0x662a0727, (q31_t)0x33604336, (q31_t)0x66341cdb, (q31_t)0x3358c3e2, (q31_t)0x663e3117, (q31_t)0x33514292, (q31_t)0x664843d9, (q31_t)0x3349bf48, (q31_t)0x66525521, (q31_t)0x33423a04, (q31_t)0x665c64ef, (q31_t)0x333ab2c6, (q31_t)0x66667342, (q31_t)0x3333298f, (q31_t)0x6670801a, (q31_t)0x332b9e5e, (q31_t)0x667a8b77, (q31_t)0x33241134, (q31_t)0x66849558, (q31_t)0x331c8211, (q31_t)0x668e9dbd, (q31_t)0x3314f0f6, (q31_t)0x6698a4a6, (q31_t)0x330d5de3, (q31_t)0x66a2aa11, (q31_t)0x3305c8d7, (q31_t)0x66acadff, (q31_t)0x32fe31d5, (q31_t)0x66b6b070, (q31_t)0x32f698db, (q31_t)0x66c0b162, (q31_t)0x32eefdea, (q31_t)0x66cab0d6, (q31_t)0x32e76102, (q31_t)0x66d4aecb, (q31_t)0x32dfc224, (q31_t)0x66deab41, (q31_t)0x32d82150, (q31_t)0x66e8a637, (q31_t)0x32d07e85, (q31_t)0x66f29fad, (q31_t)0x32c8d9c6, (q31_t)0x66fc97a3, (q31_t)0x32c13311, (q31_t)0x67068e18, (q31_t)0x32b98a67, (q31_t)0x6710830c, (q31_t)0x32b1dfc9, (q31_t)0x671a767e, (q31_t)0x32aa3336, (q31_t)0x6724686e, (q31_t)0x32a284b0, (q31_t)0x672e58dc, (q31_t)0x329ad435, (q31_t)0x673847c8, (q31_t)0x329321c7, (q31_t)0x67423530, (q31_t)0x328b6d66, (q31_t)0x674c2115, (q31_t)0x3283b712, (q31_t)0x67560b76, (q31_t)0x327bfecc, (q31_t)0x675ff452, (q31_t)0x32744493, (q31_t)0x6769dbaa, (q31_t)0x326c8868, (q31_t)0x6773c17d, (q31_t)0x3264ca4c, (q31_t)0x677da5cb, (q31_t)0x325d0a3e, (q31_t)0x67878893, (q31_t)0x32554840, (q31_t)0x679169d5, (q31_t)0x324d8450, (q31_t)0x679b4990, (q31_t)0x3245be70, (q31_t)0x67a527c4, (q31_t)0x323df6a0, (q31_t)0x67af0472, (q31_t)0x32362ce0, (q31_t)0x67b8df97, (q31_t)0x322e6130, (q31_t)0x67c2b934, (q31_t)0x32269391, (q31_t)0x67cc9149, (q31_t)0x321ec403, (q31_t)0x67d667d5, (q31_t)0x3216f287, (q31_t)0x67e03cd8, (q31_t)0x320f1f1c, (q31_t)0x67ea1052, (q31_t)0x320749c3, (q31_t)0x67f3e241, (q31_t)0x31ff727c, (q31_t)0x67fdb2a7, (q31_t)0x31f79948, (q31_t)0x68078181, (q31_t)0x31efbe27, (q31_t)0x68114ed0, (q31_t)0x31e7e118, (q31_t)0x681b1a94, (q31_t)0x31e0021e, (q31_t)0x6824e4cc, (q31_t)0x31d82137, (q31_t)0x682ead78, (q31_t)0x31d03e64, (q31_t)0x68387498, (q31_t)0x31c859a5, (q31_t)0x68423a2a, (q31_t)0x31c072fb, (q31_t)0x684bfe2f, (q31_t)0x31b88a66, (q31_t)0x6855c0a6, (q31_t)0x31b09fe7, (q31_t)0x685f8190, (q31_t)0x31a8b37c, (q31_t)0x686940ea, (q31_t)0x31a0c528, (q31_t)0x6872feb6, (q31_t)0x3198d4ea, (q31_t)0x687cbaf3, (q31_t)0x3190e2c3, (q31_t)0x688675a0, (q31_t)0x3188eeb2, (q31_t)0x68902ebd, (q31_t)0x3180f8b8, (q31_t)0x6899e64a, (q31_t)0x317900d6, (q31_t)0x68a39c46, (q31_t)0x3171070c, (q31_t)0x68ad50b1, (q31_t)0x31690b59, (q31_t)0x68b7038b, (q31_t)0x31610dbf, (q31_t)0x68c0b4d2, (q31_t)0x31590e3e, (q31_t)0x68ca6488, (q31_t)0x31510cd5, (q31_t)0x68d412ab, (q31_t)0x31490986, (q31_t)0x68ddbf3b, (q31_t)0x31410450, (q31_t)0x68e76a37, (q31_t)0x3138fd35, (q31_t)0x68f113a0, (q31_t)0x3130f433, (q31_t)0x68fabb75, (q31_t)0x3128e94c, (q31_t)0x690461b5, (q31_t)0x3120dc80, (q31_t)0x690e0661, (q31_t)0x3118cdcf, (q31_t)0x6917a977, (q31_t)0x3110bd39, (q31_t)0x69214af8, (q31_t)0x3108aabf, (q31_t)0x692aeae3, (q31_t)0x31009661, (q31_t)0x69348937, (q31_t)0x30f8801f, (q31_t)0x693e25f5, (q31_t)0x30f067fb, (q31_t)0x6947c11c, (q31_t)0x30e84df3, (q31_t)0x69515aab, (q31_t)0x30e03208, (q31_t)0x695af2a3, (q31_t)0x30d8143b, (q31_t)0x69648902, (q31_t)0x30cff48c, (q31_t)0x696e1dc9, (q31_t)0x30c7d2fb, (q31_t)0x6977b0f7, (q31_t)0x30bfaf89, (q31_t)0x6981428c, (q31_t)0x30b78a36, (q31_t)0x698ad287, (q31_t)0x30af6302, (q31_t)0x699460e8, (q31_t)0x30a739ed, (q31_t)0x699dedaf, (q31_t)0x309f0ef8, (q31_t)0x69a778db, (q31_t)0x3096e223, (q31_t)0x69b1026c, (q31_t)0x308eb36f, (q31_t)0x69ba8a61, (q31_t)0x308682dc, (q31_t)0x69c410ba, (q31_t)0x307e5069, (q31_t)0x69cd9578, (q31_t)0x30761c18, (q31_t)0x69d71899, (q31_t)0x306de5e9, (q31_t)0x69e09a1c, (q31_t)0x3065addb, (q31_t)0x69ea1a03, (q31_t)0x305d73f0, (q31_t)0x69f3984c, (q31_t)0x30553828, (q31_t)0x69fd14f6, (q31_t)0x304cfa83, (q31_t)0x6a069003, (q31_t)0x3044bb00, (q31_t)0x6a100970, (q31_t)0x303c79a2, (q31_t)0x6a19813f, (q31_t)0x30343667, (q31_t)0x6a22f76e, (q31_t)0x302bf151, (q31_t)0x6a2c6bfd, (q31_t)0x3023aa5f, (q31_t)0x6a35deeb, (q31_t)0x301b6193, (q31_t)0x6a3f503a, (q31_t)0x301316eb, (q31_t)0x6a48bfe7, (q31_t)0x300aca69, (q31_t)0x6a522df3, (q31_t)0x30027c0c, (q31_t)0x6a5b9a5d, (q31_t)0x2ffa2bd6, (q31_t)0x6a650525, (q31_t)0x2ff1d9c7, (q31_t)0x6a6e6e4b, (q31_t)0x2fe985de, (q31_t)0x6a77d5ce, (q31_t)0x2fe1301c, (q31_t)0x6a813bae, (q31_t)0x2fd8d882, (q31_t)0x6a8a9fea, (q31_t)0x2fd07f0f, (q31_t)0x6a940283, (q31_t)0x2fc823c5, (q31_t)0x6a9d6377, (q31_t)0x2fbfc6a3, (q31_t)0x6aa6c2c6, (q31_t)0x2fb767aa, (q31_t)0x6ab02071, (q31_t)0x2faf06da, (q31_t)0x6ab97c77, (q31_t)0x2fa6a433, (q31_t)0x6ac2d6d6, (q31_t)0x2f9e3fb6, (q31_t)0x6acc2f90, (q31_t)0x2f95d963, (q31_t)0x6ad586a3, (q31_t)0x2f8d713a, (q31_t)0x6adedc10, (q31_t)0x2f85073c, (q31_t)0x6ae82fd5, (q31_t)0x2f7c9b69, (q31_t)0x6af181f3, (q31_t)0x2f742dc1, (q31_t)0x6afad269, (q31_t)0x2f6bbe45, (q31_t)0x6b042137, (q31_t)0x2f634cf5, (q31_t)0x6b0d6e5c, (q31_t)0x2f5ad9d1, (q31_t)0x6b16b9d9, (q31_t)0x2f5264da, (q31_t)0x6b2003ac, (q31_t)0x2f49ee0f, (q31_t)0x6b294bd5, (q31_t)0x2f417573, (q31_t)0x6b329255, (q31_t)0x2f38fb03, (q31_t)0x6b3bd72a, (q31_t)0x2f307ec2, (q31_t)0x6b451a55, (q31_t)0x2f2800af, (q31_t)0x6b4e5bd4, (q31_t)0x2f1f80ca, (q31_t)0x6b579ba8, (q31_t)0x2f16ff14, (q31_t)0x6b60d9d0, (q31_t)0x2f0e7b8e, (q31_t)0x6b6a164d, (q31_t)0x2f05f637, (q31_t)0x6b73511c, (q31_t)0x2efd6f10, (q31_t)0x6b7c8a3f, (q31_t)0x2ef4e619, (q31_t)0x6b85c1b5, (q31_t)0x2eec5b53, (q31_t)0x6b8ef77d, (q31_t)0x2ee3cebe, (q31_t)0x6b982b97, (q31_t)0x2edb405a, (q31_t)0x6ba15e03, (q31_t)0x2ed2b027, (q31_t)0x6baa8ec0, (q31_t)0x2eca1e27, (q31_t)0x6bb3bdce, (q31_t)0x2ec18a58, (q31_t)0x6bbceb2d, (q31_t)0x2eb8f4bc, (q31_t)0x6bc616dd, (q31_t)0x2eb05d53, (q31_t)0x6bcf40dc, (q31_t)0x2ea7c41e, (q31_t)0x6bd8692b, (q31_t)0x2e9f291b, (q31_t)0x6be18fc9, (q31_t)0x2e968c4d, (q31_t)0x6beab4b6, (q31_t)0x2e8dedb3, (q31_t)0x6bf3d7f2, (q31_t)0x2e854d4d, (q31_t)0x6bfcf97c, (q31_t)0x2e7cab1c, (q31_t)0x6c061953, (q31_t)0x2e740720, (q31_t)0x6c0f3779, (q31_t)0x2e6b615a, (q31_t)0x6c1853eb, (q31_t)0x2e62b9ca, (q31_t)0x6c216eaa, (q31_t)0x2e5a1070, (q31_t)0x6c2a87b6, (q31_t)0x2e51654c, (q31_t)0x6c339f0e, (q31_t)0x2e48b860, (q31_t)0x6c3cb4b1, (q31_t)0x2e4009aa, (q31_t)0x6c45c8a0, (q31_t)0x2e37592c, (q31_t)0x6c4edada, (q31_t)0x2e2ea6e6, (q31_t)0x6c57eb5e, (q31_t)0x2e25f2d8, (q31_t)0x6c60fa2d, (q31_t)0x2e1d3d03, (q31_t)0x6c6a0746, (q31_t)0x2e148566, (q31_t)0x6c7312a9, (q31_t)0x2e0bcc03, (q31_t)0x6c7c1c55, (q31_t)0x2e0310d9, (q31_t)0x6c85244a, (q31_t)0x2dfa53e9, (q31_t)0x6c8e2a87, (q31_t)0x2df19534, (q31_t)0x6c972f0d, (q31_t)0x2de8d4b8, (q31_t)0x6ca031da, (q31_t)0x2de01278, (q31_t)0x6ca932ef, (q31_t)0x2dd74e73, (q31_t)0x6cb2324c, (q31_t)0x2dce88aa, (q31_t)0x6cbb2fef, (q31_t)0x2dc5c11c, (q31_t)0x6cc42bd9, (q31_t)0x2dbcf7cb, (q31_t)0x6ccd2609, (q31_t)0x2db42cb6, (q31_t)0x6cd61e7f, (q31_t)0x2dab5fdf, (q31_t)0x6cdf153a, (q31_t)0x2da29144, (q31_t)0x6ce80a3a, (q31_t)0x2d99c0e7, (q31_t)0x6cf0fd80, (q31_t)0x2d90eec8, (q31_t)0x6cf9ef09, (q31_t)0x2d881ae8, (q31_t)0x6d02ded7, (q31_t)0x2d7f4545, (q31_t)0x6d0bcce8, (q31_t)0x2d766de2, (q31_t)0x6d14b93d, (q31_t)0x2d6d94bf, (q31_t)0x6d1da3d5, (q31_t)0x2d64b9da, (q31_t)0x6d268cb0, (q31_t)0x2d5bdd36, (q31_t)0x6d2f73cd, (q31_t)0x2d52fed2, (q31_t)0x6d38592c, (q31_t)0x2d4a1eaf, (q31_t)0x6d413ccd, (q31_t)0x2d413ccd, (q31_t)0x6d4a1eaf, (q31_t)0x2d38592c, (q31_t)0x6d52fed2, (q31_t)0x2d2f73cd, (q31_t)0x6d5bdd36, (q31_t)0x2d268cb0, (q31_t)0x6d64b9da, (q31_t)0x2d1da3d5, (q31_t)0x6d6d94bf, (q31_t)0x2d14b93d, (q31_t)0x6d766de2, (q31_t)0x2d0bcce8, (q31_t)0x6d7f4545, (q31_t)0x2d02ded7, (q31_t)0x6d881ae8, (q31_t)0x2cf9ef09, (q31_t)0x6d90eec8, (q31_t)0x2cf0fd80, (q31_t)0x6d99c0e7, (q31_t)0x2ce80a3a, (q31_t)0x6da29144, (q31_t)0x2cdf153a, (q31_t)0x6dab5fdf, (q31_t)0x2cd61e7f, (q31_t)0x6db42cb6, (q31_t)0x2ccd2609, (q31_t)0x6dbcf7cb, (q31_t)0x2cc42bd9, (q31_t)0x6dc5c11c, (q31_t)0x2cbb2fef, (q31_t)0x6dce88aa, (q31_t)0x2cb2324c, (q31_t)0x6dd74e73, (q31_t)0x2ca932ef, (q31_t)0x6de01278, (q31_t)0x2ca031da, (q31_t)0x6de8d4b8, (q31_t)0x2c972f0d, (q31_t)0x6df19534, (q31_t)0x2c8e2a87, (q31_t)0x6dfa53e9, (q31_t)0x2c85244a, (q31_t)0x6e0310d9, (q31_t)0x2c7c1c55, (q31_t)0x6e0bcc03, (q31_t)0x2c7312a9, (q31_t)0x6e148566, (q31_t)0x2c6a0746, (q31_t)0x6e1d3d03, (q31_t)0x2c60fa2d, (q31_t)0x6e25f2d8, (q31_t)0x2c57eb5e, (q31_t)0x6e2ea6e6, (q31_t)0x2c4edada, (q31_t)0x6e37592c, (q31_t)0x2c45c8a0, (q31_t)0x6e4009aa, (q31_t)0x2c3cb4b1, (q31_t)0x6e48b860, (q31_t)0x2c339f0e, (q31_t)0x6e51654c, (q31_t)0x2c2a87b6, (q31_t)0x6e5a1070, (q31_t)0x2c216eaa, (q31_t)0x6e62b9ca, (q31_t)0x2c1853eb, (q31_t)0x6e6b615a, (q31_t)0x2c0f3779, (q31_t)0x6e740720, (q31_t)0x2c061953, (q31_t)0x6e7cab1c, (q31_t)0x2bfcf97c, (q31_t)0x6e854d4d, (q31_t)0x2bf3d7f2, (q31_t)0x6e8dedb3, (q31_t)0x2beab4b6, (q31_t)0x6e968c4d, (q31_t)0x2be18fc9, (q31_t)0x6e9f291b, (q31_t)0x2bd8692b, (q31_t)0x6ea7c41e, (q31_t)0x2bcf40dc, (q31_t)0x6eb05d53, (q31_t)0x2bc616dd, (q31_t)0x6eb8f4bc, (q31_t)0x2bbceb2d, (q31_t)0x6ec18a58, (q31_t)0x2bb3bdce, (q31_t)0x6eca1e27, (q31_t)0x2baa8ec0, (q31_t)0x6ed2b027, (q31_t)0x2ba15e03, (q31_t)0x6edb405a, (q31_t)0x2b982b97, (q31_t)0x6ee3cebe, (q31_t)0x2b8ef77d, (q31_t)0x6eec5b53, (q31_t)0x2b85c1b5, (q31_t)0x6ef4e619, (q31_t)0x2b7c8a3f, (q31_t)0x6efd6f10, (q31_t)0x2b73511c, (q31_t)0x6f05f637, (q31_t)0x2b6a164d, (q31_t)0x6f0e7b8e, (q31_t)0x2b60d9d0, (q31_t)0x6f16ff14, (q31_t)0x2b579ba8, (q31_t)0x6f1f80ca, (q31_t)0x2b4e5bd4, (q31_t)0x6f2800af, (q31_t)0x2b451a55, (q31_t)0x6f307ec2, (q31_t)0x2b3bd72a, (q31_t)0x6f38fb03, (q31_t)0x2b329255, (q31_t)0x6f417573, (q31_t)0x2b294bd5, (q31_t)0x6f49ee0f, (q31_t)0x2b2003ac, (q31_t)0x6f5264da, (q31_t)0x2b16b9d9, (q31_t)0x6f5ad9d1, (q31_t)0x2b0d6e5c, (q31_t)0x6f634cf5, (q31_t)0x2b042137, (q31_t)0x6f6bbe45, (q31_t)0x2afad269, (q31_t)0x6f742dc1, (q31_t)0x2af181f3, (q31_t)0x6f7c9b69, (q31_t)0x2ae82fd5, (q31_t)0x6f85073c, (q31_t)0x2adedc10, (q31_t)0x6f8d713a, (q31_t)0x2ad586a3, (q31_t)0x6f95d963, (q31_t)0x2acc2f90, (q31_t)0x6f9e3fb6, (q31_t)0x2ac2d6d6, (q31_t)0x6fa6a433, (q31_t)0x2ab97c77, (q31_t)0x6faf06da, (q31_t)0x2ab02071, (q31_t)0x6fb767aa, (q31_t)0x2aa6c2c6, (q31_t)0x6fbfc6a3, (q31_t)0x2a9d6377, (q31_t)0x6fc823c5, (q31_t)0x2a940283, (q31_t)0x6fd07f0f, (q31_t)0x2a8a9fea, (q31_t)0x6fd8d882, (q31_t)0x2a813bae, (q31_t)0x6fe1301c, (q31_t)0x2a77d5ce, (q31_t)0x6fe985de, (q31_t)0x2a6e6e4b, (q31_t)0x6ff1d9c7, (q31_t)0x2a650525, (q31_t)0x6ffa2bd6, (q31_t)0x2a5b9a5d, (q31_t)0x70027c0c, (q31_t)0x2a522df3, (q31_t)0x700aca69, (q31_t)0x2a48bfe7, (q31_t)0x701316eb, (q31_t)0x2a3f503a, (q31_t)0x701b6193, (q31_t)0x2a35deeb, (q31_t)0x7023aa5f, (q31_t)0x2a2c6bfd, (q31_t)0x702bf151, (q31_t)0x2a22f76e, (q31_t)0x70343667, (q31_t)0x2a19813f, (q31_t)0x703c79a2, (q31_t)0x2a100970, (q31_t)0x7044bb00, (q31_t)0x2a069003, (q31_t)0x704cfa83, (q31_t)0x29fd14f6, (q31_t)0x70553828, (q31_t)0x29f3984c, (q31_t)0x705d73f0, (q31_t)0x29ea1a03, (q31_t)0x7065addb, (q31_t)0x29e09a1c, (q31_t)0x706de5e9, (q31_t)0x29d71899, (q31_t)0x70761c18, (q31_t)0x29cd9578, (q31_t)0x707e5069, (q31_t)0x29c410ba, (q31_t)0x708682dc, (q31_t)0x29ba8a61, (q31_t)0x708eb36f, (q31_t)0x29b1026c, (q31_t)0x7096e223, (q31_t)0x29a778db, (q31_t)0x709f0ef8, (q31_t)0x299dedaf, (q31_t)0x70a739ed, (q31_t)0x299460e8, (q31_t)0x70af6302, (q31_t)0x298ad287, (q31_t)0x70b78a36, (q31_t)0x2981428c, (q31_t)0x70bfaf89, (q31_t)0x2977b0f7, (q31_t)0x70c7d2fb, (q31_t)0x296e1dc9, (q31_t)0x70cff48c, (q31_t)0x29648902, (q31_t)0x70d8143b, (q31_t)0x295af2a3, (q31_t)0x70e03208, (q31_t)0x29515aab, (q31_t)0x70e84df3, (q31_t)0x2947c11c, (q31_t)0x70f067fb, (q31_t)0x293e25f5, (q31_t)0x70f8801f, (q31_t)0x29348937, (q31_t)0x71009661, (q31_t)0x292aeae3, (q31_t)0x7108aabf, (q31_t)0x29214af8, (q31_t)0x7110bd39, (q31_t)0x2917a977, (q31_t)0x7118cdcf, (q31_t)0x290e0661, (q31_t)0x7120dc80, (q31_t)0x290461b5, (q31_t)0x7128e94c, (q31_t)0x28fabb75, (q31_t)0x7130f433, (q31_t)0x28f113a0, (q31_t)0x7138fd35, (q31_t)0x28e76a37, (q31_t)0x71410450, (q31_t)0x28ddbf3b, (q31_t)0x71490986, (q31_t)0x28d412ab, (q31_t)0x71510cd5, (q31_t)0x28ca6488, (q31_t)0x71590e3e, (q31_t)0x28c0b4d2, (q31_t)0x71610dbf, (q31_t)0x28b7038b, (q31_t)0x71690b59, (q31_t)0x28ad50b1, (q31_t)0x7171070c, (q31_t)0x28a39c46, (q31_t)0x717900d6, (q31_t)0x2899e64a, (q31_t)0x7180f8b8, (q31_t)0x28902ebd, (q31_t)0x7188eeb2, (q31_t)0x288675a0, (q31_t)0x7190e2c3, (q31_t)0x287cbaf3, (q31_t)0x7198d4ea, (q31_t)0x2872feb6, (q31_t)0x71a0c528, (q31_t)0x286940ea, (q31_t)0x71a8b37c, (q31_t)0x285f8190, (q31_t)0x71b09fe7, (q31_t)0x2855c0a6, (q31_t)0x71b88a66, (q31_t)0x284bfe2f, (q31_t)0x71c072fb, (q31_t)0x28423a2a, (q31_t)0x71c859a5, (q31_t)0x28387498, (q31_t)0x71d03e64, (q31_t)0x282ead78, (q31_t)0x71d82137, (q31_t)0x2824e4cc, (q31_t)0x71e0021e, (q31_t)0x281b1a94, (q31_t)0x71e7e118, (q31_t)0x28114ed0, (q31_t)0x71efbe27, (q31_t)0x28078181, (q31_t)0x71f79948, (q31_t)0x27fdb2a7, (q31_t)0x71ff727c, (q31_t)0x27f3e241, (q31_t)0x720749c3, (q31_t)0x27ea1052, (q31_t)0x720f1f1c, (q31_t)0x27e03cd8, (q31_t)0x7216f287, (q31_t)0x27d667d5, (q31_t)0x721ec403, (q31_t)0x27cc9149, (q31_t)0x72269391, (q31_t)0x27c2b934, (q31_t)0x722e6130, (q31_t)0x27b8df97, (q31_t)0x72362ce0, (q31_t)0x27af0472, (q31_t)0x723df6a0, (q31_t)0x27a527c4, (q31_t)0x7245be70, (q31_t)0x279b4990, (q31_t)0x724d8450, (q31_t)0x279169d5, (q31_t)0x72554840, (q31_t)0x27878893, (q31_t)0x725d0a3e, (q31_t)0x277da5cb, (q31_t)0x7264ca4c, (q31_t)0x2773c17d, (q31_t)0x726c8868, (q31_t)0x2769dbaa, (q31_t)0x72744493, (q31_t)0x275ff452, (q31_t)0x727bfecc, (q31_t)0x27560b76, (q31_t)0x7283b712, (q31_t)0x274c2115, (q31_t)0x728b6d66, (q31_t)0x27423530, (q31_t)0x729321c7, (q31_t)0x273847c8, (q31_t)0x729ad435, (q31_t)0x272e58dc, (q31_t)0x72a284b0, (q31_t)0x2724686e, (q31_t)0x72aa3336, (q31_t)0x271a767e, (q31_t)0x72b1dfc9, (q31_t)0x2710830c, (q31_t)0x72b98a67, (q31_t)0x27068e18, (q31_t)0x72c13311, (q31_t)0x26fc97a3, (q31_t)0x72c8d9c6, (q31_t)0x26f29fad, (q31_t)0x72d07e85, (q31_t)0x26e8a637, (q31_t)0x72d82150, (q31_t)0x26deab41, (q31_t)0x72dfc224, (q31_t)0x26d4aecb, (q31_t)0x72e76102, (q31_t)0x26cab0d6, (q31_t)0x72eefdea, (q31_t)0x26c0b162, (q31_t)0x72f698db, (q31_t)0x26b6b070, (q31_t)0x72fe31d5, (q31_t)0x26acadff, (q31_t)0x7305c8d7, (q31_t)0x26a2aa11, (q31_t)0x730d5de3, (q31_t)0x2698a4a6, (q31_t)0x7314f0f6, (q31_t)0x268e9dbd, (q31_t)0x731c8211, (q31_t)0x26849558, (q31_t)0x73241134, (q31_t)0x267a8b77, (q31_t)0x732b9e5e, (q31_t)0x2670801a, (q31_t)0x7333298f, (q31_t)0x26667342, (q31_t)0x733ab2c6, (q31_t)0x265c64ef, (q31_t)0x73423a04, (q31_t)0x26525521, (q31_t)0x7349bf48, (q31_t)0x264843d9, (q31_t)0x73514292, (q31_t)0x263e3117, (q31_t)0x7358c3e2, (q31_t)0x26341cdb, (q31_t)0x73604336, (q31_t)0x262a0727, (q31_t)0x7367c090, (q31_t)0x261feffa, (q31_t)0x736f3bee, (q31_t)0x2615d754, (q31_t)0x7376b551, (q31_t)0x260bbd37, (q31_t)0x737e2cb7, (q31_t)0x2601a1a2, (q31_t)0x7385a222, (q31_t)0x25f78497, (q31_t)0x738d1590, (q31_t)0x25ed6614, (q31_t)0x73948701, (q31_t)0x25e3461b, (q31_t)0x739bf675, (q31_t)0x25d924ac, (q31_t)0x73a363ec, (q31_t)0x25cf01c8, (q31_t)0x73aacf65, (q31_t)0x25c4dd6e, (q31_t)0x73b238e0, (q31_t)0x25bab7a0, (q31_t)0x73b9a05d, (q31_t)0x25b0905d, (q31_t)0x73c105db, (q31_t)0x25a667a7, (q31_t)0x73c8695b, (q31_t)0x259c3d7c, (q31_t)0x73cfcadc, (q31_t)0x259211df, (q31_t)0x73d72a5d, (q31_t)0x2587e4cf, (q31_t)0x73de87de, (q31_t)0x257db64c, (q31_t)0x73e5e360, (q31_t)0x25738657, (q31_t)0x73ed3ce1, (q31_t)0x256954f1, (q31_t)0x73f49462, (q31_t)0x255f2219, (q31_t)0x73fbe9e2, (q31_t)0x2554edd1, (q31_t)0x74033d61, (q31_t)0x254ab818, (q31_t)0x740a8edf, (q31_t)0x254080ef, (q31_t)0x7411de5b, (q31_t)0x25364857, (q31_t)0x74192bd5, (q31_t)0x252c0e4f, (q31_t)0x7420774d, (q31_t)0x2521d2d8, (q31_t)0x7427c0c3, (q31_t)0x251795f3, (q31_t)0x742f0836, (q31_t)0x250d57a0, (q31_t)0x74364da6, (q31_t)0x250317df, (q31_t)0x743d9112, (q31_t)0x24f8d6b0, (q31_t)0x7444d27b, (q31_t)0x24ee9415, (q31_t)0x744c11e0, (q31_t)0x24e4500e, (q31_t)0x74534f41, (q31_t)0x24da0a9a, (q31_t)0x745a8a9d, (q31_t)0x24cfc3ba, (q31_t)0x7461c3f5, (q31_t)0x24c57b6f, (q31_t)0x7468fb47, (q31_t)0x24bb31ba, (q31_t)0x74703095, (q31_t)0x24b0e699, (q31_t)0x747763dd, (q31_t)0x24a69a0f, (q31_t)0x747e951f, (q31_t)0x249c4c1b, (q31_t)0x7485c45b, (q31_t)0x2491fcbe, (q31_t)0x748cf190, (q31_t)0x2487abf7, (q31_t)0x74941cbf, (q31_t)0x247d59c8, (q31_t)0x749b45e7, (q31_t)0x24730631, (q31_t)0x74a26d08, (q31_t)0x2468b132, (q31_t)0x74a99221, (q31_t)0x245e5acc, (q31_t)0x74b0b533, (q31_t)0x245402ff, (q31_t)0x74b7d63c, (q31_t)0x2449a9cc, (q31_t)0x74bef53d, (q31_t)0x243f4f32, (q31_t)0x74c61236, (q31_t)0x2434f332, (q31_t)0x74cd2d26, (q31_t)0x242a95ce, (q31_t)0x74d4460c, (q31_t)0x24203704, (q31_t)0x74db5cea, (q31_t)0x2415d6d5, (q31_t)0x74e271bd, (q31_t)0x240b7543, (q31_t)0x74e98487, (q31_t)0x2401124d, (q31_t)0x74f09546, (q31_t)0x23f6adf3, (q31_t)0x74f7a3fb, (q31_t)0x23ec4837, (q31_t)0x74feb0a5, (q31_t)0x23e1e117, (q31_t)0x7505bb44, (q31_t)0x23d77896, (q31_t)0x750cc3d8, (q31_t)0x23cd0eb3, (q31_t)0x7513ca60, (q31_t)0x23c2a36f, (q31_t)0x751acedd, (q31_t)0x23b836ca, (q31_t)0x7521d14d, (q31_t)0x23adc8c4, (q31_t)0x7528d1b1, (q31_t)0x23a3595e, (q31_t)0x752fd008, (q31_t)0x2398e898, (q31_t)0x7536cc52, (q31_t)0x238e7673, (q31_t)0x753dc68f, (q31_t)0x238402ef, (q31_t)0x7544bebf, (q31_t)0x23798e0d, (q31_t)0x754bb4e1, (q31_t)0x236f17cc, (q31_t)0x7552a8f4, (q31_t)0x2364a02e, (q31_t)0x75599afa, (q31_t)0x235a2733, (q31_t)0x75608af1, (q31_t)0x234facda, (q31_t)0x756778d9, (q31_t)0x23453125, (q31_t)0x756e64b2, (q31_t)0x233ab414, (q31_t)0x75754e7c, (q31_t)0x233035a7, (q31_t)0x757c3636, (q31_t)0x2325b5df, (q31_t)0x75831be0, (q31_t)0x231b34bc, (q31_t)0x7589ff7a, (q31_t)0x2310b23e, (q31_t)0x7590e104, (q31_t)0x23062e67, (q31_t)0x7597c07d, (q31_t)0x22fba936, (q31_t)0x759e9de5, (q31_t)0x22f122ab, (q31_t)0x75a5793c, (q31_t)0x22e69ac8, (q31_t)0x75ac5282, (q31_t)0x22dc118c, (q31_t)0x75b329b5, (q31_t)0x22d186f8, (q31_t)0x75b9fed7, (q31_t)0x22c6fb0c, (q31_t)0x75c0d1e7, (q31_t)0x22bc6dca, (q31_t)0x75c7a2e3, (q31_t)0x22b1df30, (q31_t)0x75ce71ce, (q31_t)0x22a74f40, (q31_t)0x75d53ea5, (q31_t)0x229cbdfa, (q31_t)0x75dc0968, (q31_t)0x22922b5e, (q31_t)0x75e2d219, (q31_t)0x2287976e, (q31_t)0x75e998b5, (q31_t)0x227d0228, (q31_t)0x75f05d3d, (q31_t)0x22726b8e, (q31_t)0x75f71fb1, (q31_t)0x2267d3a0, (q31_t)0x75fde011, (q31_t)0x225d3a5e, (q31_t)0x76049e5b, (q31_t)0x22529fca, (q31_t)0x760b5a90, (q31_t)0x224803e2, (q31_t)0x761214b0, (q31_t)0x223d66a8, (q31_t)0x7618ccba, (q31_t)0x2232c81c, (q31_t)0x761f82af, (q31_t)0x2228283f, (q31_t)0x7626368d, (q31_t)0x221d8711, (q31_t)0x762ce855, (q31_t)0x2212e492, (q31_t)0x76339806, (q31_t)0x220840c2, (q31_t)0x763a45a0, (q31_t)0x21fd9ba3, (q31_t)0x7640f123, (q31_t)0x21f2f534, (q31_t)0x76479a8e, (q31_t)0x21e84d76, (q31_t)0x764e41e2, (q31_t)0x21dda46a, (q31_t)0x7654e71d, (q31_t)0x21d2fa0f, (q31_t)0x765b8a41, (q31_t)0x21c84e67, (q31_t)0x76622b4c, (q31_t)0x21bda171, (q31_t)0x7668ca3e, (q31_t)0x21b2f32e, (q31_t)0x766f6717, (q31_t)0x21a8439e, (q31_t)0x767601d7, (q31_t)0x219d92c2, (q31_t)0x767c9a7e, (q31_t)0x2192e09b, (q31_t)0x7683310b, (q31_t)0x21882d28, (q31_t)0x7689c57d, (q31_t)0x217d786a, (q31_t)0x769057d6, (q31_t)0x2172c262, (q31_t)0x7696e814, (q31_t)0x21680b0f, (q31_t)0x769d7637, (q31_t)0x215d5273, (q31_t)0x76a4023f, (q31_t)0x2152988d, (q31_t)0x76aa8c2c, (q31_t)0x2147dd5f, (q31_t)0x76b113fd, (q31_t)0x213d20e8, (q31_t)0x76b799b3, (q31_t)0x21326329, (q31_t)0x76be1d4c, (q31_t)0x2127a423, (q31_t)0x76c49ec9, (q31_t)0x211ce3d5, (q31_t)0x76cb1e2a, (q31_t)0x21122240, (q31_t)0x76d19b6e, (q31_t)0x21075f65, (q31_t)0x76d81695, (q31_t)0x20fc9b44, (q31_t)0x76de8f9e, (q31_t)0x20f1d5de, (q31_t)0x76e5068a, (q31_t)0x20e70f32, (q31_t)0x76eb7b58, (q31_t)0x20dc4742, (q31_t)0x76f1ee09, (q31_t)0x20d17e0d, (q31_t)0x76f85e9a, (q31_t)0x20c6b395, (q31_t)0x76fecd0e, (q31_t)0x20bbe7d8, (q31_t)0x77053962, (q31_t)0x20b11ad9, (q31_t)0x770ba398, (q31_t)0x20a64c97, (q31_t)0x77120bae, (q31_t)0x209b7d13, (q31_t)0x771871a5, (q31_t)0x2090ac4d, (q31_t)0x771ed57c, (q31_t)0x2085da46, (q31_t)0x77253733, (q31_t)0x207b06fe, (q31_t)0x772b96ca, (q31_t)0x20703275, (q31_t)0x7731f440, (q31_t)0x20655cac, (q31_t)0x77384f95, (q31_t)0x205a85a3, (q31_t)0x773ea8ca, (q31_t)0x204fad5b, (q31_t)0x7744ffdd, (q31_t)0x2044d3d4, (q31_t)0x774b54ce, (q31_t)0x2039f90f, (q31_t)0x7751a79e, (q31_t)0x202f1d0b, (q31_t)0x7757f84c, (q31_t)0x20243fca, (q31_t)0x775e46d8, (q31_t)0x2019614c, (q31_t)0x77649341, (q31_t)0x200e8190, (q31_t)0x776add88, (q31_t)0x2003a099, (q31_t)0x777125ac, (q31_t)0x1ff8be65, (q31_t)0x77776bac, (q31_t)0x1feddaf6, (q31_t)0x777daf89, (q31_t)0x1fe2f64c, (q31_t)0x7783f143, (q31_t)0x1fd81067, (q31_t)0x778a30d8, (q31_t)0x1fcd2948, (q31_t)0x77906e49, (q31_t)0x1fc240ef, (q31_t)0x7796a996, (q31_t)0x1fb7575c, (q31_t)0x779ce2be, (q31_t)0x1fac6c91, (q31_t)0x77a319c2, (q31_t)0x1fa1808c, (q31_t)0x77a94ea0, (q31_t)0x1f969350, (q31_t)0x77af8159, (q31_t)0x1f8ba4dc, (q31_t)0x77b5b1ec, (q31_t)0x1f80b531, (q31_t)0x77bbe05a, (q31_t)0x1f75c44e, (q31_t)0x77c20ca1, (q31_t)0x1f6ad235, (q31_t)0x77c836c2, (q31_t)0x1f5fdee6, (q31_t)0x77ce5ebd, (q31_t)0x1f54ea62, (q31_t)0x77d48490, (q31_t)0x1f49f4a8, (q31_t)0x77daa83d, (q31_t)0x1f3efdb9, (q31_t)0x77e0c9c3, (q31_t)0x1f340596, (q31_t)0x77e6e921, (q31_t)0x1f290c3f, (q31_t)0x77ed0657, (q31_t)0x1f1e11b5, (q31_t)0x77f32165, (q31_t)0x1f1315f7, (q31_t)0x77f93a4b, (q31_t)0x1f081907, (q31_t)0x77ff5109, (q31_t)0x1efd1ae4, (q31_t)0x7805659e, (q31_t)0x1ef21b90, (q31_t)0x780b780a, (q31_t)0x1ee71b0a, (q31_t)0x7811884d, (q31_t)0x1edc1953, (q31_t)0x78179666, (q31_t)0x1ed1166b, (q31_t)0x781da256, (q31_t)0x1ec61254, (q31_t)0x7823ac1d, (q31_t)0x1ebb0d0d, (q31_t)0x7829b3b9, (q31_t)0x1eb00696, (q31_t)0x782fb92a, (q31_t)0x1ea4fef0, (q31_t)0x7835bc71, (q31_t)0x1e99f61d, (q31_t)0x783bbd8e, (q31_t)0x1e8eec1b, (q31_t)0x7841bc7f, (q31_t)0x1e83e0eb, (q31_t)0x7847b946, (q31_t)0x1e78d48e, (q31_t)0x784db3e0, (q31_t)0x1e6dc705, (q31_t)0x7853ac4f, (q31_t)0x1e62b84f, (q31_t)0x7859a292, (q31_t)0x1e57a86d, (q31_t)0x785f96a9, (q31_t)0x1e4c9760, (q31_t)0x78658894, (q31_t)0x1e418528, (q31_t)0x786b7852, (q31_t)0x1e3671c5, (q31_t)0x787165e3, (q31_t)0x1e2b5d38, (q31_t)0x78775147, (q31_t)0x1e204781, (q31_t)0x787d3a7e, (q31_t)0x1e1530a1, (q31_t)0x78832187, (q31_t)0x1e0a1898, (q31_t)0x78890663, (q31_t)0x1dfeff67, (q31_t)0x788ee910, (q31_t)0x1df3e50d, (q31_t)0x7894c98f, (q31_t)0x1de8c98c, (q31_t)0x789aa7e0, (q31_t)0x1dddace4, (q31_t)0x78a08402, (q31_t)0x1dd28f15, (q31_t)0x78a65df6, (q31_t)0x1dc7701f, (q31_t)0x78ac35ba, (q31_t)0x1dbc5004, (q31_t)0x78b20b4f, (q31_t)0x1db12ec3, (q31_t)0x78b7deb4, (q31_t)0x1da60c5d, (q31_t)0x78bdafea, (q31_t)0x1d9ae8d2, (q31_t)0x78c37eef, (q31_t)0x1d8fc424, (q31_t)0x78c94bc4, (q31_t)0x1d849e51, (q31_t)0x78cf1669, (q31_t)0x1d79775c, (q31_t)0x78d4dedd, (q31_t)0x1d6e4f43, (q31_t)0x78daa520, (q31_t)0x1d632608, (q31_t)0x78e06932, (q31_t)0x1d57fbaa, (q31_t)0x78e62b13, (q31_t)0x1d4cd02c, (q31_t)0x78ebeac2, (q31_t)0x1d41a38c, (q31_t)0x78f1a840, (q31_t)0x1d3675cb, (q31_t)0x78f7638b, (q31_t)0x1d2b46ea, (q31_t)0x78fd1ca4, (q31_t)0x1d2016e9, (q31_t)0x7902d38b, (q31_t)0x1d14e5c9, (q31_t)0x7908883f, (q31_t)0x1d09b389, (q31_t)0x790e3ac0, (q31_t)0x1cfe802b, (q31_t)0x7913eb0e, (q31_t)0x1cf34baf, (q31_t)0x79199929, (q31_t)0x1ce81615, (q31_t)0x791f4510, (q31_t)0x1cdcdf5e, (q31_t)0x7924eec3, (q31_t)0x1cd1a78a, (q31_t)0x792a9642, (q31_t)0x1cc66e99, (q31_t)0x79303b8e, (q31_t)0x1cbb348d, (q31_t)0x7935dea4, (q31_t)0x1caff965, (q31_t)0x793b7f86, (q31_t)0x1ca4bd21, (q31_t)0x79411e33, (q31_t)0x1c997fc4, (q31_t)0x7946baac, (q31_t)0x1c8e414b, (q31_t)0x794c54ee, (q31_t)0x1c8301b9, (q31_t)0x7951ecfc, (q31_t)0x1c77c10e, (q31_t)0x795782d3, (q31_t)0x1c6c7f4a, (q31_t)0x795d1675, (q31_t)0x1c613c6d, (q31_t)0x7962a7e0, (q31_t)0x1c55f878, (q31_t)0x79683715, (q31_t)0x1c4ab36b, (q31_t)0x796dc414, (q31_t)0x1c3f6d47, (q31_t)0x79734edc, (q31_t)0x1c34260c, (q31_t)0x7978d76c, (q31_t)0x1c28ddbb, (q31_t)0x797e5dc6, (q31_t)0x1c1d9454, (q31_t)0x7983e1e8, (q31_t)0x1c1249d8, (q31_t)0x798963d2, (q31_t)0x1c06fe46, (q31_t)0x798ee385, (q31_t)0x1bfbb1a0, (q31_t)0x799460ff, (q31_t)0x1bf063e6, (q31_t)0x7999dc42, (q31_t)0x1be51518, (q31_t)0x799f554b, (q31_t)0x1bd9c537, (q31_t)0x79a4cc1c, (q31_t)0x1bce7442, (q31_t)0x79aa40b4, (q31_t)0x1bc3223c, (q31_t)0x79afb313, (q31_t)0x1bb7cf23, (q31_t)0x79b52339, (q31_t)0x1bac7af9, (q31_t)0x79ba9125, (q31_t)0x1ba125bd, (q31_t)0x79bffcd7, (q31_t)0x1b95cf71, (q31_t)0x79c5664f, (q31_t)0x1b8a7815, (q31_t)0x79cacd8d, (q31_t)0x1b7f1fa9, (q31_t)0x79d03291, (q31_t)0x1b73c62d, (q31_t)0x79d5955a, (q31_t)0x1b686ba3, (q31_t)0x79daf5e8, (q31_t)0x1b5d100a, (q31_t)0x79e0543c, (q31_t)0x1b51b363, (q31_t)0x79e5b054, (q31_t)0x1b4655ae, (q31_t)0x79eb0a31, (q31_t)0x1b3af6ec, (q31_t)0x79f061d2, (q31_t)0x1b2f971e, (q31_t)0x79f5b737, (q31_t)0x1b243643, (q31_t)0x79fb0a60, (q31_t)0x1b18d45c, (q31_t)0x7a005b4d, (q31_t)0x1b0d716a, (q31_t)0x7a05a9fd, (q31_t)0x1b020d6c, (q31_t)0x7a0af671, (q31_t)0x1af6a865, (q31_t)0x7a1040a8, (q31_t)0x1aeb4253, (q31_t)0x7a1588a2, (q31_t)0x1adfdb37, (q31_t)0x7a1ace5f, (q31_t)0x1ad47312, (q31_t)0x7a2011de, (q31_t)0x1ac909e5, (q31_t)0x7a25531f, (q31_t)0x1abd9faf, (q31_t)0x7a2a9223, (q31_t)0x1ab23471, (q31_t)0x7a2fcee8, (q31_t)0x1aa6c82b, (q31_t)0x7a350970, (q31_t)0x1a9b5adf, (q31_t)0x7a3a41b9, (q31_t)0x1a8fec8c, (q31_t)0x7a3f77c3, (q31_t)0x1a847d33, (q31_t)0x7a44ab8e, (q31_t)0x1a790cd4, (q31_t)0x7a49dd1a, (q31_t)0x1a6d9b70, (q31_t)0x7a4f0c67, (q31_t)0x1a622907, (q31_t)0x7a543974, (q31_t)0x1a56b599, (q31_t)0x7a596442, (q31_t)0x1a4b4128, (q31_t)0x7a5e8cd0, (q31_t)0x1a3fcbb3, (q31_t)0x7a63b31d, (q31_t)0x1a34553b, (q31_t)0x7a68d72b, (q31_t)0x1a28ddc0, (q31_t)0x7a6df8f8, (q31_t)0x1a1d6544, (q31_t)0x7a731884, (q31_t)0x1a11ebc5, (q31_t)0x7a7835cf, (q31_t)0x1a067145, (q31_t)0x7a7d50da, (q31_t)0x19faf5c5, (q31_t)0x7a8269a3, (q31_t)0x19ef7944, (q31_t)0x7a87802a, (q31_t)0x19e3fbc3, (q31_t)0x7a8c9470, (q31_t)0x19d87d42, (q31_t)0x7a91a674, (q31_t)0x19ccfdc2, (q31_t)0x7a96b636, (q31_t)0x19c17d44, (q31_t)0x7a9bc3b6, (q31_t)0x19b5fbc8, (q31_t)0x7aa0cef3, (q31_t)0x19aa794d, (q31_t)0x7aa5d7ee, (q31_t)0x199ef5d6, (q31_t)0x7aaadea6, (q31_t)0x19937161, (q31_t)0x7aafe31b, (q31_t)0x1987ebf0, (q31_t)0x7ab4e54c, (q31_t)0x197c6584, (q31_t)0x7ab9e53a, (q31_t)0x1970de1b, (q31_t)0x7abee2e5, (q31_t)0x196555b8, (q31_t)0x7ac3de4c, (q31_t)0x1959cc5a, (q31_t)0x7ac8d76f, (q31_t)0x194e4201, (q31_t)0x7acdce4d, (q31_t)0x1942b6af, (q31_t)0x7ad2c2e8, (q31_t)0x19372a64, (q31_t)0x7ad7b53d, (q31_t)0x192b9d1f, (q31_t)0x7adca54e, (q31_t)0x19200ee3, (q31_t)0x7ae1931a, (q31_t)0x19147fae, (q31_t)0x7ae67ea1, (q31_t)0x1908ef82, (q31_t)0x7aeb67e3, (q31_t)0x18fd5e5f, (q31_t)0x7af04edf, (q31_t)0x18f1cc45, (q31_t)0x7af53395, (q31_t)0x18e63935, (q31_t)0x7afa1605, (q31_t)0x18daa52f, (q31_t)0x7afef630, (q31_t)0x18cf1034, (q31_t)0x7b03d414, (q31_t)0x18c37a44, (q31_t)0x7b08afb2, (q31_t)0x18b7e35f, (q31_t)0x7b0d8909, (q31_t)0x18ac4b87, (q31_t)0x7b126019, (q31_t)0x18a0b2bb, (q31_t)0x7b1734e2, (q31_t)0x189518fc, (q31_t)0x7b1c0764, (q31_t)0x18897e4a, (q31_t)0x7b20d79e, (q31_t)0x187de2a7, (q31_t)0x7b25a591, (q31_t)0x18724611, (q31_t)0x7b2a713d, (q31_t)0x1866a88a, (q31_t)0x7b2f3aa0, (q31_t)0x185b0a13, (q31_t)0x7b3401bb, (q31_t)0x184f6aab, (q31_t)0x7b38c68e, (q31_t)0x1843ca53, (q31_t)0x7b3d8918, (q31_t)0x1838290c, (q31_t)0x7b42495a, (q31_t)0x182c86d5, (q31_t)0x7b470753, (q31_t)0x1820e3b0, (q31_t)0x7b4bc303, (q31_t)0x18153f9d, (q31_t)0x7b507c69, (q31_t)0x18099a9c, (q31_t)0x7b553386, (q31_t)0x17fdf4ae, (q31_t)0x7b59e85a, (q31_t)0x17f24dd3, (q31_t)0x7b5e9ae4, (q31_t)0x17e6a60c, (q31_t)0x7b634b23, (q31_t)0x17dafd59, (q31_t)0x7b67f919, (q31_t)0x17cf53bb, (q31_t)0x7b6ca4c4, (q31_t)0x17c3a931, (q31_t)0x7b714e25, (q31_t)0x17b7fdbd, (q31_t)0x7b75f53c, (q31_t)0x17ac515f, (q31_t)0x7b7a9a07, (q31_t)0x17a0a417, (q31_t)0x7b7f3c87, (q31_t)0x1794f5e6, (q31_t)0x7b83dcbc, (q31_t)0x178946cc, (q31_t)0x7b887aa6, (q31_t)0x177d96ca, (q31_t)0x7b8d1644, (q31_t)0x1771e5e0, (q31_t)0x7b91af97, (q31_t)0x1766340f, (q31_t)0x7b96469d, (q31_t)0x175a8157, (q31_t)0x7b9adb57, (q31_t)0x174ecdb8, (q31_t)0x7b9f6dc5, (q31_t)0x17431933, (q31_t)0x7ba3fde7, (q31_t)0x173763c9, (q31_t)0x7ba88bbc, (q31_t)0x172bad7a, (q31_t)0x7bad1744, (q31_t)0x171ff646, (q31_t)0x7bb1a080, (q31_t)0x17143e2d, (q31_t)0x7bb6276e, (q31_t)0x17088531, (q31_t)0x7bbaac0e, (q31_t)0x16fccb51, (q31_t)0x7bbf2e62, (q31_t)0x16f1108f, (q31_t)0x7bc3ae67, (q31_t)0x16e554ea, (q31_t)0x7bc82c1f, (q31_t)0x16d99864, (q31_t)0x7bcca789, (q31_t)0x16cddafb, (q31_t)0x7bd120a4, (q31_t)0x16c21cb2, (q31_t)0x7bd59771, (q31_t)0x16b65d88, (q31_t)0x7bda0bf0, (q31_t)0x16aa9d7e, (q31_t)0x7bde7e20, (q31_t)0x169edc94, (q31_t)0x7be2ee01, (q31_t)0x16931acb, (q31_t)0x7be75b93, (q31_t)0x16875823, (q31_t)0x7bebc6d5, (q31_t)0x167b949d, (q31_t)0x7bf02fc9, (q31_t)0x166fd039, (q31_t)0x7bf4966c, (q31_t)0x16640af7, (q31_t)0x7bf8fac0, (q31_t)0x165844d8, (q31_t)0x7bfd5cc4, (q31_t)0x164c7ddd, (q31_t)0x7c01bc78, (q31_t)0x1640b606, (q31_t)0x7c0619dc, (q31_t)0x1634ed53, (q31_t)0x7c0a74f0, (q31_t)0x162923c5, (q31_t)0x7c0ecdb2, (q31_t)0x161d595d, (q31_t)0x7c132424, (q31_t)0x16118e1a, (q31_t)0x7c177845, (q31_t)0x1605c1fd, (q31_t)0x7c1bca16, (q31_t)0x15f9f507, (q31_t)0x7c201994, (q31_t)0x15ee2738, (q31_t)0x7c2466c2, (q31_t)0x15e25890, (q31_t)0x7c28b19e, (q31_t)0x15d68911, (q31_t)0x7c2cfa28, (q31_t)0x15cab8ba, (q31_t)0x7c314060, (q31_t)0x15bee78c, (q31_t)0x7c358446, (q31_t)0x15b31587, (q31_t)0x7c39c5da, (q31_t)0x15a742ac, (q31_t)0x7c3e051b, (q31_t)0x159b6efb, (q31_t)0x7c42420a, (q31_t)0x158f9a76, (q31_t)0x7c467ca6, (q31_t)0x1583c51b, (q31_t)0x7c4ab4ef, (q31_t)0x1577eeec, (q31_t)0x7c4eeae5, (q31_t)0x156c17e9, (q31_t)0x7c531e88, (q31_t)0x15604013, (q31_t)0x7c574fd8, (q31_t)0x1554676a, (q31_t)0x7c5b7ed4, (q31_t)0x15488dee, (q31_t)0x7c5fab7c, (q31_t)0x153cb3a0, (q31_t)0x7c63d5d1, (q31_t)0x1530d881, (q31_t)0x7c67fdd1, (q31_t)0x1524fc90, (q31_t)0x7c6c237e, (q31_t)0x15191fcf, (q31_t)0x7c7046d6, (q31_t)0x150d423d, (q31_t)0x7c7467d9, (q31_t)0x150163dc, (q31_t)0x7c788688, (q31_t)0x14f584ac, (q31_t)0x7c7ca2e2, (q31_t)0x14e9a4ac, (q31_t)0x7c80bce7, (q31_t)0x14ddc3de, (q31_t)0x7c84d496, (q31_t)0x14d1e242, (q31_t)0x7c88e9f1, (q31_t)0x14c5ffd9, (q31_t)0x7c8cfcf6, (q31_t)0x14ba1ca3, (q31_t)0x7c910da5, (q31_t)0x14ae38a0, (q31_t)0x7c951bff, (q31_t)0x14a253d1, (q31_t)0x7c992803, (q31_t)0x14966e36, (q31_t)0x7c9d31b0, (q31_t)0x148a87d1, (q31_t)0x7ca13908, (q31_t)0x147ea0a0, (q31_t)0x7ca53e09, (q31_t)0x1472b8a5, (q31_t)0x7ca940b3, (q31_t)0x1466cfe1, (q31_t)0x7cad4107, (q31_t)0x145ae653, (q31_t)0x7cb13f04, (q31_t)0x144efbfc, (q31_t)0x7cb53aaa, (q31_t)0x144310dd, (q31_t)0x7cb933f9, (q31_t)0x143724f5, (q31_t)0x7cbd2af0, (q31_t)0x142b3846, (q31_t)0x7cc11f90, (q31_t)0x141f4ad1, (q31_t)0x7cc511d9, (q31_t)0x14135c94, (q31_t)0x7cc901c9, (q31_t)0x14076d91, (q31_t)0x7cccef62, (q31_t)0x13fb7dc9, (q31_t)0x7cd0daa2, (q31_t)0x13ef8d3c, (q31_t)0x7cd4c38b, (q31_t)0x13e39be9, (q31_t)0x7cd8aa1b, (q31_t)0x13d7a9d3, (q31_t)0x7cdc8e52, (q31_t)0x13cbb6f8, (q31_t)0x7ce07031, (q31_t)0x13bfc35b, (q31_t)0x7ce44fb7, (q31_t)0x13b3cefa, (q31_t)0x7ce82ce4, (q31_t)0x13a7d9d7, (q31_t)0x7cec07b8, (q31_t)0x139be3f2, (q31_t)0x7cefe032, (q31_t)0x138fed4b, (q31_t)0x7cf3b653, (q31_t)0x1383f5e3, (q31_t)0x7cf78a1b, (q31_t)0x1377fdbb, (q31_t)0x7cfb5b89, (q31_t)0x136c04d2, (q31_t)0x7cff2a9d, (q31_t)0x13600b2a, (q31_t)0x7d02f757, (q31_t)0x135410c3, (q31_t)0x7d06c1b6, (q31_t)0x1348159d, (q31_t)0x7d0a89bc, (q31_t)0x133c19b8, (q31_t)0x7d0e4f67, (q31_t)0x13301d16, (q31_t)0x7d1212b7, (q31_t)0x13241fb6, (q31_t)0x7d15d3ad, (q31_t)0x1318219a, (q31_t)0x7d199248, (q31_t)0x130c22c1, (q31_t)0x7d1d4e88, (q31_t)0x1300232c, (q31_t)0x7d21086c, (q31_t)0x12f422db, (q31_t)0x7d24bff6, (q31_t)0x12e821cf, (q31_t)0x7d287523, (q31_t)0x12dc2009, (q31_t)0x7d2c27f6, (q31_t)0x12d01d89, (q31_t)0x7d2fd86c, (q31_t)0x12c41a4f, (q31_t)0x7d338687, (q31_t)0x12b8165b, (q31_t)0x7d373245, (q31_t)0x12ac11af, (q31_t)0x7d3adba7, (q31_t)0x12a00c4b, (q31_t)0x7d3e82ae, (q31_t)0x1294062f, (q31_t)0x7d422757, (q31_t)0x1287ff5b, (q31_t)0x7d45c9a4, (q31_t)0x127bf7d1, (q31_t)0x7d496994, (q31_t)0x126fef90, (q31_t)0x7d4d0728, (q31_t)0x1263e699, (q31_t)0x7d50a25e, (q31_t)0x1257dced, (q31_t)0x7d543b37, (q31_t)0x124bd28c, (q31_t)0x7d57d1b3, (q31_t)0x123fc776, (q31_t)0x7d5b65d2, (q31_t)0x1233bbac, (q31_t)0x7d5ef793, (q31_t)0x1227af2e, (q31_t)0x7d6286f6, (q31_t)0x121ba1fd, (q31_t)0x7d6613fb, (q31_t)0x120f941a, (q31_t)0x7d699ea3, (q31_t)0x12038584, (q31_t)0x7d6d26ec, (q31_t)0x11f7763c, (q31_t)0x7d70acd7, (q31_t)0x11eb6643, (q31_t)0x7d743064, (q31_t)0x11df5599, (q31_t)0x7d77b192, (q31_t)0x11d3443f, (q31_t)0x7d7b3061, (q31_t)0x11c73235, (q31_t)0x7d7eacd2, (q31_t)0x11bb1f7c, (q31_t)0x7d8226e4, (q31_t)0x11af0c13, (q31_t)0x7d859e96, (q31_t)0x11a2f7fc, (q31_t)0x7d8913ea, (q31_t)0x1196e337, (q31_t)0x7d8c86de, (q31_t)0x118acdc4, (q31_t)0x7d8ff772, (q31_t)0x117eb7a4, (q31_t)0x7d9365a8, (q31_t)0x1172a0d7, (q31_t)0x7d96d17d, (q31_t)0x1166895f, (q31_t)0x7d9a3af2, (q31_t)0x115a713a, (q31_t)0x7d9da208, (q31_t)0x114e586a, (q31_t)0x7da106bd, (q31_t)0x11423ef0, (q31_t)0x7da46912, (q31_t)0x113624cb, (q31_t)0x7da7c907, (q31_t)0x112a09fc, (q31_t)0x7dab269b, (q31_t)0x111dee84, (q31_t)0x7dae81cf, (q31_t)0x1111d263, (q31_t)0x7db1daa2, (q31_t)0x1105b599, (q31_t)0x7db53113, (q31_t)0x10f99827, (q31_t)0x7db88524, (q31_t)0x10ed7a0e, (q31_t)0x7dbbd6d4, (q31_t)0x10e15b4e, (q31_t)0x7dbf2622, (q31_t)0x10d53be7, (q31_t)0x7dc2730f, (q31_t)0x10c91bda, (q31_t)0x7dc5bd9b, (q31_t)0x10bcfb28, (q31_t)0x7dc905c5, (q31_t)0x10b0d9d0, (q31_t)0x7dcc4b8d, (q31_t)0x10a4b7d3, (q31_t)0x7dcf8ef3, (q31_t)0x10989532, (q31_t)0x7dd2cff7, (q31_t)0x108c71ee, (q31_t)0x7dd60e99, (q31_t)0x10804e06, (q31_t)0x7dd94ad8, (q31_t)0x1074297b, (q31_t)0x7ddc84b5, (q31_t)0x1068044e, (q31_t)0x7ddfbc30, (q31_t)0x105bde7f, (q31_t)0x7de2f148, (q31_t)0x104fb80e, (q31_t)0x7de623fd, (q31_t)0x104390fd, (q31_t)0x7de9544f, (q31_t)0x1037694b, (q31_t)0x7dec823e, (q31_t)0x102b40f8, (q31_t)0x7defadca, (q31_t)0x101f1807, (q31_t)0x7df2d6f3, (q31_t)0x1012ee76, (q31_t)0x7df5fdb8, (q31_t)0x1006c446, (q31_t)0x7df9221a, (q31_t)0xffa9979, (q31_t)0x7dfc4418, (q31_t)0xfee6e0d, (q31_t)0x7dff63b2, (q31_t)0xfe24205, (q31_t)0x7e0280e9, (q31_t)0xfd6155f, (q31_t)0x7e059bbb, (q31_t)0xfc9e81e, (q31_t)0x7e08b42a, (q31_t)0xfbdba40, (q31_t)0x7e0bca34, (q31_t)0xfb18bc8, (q31_t)0x7e0eddd9, (q31_t)0xfa55cb4, (q31_t)0x7e11ef1b, (q31_t)0xf992d06, (q31_t)0x7e14fdf7, (q31_t)0xf8cfcbe, (q31_t)0x7e180a6f, (q31_t)0xf80cbdc, (q31_t)0x7e1b1482, (q31_t)0xf749a61, (q31_t)0x7e1e1c30, (q31_t)0xf68684e, (q31_t)0x7e212179, (q31_t)0xf5c35a3, (q31_t)0x7e24245d, (q31_t)0xf500260, (q31_t)0x7e2724db, (q31_t)0xf43ce86, (q31_t)0x7e2a22f4, (q31_t)0xf379a16, (q31_t)0x7e2d1ea8, (q31_t)0xf2b650f, (q31_t)0x7e3017f6, (q31_t)0xf1f2f73, (q31_t)0x7e330ede, (q31_t)0xf12f941, (q31_t)0x7e360360, (q31_t)0xf06c27a, (q31_t)0x7e38f57c, (q31_t)0xefa8b20, (q31_t)0x7e3be532, (q31_t)0xeee5331, (q31_t)0x7e3ed282, (q31_t)0xee21aaf, (q31_t)0x7e41bd6c, (q31_t)0xed5e19a, (q31_t)0x7e44a5ef, (q31_t)0xec9a7f3, (q31_t)0x7e478c0b, (q31_t)0xebd6db9, (q31_t)0x7e4a6fc1, (q31_t)0xeb132ef, (q31_t)0x7e4d5110, (q31_t)0xea4f793, (q31_t)0x7e502ff9, (q31_t)0xe98bba7, (q31_t)0x7e530c7a, (q31_t)0xe8c7f2a, (q31_t)0x7e55e694, (q31_t)0xe80421e, (q31_t)0x7e58be47, (q31_t)0xe740483, (q31_t)0x7e5b9392, (q31_t)0xe67c65a, (q31_t)0x7e5e6676, (q31_t)0xe5b87a2, (q31_t)0x7e6136f3, (q31_t)0xe4f485c, (q31_t)0x7e640507, (q31_t)0xe430889, (q31_t)0x7e66d0b4, (q31_t)0xe36c82a, (q31_t)0x7e6999fa, (q31_t)0xe2a873e, (q31_t)0x7e6c60d7, (q31_t)0xe1e45c6, (q31_t)0x7e6f254c, (q31_t)0xe1203c3, (q31_t)0x7e71e759, (q31_t)0xe05c135, (q31_t)0x7e74a6fd, (q31_t)0xdf97e1d, (q31_t)0x7e77643a, (q31_t)0xded3a7b, (q31_t)0x7e7a1f0d, (q31_t)0xde0f64f, (q31_t)0x7e7cd778, (q31_t)0xdd4b19a, (q31_t)0x7e7f8d7b, (q31_t)0xdc86c5d, (q31_t)0x7e824114, (q31_t)0xdbc2698, (q31_t)0x7e84f245, (q31_t)0xdafe04b, (q31_t)0x7e87a10c, (q31_t)0xda39978, (q31_t)0x7e8a4d6a, (q31_t)0xd97521d, (q31_t)0x7e8cf75f, (q31_t)0xd8b0a3d, (q31_t)0x7e8f9eeb, (q31_t)0xd7ec1d6, (q31_t)0x7e92440d, (q31_t)0xd7278eb, (q31_t)0x7e94e6c6, (q31_t)0xd662f7b, (q31_t)0x7e978715, (q31_t)0xd59e586, (q31_t)0x7e9a24fb, (q31_t)0xd4d9b0e, (q31_t)0x7e9cc076, (q31_t)0xd415013, (q31_t)0x7e9f5988, (q31_t)0xd350495, (q31_t)0x7ea1f02f, (q31_t)0xd28b894, (q31_t)0x7ea4846c, (q31_t)0xd1c6c11, (q31_t)0x7ea7163f, (q31_t)0xd101f0e, (q31_t)0x7ea9a5a8, (q31_t)0xd03d189, (q31_t)0x7eac32a6, (q31_t)0xcf78383, (q31_t)0x7eaebd3a, (q31_t)0xceb34fe, (q31_t)0x7eb14563, (q31_t)0xcdee5f9, (q31_t)0x7eb3cb21, (q31_t)0xcd29676, (q31_t)0x7eb64e75, (q31_t)0xcc64673, (q31_t)0x7eb8cf5d, (q31_t)0xcb9f5f3, (q31_t)0x7ebb4ddb, (q31_t)0xcada4f5, (q31_t)0x7ebdc9ed, (q31_t)0xca1537a, (q31_t)0x7ec04394, (q31_t)0xc950182, (q31_t)0x7ec2bad0, (q31_t)0xc88af0e, (q31_t)0x7ec52fa0, (q31_t)0xc7c5c1e, (q31_t)0x7ec7a205, (q31_t)0xc7008b3, (q31_t)0x7eca11fe, (q31_t)0xc63b4ce, (q31_t)0x7ecc7f8b, (q31_t)0xc57606e, (q31_t)0x7eceeaad, (q31_t)0xc4b0b94, (q31_t)0x7ed15363, (q31_t)0xc3eb641, (q31_t)0x7ed3b9ad, (q31_t)0xc326075, (q31_t)0x7ed61d8a, (q31_t)0xc260a31, (q31_t)0x7ed87efc, (q31_t)0xc19b374, (q31_t)0x7edade01, (q31_t)0xc0d5c41, (q31_t)0x7edd3a9a, (q31_t)0xc010496, (q31_t)0x7edf94c7, (q31_t)0xbf4ac75, (q31_t)0x7ee1ec87, (q31_t)0xbe853de, (q31_t)0x7ee441da, (q31_t)0xbdbfad1, (q31_t)0x7ee694c1, (q31_t)0xbcfa150, (q31_t)0x7ee8e53a, (q31_t)0xbc34759, (q31_t)0x7eeb3347, (q31_t)0xbb6ecef, (q31_t)0x7eed7ee7, (q31_t)0xbaa9211, (q31_t)0x7eefc81a, (q31_t)0xb9e36c0, (q31_t)0x7ef20ee0, (q31_t)0xb91dafc, (q31_t)0x7ef45338, (q31_t)0xb857ec7, (q31_t)0x7ef69523, (q31_t)0xb79221f, (q31_t)0x7ef8d4a1, (q31_t)0xb6cc506, (q31_t)0x7efb11b1, (q31_t)0xb60677c, (q31_t)0x7efd4c54, (q31_t)0xb540982, (q31_t)0x7eff8489, (q31_t)0xb47ab19, (q31_t)0x7f01ba50, (q31_t)0xb3b4c40, (q31_t)0x7f03eda9, (q31_t)0xb2eecf8, (q31_t)0x7f061e95, (q31_t)0xb228d42, (q31_t)0x7f084d12, (q31_t)0xb162d1d, (q31_t)0x7f0a7921, (q31_t)0xb09cc8c, (q31_t)0x7f0ca2c2, (q31_t)0xafd6b8d, (q31_t)0x7f0ec9f5, (q31_t)0xaf10a22, (q31_t)0x7f10eeb9, (q31_t)0xae4a84b, (q31_t)0x7f13110f, (q31_t)0xad84609, (q31_t)0x7f1530f7, (q31_t)0xacbe35b, (q31_t)0x7f174e70, (q31_t)0xabf8043, (q31_t)0x7f19697a, (q31_t)0xab31cc1, (q31_t)0x7f1b8215, (q31_t)0xaa6b8d5, (q31_t)0x7f1d9842, (q31_t)0xa9a5480, (q31_t)0x7f1fabff, (q31_t)0xa8defc3, (q31_t)0x7f21bd4e, (q31_t)0xa818a9d, (q31_t)0x7f23cc2e, (q31_t)0xa752510, (q31_t)0x7f25d89e, (q31_t)0xa68bf1b, (q31_t)0x7f27e29f, (q31_t)0xa5c58c0, (q31_t)0x7f29ea31, (q31_t)0xa4ff1fe, (q31_t)0x7f2bef53, (q31_t)0xa438ad7, (q31_t)0x7f2df206, (q31_t)0xa37234a, (q31_t)0x7f2ff24a, (q31_t)0xa2abb59, (q31_t)0x7f31f01d, (q31_t)0xa1e5303, (q31_t)0x7f33eb81, (q31_t)0xa11ea49, (q31_t)0x7f35e476, (q31_t)0xa05812c, (q31_t)0x7f37dafa, (q31_t)0x9f917ac, (q31_t)0x7f39cf0e, (q31_t)0x9ecadc9, (q31_t)0x7f3bc0b3, (q31_t)0x9e04385, (q31_t)0x7f3dafe7, (q31_t)0x9d3d8df, (q31_t)0x7f3f9cab, (q31_t)0x9c76dd8, (q31_t)0x7f4186ff, (q31_t)0x9bb0271, (q31_t)0x7f436ee3, (q31_t)0x9ae96aa, (q31_t)0x7f455456, (q31_t)0x9a22a83, (q31_t)0x7f473759, (q31_t)0x995bdfd, (q31_t)0x7f4917eb, (q31_t)0x9895118, (q31_t)0x7f4af60d, (q31_t)0x97ce3d5, (q31_t)0x7f4cd1be, (q31_t)0x9707635, (q31_t)0x7f4eaafe, (q31_t)0x9640837, (q31_t)0x7f5081cd, (q31_t)0x95799dd, (q31_t)0x7f52562c, (q31_t)0x94b2b27, (q31_t)0x7f54281a, (q31_t)0x93ebc14, (q31_t)0x7f55f796, (q31_t)0x9324ca7, (q31_t)0x7f57c4a2, (q31_t)0x925dcdf, (q31_t)0x7f598f3c, (q31_t)0x9196cbc, (q31_t)0x7f5b5765, (q31_t)0x90cfc40, (q31_t)0x7f5d1d1d, (q31_t)0x9008b6a, (q31_t)0x7f5ee063, (q31_t)0x8f41a3c, (q31_t)0x7f60a138, (q31_t)0x8e7a8b5, (q31_t)0x7f625f9b, (q31_t)0x8db36d6, (q31_t)0x7f641b8d, (q31_t)0x8cec4a0, (q31_t)0x7f65d50d, (q31_t)0x8c25213, (q31_t)0x7f678c1c, (q31_t)0x8b5df30, (q31_t)0x7f6940b8, (q31_t)0x8a96bf6, (q31_t)0x7f6af2e3, (q31_t)0x89cf867, (q31_t)0x7f6ca29c, (q31_t)0x8908483, (q31_t)0x7f6e4fe3, (q31_t)0x884104b, (q31_t)0x7f6ffab8, (q31_t)0x8779bbe, (q31_t)0x7f71a31b, (q31_t)0x86b26de, (q31_t)0x7f73490b, (q31_t)0x85eb1ab, (q31_t)0x7f74ec8a, (q31_t)0x8523c25, (q31_t)0x7f768d96, (q31_t)0x845c64d, (q31_t)0x7f782c30, (q31_t)0x8395024, (q31_t)0x7f79c857, (q31_t)0x82cd9a9, (q31_t)0x7f7b620c, (q31_t)0x82062de, (q31_t)0x7f7cf94e, (q31_t)0x813ebc2, (q31_t)0x7f7e8e1e, (q31_t)0x8077457, (q31_t)0x7f80207b, (q31_t)0x7fafc9c, (q31_t)0x7f81b065, (q31_t)0x7ee8493, (q31_t)0x7f833ddd, (q31_t)0x7e20c3b, (q31_t)0x7f84c8e2, (q31_t)0x7d59396, (q31_t)0x7f865174, (q31_t)0x7c91aa3, (q31_t)0x7f87d792, (q31_t)0x7bca163, (q31_t)0x7f895b3e, (q31_t)0x7b027d7, (q31_t)0x7f8adc77, (q31_t)0x7a3adff, (q31_t)0x7f8c5b3d, (q31_t)0x79733dc, (q31_t)0x7f8dd78f, (q31_t)0x78ab96e, (q31_t)0x7f8f516e, (q31_t)0x77e3eb5, (q31_t)0x7f90c8da, (q31_t)0x771c3b3, (q31_t)0x7f923dd2, (q31_t)0x7654867, (q31_t)0x7f93b058, (q31_t)0x758ccd2, (q31_t)0x7f952069, (q31_t)0x74c50f4, (q31_t)0x7f968e07, (q31_t)0x73fd4cf, (q31_t)0x7f97f932, (q31_t)0x7335862, (q31_t)0x7f9961e8, (q31_t)0x726dbae, (q31_t)0x7f9ac82c, (q31_t)0x71a5eb3, (q31_t)0x7f9c2bfb, (q31_t)0x70de172, (q31_t)0x7f9d8d56, (q31_t)0x70163eb, (q31_t)0x7f9eec3e, (q31_t)0x6f4e620, (q31_t)0x7fa048b2, (q31_t)0x6e86810, (q31_t)0x7fa1a2b2, (q31_t)0x6dbe9bb, (q31_t)0x7fa2fa3d, (q31_t)0x6cf6b23, (q31_t)0x7fa44f55, (q31_t)0x6c2ec48, (q31_t)0x7fa5a1f9, (q31_t)0x6b66d29, (q31_t)0x7fa6f228, (q31_t)0x6a9edc9, (q31_t)0x7fa83fe3, (q31_t)0x69d6e27, (q31_t)0x7fa98b2a, (q31_t)0x690ee44, (q31_t)0x7faad3fd, (q31_t)0x6846e1f, (q31_t)0x7fac1a5b, (q31_t)0x677edbb, (q31_t)0x7fad5e45, (q31_t)0x66b6d16, (q31_t)0x7fae9fbb, (q31_t)0x65eec33, (q31_t)0x7fafdebb, (q31_t)0x6526b10, (q31_t)0x7fb11b48, (q31_t)0x645e9af, (q31_t)0x7fb2555f, (q31_t)0x6396810, (q31_t)0x7fb38d02, (q31_t)0x62ce634, (q31_t)0x7fb4c231, (q31_t)0x620641a, (q31_t)0x7fb5f4ea, (q31_t)0x613e1c5, (q31_t)0x7fb7252f, (q31_t)0x6075f33, (q31_t)0x7fb852ff, (q31_t)0x5fadc66, (q31_t)0x7fb97e5a, (q31_t)0x5ee595d, (q31_t)0x7fbaa740, (q31_t)0x5e1d61b, (q31_t)0x7fbbcdb1, (q31_t)0x5d5529e, (q31_t)0x7fbcf1ad, (q31_t)0x5c8cee7, (q31_t)0x7fbe1334, (q31_t)0x5bc4af8, (q31_t)0x7fbf3246, (q31_t)0x5afc6d0, (q31_t)0x7fc04ee3, (q31_t)0x5a3426f, (q31_t)0x7fc1690a, (q31_t)0x596bdd7, (q31_t)0x7fc280bc, (q31_t)0x58a3908, (q31_t)0x7fc395f9, (q31_t)0x57db403, (q31_t)0x7fc4a8c1, (q31_t)0x5712ec7, (q31_t)0x7fc5b913, (q31_t)0x564a955, (q31_t)0x7fc6c6f0, (q31_t)0x55823ae, (q31_t)0x7fc7d258, (q31_t)0x54b9dd3, (q31_t)0x7fc8db4a, (q31_t)0x53f17c3, (q31_t)0x7fc9e1c6, (q31_t)0x532917f, (q31_t)0x7fcae5cd, (q31_t)0x5260b08, (q31_t)0x7fcbe75e, (q31_t)0x519845e, (q31_t)0x7fcce67a, (q31_t)0x50cfd82, (q31_t)0x7fcde320, (q31_t)0x5007674, (q31_t)0x7fcedd50, (q31_t)0x4f3ef35, (q31_t)0x7fcfd50b, (q31_t)0x4e767c5, (q31_t)0x7fd0ca4f, (q31_t)0x4dae024, (q31_t)0x7fd1bd1e, (q31_t)0x4ce5854, (q31_t)0x7fd2ad77, (q31_t)0x4c1d054, (q31_t)0x7fd39b5a, (q31_t)0x4b54825, (q31_t)0x7fd486c7, (q31_t)0x4a8bfc7, (q31_t)0x7fd56fbe, (q31_t)0x49c373c, (q31_t)0x7fd6563f, (q31_t)0x48fae83, (q31_t)0x7fd73a4a, (q31_t)0x483259d, (q31_t)0x7fd81bdf, (q31_t)0x4769c8b, (q31_t)0x7fd8fafe, (q31_t)0x46a134c, (q31_t)0x7fd9d7a7, (q31_t)0x45d89e2, (q31_t)0x7fdab1d9, (q31_t)0x451004d, (q31_t)0x7fdb8996, (q31_t)0x444768d, (q31_t)0x7fdc5edc, (q31_t)0x437eca4, (q31_t)0x7fdd31ac, (q31_t)0x42b6290, (q31_t)0x7fde0205, (q31_t)0x41ed854, (q31_t)0x7fdecfe8, (q31_t)0x4124dee, (q31_t)0x7fdf9b55, (q31_t)0x405c361, (q31_t)0x7fe0644b, (q31_t)0x3f938ac, (q31_t)0x7fe12acb, (q31_t)0x3ecadcf, (q31_t)0x7fe1eed5, (q31_t)0x3e022cc, (q31_t)0x7fe2b067, (q31_t)0x3d397a3, (q31_t)0x7fe36f84, (q31_t)0x3c70c54, (q31_t)0x7fe42c2a, (q31_t)0x3ba80df, (q31_t)0x7fe4e659, (q31_t)0x3adf546, (q31_t)0x7fe59e12, (q31_t)0x3a16988, (q31_t)0x7fe65354, (q31_t)0x394dda7, (q31_t)0x7fe7061f, (q31_t)0x38851a2, (q31_t)0x7fe7b674, (q31_t)0x37bc57b, (q31_t)0x7fe86452, (q31_t)0x36f3931, (q31_t)0x7fe90fb9, (q31_t)0x362acc5, (q31_t)0x7fe9b8a9, (q31_t)0x3562038, (q31_t)0x7fea5f23, (q31_t)0x3499389, (q31_t)0x7feb0326, (q31_t)0x33d06bb, (q31_t)0x7feba4b2, (q31_t)0x33079cc, (q31_t)0x7fec43c7, (q31_t)0x323ecbe, (q31_t)0x7fece065, (q31_t)0x3175f91, (q31_t)0x7fed7a8c, (q31_t)0x30ad245, (q31_t)0x7fee123d, (q31_t)0x2fe44dc, (q31_t)0x7feea776, (q31_t)0x2f1b755, (q31_t)0x7fef3a39, (q31_t)0x2e529b0, (q31_t)0x7fefca84, (q31_t)0x2d89bf0, (q31_t)0x7ff05858, (q31_t)0x2cc0e13, (q31_t)0x7ff0e3b6, (q31_t)0x2bf801a, (q31_t)0x7ff16c9c, (q31_t)0x2b2f207, (q31_t)0x7ff1f30b, (q31_t)0x2a663d8, (q31_t)0x7ff27703, (q31_t)0x299d590, (q31_t)0x7ff2f884, (q31_t)0x28d472e, (q31_t)0x7ff3778e, (q31_t)0x280b8b3, (q31_t)0x7ff3f420, (q31_t)0x2742a1f, (q31_t)0x7ff46e3c, (q31_t)0x2679b73, (q31_t)0x7ff4e5e0, (q31_t)0x25b0caf, (q31_t)0x7ff55b0d, (q31_t)0x24e7dd4, (q31_t)0x7ff5cdc3, (q31_t)0x241eee2, (q31_t)0x7ff63e01, (q31_t)0x2355fd9, (q31_t)0x7ff6abc8, (q31_t)0x228d0bb, (q31_t)0x7ff71718, (q31_t)0x21c4188, (q31_t)0x7ff77ff1, (q31_t)0x20fb240, (q31_t)0x7ff7e652, (q31_t)0x20322e3, (q31_t)0x7ff84a3c, (q31_t)0x1f69373, (q31_t)0x7ff8abae, (q31_t)0x1ea03ef, (q31_t)0x7ff90aaa, (q31_t)0x1dd7459, (q31_t)0x7ff9672d, (q31_t)0x1d0e4b0, (q31_t)0x7ff9c13a, (q31_t)0x1c454f5, (q31_t)0x7ffa18cf, (q31_t)0x1b7c528, (q31_t)0x7ffa6dec, (q31_t)0x1ab354b, (q31_t)0x7ffac092, (q31_t)0x19ea55d, (q31_t)0x7ffb10c1, (q31_t)0x192155f, (q31_t)0x7ffb5e78, (q31_t)0x1858552, (q31_t)0x7ffba9b8, (q31_t)0x178f536, (q31_t)0x7ffbf280, (q31_t)0x16c650b, (q31_t)0x7ffc38d1, (q31_t)0x15fd4d2, (q31_t)0x7ffc7caa, (q31_t)0x153448c, (q31_t)0x7ffcbe0c, (q31_t)0x146b438, (q31_t)0x7ffcfcf6, (q31_t)0x13a23d8, (q31_t)0x7ffd3969, (q31_t)0x12d936c, (q31_t)0x7ffd7364, (q31_t)0x12102f4, (q31_t)0x7ffdaae7, (q31_t)0x1147271, (q31_t)0x7ffddff3, (q31_t)0x107e1e3, (q31_t)0x7ffe1288, (q31_t)0xfb514b, (q31_t)0x7ffe42a4, (q31_t)0xeec0aa, (q31_t)0x7ffe704a, (q31_t)0xe22fff, (q31_t)0x7ffe9b77, (q31_t)0xd59f4c, (q31_t)0x7ffec42d, (q31_t)0xc90e90, (q31_t)0x7ffeea6c, (q31_t)0xbc7dcc, (q31_t)0x7fff0e32, (q31_t)0xafed02, (q31_t)0x7fff2f82, (q31_t)0xa35c30, (q31_t)0x7fff4e59, (q31_t)0x96cb58, (q31_t)0x7fff6ab9, (q31_t)0x8a3a7b, (q31_t)0x7fff84a1, (q31_t)0x7da998, (q31_t)0x7fff9c12, (q31_t)0x7118b0, (q31_t)0x7fffb10b, (q31_t)0x6487c4, (q31_t)0x7fffc38c, (q31_t)0x57f6d4, (q31_t)0x7fffd396, (q31_t)0x4b65e1, (q31_t)0x7fffe128, (q31_t)0x3ed4ea, (q31_t)0x7fffec43, (q31_t)0x3243f1, (q31_t)0x7ffff4e6, (q31_t)0x25b2f7, (q31_t)0x7ffffb11, (q31_t)0x1921fb, (q31_t)0x7ffffec4, (q31_t)0xc90fe, (q31_t)0x7fffffff, (q31_t)0x0, (q31_t)0x7ffffec4, (q31_t)0xfff36f02, (q31_t)0x7ffffb11, (q31_t)0xffe6de05, (q31_t)0x7ffff4e6, (q31_t)0xffda4d09, (q31_t)0x7fffec43, (q31_t)0xffcdbc0f, (q31_t)0x7fffe128, (q31_t)0xffc12b16, (q31_t)0x7fffd396, (q31_t)0xffb49a1f, (q31_t)0x7fffc38c, (q31_t)0xffa8092c, (q31_t)0x7fffb10b, (q31_t)0xff9b783c, (q31_t)0x7fff9c12, (q31_t)0xff8ee750, (q31_t)0x7fff84a1, (q31_t)0xff825668, (q31_t)0x7fff6ab9, (q31_t)0xff75c585, (q31_t)0x7fff4e59, (q31_t)0xff6934a8, (q31_t)0x7fff2f82, (q31_t)0xff5ca3d0, (q31_t)0x7fff0e32, (q31_t)0xff5012fe, (q31_t)0x7ffeea6c, (q31_t)0xff438234, (q31_t)0x7ffec42d, (q31_t)0xff36f170, (q31_t)0x7ffe9b77, (q31_t)0xff2a60b4, (q31_t)0x7ffe704a, (q31_t)0xff1dd001, (q31_t)0x7ffe42a4, (q31_t)0xff113f56, (q31_t)0x7ffe1288, (q31_t)0xff04aeb5, (q31_t)0x7ffddff3, (q31_t)0xfef81e1d, (q31_t)0x7ffdaae7, (q31_t)0xfeeb8d8f, (q31_t)0x7ffd7364, (q31_t)0xfedefd0c, (q31_t)0x7ffd3969, (q31_t)0xfed26c94, (q31_t)0x7ffcfcf6, (q31_t)0xfec5dc28, (q31_t)0x7ffcbe0c, (q31_t)0xfeb94bc8, (q31_t)0x7ffc7caa, (q31_t)0xfeacbb74, (q31_t)0x7ffc38d1, (q31_t)0xfea02b2e, (q31_t)0x7ffbf280, (q31_t)0xfe939af5, (q31_t)0x7ffba9b8, (q31_t)0xfe870aca, (q31_t)0x7ffb5e78, (q31_t)0xfe7a7aae, (q31_t)0x7ffb10c1, (q31_t)0xfe6deaa1, (q31_t)0x7ffac092, (q31_t)0xfe615aa3, (q31_t)0x7ffa6dec, (q31_t)0xfe54cab5, (q31_t)0x7ffa18cf, (q31_t)0xfe483ad8, (q31_t)0x7ff9c13a, (q31_t)0xfe3bab0b, (q31_t)0x7ff9672d, (q31_t)0xfe2f1b50, (q31_t)0x7ff90aaa, (q31_t)0xfe228ba7, (q31_t)0x7ff8abae, (q31_t)0xfe15fc11, (q31_t)0x7ff84a3c, (q31_t)0xfe096c8d, (q31_t)0x7ff7e652, (q31_t)0xfdfcdd1d, (q31_t)0x7ff77ff1, (q31_t)0xfdf04dc0, (q31_t)0x7ff71718, (q31_t)0xfde3be78, (q31_t)0x7ff6abc8, (q31_t)0xfdd72f45, (q31_t)0x7ff63e01, (q31_t)0xfdcaa027, (q31_t)0x7ff5cdc3, (q31_t)0xfdbe111e, (q31_t)0x7ff55b0d, (q31_t)0xfdb1822c, (q31_t)0x7ff4e5e0, (q31_t)0xfda4f351, (q31_t)0x7ff46e3c, (q31_t)0xfd98648d, (q31_t)0x7ff3f420, (q31_t)0xfd8bd5e1, (q31_t)0x7ff3778e, (q31_t)0xfd7f474d, (q31_t)0x7ff2f884, (q31_t)0xfd72b8d2, (q31_t)0x7ff27703, (q31_t)0xfd662a70, (q31_t)0x7ff1f30b, (q31_t)0xfd599c28, (q31_t)0x7ff16c9c, (q31_t)0xfd4d0df9, (q31_t)0x7ff0e3b6, (q31_t)0xfd407fe6, (q31_t)0x7ff05858, (q31_t)0xfd33f1ed, (q31_t)0x7fefca84, (q31_t)0xfd276410, (q31_t)0x7fef3a39, (q31_t)0xfd1ad650, (q31_t)0x7feea776, (q31_t)0xfd0e48ab, (q31_t)0x7fee123d, (q31_t)0xfd01bb24, (q31_t)0x7fed7a8c, (q31_t)0xfcf52dbb, (q31_t)0x7fece065, (q31_t)0xfce8a06f, (q31_t)0x7fec43c7, (q31_t)0xfcdc1342, (q31_t)0x7feba4b2, (q31_t)0xfccf8634, (q31_t)0x7feb0326, (q31_t)0xfcc2f945, (q31_t)0x7fea5f23, (q31_t)0xfcb66c77, (q31_t)0x7fe9b8a9, (q31_t)0xfca9dfc8, (q31_t)0x7fe90fb9, (q31_t)0xfc9d533b, (q31_t)0x7fe86452, (q31_t)0xfc90c6cf, (q31_t)0x7fe7b674, (q31_t)0xfc843a85, (q31_t)0x7fe7061f, (q31_t)0xfc77ae5e, (q31_t)0x7fe65354, (q31_t)0xfc6b2259, (q31_t)0x7fe59e12, (q31_t)0xfc5e9678, (q31_t)0x7fe4e659, (q31_t)0xfc520aba, (q31_t)0x7fe42c2a, (q31_t)0xfc457f21, (q31_t)0x7fe36f84, (q31_t)0xfc38f3ac, (q31_t)0x7fe2b067, (q31_t)0xfc2c685d, (q31_t)0x7fe1eed5, (q31_t)0xfc1fdd34, (q31_t)0x7fe12acb, (q31_t)0xfc135231, (q31_t)0x7fe0644b, (q31_t)0xfc06c754, (q31_t)0x7fdf9b55, (q31_t)0xfbfa3c9f, (q31_t)0x7fdecfe8, (q31_t)0xfbedb212, (q31_t)0x7fde0205, (q31_t)0xfbe127ac, (q31_t)0x7fdd31ac, (q31_t)0xfbd49d70, (q31_t)0x7fdc5edc, (q31_t)0xfbc8135c, (q31_t)0x7fdb8996, (q31_t)0xfbbb8973, (q31_t)0x7fdab1d9, (q31_t)0xfbaeffb3, (q31_t)0x7fd9d7a7, (q31_t)0xfba2761e, (q31_t)0x7fd8fafe, (q31_t)0xfb95ecb4, (q31_t)0x7fd81bdf, (q31_t)0xfb896375, (q31_t)0x7fd73a4a, (q31_t)0xfb7cda63, (q31_t)0x7fd6563f, (q31_t)0xfb70517d, (q31_t)0x7fd56fbe, (q31_t)0xfb63c8c4, (q31_t)0x7fd486c7, (q31_t)0xfb574039, (q31_t)0x7fd39b5a, (q31_t)0xfb4ab7db, (q31_t)0x7fd2ad77, (q31_t)0xfb3e2fac, (q31_t)0x7fd1bd1e, (q31_t)0xfb31a7ac, (q31_t)0x7fd0ca4f, (q31_t)0xfb251fdc, (q31_t)0x7fcfd50b, (q31_t)0xfb18983b, (q31_t)0x7fcedd50, (q31_t)0xfb0c10cb, (q31_t)0x7fcde320, (q31_t)0xfaff898c, (q31_t)0x7fcce67a, (q31_t)0xfaf3027e, (q31_t)0x7fcbe75e, (q31_t)0xfae67ba2, (q31_t)0x7fcae5cd, (q31_t)0xfad9f4f8, (q31_t)0x7fc9e1c6, (q31_t)0xfacd6e81, (q31_t)0x7fc8db4a, (q31_t)0xfac0e83d, (q31_t)0x7fc7d258, (q31_t)0xfab4622d, (q31_t)0x7fc6c6f0, (q31_t)0xfaa7dc52, (q31_t)0x7fc5b913, (q31_t)0xfa9b56ab, (q31_t)0x7fc4a8c1, (q31_t)0xfa8ed139, (q31_t)0x7fc395f9, (q31_t)0xfa824bfd, (q31_t)0x7fc280bc, (q31_t)0xfa75c6f8, (q31_t)0x7fc1690a, (q31_t)0xfa694229, (q31_t)0x7fc04ee3, (q31_t)0xfa5cbd91, (q31_t)0x7fbf3246, (q31_t)0xfa503930, (q31_t)0x7fbe1334, (q31_t)0xfa43b508, (q31_t)0x7fbcf1ad, (q31_t)0xfa373119, (q31_t)0x7fbbcdb1, (q31_t)0xfa2aad62, (q31_t)0x7fbaa740, (q31_t)0xfa1e29e5, (q31_t)0x7fb97e5a, (q31_t)0xfa11a6a3, (q31_t)0x7fb852ff, (q31_t)0xfa05239a, (q31_t)0x7fb7252f, (q31_t)0xf9f8a0cd, (q31_t)0x7fb5f4ea, (q31_t)0xf9ec1e3b, (q31_t)0x7fb4c231, (q31_t)0xf9df9be6, (q31_t)0x7fb38d02, (q31_t)0xf9d319cc, (q31_t)0x7fb2555f, (q31_t)0xf9c697f0, (q31_t)0x7fb11b48, (q31_t)0xf9ba1651, (q31_t)0x7fafdebb, (q31_t)0xf9ad94f0, (q31_t)0x7fae9fbb, (q31_t)0xf9a113cd, (q31_t)0x7fad5e45, (q31_t)0xf99492ea, (q31_t)0x7fac1a5b, (q31_t)0xf9881245, (q31_t)0x7faad3fd, (q31_t)0xf97b91e1, (q31_t)0x7fa98b2a, (q31_t)0xf96f11bc, (q31_t)0x7fa83fe3, (q31_t)0xf96291d9, (q31_t)0x7fa6f228, (q31_t)0xf9561237, (q31_t)0x7fa5a1f9, (q31_t)0xf94992d7, (q31_t)0x7fa44f55, (q31_t)0xf93d13b8, (q31_t)0x7fa2fa3d, (q31_t)0xf93094dd, (q31_t)0x7fa1a2b2, (q31_t)0xf9241645, (q31_t)0x7fa048b2, (q31_t)0xf91797f0, (q31_t)0x7f9eec3e, (q31_t)0xf90b19e0, (q31_t)0x7f9d8d56, (q31_t)0xf8fe9c15, (q31_t)0x7f9c2bfb, (q31_t)0xf8f21e8e, (q31_t)0x7f9ac82c, (q31_t)0xf8e5a14d, (q31_t)0x7f9961e8, (q31_t)0xf8d92452, (q31_t)0x7f97f932, (q31_t)0xf8cca79e, (q31_t)0x7f968e07, (q31_t)0xf8c02b31, (q31_t)0x7f952069, (q31_t)0xf8b3af0c, (q31_t)0x7f93b058, (q31_t)0xf8a7332e, (q31_t)0x7f923dd2, (q31_t)0xf89ab799, (q31_t)0x7f90c8da, (q31_t)0xf88e3c4d, (q31_t)0x7f8f516e, (q31_t)0xf881c14b, (q31_t)0x7f8dd78f, (q31_t)0xf8754692, (q31_t)0x7f8c5b3d, (q31_t)0xf868cc24, (q31_t)0x7f8adc77, (q31_t)0xf85c5201, (q31_t)0x7f895b3e, (q31_t)0xf84fd829, (q31_t)0x7f87d792, (q31_t)0xf8435e9d, (q31_t)0x7f865174, (q31_t)0xf836e55d, (q31_t)0x7f84c8e2, (q31_t)0xf82a6c6a, (q31_t)0x7f833ddd, (q31_t)0xf81df3c5, (q31_t)0x7f81b065, (q31_t)0xf8117b6d, (q31_t)0x7f80207b, (q31_t)0xf8050364, (q31_t)0x7f7e8e1e, (q31_t)0xf7f88ba9, (q31_t)0x7f7cf94e, (q31_t)0xf7ec143e, (q31_t)0x7f7b620c, (q31_t)0xf7df9d22, (q31_t)0x7f79c857, (q31_t)0xf7d32657, (q31_t)0x7f782c30, (q31_t)0xf7c6afdc, (q31_t)0x7f768d96, (q31_t)0xf7ba39b3, (q31_t)0x7f74ec8a, (q31_t)0xf7adc3db, (q31_t)0x7f73490b, (q31_t)0xf7a14e55, (q31_t)0x7f71a31b, (q31_t)0xf794d922, (q31_t)0x7f6ffab8, (q31_t)0xf7886442, (q31_t)0x7f6e4fe3, (q31_t)0xf77befb5, (q31_t)0x7f6ca29c, (q31_t)0xf76f7b7d, (q31_t)0x7f6af2e3, (q31_t)0xf7630799, (q31_t)0x7f6940b8, (q31_t)0xf756940a, (q31_t)0x7f678c1c, (q31_t)0xf74a20d0, (q31_t)0x7f65d50d, (q31_t)0xf73daded, (q31_t)0x7f641b8d, (q31_t)0xf7313b60, (q31_t)0x7f625f9b, (q31_t)0xf724c92a, (q31_t)0x7f60a138, (q31_t)0xf718574b, (q31_t)0x7f5ee063, (q31_t)0xf70be5c4, (q31_t)0x7f5d1d1d, (q31_t)0xf6ff7496, (q31_t)0x7f5b5765, (q31_t)0xf6f303c0, (q31_t)0x7f598f3c, (q31_t)0xf6e69344, (q31_t)0x7f57c4a2, (q31_t)0xf6da2321, (q31_t)0x7f55f796, (q31_t)0xf6cdb359, (q31_t)0x7f54281a, (q31_t)0xf6c143ec, (q31_t)0x7f52562c, (q31_t)0xf6b4d4d9, (q31_t)0x7f5081cd, (q31_t)0xf6a86623, (q31_t)0x7f4eaafe, (q31_t)0xf69bf7c9, (q31_t)0x7f4cd1be, (q31_t)0xf68f89cb, (q31_t)0x7f4af60d, (q31_t)0xf6831c2b, (q31_t)0x7f4917eb, (q31_t)0xf676aee8, (q31_t)0x7f473759, (q31_t)0xf66a4203, (q31_t)0x7f455456, (q31_t)0xf65dd57d, (q31_t)0x7f436ee3, (q31_t)0xf6516956, (q31_t)0x7f4186ff, (q31_t)0xf644fd8f, (q31_t)0x7f3f9cab, (q31_t)0xf6389228, (q31_t)0x7f3dafe7, (q31_t)0xf62c2721, (q31_t)0x7f3bc0b3, (q31_t)0xf61fbc7b, (q31_t)0x7f39cf0e, (q31_t)0xf6135237, (q31_t)0x7f37dafa, (q31_t)0xf606e854, (q31_t)0x7f35e476, (q31_t)0xf5fa7ed4, (q31_t)0x7f33eb81, (q31_t)0xf5ee15b7, (q31_t)0x7f31f01d, (q31_t)0xf5e1acfd, (q31_t)0x7f2ff24a, (q31_t)0xf5d544a7, (q31_t)0x7f2df206, (q31_t)0xf5c8dcb6, (q31_t)0x7f2bef53, (q31_t)0xf5bc7529, (q31_t)0x7f29ea31, (q31_t)0xf5b00e02, (q31_t)0x7f27e29f, (q31_t)0xf5a3a740, (q31_t)0x7f25d89e, (q31_t)0xf59740e5, (q31_t)0x7f23cc2e, (q31_t)0xf58adaf0, (q31_t)0x7f21bd4e, (q31_t)0xf57e7563, (q31_t)0x7f1fabff, (q31_t)0xf572103d, (q31_t)0x7f1d9842, (q31_t)0xf565ab80, (q31_t)0x7f1b8215, (q31_t)0xf559472b, (q31_t)0x7f19697a, (q31_t)0xf54ce33f, (q31_t)0x7f174e70, (q31_t)0xf5407fbd, (q31_t)0x7f1530f7, (q31_t)0xf5341ca5, (q31_t)0x7f13110f, (q31_t)0xf527b9f7, (q31_t)0x7f10eeb9, (q31_t)0xf51b57b5, (q31_t)0x7f0ec9f5, (q31_t)0xf50ef5de, (q31_t)0x7f0ca2c2, (q31_t)0xf5029473, (q31_t)0x7f0a7921, (q31_t)0xf4f63374, (q31_t)0x7f084d12, (q31_t)0xf4e9d2e3, (q31_t)0x7f061e95, (q31_t)0xf4dd72be, (q31_t)0x7f03eda9, (q31_t)0xf4d11308, (q31_t)0x7f01ba50, (q31_t)0xf4c4b3c0, (q31_t)0x7eff8489, (q31_t)0xf4b854e7, (q31_t)0x7efd4c54, (q31_t)0xf4abf67e, (q31_t)0x7efb11b1, (q31_t)0xf49f9884, (q31_t)0x7ef8d4a1, (q31_t)0xf4933afa, (q31_t)0x7ef69523, (q31_t)0xf486dde1, (q31_t)0x7ef45338, (q31_t)0xf47a8139, (q31_t)0x7ef20ee0, (q31_t)0xf46e2504, (q31_t)0x7eefc81a, (q31_t)0xf461c940, (q31_t)0x7eed7ee7, (q31_t)0xf4556def, (q31_t)0x7eeb3347, (q31_t)0xf4491311, (q31_t)0x7ee8e53a, (q31_t)0xf43cb8a7, (q31_t)0x7ee694c1, (q31_t)0xf4305eb0, (q31_t)0x7ee441da, (q31_t)0xf424052f, (q31_t)0x7ee1ec87, (q31_t)0xf417ac22, (q31_t)0x7edf94c7, (q31_t)0xf40b538b, (q31_t)0x7edd3a9a, (q31_t)0xf3fefb6a, (q31_t)0x7edade01, (q31_t)0xf3f2a3bf, (q31_t)0x7ed87efc, (q31_t)0xf3e64c8c, (q31_t)0x7ed61d8a, (q31_t)0xf3d9f5cf, (q31_t)0x7ed3b9ad, (q31_t)0xf3cd9f8b, (q31_t)0x7ed15363, (q31_t)0xf3c149bf, (q31_t)0x7eceeaad, (q31_t)0xf3b4f46c, (q31_t)0x7ecc7f8b, (q31_t)0xf3a89f92, (q31_t)0x7eca11fe, (q31_t)0xf39c4b32, (q31_t)0x7ec7a205, (q31_t)0xf38ff74d, (q31_t)0x7ec52fa0, (q31_t)0xf383a3e2, (q31_t)0x7ec2bad0, (q31_t)0xf37750f2, (q31_t)0x7ec04394, (q31_t)0xf36afe7e, (q31_t)0x7ebdc9ed, (q31_t)0xf35eac86, (q31_t)0x7ebb4ddb, (q31_t)0xf3525b0b, (q31_t)0x7eb8cf5d, (q31_t)0xf3460a0d, (q31_t)0x7eb64e75, (q31_t)0xf339b98d, (q31_t)0x7eb3cb21, (q31_t)0xf32d698a, (q31_t)0x7eb14563, (q31_t)0xf3211a07, (q31_t)0x7eaebd3a, (q31_t)0xf314cb02, (q31_t)0x7eac32a6, (q31_t)0xf3087c7d, (q31_t)0x7ea9a5a8, (q31_t)0xf2fc2e77, (q31_t)0x7ea7163f, (q31_t)0xf2efe0f2, (q31_t)0x7ea4846c, (q31_t)0xf2e393ef, (q31_t)0x7ea1f02f, (q31_t)0xf2d7476c, (q31_t)0x7e9f5988, (q31_t)0xf2cafb6b, (q31_t)0x7e9cc076, (q31_t)0xf2beafed, (q31_t)0x7e9a24fb, (q31_t)0xf2b264f2, (q31_t)0x7e978715, (q31_t)0xf2a61a7a, (q31_t)0x7e94e6c6, (q31_t)0xf299d085, (q31_t)0x7e92440d, (q31_t)0xf28d8715, (q31_t)0x7e8f9eeb, (q31_t)0xf2813e2a, (q31_t)0x7e8cf75f, (q31_t)0xf274f5c3, (q31_t)0x7e8a4d6a, (q31_t)0xf268ade3, (q31_t)0x7e87a10c, (q31_t)0xf25c6688, (q31_t)0x7e84f245, (q31_t)0xf2501fb5, (q31_t)0x7e824114, (q31_t)0xf243d968, (q31_t)0x7e7f8d7b, (q31_t)0xf23793a3, (q31_t)0x7e7cd778, (q31_t)0xf22b4e66, (q31_t)0x7e7a1f0d, (q31_t)0xf21f09b1, (q31_t)0x7e77643a, (q31_t)0xf212c585, (q31_t)0x7e74a6fd, (q31_t)0xf20681e3, (q31_t)0x7e71e759, (q31_t)0xf1fa3ecb, (q31_t)0x7e6f254c, (q31_t)0xf1edfc3d, (q31_t)0x7e6c60d7, (q31_t)0xf1e1ba3a, (q31_t)0x7e6999fa, (q31_t)0xf1d578c2, (q31_t)0x7e66d0b4, (q31_t)0xf1c937d6, (q31_t)0x7e640507, (q31_t)0xf1bcf777, (q31_t)0x7e6136f3, (q31_t)0xf1b0b7a4, (q31_t)0x7e5e6676, (q31_t)0xf1a4785e, (q31_t)0x7e5b9392, (q31_t)0xf19839a6, (q31_t)0x7e58be47, (q31_t)0xf18bfb7d, (q31_t)0x7e55e694, (q31_t)0xf17fbde2, (q31_t)0x7e530c7a, (q31_t)0xf17380d6, (q31_t)0x7e502ff9, (q31_t)0xf1674459, (q31_t)0x7e4d5110, (q31_t)0xf15b086d, (q31_t)0x7e4a6fc1, (q31_t)0xf14ecd11, (q31_t)0x7e478c0b, (q31_t)0xf1429247, (q31_t)0x7e44a5ef, (q31_t)0xf136580d, (q31_t)0x7e41bd6c, (q31_t)0xf12a1e66, (q31_t)0x7e3ed282, (q31_t)0xf11de551, (q31_t)0x7e3be532, (q31_t)0xf111accf, (q31_t)0x7e38f57c, (q31_t)0xf10574e0, (q31_t)0x7e360360, (q31_t)0xf0f93d86, (q31_t)0x7e330ede, (q31_t)0xf0ed06bf, (q31_t)0x7e3017f6, (q31_t)0xf0e0d08d, (q31_t)0x7e2d1ea8, (q31_t)0xf0d49af1, (q31_t)0x7e2a22f4, (q31_t)0xf0c865ea, (q31_t)0x7e2724db, (q31_t)0xf0bc317a, (q31_t)0x7e24245d, (q31_t)0xf0affda0, (q31_t)0x7e212179, (q31_t)0xf0a3ca5d, (q31_t)0x7e1e1c30, (q31_t)0xf09797b2, (q31_t)0x7e1b1482, (q31_t)0xf08b659f, (q31_t)0x7e180a6f, (q31_t)0xf07f3424, (q31_t)0x7e14fdf7, (q31_t)0xf0730342, (q31_t)0x7e11ef1b, (q31_t)0xf066d2fa, (q31_t)0x7e0eddd9, (q31_t)0xf05aa34c, (q31_t)0x7e0bca34, (q31_t)0xf04e7438, (q31_t)0x7e08b42a, (q31_t)0xf04245c0, (q31_t)0x7e059bbb, (q31_t)0xf03617e2, (q31_t)0x7e0280e9, (q31_t)0xf029eaa1, (q31_t)0x7dff63b2, (q31_t)0xf01dbdfb, (q31_t)0x7dfc4418, (q31_t)0xf01191f3, (q31_t)0x7df9221a, (q31_t)0xf0056687, (q31_t)0x7df5fdb8, (q31_t)0xeff93bba, (q31_t)0x7df2d6f3, (q31_t)0xefed118a, (q31_t)0x7defadca, (q31_t)0xefe0e7f9, (q31_t)0x7dec823e, (q31_t)0xefd4bf08, (q31_t)0x7de9544f, (q31_t)0xefc896b5, (q31_t)0x7de623fd, (q31_t)0xefbc6f03, (q31_t)0x7de2f148, (q31_t)0xefb047f2, (q31_t)0x7ddfbc30, (q31_t)0xefa42181, (q31_t)0x7ddc84b5, (q31_t)0xef97fbb2, (q31_t)0x7dd94ad8, (q31_t)0xef8bd685, (q31_t)0x7dd60e99, (q31_t)0xef7fb1fa, (q31_t)0x7dd2cff7, (q31_t)0xef738e12, (q31_t)0x7dcf8ef3, (q31_t)0xef676ace, (q31_t)0x7dcc4b8d, (q31_t)0xef5b482d, (q31_t)0x7dc905c5, (q31_t)0xef4f2630, (q31_t)0x7dc5bd9b, (q31_t)0xef4304d8, (q31_t)0x7dc2730f, (q31_t)0xef36e426, (q31_t)0x7dbf2622, (q31_t)0xef2ac419, (q31_t)0x7dbbd6d4, (q31_t)0xef1ea4b2, (q31_t)0x7db88524, (q31_t)0xef1285f2, (q31_t)0x7db53113, (q31_t)0xef0667d9, (q31_t)0x7db1daa2, (q31_t)0xeefa4a67, (q31_t)0x7dae81cf, (q31_t)0xeeee2d9d, (q31_t)0x7dab269b, (q31_t)0xeee2117c, (q31_t)0x7da7c907, (q31_t)0xeed5f604, (q31_t)0x7da46912, (q31_t)0xeec9db35, (q31_t)0x7da106bd, (q31_t)0xeebdc110, (q31_t)0x7d9da208, (q31_t)0xeeb1a796, (q31_t)0x7d9a3af2, (q31_t)0xeea58ec6, (q31_t)0x7d96d17d, (q31_t)0xee9976a1, (q31_t)0x7d9365a8, (q31_t)0xee8d5f29, (q31_t)0x7d8ff772, (q31_t)0xee81485c, (q31_t)0x7d8c86de, (q31_t)0xee75323c, (q31_t)0x7d8913ea, (q31_t)0xee691cc9, (q31_t)0x7d859e96, (q31_t)0xee5d0804, (q31_t)0x7d8226e4, (q31_t)0xee50f3ed, (q31_t)0x7d7eacd2, (q31_t)0xee44e084, (q31_t)0x7d7b3061, (q31_t)0xee38cdcb, (q31_t)0x7d77b192, (q31_t)0xee2cbbc1, (q31_t)0x7d743064, (q31_t)0xee20aa67, (q31_t)0x7d70acd7, (q31_t)0xee1499bd, (q31_t)0x7d6d26ec, (q31_t)0xee0889c4, (q31_t)0x7d699ea3, (q31_t)0xedfc7a7c, (q31_t)0x7d6613fb, (q31_t)0xedf06be6, (q31_t)0x7d6286f6, (q31_t)0xede45e03, (q31_t)0x7d5ef793, (q31_t)0xedd850d2, (q31_t)0x7d5b65d2, (q31_t)0xedcc4454, (q31_t)0x7d57d1b3, (q31_t)0xedc0388a, (q31_t)0x7d543b37, (q31_t)0xedb42d74, (q31_t)0x7d50a25e, (q31_t)0xeda82313, (q31_t)0x7d4d0728, (q31_t)0xed9c1967, (q31_t)0x7d496994, (q31_t)0xed901070, (q31_t)0x7d45c9a4, (q31_t)0xed84082f, (q31_t)0x7d422757, (q31_t)0xed7800a5, (q31_t)0x7d3e82ae, (q31_t)0xed6bf9d1, (q31_t)0x7d3adba7, (q31_t)0xed5ff3b5, (q31_t)0x7d373245, (q31_t)0xed53ee51, (q31_t)0x7d338687, (q31_t)0xed47e9a5, (q31_t)0x7d2fd86c, (q31_t)0xed3be5b1, (q31_t)0x7d2c27f6, (q31_t)0xed2fe277, (q31_t)0x7d287523, (q31_t)0xed23dff7, (q31_t)0x7d24bff6, (q31_t)0xed17de31, (q31_t)0x7d21086c, (q31_t)0xed0bdd25, (q31_t)0x7d1d4e88, (q31_t)0xecffdcd4, (q31_t)0x7d199248, (q31_t)0xecf3dd3f, (q31_t)0x7d15d3ad, (q31_t)0xece7de66, (q31_t)0x7d1212b7, (q31_t)0xecdbe04a, (q31_t)0x7d0e4f67, (q31_t)0xeccfe2ea, (q31_t)0x7d0a89bc, (q31_t)0xecc3e648, (q31_t)0x7d06c1b6, (q31_t)0xecb7ea63, (q31_t)0x7d02f757, (q31_t)0xecabef3d, (q31_t)0x7cff2a9d, (q31_t)0xec9ff4d6, (q31_t)0x7cfb5b89, (q31_t)0xec93fb2e, (q31_t)0x7cf78a1b, (q31_t)0xec880245, (q31_t)0x7cf3b653, (q31_t)0xec7c0a1d, (q31_t)0x7cefe032, (q31_t)0xec7012b5, (q31_t)0x7cec07b8, (q31_t)0xec641c0e, (q31_t)0x7ce82ce4, (q31_t)0xec582629, (q31_t)0x7ce44fb7, (q31_t)0xec4c3106, (q31_t)0x7ce07031, (q31_t)0xec403ca5, (q31_t)0x7cdc8e52, (q31_t)0xec344908, (q31_t)0x7cd8aa1b, (q31_t)0xec28562d, (q31_t)0x7cd4c38b, (q31_t)0xec1c6417, (q31_t)0x7cd0daa2, (q31_t)0xec1072c4, (q31_t)0x7cccef62, (q31_t)0xec048237, (q31_t)0x7cc901c9, (q31_t)0xebf8926f, (q31_t)0x7cc511d9, (q31_t)0xebeca36c, (q31_t)0x7cc11f90, (q31_t)0xebe0b52f, (q31_t)0x7cbd2af0, (q31_t)0xebd4c7ba, (q31_t)0x7cb933f9, (q31_t)0xebc8db0b, (q31_t)0x7cb53aaa, (q31_t)0xebbcef23, (q31_t)0x7cb13f04, (q31_t)0xebb10404, (q31_t)0x7cad4107, (q31_t)0xeba519ad, (q31_t)0x7ca940b3, (q31_t)0xeb99301f, (q31_t)0x7ca53e09, (q31_t)0xeb8d475b, (q31_t)0x7ca13908, (q31_t)0xeb815f60, (q31_t)0x7c9d31b0, (q31_t)0xeb75782f, (q31_t)0x7c992803, (q31_t)0xeb6991ca, (q31_t)0x7c951bff, (q31_t)0xeb5dac2f, (q31_t)0x7c910da5, (q31_t)0xeb51c760, (q31_t)0x7c8cfcf6, (q31_t)0xeb45e35d, (q31_t)0x7c88e9f1, (q31_t)0xeb3a0027, (q31_t)0x7c84d496, (q31_t)0xeb2e1dbe, (q31_t)0x7c80bce7, (q31_t)0xeb223c22, (q31_t)0x7c7ca2e2, (q31_t)0xeb165b54, (q31_t)0x7c788688, (q31_t)0xeb0a7b54, (q31_t)0x7c7467d9, (q31_t)0xeafe9c24, (q31_t)0x7c7046d6, (q31_t)0xeaf2bdc3, (q31_t)0x7c6c237e, (q31_t)0xeae6e031, (q31_t)0x7c67fdd1, (q31_t)0xeadb0370, (q31_t)0x7c63d5d1, (q31_t)0xeacf277f, (q31_t)0x7c5fab7c, (q31_t)0xeac34c60, (q31_t)0x7c5b7ed4, (q31_t)0xeab77212, (q31_t)0x7c574fd8, (q31_t)0xeaab9896, (q31_t)0x7c531e88, (q31_t)0xea9fbfed, (q31_t)0x7c4eeae5, (q31_t)0xea93e817, (q31_t)0x7c4ab4ef, (q31_t)0xea881114, (q31_t)0x7c467ca6, (q31_t)0xea7c3ae5, (q31_t)0x7c42420a, (q31_t)0xea70658a, (q31_t)0x7c3e051b, (q31_t)0xea649105, (q31_t)0x7c39c5da, (q31_t)0xea58bd54, (q31_t)0x7c358446, (q31_t)0xea4cea79, (q31_t)0x7c314060, (q31_t)0xea411874, (q31_t)0x7c2cfa28, (q31_t)0xea354746, (q31_t)0x7c28b19e, (q31_t)0xea2976ef, (q31_t)0x7c2466c2, (q31_t)0xea1da770, (q31_t)0x7c201994, (q31_t)0xea11d8c8, (q31_t)0x7c1bca16, (q31_t)0xea060af9, (q31_t)0x7c177845, (q31_t)0xe9fa3e03, (q31_t)0x7c132424, (q31_t)0xe9ee71e6, (q31_t)0x7c0ecdb2, (q31_t)0xe9e2a6a3, (q31_t)0x7c0a74f0, (q31_t)0xe9d6dc3b, (q31_t)0x7c0619dc, (q31_t)0xe9cb12ad, (q31_t)0x7c01bc78, (q31_t)0xe9bf49fa, (q31_t)0x7bfd5cc4, (q31_t)0xe9b38223, (q31_t)0x7bf8fac0, (q31_t)0xe9a7bb28, (q31_t)0x7bf4966c, (q31_t)0xe99bf509, (q31_t)0x7bf02fc9, (q31_t)0xe9902fc7, (q31_t)0x7bebc6d5, (q31_t)0xe9846b63, (q31_t)0x7be75b93, (q31_t)0xe978a7dd, (q31_t)0x7be2ee01, (q31_t)0xe96ce535, (q31_t)0x7bde7e20, (q31_t)0xe961236c, (q31_t)0x7bda0bf0, (q31_t)0xe9556282, (q31_t)0x7bd59771, (q31_t)0xe949a278, (q31_t)0x7bd120a4, (q31_t)0xe93de34e, (q31_t)0x7bcca789, (q31_t)0xe9322505, (q31_t)0x7bc82c1f, (q31_t)0xe926679c, (q31_t)0x7bc3ae67, (q31_t)0xe91aab16, (q31_t)0x7bbf2e62, (q31_t)0xe90eef71, (q31_t)0x7bbaac0e, (q31_t)0xe90334af, (q31_t)0x7bb6276e, (q31_t)0xe8f77acf, (q31_t)0x7bb1a080, (q31_t)0xe8ebc1d3, (q31_t)0x7bad1744, (q31_t)0xe8e009ba, (q31_t)0x7ba88bbc, (q31_t)0xe8d45286, (q31_t)0x7ba3fde7, (q31_t)0xe8c89c37, (q31_t)0x7b9f6dc5, (q31_t)0xe8bce6cd, (q31_t)0x7b9adb57, (q31_t)0xe8b13248, (q31_t)0x7b96469d, (q31_t)0xe8a57ea9, (q31_t)0x7b91af97, (q31_t)0xe899cbf1, (q31_t)0x7b8d1644, (q31_t)0xe88e1a20, (q31_t)0x7b887aa6, (q31_t)0xe8826936, (q31_t)0x7b83dcbc, (q31_t)0xe876b934, (q31_t)0x7b7f3c87, (q31_t)0xe86b0a1a, (q31_t)0x7b7a9a07, (q31_t)0xe85f5be9, (q31_t)0x7b75f53c, (q31_t)0xe853aea1, (q31_t)0x7b714e25, (q31_t)0xe8480243, (q31_t)0x7b6ca4c4, (q31_t)0xe83c56cf, (q31_t)0x7b67f919, (q31_t)0xe830ac45, (q31_t)0x7b634b23, (q31_t)0xe82502a7, (q31_t)0x7b5e9ae4, (q31_t)0xe81959f4, (q31_t)0x7b59e85a, (q31_t)0xe80db22d, (q31_t)0x7b553386, (q31_t)0xe8020b52, (q31_t)0x7b507c69, (q31_t)0xe7f66564, (q31_t)0x7b4bc303, (q31_t)0xe7eac063, (q31_t)0x7b470753, (q31_t)0xe7df1c50, (q31_t)0x7b42495a, (q31_t)0xe7d3792b, (q31_t)0x7b3d8918, (q31_t)0xe7c7d6f4, (q31_t)0x7b38c68e, (q31_t)0xe7bc35ad, (q31_t)0x7b3401bb, (q31_t)0xe7b09555, (q31_t)0x7b2f3aa0, (q31_t)0xe7a4f5ed, (q31_t)0x7b2a713d, (q31_t)0xe7995776, (q31_t)0x7b25a591, (q31_t)0xe78db9ef, (q31_t)0x7b20d79e, (q31_t)0xe7821d59, (q31_t)0x7b1c0764, (q31_t)0xe77681b6, (q31_t)0x7b1734e2, (q31_t)0xe76ae704, (q31_t)0x7b126019, (q31_t)0xe75f4d45, (q31_t)0x7b0d8909, (q31_t)0xe753b479, (q31_t)0x7b08afb2, (q31_t)0xe7481ca1, (q31_t)0x7b03d414, (q31_t)0xe73c85bc, (q31_t)0x7afef630, (q31_t)0xe730efcc, (q31_t)0x7afa1605, (q31_t)0xe7255ad1, (q31_t)0x7af53395, (q31_t)0xe719c6cb, (q31_t)0x7af04edf, (q31_t)0xe70e33bb, (q31_t)0x7aeb67e3, (q31_t)0xe702a1a1, (q31_t)0x7ae67ea1, (q31_t)0xe6f7107e, (q31_t)0x7ae1931a, (q31_t)0xe6eb8052, (q31_t)0x7adca54e, (q31_t)0xe6dff11d, (q31_t)0x7ad7b53d, (q31_t)0xe6d462e1, (q31_t)0x7ad2c2e8, (q31_t)0xe6c8d59c, (q31_t)0x7acdce4d, (q31_t)0xe6bd4951, (q31_t)0x7ac8d76f, (q31_t)0xe6b1bdff, (q31_t)0x7ac3de4c, (q31_t)0xe6a633a6, (q31_t)0x7abee2e5, (q31_t)0xe69aaa48, (q31_t)0x7ab9e53a, (q31_t)0xe68f21e5, (q31_t)0x7ab4e54c, (q31_t)0xe6839a7c, (q31_t)0x7aafe31b, (q31_t)0xe6781410, (q31_t)0x7aaadea6, (q31_t)0xe66c8e9f, (q31_t)0x7aa5d7ee, (q31_t)0xe6610a2a, (q31_t)0x7aa0cef3, (q31_t)0xe65586b3, (q31_t)0x7a9bc3b6, (q31_t)0xe64a0438, (q31_t)0x7a96b636, (q31_t)0xe63e82bc, (q31_t)0x7a91a674, (q31_t)0xe633023e, (q31_t)0x7a8c9470, (q31_t)0xe62782be, (q31_t)0x7a87802a, (q31_t)0xe61c043d, (q31_t)0x7a8269a3, (q31_t)0xe61086bc, (q31_t)0x7a7d50da, (q31_t)0xe6050a3b, (q31_t)0x7a7835cf, (q31_t)0xe5f98ebb, (q31_t)0x7a731884, (q31_t)0xe5ee143b, (q31_t)0x7a6df8f8, (q31_t)0xe5e29abc, (q31_t)0x7a68d72b, (q31_t)0xe5d72240, (q31_t)0x7a63b31d, (q31_t)0xe5cbaac5, (q31_t)0x7a5e8cd0, (q31_t)0xe5c0344d, (q31_t)0x7a596442, (q31_t)0xe5b4bed8, (q31_t)0x7a543974, (q31_t)0xe5a94a67, (q31_t)0x7a4f0c67, (q31_t)0xe59dd6f9, (q31_t)0x7a49dd1a, (q31_t)0xe5926490, (q31_t)0x7a44ab8e, (q31_t)0xe586f32c, (q31_t)0x7a3f77c3, (q31_t)0xe57b82cd, (q31_t)0x7a3a41b9, (q31_t)0xe5701374, (q31_t)0x7a350970, (q31_t)0xe564a521, (q31_t)0x7a2fcee8, (q31_t)0xe55937d5, (q31_t)0x7a2a9223, (q31_t)0xe54dcb8f, (q31_t)0x7a25531f, (q31_t)0xe5426051, (q31_t)0x7a2011de, (q31_t)0xe536f61b, (q31_t)0x7a1ace5f, (q31_t)0xe52b8cee, (q31_t)0x7a1588a2, (q31_t)0xe52024c9, (q31_t)0x7a1040a8, (q31_t)0xe514bdad, (q31_t)0x7a0af671, (q31_t)0xe509579b, (q31_t)0x7a05a9fd, (q31_t)0xe4fdf294, (q31_t)0x7a005b4d, (q31_t)0xe4f28e96, (q31_t)0x79fb0a60, (q31_t)0xe4e72ba4, (q31_t)0x79f5b737, (q31_t)0xe4dbc9bd, (q31_t)0x79f061d2, (q31_t)0xe4d068e2, (q31_t)0x79eb0a31, (q31_t)0xe4c50914, (q31_t)0x79e5b054, (q31_t)0xe4b9aa52, (q31_t)0x79e0543c, (q31_t)0xe4ae4c9d, (q31_t)0x79daf5e8, (q31_t)0xe4a2eff6, (q31_t)0x79d5955a, (q31_t)0xe497945d, (q31_t)0x79d03291, (q31_t)0xe48c39d3, (q31_t)0x79cacd8d, (q31_t)0xe480e057, (q31_t)0x79c5664f, (q31_t)0xe47587eb, (q31_t)0x79bffcd7, (q31_t)0xe46a308f, (q31_t)0x79ba9125, (q31_t)0xe45eda43, (q31_t)0x79b52339, (q31_t)0xe4538507, (q31_t)0x79afb313, (q31_t)0xe44830dd, (q31_t)0x79aa40b4, (q31_t)0xe43cddc4, (q31_t)0x79a4cc1c, (q31_t)0xe4318bbe, (q31_t)0x799f554b, (q31_t)0xe4263ac9, (q31_t)0x7999dc42, (q31_t)0xe41aeae8, (q31_t)0x799460ff, (q31_t)0xe40f9c1a, (q31_t)0x798ee385, (q31_t)0xe4044e60, (q31_t)0x798963d2, (q31_t)0xe3f901ba, (q31_t)0x7983e1e8, (q31_t)0xe3edb628, (q31_t)0x797e5dc6, (q31_t)0xe3e26bac, (q31_t)0x7978d76c, (q31_t)0xe3d72245, (q31_t)0x79734edc, (q31_t)0xe3cbd9f4, (q31_t)0x796dc414, (q31_t)0xe3c092b9, (q31_t)0x79683715, (q31_t)0xe3b54c95, (q31_t)0x7962a7e0, (q31_t)0xe3aa0788, (q31_t)0x795d1675, (q31_t)0xe39ec393, (q31_t)0x795782d3, (q31_t)0xe39380b6, (q31_t)0x7951ecfc, (q31_t)0xe3883ef2, (q31_t)0x794c54ee, (q31_t)0xe37cfe47, (q31_t)0x7946baac, (q31_t)0xe371beb5, (q31_t)0x79411e33, (q31_t)0xe366803c, (q31_t)0x793b7f86, (q31_t)0xe35b42df, (q31_t)0x7935dea4, (q31_t)0xe350069b, (q31_t)0x79303b8e, (q31_t)0xe344cb73, (q31_t)0x792a9642, (q31_t)0xe3399167, (q31_t)0x7924eec3, (q31_t)0xe32e5876, (q31_t)0x791f4510, (q31_t)0xe32320a2, (q31_t)0x79199929, (q31_t)0xe317e9eb, (q31_t)0x7913eb0e, (q31_t)0xe30cb451, (q31_t)0x790e3ac0, (q31_t)0xe3017fd5, (q31_t)0x7908883f, (q31_t)0xe2f64c77, (q31_t)0x7902d38b, (q31_t)0xe2eb1a37, (q31_t)0x78fd1ca4, (q31_t)0xe2dfe917, (q31_t)0x78f7638b, (q31_t)0xe2d4b916, (q31_t)0x78f1a840, (q31_t)0xe2c98a35, (q31_t)0x78ebeac2, (q31_t)0xe2be5c74, (q31_t)0x78e62b13, (q31_t)0xe2b32fd4, (q31_t)0x78e06932, (q31_t)0xe2a80456, (q31_t)0x78daa520, (q31_t)0xe29cd9f8, (q31_t)0x78d4dedd, (q31_t)0xe291b0bd, (q31_t)0x78cf1669, (q31_t)0xe28688a4, (q31_t)0x78c94bc4, (q31_t)0xe27b61af, (q31_t)0x78c37eef, (q31_t)0xe2703bdc, (q31_t)0x78bdafea, (q31_t)0xe265172e, (q31_t)0x78b7deb4, (q31_t)0xe259f3a3, (q31_t)0x78b20b4f, (q31_t)0xe24ed13d, (q31_t)0x78ac35ba, (q31_t)0xe243affc, (q31_t)0x78a65df6, (q31_t)0xe2388fe1, (q31_t)0x78a08402, (q31_t)0xe22d70eb, (q31_t)0x789aa7e0, (q31_t)0xe222531c, (q31_t)0x7894c98f, (q31_t)0xe2173674, (q31_t)0x788ee910, (q31_t)0xe20c1af3, (q31_t)0x78890663, (q31_t)0xe2010099, (q31_t)0x78832187, (q31_t)0xe1f5e768, (q31_t)0x787d3a7e, (q31_t)0xe1eacf5f, (q31_t)0x78775147, (q31_t)0xe1dfb87f, (q31_t)0x787165e3, (q31_t)0xe1d4a2c8, (q31_t)0x786b7852, (q31_t)0xe1c98e3b, (q31_t)0x78658894, (q31_t)0xe1be7ad8, (q31_t)0x785f96a9, (q31_t)0xe1b368a0, (q31_t)0x7859a292, (q31_t)0xe1a85793, (q31_t)0x7853ac4f, (q31_t)0xe19d47b1, (q31_t)0x784db3e0, (q31_t)0xe19238fb, (q31_t)0x7847b946, (q31_t)0xe1872b72, (q31_t)0x7841bc7f, (q31_t)0xe17c1f15, (q31_t)0x783bbd8e, (q31_t)0xe17113e5, (q31_t)0x7835bc71, (q31_t)0xe16609e3, (q31_t)0x782fb92a, (q31_t)0xe15b0110, (q31_t)0x7829b3b9, (q31_t)0xe14ff96a, (q31_t)0x7823ac1d, (q31_t)0xe144f2f3, (q31_t)0x781da256, (q31_t)0xe139edac, (q31_t)0x78179666, (q31_t)0xe12ee995, (q31_t)0x7811884d, (q31_t)0xe123e6ad, (q31_t)0x780b780a, (q31_t)0xe118e4f6, (q31_t)0x7805659e, (q31_t)0xe10de470, (q31_t)0x77ff5109, (q31_t)0xe102e51c, (q31_t)0x77f93a4b, (q31_t)0xe0f7e6f9, (q31_t)0x77f32165, (q31_t)0xe0ecea09, (q31_t)0x77ed0657, (q31_t)0xe0e1ee4b, (q31_t)0x77e6e921, (q31_t)0xe0d6f3c1, (q31_t)0x77e0c9c3, (q31_t)0xe0cbfa6a, (q31_t)0x77daa83d, (q31_t)0xe0c10247, (q31_t)0x77d48490, (q31_t)0xe0b60b58, (q31_t)0x77ce5ebd, (q31_t)0xe0ab159e, (q31_t)0x77c836c2, (q31_t)0xe0a0211a, (q31_t)0x77c20ca1, (q31_t)0xe0952dcb, (q31_t)0x77bbe05a, (q31_t)0xe08a3bb2, (q31_t)0x77b5b1ec, (q31_t)0xe07f4acf, (q31_t)0x77af8159, (q31_t)0xe0745b24, (q31_t)0x77a94ea0, (q31_t)0xe0696cb0, (q31_t)0x77a319c2, (q31_t)0xe05e7f74, (q31_t)0x779ce2be, (q31_t)0xe053936f, (q31_t)0x7796a996, (q31_t)0xe048a8a4, (q31_t)0x77906e49, (q31_t)0xe03dbf11, (q31_t)0x778a30d8, (q31_t)0xe032d6b8, (q31_t)0x7783f143, (q31_t)0xe027ef99, (q31_t)0x777daf89, (q31_t)0xe01d09b4, (q31_t)0x77776bac, (q31_t)0xe012250a, (q31_t)0x777125ac, (q31_t)0xe007419b, (q31_t)0x776add88, (q31_t)0xdffc5f67, (q31_t)0x77649341, (q31_t)0xdff17e70, (q31_t)0x775e46d8, (q31_t)0xdfe69eb4, (q31_t)0x7757f84c, (q31_t)0xdfdbc036, (q31_t)0x7751a79e, (q31_t)0xdfd0e2f5, (q31_t)0x774b54ce, (q31_t)0xdfc606f1, (q31_t)0x7744ffdd, (q31_t)0xdfbb2c2c, (q31_t)0x773ea8ca, (q31_t)0xdfb052a5, (q31_t)0x77384f95, (q31_t)0xdfa57a5d, (q31_t)0x7731f440, (q31_t)0xdf9aa354, (q31_t)0x772b96ca, (q31_t)0xdf8fcd8b, (q31_t)0x77253733, (q31_t)0xdf84f902, (q31_t)0x771ed57c, (q31_t)0xdf7a25ba, (q31_t)0x771871a5, (q31_t)0xdf6f53b3, (q31_t)0x77120bae, (q31_t)0xdf6482ed, (q31_t)0x770ba398, (q31_t)0xdf59b369, (q31_t)0x77053962, (q31_t)0xdf4ee527, (q31_t)0x76fecd0e, (q31_t)0xdf441828, (q31_t)0x76f85e9a, (q31_t)0xdf394c6b, (q31_t)0x76f1ee09, (q31_t)0xdf2e81f3, (q31_t)0x76eb7b58, (q31_t)0xdf23b8be, (q31_t)0x76e5068a, (q31_t)0xdf18f0ce, (q31_t)0x76de8f9e, (q31_t)0xdf0e2a22, (q31_t)0x76d81695, (q31_t)0xdf0364bc, (q31_t)0x76d19b6e, (q31_t)0xdef8a09b, (q31_t)0x76cb1e2a, (q31_t)0xdeedddc0, (q31_t)0x76c49ec9, (q31_t)0xdee31c2b, (q31_t)0x76be1d4c, (q31_t)0xded85bdd, (q31_t)0x76b799b3, (q31_t)0xdecd9cd7, (q31_t)0x76b113fd, (q31_t)0xdec2df18, (q31_t)0x76aa8c2c, (q31_t)0xdeb822a1, (q31_t)0x76a4023f, (q31_t)0xdead6773, (q31_t)0x769d7637, (q31_t)0xdea2ad8d, (q31_t)0x7696e814, (q31_t)0xde97f4f1, (q31_t)0x769057d6, (q31_t)0xde8d3d9e, (q31_t)0x7689c57d, (q31_t)0xde828796, (q31_t)0x7683310b, (q31_t)0xde77d2d8, (q31_t)0x767c9a7e, (q31_t)0xde6d1f65, (q31_t)0x767601d7, (q31_t)0xde626d3e, (q31_t)0x766f6717, (q31_t)0xde57bc62, (q31_t)0x7668ca3e, (q31_t)0xde4d0cd2, (q31_t)0x76622b4c, (q31_t)0xde425e8f, (q31_t)0x765b8a41, (q31_t)0xde37b199, (q31_t)0x7654e71d, (q31_t)0xde2d05f1, (q31_t)0x764e41e2, (q31_t)0xde225b96, (q31_t)0x76479a8e, (q31_t)0xde17b28a, (q31_t)0x7640f123, (q31_t)0xde0d0acc, (q31_t)0x763a45a0, (q31_t)0xde02645d, (q31_t)0x76339806, (q31_t)0xddf7bf3e, (q31_t)0x762ce855, (q31_t)0xdded1b6e, (q31_t)0x7626368d, (q31_t)0xdde278ef, (q31_t)0x761f82af, (q31_t)0xddd7d7c1, (q31_t)0x7618ccba, (q31_t)0xddcd37e4, (q31_t)0x761214b0, (q31_t)0xddc29958, (q31_t)0x760b5a90, (q31_t)0xddb7fc1e, (q31_t)0x76049e5b, (q31_t)0xddad6036, (q31_t)0x75fde011, (q31_t)0xdda2c5a2, (q31_t)0x75f71fb1, (q31_t)0xdd982c60, (q31_t)0x75f05d3d, (q31_t)0xdd8d9472, (q31_t)0x75e998b5, (q31_t)0xdd82fdd8, (q31_t)0x75e2d219, (q31_t)0xdd786892, (q31_t)0x75dc0968, (q31_t)0xdd6dd4a2, (q31_t)0x75d53ea5, (q31_t)0xdd634206, (q31_t)0x75ce71ce, (q31_t)0xdd58b0c0, (q31_t)0x75c7a2e3, (q31_t)0xdd4e20d0, (q31_t)0x75c0d1e7, (q31_t)0xdd439236, (q31_t)0x75b9fed7, (q31_t)0xdd3904f4, (q31_t)0x75b329b5, (q31_t)0xdd2e7908, (q31_t)0x75ac5282, (q31_t)0xdd23ee74, (q31_t)0x75a5793c, (q31_t)0xdd196538, (q31_t)0x759e9de5, (q31_t)0xdd0edd55, (q31_t)0x7597c07d, (q31_t)0xdd0456ca, (q31_t)0x7590e104, (q31_t)0xdcf9d199, (q31_t)0x7589ff7a, (q31_t)0xdcef4dc2, (q31_t)0x75831be0, (q31_t)0xdce4cb44, (q31_t)0x757c3636, (q31_t)0xdcda4a21, (q31_t)0x75754e7c, (q31_t)0xdccfca59, (q31_t)0x756e64b2, (q31_t)0xdcc54bec, (q31_t)0x756778d9, (q31_t)0xdcbacedb, (q31_t)0x75608af1, (q31_t)0xdcb05326, (q31_t)0x75599afa, (q31_t)0xdca5d8cd, (q31_t)0x7552a8f4, (q31_t)0xdc9b5fd2, (q31_t)0x754bb4e1, (q31_t)0xdc90e834, (q31_t)0x7544bebf, (q31_t)0xdc8671f3, (q31_t)0x753dc68f, (q31_t)0xdc7bfd11, (q31_t)0x7536cc52, (q31_t)0xdc71898d, (q31_t)0x752fd008, (q31_t)0xdc671768, (q31_t)0x7528d1b1, (q31_t)0xdc5ca6a2, (q31_t)0x7521d14d, (q31_t)0xdc52373c, (q31_t)0x751acedd, (q31_t)0xdc47c936, (q31_t)0x7513ca60, (q31_t)0xdc3d5c91, (q31_t)0x750cc3d8, (q31_t)0xdc32f14d, (q31_t)0x7505bb44, (q31_t)0xdc28876a, (q31_t)0x74feb0a5, (q31_t)0xdc1e1ee9, (q31_t)0x74f7a3fb, (q31_t)0xdc13b7c9, (q31_t)0x74f09546, (q31_t)0xdc09520d, (q31_t)0x74e98487, (q31_t)0xdbfeedb3, (q31_t)0x74e271bd, (q31_t)0xdbf48abd, (q31_t)0x74db5cea, (q31_t)0xdbea292b, (q31_t)0x74d4460c, (q31_t)0xdbdfc8fc, (q31_t)0x74cd2d26, (q31_t)0xdbd56a32, (q31_t)0x74c61236, (q31_t)0xdbcb0cce, (q31_t)0x74bef53d, (q31_t)0xdbc0b0ce, (q31_t)0x74b7d63c, (q31_t)0xdbb65634, (q31_t)0x74b0b533, (q31_t)0xdbabfd01, (q31_t)0x74a99221, (q31_t)0xdba1a534, (q31_t)0x74a26d08, (q31_t)0xdb974ece, (q31_t)0x749b45e7, (q31_t)0xdb8cf9cf, (q31_t)0x74941cbf, (q31_t)0xdb82a638, (q31_t)0x748cf190, (q31_t)0xdb785409, (q31_t)0x7485c45b, (q31_t)0xdb6e0342, (q31_t)0x747e951f, (q31_t)0xdb63b3e5, (q31_t)0x747763dd, (q31_t)0xdb5965f1, (q31_t)0x74703095, (q31_t)0xdb4f1967, (q31_t)0x7468fb47, (q31_t)0xdb44ce46, (q31_t)0x7461c3f5, (q31_t)0xdb3a8491, (q31_t)0x745a8a9d, (q31_t)0xdb303c46, (q31_t)0x74534f41, (q31_t)0xdb25f566, (q31_t)0x744c11e0, (q31_t)0xdb1baff2, (q31_t)0x7444d27b, (q31_t)0xdb116beb, (q31_t)0x743d9112, (q31_t)0xdb072950, (q31_t)0x74364da6, (q31_t)0xdafce821, (q31_t)0x742f0836, (q31_t)0xdaf2a860, (q31_t)0x7427c0c3, (q31_t)0xdae86a0d, (q31_t)0x7420774d, (q31_t)0xdade2d28, (q31_t)0x74192bd5, (q31_t)0xdad3f1b1, (q31_t)0x7411de5b, (q31_t)0xdac9b7a9, (q31_t)0x740a8edf, (q31_t)0xdabf7f11, (q31_t)0x74033d61, (q31_t)0xdab547e8, (q31_t)0x73fbe9e2, (q31_t)0xdaab122f, (q31_t)0x73f49462, (q31_t)0xdaa0dde7, (q31_t)0x73ed3ce1, (q31_t)0xda96ab0f, (q31_t)0x73e5e360, (q31_t)0xda8c79a9, (q31_t)0x73de87de, (q31_t)0xda8249b4, (q31_t)0x73d72a5d, (q31_t)0xda781b31, (q31_t)0x73cfcadc, (q31_t)0xda6dee21, (q31_t)0x73c8695b, (q31_t)0xda63c284, (q31_t)0x73c105db, (q31_t)0xda599859, (q31_t)0x73b9a05d, (q31_t)0xda4f6fa3, (q31_t)0x73b238e0, (q31_t)0xda454860, (q31_t)0x73aacf65, (q31_t)0xda3b2292, (q31_t)0x73a363ec, (q31_t)0xda30fe38, (q31_t)0x739bf675, (q31_t)0xda26db54, (q31_t)0x73948701, (q31_t)0xda1cb9e5, (q31_t)0x738d1590, (q31_t)0xda1299ec, (q31_t)0x7385a222, (q31_t)0xda087b69, (q31_t)0x737e2cb7, (q31_t)0xd9fe5e5e, (q31_t)0x7376b551, (q31_t)0xd9f442c9, (q31_t)0x736f3bee, (q31_t)0xd9ea28ac, (q31_t)0x7367c090, (q31_t)0xd9e01006, (q31_t)0x73604336, (q31_t)0xd9d5f8d9, (q31_t)0x7358c3e2, (q31_t)0xd9cbe325, (q31_t)0x73514292, (q31_t)0xd9c1cee9, (q31_t)0x7349bf48, (q31_t)0xd9b7bc27, (q31_t)0x73423a04, (q31_t)0xd9adaadf, (q31_t)0x733ab2c6, (q31_t)0xd9a39b11, (q31_t)0x7333298f, (q31_t)0xd9998cbe, (q31_t)0x732b9e5e, (q31_t)0xd98f7fe6, (q31_t)0x73241134, (q31_t)0xd9857489, (q31_t)0x731c8211, (q31_t)0xd97b6aa8, (q31_t)0x7314f0f6, (q31_t)0xd9716243, (q31_t)0x730d5de3, (q31_t)0xd9675b5a, (q31_t)0x7305c8d7, (q31_t)0xd95d55ef, (q31_t)0x72fe31d5, (q31_t)0xd9535201, (q31_t)0x72f698db, (q31_t)0xd9494f90, (q31_t)0x72eefdea, (q31_t)0xd93f4e9e, (q31_t)0x72e76102, (q31_t)0xd9354f2a, (q31_t)0x72dfc224, (q31_t)0xd92b5135, (q31_t)0x72d82150, (q31_t)0xd92154bf, (q31_t)0x72d07e85, (q31_t)0xd91759c9, (q31_t)0x72c8d9c6, (q31_t)0xd90d6053, (q31_t)0x72c13311, (q31_t)0xd903685d, (q31_t)0x72b98a67, (q31_t)0xd8f971e8, (q31_t)0x72b1dfc9, (q31_t)0xd8ef7cf4, (q31_t)0x72aa3336, (q31_t)0xd8e58982, (q31_t)0x72a284b0, (q31_t)0xd8db9792, (q31_t)0x729ad435, (q31_t)0xd8d1a724, (q31_t)0x729321c7, (q31_t)0xd8c7b838, (q31_t)0x728b6d66, (q31_t)0xd8bdcad0, (q31_t)0x7283b712, (q31_t)0xd8b3deeb, (q31_t)0x727bfecc, (q31_t)0xd8a9f48a, (q31_t)0x72744493, (q31_t)0xd8a00bae, (q31_t)0x726c8868, (q31_t)0xd8962456, (q31_t)0x7264ca4c, (q31_t)0xd88c3e83, (q31_t)0x725d0a3e, (q31_t)0xd8825a35, (q31_t)0x72554840, (q31_t)0xd878776d, (q31_t)0x724d8450, (q31_t)0xd86e962b, (q31_t)0x7245be70, (q31_t)0xd864b670, (q31_t)0x723df6a0, (q31_t)0xd85ad83c, (q31_t)0x72362ce0, (q31_t)0xd850fb8e, (q31_t)0x722e6130, (q31_t)0xd8472069, (q31_t)0x72269391, (q31_t)0xd83d46cc, (q31_t)0x721ec403, (q31_t)0xd8336eb7, (q31_t)0x7216f287, (q31_t)0xd829982b, (q31_t)0x720f1f1c, (q31_t)0xd81fc328, (q31_t)0x720749c3, (q31_t)0xd815efae, (q31_t)0x71ff727c, (q31_t)0xd80c1dbf, (q31_t)0x71f79948, (q31_t)0xd8024d59, (q31_t)0x71efbe27, (q31_t)0xd7f87e7f, (q31_t)0x71e7e118, (q31_t)0xd7eeb130, (q31_t)0x71e0021e, (q31_t)0xd7e4e56c, (q31_t)0x71d82137, (q31_t)0xd7db1b34, (q31_t)0x71d03e64, (q31_t)0xd7d15288, (q31_t)0x71c859a5, (q31_t)0xd7c78b68, (q31_t)0x71c072fb, (q31_t)0xd7bdc5d6, (q31_t)0x71b88a66, (q31_t)0xd7b401d1, (q31_t)0x71b09fe7, (q31_t)0xd7aa3f5a, (q31_t)0x71a8b37c, (q31_t)0xd7a07e70, (q31_t)0x71a0c528, (q31_t)0xd796bf16, (q31_t)0x7198d4ea, (q31_t)0xd78d014a, (q31_t)0x7190e2c3, (q31_t)0xd783450d, (q31_t)0x7188eeb2, (q31_t)0xd7798a60, (q31_t)0x7180f8b8, (q31_t)0xd76fd143, (q31_t)0x717900d6, (q31_t)0xd76619b6, (q31_t)0x7171070c, (q31_t)0xd75c63ba, (q31_t)0x71690b59, (q31_t)0xd752af4f, (q31_t)0x71610dbf, (q31_t)0xd748fc75, (q31_t)0x71590e3e, (q31_t)0xd73f4b2e, (q31_t)0x71510cd5, (q31_t)0xd7359b78, (q31_t)0x71490986, (q31_t)0xd72bed55, (q31_t)0x71410450, (q31_t)0xd72240c5, (q31_t)0x7138fd35, (q31_t)0xd71895c9, (q31_t)0x7130f433, (q31_t)0xd70eec60, (q31_t)0x7128e94c, (q31_t)0xd705448b, (q31_t)0x7120dc80, (q31_t)0xd6fb9e4b, (q31_t)0x7118cdcf, (q31_t)0xd6f1f99f, (q31_t)0x7110bd39, (q31_t)0xd6e85689, (q31_t)0x7108aabf, (q31_t)0xd6deb508, (q31_t)0x71009661, (q31_t)0xd6d5151d, (q31_t)0x70f8801f, (q31_t)0xd6cb76c9, (q31_t)0x70f067fb, (q31_t)0xd6c1da0b, (q31_t)0x70e84df3, (q31_t)0xd6b83ee4, (q31_t)0x70e03208, (q31_t)0xd6aea555, (q31_t)0x70d8143b, (q31_t)0xd6a50d5d, (q31_t)0x70cff48c, (q31_t)0xd69b76fe, (q31_t)0x70c7d2fb, (q31_t)0xd691e237, (q31_t)0x70bfaf89, (q31_t)0xd6884f09, (q31_t)0x70b78a36, (q31_t)0xd67ebd74, (q31_t)0x70af6302, (q31_t)0xd6752d79, (q31_t)0x70a739ed, (q31_t)0xd66b9f18, (q31_t)0x709f0ef8, (q31_t)0xd6621251, (q31_t)0x7096e223, (q31_t)0xd6588725, (q31_t)0x708eb36f, (q31_t)0xd64efd94, (q31_t)0x708682dc, (q31_t)0xd645759f, (q31_t)0x707e5069, (q31_t)0xd63bef46, (q31_t)0x70761c18, (q31_t)0xd6326a88, (q31_t)0x706de5e9, (q31_t)0xd628e767, (q31_t)0x7065addb, (q31_t)0xd61f65e4, (q31_t)0x705d73f0, (q31_t)0xd615e5fd, (q31_t)0x70553828, (q31_t)0xd60c67b4, (q31_t)0x704cfa83, (q31_t)0xd602eb0a, (q31_t)0x7044bb00, (q31_t)0xd5f96ffd, (q31_t)0x703c79a2, (q31_t)0xd5eff690, (q31_t)0x70343667, (q31_t)0xd5e67ec1, (q31_t)0x702bf151, (q31_t)0xd5dd0892, (q31_t)0x7023aa5f, (q31_t)0xd5d39403, (q31_t)0x701b6193, (q31_t)0xd5ca2115, (q31_t)0x701316eb, (q31_t)0xd5c0afc6, (q31_t)0x700aca69, (q31_t)0xd5b74019, (q31_t)0x70027c0c, (q31_t)0xd5add20d, (q31_t)0x6ffa2bd6, (q31_t)0xd5a465a3, (q31_t)0x6ff1d9c7, (q31_t)0xd59afadb, (q31_t)0x6fe985de, (q31_t)0xd59191b5, (q31_t)0x6fe1301c, (q31_t)0xd5882a32, (q31_t)0x6fd8d882, (q31_t)0xd57ec452, (q31_t)0x6fd07f0f, (q31_t)0xd5756016, (q31_t)0x6fc823c5, (q31_t)0xd56bfd7d, (q31_t)0x6fbfc6a3, (q31_t)0xd5629c89, (q31_t)0x6fb767aa, (q31_t)0xd5593d3a, (q31_t)0x6faf06da, (q31_t)0xd54fdf8f, (q31_t)0x6fa6a433, (q31_t)0xd5468389, (q31_t)0x6f9e3fb6, (q31_t)0xd53d292a, (q31_t)0x6f95d963, (q31_t)0xd533d070, (q31_t)0x6f8d713a, (q31_t)0xd52a795d, (q31_t)0x6f85073c, (q31_t)0xd52123f0, (q31_t)0x6f7c9b69, (q31_t)0xd517d02b, (q31_t)0x6f742dc1, (q31_t)0xd50e7e0d, (q31_t)0x6f6bbe45, (q31_t)0xd5052d97, (q31_t)0x6f634cf5, (q31_t)0xd4fbdec9, (q31_t)0x6f5ad9d1, (q31_t)0xd4f291a4, (q31_t)0x6f5264da, (q31_t)0xd4e94627, (q31_t)0x6f49ee0f, (q31_t)0xd4dffc54, (q31_t)0x6f417573, (q31_t)0xd4d6b42b, (q31_t)0x6f38fb03, (q31_t)0xd4cd6dab, (q31_t)0x6f307ec2, (q31_t)0xd4c428d6, (q31_t)0x6f2800af, (q31_t)0xd4bae5ab, (q31_t)0x6f1f80ca, (q31_t)0xd4b1a42c, (q31_t)0x6f16ff14, (q31_t)0xd4a86458, (q31_t)0x6f0e7b8e, (q31_t)0xd49f2630, (q31_t)0x6f05f637, (q31_t)0xd495e9b3, (q31_t)0x6efd6f10, (q31_t)0xd48caee4, (q31_t)0x6ef4e619, (q31_t)0xd48375c1, (q31_t)0x6eec5b53, (q31_t)0xd47a3e4b, (q31_t)0x6ee3cebe, (q31_t)0xd4710883, (q31_t)0x6edb405a, (q31_t)0xd467d469, (q31_t)0x6ed2b027, (q31_t)0xd45ea1fd, (q31_t)0x6eca1e27, (q31_t)0xd4557140, (q31_t)0x6ec18a58, (q31_t)0xd44c4232, (q31_t)0x6eb8f4bc, (q31_t)0xd44314d3, (q31_t)0x6eb05d53, (q31_t)0xd439e923, (q31_t)0x6ea7c41e, (q31_t)0xd430bf24, (q31_t)0x6e9f291b, (q31_t)0xd42796d5, (q31_t)0x6e968c4d, (q31_t)0xd41e7037, (q31_t)0x6e8dedb3, (q31_t)0xd4154b4a, (q31_t)0x6e854d4d, (q31_t)0xd40c280e, (q31_t)0x6e7cab1c, (q31_t)0xd4030684, (q31_t)0x6e740720, (q31_t)0xd3f9e6ad, (q31_t)0x6e6b615a, (q31_t)0xd3f0c887, (q31_t)0x6e62b9ca, (q31_t)0xd3e7ac15, (q31_t)0x6e5a1070, (q31_t)0xd3de9156, (q31_t)0x6e51654c, (q31_t)0xd3d5784a, (q31_t)0x6e48b860, (q31_t)0xd3cc60f2, (q31_t)0x6e4009aa, (q31_t)0xd3c34b4f, (q31_t)0x6e37592c, (q31_t)0xd3ba3760, (q31_t)0x6e2ea6e6, (q31_t)0xd3b12526, (q31_t)0x6e25f2d8, (q31_t)0xd3a814a2, (q31_t)0x6e1d3d03, (q31_t)0xd39f05d3, (q31_t)0x6e148566, (q31_t)0xd395f8ba, (q31_t)0x6e0bcc03, (q31_t)0xd38ced57, (q31_t)0x6e0310d9, (q31_t)0xd383e3ab, (q31_t)0x6dfa53e9, (q31_t)0xd37adbb6, (q31_t)0x6df19534, (q31_t)0xd371d579, (q31_t)0x6de8d4b8, (q31_t)0xd368d0f3, (q31_t)0x6de01278, (q31_t)0xd35fce26, (q31_t)0x6dd74e73, (q31_t)0xd356cd11, (q31_t)0x6dce88aa, (q31_t)0xd34dcdb4, (q31_t)0x6dc5c11c, (q31_t)0xd344d011, (q31_t)0x6dbcf7cb, (q31_t)0xd33bd427, (q31_t)0x6db42cb6, (q31_t)0xd332d9f7, (q31_t)0x6dab5fdf, (q31_t)0xd329e181, (q31_t)0x6da29144, (q31_t)0xd320eac6, (q31_t)0x6d99c0e7, (q31_t)0xd317f5c6, (q31_t)0x6d90eec8, (q31_t)0xd30f0280, (q31_t)0x6d881ae8, (q31_t)0xd30610f7, (q31_t)0x6d7f4545, (q31_t)0xd2fd2129, (q31_t)0x6d766de2, (q31_t)0xd2f43318, (q31_t)0x6d6d94bf, (q31_t)0xd2eb46c3, (q31_t)0x6d64b9da, (q31_t)0xd2e25c2b, (q31_t)0x6d5bdd36, (q31_t)0xd2d97350, (q31_t)0x6d52fed2, (q31_t)0xd2d08c33, (q31_t)0x6d4a1eaf, (q31_t)0xd2c7a6d4, (q31_t)0x6d413ccd, (q31_t)0xd2bec333, (q31_t)0x6d38592c, (q31_t)0xd2b5e151, (q31_t)0x6d2f73cd, (q31_t)0xd2ad012e, (q31_t)0x6d268cb0, (q31_t)0xd2a422ca, (q31_t)0x6d1da3d5, (q31_t)0xd29b4626, (q31_t)0x6d14b93d, (q31_t)0xd2926b41, (q31_t)0x6d0bcce8, (q31_t)0xd289921e, (q31_t)0x6d02ded7, (q31_t)0xd280babb, (q31_t)0x6cf9ef09, (q31_t)0xd277e518, (q31_t)0x6cf0fd80, (q31_t)0xd26f1138, (q31_t)0x6ce80a3a, (q31_t)0xd2663f19, (q31_t)0x6cdf153a, (q31_t)0xd25d6ebc, (q31_t)0x6cd61e7f, (q31_t)0xd254a021, (q31_t)0x6ccd2609, (q31_t)0xd24bd34a, (q31_t)0x6cc42bd9, (q31_t)0xd2430835, (q31_t)0x6cbb2fef, (q31_t)0xd23a3ee4, (q31_t)0x6cb2324c, (q31_t)0xd2317756, (q31_t)0x6ca932ef, (q31_t)0xd228b18d, (q31_t)0x6ca031da, (q31_t)0xd21fed88, (q31_t)0x6c972f0d, (q31_t)0xd2172b48, (q31_t)0x6c8e2a87, (q31_t)0xd20e6acc, (q31_t)0x6c85244a, (q31_t)0xd205ac17, (q31_t)0x6c7c1c55, (q31_t)0xd1fcef27, (q31_t)0x6c7312a9, (q31_t)0xd1f433fd, (q31_t)0x6c6a0746, (q31_t)0xd1eb7a9a, (q31_t)0x6c60fa2d, (q31_t)0xd1e2c2fd, (q31_t)0x6c57eb5e, (q31_t)0xd1da0d28, (q31_t)0x6c4edada, (q31_t)0xd1d1591a, (q31_t)0x6c45c8a0, (q31_t)0xd1c8a6d4, (q31_t)0x6c3cb4b1, (q31_t)0xd1bff656, (q31_t)0x6c339f0e, (q31_t)0xd1b747a0, (q31_t)0x6c2a87b6, (q31_t)0xd1ae9ab4, (q31_t)0x6c216eaa, (q31_t)0xd1a5ef90, (q31_t)0x6c1853eb, (q31_t)0xd19d4636, (q31_t)0x6c0f3779, (q31_t)0xd1949ea6, (q31_t)0x6c061953, (q31_t)0xd18bf8e0, (q31_t)0x6bfcf97c, (q31_t)0xd18354e4, (q31_t)0x6bf3d7f2, (q31_t)0xd17ab2b3, (q31_t)0x6beab4b6, (q31_t)0xd172124d, (q31_t)0x6be18fc9, (q31_t)0xd16973b3, (q31_t)0x6bd8692b, (q31_t)0xd160d6e5, (q31_t)0x6bcf40dc, (q31_t)0xd1583be2, (q31_t)0x6bc616dd, (q31_t)0xd14fa2ad, (q31_t)0x6bbceb2d, (q31_t)0xd1470b44, (q31_t)0x6bb3bdce, (q31_t)0xd13e75a8, (q31_t)0x6baa8ec0, (q31_t)0xd135e1d9, (q31_t)0x6ba15e03, (q31_t)0xd12d4fd9, (q31_t)0x6b982b97, (q31_t)0xd124bfa6, (q31_t)0x6b8ef77d, (q31_t)0xd11c3142, (q31_t)0x6b85c1b5, (q31_t)0xd113a4ad, (q31_t)0x6b7c8a3f, (q31_t)0xd10b19e7, (q31_t)0x6b73511c, (q31_t)0xd10290f0, (q31_t)0x6b6a164d, (q31_t)0xd0fa09c9, (q31_t)0x6b60d9d0, (q31_t)0xd0f18472, (q31_t)0x6b579ba8, (q31_t)0xd0e900ec, (q31_t)0x6b4e5bd4, (q31_t)0xd0e07f36, (q31_t)0x6b451a55, (q31_t)0xd0d7ff51, (q31_t)0x6b3bd72a, (q31_t)0xd0cf813e, (q31_t)0x6b329255, (q31_t)0xd0c704fd, (q31_t)0x6b294bd5, (q31_t)0xd0be8a8d, (q31_t)0x6b2003ac, (q31_t)0xd0b611f1, (q31_t)0x6b16b9d9, (q31_t)0xd0ad9b26, (q31_t)0x6b0d6e5c, (q31_t)0xd0a5262f, (q31_t)0x6b042137, (q31_t)0xd09cb30b, (q31_t)0x6afad269, (q31_t)0xd09441bb, (q31_t)0x6af181f3, (q31_t)0xd08bd23f, (q31_t)0x6ae82fd5, (q31_t)0xd0836497, (q31_t)0x6adedc10, (q31_t)0xd07af8c4, (q31_t)0x6ad586a3, (q31_t)0xd0728ec6, (q31_t)0x6acc2f90, (q31_t)0xd06a269d, (q31_t)0x6ac2d6d6, (q31_t)0xd061c04a, (q31_t)0x6ab97c77, (q31_t)0xd0595bcd, (q31_t)0x6ab02071, (q31_t)0xd050f926, (q31_t)0x6aa6c2c6, (q31_t)0xd0489856, (q31_t)0x6a9d6377, (q31_t)0xd040395d, (q31_t)0x6a940283, (q31_t)0xd037dc3b, (q31_t)0x6a8a9fea, (q31_t)0xd02f80f1, (q31_t)0x6a813bae, (q31_t)0xd027277e, (q31_t)0x6a77d5ce, (q31_t)0xd01ecfe4, (q31_t)0x6a6e6e4b, (q31_t)0xd0167a22, (q31_t)0x6a650525, (q31_t)0xd00e2639, (q31_t)0x6a5b9a5d, (q31_t)0xd005d42a, (q31_t)0x6a522df3, (q31_t)0xcffd83f4, (q31_t)0x6a48bfe7, (q31_t)0xcff53597, (q31_t)0x6a3f503a, (q31_t)0xcfece915, (q31_t)0x6a35deeb, (q31_t)0xcfe49e6d, (q31_t)0x6a2c6bfd, (q31_t)0xcfdc55a1, (q31_t)0x6a22f76e, (q31_t)0xcfd40eaf, (q31_t)0x6a19813f, (q31_t)0xcfcbc999, (q31_t)0x6a100970, (q31_t)0xcfc3865e, (q31_t)0x6a069003, (q31_t)0xcfbb4500, (q31_t)0x69fd14f6, (q31_t)0xcfb3057d, (q31_t)0x69f3984c, (q31_t)0xcfaac7d8, (q31_t)0x69ea1a03, (q31_t)0xcfa28c10, (q31_t)0x69e09a1c, (q31_t)0xcf9a5225, (q31_t)0x69d71899, (q31_t)0xcf921a17, (q31_t)0x69cd9578, (q31_t)0xcf89e3e8, (q31_t)0x69c410ba, (q31_t)0xcf81af97, (q31_t)0x69ba8a61, (q31_t)0xcf797d24, (q31_t)0x69b1026c, (q31_t)0xcf714c91, (q31_t)0x69a778db, (q31_t)0xcf691ddd, (q31_t)0x699dedaf, (q31_t)0xcf60f108, (q31_t)0x699460e8, (q31_t)0xcf58c613, (q31_t)0x698ad287, (q31_t)0xcf509cfe, (q31_t)0x6981428c, (q31_t)0xcf4875ca, (q31_t)0x6977b0f7, (q31_t)0xcf405077, (q31_t)0x696e1dc9, (q31_t)0xcf382d05, (q31_t)0x69648902, (q31_t)0xcf300b74, (q31_t)0x695af2a3, (q31_t)0xcf27ebc5, (q31_t)0x69515aab, (q31_t)0xcf1fcdf8, (q31_t)0x6947c11c, (q31_t)0xcf17b20d, (q31_t)0x693e25f5, (q31_t)0xcf0f9805, (q31_t)0x69348937, (q31_t)0xcf077fe1, (q31_t)0x692aeae3, (q31_t)0xceff699f, (q31_t)0x69214af8, (q31_t)0xcef75541, (q31_t)0x6917a977, (q31_t)0xceef42c7, (q31_t)0x690e0661, (q31_t)0xcee73231, (q31_t)0x690461b5, (q31_t)0xcedf2380, (q31_t)0x68fabb75, (q31_t)0xced716b4, (q31_t)0x68f113a0, (q31_t)0xcecf0bcd, (q31_t)0x68e76a37, (q31_t)0xcec702cb, (q31_t)0x68ddbf3b, (q31_t)0xcebefbb0, (q31_t)0x68d412ab, (q31_t)0xceb6f67a, (q31_t)0x68ca6488, (q31_t)0xceaef32b, (q31_t)0x68c0b4d2, (q31_t)0xcea6f1c2, (q31_t)0x68b7038b, (q31_t)0xce9ef241, (q31_t)0x68ad50b1, (q31_t)0xce96f4a7, (q31_t)0x68a39c46, (q31_t)0xce8ef8f4, (q31_t)0x6899e64a, (q31_t)0xce86ff2a, (q31_t)0x68902ebd, (q31_t)0xce7f0748, (q31_t)0x688675a0, (q31_t)0xce77114e, (q31_t)0x687cbaf3, (q31_t)0xce6f1d3d, (q31_t)0x6872feb6, (q31_t)0xce672b16, (q31_t)0x686940ea, (q31_t)0xce5f3ad8, (q31_t)0x685f8190, (q31_t)0xce574c84, (q31_t)0x6855c0a6, (q31_t)0xce4f6019, (q31_t)0x684bfe2f, (q31_t)0xce47759a, (q31_t)0x68423a2a, (q31_t)0xce3f8d05, (q31_t)0x68387498, (q31_t)0xce37a65b, (q31_t)0x682ead78, (q31_t)0xce2fc19c, (q31_t)0x6824e4cc, (q31_t)0xce27dec9, (q31_t)0x681b1a94, (q31_t)0xce1ffde2, (q31_t)0x68114ed0, (q31_t)0xce181ee8, (q31_t)0x68078181, (q31_t)0xce1041d9, (q31_t)0x67fdb2a7, (q31_t)0xce0866b8, (q31_t)0x67f3e241, (q31_t)0xce008d84, (q31_t)0x67ea1052, (q31_t)0xcdf8b63d, (q31_t)0x67e03cd8, (q31_t)0xcdf0e0e4, (q31_t)0x67d667d5, (q31_t)0xcde90d79, (q31_t)0x67cc9149, (q31_t)0xcde13bfd, (q31_t)0x67c2b934, (q31_t)0xcdd96c6f, (q31_t)0x67b8df97, (q31_t)0xcdd19ed0, (q31_t)0x67af0472, (q31_t)0xcdc9d320, (q31_t)0x67a527c4, (q31_t)0xcdc20960, (q31_t)0x679b4990, (q31_t)0xcdba4190, (q31_t)0x679169d5, (q31_t)0xcdb27bb0, (q31_t)0x67878893, (q31_t)0xcdaab7c0, (q31_t)0x677da5cb, (q31_t)0xcda2f5c2, (q31_t)0x6773c17d, (q31_t)0xcd9b35b4, (q31_t)0x6769dbaa, (q31_t)0xcd937798, (q31_t)0x675ff452, (q31_t)0xcd8bbb6d, (q31_t)0x67560b76, (q31_t)0xcd840134, (q31_t)0x674c2115, (q31_t)0xcd7c48ee, (q31_t)0x67423530, (q31_t)0xcd74929a, (q31_t)0x673847c8, (q31_t)0xcd6cde39, (q31_t)0x672e58dc, (q31_t)0xcd652bcb, (q31_t)0x6724686e, (q31_t)0xcd5d7b50, (q31_t)0x671a767e, (q31_t)0xcd55ccca, (q31_t)0x6710830c, (q31_t)0xcd4e2037, (q31_t)0x67068e18, (q31_t)0xcd467599, (q31_t)0x66fc97a3, (q31_t)0xcd3eccef, (q31_t)0x66f29fad, (q31_t)0xcd37263a, (q31_t)0x66e8a637, (q31_t)0xcd2f817b, (q31_t)0x66deab41, (q31_t)0xcd27deb0, (q31_t)0x66d4aecb, (q31_t)0xcd203ddc, (q31_t)0x66cab0d6, (q31_t)0xcd189efe, (q31_t)0x66c0b162, (q31_t)0xcd110216, (q31_t)0x66b6b070, (q31_t)0xcd096725, (q31_t)0x66acadff, (q31_t)0xcd01ce2b, (q31_t)0x66a2aa11, (q31_t)0xccfa3729, (q31_t)0x6698a4a6, (q31_t)0xccf2a21d, (q31_t)0x668e9dbd, (q31_t)0xcceb0f0a, (q31_t)0x66849558, (q31_t)0xcce37def, (q31_t)0x667a8b77, (q31_t)0xccdbeecc, (q31_t)0x6670801a, (q31_t)0xccd461a2, (q31_t)0x66667342, (q31_t)0xccccd671, (q31_t)0x665c64ef, (q31_t)0xccc54d3a, (q31_t)0x66525521, (q31_t)0xccbdc5fc, (q31_t)0x664843d9, (q31_t)0xccb640b8, (q31_t)0x663e3117, (q31_t)0xccaebd6e, (q31_t)0x66341cdb, (q31_t)0xcca73c1e, (q31_t)0x662a0727, (q31_t)0xcc9fbcca, (q31_t)0x661feffa, (q31_t)0xcc983f70, (q31_t)0x6615d754, (q31_t)0xcc90c412, (q31_t)0x660bbd37, (q31_t)0xcc894aaf, (q31_t)0x6601a1a2, (q31_t)0xcc81d349, (q31_t)0x65f78497, (q31_t)0xcc7a5dde, (q31_t)0x65ed6614, (q31_t)0xcc72ea70, (q31_t)0x65e3461b, (q31_t)0xcc6b78ff, (q31_t)0x65d924ac, (q31_t)0xcc64098b, (q31_t)0x65cf01c8, (q31_t)0xcc5c9c14, (q31_t)0x65c4dd6e, (q31_t)0xcc55309b, (q31_t)0x65bab7a0, (q31_t)0xcc4dc720, (q31_t)0x65b0905d, (q31_t)0xcc465fa3, (q31_t)0x65a667a7, (q31_t)0xcc3efa25, (q31_t)0x659c3d7c, (q31_t)0xcc3796a5, (q31_t)0x659211df, (q31_t)0xcc303524, (q31_t)0x6587e4cf, (q31_t)0xcc28d5a3, (q31_t)0x657db64c, (q31_t)0xcc217822, (q31_t)0x65738657, (q31_t)0xcc1a1ca0, (q31_t)0x656954f1, (q31_t)0xcc12c31f, (q31_t)0x655f2219, (q31_t)0xcc0b6b9e, (q31_t)0x6554edd1, (q31_t)0xcc04161e, (q31_t)0x654ab818, (q31_t)0xcbfcc29f, (q31_t)0x654080ef, (q31_t)0xcbf57121, (q31_t)0x65364857, (q31_t)0xcbee21a5, (q31_t)0x652c0e4f, (q31_t)0xcbe6d42b, (q31_t)0x6521d2d8, (q31_t)0xcbdf88b3, (q31_t)0x651795f3, (q31_t)0xcbd83f3d, (q31_t)0x650d57a0, (q31_t)0xcbd0f7ca, (q31_t)0x650317df, (q31_t)0xcbc9b25a, (q31_t)0x64f8d6b0, (q31_t)0xcbc26eee, (q31_t)0x64ee9415, (q31_t)0xcbbb2d85, (q31_t)0x64e4500e, (q31_t)0xcbb3ee20, (q31_t)0x64da0a9a, (q31_t)0xcbacb0bf, (q31_t)0x64cfc3ba, (q31_t)0xcba57563, (q31_t)0x64c57b6f, (q31_t)0xcb9e3c0b, (q31_t)0x64bb31ba, (q31_t)0xcb9704b9, (q31_t)0x64b0e699, (q31_t)0xcb8fcf6b, (q31_t)0x64a69a0f, (q31_t)0xcb889c23, (q31_t)0x649c4c1b, (q31_t)0xcb816ae1, (q31_t)0x6491fcbe, (q31_t)0xcb7a3ba5, (q31_t)0x6487abf7, (q31_t)0xcb730e70, (q31_t)0x647d59c8, (q31_t)0xcb6be341, (q31_t)0x64730631, (q31_t)0xcb64ba19, (q31_t)0x6468b132, (q31_t)0xcb5d92f8, (q31_t)0x645e5acc, (q31_t)0xcb566ddf, (q31_t)0x645402ff, (q31_t)0xcb4f4acd, (q31_t)0x6449a9cc, (q31_t)0xcb4829c4, (q31_t)0x643f4f32, (q31_t)0xcb410ac3, (q31_t)0x6434f332, (q31_t)0xcb39edca, (q31_t)0x642a95ce, (q31_t)0xcb32d2da, (q31_t)0x64203704, (q31_t)0xcb2bb9f4, (q31_t)0x6415d6d5, (q31_t)0xcb24a316, (q31_t)0x640b7543, (q31_t)0xcb1d8e43, (q31_t)0x6401124d, (q31_t)0xcb167b79, (q31_t)0x63f6adf3, (q31_t)0xcb0f6aba, (q31_t)0x63ec4837, (q31_t)0xcb085c05, (q31_t)0x63e1e117, (q31_t)0xcb014f5b, (q31_t)0x63d77896, (q31_t)0xcafa44bc, (q31_t)0x63cd0eb3, (q31_t)0xcaf33c28, (q31_t)0x63c2a36f, (q31_t)0xcaec35a0, (q31_t)0x63b836ca, (q31_t)0xcae53123, (q31_t)0x63adc8c4, (q31_t)0xcade2eb3, (q31_t)0x63a3595e, (q31_t)0xcad72e4f, (q31_t)0x6398e898, (q31_t)0xcad02ff8, (q31_t)0x638e7673, (q31_t)0xcac933ae, (q31_t)0x638402ef, (q31_t)0xcac23971, (q31_t)0x63798e0d, (q31_t)0xcabb4141, (q31_t)0x636f17cc, (q31_t)0xcab44b1f, (q31_t)0x6364a02e, (q31_t)0xcaad570c, (q31_t)0x635a2733, (q31_t)0xcaa66506, (q31_t)0x634facda, (q31_t)0xca9f750f, (q31_t)0x63453125, (q31_t)0xca988727, (q31_t)0x633ab414, (q31_t)0xca919b4e, (q31_t)0x633035a7, (q31_t)0xca8ab184, (q31_t)0x6325b5df, (q31_t)0xca83c9ca, (q31_t)0x631b34bc, (q31_t)0xca7ce420, (q31_t)0x6310b23e, (q31_t)0xca760086, (q31_t)0x63062e67, (q31_t)0xca6f1efc, (q31_t)0x62fba936, (q31_t)0xca683f83, (q31_t)0x62f122ab, (q31_t)0xca61621b, (q31_t)0x62e69ac8, (q31_t)0xca5a86c4, (q31_t)0x62dc118c, (q31_t)0xca53ad7e, (q31_t)0x62d186f8, (q31_t)0xca4cd64b, (q31_t)0x62c6fb0c, (q31_t)0xca460129, (q31_t)0x62bc6dca, (q31_t)0xca3f2e19, (q31_t)0x62b1df30, (q31_t)0xca385d1d, (q31_t)0x62a74f40, (q31_t)0xca318e32, (q31_t)0x629cbdfa, (q31_t)0xca2ac15b, (q31_t)0x62922b5e, (q31_t)0xca23f698, (q31_t)0x6287976e, (q31_t)0xca1d2de7, (q31_t)0x627d0228, (q31_t)0xca16674b, (q31_t)0x62726b8e, (q31_t)0xca0fa2c3, (q31_t)0x6267d3a0, (q31_t)0xca08e04f, (q31_t)0x625d3a5e, (q31_t)0xca021fef, (q31_t)0x62529fca, (q31_t)0xc9fb61a5, (q31_t)0x624803e2, (q31_t)0xc9f4a570, (q31_t)0x623d66a8, (q31_t)0xc9edeb50, (q31_t)0x6232c81c, (q31_t)0xc9e73346, (q31_t)0x6228283f, (q31_t)0xc9e07d51, (q31_t)0x621d8711, (q31_t)0xc9d9c973, (q31_t)0x6212e492, (q31_t)0xc9d317ab, (q31_t)0x620840c2, (q31_t)0xc9cc67fa, (q31_t)0x61fd9ba3, (q31_t)0xc9c5ba60, (q31_t)0x61f2f534, (q31_t)0xc9bf0edd, (q31_t)0x61e84d76, (q31_t)0xc9b86572, (q31_t)0x61dda46a, (q31_t)0xc9b1be1e, (q31_t)0x61d2fa0f, (q31_t)0xc9ab18e3, (q31_t)0x61c84e67, (q31_t)0xc9a475bf, (q31_t)0x61bda171, (q31_t)0xc99dd4b4, (q31_t)0x61b2f32e, (q31_t)0xc99735c2, (q31_t)0x61a8439e, (q31_t)0xc99098e9, (q31_t)0x619d92c2, (q31_t)0xc989fe29, (q31_t)0x6192e09b, (q31_t)0xc9836582, (q31_t)0x61882d28, (q31_t)0xc97ccef5, (q31_t)0x617d786a, (q31_t)0xc9763a83, (q31_t)0x6172c262, (q31_t)0xc96fa82a, (q31_t)0x61680b0f, (q31_t)0xc96917ec, (q31_t)0x615d5273, (q31_t)0xc96289c9, (q31_t)0x6152988d, (q31_t)0xc95bfdc1, (q31_t)0x6147dd5f, (q31_t)0xc95573d4, (q31_t)0x613d20e8, (q31_t)0xc94eec03, (q31_t)0x61326329, (q31_t)0xc948664d, (q31_t)0x6127a423, (q31_t)0xc941e2b4, (q31_t)0x611ce3d5, (q31_t)0xc93b6137, (q31_t)0x61122240, (q31_t)0xc934e1d6, (q31_t)0x61075f65, (q31_t)0xc92e6492, (q31_t)0x60fc9b44, (q31_t)0xc927e96b, (q31_t)0x60f1d5de, (q31_t)0xc9217062, (q31_t)0x60e70f32, (q31_t)0xc91af976, (q31_t)0x60dc4742, (q31_t)0xc91484a8, (q31_t)0x60d17e0d, (q31_t)0xc90e11f7, (q31_t)0x60c6b395, (q31_t)0xc907a166, (q31_t)0x60bbe7d8, (q31_t)0xc90132f2, (q31_t)0x60b11ad9, (q31_t)0xc8fac69e, (q31_t)0x60a64c97, (q31_t)0xc8f45c68, (q31_t)0x609b7d13, (q31_t)0xc8edf452, (q31_t)0x6090ac4d, (q31_t)0xc8e78e5b, (q31_t)0x6085da46, (q31_t)0xc8e12a84, (q31_t)0x607b06fe, (q31_t)0xc8dac8cd, (q31_t)0x60703275, (q31_t)0xc8d46936, (q31_t)0x60655cac, (q31_t)0xc8ce0bc0, (q31_t)0x605a85a3, (q31_t)0xc8c7b06b, (q31_t)0x604fad5b, (q31_t)0xc8c15736, (q31_t)0x6044d3d4, (q31_t)0xc8bb0023, (q31_t)0x6039f90f, (q31_t)0xc8b4ab32, (q31_t)0x602f1d0b, (q31_t)0xc8ae5862, (q31_t)0x60243fca, (q31_t)0xc8a807b4, (q31_t)0x6019614c, (q31_t)0xc8a1b928, (q31_t)0x600e8190, (q31_t)0xc89b6cbf, (q31_t)0x6003a099, (q31_t)0xc8952278, (q31_t)0x5ff8be65, (q31_t)0xc88eda54, (q31_t)0x5feddaf6, (q31_t)0xc8889454, (q31_t)0x5fe2f64c, (q31_t)0xc8825077, (q31_t)0x5fd81067, (q31_t)0xc87c0ebd, (q31_t)0x5fcd2948, (q31_t)0xc875cf28, (q31_t)0x5fc240ef, (q31_t)0xc86f91b7, (q31_t)0x5fb7575c, (q31_t)0xc869566a, (q31_t)0x5fac6c91, (q31_t)0xc8631d42, (q31_t)0x5fa1808c, (q31_t)0xc85ce63e, (q31_t)0x5f969350, (q31_t)0xc856b160, (q31_t)0x5f8ba4dc, (q31_t)0xc8507ea7, (q31_t)0x5f80b531, (q31_t)0xc84a4e14, (q31_t)0x5f75c44e, (q31_t)0xc8441fa6, (q31_t)0x5f6ad235, (q31_t)0xc83df35f, (q31_t)0x5f5fdee6, (q31_t)0xc837c93e, (q31_t)0x5f54ea62, (q31_t)0xc831a143, (q31_t)0x5f49f4a8, (q31_t)0xc82b7b70, (q31_t)0x5f3efdb9, (q31_t)0xc82557c3, (q31_t)0x5f340596, (q31_t)0xc81f363d, (q31_t)0x5f290c3f, (q31_t)0xc81916df, (q31_t)0x5f1e11b5, (q31_t)0xc812f9a9, (q31_t)0x5f1315f7, (q31_t)0xc80cde9b, (q31_t)0x5f081907, (q31_t)0xc806c5b5, (q31_t)0x5efd1ae4, (q31_t)0xc800aef7, (q31_t)0x5ef21b90, (q31_t)0xc7fa9a62, (q31_t)0x5ee71b0a, (q31_t)0xc7f487f6, (q31_t)0x5edc1953, (q31_t)0xc7ee77b3, (q31_t)0x5ed1166b, (q31_t)0xc7e8699a, (q31_t)0x5ec61254, (q31_t)0xc7e25daa, (q31_t)0x5ebb0d0d, (q31_t)0xc7dc53e3, (q31_t)0x5eb00696, (q31_t)0xc7d64c47, (q31_t)0x5ea4fef0, (q31_t)0xc7d046d6, (q31_t)0x5e99f61d, (q31_t)0xc7ca438f, (q31_t)0x5e8eec1b, (q31_t)0xc7c44272, (q31_t)0x5e83e0eb, (q31_t)0xc7be4381, (q31_t)0x5e78d48e, (q31_t)0xc7b846ba, (q31_t)0x5e6dc705, (q31_t)0xc7b24c20, (q31_t)0x5e62b84f, (q31_t)0xc7ac53b1, (q31_t)0x5e57a86d, (q31_t)0xc7a65d6e, (q31_t)0x5e4c9760, (q31_t)0xc7a06957, (q31_t)0x5e418528, (q31_t)0xc79a776c, (q31_t)0x5e3671c5, (q31_t)0xc79487ae, (q31_t)0x5e2b5d38, (q31_t)0xc78e9a1d, (q31_t)0x5e204781, (q31_t)0xc788aeb9, (q31_t)0x5e1530a1, (q31_t)0xc782c582, (q31_t)0x5e0a1898, (q31_t)0xc77cde79, (q31_t)0x5dfeff67, (q31_t)0xc776f99d, (q31_t)0x5df3e50d, (q31_t)0xc77116f0, (q31_t)0x5de8c98c, (q31_t)0xc76b3671, (q31_t)0x5dddace4, (q31_t)0xc7655820, (q31_t)0x5dd28f15, (q31_t)0xc75f7bfe, (q31_t)0x5dc7701f, (q31_t)0xc759a20a, (q31_t)0x5dbc5004, (q31_t)0xc753ca46, (q31_t)0x5db12ec3, (q31_t)0xc74df4b1, (q31_t)0x5da60c5d, (q31_t)0xc748214c, (q31_t)0x5d9ae8d2, (q31_t)0xc7425016, (q31_t)0x5d8fc424, (q31_t)0xc73c8111, (q31_t)0x5d849e51, (q31_t)0xc736b43c, (q31_t)0x5d79775c, (q31_t)0xc730e997, (q31_t)0x5d6e4f43, (q31_t)0xc72b2123, (q31_t)0x5d632608, (q31_t)0xc7255ae0, (q31_t)0x5d57fbaa, (q31_t)0xc71f96ce, (q31_t)0x5d4cd02c, (q31_t)0xc719d4ed, (q31_t)0x5d41a38c, (q31_t)0xc714153e, (q31_t)0x5d3675cb, (q31_t)0xc70e57c0, (q31_t)0x5d2b46ea, (q31_t)0xc7089c75, (q31_t)0x5d2016e9, (q31_t)0xc702e35c, (q31_t)0x5d14e5c9, (q31_t)0xc6fd2c75, (q31_t)0x5d09b389, (q31_t)0xc6f777c1, (q31_t)0x5cfe802b, (q31_t)0xc6f1c540, (q31_t)0x5cf34baf, (q31_t)0xc6ec14f2, (q31_t)0x5ce81615, (q31_t)0xc6e666d7, (q31_t)0x5cdcdf5e, (q31_t)0xc6e0baf0, (q31_t)0x5cd1a78a, (q31_t)0xc6db113d, (q31_t)0x5cc66e99, (q31_t)0xc6d569be, (q31_t)0x5cbb348d, (q31_t)0xc6cfc472, (q31_t)0x5caff965, (q31_t)0xc6ca215c, (q31_t)0x5ca4bd21, (q31_t)0xc6c4807a, (q31_t)0x5c997fc4, (q31_t)0xc6bee1cd, (q31_t)0x5c8e414b, (q31_t)0xc6b94554, (q31_t)0x5c8301b9, (q31_t)0xc6b3ab12, (q31_t)0x5c77c10e, (q31_t)0xc6ae1304, (q31_t)0x5c6c7f4a, (q31_t)0xc6a87d2d, (q31_t)0x5c613c6d, (q31_t)0xc6a2e98b, (q31_t)0x5c55f878, (q31_t)0xc69d5820, (q31_t)0x5c4ab36b, (q31_t)0xc697c8eb, (q31_t)0x5c3f6d47, (q31_t)0xc6923bec, (q31_t)0x5c34260c, (q31_t)0xc68cb124, (q31_t)0x5c28ddbb, (q31_t)0xc6872894, (q31_t)0x5c1d9454, (q31_t)0xc681a23a, (q31_t)0x5c1249d8, (q31_t)0xc67c1e18, (q31_t)0x5c06fe46, (q31_t)0xc6769c2e, (q31_t)0x5bfbb1a0, (q31_t)0xc6711c7b, (q31_t)0x5bf063e6, (q31_t)0xc66b9f01, (q31_t)0x5be51518, (q31_t)0xc66623be, (q31_t)0x5bd9c537, (q31_t)0xc660aab5, (q31_t)0x5bce7442, (q31_t)0xc65b33e4, (q31_t)0x5bc3223c, (q31_t)0xc655bf4c, (q31_t)0x5bb7cf23, (q31_t)0xc6504ced, (q31_t)0x5bac7af9, (q31_t)0xc64adcc7, (q31_t)0x5ba125bd, (q31_t)0xc6456edb, (q31_t)0x5b95cf71, (q31_t)0xc6400329, (q31_t)0x5b8a7815, (q31_t)0xc63a99b1, (q31_t)0x5b7f1fa9, (q31_t)0xc6353273, (q31_t)0x5b73c62d, (q31_t)0xc62fcd6f, (q31_t)0x5b686ba3, (q31_t)0xc62a6aa6, (q31_t)0x5b5d100a, (q31_t)0xc6250a18, (q31_t)0x5b51b363, (q31_t)0xc61fabc4, (q31_t)0x5b4655ae, (q31_t)0xc61a4fac, (q31_t)0x5b3af6ec, (q31_t)0xc614f5cf, (q31_t)0x5b2f971e, (q31_t)0xc60f9e2e, (q31_t)0x5b243643, (q31_t)0xc60a48c9, (q31_t)0x5b18d45c, (q31_t)0xc604f5a0, (q31_t)0x5b0d716a, (q31_t)0xc5ffa4b3, (q31_t)0x5b020d6c, (q31_t)0xc5fa5603, (q31_t)0x5af6a865, (q31_t)0xc5f5098f, (q31_t)0x5aeb4253, (q31_t)0xc5efbf58, (q31_t)0x5adfdb37, (q31_t)0xc5ea775e, (q31_t)0x5ad47312, (q31_t)0xc5e531a1, (q31_t)0x5ac909e5, (q31_t)0xc5dfee22, (q31_t)0x5abd9faf, (q31_t)0xc5daace1, (q31_t)0x5ab23471, (q31_t)0xc5d56ddd, (q31_t)0x5aa6c82b, (q31_t)0xc5d03118, (q31_t)0x5a9b5adf, (q31_t)0xc5caf690, (q31_t)0x5a8fec8c, (q31_t)0xc5c5be47, (q31_t)0x5a847d33, (q31_t)0xc5c0883d, (q31_t)0x5a790cd4, (q31_t)0xc5bb5472, (q31_t)0x5a6d9b70, (q31_t)0xc5b622e6, (q31_t)0x5a622907, (q31_t)0xc5b0f399, (q31_t)0x5a56b599, (q31_t)0xc5abc68c, (q31_t)0x5a4b4128, (q31_t)0xc5a69bbe, (q31_t)0x5a3fcbb3, (q31_t)0xc5a17330, (q31_t)0x5a34553b, (q31_t)0xc59c4ce3, (q31_t)0x5a28ddc0, (q31_t)0xc59728d5, (q31_t)0x5a1d6544, (q31_t)0xc5920708, (q31_t)0x5a11ebc5, (q31_t)0xc58ce77c, (q31_t)0x5a067145, (q31_t)0xc587ca31, (q31_t)0x59faf5c5, (q31_t)0xc582af26, (q31_t)0x59ef7944, (q31_t)0xc57d965d, (q31_t)0x59e3fbc3, (q31_t)0xc5787fd6, (q31_t)0x59d87d42, (q31_t)0xc5736b90, (q31_t)0x59ccfdc2, (q31_t)0xc56e598c, (q31_t)0x59c17d44, (q31_t)0xc56949ca, (q31_t)0x59b5fbc8, (q31_t)0xc5643c4a, (q31_t)0x59aa794d, (q31_t)0xc55f310d, (q31_t)0x599ef5d6, (q31_t)0xc55a2812, (q31_t)0x59937161, (q31_t)0xc555215a, (q31_t)0x5987ebf0, (q31_t)0xc5501ce5, (q31_t)0x597c6584, (q31_t)0xc54b1ab4, (q31_t)0x5970de1b, (q31_t)0xc5461ac6, (q31_t)0x596555b8, (q31_t)0xc5411d1b, (q31_t)0x5959cc5a, (q31_t)0xc53c21b4, (q31_t)0x594e4201, (q31_t)0xc5372891, (q31_t)0x5942b6af, (q31_t)0xc53231b3, (q31_t)0x59372a64, (q31_t)0xc52d3d18, (q31_t)0x592b9d1f, (q31_t)0xc5284ac3, (q31_t)0x59200ee3, (q31_t)0xc5235ab2, (q31_t)0x59147fae, (q31_t)0xc51e6ce6, (q31_t)0x5908ef82, (q31_t)0xc519815f, (q31_t)0x58fd5e5f, (q31_t)0xc514981d, (q31_t)0x58f1cc45, (q31_t)0xc50fb121, (q31_t)0x58e63935, (q31_t)0xc50acc6b, (q31_t)0x58daa52f, (q31_t)0xc505e9fb, (q31_t)0x58cf1034, (q31_t)0xc50109d0, (q31_t)0x58c37a44, (q31_t)0xc4fc2bec, (q31_t)0x58b7e35f, (q31_t)0xc4f7504e, (q31_t)0x58ac4b87, (q31_t)0xc4f276f7, (q31_t)0x58a0b2bb, (q31_t)0xc4ed9fe7, (q31_t)0x589518fc, (q31_t)0xc4e8cb1e, (q31_t)0x58897e4a, (q31_t)0xc4e3f89c, (q31_t)0x587de2a7, (q31_t)0xc4df2862, (q31_t)0x58724611, (q31_t)0xc4da5a6f, (q31_t)0x5866a88a, (q31_t)0xc4d58ec3, (q31_t)0x585b0a13, (q31_t)0xc4d0c560, (q31_t)0x584f6aab, (q31_t)0xc4cbfe45, (q31_t)0x5843ca53, (q31_t)0xc4c73972, (q31_t)0x5838290c, (q31_t)0xc4c276e8, (q31_t)0x582c86d5, (q31_t)0xc4bdb6a6, (q31_t)0x5820e3b0, (q31_t)0xc4b8f8ad, (q31_t)0x58153f9d, (q31_t)0xc4b43cfd, (q31_t)0x58099a9c, (q31_t)0xc4af8397, (q31_t)0x57fdf4ae, (q31_t)0xc4aacc7a, (q31_t)0x57f24dd3, (q31_t)0xc4a617a6, (q31_t)0x57e6a60c, (q31_t)0xc4a1651c, (q31_t)0x57dafd59, (q31_t)0xc49cb4dd, (q31_t)0x57cf53bb, (q31_t)0xc49806e7, (q31_t)0x57c3a931, (q31_t)0xc4935b3c, (q31_t)0x57b7fdbd, (q31_t)0xc48eb1db, (q31_t)0x57ac515f, (q31_t)0xc48a0ac4, (q31_t)0x57a0a417, (q31_t)0xc48565f9, (q31_t)0x5794f5e6, (q31_t)0xc480c379, (q31_t)0x578946cc, (q31_t)0xc47c2344, (q31_t)0x577d96ca, (q31_t)0xc477855a, (q31_t)0x5771e5e0, (q31_t)0xc472e9bc, (q31_t)0x5766340f, (q31_t)0xc46e5069, (q31_t)0x575a8157, (q31_t)0xc469b963, (q31_t)0x574ecdb8, (q31_t)0xc46524a9, (q31_t)0x57431933, (q31_t)0xc460923b, (q31_t)0x573763c9, (q31_t)0xc45c0219, (q31_t)0x572bad7a, (q31_t)0xc4577444, (q31_t)0x571ff646, (q31_t)0xc452e8bc, (q31_t)0x57143e2d, (q31_t)0xc44e5f80, (q31_t)0x57088531, (q31_t)0xc449d892, (q31_t)0x56fccb51, (q31_t)0xc44553f2, (q31_t)0x56f1108f, (q31_t)0xc440d19e, (q31_t)0x56e554ea, (q31_t)0xc43c5199, (q31_t)0x56d99864, (q31_t)0xc437d3e1, (q31_t)0x56cddafb, (q31_t)0xc4335877, (q31_t)0x56c21cb2, (q31_t)0xc42edf5c, (q31_t)0x56b65d88, (q31_t)0xc42a688f, (q31_t)0x56aa9d7e, (q31_t)0xc425f410, (q31_t)0x569edc94, (q31_t)0xc42181e0, (q31_t)0x56931acb, (q31_t)0xc41d11ff, (q31_t)0x56875823, (q31_t)0xc418a46d, (q31_t)0x567b949d, (q31_t)0xc414392b, (q31_t)0x566fd039, (q31_t)0xc40fd037, (q31_t)0x56640af7, (q31_t)0xc40b6994, (q31_t)0x565844d8, (q31_t)0xc4070540, (q31_t)0x564c7ddd, (q31_t)0xc402a33c, (q31_t)0x5640b606, (q31_t)0xc3fe4388, (q31_t)0x5634ed53, (q31_t)0xc3f9e624, (q31_t)0x562923c5, (q31_t)0xc3f58b10, (q31_t)0x561d595d, (q31_t)0xc3f1324e, (q31_t)0x56118e1a, (q31_t)0xc3ecdbdc, (q31_t)0x5605c1fd, (q31_t)0xc3e887bb, (q31_t)0x55f9f507, (q31_t)0xc3e435ea, (q31_t)0x55ee2738, (q31_t)0xc3dfe66c, (q31_t)0x55e25890, (q31_t)0xc3db993e, (q31_t)0x55d68911, (q31_t)0xc3d74e62, (q31_t)0x55cab8ba, (q31_t)0xc3d305d8, (q31_t)0x55bee78c, (q31_t)0xc3cebfa0, (q31_t)0x55b31587, (q31_t)0xc3ca7bba, (q31_t)0x55a742ac, (q31_t)0xc3c63a26, (q31_t)0x559b6efb, (q31_t)0xc3c1fae5, (q31_t)0x558f9a76, (q31_t)0xc3bdbdf6, (q31_t)0x5583c51b, (q31_t)0xc3b9835a, (q31_t)0x5577eeec, (q31_t)0xc3b54b11, (q31_t)0x556c17e9, (q31_t)0xc3b1151b, (q31_t)0x55604013, (q31_t)0xc3ace178, (q31_t)0x5554676a, (q31_t)0xc3a8b028, (q31_t)0x55488dee, (q31_t)0xc3a4812c, (q31_t)0x553cb3a0, (q31_t)0xc3a05484, (q31_t)0x5530d881, (q31_t)0xc39c2a2f, (q31_t)0x5524fc90, (q31_t)0xc398022f, (q31_t)0x55191fcf, (q31_t)0xc393dc82, (q31_t)0x550d423d, (q31_t)0xc38fb92a, (q31_t)0x550163dc, (q31_t)0xc38b9827, (q31_t)0x54f584ac, (q31_t)0xc3877978, (q31_t)0x54e9a4ac, (q31_t)0xc3835d1e, (q31_t)0x54ddc3de, (q31_t)0xc37f4319, (q31_t)0x54d1e242, (q31_t)0xc37b2b6a, (q31_t)0x54c5ffd9, (q31_t)0xc377160f, (q31_t)0x54ba1ca3, (q31_t)0xc373030a, (q31_t)0x54ae38a0, (q31_t)0xc36ef25b, (q31_t)0x54a253d1, (q31_t)0xc36ae401, (q31_t)0x54966e36, (q31_t)0xc366d7fd, (q31_t)0x548a87d1, (q31_t)0xc362ce50, (q31_t)0x547ea0a0, (q31_t)0xc35ec6f8, (q31_t)0x5472b8a5, (q31_t)0xc35ac1f7, (q31_t)0x5466cfe1, (q31_t)0xc356bf4d, (q31_t)0x545ae653, (q31_t)0xc352bef9, (q31_t)0x544efbfc, (q31_t)0xc34ec0fc, (q31_t)0x544310dd, (q31_t)0xc34ac556, (q31_t)0x543724f5, (q31_t)0xc346cc07, (q31_t)0x542b3846, (q31_t)0xc342d510, (q31_t)0x541f4ad1, (q31_t)0xc33ee070, (q31_t)0x54135c94, (q31_t)0xc33aee27, (q31_t)0x54076d91, (q31_t)0xc336fe37, (q31_t)0x53fb7dc9, (q31_t)0xc333109e, (q31_t)0x53ef8d3c, (q31_t)0xc32f255e, (q31_t)0x53e39be9, (q31_t)0xc32b3c75, (q31_t)0x53d7a9d3, (q31_t)0xc32755e5, (q31_t)0x53cbb6f8, (q31_t)0xc32371ae, (q31_t)0x53bfc35b, (q31_t)0xc31f8fcf, (q31_t)0x53b3cefa, (q31_t)0xc31bb049, (q31_t)0x53a7d9d7, (q31_t)0xc317d31c, (q31_t)0x539be3f2, (q31_t)0xc313f848, (q31_t)0x538fed4b, (q31_t)0xc3101fce, (q31_t)0x5383f5e3, (q31_t)0xc30c49ad, (q31_t)0x5377fdbb, (q31_t)0xc30875e5, (q31_t)0x536c04d2, (q31_t)0xc304a477, (q31_t)0x53600b2a, (q31_t)0xc300d563, (q31_t)0x535410c3, (q31_t)0xc2fd08a9, (q31_t)0x5348159d, (q31_t)0xc2f93e4a, (q31_t)0x533c19b8, (q31_t)0xc2f57644, (q31_t)0x53301d16, (q31_t)0xc2f1b099, (q31_t)0x53241fb6, (q31_t)0xc2eded49, (q31_t)0x5318219a, (q31_t)0xc2ea2c53, (q31_t)0x530c22c1, (q31_t)0xc2e66db8, (q31_t)0x5300232c, (q31_t)0xc2e2b178, (q31_t)0x52f422db, (q31_t)0xc2def794, (q31_t)0x52e821cf, (q31_t)0xc2db400a, (q31_t)0x52dc2009, (q31_t)0xc2d78add, (q31_t)0x52d01d89, (q31_t)0xc2d3d80a, (q31_t)0x52c41a4f, (q31_t)0xc2d02794, (q31_t)0x52b8165b, (q31_t)0xc2cc7979, (q31_t)0x52ac11af, (q31_t)0xc2c8cdbb, (q31_t)0x52a00c4b, (q31_t)0xc2c52459, (q31_t)0x5294062f, (q31_t)0xc2c17d52, (q31_t)0x5287ff5b, (q31_t)0xc2bdd8a9, (q31_t)0x527bf7d1, (q31_t)0xc2ba365c, (q31_t)0x526fef90, (q31_t)0xc2b6966c, (q31_t)0x5263e699, (q31_t)0xc2b2f8d8, (q31_t)0x5257dced, (q31_t)0xc2af5da2, (q31_t)0x524bd28c, (q31_t)0xc2abc4c9, (q31_t)0x523fc776, (q31_t)0xc2a82e4d, (q31_t)0x5233bbac, (q31_t)0xc2a49a2e, (q31_t)0x5227af2e, (q31_t)0xc2a1086d, (q31_t)0x521ba1fd, (q31_t)0xc29d790a, (q31_t)0x520f941a, (q31_t)0xc299ec05, (q31_t)0x52038584, (q31_t)0xc296615d, (q31_t)0x51f7763c, (q31_t)0xc292d914, (q31_t)0x51eb6643, (q31_t)0xc28f5329, (q31_t)0x51df5599, (q31_t)0xc28bcf9c, (q31_t)0x51d3443f, (q31_t)0xc2884e6e, (q31_t)0x51c73235, (q31_t)0xc284cf9f, (q31_t)0x51bb1f7c, (q31_t)0xc281532e, (q31_t)0x51af0c13, (q31_t)0xc27dd91c, (q31_t)0x51a2f7fc, (q31_t)0xc27a616a, (q31_t)0x5196e337, (q31_t)0xc276ec16, (q31_t)0x518acdc4, (q31_t)0xc2737922, (q31_t)0x517eb7a4, (q31_t)0xc270088e, (q31_t)0x5172a0d7, (q31_t)0xc26c9a58, (q31_t)0x5166895f, (q31_t)0xc2692e83, (q31_t)0x515a713a, (q31_t)0xc265c50e, (q31_t)0x514e586a, (q31_t)0xc2625df8, (q31_t)0x51423ef0, (q31_t)0xc25ef943, (q31_t)0x513624cb, (q31_t)0xc25b96ee, (q31_t)0x512a09fc, (q31_t)0xc25836f9, (q31_t)0x511dee84, (q31_t)0xc254d965, (q31_t)0x5111d263, (q31_t)0xc2517e31, (q31_t)0x5105b599, (q31_t)0xc24e255e, (q31_t)0x50f99827, (q31_t)0xc24aceed, (q31_t)0x50ed7a0e, (q31_t)0xc2477adc, (q31_t)0x50e15b4e, (q31_t)0xc244292c, (q31_t)0x50d53be7, (q31_t)0xc240d9de, (q31_t)0x50c91bda, (q31_t)0xc23d8cf1, (q31_t)0x50bcfb28, (q31_t)0xc23a4265, (q31_t)0x50b0d9d0, (q31_t)0xc236fa3b, (q31_t)0x50a4b7d3, (q31_t)0xc233b473, (q31_t)0x50989532, (q31_t)0xc230710d, (q31_t)0x508c71ee, (q31_t)0xc22d3009, (q31_t)0x50804e06, (q31_t)0xc229f167, (q31_t)0x5074297b, (q31_t)0xc226b528, (q31_t)0x5068044e, (q31_t)0xc2237b4b, (q31_t)0x505bde7f, (q31_t)0xc22043d0, (q31_t)0x504fb80e, (q31_t)0xc21d0eb8, (q31_t)0x504390fd, (q31_t)0xc219dc03, (q31_t)0x5037694b, (q31_t)0xc216abb1, (q31_t)0x502b40f8, (q31_t)0xc2137dc2, (q31_t)0x501f1807, (q31_t)0xc2105236, (q31_t)0x5012ee76, (q31_t)0xc20d290d, (q31_t)0x5006c446, (q31_t)0xc20a0248, (q31_t)0x4ffa9979, (q31_t)0xc206dde6, (q31_t)0x4fee6e0d, (q31_t)0xc203bbe8, (q31_t)0x4fe24205, (q31_t)0xc2009c4e, (q31_t)0x4fd6155f, (q31_t)0xc1fd7f17, (q31_t)0x4fc9e81e, (q31_t)0xc1fa6445, (q31_t)0x4fbdba40, (q31_t)0xc1f74bd6, (q31_t)0x4fb18bc8, (q31_t)0xc1f435cc, (q31_t)0x4fa55cb4, (q31_t)0xc1f12227, (q31_t)0x4f992d06, (q31_t)0xc1ee10e5, (q31_t)0x4f8cfcbe, (q31_t)0xc1eb0209, (q31_t)0x4f80cbdc, (q31_t)0xc1e7f591, (q31_t)0x4f749a61, (q31_t)0xc1e4eb7e, (q31_t)0x4f68684e, (q31_t)0xc1e1e3d0, (q31_t)0x4f5c35a3, (q31_t)0xc1dede87, (q31_t)0x4f500260, (q31_t)0xc1dbdba3, (q31_t)0x4f43ce86, (q31_t)0xc1d8db25, (q31_t)0x4f379a16, (q31_t)0xc1d5dd0c, (q31_t)0x4f2b650f, (q31_t)0xc1d2e158, (q31_t)0x4f1f2f73, (q31_t)0xc1cfe80a, (q31_t)0x4f12f941, (q31_t)0xc1ccf122, (q31_t)0x4f06c27a, (q31_t)0xc1c9fca0, (q31_t)0x4efa8b20, (q31_t)0xc1c70a84, (q31_t)0x4eee5331, (q31_t)0xc1c41ace, (q31_t)0x4ee21aaf, (q31_t)0xc1c12d7e, (q31_t)0x4ed5e19a, (q31_t)0xc1be4294, (q31_t)0x4ec9a7f3, (q31_t)0xc1bb5a11, (q31_t)0x4ebd6db9, (q31_t)0xc1b873f5, (q31_t)0x4eb132ef, (q31_t)0xc1b5903f, (q31_t)0x4ea4f793, (q31_t)0xc1b2aef0, (q31_t)0x4e98bba7, (q31_t)0xc1afd007, (q31_t)0x4e8c7f2a, (q31_t)0xc1acf386, (q31_t)0x4e80421e, (q31_t)0xc1aa196c, (q31_t)0x4e740483, (q31_t)0xc1a741b9, (q31_t)0x4e67c65a, (q31_t)0xc1a46c6e, (q31_t)0x4e5b87a2, (q31_t)0xc1a1998a, (q31_t)0x4e4f485c, (q31_t)0xc19ec90d, (q31_t)0x4e430889, (q31_t)0xc19bfaf9, (q31_t)0x4e36c82a, (q31_t)0xc1992f4c, (q31_t)0x4e2a873e, (q31_t)0xc1966606, (q31_t)0x4e1e45c6, (q31_t)0xc1939f29, (q31_t)0x4e1203c3, (q31_t)0xc190dab4, (q31_t)0x4e05c135, (q31_t)0xc18e18a7, (q31_t)0x4df97e1d, (q31_t)0xc18b5903, (q31_t)0x4ded3a7b, (q31_t)0xc1889bc6, (q31_t)0x4de0f64f, (q31_t)0xc185e0f3, (q31_t)0x4dd4b19a, (q31_t)0xc1832888, (q31_t)0x4dc86c5d, (q31_t)0xc1807285, (q31_t)0x4dbc2698, (q31_t)0xc17dbeec, (q31_t)0x4dafe04b, (q31_t)0xc17b0dbb, (q31_t)0x4da39978, (q31_t)0xc1785ef4, (q31_t)0x4d97521d, (q31_t)0xc175b296, (q31_t)0x4d8b0a3d, (q31_t)0xc17308a1, (q31_t)0x4d7ec1d6, (q31_t)0xc1706115, (q31_t)0x4d7278eb, (q31_t)0xc16dbbf3, (q31_t)0x4d662f7b, (q31_t)0xc16b193a, (q31_t)0x4d59e586, (q31_t)0xc16878eb, (q31_t)0x4d4d9b0e, (q31_t)0xc165db05, (q31_t)0x4d415013, (q31_t)0xc1633f8a, (q31_t)0x4d350495, (q31_t)0xc160a678, (q31_t)0x4d28b894, (q31_t)0xc15e0fd1, (q31_t)0x4d1c6c11, (q31_t)0xc15b7b94, (q31_t)0x4d101f0e, (q31_t)0xc158e9c1, (q31_t)0x4d03d189, (q31_t)0xc1565a58, (q31_t)0x4cf78383, (q31_t)0xc153cd5a, (q31_t)0x4ceb34fe, (q31_t)0xc15142c6, (q31_t)0x4cdee5f9, (q31_t)0xc14eba9d, (q31_t)0x4cd29676, (q31_t)0xc14c34df, (q31_t)0x4cc64673, (q31_t)0xc149b18b, (q31_t)0x4cb9f5f3, (q31_t)0xc14730a3, (q31_t)0x4cada4f5, (q31_t)0xc144b225, (q31_t)0x4ca1537a, (q31_t)0xc1423613, (q31_t)0x4c950182, (q31_t)0xc13fbc6c, (q31_t)0x4c88af0e, (q31_t)0xc13d4530, (q31_t)0x4c7c5c1e, (q31_t)0xc13ad060, (q31_t)0x4c7008b3, (q31_t)0xc1385dfb, (q31_t)0x4c63b4ce, (q31_t)0xc135ee02, (q31_t)0x4c57606e, (q31_t)0xc1338075, (q31_t)0x4c4b0b94, (q31_t)0xc1311553, (q31_t)0x4c3eb641, (q31_t)0xc12eac9d, (q31_t)0x4c326075, (q31_t)0xc12c4653, (q31_t)0x4c260a31, (q31_t)0xc129e276, (q31_t)0x4c19b374, (q31_t)0xc1278104, (q31_t)0x4c0d5c41, (q31_t)0xc12521ff, (q31_t)0x4c010496, (q31_t)0xc122c566, (q31_t)0x4bf4ac75, (q31_t)0xc1206b39, (q31_t)0x4be853de, (q31_t)0xc11e1379, (q31_t)0x4bdbfad1, (q31_t)0xc11bbe26, (q31_t)0x4bcfa150, (q31_t)0xc1196b3f, (q31_t)0x4bc34759, (q31_t)0xc1171ac6, (q31_t)0x4bb6ecef, (q31_t)0xc114ccb9, (q31_t)0x4baa9211, (q31_t)0xc1128119, (q31_t)0x4b9e36c0, (q31_t)0xc11037e6, (q31_t)0x4b91dafc, (q31_t)0xc10df120, (q31_t)0x4b857ec7, (q31_t)0xc10bacc8, (q31_t)0x4b79221f, (q31_t)0xc1096add, (q31_t)0x4b6cc506, (q31_t)0xc1072b5f, (q31_t)0x4b60677c, (q31_t)0xc104ee4f, (q31_t)0x4b540982, (q31_t)0xc102b3ac, (q31_t)0x4b47ab19, (q31_t)0xc1007b77, (q31_t)0x4b3b4c40, (q31_t)0xc0fe45b0, (q31_t)0x4b2eecf8, (q31_t)0xc0fc1257, (q31_t)0x4b228d42, (q31_t)0xc0f9e16b, (q31_t)0x4b162d1d, (q31_t)0xc0f7b2ee, (q31_t)0x4b09cc8c, (q31_t)0xc0f586df, (q31_t)0x4afd6b8d, (q31_t)0xc0f35d3e, (q31_t)0x4af10a22, (q31_t)0xc0f1360b, (q31_t)0x4ae4a84b, (q31_t)0xc0ef1147, (q31_t)0x4ad84609, (q31_t)0xc0eceef1, (q31_t)0x4acbe35b, (q31_t)0xc0eacf09, (q31_t)0x4abf8043, (q31_t)0xc0e8b190, (q31_t)0x4ab31cc1, (q31_t)0xc0e69686, (q31_t)0x4aa6b8d5, (q31_t)0xc0e47deb, (q31_t)0x4a9a5480, (q31_t)0xc0e267be, (q31_t)0x4a8defc3, (q31_t)0xc0e05401, (q31_t)0x4a818a9d, (q31_t)0xc0de42b2, (q31_t)0x4a752510, (q31_t)0xc0dc33d2, (q31_t)0x4a68bf1b, (q31_t)0xc0da2762, (q31_t)0x4a5c58c0, (q31_t)0xc0d81d61, (q31_t)0x4a4ff1fe, (q31_t)0xc0d615cf, (q31_t)0x4a438ad7, (q31_t)0xc0d410ad, (q31_t)0x4a37234a, (q31_t)0xc0d20dfa, (q31_t)0x4a2abb59, (q31_t)0xc0d00db6, (q31_t)0x4a1e5303, (q31_t)0xc0ce0fe3, (q31_t)0x4a11ea49, (q31_t)0xc0cc147f, (q31_t)0x4a05812c, (q31_t)0xc0ca1b8a, (q31_t)0x49f917ac, (q31_t)0xc0c82506, (q31_t)0x49ecadc9, (q31_t)0xc0c630f2, (q31_t)0x49e04385, (q31_t)0xc0c43f4d, (q31_t)0x49d3d8df, (q31_t)0xc0c25019, (q31_t)0x49c76dd8, (q31_t)0xc0c06355, (q31_t)0x49bb0271, (q31_t)0xc0be7901, (q31_t)0x49ae96aa, (q31_t)0xc0bc911d, (q31_t)0x49a22a83, (q31_t)0xc0baabaa, (q31_t)0x4995bdfd, (q31_t)0xc0b8c8a7, (q31_t)0x49895118, (q31_t)0xc0b6e815, (q31_t)0x497ce3d5, (q31_t)0xc0b509f3, (q31_t)0x49707635, (q31_t)0xc0b32e42, (q31_t)0x49640837, (q31_t)0xc0b15502, (q31_t)0x495799dd, (q31_t)0xc0af7e33, (q31_t)0x494b2b27, (q31_t)0xc0ada9d4, (q31_t)0x493ebc14, (q31_t)0xc0abd7e6, (q31_t)0x49324ca7, (q31_t)0xc0aa086a, (q31_t)0x4925dcdf, (q31_t)0xc0a83b5e, (q31_t)0x49196cbc, (q31_t)0xc0a670c4, (q31_t)0x490cfc40, (q31_t)0xc0a4a89b, (q31_t)0x49008b6a, (q31_t)0xc0a2e2e3, (q31_t)0x48f41a3c, (q31_t)0xc0a11f9d, (q31_t)0x48e7a8b5, (q31_t)0xc09f5ec8, (q31_t)0x48db36d6, (q31_t)0xc09da065, (q31_t)0x48cec4a0, (q31_t)0xc09be473, (q31_t)0x48c25213, (q31_t)0xc09a2af3, (q31_t)0x48b5df30, (q31_t)0xc09873e4, (q31_t)0x48a96bf6, (q31_t)0xc096bf48, (q31_t)0x489cf867, (q31_t)0xc0950d1d, (q31_t)0x48908483, (q31_t)0xc0935d64, (q31_t)0x4884104b, (q31_t)0xc091b01d, (q31_t)0x48779bbe, (q31_t)0xc0900548, (q31_t)0x486b26de, (q31_t)0xc08e5ce5, (q31_t)0x485eb1ab, (q31_t)0xc08cb6f5, (q31_t)0x48523c25, (q31_t)0xc08b1376, (q31_t)0x4845c64d, (q31_t)0xc089726a, (q31_t)0x48395024, (q31_t)0xc087d3d0, (q31_t)0x482cd9a9, (q31_t)0xc08637a9, (q31_t)0x482062de, (q31_t)0xc0849df4, (q31_t)0x4813ebc2, (q31_t)0xc08306b2, (q31_t)0x48077457, (q31_t)0xc08171e2, (q31_t)0x47fafc9c, (q31_t)0xc07fdf85, (q31_t)0x47ee8493, (q31_t)0xc07e4f9b, (q31_t)0x47e20c3b, (q31_t)0xc07cc223, (q31_t)0x47d59396, (q31_t)0xc07b371e, (q31_t)0x47c91aa3, (q31_t)0xc079ae8c, (q31_t)0x47bca163, (q31_t)0xc078286e, (q31_t)0x47b027d7, (q31_t)0xc076a4c2, (q31_t)0x47a3adff, (q31_t)0xc0752389, (q31_t)0x479733dc, (q31_t)0xc073a4c3, (q31_t)0x478ab96e, (q31_t)0xc0722871, (q31_t)0x477e3eb5, (q31_t)0xc070ae92, (q31_t)0x4771c3b3, (q31_t)0xc06f3726, (q31_t)0x47654867, (q31_t)0xc06dc22e, (q31_t)0x4758ccd2, (q31_t)0xc06c4fa8, (q31_t)0x474c50f4, (q31_t)0xc06adf97, (q31_t)0x473fd4cf, (q31_t)0xc06971f9, (q31_t)0x47335862, (q31_t)0xc06806ce, (q31_t)0x4726dbae, (q31_t)0xc0669e18, (q31_t)0x471a5eb3, (q31_t)0xc06537d4, (q31_t)0x470de172, (q31_t)0xc063d405, (q31_t)0x470163eb, (q31_t)0xc06272aa, (q31_t)0x46f4e620, (q31_t)0xc06113c2, (q31_t)0x46e86810, (q31_t)0xc05fb74e, (q31_t)0x46dbe9bb, (q31_t)0xc05e5d4e, (q31_t)0x46cf6b23, (q31_t)0xc05d05c3, (q31_t)0x46c2ec48, (q31_t)0xc05bb0ab, (q31_t)0x46b66d29, (q31_t)0xc05a5e07, (q31_t)0x46a9edc9, (q31_t)0xc0590dd8, (q31_t)0x469d6e27, (q31_t)0xc057c01d, (q31_t)0x4690ee44, (q31_t)0xc05674d6, (q31_t)0x46846e1f, (q31_t)0xc0552c03, (q31_t)0x4677edbb, (q31_t)0xc053e5a5, (q31_t)0x466b6d16, (q31_t)0xc052a1bb, (q31_t)0x465eec33, (q31_t)0xc0516045, (q31_t)0x46526b10, (q31_t)0xc0502145, (q31_t)0x4645e9af, (q31_t)0xc04ee4b8, (q31_t)0x46396810, (q31_t)0xc04daaa1, (q31_t)0x462ce634, (q31_t)0xc04c72fe, (q31_t)0x4620641a, (q31_t)0xc04b3dcf, (q31_t)0x4613e1c5, (q31_t)0xc04a0b16, (q31_t)0x46075f33, (q31_t)0xc048dad1, (q31_t)0x45fadc66, (q31_t)0xc047ad01, (q31_t)0x45ee595d, (q31_t)0xc04681a6, (q31_t)0x45e1d61b, (q31_t)0xc04558c0, (q31_t)0x45d5529e, (q31_t)0xc044324f, (q31_t)0x45c8cee7, (q31_t)0xc0430e53, (q31_t)0x45bc4af8, (q31_t)0xc041eccc, (q31_t)0x45afc6d0, (q31_t)0xc040cdba, (q31_t)0x45a3426f, (q31_t)0xc03fb11d, (q31_t)0x4596bdd7, (q31_t)0xc03e96f6, (q31_t)0x458a3908, (q31_t)0xc03d7f44, (q31_t)0x457db403, (q31_t)0xc03c6a07, (q31_t)0x45712ec7, (q31_t)0xc03b573f, (q31_t)0x4564a955, (q31_t)0xc03a46ed, (q31_t)0x455823ae, (q31_t)0xc0393910, (q31_t)0x454b9dd3, (q31_t)0xc0382da8, (q31_t)0x453f17c3, (q31_t)0xc03724b6, (q31_t)0x4532917f, (q31_t)0xc0361e3a, (q31_t)0x45260b08, (q31_t)0xc0351a33, (q31_t)0x4519845e, (q31_t)0xc03418a2, (q31_t)0x450cfd82, (q31_t)0xc0331986, (q31_t)0x45007674, (q31_t)0xc0321ce0, (q31_t)0x44f3ef35, (q31_t)0xc03122b0, (q31_t)0x44e767c5, (q31_t)0xc0302af5, (q31_t)0x44dae024, (q31_t)0xc02f35b1, (q31_t)0x44ce5854, (q31_t)0xc02e42e2, (q31_t)0x44c1d054, (q31_t)0xc02d5289, (q31_t)0x44b54825, (q31_t)0xc02c64a6, (q31_t)0x44a8bfc7, (q31_t)0xc02b7939, (q31_t)0x449c373c, (q31_t)0xc02a9042, (q31_t)0x448fae83, (q31_t)0xc029a9c1, (q31_t)0x4483259d, (q31_t)0xc028c5b6, (q31_t)0x44769c8b, (q31_t)0xc027e421, (q31_t)0x446a134c, (q31_t)0xc0270502, (q31_t)0x445d89e2, (q31_t)0xc0262859, (q31_t)0x4451004d, (q31_t)0xc0254e27, (q31_t)0x4444768d, (q31_t)0xc024766a, (q31_t)0x4437eca4, (q31_t)0xc023a124, (q31_t)0x442b6290, (q31_t)0xc022ce54, (q31_t)0x441ed854, (q31_t)0xc021fdfb, (q31_t)0x44124dee, (q31_t)0xc0213018, (q31_t)0x4405c361, (q31_t)0xc02064ab, (q31_t)0x43f938ac, (q31_t)0xc01f9bb5, (q31_t)0x43ecadcf, (q31_t)0xc01ed535, (q31_t)0x43e022cc, (q31_t)0xc01e112b, (q31_t)0x43d397a3, (q31_t)0xc01d4f99, (q31_t)0x43c70c54, (q31_t)0xc01c907c, (q31_t)0x43ba80df, (q31_t)0xc01bd3d6, (q31_t)0x43adf546, (q31_t)0xc01b19a7, (q31_t)0x43a16988, (q31_t)0xc01a61ee, (q31_t)0x4394dda7, (q31_t)0xc019acac, (q31_t)0x438851a2, (q31_t)0xc018f9e1, (q31_t)0x437bc57b, (q31_t)0xc018498c, (q31_t)0x436f3931, (q31_t)0xc0179bae, (q31_t)0x4362acc5, (q31_t)0xc016f047, (q31_t)0x43562038, (q31_t)0xc0164757, (q31_t)0x43499389, (q31_t)0xc015a0dd, (q31_t)0x433d06bb, (q31_t)0xc014fcda, (q31_t)0x433079cc, (q31_t)0xc0145b4e, (q31_t)0x4323ecbe, (q31_t)0xc013bc39, (q31_t)0x43175f91, (q31_t)0xc0131f9b, (q31_t)0x430ad245, (q31_t)0xc0128574, (q31_t)0x42fe44dc, (q31_t)0xc011edc3, (q31_t)0x42f1b755, (q31_t)0xc011588a, (q31_t)0x42e529b0, (q31_t)0xc010c5c7, (q31_t)0x42d89bf0, (q31_t)0xc010357c, (q31_t)0x42cc0e13, (q31_t)0xc00fa7a8, (q31_t)0x42bf801a, (q31_t)0xc00f1c4a, (q31_t)0x42b2f207, (q31_t)0xc00e9364, (q31_t)0x42a663d8, (q31_t)0xc00e0cf5, (q31_t)0x4299d590, (q31_t)0xc00d88fd, (q31_t)0x428d472e, (q31_t)0xc00d077c, (q31_t)0x4280b8b3, (q31_t)0xc00c8872, (q31_t)0x42742a1f, (q31_t)0xc00c0be0, (q31_t)0x42679b73, (q31_t)0xc00b91c4, (q31_t)0x425b0caf, (q31_t)0xc00b1a20, (q31_t)0x424e7dd4, (q31_t)0xc00aa4f3, (q31_t)0x4241eee2, (q31_t)0xc00a323d, (q31_t)0x42355fd9, (q31_t)0xc009c1ff, (q31_t)0x4228d0bb, (q31_t)0xc0095438, (q31_t)0x421c4188, (q31_t)0xc008e8e8, (q31_t)0x420fb240, (q31_t)0xc008800f, (q31_t)0x420322e3, (q31_t)0xc00819ae, (q31_t)0x41f69373, (q31_t)0xc007b5c4, (q31_t)0x41ea03ef, (q31_t)0xc0075452, (q31_t)0x41dd7459, (q31_t)0xc006f556, (q31_t)0x41d0e4b0, (q31_t)0xc00698d3, (q31_t)0x41c454f5, (q31_t)0xc0063ec6, (q31_t)0x41b7c528, (q31_t)0xc005e731, (q31_t)0x41ab354b, (q31_t)0xc0059214, (q31_t)0x419ea55d, (q31_t)0xc0053f6e, (q31_t)0x4192155f, (q31_t)0xc004ef3f, (q31_t)0x41858552, (q31_t)0xc004a188, (q31_t)0x4178f536, (q31_t)0xc0045648, (q31_t)0x416c650b, (q31_t)0xc0040d80, (q31_t)0x415fd4d2, (q31_t)0xc003c72f, (q31_t)0x4153448c, (q31_t)0xc0038356, (q31_t)0x4146b438, (q31_t)0xc00341f4, (q31_t)0x413a23d8, (q31_t)0xc003030a, (q31_t)0x412d936c, (q31_t)0xc002c697, (q31_t)0x412102f4, (q31_t)0xc0028c9c, (q31_t)0x41147271, (q31_t)0xc0025519, (q31_t)0x4107e1e3, (q31_t)0xc002200d, (q31_t)0x40fb514b, (q31_t)0xc001ed78, (q31_t)0x40eec0aa, (q31_t)0xc001bd5c, (q31_t)0x40e22fff, (q31_t)0xc0018fb6, (q31_t)0x40d59f4c, (q31_t)0xc0016489, (q31_t)0x40c90e90, (q31_t)0xc0013bd3, (q31_t)0x40bc7dcc, (q31_t)0xc0011594, (q31_t)0x40afed02, (q31_t)0xc000f1ce, (q31_t)0x40a35c30, (q31_t)0xc000d07e, (q31_t)0x4096cb58, (q31_t)0xc000b1a7, (q31_t)0x408a3a7b, (q31_t)0xc0009547, (q31_t)0x407da998, (q31_t)0xc0007b5f, (q31_t)0x407118b0, (q31_t)0xc00063ee, (q31_t)0x406487c4, (q31_t)0xc0004ef5, (q31_t)0x4057f6d4, (q31_t)0xc0003c74, (q31_t)0x404b65e1, (q31_t)0xc0002c6a, (q31_t)0x403ed4ea, (q31_t)0xc0001ed8, (q31_t)0x403243f1, (q31_t)0xc00013bd, (q31_t)0x4025b2f7, (q31_t)0xc0000b1a, (q31_t)0x401921fb, (q31_t)0xc00004ef, (q31_t)0x400c90fe, (q31_t)0xc000013c, }; /** @par Generation fixed-point realCoefAQ15 array in Q15 format: @par n = 4096
for (i = 0; i < n; i++)
  {
     pATable[2 * i]     = 0.5 * ( 1.0 - sin (2 * PI / (double) (2 * n) * (double) i));
     pATable[2 * i + 1] = 0.5 * (-1.0 * cos (2 * PI / (double) (2 * n) * (double) i));
  }
@par Convert to fixed point Q15 format round(pATable[i] * pow(2, 15)) */ const q15_t __ALIGNED(4) realCoefAQ15[8192] ARM_DSP_TABLE_ATTRIBUTE = { (q15_t)0x4000, (q15_t)0xc000, (q15_t)0x3ff3, (q15_t)0xc000, (q15_t)0x3fe7, (q15_t)0xc000, (q15_t)0x3fda, (q15_t)0xc000, (q15_t)0x3fce, (q15_t)0xc000, (q15_t)0x3fc1, (q15_t)0xc000, (q15_t)0x3fb5, (q15_t)0xc000, (q15_t)0x3fa8, (q15_t)0xc000, (q15_t)0x3f9b, (q15_t)0xc000, (q15_t)0x3f8f, (q15_t)0xc000, (q15_t)0x3f82, (q15_t)0xc000, (q15_t)0x3f76, (q15_t)0xc001, (q15_t)0x3f69, (q15_t)0xc001, (q15_t)0x3f5d, (q15_t)0xc001, (q15_t)0x3f50, (q15_t)0xc001, (q15_t)0x3f44, (q15_t)0xc001, (q15_t)0x3f37, (q15_t)0xc001, (q15_t)0x3f2a, (q15_t)0xc001, (q15_t)0x3f1e, (q15_t)0xc002, (q15_t)0x3f11, (q15_t)0xc002, (q15_t)0x3f05, (q15_t)0xc002, (q15_t)0x3ef8, (q15_t)0xc002, (q15_t)0x3eec, (q15_t)0xc002, (q15_t)0x3edf, (q15_t)0xc003, (q15_t)0x3ed2, (q15_t)0xc003, (q15_t)0x3ec6, (q15_t)0xc003, (q15_t)0x3eb9, (q15_t)0xc003, (q15_t)0x3ead, (q15_t)0xc004, (q15_t)0x3ea0, (q15_t)0xc004, (q15_t)0x3e94, (q15_t)0xc004, (q15_t)0x3e87, (q15_t)0xc004, (q15_t)0x3e7a, (q15_t)0xc005, (q15_t)0x3e6e, (q15_t)0xc005, (q15_t)0x3e61, (q15_t)0xc005, (q15_t)0x3e55, (q15_t)0xc006, (q15_t)0x3e48, (q15_t)0xc006, (q15_t)0x3e3c, (q15_t)0xc006, (q15_t)0x3e2f, (q15_t)0xc007, (q15_t)0x3e23, (q15_t)0xc007, (q15_t)0x3e16, (q15_t)0xc007, (q15_t)0x3e09, (q15_t)0xc008, (q15_t)0x3dfd, (q15_t)0xc008, (q15_t)0x3df0, (q15_t)0xc009, (q15_t)0x3de4, (q15_t)0xc009, (q15_t)0x3dd7, (q15_t)0xc009, (q15_t)0x3dcb, (q15_t)0xc00a, (q15_t)0x3dbe, (q15_t)0xc00a, (q15_t)0x3db2, (q15_t)0xc00b, (q15_t)0x3da5, (q15_t)0xc00b, (q15_t)0x3d98, (q15_t)0xc00c, (q15_t)0x3d8c, (q15_t)0xc00c, (q15_t)0x3d7f, (q15_t)0xc00d, (q15_t)0x3d73, (q15_t)0xc00d, (q15_t)0x3d66, (q15_t)0xc00e, (q15_t)0x3d5a, (q15_t)0xc00e, (q15_t)0x3d4d, (q15_t)0xc00f, (q15_t)0x3d40, (q15_t)0xc00f, (q15_t)0x3d34, (q15_t)0xc010, (q15_t)0x3d27, (q15_t)0xc010, (q15_t)0x3d1b, (q15_t)0xc011, (q15_t)0x3d0e, (q15_t)0xc011, (q15_t)0x3d02, (q15_t)0xc012, (q15_t)0x3cf5, (q15_t)0xc013, (q15_t)0x3ce9, (q15_t)0xc013, (q15_t)0x3cdc, (q15_t)0xc014, (q15_t)0x3cd0, (q15_t)0xc014, (q15_t)0x3cc3, (q15_t)0xc015, (q15_t)0x3cb6, (q15_t)0xc016, (q15_t)0x3caa, (q15_t)0xc016, (q15_t)0x3c9d, (q15_t)0xc017, (q15_t)0x3c91, (q15_t)0xc018, (q15_t)0x3c84, (q15_t)0xc018, (q15_t)0x3c78, (q15_t)0xc019, (q15_t)0x3c6b, (q15_t)0xc01a, (q15_t)0x3c5f, (q15_t)0xc01a, (q15_t)0x3c52, (q15_t)0xc01b, (q15_t)0x3c45, (q15_t)0xc01c, (q15_t)0x3c39, (q15_t)0xc01d, (q15_t)0x3c2c, (q15_t)0xc01d, (q15_t)0x3c20, (q15_t)0xc01e, (q15_t)0x3c13, (q15_t)0xc01f, (q15_t)0x3c07, (q15_t)0xc020, (q15_t)0x3bfa, (q15_t)0xc020, (q15_t)0x3bee, (q15_t)0xc021, (q15_t)0x3be1, (q15_t)0xc022, (q15_t)0x3bd5, (q15_t)0xc023, (q15_t)0x3bc8, (q15_t)0xc024, (q15_t)0x3bbc, (q15_t)0xc024, (q15_t)0x3baf, (q15_t)0xc025, (q15_t)0x3ba2, (q15_t)0xc026, (q15_t)0x3b96, (q15_t)0xc027, (q15_t)0x3b89, (q15_t)0xc028, (q15_t)0x3b7d, (q15_t)0xc029, (q15_t)0x3b70, (q15_t)0xc02a, (q15_t)0x3b64, (q15_t)0xc02b, (q15_t)0x3b57, (q15_t)0xc02b, (q15_t)0x3b4b, (q15_t)0xc02c, (q15_t)0x3b3e, (q15_t)0xc02d, (q15_t)0x3b32, (q15_t)0xc02e, (q15_t)0x3b25, (q15_t)0xc02f, (q15_t)0x3b19, (q15_t)0xc030, (q15_t)0x3b0c, (q15_t)0xc031, (q15_t)0x3b00, (q15_t)0xc032, (q15_t)0x3af3, (q15_t)0xc033, (q15_t)0x3ae6, (q15_t)0xc034, (q15_t)0x3ada, (q15_t)0xc035, (q15_t)0x3acd, (q15_t)0xc036, (q15_t)0x3ac1, (q15_t)0xc037, (q15_t)0x3ab4, (q15_t)0xc038, (q15_t)0x3aa8, (q15_t)0xc039, (q15_t)0x3a9b, (q15_t)0xc03a, (q15_t)0x3a8f, (q15_t)0xc03b, (q15_t)0x3a82, (q15_t)0xc03c, (q15_t)0x3a76, (q15_t)0xc03d, (q15_t)0x3a69, (q15_t)0xc03f, (q15_t)0x3a5d, (q15_t)0xc040, (q15_t)0x3a50, (q15_t)0xc041, (q15_t)0x3a44, (q15_t)0xc042, (q15_t)0x3a37, (q15_t)0xc043, (q15_t)0x3a2b, (q15_t)0xc044, (q15_t)0x3a1e, (q15_t)0xc045, (q15_t)0x3a12, (q15_t)0xc047, (q15_t)0x3a05, (q15_t)0xc048, (q15_t)0x39f9, (q15_t)0xc049, (q15_t)0x39ec, (q15_t)0xc04a, (q15_t)0x39e0, (q15_t)0xc04b, (q15_t)0x39d3, (q15_t)0xc04c, (q15_t)0x39c7, (q15_t)0xc04e, (q15_t)0x39ba, (q15_t)0xc04f, (q15_t)0x39ae, (q15_t)0xc050, (q15_t)0x39a1, (q15_t)0xc051, (q15_t)0x3995, (q15_t)0xc053, (q15_t)0x3988, (q15_t)0xc054, (q15_t)0x397c, (q15_t)0xc055, (q15_t)0x396f, (q15_t)0xc056, (q15_t)0x3963, (q15_t)0xc058, (q15_t)0x3956, (q15_t)0xc059, (q15_t)0x394a, (q15_t)0xc05a, (q15_t)0x393d, (q15_t)0xc05c, (q15_t)0x3931, (q15_t)0xc05d, (q15_t)0x3924, (q15_t)0xc05e, (q15_t)0x3918, (q15_t)0xc060, (q15_t)0x390b, (q15_t)0xc061, (q15_t)0x38ff, (q15_t)0xc062, (q15_t)0x38f2, (q15_t)0xc064, (q15_t)0x38e6, (q15_t)0xc065, (q15_t)0x38d9, (q15_t)0xc067, (q15_t)0x38cd, (q15_t)0xc068, (q15_t)0x38c0, (q15_t)0xc069, (q15_t)0x38b4, (q15_t)0xc06b, (q15_t)0x38a7, (q15_t)0xc06c, (q15_t)0x389b, (q15_t)0xc06e, (q15_t)0x388e, (q15_t)0xc06f, (q15_t)0x3882, (q15_t)0xc071, (q15_t)0x3875, (q15_t)0xc072, (q15_t)0x3869, (q15_t)0xc074, (q15_t)0x385c, (q15_t)0xc075, (q15_t)0x3850, (q15_t)0xc077, (q15_t)0x3843, (q15_t)0xc078, (q15_t)0x3837, (q15_t)0xc07a, (q15_t)0x382a, (q15_t)0xc07b, (q15_t)0x381e, (q15_t)0xc07d, (q15_t)0x3811, (q15_t)0xc07e, (q15_t)0x3805, (q15_t)0xc080, (q15_t)0x37f9, (q15_t)0xc081, (q15_t)0x37ec, (q15_t)0xc083, (q15_t)0x37e0, (q15_t)0xc085, (q15_t)0x37d3, (q15_t)0xc086, (q15_t)0x37c7, (q15_t)0xc088, (q15_t)0x37ba, (q15_t)0xc089, (q15_t)0x37ae, (q15_t)0xc08b, (q15_t)0x37a1, (q15_t)0xc08d, (q15_t)0x3795, (q15_t)0xc08e, (q15_t)0x3788, (q15_t)0xc090, (q15_t)0x377c, (q15_t)0xc092, (q15_t)0x376f, (q15_t)0xc093, (q15_t)0x3763, (q15_t)0xc095, (q15_t)0x3757, (q15_t)0xc097, (q15_t)0x374a, (q15_t)0xc098, (q15_t)0x373e, (q15_t)0xc09a, (q15_t)0x3731, (q15_t)0xc09c, (q15_t)0x3725, (q15_t)0xc09e, (q15_t)0x3718, (q15_t)0xc09f, (q15_t)0x370c, (q15_t)0xc0a1, (q15_t)0x36ff, (q15_t)0xc0a3, (q15_t)0x36f3, (q15_t)0xc0a5, (q15_t)0x36e7, (q15_t)0xc0a6, (q15_t)0x36da, (q15_t)0xc0a8, (q15_t)0x36ce, (q15_t)0xc0aa, (q15_t)0x36c1, (q15_t)0xc0ac, (q15_t)0x36b5, (q15_t)0xc0ae, (q15_t)0x36a8, (q15_t)0xc0af, (q15_t)0x369c, (q15_t)0xc0b1, (q15_t)0x3690, (q15_t)0xc0b3, (q15_t)0x3683, (q15_t)0xc0b5, (q15_t)0x3677, (q15_t)0xc0b7, (q15_t)0x366a, (q15_t)0xc0b9, (q15_t)0x365e, (q15_t)0xc0bb, (q15_t)0x3651, (q15_t)0xc0bd, (q15_t)0x3645, (q15_t)0xc0be, (q15_t)0x3639, (q15_t)0xc0c0, (q15_t)0x362c, (q15_t)0xc0c2, (q15_t)0x3620, (q15_t)0xc0c4, (q15_t)0x3613, (q15_t)0xc0c6, (q15_t)0x3607, (q15_t)0xc0c8, (q15_t)0x35fa, (q15_t)0xc0ca, (q15_t)0x35ee, (q15_t)0xc0cc, (q15_t)0x35e2, (q15_t)0xc0ce, (q15_t)0x35d5, (q15_t)0xc0d0, (q15_t)0x35c9, (q15_t)0xc0d2, (q15_t)0x35bc, (q15_t)0xc0d4, (q15_t)0x35b0, (q15_t)0xc0d6, (q15_t)0x35a4, (q15_t)0xc0d8, (q15_t)0x3597, (q15_t)0xc0da, (q15_t)0x358b, (q15_t)0xc0dc, (q15_t)0x357e, (q15_t)0xc0de, (q15_t)0x3572, (q15_t)0xc0e0, (q15_t)0x3566, (q15_t)0xc0e2, (q15_t)0x3559, (q15_t)0xc0e4, (q15_t)0x354d, (q15_t)0xc0e7, (q15_t)0x3540, (q15_t)0xc0e9, (q15_t)0x3534, (q15_t)0xc0eb, (q15_t)0x3528, (q15_t)0xc0ed, (q15_t)0x351b, (q15_t)0xc0ef, (q15_t)0x350f, (q15_t)0xc0f1, (q15_t)0x3503, (q15_t)0xc0f3, (q15_t)0x34f6, (q15_t)0xc0f6, (q15_t)0x34ea, (q15_t)0xc0f8, (q15_t)0x34dd, (q15_t)0xc0fa, (q15_t)0x34d1, (q15_t)0xc0fc, (q15_t)0x34c5, (q15_t)0xc0fe, (q15_t)0x34b8, (q15_t)0xc100, (q15_t)0x34ac, (q15_t)0xc103, (q15_t)0x34a0, (q15_t)0xc105, (q15_t)0x3493, (q15_t)0xc107, (q15_t)0x3487, (q15_t)0xc109, (q15_t)0x347b, (q15_t)0xc10c, (q15_t)0x346e, (q15_t)0xc10e, (q15_t)0x3462, (q15_t)0xc110, (q15_t)0x3455, (q15_t)0xc113, (q15_t)0x3449, (q15_t)0xc115, (q15_t)0x343d, (q15_t)0xc117, (q15_t)0x3430, (q15_t)0xc119, (q15_t)0x3424, (q15_t)0xc11c, (q15_t)0x3418, (q15_t)0xc11e, (q15_t)0x340b, (q15_t)0xc120, (q15_t)0x33ff, (q15_t)0xc123, (q15_t)0x33f3, (q15_t)0xc125, (q15_t)0x33e6, (q15_t)0xc128, (q15_t)0x33da, (q15_t)0xc12a, (q15_t)0x33ce, (q15_t)0xc12c, (q15_t)0x33c1, (q15_t)0xc12f, (q15_t)0x33b5, (q15_t)0xc131, (q15_t)0x33a9, (q15_t)0xc134, (q15_t)0x339c, (q15_t)0xc136, (q15_t)0x3390, (q15_t)0xc138, (q15_t)0x3384, (q15_t)0xc13b, (q15_t)0x3377, (q15_t)0xc13d, (q15_t)0x336b, (q15_t)0xc140, (q15_t)0x335f, (q15_t)0xc142, (q15_t)0x3352, (q15_t)0xc145, (q15_t)0x3346, (q15_t)0xc147, (q15_t)0x333a, (q15_t)0xc14a, (q15_t)0x332d, (q15_t)0xc14c, (q15_t)0x3321, (q15_t)0xc14f, (q15_t)0x3315, (q15_t)0xc151, (q15_t)0x3308, (q15_t)0xc154, (q15_t)0x32fc, (q15_t)0xc156, (q15_t)0x32f0, (q15_t)0xc159, (q15_t)0x32e4, (q15_t)0xc15b, (q15_t)0x32d7, (q15_t)0xc15e, (q15_t)0x32cb, (q15_t)0xc161, (q15_t)0x32bf, (q15_t)0xc163, (q15_t)0x32b2, (q15_t)0xc166, (q15_t)0x32a6, (q15_t)0xc168, (q15_t)0x329a, (q15_t)0xc16b, (q15_t)0x328e, (q15_t)0xc16e, (q15_t)0x3281, (q15_t)0xc170, (q15_t)0x3275, (q15_t)0xc173, (q15_t)0x3269, (q15_t)0xc176, (q15_t)0x325c, (q15_t)0xc178, (q15_t)0x3250, (q15_t)0xc17b, (q15_t)0x3244, (q15_t)0xc17e, (q15_t)0x3238, (q15_t)0xc180, (q15_t)0x322b, (q15_t)0xc183, (q15_t)0x321f, (q15_t)0xc186, (q15_t)0x3213, (q15_t)0xc189, (q15_t)0x3207, (q15_t)0xc18b, (q15_t)0x31fa, (q15_t)0xc18e, (q15_t)0x31ee, (q15_t)0xc191, (q15_t)0x31e2, (q15_t)0xc194, (q15_t)0x31d5, (q15_t)0xc196, (q15_t)0x31c9, (q15_t)0xc199, (q15_t)0x31bd, (q15_t)0xc19c, (q15_t)0x31b1, (q15_t)0xc19f, (q15_t)0x31a4, (q15_t)0xc1a2, (q15_t)0x3198, (q15_t)0xc1a4, (q15_t)0x318c, (q15_t)0xc1a7, (q15_t)0x3180, (q15_t)0xc1aa, (q15_t)0x3174, (q15_t)0xc1ad, (q15_t)0x3167, (q15_t)0xc1b0, (q15_t)0x315b, (q15_t)0xc1b3, (q15_t)0x314f, (q15_t)0xc1b6, (q15_t)0x3143, (q15_t)0xc1b8, (q15_t)0x3136, (q15_t)0xc1bb, (q15_t)0x312a, (q15_t)0xc1be, (q15_t)0x311e, (q15_t)0xc1c1, (q15_t)0x3112, (q15_t)0xc1c4, (q15_t)0x3105, (q15_t)0xc1c7, (q15_t)0x30f9, (q15_t)0xc1ca, (q15_t)0x30ed, (q15_t)0xc1cd, (q15_t)0x30e1, (q15_t)0xc1d0, (q15_t)0x30d5, (q15_t)0xc1d3, (q15_t)0x30c8, (q15_t)0xc1d6, (q15_t)0x30bc, (q15_t)0xc1d9, (q15_t)0x30b0, (q15_t)0xc1dc, (q15_t)0x30a4, (q15_t)0xc1df, (q15_t)0x3098, (q15_t)0xc1e2, (q15_t)0x308b, (q15_t)0xc1e5, (q15_t)0x307f, (q15_t)0xc1e8, (q15_t)0x3073, (q15_t)0xc1eb, (q15_t)0x3067, (q15_t)0xc1ee, (q15_t)0x305b, (q15_t)0xc1f1, (q15_t)0x304e, (q15_t)0xc1f4, (q15_t)0x3042, (q15_t)0xc1f7, (q15_t)0x3036, (q15_t)0xc1fa, (q15_t)0x302a, (q15_t)0xc1fd, (q15_t)0x301e, (q15_t)0xc201, (q15_t)0x3012, (q15_t)0xc204, (q15_t)0x3005, (q15_t)0xc207, (q15_t)0x2ff9, (q15_t)0xc20a, (q15_t)0x2fed, (q15_t)0xc20d, (q15_t)0x2fe1, (q15_t)0xc210, (q15_t)0x2fd5, (q15_t)0xc213, (q15_t)0x2fc9, (q15_t)0xc217, (q15_t)0x2fbc, (q15_t)0xc21a, (q15_t)0x2fb0, (q15_t)0xc21d, (q15_t)0x2fa4, (q15_t)0xc220, (q15_t)0x2f98, (q15_t)0xc223, (q15_t)0x2f8c, (q15_t)0xc227, (q15_t)0x2f80, (q15_t)0xc22a, (q15_t)0x2f74, (q15_t)0xc22d, (q15_t)0x2f67, (q15_t)0xc230, (q15_t)0x2f5b, (q15_t)0xc234, (q15_t)0x2f4f, (q15_t)0xc237, (q15_t)0x2f43, (q15_t)0xc23a, (q15_t)0x2f37, (q15_t)0xc23e, (q15_t)0x2f2b, (q15_t)0xc241, (q15_t)0x2f1f, (q15_t)0xc244, (q15_t)0x2f13, (q15_t)0xc247, (q15_t)0x2f06, (q15_t)0xc24b, (q15_t)0x2efa, (q15_t)0xc24e, (q15_t)0x2eee, (q15_t)0xc251, (q15_t)0x2ee2, (q15_t)0xc255, (q15_t)0x2ed6, (q15_t)0xc258, (q15_t)0x2eca, (q15_t)0xc25c, (q15_t)0x2ebe, (q15_t)0xc25f, (q15_t)0x2eb2, (q15_t)0xc262, (q15_t)0x2ea6, (q15_t)0xc266, (q15_t)0x2e99, (q15_t)0xc269, (q15_t)0x2e8d, (q15_t)0xc26d, (q15_t)0x2e81, (q15_t)0xc270, (q15_t)0x2e75, (q15_t)0xc273, (q15_t)0x2e69, (q15_t)0xc277, (q15_t)0x2e5d, (q15_t)0xc27a, (q15_t)0x2e51, (q15_t)0xc27e, (q15_t)0x2e45, (q15_t)0xc281, (q15_t)0x2e39, (q15_t)0xc285, (q15_t)0x2e2d, (q15_t)0xc288, (q15_t)0x2e21, (q15_t)0xc28c, (q15_t)0x2e15, (q15_t)0xc28f, (q15_t)0x2e09, (q15_t)0xc293, (q15_t)0x2dfc, (q15_t)0xc296, (q15_t)0x2df0, (q15_t)0xc29a, (q15_t)0x2de4, (q15_t)0xc29d, (q15_t)0x2dd8, (q15_t)0xc2a1, (q15_t)0x2dcc, (q15_t)0xc2a5, (q15_t)0x2dc0, (q15_t)0xc2a8, (q15_t)0x2db4, (q15_t)0xc2ac, (q15_t)0x2da8, (q15_t)0xc2af, (q15_t)0x2d9c, (q15_t)0xc2b3, (q15_t)0x2d90, (q15_t)0xc2b7, (q15_t)0x2d84, (q15_t)0xc2ba, (q15_t)0x2d78, (q15_t)0xc2be, (q15_t)0x2d6c, (q15_t)0xc2c1, (q15_t)0x2d60, (q15_t)0xc2c5, (q15_t)0x2d54, (q15_t)0xc2c9, (q15_t)0x2d48, (q15_t)0xc2cc, (q15_t)0x2d3c, (q15_t)0xc2d0, (q15_t)0x2d30, (q15_t)0xc2d4, (q15_t)0x2d24, (q15_t)0xc2d8, (q15_t)0x2d18, (q15_t)0xc2db, (q15_t)0x2d0c, (q15_t)0xc2df, (q15_t)0x2d00, (q15_t)0xc2e3, (q15_t)0x2cf4, (q15_t)0xc2e6, (q15_t)0x2ce8, (q15_t)0xc2ea, (q15_t)0x2cdc, (q15_t)0xc2ee, (q15_t)0x2cd0, (q15_t)0xc2f2, (q15_t)0x2cc4, (q15_t)0xc2f5, (q15_t)0x2cb8, (q15_t)0xc2f9, (q15_t)0x2cac, (q15_t)0xc2fd, (q15_t)0x2ca0, (q15_t)0xc301, (q15_t)0x2c94, (q15_t)0xc305, (q15_t)0x2c88, (q15_t)0xc308, (q15_t)0x2c7c, (q15_t)0xc30c, (q15_t)0x2c70, (q15_t)0xc310, (q15_t)0x2c64, (q15_t)0xc314, (q15_t)0x2c58, (q15_t)0xc318, (q15_t)0x2c4c, (q15_t)0xc31c, (q15_t)0x2c40, (q15_t)0xc320, (q15_t)0x2c34, (q15_t)0xc323, (q15_t)0x2c28, (q15_t)0xc327, (q15_t)0x2c1c, (q15_t)0xc32b, (q15_t)0x2c10, (q15_t)0xc32f, (q15_t)0x2c05, (q15_t)0xc333, (q15_t)0x2bf9, (q15_t)0xc337, (q15_t)0x2bed, (q15_t)0xc33b, (q15_t)0x2be1, (q15_t)0xc33f, (q15_t)0x2bd5, (q15_t)0xc343, (q15_t)0x2bc9, (q15_t)0xc347, (q15_t)0x2bbd, (q15_t)0xc34b, (q15_t)0x2bb1, (q15_t)0xc34f, (q15_t)0x2ba5, (q15_t)0xc353, (q15_t)0x2b99, (q15_t)0xc357, (q15_t)0x2b8d, (q15_t)0xc35b, (q15_t)0x2b81, (q15_t)0xc35f, (q15_t)0x2b75, (q15_t)0xc363, (q15_t)0x2b6a, (q15_t)0xc367, (q15_t)0x2b5e, (q15_t)0xc36b, (q15_t)0x2b52, (q15_t)0xc36f, (q15_t)0x2b46, (q15_t)0xc373, (q15_t)0x2b3a, (q15_t)0xc377, (q15_t)0x2b2e, (q15_t)0xc37b, (q15_t)0x2b22, (q15_t)0xc37f, (q15_t)0x2b16, (q15_t)0xc383, (q15_t)0x2b0a, (q15_t)0xc387, (q15_t)0x2aff, (q15_t)0xc38c, (q15_t)0x2af3, (q15_t)0xc390, (q15_t)0x2ae7, (q15_t)0xc394, (q15_t)0x2adb, (q15_t)0xc398, (q15_t)0x2acf, (q15_t)0xc39c, (q15_t)0x2ac3, (q15_t)0xc3a0, (q15_t)0x2ab7, (q15_t)0xc3a5, (q15_t)0x2aac, (q15_t)0xc3a9, (q15_t)0x2aa0, (q15_t)0xc3ad, (q15_t)0x2a94, (q15_t)0xc3b1, (q15_t)0x2a88, (q15_t)0xc3b5, (q15_t)0x2a7c, (q15_t)0xc3ba, (q15_t)0x2a70, (q15_t)0xc3be, (q15_t)0x2a65, (q15_t)0xc3c2, (q15_t)0x2a59, (q15_t)0xc3c6, (q15_t)0x2a4d, (q15_t)0xc3ca, (q15_t)0x2a41, (q15_t)0xc3cf, (q15_t)0x2a35, (q15_t)0xc3d3, (q15_t)0x2a29, (q15_t)0xc3d7, (q15_t)0x2a1e, (q15_t)0xc3dc, (q15_t)0x2a12, (q15_t)0xc3e0, (q15_t)0x2a06, (q15_t)0xc3e4, (q15_t)0x29fa, (q15_t)0xc3e9, (q15_t)0x29ee, (q15_t)0xc3ed, (q15_t)0x29e3, (q15_t)0xc3f1, (q15_t)0x29d7, (q15_t)0xc3f6, (q15_t)0x29cb, (q15_t)0xc3fa, (q15_t)0x29bf, (q15_t)0xc3fe, (q15_t)0x29b4, (q15_t)0xc403, (q15_t)0x29a8, (q15_t)0xc407, (q15_t)0x299c, (q15_t)0xc40b, (q15_t)0x2990, (q15_t)0xc410, (q15_t)0x2984, (q15_t)0xc414, (q15_t)0x2979, (q15_t)0xc419, (q15_t)0x296d, (q15_t)0xc41d, (q15_t)0x2961, (q15_t)0xc422, (q15_t)0x2955, (q15_t)0xc426, (q15_t)0x294a, (q15_t)0xc42a, (q15_t)0x293e, (q15_t)0xc42f, (q15_t)0x2932, (q15_t)0xc433, (q15_t)0x2926, (q15_t)0xc438, (q15_t)0x291b, (q15_t)0xc43c, (q15_t)0x290f, (q15_t)0xc441, (q15_t)0x2903, (q15_t)0xc445, (q15_t)0x28f7, (q15_t)0xc44a, (q15_t)0x28ec, (q15_t)0xc44e, (q15_t)0x28e0, (q15_t)0xc453, (q15_t)0x28d4, (q15_t)0xc457, (q15_t)0x28c9, (q15_t)0xc45c, (q15_t)0x28bd, (q15_t)0xc461, (q15_t)0x28b1, (q15_t)0xc465, (q15_t)0x28a5, (q15_t)0xc46a, (q15_t)0x289a, (q15_t)0xc46e, (q15_t)0x288e, (q15_t)0xc473, (q15_t)0x2882, (q15_t)0xc478, (q15_t)0x2877, (q15_t)0xc47c, (q15_t)0x286b, (q15_t)0xc481, (q15_t)0x285f, (q15_t)0xc485, (q15_t)0x2854, (q15_t)0xc48a, (q15_t)0x2848, (q15_t)0xc48f, (q15_t)0x283c, (q15_t)0xc493, (q15_t)0x2831, (q15_t)0xc498, (q15_t)0x2825, (q15_t)0xc49d, (q15_t)0x2819, (q15_t)0xc4a1, (q15_t)0x280e, (q15_t)0xc4a6, (q15_t)0x2802, (q15_t)0xc4ab, (q15_t)0x27f6, (q15_t)0xc4b0, (q15_t)0x27eb, (q15_t)0xc4b4, (q15_t)0x27df, (q15_t)0xc4b9, (q15_t)0x27d3, (q15_t)0xc4be, (q15_t)0x27c8, (q15_t)0xc4c2, (q15_t)0x27bc, (q15_t)0xc4c7, (q15_t)0x27b1, (q15_t)0xc4cc, (q15_t)0x27a5, (q15_t)0xc4d1, (q15_t)0x2799, (q15_t)0xc4d6, (q15_t)0x278e, (q15_t)0xc4da, (q15_t)0x2782, (q15_t)0xc4df, (q15_t)0x2777, (q15_t)0xc4e4, (q15_t)0x276b, (q15_t)0xc4e9, (q15_t)0x275f, (q15_t)0xc4ee, (q15_t)0x2754, (q15_t)0xc4f2, (q15_t)0x2748, (q15_t)0xc4f7, (q15_t)0x273d, (q15_t)0xc4fc, (q15_t)0x2731, (q15_t)0xc501, (q15_t)0x2725, (q15_t)0xc506, (q15_t)0x271a, (q15_t)0xc50b, (q15_t)0x270e, (q15_t)0xc510, (q15_t)0x2703, (q15_t)0xc515, (q15_t)0x26f7, (q15_t)0xc51a, (q15_t)0x26ec, (q15_t)0xc51e, (q15_t)0x26e0, (q15_t)0xc523, (q15_t)0x26d4, (q15_t)0xc528, (q15_t)0x26c9, (q15_t)0xc52d, (q15_t)0x26bd, (q15_t)0xc532, (q15_t)0x26b2, (q15_t)0xc537, (q15_t)0x26a6, (q15_t)0xc53c, (q15_t)0x269b, (q15_t)0xc541, (q15_t)0x268f, (q15_t)0xc546, (q15_t)0x2684, (q15_t)0xc54b, (q15_t)0x2678, (q15_t)0xc550, (q15_t)0x266d, (q15_t)0xc555, (q15_t)0x2661, (q15_t)0xc55a, (q15_t)0x2656, (q15_t)0xc55f, (q15_t)0x264a, (q15_t)0xc564, (q15_t)0x263f, (q15_t)0xc569, (q15_t)0x2633, (q15_t)0xc56e, (q15_t)0x2628, (q15_t)0xc573, (q15_t)0x261c, (q15_t)0xc578, (q15_t)0x2611, (q15_t)0xc57e, (q15_t)0x2605, (q15_t)0xc583, (q15_t)0x25fa, (q15_t)0xc588, (q15_t)0x25ee, (q15_t)0xc58d, (q15_t)0x25e3, (q15_t)0xc592, (q15_t)0x25d7, (q15_t)0xc597, (q15_t)0x25cc, (q15_t)0xc59c, (q15_t)0x25c0, (q15_t)0xc5a1, (q15_t)0x25b5, (q15_t)0xc5a7, (q15_t)0x25a9, (q15_t)0xc5ac, (q15_t)0x259e, (q15_t)0xc5b1, (q15_t)0x2592, (q15_t)0xc5b6, (q15_t)0x2587, (q15_t)0xc5bb, (q15_t)0x257c, (q15_t)0xc5c1, (q15_t)0x2570, (q15_t)0xc5c6, (q15_t)0x2565, (q15_t)0xc5cb, (q15_t)0x2559, (q15_t)0xc5d0, (q15_t)0x254e, (q15_t)0xc5d5, (q15_t)0x2542, (q15_t)0xc5db, (q15_t)0x2537, (q15_t)0xc5e0, (q15_t)0x252c, (q15_t)0xc5e5, (q15_t)0x2520, (q15_t)0xc5ea, (q15_t)0x2515, (q15_t)0xc5f0, (q15_t)0x2509, (q15_t)0xc5f5, (q15_t)0x24fe, (q15_t)0xc5fa, (q15_t)0x24f3, (q15_t)0xc600, (q15_t)0x24e7, (q15_t)0xc605, (q15_t)0x24dc, (q15_t)0xc60a, (q15_t)0x24d0, (q15_t)0xc610, (q15_t)0x24c5, (q15_t)0xc615, (q15_t)0x24ba, (q15_t)0xc61a, (q15_t)0x24ae, (q15_t)0xc620, (q15_t)0x24a3, (q15_t)0xc625, (q15_t)0x2498, (q15_t)0xc62a, (q15_t)0x248c, (q15_t)0xc630, (q15_t)0x2481, (q15_t)0xc635, (q15_t)0x2476, (q15_t)0xc63b, (q15_t)0x246a, (q15_t)0xc640, (q15_t)0x245f, (q15_t)0xc645, (q15_t)0x2454, (q15_t)0xc64b, (q15_t)0x2448, (q15_t)0xc650, (q15_t)0x243d, (q15_t)0xc656, (q15_t)0x2432, (q15_t)0xc65b, (q15_t)0x2426, (q15_t)0xc661, (q15_t)0x241b, (q15_t)0xc666, (q15_t)0x2410, (q15_t)0xc66c, (q15_t)0x2404, (q15_t)0xc671, (q15_t)0x23f9, (q15_t)0xc677, (q15_t)0x23ee, (q15_t)0xc67c, (q15_t)0x23e2, (q15_t)0xc682, (q15_t)0x23d7, (q15_t)0xc687, (q15_t)0x23cc, (q15_t)0xc68d, (q15_t)0x23c1, (q15_t)0xc692, (q15_t)0x23b5, (q15_t)0xc698, (q15_t)0x23aa, (q15_t)0xc69d, (q15_t)0x239f, (q15_t)0xc6a3, (q15_t)0x2394, (q15_t)0xc6a8, (q15_t)0x2388, (q15_t)0xc6ae, (q15_t)0x237d, (q15_t)0xc6b4, (q15_t)0x2372, (q15_t)0xc6b9, (q15_t)0x2367, (q15_t)0xc6bf, (q15_t)0x235b, (q15_t)0xc6c5, (q15_t)0x2350, (q15_t)0xc6ca, (q15_t)0x2345, (q15_t)0xc6d0, (q15_t)0x233a, (q15_t)0xc6d5, (q15_t)0x232e, (q15_t)0xc6db, (q15_t)0x2323, (q15_t)0xc6e1, (q15_t)0x2318, (q15_t)0xc6e6, (q15_t)0x230d, (q15_t)0xc6ec, (q15_t)0x2301, (q15_t)0xc6f2, (q15_t)0x22f6, (q15_t)0xc6f7, (q15_t)0x22eb, (q15_t)0xc6fd, (q15_t)0x22e0, (q15_t)0xc703, (q15_t)0x22d5, (q15_t)0xc709, (q15_t)0x22ca, (q15_t)0xc70e, (q15_t)0x22be, (q15_t)0xc714, (q15_t)0x22b3, (q15_t)0xc71a, (q15_t)0x22a8, (q15_t)0xc720, (q15_t)0x229d, (q15_t)0xc725, (q15_t)0x2292, (q15_t)0xc72b, (q15_t)0x2287, (q15_t)0xc731, (q15_t)0x227b, (q15_t)0xc737, (q15_t)0x2270, (q15_t)0xc73d, (q15_t)0x2265, (q15_t)0xc742, (q15_t)0x225a, (q15_t)0xc748, (q15_t)0x224f, (q15_t)0xc74e, (q15_t)0x2244, (q15_t)0xc754, (q15_t)0x2239, (q15_t)0xc75a, (q15_t)0x222d, (q15_t)0xc75f, (q15_t)0x2222, (q15_t)0xc765, (q15_t)0x2217, (q15_t)0xc76b, (q15_t)0x220c, (q15_t)0xc771, (q15_t)0x2201, (q15_t)0xc777, (q15_t)0x21f6, (q15_t)0xc77d, (q15_t)0x21eb, (q15_t)0xc783, (q15_t)0x21e0, (q15_t)0xc789, (q15_t)0x21d5, (q15_t)0xc78f, (q15_t)0x21ca, (q15_t)0xc795, (q15_t)0x21be, (q15_t)0xc79a, (q15_t)0x21b3, (q15_t)0xc7a0, (q15_t)0x21a8, (q15_t)0xc7a6, (q15_t)0x219d, (q15_t)0xc7ac, (q15_t)0x2192, (q15_t)0xc7b2, (q15_t)0x2187, (q15_t)0xc7b8, (q15_t)0x217c, (q15_t)0xc7be, (q15_t)0x2171, (q15_t)0xc7c4, (q15_t)0x2166, (q15_t)0xc7ca, (q15_t)0x215b, (q15_t)0xc7d0, (q15_t)0x2150, (q15_t)0xc7d6, (q15_t)0x2145, (q15_t)0xc7dc, (q15_t)0x213a, (q15_t)0xc7e2, (q15_t)0x212f, (q15_t)0xc7e8, (q15_t)0x2124, (q15_t)0xc7ee, (q15_t)0x2119, (q15_t)0xc7f5, (q15_t)0x210e, (q15_t)0xc7fb, (q15_t)0x2103, (q15_t)0xc801, (q15_t)0x20f8, (q15_t)0xc807, (q15_t)0x20ed, (q15_t)0xc80d, (q15_t)0x20e2, (q15_t)0xc813, (q15_t)0x20d7, (q15_t)0xc819, (q15_t)0x20cc, (q15_t)0xc81f, (q15_t)0x20c1, (q15_t)0xc825, (q15_t)0x20b6, (q15_t)0xc82b, (q15_t)0x20ab, (q15_t)0xc832, (q15_t)0x20a0, (q15_t)0xc838, (q15_t)0x2095, (q15_t)0xc83e, (q15_t)0x208a, (q15_t)0xc844, (q15_t)0x207f, (q15_t)0xc84a, (q15_t)0x2074, (q15_t)0xc850, (q15_t)0x2069, (q15_t)0xc857, (q15_t)0x205e, (q15_t)0xc85d, (q15_t)0x2054, (q15_t)0xc863, (q15_t)0x2049, (q15_t)0xc869, (q15_t)0x203e, (q15_t)0xc870, (q15_t)0x2033, (q15_t)0xc876, (q15_t)0x2028, (q15_t)0xc87c, (q15_t)0x201d, (q15_t)0xc882, (q15_t)0x2012, (q15_t)0xc889, (q15_t)0x2007, (q15_t)0xc88f, (q15_t)0x1ffc, (q15_t)0xc895, (q15_t)0x1ff1, (q15_t)0xc89b, (q15_t)0x1fe7, (q15_t)0xc8a2, (q15_t)0x1fdc, (q15_t)0xc8a8, (q15_t)0x1fd1, (q15_t)0xc8ae, (q15_t)0x1fc6, (q15_t)0xc8b5, (q15_t)0x1fbb, (q15_t)0xc8bb, (q15_t)0x1fb0, (q15_t)0xc8c1, (q15_t)0x1fa5, (q15_t)0xc8c8, (q15_t)0x1f9b, (q15_t)0xc8ce, (q15_t)0x1f90, (q15_t)0xc8d4, (q15_t)0x1f85, (q15_t)0xc8db, (q15_t)0x1f7a, (q15_t)0xc8e1, (q15_t)0x1f6f, (q15_t)0xc8e8, (q15_t)0x1f65, (q15_t)0xc8ee, (q15_t)0x1f5a, (q15_t)0xc8f4, (q15_t)0x1f4f, (q15_t)0xc8fb, (q15_t)0x1f44, (q15_t)0xc901, (q15_t)0x1f39, (q15_t)0xc908, (q15_t)0x1f2f, (q15_t)0xc90e, (q15_t)0x1f24, (q15_t)0xc915, (q15_t)0x1f19, (q15_t)0xc91b, (q15_t)0x1f0e, (q15_t)0xc921, (q15_t)0x1f03, (q15_t)0xc928, (q15_t)0x1ef9, (q15_t)0xc92e, (q15_t)0x1eee, (q15_t)0xc935, (q15_t)0x1ee3, (q15_t)0xc93b, (q15_t)0x1ed8, (q15_t)0xc942, (q15_t)0x1ece, (q15_t)0xc948, (q15_t)0x1ec3, (q15_t)0xc94f, (q15_t)0x1eb8, (q15_t)0xc955, (q15_t)0x1ead, (q15_t)0xc95c, (q15_t)0x1ea3, (q15_t)0xc963, (q15_t)0x1e98, (q15_t)0xc969, (q15_t)0x1e8d, (q15_t)0xc970, (q15_t)0x1e83, (q15_t)0xc976, (q15_t)0x1e78, (q15_t)0xc97d, (q15_t)0x1e6d, (q15_t)0xc983, (q15_t)0x1e62, (q15_t)0xc98a, (q15_t)0x1e58, (q15_t)0xc991, (q15_t)0x1e4d, (q15_t)0xc997, (q15_t)0x1e42, (q15_t)0xc99e, (q15_t)0x1e38, (q15_t)0xc9a4, (q15_t)0x1e2d, (q15_t)0xc9ab, (q15_t)0x1e22, (q15_t)0xc9b2, (q15_t)0x1e18, (q15_t)0xc9b8, (q15_t)0x1e0d, (q15_t)0xc9bf, (q15_t)0x1e02, (q15_t)0xc9c6, (q15_t)0x1df8, (q15_t)0xc9cc, (q15_t)0x1ded, (q15_t)0xc9d3, (q15_t)0x1de2, (q15_t)0xc9da, (q15_t)0x1dd8, (q15_t)0xc9e0, (q15_t)0x1dcd, (q15_t)0xc9e7, (q15_t)0x1dc3, (q15_t)0xc9ee, (q15_t)0x1db8, (q15_t)0xc9f5, (q15_t)0x1dad, (q15_t)0xc9fb, (q15_t)0x1da3, (q15_t)0xca02, (q15_t)0x1d98, (q15_t)0xca09, (q15_t)0x1d8e, (q15_t)0xca10, (q15_t)0x1d83, (q15_t)0xca16, (q15_t)0x1d78, (q15_t)0xca1d, (q15_t)0x1d6e, (q15_t)0xca24, (q15_t)0x1d63, (q15_t)0xca2b, (q15_t)0x1d59, (q15_t)0xca32, (q15_t)0x1d4e, (q15_t)0xca38, (q15_t)0x1d44, (q15_t)0xca3f, (q15_t)0x1d39, (q15_t)0xca46, (q15_t)0x1d2e, (q15_t)0xca4d, (q15_t)0x1d24, (q15_t)0xca54, (q15_t)0x1d19, (q15_t)0xca5b, (q15_t)0x1d0f, (q15_t)0xca61, (q15_t)0x1d04, (q15_t)0xca68, (q15_t)0x1cfa, (q15_t)0xca6f, (q15_t)0x1cef, (q15_t)0xca76, (q15_t)0x1ce5, (q15_t)0xca7d, (q15_t)0x1cda, (q15_t)0xca84, (q15_t)0x1cd0, (q15_t)0xca8b, (q15_t)0x1cc5, (q15_t)0xca92, (q15_t)0x1cbb, (q15_t)0xca99, (q15_t)0x1cb0, (q15_t)0xca9f, (q15_t)0x1ca6, (q15_t)0xcaa6, (q15_t)0x1c9b, (q15_t)0xcaad, (q15_t)0x1c91, (q15_t)0xcab4, (q15_t)0x1c86, (q15_t)0xcabb, (q15_t)0x1c7c, (q15_t)0xcac2, (q15_t)0x1c72, (q15_t)0xcac9, (q15_t)0x1c67, (q15_t)0xcad0, (q15_t)0x1c5d, (q15_t)0xcad7, (q15_t)0x1c52, (q15_t)0xcade, (q15_t)0x1c48, (q15_t)0xcae5, (q15_t)0x1c3d, (q15_t)0xcaec, (q15_t)0x1c33, (q15_t)0xcaf3, (q15_t)0x1c29, (q15_t)0xcafa, (q15_t)0x1c1e, (q15_t)0xcb01, (q15_t)0x1c14, (q15_t)0xcb08, (q15_t)0x1c09, (q15_t)0xcb0f, (q15_t)0x1bff, (q15_t)0xcb16, (q15_t)0x1bf5, (q15_t)0xcb1e, (q15_t)0x1bea, (q15_t)0xcb25, (q15_t)0x1be0, (q15_t)0xcb2c, (q15_t)0x1bd5, (q15_t)0xcb33, (q15_t)0x1bcb, (q15_t)0xcb3a, (q15_t)0x1bc1, (q15_t)0xcb41, (q15_t)0x1bb6, (q15_t)0xcb48, (q15_t)0x1bac, (q15_t)0xcb4f, (q15_t)0x1ba2, (q15_t)0xcb56, (q15_t)0x1b97, (q15_t)0xcb5e, (q15_t)0x1b8d, (q15_t)0xcb65, (q15_t)0x1b83, (q15_t)0xcb6c, (q15_t)0x1b78, (q15_t)0xcb73, (q15_t)0x1b6e, (q15_t)0xcb7a, (q15_t)0x1b64, (q15_t)0xcb81, (q15_t)0x1b59, (q15_t)0xcb89, (q15_t)0x1b4f, (q15_t)0xcb90, (q15_t)0x1b45, (q15_t)0xcb97, (q15_t)0x1b3b, (q15_t)0xcb9e, (q15_t)0x1b30, (q15_t)0xcba5, (q15_t)0x1b26, (q15_t)0xcbad, (q15_t)0x1b1c, (q15_t)0xcbb4, (q15_t)0x1b11, (q15_t)0xcbbb, (q15_t)0x1b07, (q15_t)0xcbc2, (q15_t)0x1afd, (q15_t)0xcbca, (q15_t)0x1af3, (q15_t)0xcbd1, (q15_t)0x1ae8, (q15_t)0xcbd8, (q15_t)0x1ade, (q15_t)0xcbe0, (q15_t)0x1ad4, (q15_t)0xcbe7, (q15_t)0x1aca, (q15_t)0xcbee, (q15_t)0x1abf, (q15_t)0xcbf5, (q15_t)0x1ab5, (q15_t)0xcbfd, (q15_t)0x1aab, (q15_t)0xcc04, (q15_t)0x1aa1, (q15_t)0xcc0b, (q15_t)0x1a97, (q15_t)0xcc13, (q15_t)0x1a8c, (q15_t)0xcc1a, (q15_t)0x1a82, (q15_t)0xcc21, (q15_t)0x1a78, (q15_t)0xcc29, (q15_t)0x1a6e, (q15_t)0xcc30, (q15_t)0x1a64, (q15_t)0xcc38, (q15_t)0x1a5a, (q15_t)0xcc3f, (q15_t)0x1a4f, (q15_t)0xcc46, (q15_t)0x1a45, (q15_t)0xcc4e, (q15_t)0x1a3b, (q15_t)0xcc55, (q15_t)0x1a31, (q15_t)0xcc5d, (q15_t)0x1a27, (q15_t)0xcc64, (q15_t)0x1a1d, (q15_t)0xcc6b, (q15_t)0x1a13, (q15_t)0xcc73, (q15_t)0x1a08, (q15_t)0xcc7a, (q15_t)0x19fe, (q15_t)0xcc82, (q15_t)0x19f4, (q15_t)0xcc89, (q15_t)0x19ea, (q15_t)0xcc91, (q15_t)0x19e0, (q15_t)0xcc98, (q15_t)0x19d6, (q15_t)0xcca0, (q15_t)0x19cc, (q15_t)0xcca7, (q15_t)0x19c2, (q15_t)0xccaf, (q15_t)0x19b8, (q15_t)0xccb6, (q15_t)0x19ae, (q15_t)0xccbe, (q15_t)0x19a4, (q15_t)0xccc5, (q15_t)0x199a, (q15_t)0xcccd, (q15_t)0x198f, (q15_t)0xccd4, (q15_t)0x1985, (q15_t)0xccdc, (q15_t)0x197b, (q15_t)0xcce3, (q15_t)0x1971, (q15_t)0xcceb, (q15_t)0x1967, (q15_t)0xccf3, (q15_t)0x195d, (q15_t)0xccfa, (q15_t)0x1953, (q15_t)0xcd02, (q15_t)0x1949, (q15_t)0xcd09, (q15_t)0x193f, (q15_t)0xcd11, (q15_t)0x1935, (q15_t)0xcd19, (q15_t)0x192b, (q15_t)0xcd20, (q15_t)0x1921, (q15_t)0xcd28, (q15_t)0x1917, (q15_t)0xcd30, (q15_t)0x190d, (q15_t)0xcd37, (q15_t)0x1903, (q15_t)0xcd3f, (q15_t)0x18f9, (q15_t)0xcd46, (q15_t)0x18ef, (q15_t)0xcd4e, (q15_t)0x18e6, (q15_t)0xcd56, (q15_t)0x18dc, (q15_t)0xcd5d, (q15_t)0x18d2, (q15_t)0xcd65, (q15_t)0x18c8, (q15_t)0xcd6d, (q15_t)0x18be, (q15_t)0xcd75, (q15_t)0x18b4, (q15_t)0xcd7c, (q15_t)0x18aa, (q15_t)0xcd84, (q15_t)0x18a0, (q15_t)0xcd8c, (q15_t)0x1896, (q15_t)0xcd93, (q15_t)0x188c, (q15_t)0xcd9b, (q15_t)0x1882, (q15_t)0xcda3, (q15_t)0x1878, (q15_t)0xcdab, (q15_t)0x186f, (q15_t)0xcdb2, (q15_t)0x1865, (q15_t)0xcdba, (q15_t)0x185b, (q15_t)0xcdc2, (q15_t)0x1851, (q15_t)0xcdca, (q15_t)0x1847, (q15_t)0xcdd2, (q15_t)0x183d, (q15_t)0xcdd9, (q15_t)0x1833, (q15_t)0xcde1, (q15_t)0x182a, (q15_t)0xcde9, (q15_t)0x1820, (q15_t)0xcdf1, (q15_t)0x1816, (q15_t)0xcdf9, (q15_t)0x180c, (q15_t)0xce01, (q15_t)0x1802, (q15_t)0xce08, (q15_t)0x17f8, (q15_t)0xce10, (q15_t)0x17ef, (q15_t)0xce18, (q15_t)0x17e5, (q15_t)0xce20, (q15_t)0x17db, (q15_t)0xce28, (q15_t)0x17d1, (q15_t)0xce30, (q15_t)0x17c8, (q15_t)0xce38, (q15_t)0x17be, (q15_t)0xce40, (q15_t)0x17b4, (q15_t)0xce47, (q15_t)0x17aa, (q15_t)0xce4f, (q15_t)0x17a0, (q15_t)0xce57, (q15_t)0x1797, (q15_t)0xce5f, (q15_t)0x178d, (q15_t)0xce67, (q15_t)0x1783, (q15_t)0xce6f, (q15_t)0x177a, (q15_t)0xce77, (q15_t)0x1770, (q15_t)0xce7f, (q15_t)0x1766, (q15_t)0xce87, (q15_t)0x175c, (q15_t)0xce8f, (q15_t)0x1753, (q15_t)0xce97, (q15_t)0x1749, (q15_t)0xce9f, (q15_t)0x173f, (q15_t)0xcea7, (q15_t)0x1736, (q15_t)0xceaf, (q15_t)0x172c, (q15_t)0xceb7, (q15_t)0x1722, (q15_t)0xcebf, (q15_t)0x1719, (q15_t)0xcec7, (q15_t)0x170f, (q15_t)0xcecf, (q15_t)0x1705, (q15_t)0xced7, (q15_t)0x16fc, (q15_t)0xcedf, (q15_t)0x16f2, (q15_t)0xcee7, (q15_t)0x16e8, (q15_t)0xceef, (q15_t)0x16df, (q15_t)0xcef7, (q15_t)0x16d5, (q15_t)0xceff, (q15_t)0x16cb, (q15_t)0xcf07, (q15_t)0x16c2, (q15_t)0xcf10, (q15_t)0x16b8, (q15_t)0xcf18, (q15_t)0x16af, (q15_t)0xcf20, (q15_t)0x16a5, (q15_t)0xcf28, (q15_t)0x169b, (q15_t)0xcf30, (q15_t)0x1692, (q15_t)0xcf38, (q15_t)0x1688, (q15_t)0xcf40, (q15_t)0x167f, (q15_t)0xcf48, (q15_t)0x1675, (q15_t)0xcf51, (q15_t)0x166c, (q15_t)0xcf59, (q15_t)0x1662, (q15_t)0xcf61, (q15_t)0x1659, (q15_t)0xcf69, (q15_t)0x164f, (q15_t)0xcf71, (q15_t)0x1645, (q15_t)0xcf79, (q15_t)0x163c, (q15_t)0xcf82, (q15_t)0x1632, (q15_t)0xcf8a, (q15_t)0x1629, (q15_t)0xcf92, (q15_t)0x161f, (q15_t)0xcf9a, (q15_t)0x1616, (q15_t)0xcfa3, (q15_t)0x160c, (q15_t)0xcfab, (q15_t)0x1603, (q15_t)0xcfb3, (q15_t)0x15f9, (q15_t)0xcfbb, (q15_t)0x15f0, (q15_t)0xcfc4, (q15_t)0x15e6, (q15_t)0xcfcc, (q15_t)0x15dd, (q15_t)0xcfd4, (q15_t)0x15d4, (q15_t)0xcfdc, (q15_t)0x15ca, (q15_t)0xcfe5, (q15_t)0x15c1, (q15_t)0xcfed, (q15_t)0x15b7, (q15_t)0xcff5, (q15_t)0x15ae, (q15_t)0xcffe, (q15_t)0x15a4, (q15_t)0xd006, (q15_t)0x159b, (q15_t)0xd00e, (q15_t)0x1592, (q15_t)0xd016, (q15_t)0x1588, (q15_t)0xd01f, (q15_t)0x157f, (q15_t)0xd027, (q15_t)0x1575, (q15_t)0xd030, (q15_t)0x156c, (q15_t)0xd038, (q15_t)0x1563, (q15_t)0xd040, (q15_t)0x1559, (q15_t)0xd049, (q15_t)0x1550, (q15_t)0xd051, (q15_t)0x1547, (q15_t)0xd059, (q15_t)0x153d, (q15_t)0xd062, (q15_t)0x1534, (q15_t)0xd06a, (q15_t)0x152a, (q15_t)0xd073, (q15_t)0x1521, (q15_t)0xd07b, (q15_t)0x1518, (q15_t)0xd083, (q15_t)0x150e, (q15_t)0xd08c, (q15_t)0x1505, (q15_t)0xd094, (q15_t)0x14fc, (q15_t)0xd09d, (q15_t)0x14f3, (q15_t)0xd0a5, (q15_t)0x14e9, (q15_t)0xd0ae, (q15_t)0x14e0, (q15_t)0xd0b6, (q15_t)0x14d7, (q15_t)0xd0bf, (q15_t)0x14cd, (q15_t)0xd0c7, (q15_t)0x14c4, (q15_t)0xd0d0, (q15_t)0x14bb, (q15_t)0xd0d8, (q15_t)0x14b2, (q15_t)0xd0e0, (q15_t)0x14a8, (q15_t)0xd0e9, (q15_t)0x149f, (q15_t)0xd0f2, (q15_t)0x1496, (q15_t)0xd0fa, (q15_t)0x148d, (q15_t)0xd103, (q15_t)0x1483, (q15_t)0xd10b, (q15_t)0x147a, (q15_t)0xd114, (q15_t)0x1471, (q15_t)0xd11c, (q15_t)0x1468, (q15_t)0xd125, (q15_t)0x145f, (q15_t)0xd12d, (q15_t)0x1455, (q15_t)0xd136, (q15_t)0x144c, (q15_t)0xd13e, (q15_t)0x1443, (q15_t)0xd147, (q15_t)0x143a, (q15_t)0xd150, (q15_t)0x1431, (q15_t)0xd158, (q15_t)0x1428, (q15_t)0xd161, (q15_t)0x141e, (q15_t)0xd169, (q15_t)0x1415, (q15_t)0xd172, (q15_t)0x140c, (q15_t)0xd17b, (q15_t)0x1403, (q15_t)0xd183, (q15_t)0x13fa, (q15_t)0xd18c, (q15_t)0x13f1, (q15_t)0xd195, (q15_t)0x13e8, (q15_t)0xd19d, (q15_t)0x13df, (q15_t)0xd1a6, (q15_t)0x13d5, (q15_t)0xd1af, (q15_t)0x13cc, (q15_t)0xd1b7, (q15_t)0x13c3, (q15_t)0xd1c0, (q15_t)0x13ba, (q15_t)0xd1c9, (q15_t)0x13b1, (q15_t)0xd1d1, (q15_t)0x13a8, (q15_t)0xd1da, (q15_t)0x139f, (q15_t)0xd1e3, (q15_t)0x1396, (q15_t)0xd1eb, (q15_t)0x138d, (q15_t)0xd1f4, (q15_t)0x1384, (q15_t)0xd1fd, (q15_t)0x137b, (q15_t)0xd206, (q15_t)0x1372, (q15_t)0xd20e, (q15_t)0x1369, (q15_t)0xd217, (q15_t)0x1360, (q15_t)0xd220, (q15_t)0x1357, (q15_t)0xd229, (q15_t)0x134e, (q15_t)0xd231, (q15_t)0x1345, (q15_t)0xd23a, (q15_t)0x133c, (q15_t)0xd243, (q15_t)0x1333, (q15_t)0xd24c, (q15_t)0x132a, (q15_t)0xd255, (q15_t)0x1321, (q15_t)0xd25d, (q15_t)0x1318, (q15_t)0xd266, (q15_t)0x130f, (q15_t)0xd26f, (q15_t)0x1306, (q15_t)0xd278, (q15_t)0x12fd, (q15_t)0xd281, (q15_t)0x12f4, (q15_t)0xd28a, (q15_t)0x12eb, (q15_t)0xd292, (q15_t)0x12e2, (q15_t)0xd29b, (q15_t)0x12d9, (q15_t)0xd2a4, (q15_t)0x12d1, (q15_t)0xd2ad, (q15_t)0x12c8, (q15_t)0xd2b6, (q15_t)0x12bf, (q15_t)0xd2bf, (q15_t)0x12b6, (q15_t)0xd2c8, (q15_t)0x12ad, (q15_t)0xd2d1, (q15_t)0x12a4, (q15_t)0xd2d9, (q15_t)0x129b, (q15_t)0xd2e2, (q15_t)0x1292, (q15_t)0xd2eb, (q15_t)0x128a, (q15_t)0xd2f4, (q15_t)0x1281, (q15_t)0xd2fd, (q15_t)0x1278, (q15_t)0xd306, (q15_t)0x126f, (q15_t)0xd30f, (q15_t)0x1266, (q15_t)0xd318, (q15_t)0x125d, (q15_t)0xd321, (q15_t)0x1255, (q15_t)0xd32a, (q15_t)0x124c, (q15_t)0xd333, (q15_t)0x1243, (q15_t)0xd33c, (q15_t)0x123a, (q15_t)0xd345, (q15_t)0x1231, (q15_t)0xd34e, (q15_t)0x1229, (q15_t)0xd357, (q15_t)0x1220, (q15_t)0xd360, (q15_t)0x1217, (q15_t)0xd369, (q15_t)0x120e, (q15_t)0xd372, (q15_t)0x1206, (q15_t)0xd37b, (q15_t)0x11fd, (q15_t)0xd384, (q15_t)0x11f4, (q15_t)0xd38d, (q15_t)0x11eb, (q15_t)0xd396, (q15_t)0x11e3, (q15_t)0xd39f, (q15_t)0x11da, (q15_t)0xd3a8, (q15_t)0x11d1, (q15_t)0xd3b1, (q15_t)0x11c9, (q15_t)0xd3ba, (q15_t)0x11c0, (q15_t)0xd3c3, (q15_t)0x11b7, (q15_t)0xd3cc, (q15_t)0x11af, (q15_t)0xd3d5, (q15_t)0x11a6, (q15_t)0xd3df, (q15_t)0x119d, (q15_t)0xd3e8, (q15_t)0x1195, (q15_t)0xd3f1, (q15_t)0x118c, (q15_t)0xd3fa, (q15_t)0x1183, (q15_t)0xd403, (q15_t)0x117b, (q15_t)0xd40c, (q15_t)0x1172, (q15_t)0xd415, (q15_t)0x1169, (q15_t)0xd41e, (q15_t)0x1161, (q15_t)0xd428, (q15_t)0x1158, (q15_t)0xd431, (q15_t)0x1150, (q15_t)0xd43a, (q15_t)0x1147, (q15_t)0xd443, (q15_t)0x113e, (q15_t)0xd44c, (q15_t)0x1136, (q15_t)0xd455, (q15_t)0x112d, (q15_t)0xd45f, (q15_t)0x1125, (q15_t)0xd468, (q15_t)0x111c, (q15_t)0xd471, (q15_t)0x1114, (q15_t)0xd47a, (q15_t)0x110b, (q15_t)0xd483, (q15_t)0x1103, (q15_t)0xd48d, (q15_t)0x10fa, (q15_t)0xd496, (q15_t)0x10f2, (q15_t)0xd49f, (q15_t)0x10e9, (q15_t)0xd4a8, (q15_t)0x10e0, (q15_t)0xd4b2, (q15_t)0x10d8, (q15_t)0xd4bb, (q15_t)0x10d0, (q15_t)0xd4c4, (q15_t)0x10c7, (q15_t)0xd4cd, (q15_t)0x10bf, (q15_t)0xd4d7, (q15_t)0x10b6, (q15_t)0xd4e0, (q15_t)0x10ae, (q15_t)0xd4e9, (q15_t)0x10a5, (q15_t)0xd4f3, (q15_t)0x109d, (q15_t)0xd4fc, (q15_t)0x1094, (q15_t)0xd505, (q15_t)0x108c, (q15_t)0xd50e, (q15_t)0x1083, (q15_t)0xd518, (q15_t)0x107b, (q15_t)0xd521, (q15_t)0x1073, (q15_t)0xd52a, (q15_t)0x106a, (q15_t)0xd534, (q15_t)0x1062, (q15_t)0xd53d, (q15_t)0x1059, (q15_t)0xd547, (q15_t)0x1051, (q15_t)0xd550, (q15_t)0x1049, (q15_t)0xd559, (q15_t)0x1040, (q15_t)0xd563, (q15_t)0x1038, (q15_t)0xd56c, (q15_t)0x1030, (q15_t)0xd575, (q15_t)0x1027, (q15_t)0xd57f, (q15_t)0x101f, (q15_t)0xd588, (q15_t)0x1016, (q15_t)0xd592, (q15_t)0x100e, (q15_t)0xd59b, (q15_t)0x1006, (q15_t)0xd5a4, (q15_t)0xffe, (q15_t)0xd5ae, (q15_t)0xff5, (q15_t)0xd5b7, (q15_t)0xfed, (q15_t)0xd5c1, (q15_t)0xfe5, (q15_t)0xd5ca, (q15_t)0xfdc, (q15_t)0xd5d4, (q15_t)0xfd4, (q15_t)0xd5dd, (q15_t)0xfcc, (q15_t)0xd5e6, (q15_t)0xfc4, (q15_t)0xd5f0, (q15_t)0xfbb, (q15_t)0xd5f9, (q15_t)0xfb3, (q15_t)0xd603, (q15_t)0xfab, (q15_t)0xd60c, (q15_t)0xfa3, (q15_t)0xd616, (q15_t)0xf9a, (q15_t)0xd61f, (q15_t)0xf92, (q15_t)0xd629, (q15_t)0xf8a, (q15_t)0xd632, (q15_t)0xf82, (q15_t)0xd63c, (q15_t)0xf79, (q15_t)0xd645, (q15_t)0xf71, (q15_t)0xd64f, (q15_t)0xf69, (q15_t)0xd659, (q15_t)0xf61, (q15_t)0xd662, (q15_t)0xf59, (q15_t)0xd66c, (q15_t)0xf51, (q15_t)0xd675, (q15_t)0xf48, (q15_t)0xd67f, (q15_t)0xf40, (q15_t)0xd688, (q15_t)0xf38, (q15_t)0xd692, (q15_t)0xf30, (q15_t)0xd69b, (q15_t)0xf28, (q15_t)0xd6a5, (q15_t)0xf20, (q15_t)0xd6af, (q15_t)0xf18, (q15_t)0xd6b8, (q15_t)0xf10, (q15_t)0xd6c2, (q15_t)0xf07, (q15_t)0xd6cb, (q15_t)0xeff, (q15_t)0xd6d5, (q15_t)0xef7, (q15_t)0xd6df, (q15_t)0xeef, (q15_t)0xd6e8, (q15_t)0xee7, (q15_t)0xd6f2, (q15_t)0xedf, (q15_t)0xd6fc, (q15_t)0xed7, (q15_t)0xd705, (q15_t)0xecf, (q15_t)0xd70f, (q15_t)0xec7, (q15_t)0xd719, (q15_t)0xebf, (q15_t)0xd722, (q15_t)0xeb7, (q15_t)0xd72c, (q15_t)0xeaf, (q15_t)0xd736, (q15_t)0xea7, (q15_t)0xd73f, (q15_t)0xe9f, (q15_t)0xd749, (q15_t)0xe97, (q15_t)0xd753, (q15_t)0xe8f, (q15_t)0xd75c, (q15_t)0xe87, (q15_t)0xd766, (q15_t)0xe7f, (q15_t)0xd770, (q15_t)0xe77, (q15_t)0xd77a, (q15_t)0xe6f, (q15_t)0xd783, (q15_t)0xe67, (q15_t)0xd78d, (q15_t)0xe5f, (q15_t)0xd797, (q15_t)0xe57, (q15_t)0xd7a0, (q15_t)0xe4f, (q15_t)0xd7aa, (q15_t)0xe47, (q15_t)0xd7b4, (q15_t)0xe40, (q15_t)0xd7be, (q15_t)0xe38, (q15_t)0xd7c8, (q15_t)0xe30, (q15_t)0xd7d1, (q15_t)0xe28, (q15_t)0xd7db, (q15_t)0xe20, (q15_t)0xd7e5, (q15_t)0xe18, (q15_t)0xd7ef, (q15_t)0xe10, (q15_t)0xd7f8, (q15_t)0xe08, (q15_t)0xd802, (q15_t)0xe01, (q15_t)0xd80c, (q15_t)0xdf9, (q15_t)0xd816, (q15_t)0xdf1, (q15_t)0xd820, (q15_t)0xde9, (q15_t)0xd82a, (q15_t)0xde1, (q15_t)0xd833, (q15_t)0xdd9, (q15_t)0xd83d, (q15_t)0xdd2, (q15_t)0xd847, (q15_t)0xdca, (q15_t)0xd851, (q15_t)0xdc2, (q15_t)0xd85b, (q15_t)0xdba, (q15_t)0xd865, (q15_t)0xdb2, (q15_t)0xd86f, (q15_t)0xdab, (q15_t)0xd878, (q15_t)0xda3, (q15_t)0xd882, (q15_t)0xd9b, (q15_t)0xd88c, (q15_t)0xd93, (q15_t)0xd896, (q15_t)0xd8c, (q15_t)0xd8a0, (q15_t)0xd84, (q15_t)0xd8aa, (q15_t)0xd7c, (q15_t)0xd8b4, (q15_t)0xd75, (q15_t)0xd8be, (q15_t)0xd6d, (q15_t)0xd8c8, (q15_t)0xd65, (q15_t)0xd8d2, (q15_t)0xd5d, (q15_t)0xd8dc, (q15_t)0xd56, (q15_t)0xd8e6, (q15_t)0xd4e, (q15_t)0xd8ef, (q15_t)0xd46, (q15_t)0xd8f9, (q15_t)0xd3f, (q15_t)0xd903, (q15_t)0xd37, (q15_t)0xd90d, (q15_t)0xd30, (q15_t)0xd917, (q15_t)0xd28, (q15_t)0xd921, (q15_t)0xd20, (q15_t)0xd92b, (q15_t)0xd19, (q15_t)0xd935, (q15_t)0xd11, (q15_t)0xd93f, (q15_t)0xd09, (q15_t)0xd949, (q15_t)0xd02, (q15_t)0xd953, (q15_t)0xcfa, (q15_t)0xd95d, (q15_t)0xcf3, (q15_t)0xd967, (q15_t)0xceb, (q15_t)0xd971, (q15_t)0xce3, (q15_t)0xd97b, (q15_t)0xcdc, (q15_t)0xd985, (q15_t)0xcd4, (q15_t)0xd98f, (q15_t)0xccd, (q15_t)0xd99a, (q15_t)0xcc5, (q15_t)0xd9a4, (q15_t)0xcbe, (q15_t)0xd9ae, (q15_t)0xcb6, (q15_t)0xd9b8, (q15_t)0xcaf, (q15_t)0xd9c2, (q15_t)0xca7, (q15_t)0xd9cc, (q15_t)0xca0, (q15_t)0xd9d6, (q15_t)0xc98, (q15_t)0xd9e0, (q15_t)0xc91, (q15_t)0xd9ea, (q15_t)0xc89, (q15_t)0xd9f4, (q15_t)0xc82, (q15_t)0xd9fe, (q15_t)0xc7a, (q15_t)0xda08, (q15_t)0xc73, (q15_t)0xda13, (q15_t)0xc6b, (q15_t)0xda1d, (q15_t)0xc64, (q15_t)0xda27, (q15_t)0xc5d, (q15_t)0xda31, (q15_t)0xc55, (q15_t)0xda3b, (q15_t)0xc4e, (q15_t)0xda45, (q15_t)0xc46, (q15_t)0xda4f, (q15_t)0xc3f, (q15_t)0xda5a, (q15_t)0xc38, (q15_t)0xda64, (q15_t)0xc30, (q15_t)0xda6e, (q15_t)0xc29, (q15_t)0xda78, (q15_t)0xc21, (q15_t)0xda82, (q15_t)0xc1a, (q15_t)0xda8c, (q15_t)0xc13, (q15_t)0xda97, (q15_t)0xc0b, (q15_t)0xdaa1, (q15_t)0xc04, (q15_t)0xdaab, (q15_t)0xbfd, (q15_t)0xdab5, (q15_t)0xbf5, (q15_t)0xdabf, (q15_t)0xbee, (q15_t)0xdaca, (q15_t)0xbe7, (q15_t)0xdad4, (q15_t)0xbe0, (q15_t)0xdade, (q15_t)0xbd8, (q15_t)0xdae8, (q15_t)0xbd1, (q15_t)0xdaf3, (q15_t)0xbca, (q15_t)0xdafd, (q15_t)0xbc2, (q15_t)0xdb07, (q15_t)0xbbb, (q15_t)0xdb11, (q15_t)0xbb4, (q15_t)0xdb1c, (q15_t)0xbad, (q15_t)0xdb26, (q15_t)0xba5, (q15_t)0xdb30, (q15_t)0xb9e, (q15_t)0xdb3b, (q15_t)0xb97, (q15_t)0xdb45, (q15_t)0xb90, (q15_t)0xdb4f, (q15_t)0xb89, (q15_t)0xdb59, (q15_t)0xb81, (q15_t)0xdb64, (q15_t)0xb7a, (q15_t)0xdb6e, (q15_t)0xb73, (q15_t)0xdb78, (q15_t)0xb6c, (q15_t)0xdb83, (q15_t)0xb65, (q15_t)0xdb8d, (q15_t)0xb5e, (q15_t)0xdb97, (q15_t)0xb56, (q15_t)0xdba2, (q15_t)0xb4f, (q15_t)0xdbac, (q15_t)0xb48, (q15_t)0xdbb6, (q15_t)0xb41, (q15_t)0xdbc1, (q15_t)0xb3a, (q15_t)0xdbcb, (q15_t)0xb33, (q15_t)0xdbd5, (q15_t)0xb2c, (q15_t)0xdbe0, (q15_t)0xb25, (q15_t)0xdbea, (q15_t)0xb1e, (q15_t)0xdbf5, (q15_t)0xb16, (q15_t)0xdbff, (q15_t)0xb0f, (q15_t)0xdc09, (q15_t)0xb08, (q15_t)0xdc14, (q15_t)0xb01, (q15_t)0xdc1e, (q15_t)0xafa, (q15_t)0xdc29, (q15_t)0xaf3, (q15_t)0xdc33, (q15_t)0xaec, (q15_t)0xdc3d, (q15_t)0xae5, (q15_t)0xdc48, (q15_t)0xade, (q15_t)0xdc52, (q15_t)0xad7, (q15_t)0xdc5d, (q15_t)0xad0, (q15_t)0xdc67, (q15_t)0xac9, (q15_t)0xdc72, (q15_t)0xac2, (q15_t)0xdc7c, (q15_t)0xabb, (q15_t)0xdc86, (q15_t)0xab4, (q15_t)0xdc91, (q15_t)0xaad, (q15_t)0xdc9b, (q15_t)0xaa6, (q15_t)0xdca6, (q15_t)0xa9f, (q15_t)0xdcb0, (q15_t)0xa99, (q15_t)0xdcbb, (q15_t)0xa92, (q15_t)0xdcc5, (q15_t)0xa8b, (q15_t)0xdcd0, (q15_t)0xa84, (q15_t)0xdcda, (q15_t)0xa7d, (q15_t)0xdce5, (q15_t)0xa76, (q15_t)0xdcef, (q15_t)0xa6f, (q15_t)0xdcfa, (q15_t)0xa68, (q15_t)0xdd04, (q15_t)0xa61, (q15_t)0xdd0f, (q15_t)0xa5b, (q15_t)0xdd19, (q15_t)0xa54, (q15_t)0xdd24, (q15_t)0xa4d, (q15_t)0xdd2e, (q15_t)0xa46, (q15_t)0xdd39, (q15_t)0xa3f, (q15_t)0xdd44, (q15_t)0xa38, (q15_t)0xdd4e, (q15_t)0xa32, (q15_t)0xdd59, (q15_t)0xa2b, (q15_t)0xdd63, (q15_t)0xa24, (q15_t)0xdd6e, (q15_t)0xa1d, (q15_t)0xdd78, (q15_t)0xa16, (q15_t)0xdd83, (q15_t)0xa10, (q15_t)0xdd8e, (q15_t)0xa09, (q15_t)0xdd98, (q15_t)0xa02, (q15_t)0xdda3, (q15_t)0x9fb, (q15_t)0xddad, (q15_t)0x9f5, (q15_t)0xddb8, (q15_t)0x9ee, (q15_t)0xddc3, (q15_t)0x9e7, (q15_t)0xddcd, (q15_t)0x9e0, (q15_t)0xddd8, (q15_t)0x9da, (q15_t)0xdde2, (q15_t)0x9d3, (q15_t)0xdded, (q15_t)0x9cc, (q15_t)0xddf8, (q15_t)0x9c6, (q15_t)0xde02, (q15_t)0x9bf, (q15_t)0xde0d, (q15_t)0x9b8, (q15_t)0xde18, (q15_t)0x9b2, (q15_t)0xde22, (q15_t)0x9ab, (q15_t)0xde2d, (q15_t)0x9a4, (q15_t)0xde38, (q15_t)0x99e, (q15_t)0xde42, (q15_t)0x997, (q15_t)0xde4d, (q15_t)0x991, (q15_t)0xde58, (q15_t)0x98a, (q15_t)0xde62, (q15_t)0x983, (q15_t)0xde6d, (q15_t)0x97d, (q15_t)0xde78, (q15_t)0x976, (q15_t)0xde83, (q15_t)0x970, (q15_t)0xde8d, (q15_t)0x969, (q15_t)0xde98, (q15_t)0x963, (q15_t)0xdea3, (q15_t)0x95c, (q15_t)0xdead, (q15_t)0x955, (q15_t)0xdeb8, (q15_t)0x94f, (q15_t)0xdec3, (q15_t)0x948, (q15_t)0xdece, (q15_t)0x942, (q15_t)0xded8, (q15_t)0x93b, (q15_t)0xdee3, (q15_t)0x935, (q15_t)0xdeee, (q15_t)0x92e, (q15_t)0xdef9, (q15_t)0x928, (q15_t)0xdf03, (q15_t)0x921, (q15_t)0xdf0e, (q15_t)0x91b, (q15_t)0xdf19, (q15_t)0x915, (q15_t)0xdf24, (q15_t)0x90e, (q15_t)0xdf2f, (q15_t)0x908, (q15_t)0xdf39, (q15_t)0x901, (q15_t)0xdf44, (q15_t)0x8fb, (q15_t)0xdf4f, (q15_t)0x8f4, (q15_t)0xdf5a, (q15_t)0x8ee, (q15_t)0xdf65, (q15_t)0x8e8, (q15_t)0xdf6f, (q15_t)0x8e1, (q15_t)0xdf7a, (q15_t)0x8db, (q15_t)0xdf85, (q15_t)0x8d4, (q15_t)0xdf90, (q15_t)0x8ce, (q15_t)0xdf9b, (q15_t)0x8c8, (q15_t)0xdfa5, (q15_t)0x8c1, (q15_t)0xdfb0, (q15_t)0x8bb, (q15_t)0xdfbb, (q15_t)0x8b5, (q15_t)0xdfc6, (q15_t)0x8ae, (q15_t)0xdfd1, (q15_t)0x8a8, (q15_t)0xdfdc, (q15_t)0x8a2, (q15_t)0xdfe7, (q15_t)0x89b, (q15_t)0xdff1, (q15_t)0x895, (q15_t)0xdffc, (q15_t)0x88f, (q15_t)0xe007, (q15_t)0x889, (q15_t)0xe012, (q15_t)0x882, (q15_t)0xe01d, (q15_t)0x87c, (q15_t)0xe028, (q15_t)0x876, (q15_t)0xe033, (q15_t)0x870, (q15_t)0xe03e, (q15_t)0x869, (q15_t)0xe049, (q15_t)0x863, (q15_t)0xe054, (q15_t)0x85d, (q15_t)0xe05e, (q15_t)0x857, (q15_t)0xe069, (q15_t)0x850, (q15_t)0xe074, (q15_t)0x84a, (q15_t)0xe07f, (q15_t)0x844, (q15_t)0xe08a, (q15_t)0x83e, (q15_t)0xe095, (q15_t)0x838, (q15_t)0xe0a0, (q15_t)0x832, (q15_t)0xe0ab, (q15_t)0x82b, (q15_t)0xe0b6, (q15_t)0x825, (q15_t)0xe0c1, (q15_t)0x81f, (q15_t)0xe0cc, (q15_t)0x819, (q15_t)0xe0d7, (q15_t)0x813, (q15_t)0xe0e2, (q15_t)0x80d, (q15_t)0xe0ed, (q15_t)0x807, (q15_t)0xe0f8, (q15_t)0x801, (q15_t)0xe103, (q15_t)0x7fb, (q15_t)0xe10e, (q15_t)0x7f5, (q15_t)0xe119, (q15_t)0x7ee, (q15_t)0xe124, (q15_t)0x7e8, (q15_t)0xe12f, (q15_t)0x7e2, (q15_t)0xe13a, (q15_t)0x7dc, (q15_t)0xe145, (q15_t)0x7d6, (q15_t)0xe150, (q15_t)0x7d0, (q15_t)0xe15b, (q15_t)0x7ca, (q15_t)0xe166, (q15_t)0x7c4, (q15_t)0xe171, (q15_t)0x7be, (q15_t)0xe17c, (q15_t)0x7b8, (q15_t)0xe187, (q15_t)0x7b2, (q15_t)0xe192, (q15_t)0x7ac, (q15_t)0xe19d, (q15_t)0x7a6, (q15_t)0xe1a8, (q15_t)0x7a0, (q15_t)0xe1b3, (q15_t)0x79a, (q15_t)0xe1be, (q15_t)0x795, (q15_t)0xe1ca, (q15_t)0x78f, (q15_t)0xe1d5, (q15_t)0x789, (q15_t)0xe1e0, (q15_t)0x783, (q15_t)0xe1eb, (q15_t)0x77d, (q15_t)0xe1f6, (q15_t)0x777, (q15_t)0xe201, (q15_t)0x771, (q15_t)0xe20c, (q15_t)0x76b, (q15_t)0xe217, (q15_t)0x765, (q15_t)0xe222, (q15_t)0x75f, (q15_t)0xe22d, (q15_t)0x75a, (q15_t)0xe239, (q15_t)0x754, (q15_t)0xe244, (q15_t)0x74e, (q15_t)0xe24f, (q15_t)0x748, (q15_t)0xe25a, (q15_t)0x742, (q15_t)0xe265, (q15_t)0x73d, (q15_t)0xe270, (q15_t)0x737, (q15_t)0xe27b, (q15_t)0x731, (q15_t)0xe287, (q15_t)0x72b, (q15_t)0xe292, (q15_t)0x725, (q15_t)0xe29d, (q15_t)0x720, (q15_t)0xe2a8, (q15_t)0x71a, (q15_t)0xe2b3, (q15_t)0x714, (q15_t)0xe2be, (q15_t)0x70e, (q15_t)0xe2ca, (q15_t)0x709, (q15_t)0xe2d5, (q15_t)0x703, (q15_t)0xe2e0, (q15_t)0x6fd, (q15_t)0xe2eb, (q15_t)0x6f7, (q15_t)0xe2f6, (q15_t)0x6f2, (q15_t)0xe301, (q15_t)0x6ec, (q15_t)0xe30d, (q15_t)0x6e6, (q15_t)0xe318, (q15_t)0x6e1, (q15_t)0xe323, (q15_t)0x6db, (q15_t)0xe32e, (q15_t)0x6d5, (q15_t)0xe33a, (q15_t)0x6d0, (q15_t)0xe345, (q15_t)0x6ca, (q15_t)0xe350, (q15_t)0x6c5, (q15_t)0xe35b, (q15_t)0x6bf, (q15_t)0xe367, (q15_t)0x6b9, (q15_t)0xe372, (q15_t)0x6b4, (q15_t)0xe37d, (q15_t)0x6ae, (q15_t)0xe388, (q15_t)0x6a8, (q15_t)0xe394, (q15_t)0x6a3, (q15_t)0xe39f, (q15_t)0x69d, (q15_t)0xe3aa, (q15_t)0x698, (q15_t)0xe3b5, (q15_t)0x692, (q15_t)0xe3c1, (q15_t)0x68d, (q15_t)0xe3cc, (q15_t)0x687, (q15_t)0xe3d7, (q15_t)0x682, (q15_t)0xe3e2, (q15_t)0x67c, (q15_t)0xe3ee, (q15_t)0x677, (q15_t)0xe3f9, (q15_t)0x671, (q15_t)0xe404, (q15_t)0x66c, (q15_t)0xe410, (q15_t)0x666, (q15_t)0xe41b, (q15_t)0x661, (q15_t)0xe426, (q15_t)0x65b, (q15_t)0xe432, (q15_t)0x656, (q15_t)0xe43d, (q15_t)0x650, (q15_t)0xe448, (q15_t)0x64b, (q15_t)0xe454, (q15_t)0x645, (q15_t)0xe45f, (q15_t)0x640, (q15_t)0xe46a, (q15_t)0x63b, (q15_t)0xe476, (q15_t)0x635, (q15_t)0xe481, (q15_t)0x630, (q15_t)0xe48c, (q15_t)0x62a, (q15_t)0xe498, (q15_t)0x625, (q15_t)0xe4a3, (q15_t)0x620, (q15_t)0xe4ae, (q15_t)0x61a, (q15_t)0xe4ba, (q15_t)0x615, (q15_t)0xe4c5, (q15_t)0x610, (q15_t)0xe4d0, (q15_t)0x60a, (q15_t)0xe4dc, (q15_t)0x605, (q15_t)0xe4e7, (q15_t)0x600, (q15_t)0xe4f3, (q15_t)0x5fa, (q15_t)0xe4fe, (q15_t)0x5f5, (q15_t)0xe509, (q15_t)0x5f0, (q15_t)0xe515, (q15_t)0x5ea, (q15_t)0xe520, (q15_t)0x5e5, (q15_t)0xe52c, (q15_t)0x5e0, (q15_t)0xe537, (q15_t)0x5db, (q15_t)0xe542, (q15_t)0x5d5, (q15_t)0xe54e, (q15_t)0x5d0, (q15_t)0xe559, (q15_t)0x5cb, (q15_t)0xe565, (q15_t)0x5c6, (q15_t)0xe570, (q15_t)0x5c1, (q15_t)0xe57c, (q15_t)0x5bb, (q15_t)0xe587, (q15_t)0x5b6, (q15_t)0xe592, (q15_t)0x5b1, (q15_t)0xe59e, (q15_t)0x5ac, (q15_t)0xe5a9, (q15_t)0x5a7, (q15_t)0xe5b5, (q15_t)0x5a1, (q15_t)0xe5c0, (q15_t)0x59c, (q15_t)0xe5cc, (q15_t)0x597, (q15_t)0xe5d7, (q15_t)0x592, (q15_t)0xe5e3, (q15_t)0x58d, (q15_t)0xe5ee, (q15_t)0x588, (q15_t)0xe5fa, (q15_t)0x583, (q15_t)0xe605, (q15_t)0x57e, (q15_t)0xe611, (q15_t)0x578, (q15_t)0xe61c, (q15_t)0x573, (q15_t)0xe628, (q15_t)0x56e, (q15_t)0xe633, (q15_t)0x569, (q15_t)0xe63f, (q15_t)0x564, (q15_t)0xe64a, (q15_t)0x55f, (q15_t)0xe656, (q15_t)0x55a, (q15_t)0xe661, (q15_t)0x555, (q15_t)0xe66d, (q15_t)0x550, (q15_t)0xe678, (q15_t)0x54b, (q15_t)0xe684, (q15_t)0x546, (q15_t)0xe68f, (q15_t)0x541, (q15_t)0xe69b, (q15_t)0x53c, (q15_t)0xe6a6, (q15_t)0x537, (q15_t)0xe6b2, (q15_t)0x532, (q15_t)0xe6bd, (q15_t)0x52d, (q15_t)0xe6c9, (q15_t)0x528, (q15_t)0xe6d4, (q15_t)0x523, (q15_t)0xe6e0, (q15_t)0x51e, (q15_t)0xe6ec, (q15_t)0x51a, (q15_t)0xe6f7, (q15_t)0x515, (q15_t)0xe703, (q15_t)0x510, (q15_t)0xe70e, (q15_t)0x50b, (q15_t)0xe71a, (q15_t)0x506, (q15_t)0xe725, (q15_t)0x501, (q15_t)0xe731, (q15_t)0x4fc, (q15_t)0xe73d, (q15_t)0x4f7, (q15_t)0xe748, (q15_t)0x4f2, (q15_t)0xe754, (q15_t)0x4ee, (q15_t)0xe75f, (q15_t)0x4e9, (q15_t)0xe76b, (q15_t)0x4e4, (q15_t)0xe777, (q15_t)0x4df, (q15_t)0xe782, (q15_t)0x4da, (q15_t)0xe78e, (q15_t)0x4d6, (q15_t)0xe799, (q15_t)0x4d1, (q15_t)0xe7a5, (q15_t)0x4cc, (q15_t)0xe7b1, (q15_t)0x4c7, (q15_t)0xe7bc, (q15_t)0x4c2, (q15_t)0xe7c8, (q15_t)0x4be, (q15_t)0xe7d3, (q15_t)0x4b9, (q15_t)0xe7df, (q15_t)0x4b4, (q15_t)0xe7eb, (q15_t)0x4b0, (q15_t)0xe7f6, (q15_t)0x4ab, (q15_t)0xe802, (q15_t)0x4a6, (q15_t)0xe80e, (q15_t)0x4a1, (q15_t)0xe819, (q15_t)0x49d, (q15_t)0xe825, (q15_t)0x498, (q15_t)0xe831, (q15_t)0x493, (q15_t)0xe83c, (q15_t)0x48f, (q15_t)0xe848, (q15_t)0x48a, (q15_t)0xe854, (q15_t)0x485, (q15_t)0xe85f, (q15_t)0x481, (q15_t)0xe86b, (q15_t)0x47c, (q15_t)0xe877, (q15_t)0x478, (q15_t)0xe882, (q15_t)0x473, (q15_t)0xe88e, (q15_t)0x46e, (q15_t)0xe89a, (q15_t)0x46a, (q15_t)0xe8a5, (q15_t)0x465, (q15_t)0xe8b1, (q15_t)0x461, (q15_t)0xe8bd, (q15_t)0x45c, (q15_t)0xe8c9, (q15_t)0x457, (q15_t)0xe8d4, (q15_t)0x453, (q15_t)0xe8e0, (q15_t)0x44e, (q15_t)0xe8ec, (q15_t)0x44a, (q15_t)0xe8f7, (q15_t)0x445, (q15_t)0xe903, (q15_t)0x441, (q15_t)0xe90f, (q15_t)0x43c, (q15_t)0xe91b, (q15_t)0x438, (q15_t)0xe926, (q15_t)0x433, (q15_t)0xe932, (q15_t)0x42f, (q15_t)0xe93e, (q15_t)0x42a, (q15_t)0xe94a, (q15_t)0x426, (q15_t)0xe955, (q15_t)0x422, (q15_t)0xe961, (q15_t)0x41d, (q15_t)0xe96d, (q15_t)0x419, (q15_t)0xe979, (q15_t)0x414, (q15_t)0xe984, (q15_t)0x410, (q15_t)0xe990, (q15_t)0x40b, (q15_t)0xe99c, (q15_t)0x407, (q15_t)0xe9a8, (q15_t)0x403, (q15_t)0xe9b4, (q15_t)0x3fe, (q15_t)0xe9bf, (q15_t)0x3fa, (q15_t)0xe9cb, (q15_t)0x3f6, (q15_t)0xe9d7, (q15_t)0x3f1, (q15_t)0xe9e3, (q15_t)0x3ed, (q15_t)0xe9ee, (q15_t)0x3e9, (q15_t)0xe9fa, (q15_t)0x3e4, (q15_t)0xea06, (q15_t)0x3e0, (q15_t)0xea12, (q15_t)0x3dc, (q15_t)0xea1e, (q15_t)0x3d7, (q15_t)0xea29, (q15_t)0x3d3, (q15_t)0xea35, (q15_t)0x3cf, (q15_t)0xea41, (q15_t)0x3ca, (q15_t)0xea4d, (q15_t)0x3c6, (q15_t)0xea59, (q15_t)0x3c2, (q15_t)0xea65, (q15_t)0x3be, (q15_t)0xea70, (q15_t)0x3ba, (q15_t)0xea7c, (q15_t)0x3b5, (q15_t)0xea88, (q15_t)0x3b1, (q15_t)0xea94, (q15_t)0x3ad, (q15_t)0xeaa0, (q15_t)0x3a9, (q15_t)0xeaac, (q15_t)0x3a5, (q15_t)0xeab7, (q15_t)0x3a0, (q15_t)0xeac3, (q15_t)0x39c, (q15_t)0xeacf, (q15_t)0x398, (q15_t)0xeadb, (q15_t)0x394, (q15_t)0xeae7, (q15_t)0x390, (q15_t)0xeaf3, (q15_t)0x38c, (q15_t)0xeaff, (q15_t)0x387, (q15_t)0xeb0a, (q15_t)0x383, (q15_t)0xeb16, (q15_t)0x37f, (q15_t)0xeb22, (q15_t)0x37b, (q15_t)0xeb2e, (q15_t)0x377, (q15_t)0xeb3a, (q15_t)0x373, (q15_t)0xeb46, (q15_t)0x36f, (q15_t)0xeb52, (q15_t)0x36b, (q15_t)0xeb5e, (q15_t)0x367, (q15_t)0xeb6a, (q15_t)0x363, (q15_t)0xeb75, (q15_t)0x35f, (q15_t)0xeb81, (q15_t)0x35b, (q15_t)0xeb8d, (q15_t)0x357, (q15_t)0xeb99, (q15_t)0x353, (q15_t)0xeba5, (q15_t)0x34f, (q15_t)0xebb1, (q15_t)0x34b, (q15_t)0xebbd, (q15_t)0x347, (q15_t)0xebc9, (q15_t)0x343, (q15_t)0xebd5, (q15_t)0x33f, (q15_t)0xebe1, (q15_t)0x33b, (q15_t)0xebed, (q15_t)0x337, (q15_t)0xebf9, (q15_t)0x333, (q15_t)0xec05, (q15_t)0x32f, (q15_t)0xec10, (q15_t)0x32b, (q15_t)0xec1c, (q15_t)0x327, (q15_t)0xec28, (q15_t)0x323, (q15_t)0xec34, (q15_t)0x320, (q15_t)0xec40, (q15_t)0x31c, (q15_t)0xec4c, (q15_t)0x318, (q15_t)0xec58, (q15_t)0x314, (q15_t)0xec64, (q15_t)0x310, (q15_t)0xec70, (q15_t)0x30c, (q15_t)0xec7c, (q15_t)0x308, (q15_t)0xec88, (q15_t)0x305, (q15_t)0xec94, (q15_t)0x301, (q15_t)0xeca0, (q15_t)0x2fd, (q15_t)0xecac, (q15_t)0x2f9, (q15_t)0xecb8, (q15_t)0x2f5, (q15_t)0xecc4, (q15_t)0x2f2, (q15_t)0xecd0, (q15_t)0x2ee, (q15_t)0xecdc, (q15_t)0x2ea, (q15_t)0xece8, (q15_t)0x2e6, (q15_t)0xecf4, (q15_t)0x2e3, (q15_t)0xed00, (q15_t)0x2df, (q15_t)0xed0c, (q15_t)0x2db, (q15_t)0xed18, (q15_t)0x2d8, (q15_t)0xed24, (q15_t)0x2d4, (q15_t)0xed30, (q15_t)0x2d0, (q15_t)0xed3c, (q15_t)0x2cc, (q15_t)0xed48, (q15_t)0x2c9, (q15_t)0xed54, (q15_t)0x2c5, (q15_t)0xed60, (q15_t)0x2c1, (q15_t)0xed6c, (q15_t)0x2be, (q15_t)0xed78, (q15_t)0x2ba, (q15_t)0xed84, (q15_t)0x2b7, (q15_t)0xed90, (q15_t)0x2b3, (q15_t)0xed9c, (q15_t)0x2af, (q15_t)0xeda8, (q15_t)0x2ac, (q15_t)0xedb4, (q15_t)0x2a8, (q15_t)0xedc0, (q15_t)0x2a5, (q15_t)0xedcc, (q15_t)0x2a1, (q15_t)0xedd8, (q15_t)0x29d, (q15_t)0xede4, (q15_t)0x29a, (q15_t)0xedf0, (q15_t)0x296, (q15_t)0xedfc, (q15_t)0x293, (q15_t)0xee09, (q15_t)0x28f, (q15_t)0xee15, (q15_t)0x28c, (q15_t)0xee21, (q15_t)0x288, (q15_t)0xee2d, (q15_t)0x285, (q15_t)0xee39, (q15_t)0x281, (q15_t)0xee45, (q15_t)0x27e, (q15_t)0xee51, (q15_t)0x27a, (q15_t)0xee5d, (q15_t)0x277, (q15_t)0xee69, (q15_t)0x273, (q15_t)0xee75, (q15_t)0x270, (q15_t)0xee81, (q15_t)0x26d, (q15_t)0xee8d, (q15_t)0x269, (q15_t)0xee99, (q15_t)0x266, (q15_t)0xeea6, (q15_t)0x262, (q15_t)0xeeb2, (q15_t)0x25f, (q15_t)0xeebe, (q15_t)0x25c, (q15_t)0xeeca, (q15_t)0x258, (q15_t)0xeed6, (q15_t)0x255, (q15_t)0xeee2, (q15_t)0x251, (q15_t)0xeeee, (q15_t)0x24e, (q15_t)0xeefa, (q15_t)0x24b, (q15_t)0xef06, (q15_t)0x247, (q15_t)0xef13, (q15_t)0x244, (q15_t)0xef1f, (q15_t)0x241, (q15_t)0xef2b, (q15_t)0x23e, (q15_t)0xef37, (q15_t)0x23a, (q15_t)0xef43, (q15_t)0x237, (q15_t)0xef4f, (q15_t)0x234, (q15_t)0xef5b, (q15_t)0x230, (q15_t)0xef67, (q15_t)0x22d, (q15_t)0xef74, (q15_t)0x22a, (q15_t)0xef80, (q15_t)0x227, (q15_t)0xef8c, (q15_t)0x223, (q15_t)0xef98, (q15_t)0x220, (q15_t)0xefa4, (q15_t)0x21d, (q15_t)0xefb0, (q15_t)0x21a, (q15_t)0xefbc, (q15_t)0x217, (q15_t)0xefc9, (q15_t)0x213, (q15_t)0xefd5, (q15_t)0x210, (q15_t)0xefe1, (q15_t)0x20d, (q15_t)0xefed, (q15_t)0x20a, (q15_t)0xeff9, (q15_t)0x207, (q15_t)0xf005, (q15_t)0x204, (q15_t)0xf012, (q15_t)0x201, (q15_t)0xf01e, (q15_t)0x1fd, (q15_t)0xf02a, (q15_t)0x1fa, (q15_t)0xf036, (q15_t)0x1f7, (q15_t)0xf042, (q15_t)0x1f4, (q15_t)0xf04e, (q15_t)0x1f1, (q15_t)0xf05b, (q15_t)0x1ee, (q15_t)0xf067, (q15_t)0x1eb, (q15_t)0xf073, (q15_t)0x1e8, (q15_t)0xf07f, (q15_t)0x1e5, (q15_t)0xf08b, (q15_t)0x1e2, (q15_t)0xf098, (q15_t)0x1df, (q15_t)0xf0a4, (q15_t)0x1dc, (q15_t)0xf0b0, (q15_t)0x1d9, (q15_t)0xf0bc, (q15_t)0x1d6, (q15_t)0xf0c8, (q15_t)0x1d3, (q15_t)0xf0d5, (q15_t)0x1d0, (q15_t)0xf0e1, (q15_t)0x1cd, (q15_t)0xf0ed, (q15_t)0x1ca, (q15_t)0xf0f9, (q15_t)0x1c7, (q15_t)0xf105, (q15_t)0x1c4, (q15_t)0xf112, (q15_t)0x1c1, (q15_t)0xf11e, (q15_t)0x1be, (q15_t)0xf12a, (q15_t)0x1bb, (q15_t)0xf136, (q15_t)0x1b8, (q15_t)0xf143, (q15_t)0x1b6, (q15_t)0xf14f, (q15_t)0x1b3, (q15_t)0xf15b, (q15_t)0x1b0, (q15_t)0xf167, (q15_t)0x1ad, (q15_t)0xf174, (q15_t)0x1aa, (q15_t)0xf180, (q15_t)0x1a7, (q15_t)0xf18c, (q15_t)0x1a4, (q15_t)0xf198, (q15_t)0x1a2, (q15_t)0xf1a4, (q15_t)0x19f, (q15_t)0xf1b1, (q15_t)0x19c, (q15_t)0xf1bd, (q15_t)0x199, (q15_t)0xf1c9, (q15_t)0x196, (q15_t)0xf1d5, (q15_t)0x194, (q15_t)0xf1e2, (q15_t)0x191, (q15_t)0xf1ee, (q15_t)0x18e, (q15_t)0xf1fa, (q15_t)0x18b, (q15_t)0xf207, (q15_t)0x189, (q15_t)0xf213, (q15_t)0x186, (q15_t)0xf21f, (q15_t)0x183, (q15_t)0xf22b, (q15_t)0x180, (q15_t)0xf238, (q15_t)0x17e, (q15_t)0xf244, (q15_t)0x17b, (q15_t)0xf250, (q15_t)0x178, (q15_t)0xf25c, (q15_t)0x176, (q15_t)0xf269, (q15_t)0x173, (q15_t)0xf275, (q15_t)0x170, (q15_t)0xf281, (q15_t)0x16e, (q15_t)0xf28e, (q15_t)0x16b, (q15_t)0xf29a, (q15_t)0x168, (q15_t)0xf2a6, (q15_t)0x166, (q15_t)0xf2b2, (q15_t)0x163, (q15_t)0xf2bf, (q15_t)0x161, (q15_t)0xf2cb, (q15_t)0x15e, (q15_t)0xf2d7, (q15_t)0x15b, (q15_t)0xf2e4, (q15_t)0x159, (q15_t)0xf2f0, (q15_t)0x156, (q15_t)0xf2fc, (q15_t)0x154, (q15_t)0xf308, (q15_t)0x151, (q15_t)0xf315, (q15_t)0x14f, (q15_t)0xf321, (q15_t)0x14c, (q15_t)0xf32d, (q15_t)0x14a, (q15_t)0xf33a, (q15_t)0x147, (q15_t)0xf346, (q15_t)0x145, (q15_t)0xf352, (q15_t)0x142, (q15_t)0xf35f, (q15_t)0x140, (q15_t)0xf36b, (q15_t)0x13d, (q15_t)0xf377, (q15_t)0x13b, (q15_t)0xf384, (q15_t)0x138, (q15_t)0xf390, (q15_t)0x136, (q15_t)0xf39c, (q15_t)0x134, (q15_t)0xf3a9, (q15_t)0x131, (q15_t)0xf3b5, (q15_t)0x12f, (q15_t)0xf3c1, (q15_t)0x12c, (q15_t)0xf3ce, (q15_t)0x12a, (q15_t)0xf3da, (q15_t)0x128, (q15_t)0xf3e6, (q15_t)0x125, (q15_t)0xf3f3, (q15_t)0x123, (q15_t)0xf3ff, (q15_t)0x120, (q15_t)0xf40b, (q15_t)0x11e, (q15_t)0xf418, (q15_t)0x11c, (q15_t)0xf424, (q15_t)0x119, (q15_t)0xf430, (q15_t)0x117, (q15_t)0xf43d, (q15_t)0x115, (q15_t)0xf449, (q15_t)0x113, (q15_t)0xf455, (q15_t)0x110, (q15_t)0xf462, (q15_t)0x10e, (q15_t)0xf46e, (q15_t)0x10c, (q15_t)0xf47b, (q15_t)0x109, (q15_t)0xf487, (q15_t)0x107, (q15_t)0xf493, (q15_t)0x105, (q15_t)0xf4a0, (q15_t)0x103, (q15_t)0xf4ac, (q15_t)0x100, (q15_t)0xf4b8, (q15_t)0xfe, (q15_t)0xf4c5, (q15_t)0xfc, (q15_t)0xf4d1, (q15_t)0xfa, (q15_t)0xf4dd, (q15_t)0xf8, (q15_t)0xf4ea, (q15_t)0xf6, (q15_t)0xf4f6, (q15_t)0xf3, (q15_t)0xf503, (q15_t)0xf1, (q15_t)0xf50f, (q15_t)0xef, (q15_t)0xf51b, (q15_t)0xed, (q15_t)0xf528, (q15_t)0xeb, (q15_t)0xf534, (q15_t)0xe9, (q15_t)0xf540, (q15_t)0xe7, (q15_t)0xf54d, (q15_t)0xe4, (q15_t)0xf559, (q15_t)0xe2, (q15_t)0xf566, (q15_t)0xe0, (q15_t)0xf572, (q15_t)0xde, (q15_t)0xf57e, (q15_t)0xdc, (q15_t)0xf58b, (q15_t)0xda, (q15_t)0xf597, (q15_t)0xd8, (q15_t)0xf5a4, (q15_t)0xd6, (q15_t)0xf5b0, (q15_t)0xd4, (q15_t)0xf5bc, (q15_t)0xd2, (q15_t)0xf5c9, (q15_t)0xd0, (q15_t)0xf5d5, (q15_t)0xce, (q15_t)0xf5e2, (q15_t)0xcc, (q15_t)0xf5ee, (q15_t)0xca, (q15_t)0xf5fa, (q15_t)0xc8, (q15_t)0xf607, (q15_t)0xc6, (q15_t)0xf613, (q15_t)0xc4, (q15_t)0xf620, (q15_t)0xc2, (q15_t)0xf62c, (q15_t)0xc0, (q15_t)0xf639, (q15_t)0xbe, (q15_t)0xf645, (q15_t)0xbd, (q15_t)0xf651, (q15_t)0xbb, (q15_t)0xf65e, (q15_t)0xb9, (q15_t)0xf66a, (q15_t)0xb7, (q15_t)0xf677, (q15_t)0xb5, (q15_t)0xf683, (q15_t)0xb3, (q15_t)0xf690, (q15_t)0xb1, (q15_t)0xf69c, (q15_t)0xaf, (q15_t)0xf6a8, (q15_t)0xae, (q15_t)0xf6b5, (q15_t)0xac, (q15_t)0xf6c1, (q15_t)0xaa, (q15_t)0xf6ce, (q15_t)0xa8, (q15_t)0xf6da, (q15_t)0xa6, (q15_t)0xf6e7, (q15_t)0xa5, (q15_t)0xf6f3, (q15_t)0xa3, (q15_t)0xf6ff, (q15_t)0xa1, (q15_t)0xf70c, (q15_t)0x9f, (q15_t)0xf718, (q15_t)0x9e, (q15_t)0xf725, (q15_t)0x9c, (q15_t)0xf731, (q15_t)0x9a, (q15_t)0xf73e, (q15_t)0x98, (q15_t)0xf74a, (q15_t)0x97, (q15_t)0xf757, (q15_t)0x95, (q15_t)0xf763, (q15_t)0x93, (q15_t)0xf76f, (q15_t)0x92, (q15_t)0xf77c, (q15_t)0x90, (q15_t)0xf788, (q15_t)0x8e, (q15_t)0xf795, (q15_t)0x8d, (q15_t)0xf7a1, (q15_t)0x8b, (q15_t)0xf7ae, (q15_t)0x89, (q15_t)0xf7ba, (q15_t)0x88, (q15_t)0xf7c7, (q15_t)0x86, (q15_t)0xf7d3, (q15_t)0x85, (q15_t)0xf7e0, (q15_t)0x83, (q15_t)0xf7ec, (q15_t)0x81, (q15_t)0xf7f9, (q15_t)0x80, (q15_t)0xf805, (q15_t)0x7e, (q15_t)0xf811, (q15_t)0x7d, (q15_t)0xf81e, (q15_t)0x7b, (q15_t)0xf82a, (q15_t)0x7a, (q15_t)0xf837, (q15_t)0x78, (q15_t)0xf843, (q15_t)0x77, (q15_t)0xf850, (q15_t)0x75, (q15_t)0xf85c, (q15_t)0x74, (q15_t)0xf869, (q15_t)0x72, (q15_t)0xf875, (q15_t)0x71, (q15_t)0xf882, (q15_t)0x6f, (q15_t)0xf88e, (q15_t)0x6e, (q15_t)0xf89b, (q15_t)0x6c, (q15_t)0xf8a7, (q15_t)0x6b, (q15_t)0xf8b4, (q15_t)0x69, (q15_t)0xf8c0, (q15_t)0x68, (q15_t)0xf8cd, (q15_t)0x67, (q15_t)0xf8d9, (q15_t)0x65, (q15_t)0xf8e6, (q15_t)0x64, (q15_t)0xf8f2, (q15_t)0x62, (q15_t)0xf8ff, (q15_t)0x61, (q15_t)0xf90b, (q15_t)0x60, (q15_t)0xf918, (q15_t)0x5e, (q15_t)0xf924, (q15_t)0x5d, (q15_t)0xf931, (q15_t)0x5c, (q15_t)0xf93d, (q15_t)0x5a, (q15_t)0xf94a, (q15_t)0x59, (q15_t)0xf956, (q15_t)0x58, (q15_t)0xf963, (q15_t)0x56, (q15_t)0xf96f, (q15_t)0x55, (q15_t)0xf97c, (q15_t)0x54, (q15_t)0xf988, (q15_t)0x53, (q15_t)0xf995, (q15_t)0x51, (q15_t)0xf9a1, (q15_t)0x50, (q15_t)0xf9ae, (q15_t)0x4f, (q15_t)0xf9ba, (q15_t)0x4e, (q15_t)0xf9c7, (q15_t)0x4c, (q15_t)0xf9d3, (q15_t)0x4b, (q15_t)0xf9e0, (q15_t)0x4a, (q15_t)0xf9ec, (q15_t)0x49, (q15_t)0xf9f9, (q15_t)0x48, (q15_t)0xfa05, (q15_t)0x47, (q15_t)0xfa12, (q15_t)0x45, (q15_t)0xfa1e, (q15_t)0x44, (q15_t)0xfa2b, (q15_t)0x43, (q15_t)0xfa37, (q15_t)0x42, (q15_t)0xfa44, (q15_t)0x41, (q15_t)0xfa50, (q15_t)0x40, (q15_t)0xfa5d, (q15_t)0x3f, (q15_t)0xfa69, (q15_t)0x3d, (q15_t)0xfa76, (q15_t)0x3c, (q15_t)0xfa82, (q15_t)0x3b, (q15_t)0xfa8f, (q15_t)0x3a, (q15_t)0xfa9b, (q15_t)0x39, (q15_t)0xfaa8, (q15_t)0x38, (q15_t)0xfab4, (q15_t)0x37, (q15_t)0xfac1, (q15_t)0x36, (q15_t)0xfacd, (q15_t)0x35, (q15_t)0xfada, (q15_t)0x34, (q15_t)0xfae6, (q15_t)0x33, (q15_t)0xfaf3, (q15_t)0x32, (q15_t)0xfb00, (q15_t)0x31, (q15_t)0xfb0c, (q15_t)0x30, (q15_t)0xfb19, (q15_t)0x2f, (q15_t)0xfb25, (q15_t)0x2e, (q15_t)0xfb32, (q15_t)0x2d, (q15_t)0xfb3e, (q15_t)0x2c, (q15_t)0xfb4b, (q15_t)0x2b, (q15_t)0xfb57, (q15_t)0x2b, (q15_t)0xfb64, (q15_t)0x2a, (q15_t)0xfb70, (q15_t)0x29, (q15_t)0xfb7d, (q15_t)0x28, (q15_t)0xfb89, (q15_t)0x27, (q15_t)0xfb96, (q15_t)0x26, (q15_t)0xfba2, (q15_t)0x25, (q15_t)0xfbaf, (q15_t)0x24, (q15_t)0xfbbc, (q15_t)0x24, (q15_t)0xfbc8, (q15_t)0x23, (q15_t)0xfbd5, (q15_t)0x22, (q15_t)0xfbe1, (q15_t)0x21, (q15_t)0xfbee, (q15_t)0x20, (q15_t)0xfbfa, (q15_t)0x20, (q15_t)0xfc07, (q15_t)0x1f, (q15_t)0xfc13, (q15_t)0x1e, (q15_t)0xfc20, (q15_t)0x1d, (q15_t)0xfc2c, (q15_t)0x1d, (q15_t)0xfc39, (q15_t)0x1c, (q15_t)0xfc45, (q15_t)0x1b, (q15_t)0xfc52, (q15_t)0x1a, (q15_t)0xfc5f, (q15_t)0x1a, (q15_t)0xfc6b, (q15_t)0x19, (q15_t)0xfc78, (q15_t)0x18, (q15_t)0xfc84, (q15_t)0x18, (q15_t)0xfc91, (q15_t)0x17, (q15_t)0xfc9d, (q15_t)0x16, (q15_t)0xfcaa, (q15_t)0x16, (q15_t)0xfcb6, (q15_t)0x15, (q15_t)0xfcc3, (q15_t)0x14, (q15_t)0xfcd0, (q15_t)0x14, (q15_t)0xfcdc, (q15_t)0x13, (q15_t)0xfce9, (q15_t)0x13, (q15_t)0xfcf5, (q15_t)0x12, (q15_t)0xfd02, (q15_t)0x11, (q15_t)0xfd0e, (q15_t)0x11, (q15_t)0xfd1b, (q15_t)0x10, (q15_t)0xfd27, (q15_t)0x10, (q15_t)0xfd34, (q15_t)0xf, (q15_t)0xfd40, (q15_t)0xf, (q15_t)0xfd4d, (q15_t)0xe, (q15_t)0xfd5a, (q15_t)0xe, (q15_t)0xfd66, (q15_t)0xd, (q15_t)0xfd73, (q15_t)0xd, (q15_t)0xfd7f, (q15_t)0xc, (q15_t)0xfd8c, (q15_t)0xc, (q15_t)0xfd98, (q15_t)0xb, (q15_t)0xfda5, (q15_t)0xb, (q15_t)0xfdb2, (q15_t)0xa, (q15_t)0xfdbe, (q15_t)0xa, (q15_t)0xfdcb, (q15_t)0x9, (q15_t)0xfdd7, (q15_t)0x9, (q15_t)0xfde4, (q15_t)0x9, (q15_t)0xfdf0, (q15_t)0x8, (q15_t)0xfdfd, (q15_t)0x8, (q15_t)0xfe09, (q15_t)0x7, (q15_t)0xfe16, (q15_t)0x7, (q15_t)0xfe23, (q15_t)0x7, (q15_t)0xfe2f, (q15_t)0x6, (q15_t)0xfe3c, (q15_t)0x6, (q15_t)0xfe48, (q15_t)0x6, (q15_t)0xfe55, (q15_t)0x5, (q15_t)0xfe61, (q15_t)0x5, (q15_t)0xfe6e, (q15_t)0x5, (q15_t)0xfe7a, (q15_t)0x4, (q15_t)0xfe87, (q15_t)0x4, (q15_t)0xfe94, (q15_t)0x4, (q15_t)0xfea0, (q15_t)0x4, (q15_t)0xfead, (q15_t)0x3, (q15_t)0xfeb9, (q15_t)0x3, (q15_t)0xfec6, (q15_t)0x3, (q15_t)0xfed2, (q15_t)0x3, (q15_t)0xfedf, (q15_t)0x2, (q15_t)0xfeec, (q15_t)0x2, (q15_t)0xfef8, (q15_t)0x2, (q15_t)0xff05, (q15_t)0x2, (q15_t)0xff11, (q15_t)0x2, (q15_t)0xff1e, (q15_t)0x1, (q15_t)0xff2a, (q15_t)0x1, (q15_t)0xff37, (q15_t)0x1, (q15_t)0xff44, (q15_t)0x1, (q15_t)0xff50, (q15_t)0x1, (q15_t)0xff5d, (q15_t)0x1, (q15_t)0xff69, (q15_t)0x1, (q15_t)0xff76, (q15_t)0x0, (q15_t)0xff82, (q15_t)0x0, (q15_t)0xff8f, (q15_t)0x0, (q15_t)0xff9b, (q15_t)0x0, (q15_t)0xffa8, (q15_t)0x0, (q15_t)0xffb5, (q15_t)0x0, (q15_t)0xffc1, (q15_t)0x0, (q15_t)0xffce, (q15_t)0x0, (q15_t)0xffda, (q15_t)0x0, (q15_t)0xffe7, (q15_t)0x0, (q15_t)0xfff3, (q15_t)0x0, (q15_t)0x0, (q15_t)0x0, (q15_t)0xd, (q15_t)0x0, (q15_t)0x19, (q15_t)0x0, (q15_t)0x26, (q15_t)0x0, (q15_t)0x32, (q15_t)0x0, (q15_t)0x3f, (q15_t)0x0, (q15_t)0x4b, (q15_t)0x0, (q15_t)0x58, (q15_t)0x0, (q15_t)0x65, (q15_t)0x0, (q15_t)0x71, (q15_t)0x0, (q15_t)0x7e, (q15_t)0x1, (q15_t)0x8a, (q15_t)0x1, (q15_t)0x97, (q15_t)0x1, (q15_t)0xa3, (q15_t)0x1, (q15_t)0xb0, (q15_t)0x1, (q15_t)0xbc, (q15_t)0x1, (q15_t)0xc9, (q15_t)0x1, (q15_t)0xd6, (q15_t)0x2, (q15_t)0xe2, (q15_t)0x2, (q15_t)0xef, (q15_t)0x2, (q15_t)0xfb, (q15_t)0x2, (q15_t)0x108, (q15_t)0x2, (q15_t)0x114, (q15_t)0x3, (q15_t)0x121, (q15_t)0x3, (q15_t)0x12e, (q15_t)0x3, (q15_t)0x13a, (q15_t)0x3, (q15_t)0x147, (q15_t)0x4, (q15_t)0x153, (q15_t)0x4, (q15_t)0x160, (q15_t)0x4, (q15_t)0x16c, (q15_t)0x4, (q15_t)0x179, (q15_t)0x5, (q15_t)0x186, (q15_t)0x5, (q15_t)0x192, (q15_t)0x5, (q15_t)0x19f, (q15_t)0x6, (q15_t)0x1ab, (q15_t)0x6, (q15_t)0x1b8, (q15_t)0x6, (q15_t)0x1c4, (q15_t)0x7, (q15_t)0x1d1, (q15_t)0x7, (q15_t)0x1dd, (q15_t)0x7, (q15_t)0x1ea, (q15_t)0x8, (q15_t)0x1f7, (q15_t)0x8, (q15_t)0x203, (q15_t)0x9, (q15_t)0x210, (q15_t)0x9, (q15_t)0x21c, (q15_t)0x9, (q15_t)0x229, (q15_t)0xa, (q15_t)0x235, (q15_t)0xa, (q15_t)0x242, (q15_t)0xb, (q15_t)0x24e, (q15_t)0xb, (q15_t)0x25b, (q15_t)0xc, (q15_t)0x268, (q15_t)0xc, (q15_t)0x274, (q15_t)0xd, (q15_t)0x281, (q15_t)0xd, (q15_t)0x28d, (q15_t)0xe, (q15_t)0x29a, (q15_t)0xe, (q15_t)0x2a6, (q15_t)0xf, (q15_t)0x2b3, (q15_t)0xf, (q15_t)0x2c0, (q15_t)0x10, (q15_t)0x2cc, (q15_t)0x10, (q15_t)0x2d9, (q15_t)0x11, (q15_t)0x2e5, (q15_t)0x11, (q15_t)0x2f2, (q15_t)0x12, (q15_t)0x2fe, (q15_t)0x13, (q15_t)0x30b, (q15_t)0x13, (q15_t)0x317, (q15_t)0x14, (q15_t)0x324, (q15_t)0x14, (q15_t)0x330, (q15_t)0x15, (q15_t)0x33d, (q15_t)0x16, (q15_t)0x34a, (q15_t)0x16, (q15_t)0x356, (q15_t)0x17, (q15_t)0x363, (q15_t)0x18, (q15_t)0x36f, (q15_t)0x18, (q15_t)0x37c, (q15_t)0x19, (q15_t)0x388, (q15_t)0x1a, (q15_t)0x395, (q15_t)0x1a, (q15_t)0x3a1, (q15_t)0x1b, (q15_t)0x3ae, (q15_t)0x1c, (q15_t)0x3bb, (q15_t)0x1d, (q15_t)0x3c7, (q15_t)0x1d, (q15_t)0x3d4, (q15_t)0x1e, (q15_t)0x3e0, (q15_t)0x1f, (q15_t)0x3ed, (q15_t)0x20, (q15_t)0x3f9, (q15_t)0x20, (q15_t)0x406, (q15_t)0x21, (q15_t)0x412, (q15_t)0x22, (q15_t)0x41f, (q15_t)0x23, (q15_t)0x42b, (q15_t)0x24, (q15_t)0x438, (q15_t)0x24, (q15_t)0x444, (q15_t)0x25, (q15_t)0x451, (q15_t)0x26, (q15_t)0x45e, (q15_t)0x27, (q15_t)0x46a, (q15_t)0x28, (q15_t)0x477, (q15_t)0x29, (q15_t)0x483, (q15_t)0x2a, (q15_t)0x490, (q15_t)0x2b, (q15_t)0x49c, (q15_t)0x2b, (q15_t)0x4a9, (q15_t)0x2c, (q15_t)0x4b5, (q15_t)0x2d, (q15_t)0x4c2, (q15_t)0x2e, (q15_t)0x4ce, (q15_t)0x2f, (q15_t)0x4db, (q15_t)0x30, (q15_t)0x4e7, (q15_t)0x31, (q15_t)0x4f4, (q15_t)0x32, (q15_t)0x500, (q15_t)0x33, (q15_t)0x50d, (q15_t)0x34, (q15_t)0x51a, (q15_t)0x35, (q15_t)0x526, (q15_t)0x36, (q15_t)0x533, (q15_t)0x37, (q15_t)0x53f, (q15_t)0x38, (q15_t)0x54c, (q15_t)0x39, (q15_t)0x558, (q15_t)0x3a, (q15_t)0x565, (q15_t)0x3b, (q15_t)0x571, (q15_t)0x3c, (q15_t)0x57e, (q15_t)0x3d, (q15_t)0x58a, (q15_t)0x3f, (q15_t)0x597, (q15_t)0x40, (q15_t)0x5a3, (q15_t)0x41, (q15_t)0x5b0, (q15_t)0x42, (q15_t)0x5bc, (q15_t)0x43, (q15_t)0x5c9, (q15_t)0x44, (q15_t)0x5d5, (q15_t)0x45, (q15_t)0x5e2, (q15_t)0x47, (q15_t)0x5ee, (q15_t)0x48, (q15_t)0x5fb, (q15_t)0x49, (q15_t)0x607, (q15_t)0x4a, (q15_t)0x614, (q15_t)0x4b, (q15_t)0x620, (q15_t)0x4c, (q15_t)0x62d, (q15_t)0x4e, (q15_t)0x639, (q15_t)0x4f, (q15_t)0x646, (q15_t)0x50, (q15_t)0x652, (q15_t)0x51, (q15_t)0x65f, (q15_t)0x53, (q15_t)0x66b, (q15_t)0x54, (q15_t)0x678, (q15_t)0x55, (q15_t)0x684, (q15_t)0x56, (q15_t)0x691, (q15_t)0x58, (q15_t)0x69d, (q15_t)0x59, (q15_t)0x6aa, (q15_t)0x5a, (q15_t)0x6b6, (q15_t)0x5c, (q15_t)0x6c3, (q15_t)0x5d, (q15_t)0x6cf, (q15_t)0x5e, (q15_t)0x6dc, (q15_t)0x60, (q15_t)0x6e8, (q15_t)0x61, (q15_t)0x6f5, (q15_t)0x62, (q15_t)0x701, (q15_t)0x64, (q15_t)0x70e, (q15_t)0x65, (q15_t)0x71a, (q15_t)0x67, (q15_t)0x727, (q15_t)0x68, (q15_t)0x733, (q15_t)0x69, (q15_t)0x740, (q15_t)0x6b, (q15_t)0x74c, (q15_t)0x6c, (q15_t)0x759, (q15_t)0x6e, (q15_t)0x765, (q15_t)0x6f, (q15_t)0x772, (q15_t)0x71, (q15_t)0x77e, (q15_t)0x72, (q15_t)0x78b, (q15_t)0x74, (q15_t)0x797, (q15_t)0x75, (q15_t)0x7a4, (q15_t)0x77, (q15_t)0x7b0, (q15_t)0x78, (q15_t)0x7bd, (q15_t)0x7a, (q15_t)0x7c9, (q15_t)0x7b, (q15_t)0x7d6, (q15_t)0x7d, (q15_t)0x7e2, (q15_t)0x7e, (q15_t)0x7ef, (q15_t)0x80, (q15_t)0x7fb, (q15_t)0x81, (q15_t)0x807, (q15_t)0x83, (q15_t)0x814, (q15_t)0x85, (q15_t)0x820, (q15_t)0x86, (q15_t)0x82d, (q15_t)0x88, (q15_t)0x839, (q15_t)0x89, (q15_t)0x846, (q15_t)0x8b, (q15_t)0x852, (q15_t)0x8d, (q15_t)0x85f, (q15_t)0x8e, (q15_t)0x86b, (q15_t)0x90, (q15_t)0x878, (q15_t)0x92, (q15_t)0x884, (q15_t)0x93, (q15_t)0x891, (q15_t)0x95, (q15_t)0x89d, (q15_t)0x97, (q15_t)0x8a9, (q15_t)0x98, (q15_t)0x8b6, (q15_t)0x9a, (q15_t)0x8c2, (q15_t)0x9c, (q15_t)0x8cf, (q15_t)0x9e, (q15_t)0x8db, (q15_t)0x9f, (q15_t)0x8e8, (q15_t)0xa1, (q15_t)0x8f4, (q15_t)0xa3, (q15_t)0x901, (q15_t)0xa5, (q15_t)0x90d, (q15_t)0xa6, (q15_t)0x919, (q15_t)0xa8, (q15_t)0x926, (q15_t)0xaa, (q15_t)0x932, (q15_t)0xac, (q15_t)0x93f, (q15_t)0xae, (q15_t)0x94b, (q15_t)0xaf, (q15_t)0x958, (q15_t)0xb1, (q15_t)0x964, (q15_t)0xb3, (q15_t)0x970, (q15_t)0xb5, (q15_t)0x97d, (q15_t)0xb7, (q15_t)0x989, (q15_t)0xb9, (q15_t)0x996, (q15_t)0xbb, (q15_t)0x9a2, (q15_t)0xbd, (q15_t)0x9af, (q15_t)0xbe, (q15_t)0x9bb, (q15_t)0xc0, (q15_t)0x9c7, (q15_t)0xc2, (q15_t)0x9d4, (q15_t)0xc4, (q15_t)0x9e0, (q15_t)0xc6, (q15_t)0x9ed, (q15_t)0xc8, (q15_t)0x9f9, (q15_t)0xca, (q15_t)0xa06, (q15_t)0xcc, (q15_t)0xa12, (q15_t)0xce, (q15_t)0xa1e, (q15_t)0xd0, (q15_t)0xa2b, (q15_t)0xd2, (q15_t)0xa37, (q15_t)0xd4, (q15_t)0xa44, (q15_t)0xd6, (q15_t)0xa50, (q15_t)0xd8, (q15_t)0xa5c, (q15_t)0xda, (q15_t)0xa69, (q15_t)0xdc, (q15_t)0xa75, (q15_t)0xde, (q15_t)0xa82, (q15_t)0xe0, (q15_t)0xa8e, (q15_t)0xe2, (q15_t)0xa9a, (q15_t)0xe4, (q15_t)0xaa7, (q15_t)0xe7, (q15_t)0xab3, (q15_t)0xe9, (q15_t)0xac0, (q15_t)0xeb, (q15_t)0xacc, (q15_t)0xed, (q15_t)0xad8, (q15_t)0xef, (q15_t)0xae5, (q15_t)0xf1, (q15_t)0xaf1, (q15_t)0xf3, (q15_t)0xafd, (q15_t)0xf6, (q15_t)0xb0a, (q15_t)0xf8, (q15_t)0xb16, (q15_t)0xfa, (q15_t)0xb23, (q15_t)0xfc, (q15_t)0xb2f, (q15_t)0xfe, (q15_t)0xb3b, (q15_t)0x100, (q15_t)0xb48, (q15_t)0x103, (q15_t)0xb54, (q15_t)0x105, (q15_t)0xb60, (q15_t)0x107, (q15_t)0xb6d, (q15_t)0x109, (q15_t)0xb79, (q15_t)0x10c, (q15_t)0xb85, (q15_t)0x10e, (q15_t)0xb92, (q15_t)0x110, (q15_t)0xb9e, (q15_t)0x113, (q15_t)0xbab, (q15_t)0x115, (q15_t)0xbb7, (q15_t)0x117, (q15_t)0xbc3, (q15_t)0x119, (q15_t)0xbd0, (q15_t)0x11c, (q15_t)0xbdc, (q15_t)0x11e, (q15_t)0xbe8, (q15_t)0x120, (q15_t)0xbf5, (q15_t)0x123, (q15_t)0xc01, (q15_t)0x125, (q15_t)0xc0d, (q15_t)0x128, (q15_t)0xc1a, (q15_t)0x12a, (q15_t)0xc26, (q15_t)0x12c, (q15_t)0xc32, (q15_t)0x12f, (q15_t)0xc3f, (q15_t)0x131, (q15_t)0xc4b, (q15_t)0x134, (q15_t)0xc57, (q15_t)0x136, (q15_t)0xc64, (q15_t)0x138, (q15_t)0xc70, (q15_t)0x13b, (q15_t)0xc7c, (q15_t)0x13d, (q15_t)0xc89, (q15_t)0x140, (q15_t)0xc95, (q15_t)0x142, (q15_t)0xca1, (q15_t)0x145, (q15_t)0xcae, (q15_t)0x147, (q15_t)0xcba, (q15_t)0x14a, (q15_t)0xcc6, (q15_t)0x14c, (q15_t)0xcd3, (q15_t)0x14f, (q15_t)0xcdf, (q15_t)0x151, (q15_t)0xceb, (q15_t)0x154, (q15_t)0xcf8, (q15_t)0x156, (q15_t)0xd04, (q15_t)0x159, (q15_t)0xd10, (q15_t)0x15b, (q15_t)0xd1c, (q15_t)0x15e, (q15_t)0xd29, (q15_t)0x161, (q15_t)0xd35, (q15_t)0x163, (q15_t)0xd41, (q15_t)0x166, (q15_t)0xd4e, (q15_t)0x168, (q15_t)0xd5a, (q15_t)0x16b, (q15_t)0xd66, (q15_t)0x16e, (q15_t)0xd72, (q15_t)0x170, (q15_t)0xd7f, (q15_t)0x173, (q15_t)0xd8b, (q15_t)0x176, (q15_t)0xd97, (q15_t)0x178, (q15_t)0xda4, (q15_t)0x17b, (q15_t)0xdb0, (q15_t)0x17e, (q15_t)0xdbc, (q15_t)0x180, (q15_t)0xdc8, (q15_t)0x183, (q15_t)0xdd5, (q15_t)0x186, (q15_t)0xde1, (q15_t)0x189, (q15_t)0xded, (q15_t)0x18b, (q15_t)0xdf9, (q15_t)0x18e, (q15_t)0xe06, (q15_t)0x191, (q15_t)0xe12, (q15_t)0x194, (q15_t)0xe1e, (q15_t)0x196, (q15_t)0xe2b, (q15_t)0x199, (q15_t)0xe37, (q15_t)0x19c, (q15_t)0xe43, (q15_t)0x19f, (q15_t)0xe4f, (q15_t)0x1a2, (q15_t)0xe5c, (q15_t)0x1a4, (q15_t)0xe68, (q15_t)0x1a7, (q15_t)0xe74, (q15_t)0x1aa, (q15_t)0xe80, (q15_t)0x1ad, (q15_t)0xe8c, (q15_t)0x1b0, (q15_t)0xe99, (q15_t)0x1b3, (q15_t)0xea5, (q15_t)0x1b6, (q15_t)0xeb1, (q15_t)0x1b8, (q15_t)0xebd, (q15_t)0x1bb, (q15_t)0xeca, (q15_t)0x1be, (q15_t)0xed6, (q15_t)0x1c1, (q15_t)0xee2, (q15_t)0x1c4, (q15_t)0xeee, (q15_t)0x1c7, (q15_t)0xefb, (q15_t)0x1ca, (q15_t)0xf07, (q15_t)0x1cd, (q15_t)0xf13, (q15_t)0x1d0, (q15_t)0xf1f, (q15_t)0x1d3, (q15_t)0xf2b, (q15_t)0x1d6, (q15_t)0xf38, (q15_t)0x1d9, (q15_t)0xf44, (q15_t)0x1dc, (q15_t)0xf50, (q15_t)0x1df, (q15_t)0xf5c, (q15_t)0x1e2, (q15_t)0xf68, (q15_t)0x1e5, (q15_t)0xf75, (q15_t)0x1e8, (q15_t)0xf81, (q15_t)0x1eb, (q15_t)0xf8d, (q15_t)0x1ee, (q15_t)0xf99, (q15_t)0x1f1, (q15_t)0xfa5, (q15_t)0x1f4, (q15_t)0xfb2, (q15_t)0x1f7, (q15_t)0xfbe, (q15_t)0x1fa, (q15_t)0xfca, (q15_t)0x1fd, (q15_t)0xfd6, (q15_t)0x201, (q15_t)0xfe2, (q15_t)0x204, (q15_t)0xfee, (q15_t)0x207, (q15_t)0xffb, (q15_t)0x20a, (q15_t)0x1007, (q15_t)0x20d, (q15_t)0x1013, (q15_t)0x210, (q15_t)0x101f, (q15_t)0x213, (q15_t)0x102b, (q15_t)0x217, (q15_t)0x1037, (q15_t)0x21a, (q15_t)0x1044, (q15_t)0x21d, (q15_t)0x1050, (q15_t)0x220, (q15_t)0x105c, (q15_t)0x223, (q15_t)0x1068, (q15_t)0x227, (q15_t)0x1074, (q15_t)0x22a, (q15_t)0x1080, (q15_t)0x22d, (q15_t)0x108c, (q15_t)0x230, (q15_t)0x1099, (q15_t)0x234, (q15_t)0x10a5, (q15_t)0x237, (q15_t)0x10b1, (q15_t)0x23a, (q15_t)0x10bd, (q15_t)0x23e, (q15_t)0x10c9, (q15_t)0x241, (q15_t)0x10d5, (q15_t)0x244, (q15_t)0x10e1, (q15_t)0x247, (q15_t)0x10ed, (q15_t)0x24b, (q15_t)0x10fa, (q15_t)0x24e, (q15_t)0x1106, (q15_t)0x251, (q15_t)0x1112, (q15_t)0x255, (q15_t)0x111e, (q15_t)0x258, (q15_t)0x112a, (q15_t)0x25c, (q15_t)0x1136, (q15_t)0x25f, (q15_t)0x1142, (q15_t)0x262, (q15_t)0x114e, (q15_t)0x266, (q15_t)0x115a, (q15_t)0x269, (q15_t)0x1167, (q15_t)0x26d, (q15_t)0x1173, (q15_t)0x270, (q15_t)0x117f, (q15_t)0x273, (q15_t)0x118b, (q15_t)0x277, (q15_t)0x1197, (q15_t)0x27a, (q15_t)0x11a3, (q15_t)0x27e, (q15_t)0x11af, (q15_t)0x281, (q15_t)0x11bb, (q15_t)0x285, (q15_t)0x11c7, (q15_t)0x288, (q15_t)0x11d3, (q15_t)0x28c, (q15_t)0x11df, (q15_t)0x28f, (q15_t)0x11eb, (q15_t)0x293, (q15_t)0x11f7, (q15_t)0x296, (q15_t)0x1204, (q15_t)0x29a, (q15_t)0x1210, (q15_t)0x29d, (q15_t)0x121c, (q15_t)0x2a1, (q15_t)0x1228, (q15_t)0x2a5, (q15_t)0x1234, (q15_t)0x2a8, (q15_t)0x1240, (q15_t)0x2ac, (q15_t)0x124c, (q15_t)0x2af, (q15_t)0x1258, (q15_t)0x2b3, (q15_t)0x1264, (q15_t)0x2b7, (q15_t)0x1270, (q15_t)0x2ba, (q15_t)0x127c, (q15_t)0x2be, (q15_t)0x1288, (q15_t)0x2c1, (q15_t)0x1294, (q15_t)0x2c5, (q15_t)0x12a0, (q15_t)0x2c9, (q15_t)0x12ac, (q15_t)0x2cc, (q15_t)0x12b8, (q15_t)0x2d0, (q15_t)0x12c4, (q15_t)0x2d4, (q15_t)0x12d0, (q15_t)0x2d8, (q15_t)0x12dc, (q15_t)0x2db, (q15_t)0x12e8, (q15_t)0x2df, (q15_t)0x12f4, (q15_t)0x2e3, (q15_t)0x1300, (q15_t)0x2e6, (q15_t)0x130c, (q15_t)0x2ea, (q15_t)0x1318, (q15_t)0x2ee, (q15_t)0x1324, (q15_t)0x2f2, (q15_t)0x1330, (q15_t)0x2f5, (q15_t)0x133c, (q15_t)0x2f9, (q15_t)0x1348, (q15_t)0x2fd, (q15_t)0x1354, (q15_t)0x301, (q15_t)0x1360, (q15_t)0x305, (q15_t)0x136c, (q15_t)0x308, (q15_t)0x1378, (q15_t)0x30c, (q15_t)0x1384, (q15_t)0x310, (q15_t)0x1390, (q15_t)0x314, (q15_t)0x139c, (q15_t)0x318, (q15_t)0x13a8, (q15_t)0x31c, (q15_t)0x13b4, (q15_t)0x320, (q15_t)0x13c0, (q15_t)0x323, (q15_t)0x13cc, (q15_t)0x327, (q15_t)0x13d8, (q15_t)0x32b, (q15_t)0x13e4, (q15_t)0x32f, (q15_t)0x13f0, (q15_t)0x333, (q15_t)0x13fb, (q15_t)0x337, (q15_t)0x1407, (q15_t)0x33b, (q15_t)0x1413, (q15_t)0x33f, (q15_t)0x141f, (q15_t)0x343, (q15_t)0x142b, (q15_t)0x347, (q15_t)0x1437, (q15_t)0x34b, (q15_t)0x1443, (q15_t)0x34f, (q15_t)0x144f, (q15_t)0x353, (q15_t)0x145b, (q15_t)0x357, (q15_t)0x1467, (q15_t)0x35b, (q15_t)0x1473, (q15_t)0x35f, (q15_t)0x147f, (q15_t)0x363, (q15_t)0x148b, (q15_t)0x367, (q15_t)0x1496, (q15_t)0x36b, (q15_t)0x14a2, (q15_t)0x36f, (q15_t)0x14ae, (q15_t)0x373, (q15_t)0x14ba, (q15_t)0x377, (q15_t)0x14c6, (q15_t)0x37b, (q15_t)0x14d2, (q15_t)0x37f, (q15_t)0x14de, (q15_t)0x383, (q15_t)0x14ea, (q15_t)0x387, (q15_t)0x14f6, (q15_t)0x38c, (q15_t)0x1501, (q15_t)0x390, (q15_t)0x150d, (q15_t)0x394, (q15_t)0x1519, (q15_t)0x398, (q15_t)0x1525, (q15_t)0x39c, (q15_t)0x1531, (q15_t)0x3a0, (q15_t)0x153d, (q15_t)0x3a5, (q15_t)0x1549, (q15_t)0x3a9, (q15_t)0x1554, (q15_t)0x3ad, (q15_t)0x1560, (q15_t)0x3b1, (q15_t)0x156c, (q15_t)0x3b5, (q15_t)0x1578, (q15_t)0x3ba, (q15_t)0x1584, (q15_t)0x3be, (q15_t)0x1590, (q15_t)0x3c2, (q15_t)0x159b, (q15_t)0x3c6, (q15_t)0x15a7, (q15_t)0x3ca, (q15_t)0x15b3, (q15_t)0x3cf, (q15_t)0x15bf, (q15_t)0x3d3, (q15_t)0x15cb, (q15_t)0x3d7, (q15_t)0x15d7, (q15_t)0x3dc, (q15_t)0x15e2, (q15_t)0x3e0, (q15_t)0x15ee, (q15_t)0x3e4, (q15_t)0x15fa, (q15_t)0x3e9, (q15_t)0x1606, (q15_t)0x3ed, (q15_t)0x1612, (q15_t)0x3f1, (q15_t)0x161d, (q15_t)0x3f6, (q15_t)0x1629, (q15_t)0x3fa, (q15_t)0x1635, (q15_t)0x3fe, (q15_t)0x1641, (q15_t)0x403, (q15_t)0x164c, (q15_t)0x407, (q15_t)0x1658, (q15_t)0x40b, (q15_t)0x1664, (q15_t)0x410, (q15_t)0x1670, (q15_t)0x414, (q15_t)0x167c, (q15_t)0x419, (q15_t)0x1687, (q15_t)0x41d, (q15_t)0x1693, (q15_t)0x422, (q15_t)0x169f, (q15_t)0x426, (q15_t)0x16ab, (q15_t)0x42a, (q15_t)0x16b6, (q15_t)0x42f, (q15_t)0x16c2, (q15_t)0x433, (q15_t)0x16ce, (q15_t)0x438, (q15_t)0x16da, (q15_t)0x43c, (q15_t)0x16e5, (q15_t)0x441, (q15_t)0x16f1, (q15_t)0x445, (q15_t)0x16fd, (q15_t)0x44a, (q15_t)0x1709, (q15_t)0x44e, (q15_t)0x1714, (q15_t)0x453, (q15_t)0x1720, (q15_t)0x457, (q15_t)0x172c, (q15_t)0x45c, (q15_t)0x1737, (q15_t)0x461, (q15_t)0x1743, (q15_t)0x465, (q15_t)0x174f, (q15_t)0x46a, (q15_t)0x175b, (q15_t)0x46e, (q15_t)0x1766, (q15_t)0x473, (q15_t)0x1772, (q15_t)0x478, (q15_t)0x177e, (q15_t)0x47c, (q15_t)0x1789, (q15_t)0x481, (q15_t)0x1795, (q15_t)0x485, (q15_t)0x17a1, (q15_t)0x48a, (q15_t)0x17ac, (q15_t)0x48f, (q15_t)0x17b8, (q15_t)0x493, (q15_t)0x17c4, (q15_t)0x498, (q15_t)0x17cf, (q15_t)0x49d, (q15_t)0x17db, (q15_t)0x4a1, (q15_t)0x17e7, (q15_t)0x4a6, (q15_t)0x17f2, (q15_t)0x4ab, (q15_t)0x17fe, (q15_t)0x4b0, (q15_t)0x180a, (q15_t)0x4b4, (q15_t)0x1815, (q15_t)0x4b9, (q15_t)0x1821, (q15_t)0x4be, (q15_t)0x182d, (q15_t)0x4c2, (q15_t)0x1838, (q15_t)0x4c7, (q15_t)0x1844, (q15_t)0x4cc, (q15_t)0x184f, (q15_t)0x4d1, (q15_t)0x185b, (q15_t)0x4d6, (q15_t)0x1867, (q15_t)0x4da, (q15_t)0x1872, (q15_t)0x4df, (q15_t)0x187e, (q15_t)0x4e4, (q15_t)0x1889, (q15_t)0x4e9, (q15_t)0x1895, (q15_t)0x4ee, (q15_t)0x18a1, (q15_t)0x4f2, (q15_t)0x18ac, (q15_t)0x4f7, (q15_t)0x18b8, (q15_t)0x4fc, (q15_t)0x18c3, (q15_t)0x501, (q15_t)0x18cf, (q15_t)0x506, (q15_t)0x18db, (q15_t)0x50b, (q15_t)0x18e6, (q15_t)0x510, (q15_t)0x18f2, (q15_t)0x515, (q15_t)0x18fd, (q15_t)0x51a, (q15_t)0x1909, (q15_t)0x51e, (q15_t)0x1914, (q15_t)0x523, (q15_t)0x1920, (q15_t)0x528, (q15_t)0x192c, (q15_t)0x52d, (q15_t)0x1937, (q15_t)0x532, (q15_t)0x1943, (q15_t)0x537, (q15_t)0x194e, (q15_t)0x53c, (q15_t)0x195a, (q15_t)0x541, (q15_t)0x1965, (q15_t)0x546, (q15_t)0x1971, (q15_t)0x54b, (q15_t)0x197c, (q15_t)0x550, (q15_t)0x1988, (q15_t)0x555, (q15_t)0x1993, (q15_t)0x55a, (q15_t)0x199f, (q15_t)0x55f, (q15_t)0x19aa, (q15_t)0x564, (q15_t)0x19b6, (q15_t)0x569, (q15_t)0x19c1, (q15_t)0x56e, (q15_t)0x19cd, (q15_t)0x573, (q15_t)0x19d8, (q15_t)0x578, (q15_t)0x19e4, (q15_t)0x57e, (q15_t)0x19ef, (q15_t)0x583, (q15_t)0x19fb, (q15_t)0x588, (q15_t)0x1a06, (q15_t)0x58d, (q15_t)0x1a12, (q15_t)0x592, (q15_t)0x1a1d, (q15_t)0x597, (q15_t)0x1a29, (q15_t)0x59c, (q15_t)0x1a34, (q15_t)0x5a1, (q15_t)0x1a40, (q15_t)0x5a7, (q15_t)0x1a4b, (q15_t)0x5ac, (q15_t)0x1a57, (q15_t)0x5b1, (q15_t)0x1a62, (q15_t)0x5b6, (q15_t)0x1a6e, (q15_t)0x5bb, (q15_t)0x1a79, (q15_t)0x5c1, (q15_t)0x1a84, (q15_t)0x5c6, (q15_t)0x1a90, (q15_t)0x5cb, (q15_t)0x1a9b, (q15_t)0x5d0, (q15_t)0x1aa7, (q15_t)0x5d5, (q15_t)0x1ab2, (q15_t)0x5db, (q15_t)0x1abe, (q15_t)0x5e0, (q15_t)0x1ac9, (q15_t)0x5e5, (q15_t)0x1ad4, (q15_t)0x5ea, (q15_t)0x1ae0, (q15_t)0x5f0, (q15_t)0x1aeb, (q15_t)0x5f5, (q15_t)0x1af7, (q15_t)0x5fa, (q15_t)0x1b02, (q15_t)0x600, (q15_t)0x1b0d, (q15_t)0x605, (q15_t)0x1b19, (q15_t)0x60a, (q15_t)0x1b24, (q15_t)0x610, (q15_t)0x1b30, (q15_t)0x615, (q15_t)0x1b3b, (q15_t)0x61a, (q15_t)0x1b46, (q15_t)0x620, (q15_t)0x1b52, (q15_t)0x625, (q15_t)0x1b5d, (q15_t)0x62a, (q15_t)0x1b68, (q15_t)0x630, (q15_t)0x1b74, (q15_t)0x635, (q15_t)0x1b7f, (q15_t)0x63b, (q15_t)0x1b8a, (q15_t)0x640, (q15_t)0x1b96, (q15_t)0x645, (q15_t)0x1ba1, (q15_t)0x64b, (q15_t)0x1bac, (q15_t)0x650, (q15_t)0x1bb8, (q15_t)0x656, (q15_t)0x1bc3, (q15_t)0x65b, (q15_t)0x1bce, (q15_t)0x661, (q15_t)0x1bda, (q15_t)0x666, (q15_t)0x1be5, (q15_t)0x66c, (q15_t)0x1bf0, (q15_t)0x671, (q15_t)0x1bfc, (q15_t)0x677, (q15_t)0x1c07, (q15_t)0x67c, (q15_t)0x1c12, (q15_t)0x682, (q15_t)0x1c1e, (q15_t)0x687, (q15_t)0x1c29, (q15_t)0x68d, (q15_t)0x1c34, (q15_t)0x692, (q15_t)0x1c3f, (q15_t)0x698, (q15_t)0x1c4b, (q15_t)0x69d, (q15_t)0x1c56, (q15_t)0x6a3, (q15_t)0x1c61, (q15_t)0x6a8, (q15_t)0x1c6c, (q15_t)0x6ae, (q15_t)0x1c78, (q15_t)0x6b4, (q15_t)0x1c83, (q15_t)0x6b9, (q15_t)0x1c8e, (q15_t)0x6bf, (q15_t)0x1c99, (q15_t)0x6c5, (q15_t)0x1ca5, (q15_t)0x6ca, (q15_t)0x1cb0, (q15_t)0x6d0, (q15_t)0x1cbb, (q15_t)0x6d5, (q15_t)0x1cc6, (q15_t)0x6db, (q15_t)0x1cd2, (q15_t)0x6e1, (q15_t)0x1cdd, (q15_t)0x6e6, (q15_t)0x1ce8, (q15_t)0x6ec, (q15_t)0x1cf3, (q15_t)0x6f2, (q15_t)0x1cff, (q15_t)0x6f7, (q15_t)0x1d0a, (q15_t)0x6fd, (q15_t)0x1d15, (q15_t)0x703, (q15_t)0x1d20, (q15_t)0x709, (q15_t)0x1d2b, (q15_t)0x70e, (q15_t)0x1d36, (q15_t)0x714, (q15_t)0x1d42, (q15_t)0x71a, (q15_t)0x1d4d, (q15_t)0x720, (q15_t)0x1d58, (q15_t)0x725, (q15_t)0x1d63, (q15_t)0x72b, (q15_t)0x1d6e, (q15_t)0x731, (q15_t)0x1d79, (q15_t)0x737, (q15_t)0x1d85, (q15_t)0x73d, (q15_t)0x1d90, (q15_t)0x742, (q15_t)0x1d9b, (q15_t)0x748, (q15_t)0x1da6, (q15_t)0x74e, (q15_t)0x1db1, (q15_t)0x754, (q15_t)0x1dbc, (q15_t)0x75a, (q15_t)0x1dc7, (q15_t)0x75f, (q15_t)0x1dd3, (q15_t)0x765, (q15_t)0x1dde, (q15_t)0x76b, (q15_t)0x1de9, (q15_t)0x771, (q15_t)0x1df4, (q15_t)0x777, (q15_t)0x1dff, (q15_t)0x77d, (q15_t)0x1e0a, (q15_t)0x783, (q15_t)0x1e15, (q15_t)0x789, (q15_t)0x1e20, (q15_t)0x78f, (q15_t)0x1e2b, (q15_t)0x795, (q15_t)0x1e36, (q15_t)0x79a, (q15_t)0x1e42, (q15_t)0x7a0, (q15_t)0x1e4d, (q15_t)0x7a6, (q15_t)0x1e58, (q15_t)0x7ac, (q15_t)0x1e63, (q15_t)0x7b2, (q15_t)0x1e6e, (q15_t)0x7b8, (q15_t)0x1e79, (q15_t)0x7be, (q15_t)0x1e84, (q15_t)0x7c4, (q15_t)0x1e8f, (q15_t)0x7ca, (q15_t)0x1e9a, (q15_t)0x7d0, (q15_t)0x1ea5, (q15_t)0x7d6, (q15_t)0x1eb0, (q15_t)0x7dc, (q15_t)0x1ebb, (q15_t)0x7e2, (q15_t)0x1ec6, (q15_t)0x7e8, (q15_t)0x1ed1, (q15_t)0x7ee, (q15_t)0x1edc, (q15_t)0x7f5, (q15_t)0x1ee7, (q15_t)0x7fb, (q15_t)0x1ef2, (q15_t)0x801, (q15_t)0x1efd, (q15_t)0x807, (q15_t)0x1f08, (q15_t)0x80d, (q15_t)0x1f13, (q15_t)0x813, (q15_t)0x1f1e, (q15_t)0x819, (q15_t)0x1f29, (q15_t)0x81f, (q15_t)0x1f34, (q15_t)0x825, (q15_t)0x1f3f, (q15_t)0x82b, (q15_t)0x1f4a, (q15_t)0x832, (q15_t)0x1f55, (q15_t)0x838, (q15_t)0x1f60, (q15_t)0x83e, (q15_t)0x1f6b, (q15_t)0x844, (q15_t)0x1f76, (q15_t)0x84a, (q15_t)0x1f81, (q15_t)0x850, (q15_t)0x1f8c, (q15_t)0x857, (q15_t)0x1f97, (q15_t)0x85d, (q15_t)0x1fa2, (q15_t)0x863, (q15_t)0x1fac, (q15_t)0x869, (q15_t)0x1fb7, (q15_t)0x870, (q15_t)0x1fc2, (q15_t)0x876, (q15_t)0x1fcd, (q15_t)0x87c, (q15_t)0x1fd8, (q15_t)0x882, (q15_t)0x1fe3, (q15_t)0x889, (q15_t)0x1fee, (q15_t)0x88f, (q15_t)0x1ff9, (q15_t)0x895, (q15_t)0x2004, (q15_t)0x89b, (q15_t)0x200f, (q15_t)0x8a2, (q15_t)0x2019, (q15_t)0x8a8, (q15_t)0x2024, (q15_t)0x8ae, (q15_t)0x202f, (q15_t)0x8b5, (q15_t)0x203a, (q15_t)0x8bb, (q15_t)0x2045, (q15_t)0x8c1, (q15_t)0x2050, (q15_t)0x8c8, (q15_t)0x205b, (q15_t)0x8ce, (q15_t)0x2065, (q15_t)0x8d4, (q15_t)0x2070, (q15_t)0x8db, (q15_t)0x207b, (q15_t)0x8e1, (q15_t)0x2086, (q15_t)0x8e8, (q15_t)0x2091, (q15_t)0x8ee, (q15_t)0x209b, (q15_t)0x8f4, (q15_t)0x20a6, (q15_t)0x8fb, (q15_t)0x20b1, (q15_t)0x901, (q15_t)0x20bc, (q15_t)0x908, (q15_t)0x20c7, (q15_t)0x90e, (q15_t)0x20d1, (q15_t)0x915, (q15_t)0x20dc, (q15_t)0x91b, (q15_t)0x20e7, (q15_t)0x921, (q15_t)0x20f2, (q15_t)0x928, (q15_t)0x20fd, (q15_t)0x92e, (q15_t)0x2107, (q15_t)0x935, (q15_t)0x2112, (q15_t)0x93b, (q15_t)0x211d, (q15_t)0x942, (q15_t)0x2128, (q15_t)0x948, (q15_t)0x2132, (q15_t)0x94f, (q15_t)0x213d, (q15_t)0x955, (q15_t)0x2148, (q15_t)0x95c, (q15_t)0x2153, (q15_t)0x963, (q15_t)0x215d, (q15_t)0x969, (q15_t)0x2168, (q15_t)0x970, (q15_t)0x2173, (q15_t)0x976, (q15_t)0x217d, (q15_t)0x97d, (q15_t)0x2188, (q15_t)0x983, (q15_t)0x2193, (q15_t)0x98a, (q15_t)0x219e, (q15_t)0x991, (q15_t)0x21a8, (q15_t)0x997, (q15_t)0x21b3, (q15_t)0x99e, (q15_t)0x21be, (q15_t)0x9a4, (q15_t)0x21c8, (q15_t)0x9ab, (q15_t)0x21d3, (q15_t)0x9b2, (q15_t)0x21de, (q15_t)0x9b8, (q15_t)0x21e8, (q15_t)0x9bf, (q15_t)0x21f3, (q15_t)0x9c6, (q15_t)0x21fe, (q15_t)0x9cc, (q15_t)0x2208, (q15_t)0x9d3, (q15_t)0x2213, (q15_t)0x9da, (q15_t)0x221e, (q15_t)0x9e0, (q15_t)0x2228, (q15_t)0x9e7, (q15_t)0x2233, (q15_t)0x9ee, (q15_t)0x223d, (q15_t)0x9f5, (q15_t)0x2248, (q15_t)0x9fb, (q15_t)0x2253, (q15_t)0xa02, (q15_t)0x225d, (q15_t)0xa09, (q15_t)0x2268, (q15_t)0xa10, (q15_t)0x2272, (q15_t)0xa16, (q15_t)0x227d, (q15_t)0xa1d, (q15_t)0x2288, (q15_t)0xa24, (q15_t)0x2292, (q15_t)0xa2b, (q15_t)0x229d, (q15_t)0xa32, (q15_t)0x22a7, (q15_t)0xa38, (q15_t)0x22b2, (q15_t)0xa3f, (q15_t)0x22bc, (q15_t)0xa46, (q15_t)0x22c7, (q15_t)0xa4d, (q15_t)0x22d2, (q15_t)0xa54, (q15_t)0x22dc, (q15_t)0xa5b, (q15_t)0x22e7, (q15_t)0xa61, (q15_t)0x22f1, (q15_t)0xa68, (q15_t)0x22fc, (q15_t)0xa6f, (q15_t)0x2306, (q15_t)0xa76, (q15_t)0x2311, (q15_t)0xa7d, (q15_t)0x231b, (q15_t)0xa84, (q15_t)0x2326, (q15_t)0xa8b, (q15_t)0x2330, (q15_t)0xa92, (q15_t)0x233b, (q15_t)0xa99, (q15_t)0x2345, (q15_t)0xa9f, (q15_t)0x2350, (q15_t)0xaa6, (q15_t)0x235a, (q15_t)0xaad, (q15_t)0x2365, (q15_t)0xab4, (q15_t)0x236f, (q15_t)0xabb, (q15_t)0x237a, (q15_t)0xac2, (q15_t)0x2384, (q15_t)0xac9, (q15_t)0x238e, (q15_t)0xad0, (q15_t)0x2399, (q15_t)0xad7, (q15_t)0x23a3, (q15_t)0xade, (q15_t)0x23ae, (q15_t)0xae5, (q15_t)0x23b8, (q15_t)0xaec, (q15_t)0x23c3, (q15_t)0xaf3, (q15_t)0x23cd, (q15_t)0xafa, (q15_t)0x23d7, (q15_t)0xb01, (q15_t)0x23e2, (q15_t)0xb08, (q15_t)0x23ec, (q15_t)0xb0f, (q15_t)0x23f7, (q15_t)0xb16, (q15_t)0x2401, (q15_t)0xb1e, (q15_t)0x240b, (q15_t)0xb25, (q15_t)0x2416, (q15_t)0xb2c, (q15_t)0x2420, (q15_t)0xb33, (q15_t)0x242b, (q15_t)0xb3a, (q15_t)0x2435, (q15_t)0xb41, (q15_t)0x243f, (q15_t)0xb48, (q15_t)0x244a, (q15_t)0xb4f, (q15_t)0x2454, (q15_t)0xb56, (q15_t)0x245e, (q15_t)0xb5e, (q15_t)0x2469, (q15_t)0xb65, (q15_t)0x2473, (q15_t)0xb6c, (q15_t)0x247d, (q15_t)0xb73, (q15_t)0x2488, (q15_t)0xb7a, (q15_t)0x2492, (q15_t)0xb81, (q15_t)0x249c, (q15_t)0xb89, (q15_t)0x24a7, (q15_t)0xb90, (q15_t)0x24b1, (q15_t)0xb97, (q15_t)0x24bb, (q15_t)0xb9e, (q15_t)0x24c5, (q15_t)0xba5, (q15_t)0x24d0, (q15_t)0xbad, (q15_t)0x24da, (q15_t)0xbb4, (q15_t)0x24e4, (q15_t)0xbbb, (q15_t)0x24ef, (q15_t)0xbc2, (q15_t)0x24f9, (q15_t)0xbca, (q15_t)0x2503, (q15_t)0xbd1, (q15_t)0x250d, (q15_t)0xbd8, (q15_t)0x2518, (q15_t)0xbe0, (q15_t)0x2522, (q15_t)0xbe7, (q15_t)0x252c, (q15_t)0xbee, (q15_t)0x2536, (q15_t)0xbf5, (q15_t)0x2541, (q15_t)0xbfd, (q15_t)0x254b, (q15_t)0xc04, (q15_t)0x2555, (q15_t)0xc0b, (q15_t)0x255f, (q15_t)0xc13, (q15_t)0x2569, (q15_t)0xc1a, (q15_t)0x2574, (q15_t)0xc21, (q15_t)0x257e, (q15_t)0xc29, (q15_t)0x2588, (q15_t)0xc30, (q15_t)0x2592, (q15_t)0xc38, (q15_t)0x259c, (q15_t)0xc3f, (q15_t)0x25a6, (q15_t)0xc46, (q15_t)0x25b1, (q15_t)0xc4e, (q15_t)0x25bb, (q15_t)0xc55, (q15_t)0x25c5, (q15_t)0xc5d, (q15_t)0x25cf, (q15_t)0xc64, (q15_t)0x25d9, (q15_t)0xc6b, (q15_t)0x25e3, (q15_t)0xc73, (q15_t)0x25ed, (q15_t)0xc7a, (q15_t)0x25f8, (q15_t)0xc82, (q15_t)0x2602, (q15_t)0xc89, (q15_t)0x260c, (q15_t)0xc91, (q15_t)0x2616, (q15_t)0xc98, (q15_t)0x2620, (q15_t)0xca0, (q15_t)0x262a, (q15_t)0xca7, (q15_t)0x2634, (q15_t)0xcaf, (q15_t)0x263e, (q15_t)0xcb6, (q15_t)0x2648, (q15_t)0xcbe, (q15_t)0x2652, (q15_t)0xcc5, (q15_t)0x265c, (q15_t)0xccd, (q15_t)0x2666, (q15_t)0xcd4, (q15_t)0x2671, (q15_t)0xcdc, (q15_t)0x267b, (q15_t)0xce3, (q15_t)0x2685, (q15_t)0xceb, (q15_t)0x268f, (q15_t)0xcf3, (q15_t)0x2699, (q15_t)0xcfa, (q15_t)0x26a3, (q15_t)0xd02, (q15_t)0x26ad, (q15_t)0xd09, (q15_t)0x26b7, (q15_t)0xd11, (q15_t)0x26c1, (q15_t)0xd19, (q15_t)0x26cb, (q15_t)0xd20, (q15_t)0x26d5, (q15_t)0xd28, (q15_t)0x26df, (q15_t)0xd30, (q15_t)0x26e9, (q15_t)0xd37, (q15_t)0x26f3, (q15_t)0xd3f, (q15_t)0x26fd, (q15_t)0xd46, (q15_t)0x2707, (q15_t)0xd4e, (q15_t)0x2711, (q15_t)0xd56, (q15_t)0x271a, (q15_t)0xd5d, (q15_t)0x2724, (q15_t)0xd65, (q15_t)0x272e, (q15_t)0xd6d, (q15_t)0x2738, (q15_t)0xd75, (q15_t)0x2742, (q15_t)0xd7c, (q15_t)0x274c, (q15_t)0xd84, (q15_t)0x2756, (q15_t)0xd8c, (q15_t)0x2760, (q15_t)0xd93, (q15_t)0x276a, (q15_t)0xd9b, (q15_t)0x2774, (q15_t)0xda3, (q15_t)0x277e, (q15_t)0xdab, (q15_t)0x2788, (q15_t)0xdb2, (q15_t)0x2791, (q15_t)0xdba, (q15_t)0x279b, (q15_t)0xdc2, (q15_t)0x27a5, (q15_t)0xdca, (q15_t)0x27af, (q15_t)0xdd2, (q15_t)0x27b9, (q15_t)0xdd9, (q15_t)0x27c3, (q15_t)0xde1, (q15_t)0x27cd, (q15_t)0xde9, (q15_t)0x27d6, (q15_t)0xdf1, (q15_t)0x27e0, (q15_t)0xdf9, (q15_t)0x27ea, (q15_t)0xe01, (q15_t)0x27f4, (q15_t)0xe08, (q15_t)0x27fe, (q15_t)0xe10, (q15_t)0x2808, (q15_t)0xe18, (q15_t)0x2811, (q15_t)0xe20, (q15_t)0x281b, (q15_t)0xe28, (q15_t)0x2825, (q15_t)0xe30, (q15_t)0x282f, (q15_t)0xe38, (q15_t)0x2838, (q15_t)0xe40, (q15_t)0x2842, (q15_t)0xe47, (q15_t)0x284c, (q15_t)0xe4f, (q15_t)0x2856, (q15_t)0xe57, (q15_t)0x2860, (q15_t)0xe5f, (q15_t)0x2869, (q15_t)0xe67, (q15_t)0x2873, (q15_t)0xe6f, (q15_t)0x287d, (q15_t)0xe77, (q15_t)0x2886, (q15_t)0xe7f, (q15_t)0x2890, (q15_t)0xe87, (q15_t)0x289a, (q15_t)0xe8f, (q15_t)0x28a4, (q15_t)0xe97, (q15_t)0x28ad, (q15_t)0xe9f, (q15_t)0x28b7, (q15_t)0xea7, (q15_t)0x28c1, (q15_t)0xeaf, (q15_t)0x28ca, (q15_t)0xeb7, (q15_t)0x28d4, (q15_t)0xebf, (q15_t)0x28de, (q15_t)0xec7, (q15_t)0x28e7, (q15_t)0xecf, (q15_t)0x28f1, (q15_t)0xed7, (q15_t)0x28fb, (q15_t)0xedf, (q15_t)0x2904, (q15_t)0xee7, (q15_t)0x290e, (q15_t)0xeef, (q15_t)0x2918, (q15_t)0xef7, (q15_t)0x2921, (q15_t)0xeff, (q15_t)0x292b, (q15_t)0xf07, (q15_t)0x2935, (q15_t)0xf10, (q15_t)0x293e, (q15_t)0xf18, (q15_t)0x2948, (q15_t)0xf20, (q15_t)0x2951, (q15_t)0xf28, (q15_t)0x295b, (q15_t)0xf30, (q15_t)0x2965, (q15_t)0xf38, (q15_t)0x296e, (q15_t)0xf40, (q15_t)0x2978, (q15_t)0xf48, (q15_t)0x2981, (q15_t)0xf51, (q15_t)0x298b, (q15_t)0xf59, (q15_t)0x2994, (q15_t)0xf61, (q15_t)0x299e, (q15_t)0xf69, (q15_t)0x29a7, (q15_t)0xf71, (q15_t)0x29b1, (q15_t)0xf79, (q15_t)0x29bb, (q15_t)0xf82, (q15_t)0x29c4, (q15_t)0xf8a, (q15_t)0x29ce, (q15_t)0xf92, (q15_t)0x29d7, (q15_t)0xf9a, (q15_t)0x29e1, (q15_t)0xfa3, (q15_t)0x29ea, (q15_t)0xfab, (q15_t)0x29f4, (q15_t)0xfb3, (q15_t)0x29fd, (q15_t)0xfbb, (q15_t)0x2a07, (q15_t)0xfc4, (q15_t)0x2a10, (q15_t)0xfcc, (q15_t)0x2a1a, (q15_t)0xfd4, (q15_t)0x2a23, (q15_t)0xfdc, (q15_t)0x2a2c, (q15_t)0xfe5, (q15_t)0x2a36, (q15_t)0xfed, (q15_t)0x2a3f, (q15_t)0xff5, (q15_t)0x2a49, (q15_t)0xffe, (q15_t)0x2a52, (q15_t)0x1006, (q15_t)0x2a5c, (q15_t)0x100e, (q15_t)0x2a65, (q15_t)0x1016, (q15_t)0x2a6e, (q15_t)0x101f, (q15_t)0x2a78, (q15_t)0x1027, (q15_t)0x2a81, (q15_t)0x1030, (q15_t)0x2a8b, (q15_t)0x1038, (q15_t)0x2a94, (q15_t)0x1040, (q15_t)0x2a9d, (q15_t)0x1049, (q15_t)0x2aa7, (q15_t)0x1051, (q15_t)0x2ab0, (q15_t)0x1059, (q15_t)0x2ab9, (q15_t)0x1062, (q15_t)0x2ac3, (q15_t)0x106a, (q15_t)0x2acc, (q15_t)0x1073, (q15_t)0x2ad6, (q15_t)0x107b, (q15_t)0x2adf, (q15_t)0x1083, (q15_t)0x2ae8, (q15_t)0x108c, (q15_t)0x2af2, (q15_t)0x1094, (q15_t)0x2afb, (q15_t)0x109d, (q15_t)0x2b04, (q15_t)0x10a5, (q15_t)0x2b0d, (q15_t)0x10ae, (q15_t)0x2b17, (q15_t)0x10b6, (q15_t)0x2b20, (q15_t)0x10bf, (q15_t)0x2b29, (q15_t)0x10c7, (q15_t)0x2b33, (q15_t)0x10d0, (q15_t)0x2b3c, (q15_t)0x10d8, (q15_t)0x2b45, (q15_t)0x10e0, (q15_t)0x2b4e, (q15_t)0x10e9, (q15_t)0x2b58, (q15_t)0x10f2, (q15_t)0x2b61, (q15_t)0x10fa, (q15_t)0x2b6a, (q15_t)0x1103, (q15_t)0x2b73, (q15_t)0x110b, (q15_t)0x2b7d, (q15_t)0x1114, (q15_t)0x2b86, (q15_t)0x111c, (q15_t)0x2b8f, (q15_t)0x1125, (q15_t)0x2b98, (q15_t)0x112d, (q15_t)0x2ba1, (q15_t)0x1136, (q15_t)0x2bab, (q15_t)0x113e, (q15_t)0x2bb4, (q15_t)0x1147, (q15_t)0x2bbd, (q15_t)0x1150, (q15_t)0x2bc6, (q15_t)0x1158, (q15_t)0x2bcf, (q15_t)0x1161, (q15_t)0x2bd8, (q15_t)0x1169, (q15_t)0x2be2, (q15_t)0x1172, (q15_t)0x2beb, (q15_t)0x117b, (q15_t)0x2bf4, (q15_t)0x1183, (q15_t)0x2bfd, (q15_t)0x118c, (q15_t)0x2c06, (q15_t)0x1195, (q15_t)0x2c0f, (q15_t)0x119d, (q15_t)0x2c18, (q15_t)0x11a6, (q15_t)0x2c21, (q15_t)0x11af, (q15_t)0x2c2b, (q15_t)0x11b7, (q15_t)0x2c34, (q15_t)0x11c0, (q15_t)0x2c3d, (q15_t)0x11c9, (q15_t)0x2c46, (q15_t)0x11d1, (q15_t)0x2c4f, (q15_t)0x11da, (q15_t)0x2c58, (q15_t)0x11e3, (q15_t)0x2c61, (q15_t)0x11eb, (q15_t)0x2c6a, (q15_t)0x11f4, (q15_t)0x2c73, (q15_t)0x11fd, (q15_t)0x2c7c, (q15_t)0x1206, (q15_t)0x2c85, (q15_t)0x120e, (q15_t)0x2c8e, (q15_t)0x1217, (q15_t)0x2c97, (q15_t)0x1220, (q15_t)0x2ca0, (q15_t)0x1229, (q15_t)0x2ca9, (q15_t)0x1231, (q15_t)0x2cb2, (q15_t)0x123a, (q15_t)0x2cbb, (q15_t)0x1243, (q15_t)0x2cc4, (q15_t)0x124c, (q15_t)0x2ccd, (q15_t)0x1255, (q15_t)0x2cd6, (q15_t)0x125d, (q15_t)0x2cdf, (q15_t)0x1266, (q15_t)0x2ce8, (q15_t)0x126f, (q15_t)0x2cf1, (q15_t)0x1278, (q15_t)0x2cfa, (q15_t)0x1281, (q15_t)0x2d03, (q15_t)0x128a, (q15_t)0x2d0c, (q15_t)0x1292, (q15_t)0x2d15, (q15_t)0x129b, (q15_t)0x2d1e, (q15_t)0x12a4, (q15_t)0x2d27, (q15_t)0x12ad, (q15_t)0x2d2f, (q15_t)0x12b6, (q15_t)0x2d38, (q15_t)0x12bf, (q15_t)0x2d41, (q15_t)0x12c8, (q15_t)0x2d4a, (q15_t)0x12d1, (q15_t)0x2d53, (q15_t)0x12d9, (q15_t)0x2d5c, (q15_t)0x12e2, (q15_t)0x2d65, (q15_t)0x12eb, (q15_t)0x2d6e, (q15_t)0x12f4, (q15_t)0x2d76, (q15_t)0x12fd, (q15_t)0x2d7f, (q15_t)0x1306, (q15_t)0x2d88, (q15_t)0x130f, (q15_t)0x2d91, (q15_t)0x1318, (q15_t)0x2d9a, (q15_t)0x1321, (q15_t)0x2da3, (q15_t)0x132a, (q15_t)0x2dab, (q15_t)0x1333, (q15_t)0x2db4, (q15_t)0x133c, (q15_t)0x2dbd, (q15_t)0x1345, (q15_t)0x2dc6, (q15_t)0x134e, (q15_t)0x2dcf, (q15_t)0x1357, (q15_t)0x2dd7, (q15_t)0x1360, (q15_t)0x2de0, (q15_t)0x1369, (q15_t)0x2de9, (q15_t)0x1372, (q15_t)0x2df2, (q15_t)0x137b, (q15_t)0x2dfa, (q15_t)0x1384, (q15_t)0x2e03, (q15_t)0x138d, (q15_t)0x2e0c, (q15_t)0x1396, (q15_t)0x2e15, (q15_t)0x139f, (q15_t)0x2e1d, (q15_t)0x13a8, (q15_t)0x2e26, (q15_t)0x13b1, (q15_t)0x2e2f, (q15_t)0x13ba, (q15_t)0x2e37, (q15_t)0x13c3, (q15_t)0x2e40, (q15_t)0x13cc, (q15_t)0x2e49, (q15_t)0x13d5, (q15_t)0x2e51, (q15_t)0x13df, (q15_t)0x2e5a, (q15_t)0x13e8, (q15_t)0x2e63, (q15_t)0x13f1, (q15_t)0x2e6b, (q15_t)0x13fa, (q15_t)0x2e74, (q15_t)0x1403, (q15_t)0x2e7d, (q15_t)0x140c, (q15_t)0x2e85, (q15_t)0x1415, (q15_t)0x2e8e, (q15_t)0x141e, (q15_t)0x2e97, (q15_t)0x1428, (q15_t)0x2e9f, (q15_t)0x1431, (q15_t)0x2ea8, (q15_t)0x143a, (q15_t)0x2eb0, (q15_t)0x1443, (q15_t)0x2eb9, (q15_t)0x144c, (q15_t)0x2ec2, (q15_t)0x1455, (q15_t)0x2eca, (q15_t)0x145f, (q15_t)0x2ed3, (q15_t)0x1468, (q15_t)0x2edb, (q15_t)0x1471, (q15_t)0x2ee4, (q15_t)0x147a, (q15_t)0x2eec, (q15_t)0x1483, (q15_t)0x2ef5, (q15_t)0x148d, (q15_t)0x2efd, (q15_t)0x1496, (q15_t)0x2f06, (q15_t)0x149f, (q15_t)0x2f0e, (q15_t)0x14a8, (q15_t)0x2f17, (q15_t)0x14b2, (q15_t)0x2f20, (q15_t)0x14bb, (q15_t)0x2f28, (q15_t)0x14c4, (q15_t)0x2f30, (q15_t)0x14cd, (q15_t)0x2f39, (q15_t)0x14d7, (q15_t)0x2f41, (q15_t)0x14e0, (q15_t)0x2f4a, (q15_t)0x14e9, (q15_t)0x2f52, (q15_t)0x14f3, (q15_t)0x2f5b, (q15_t)0x14fc, (q15_t)0x2f63, (q15_t)0x1505, (q15_t)0x2f6c, (q15_t)0x150e, (q15_t)0x2f74, (q15_t)0x1518, (q15_t)0x2f7d, (q15_t)0x1521, (q15_t)0x2f85, (q15_t)0x152a, (q15_t)0x2f8d, (q15_t)0x1534, (q15_t)0x2f96, (q15_t)0x153d, (q15_t)0x2f9e, (q15_t)0x1547, (q15_t)0x2fa7, (q15_t)0x1550, (q15_t)0x2faf, (q15_t)0x1559, (q15_t)0x2fb7, (q15_t)0x1563, (q15_t)0x2fc0, (q15_t)0x156c, (q15_t)0x2fc8, (q15_t)0x1575, (q15_t)0x2fd0, (q15_t)0x157f, (q15_t)0x2fd9, (q15_t)0x1588, (q15_t)0x2fe1, (q15_t)0x1592, (q15_t)0x2fea, (q15_t)0x159b, (q15_t)0x2ff2, (q15_t)0x15a4, (q15_t)0x2ffa, (q15_t)0x15ae, (q15_t)0x3002, (q15_t)0x15b7, (q15_t)0x300b, (q15_t)0x15c1, (q15_t)0x3013, (q15_t)0x15ca, (q15_t)0x301b, (q15_t)0x15d4, (q15_t)0x3024, (q15_t)0x15dd, (q15_t)0x302c, (q15_t)0x15e6, (q15_t)0x3034, (q15_t)0x15f0, (q15_t)0x303c, (q15_t)0x15f9, (q15_t)0x3045, (q15_t)0x1603, (q15_t)0x304d, (q15_t)0x160c, (q15_t)0x3055, (q15_t)0x1616, (q15_t)0x305d, (q15_t)0x161f, (q15_t)0x3066, (q15_t)0x1629, (q15_t)0x306e, (q15_t)0x1632, (q15_t)0x3076, (q15_t)0x163c, (q15_t)0x307e, (q15_t)0x1645, (q15_t)0x3087, (q15_t)0x164f, (q15_t)0x308f, (q15_t)0x1659, (q15_t)0x3097, (q15_t)0x1662, (q15_t)0x309f, (q15_t)0x166c, (q15_t)0x30a7, (q15_t)0x1675, (q15_t)0x30af, (q15_t)0x167f, (q15_t)0x30b8, (q15_t)0x1688, (q15_t)0x30c0, (q15_t)0x1692, (q15_t)0x30c8, (q15_t)0x169b, (q15_t)0x30d0, (q15_t)0x16a5, (q15_t)0x30d8, (q15_t)0x16af, (q15_t)0x30e0, (q15_t)0x16b8, (q15_t)0x30e8, (q15_t)0x16c2, (q15_t)0x30f0, (q15_t)0x16cb, (q15_t)0x30f9, (q15_t)0x16d5, (q15_t)0x3101, (q15_t)0x16df, (q15_t)0x3109, (q15_t)0x16e8, (q15_t)0x3111, (q15_t)0x16f2, (q15_t)0x3119, (q15_t)0x16fc, (q15_t)0x3121, (q15_t)0x1705, (q15_t)0x3129, (q15_t)0x170f, (q15_t)0x3131, (q15_t)0x1719, (q15_t)0x3139, (q15_t)0x1722, (q15_t)0x3141, (q15_t)0x172c, (q15_t)0x3149, (q15_t)0x1736, (q15_t)0x3151, (q15_t)0x173f, (q15_t)0x3159, (q15_t)0x1749, (q15_t)0x3161, (q15_t)0x1753, (q15_t)0x3169, (q15_t)0x175c, (q15_t)0x3171, (q15_t)0x1766, (q15_t)0x3179, (q15_t)0x1770, (q15_t)0x3181, (q15_t)0x177a, (q15_t)0x3189, (q15_t)0x1783, (q15_t)0x3191, (q15_t)0x178d, (q15_t)0x3199, (q15_t)0x1797, (q15_t)0x31a1, (q15_t)0x17a0, (q15_t)0x31a9, (q15_t)0x17aa, (q15_t)0x31b1, (q15_t)0x17b4, (q15_t)0x31b9, (q15_t)0x17be, (q15_t)0x31c0, (q15_t)0x17c8, (q15_t)0x31c8, (q15_t)0x17d1, (q15_t)0x31d0, (q15_t)0x17db, (q15_t)0x31d8, (q15_t)0x17e5, (q15_t)0x31e0, (q15_t)0x17ef, (q15_t)0x31e8, (q15_t)0x17f8, (q15_t)0x31f0, (q15_t)0x1802, (q15_t)0x31f8, (q15_t)0x180c, (q15_t)0x31ff, (q15_t)0x1816, (q15_t)0x3207, (q15_t)0x1820, (q15_t)0x320f, (q15_t)0x182a, (q15_t)0x3217, (q15_t)0x1833, (q15_t)0x321f, (q15_t)0x183d, (q15_t)0x3227, (q15_t)0x1847, (q15_t)0x322e, (q15_t)0x1851, (q15_t)0x3236, (q15_t)0x185b, (q15_t)0x323e, (q15_t)0x1865, (q15_t)0x3246, (q15_t)0x186f, (q15_t)0x324e, (q15_t)0x1878, (q15_t)0x3255, (q15_t)0x1882, (q15_t)0x325d, (q15_t)0x188c, (q15_t)0x3265, (q15_t)0x1896, (q15_t)0x326d, (q15_t)0x18a0, (q15_t)0x3274, (q15_t)0x18aa, (q15_t)0x327c, (q15_t)0x18b4, (q15_t)0x3284, (q15_t)0x18be, (q15_t)0x328b, (q15_t)0x18c8, (q15_t)0x3293, (q15_t)0x18d2, (q15_t)0x329b, (q15_t)0x18dc, (q15_t)0x32a3, (q15_t)0x18e6, (q15_t)0x32aa, (q15_t)0x18ef, (q15_t)0x32b2, (q15_t)0x18f9, (q15_t)0x32ba, (q15_t)0x1903, (q15_t)0x32c1, (q15_t)0x190d, (q15_t)0x32c9, (q15_t)0x1917, (q15_t)0x32d0, (q15_t)0x1921, (q15_t)0x32d8, (q15_t)0x192b, (q15_t)0x32e0, (q15_t)0x1935, (q15_t)0x32e7, (q15_t)0x193f, (q15_t)0x32ef, (q15_t)0x1949, (q15_t)0x32f7, (q15_t)0x1953, (q15_t)0x32fe, (q15_t)0x195d, (q15_t)0x3306, (q15_t)0x1967, (q15_t)0x330d, (q15_t)0x1971, (q15_t)0x3315, (q15_t)0x197b, (q15_t)0x331d, (q15_t)0x1985, (q15_t)0x3324, (q15_t)0x198f, (q15_t)0x332c, (q15_t)0x199a, (q15_t)0x3333, (q15_t)0x19a4, (q15_t)0x333b, (q15_t)0x19ae, (q15_t)0x3342, (q15_t)0x19b8, (q15_t)0x334a, (q15_t)0x19c2, (q15_t)0x3351, (q15_t)0x19cc, (q15_t)0x3359, (q15_t)0x19d6, (q15_t)0x3360, (q15_t)0x19e0, (q15_t)0x3368, (q15_t)0x19ea, (q15_t)0x336f, (q15_t)0x19f4, (q15_t)0x3377, (q15_t)0x19fe, (q15_t)0x337e, (q15_t)0x1a08, (q15_t)0x3386, (q15_t)0x1a13, (q15_t)0x338d, (q15_t)0x1a1d, (q15_t)0x3395, (q15_t)0x1a27, (q15_t)0x339c, (q15_t)0x1a31, (q15_t)0x33a3, (q15_t)0x1a3b, (q15_t)0x33ab, (q15_t)0x1a45, (q15_t)0x33b2, (q15_t)0x1a4f, (q15_t)0x33ba, (q15_t)0x1a5a, (q15_t)0x33c1, (q15_t)0x1a64, (q15_t)0x33c8, (q15_t)0x1a6e, (q15_t)0x33d0, (q15_t)0x1a78, (q15_t)0x33d7, (q15_t)0x1a82, (q15_t)0x33df, (q15_t)0x1a8c, (q15_t)0x33e6, (q15_t)0x1a97, (q15_t)0x33ed, (q15_t)0x1aa1, (q15_t)0x33f5, (q15_t)0x1aab, (q15_t)0x33fc, (q15_t)0x1ab5, (q15_t)0x3403, (q15_t)0x1abf, (q15_t)0x340b, (q15_t)0x1aca, (q15_t)0x3412, (q15_t)0x1ad4, (q15_t)0x3419, (q15_t)0x1ade, (q15_t)0x3420, (q15_t)0x1ae8, (q15_t)0x3428, (q15_t)0x1af3, (q15_t)0x342f, (q15_t)0x1afd, (q15_t)0x3436, (q15_t)0x1b07, (q15_t)0x343e, (q15_t)0x1b11, (q15_t)0x3445, (q15_t)0x1b1c, (q15_t)0x344c, (q15_t)0x1b26, (q15_t)0x3453, (q15_t)0x1b30, (q15_t)0x345b, (q15_t)0x1b3b, (q15_t)0x3462, (q15_t)0x1b45, (q15_t)0x3469, (q15_t)0x1b4f, (q15_t)0x3470, (q15_t)0x1b59, (q15_t)0x3477, (q15_t)0x1b64, (q15_t)0x347f, (q15_t)0x1b6e, (q15_t)0x3486, (q15_t)0x1b78, (q15_t)0x348d, (q15_t)0x1b83, (q15_t)0x3494, (q15_t)0x1b8d, (q15_t)0x349b, (q15_t)0x1b97, (q15_t)0x34a2, (q15_t)0x1ba2, (q15_t)0x34aa, (q15_t)0x1bac, (q15_t)0x34b1, (q15_t)0x1bb6, (q15_t)0x34b8, (q15_t)0x1bc1, (q15_t)0x34bf, (q15_t)0x1bcb, (q15_t)0x34c6, (q15_t)0x1bd5, (q15_t)0x34cd, (q15_t)0x1be0, (q15_t)0x34d4, (q15_t)0x1bea, (q15_t)0x34db, (q15_t)0x1bf5, (q15_t)0x34e2, (q15_t)0x1bff, (q15_t)0x34ea, (q15_t)0x1c09, (q15_t)0x34f1, (q15_t)0x1c14, (q15_t)0x34f8, (q15_t)0x1c1e, (q15_t)0x34ff, (q15_t)0x1c29, (q15_t)0x3506, (q15_t)0x1c33, (q15_t)0x350d, (q15_t)0x1c3d, (q15_t)0x3514, (q15_t)0x1c48, (q15_t)0x351b, (q15_t)0x1c52, (q15_t)0x3522, (q15_t)0x1c5d, (q15_t)0x3529, (q15_t)0x1c67, (q15_t)0x3530, (q15_t)0x1c72, (q15_t)0x3537, (q15_t)0x1c7c, (q15_t)0x353e, (q15_t)0x1c86, (q15_t)0x3545, (q15_t)0x1c91, (q15_t)0x354c, (q15_t)0x1c9b, (q15_t)0x3553, (q15_t)0x1ca6, (q15_t)0x355a, (q15_t)0x1cb0, (q15_t)0x3561, (q15_t)0x1cbb, (q15_t)0x3567, (q15_t)0x1cc5, (q15_t)0x356e, (q15_t)0x1cd0, (q15_t)0x3575, (q15_t)0x1cda, (q15_t)0x357c, (q15_t)0x1ce5, (q15_t)0x3583, (q15_t)0x1cef, (q15_t)0x358a, (q15_t)0x1cfa, (q15_t)0x3591, (q15_t)0x1d04, (q15_t)0x3598, (q15_t)0x1d0f, (q15_t)0x359f, (q15_t)0x1d19, (q15_t)0x35a5, (q15_t)0x1d24, (q15_t)0x35ac, (q15_t)0x1d2e, (q15_t)0x35b3, (q15_t)0x1d39, (q15_t)0x35ba, (q15_t)0x1d44, (q15_t)0x35c1, (q15_t)0x1d4e, (q15_t)0x35c8, (q15_t)0x1d59, (q15_t)0x35ce, (q15_t)0x1d63, (q15_t)0x35d5, (q15_t)0x1d6e, (q15_t)0x35dc, (q15_t)0x1d78, (q15_t)0x35e3, (q15_t)0x1d83, (q15_t)0x35ea, (q15_t)0x1d8e, (q15_t)0x35f0, (q15_t)0x1d98, (q15_t)0x35f7, (q15_t)0x1da3, (q15_t)0x35fe, (q15_t)0x1dad, (q15_t)0x3605, (q15_t)0x1db8, (q15_t)0x360b, (q15_t)0x1dc3, (q15_t)0x3612, (q15_t)0x1dcd, (q15_t)0x3619, (q15_t)0x1dd8, (q15_t)0x3620, (q15_t)0x1de2, (q15_t)0x3626, (q15_t)0x1ded, (q15_t)0x362d, (q15_t)0x1df8, (q15_t)0x3634, (q15_t)0x1e02, (q15_t)0x363a, (q15_t)0x1e0d, (q15_t)0x3641, (q15_t)0x1e18, (q15_t)0x3648, (q15_t)0x1e22, (q15_t)0x364e, (q15_t)0x1e2d, (q15_t)0x3655, (q15_t)0x1e38, (q15_t)0x365c, (q15_t)0x1e42, (q15_t)0x3662, (q15_t)0x1e4d, (q15_t)0x3669, (q15_t)0x1e58, (q15_t)0x366f, (q15_t)0x1e62, (q15_t)0x3676, (q15_t)0x1e6d, (q15_t)0x367d, (q15_t)0x1e78, (q15_t)0x3683, (q15_t)0x1e83, (q15_t)0x368a, (q15_t)0x1e8d, (q15_t)0x3690, (q15_t)0x1e98, (q15_t)0x3697, (q15_t)0x1ea3, (q15_t)0x369d, (q15_t)0x1ead, (q15_t)0x36a4, (q15_t)0x1eb8, (q15_t)0x36ab, (q15_t)0x1ec3, (q15_t)0x36b1, (q15_t)0x1ece, (q15_t)0x36b8, (q15_t)0x1ed8, (q15_t)0x36be, (q15_t)0x1ee3, (q15_t)0x36c5, (q15_t)0x1eee, (q15_t)0x36cb, (q15_t)0x1ef9, (q15_t)0x36d2, (q15_t)0x1f03, (q15_t)0x36d8, (q15_t)0x1f0e, (q15_t)0x36df, (q15_t)0x1f19, (q15_t)0x36e5, (q15_t)0x1f24, (q15_t)0x36eb, (q15_t)0x1f2f, (q15_t)0x36f2, (q15_t)0x1f39, (q15_t)0x36f8, (q15_t)0x1f44, (q15_t)0x36ff, (q15_t)0x1f4f, (q15_t)0x3705, (q15_t)0x1f5a, (q15_t)0x370c, (q15_t)0x1f65, (q15_t)0x3712, (q15_t)0x1f6f, (q15_t)0x3718, (q15_t)0x1f7a, (q15_t)0x371f, (q15_t)0x1f85, (q15_t)0x3725, (q15_t)0x1f90, (q15_t)0x372c, (q15_t)0x1f9b, (q15_t)0x3732, (q15_t)0x1fa5, (q15_t)0x3738, (q15_t)0x1fb0, (q15_t)0x373f, (q15_t)0x1fbb, (q15_t)0x3745, (q15_t)0x1fc6, (q15_t)0x374b, (q15_t)0x1fd1, (q15_t)0x3752, (q15_t)0x1fdc, (q15_t)0x3758, (q15_t)0x1fe7, (q15_t)0x375e, (q15_t)0x1ff1, (q15_t)0x3765, (q15_t)0x1ffc, (q15_t)0x376b, (q15_t)0x2007, (q15_t)0x3771, (q15_t)0x2012, (q15_t)0x3777, (q15_t)0x201d, (q15_t)0x377e, (q15_t)0x2028, (q15_t)0x3784, (q15_t)0x2033, (q15_t)0x378a, (q15_t)0x203e, (q15_t)0x3790, (q15_t)0x2049, (q15_t)0x3797, (q15_t)0x2054, (q15_t)0x379d, (q15_t)0x205e, (q15_t)0x37a3, (q15_t)0x2069, (q15_t)0x37a9, (q15_t)0x2074, (q15_t)0x37b0, (q15_t)0x207f, (q15_t)0x37b6, (q15_t)0x208a, (q15_t)0x37bc, (q15_t)0x2095, (q15_t)0x37c2, (q15_t)0x20a0, (q15_t)0x37c8, (q15_t)0x20ab, (q15_t)0x37ce, (q15_t)0x20b6, (q15_t)0x37d5, (q15_t)0x20c1, (q15_t)0x37db, (q15_t)0x20cc, (q15_t)0x37e1, (q15_t)0x20d7, (q15_t)0x37e7, (q15_t)0x20e2, (q15_t)0x37ed, (q15_t)0x20ed, (q15_t)0x37f3, (q15_t)0x20f8, (q15_t)0x37f9, (q15_t)0x2103, (q15_t)0x37ff, (q15_t)0x210e, (q15_t)0x3805, (q15_t)0x2119, (q15_t)0x380b, (q15_t)0x2124, (q15_t)0x3812, (q15_t)0x212f, (q15_t)0x3818, (q15_t)0x213a, (q15_t)0x381e, (q15_t)0x2145, (q15_t)0x3824, (q15_t)0x2150, (q15_t)0x382a, (q15_t)0x215b, (q15_t)0x3830, (q15_t)0x2166, (q15_t)0x3836, (q15_t)0x2171, (q15_t)0x383c, (q15_t)0x217c, (q15_t)0x3842, (q15_t)0x2187, (q15_t)0x3848, (q15_t)0x2192, (q15_t)0x384e, (q15_t)0x219d, (q15_t)0x3854, (q15_t)0x21a8, (q15_t)0x385a, (q15_t)0x21b3, (q15_t)0x3860, (q15_t)0x21be, (q15_t)0x3866, (q15_t)0x21ca, (q15_t)0x386b, (q15_t)0x21d5, (q15_t)0x3871, (q15_t)0x21e0, (q15_t)0x3877, (q15_t)0x21eb, (q15_t)0x387d, (q15_t)0x21f6, (q15_t)0x3883, (q15_t)0x2201, (q15_t)0x3889, (q15_t)0x220c, (q15_t)0x388f, (q15_t)0x2217, (q15_t)0x3895, (q15_t)0x2222, (q15_t)0x389b, (q15_t)0x222d, (q15_t)0x38a1, (q15_t)0x2239, (q15_t)0x38a6, (q15_t)0x2244, (q15_t)0x38ac, (q15_t)0x224f, (q15_t)0x38b2, (q15_t)0x225a, (q15_t)0x38b8, (q15_t)0x2265, (q15_t)0x38be, (q15_t)0x2270, (q15_t)0x38c3, (q15_t)0x227b, (q15_t)0x38c9, (q15_t)0x2287, (q15_t)0x38cf, (q15_t)0x2292, (q15_t)0x38d5, (q15_t)0x229d, (q15_t)0x38db, (q15_t)0x22a8, (q15_t)0x38e0, (q15_t)0x22b3, (q15_t)0x38e6, (q15_t)0x22be, (q15_t)0x38ec, (q15_t)0x22ca, (q15_t)0x38f2, (q15_t)0x22d5, (q15_t)0x38f7, (q15_t)0x22e0, (q15_t)0x38fd, (q15_t)0x22eb, (q15_t)0x3903, (q15_t)0x22f6, (q15_t)0x3909, (q15_t)0x2301, (q15_t)0x390e, (q15_t)0x230d, (q15_t)0x3914, (q15_t)0x2318, (q15_t)0x391a, (q15_t)0x2323, (q15_t)0x391f, (q15_t)0x232e, (q15_t)0x3925, (q15_t)0x233a, (q15_t)0x392b, (q15_t)0x2345, (q15_t)0x3930, (q15_t)0x2350, (q15_t)0x3936, (q15_t)0x235b, (q15_t)0x393b, (q15_t)0x2367, (q15_t)0x3941, (q15_t)0x2372, (q15_t)0x3947, (q15_t)0x237d, (q15_t)0x394c, (q15_t)0x2388, (q15_t)0x3952, (q15_t)0x2394, (q15_t)0x3958, (q15_t)0x239f, (q15_t)0x395d, (q15_t)0x23aa, (q15_t)0x3963, (q15_t)0x23b5, (q15_t)0x3968, (q15_t)0x23c1, (q15_t)0x396e, (q15_t)0x23cc, (q15_t)0x3973, (q15_t)0x23d7, (q15_t)0x3979, (q15_t)0x23e2, (q15_t)0x397e, (q15_t)0x23ee, (q15_t)0x3984, (q15_t)0x23f9, (q15_t)0x3989, (q15_t)0x2404, (q15_t)0x398f, (q15_t)0x2410, (q15_t)0x3994, (q15_t)0x241b, (q15_t)0x399a, (q15_t)0x2426, (q15_t)0x399f, (q15_t)0x2432, (q15_t)0x39a5, (q15_t)0x243d, (q15_t)0x39aa, (q15_t)0x2448, (q15_t)0x39b0, (q15_t)0x2454, (q15_t)0x39b5, (q15_t)0x245f, (q15_t)0x39bb, (q15_t)0x246a, (q15_t)0x39c0, (q15_t)0x2476, (q15_t)0x39c5, (q15_t)0x2481, (q15_t)0x39cb, (q15_t)0x248c, (q15_t)0x39d0, (q15_t)0x2498, (q15_t)0x39d6, (q15_t)0x24a3, (q15_t)0x39db, (q15_t)0x24ae, (q15_t)0x39e0, (q15_t)0x24ba, (q15_t)0x39e6, (q15_t)0x24c5, (q15_t)0x39eb, (q15_t)0x24d0, (q15_t)0x39f0, (q15_t)0x24dc, (q15_t)0x39f6, (q15_t)0x24e7, (q15_t)0x39fb, (q15_t)0x24f3, (q15_t)0x3a00, (q15_t)0x24fe, (q15_t)0x3a06, (q15_t)0x2509, (q15_t)0x3a0b, (q15_t)0x2515, (q15_t)0x3a10, (q15_t)0x2520, (q15_t)0x3a16, (q15_t)0x252c, (q15_t)0x3a1b, (q15_t)0x2537, (q15_t)0x3a20, (q15_t)0x2542, (q15_t)0x3a25, (q15_t)0x254e, (q15_t)0x3a2b, (q15_t)0x2559, (q15_t)0x3a30, (q15_t)0x2565, (q15_t)0x3a35, (q15_t)0x2570, (q15_t)0x3a3a, (q15_t)0x257c, (q15_t)0x3a3f, (q15_t)0x2587, (q15_t)0x3a45, (q15_t)0x2592, (q15_t)0x3a4a, (q15_t)0x259e, (q15_t)0x3a4f, (q15_t)0x25a9, (q15_t)0x3a54, (q15_t)0x25b5, (q15_t)0x3a59, (q15_t)0x25c0, (q15_t)0x3a5f, (q15_t)0x25cc, (q15_t)0x3a64, (q15_t)0x25d7, (q15_t)0x3a69, (q15_t)0x25e3, (q15_t)0x3a6e, (q15_t)0x25ee, (q15_t)0x3a73, (q15_t)0x25fa, (q15_t)0x3a78, (q15_t)0x2605, (q15_t)0x3a7d, (q15_t)0x2611, (q15_t)0x3a82, (q15_t)0x261c, (q15_t)0x3a88, (q15_t)0x2628, (q15_t)0x3a8d, (q15_t)0x2633, (q15_t)0x3a92, (q15_t)0x263f, (q15_t)0x3a97, (q15_t)0x264a, (q15_t)0x3a9c, (q15_t)0x2656, (q15_t)0x3aa1, (q15_t)0x2661, (q15_t)0x3aa6, (q15_t)0x266d, (q15_t)0x3aab, (q15_t)0x2678, (q15_t)0x3ab0, (q15_t)0x2684, (q15_t)0x3ab5, (q15_t)0x268f, (q15_t)0x3aba, (q15_t)0x269b, (q15_t)0x3abf, (q15_t)0x26a6, (q15_t)0x3ac4, (q15_t)0x26b2, (q15_t)0x3ac9, (q15_t)0x26bd, (q15_t)0x3ace, (q15_t)0x26c9, (q15_t)0x3ad3, (q15_t)0x26d4, (q15_t)0x3ad8, (q15_t)0x26e0, (q15_t)0x3add, (q15_t)0x26ec, (q15_t)0x3ae2, (q15_t)0x26f7, (q15_t)0x3ae6, (q15_t)0x2703, (q15_t)0x3aeb, (q15_t)0x270e, (q15_t)0x3af0, (q15_t)0x271a, (q15_t)0x3af5, (q15_t)0x2725, (q15_t)0x3afa, (q15_t)0x2731, (q15_t)0x3aff, (q15_t)0x273d, (q15_t)0x3b04, (q15_t)0x2748, (q15_t)0x3b09, (q15_t)0x2754, (q15_t)0x3b0e, (q15_t)0x275f, (q15_t)0x3b12, (q15_t)0x276b, (q15_t)0x3b17, (q15_t)0x2777, (q15_t)0x3b1c, (q15_t)0x2782, (q15_t)0x3b21, (q15_t)0x278e, (q15_t)0x3b26, (q15_t)0x2799, (q15_t)0x3b2a, (q15_t)0x27a5, (q15_t)0x3b2f, (q15_t)0x27b1, (q15_t)0x3b34, (q15_t)0x27bc, (q15_t)0x3b39, (q15_t)0x27c8, (q15_t)0x3b3e, (q15_t)0x27d3, (q15_t)0x3b42, (q15_t)0x27df, (q15_t)0x3b47, (q15_t)0x27eb, (q15_t)0x3b4c, (q15_t)0x27f6, (q15_t)0x3b50, (q15_t)0x2802, (q15_t)0x3b55, (q15_t)0x280e, (q15_t)0x3b5a, (q15_t)0x2819, (q15_t)0x3b5f, (q15_t)0x2825, (q15_t)0x3b63, (q15_t)0x2831, (q15_t)0x3b68, (q15_t)0x283c, (q15_t)0x3b6d, (q15_t)0x2848, (q15_t)0x3b71, (q15_t)0x2854, (q15_t)0x3b76, (q15_t)0x285f, (q15_t)0x3b7b, (q15_t)0x286b, (q15_t)0x3b7f, (q15_t)0x2877, (q15_t)0x3b84, (q15_t)0x2882, (q15_t)0x3b88, (q15_t)0x288e, (q15_t)0x3b8d, (q15_t)0x289a, (q15_t)0x3b92, (q15_t)0x28a5, (q15_t)0x3b96, (q15_t)0x28b1, (q15_t)0x3b9b, (q15_t)0x28bd, (q15_t)0x3b9f, (q15_t)0x28c9, (q15_t)0x3ba4, (q15_t)0x28d4, (q15_t)0x3ba9, (q15_t)0x28e0, (q15_t)0x3bad, (q15_t)0x28ec, (q15_t)0x3bb2, (q15_t)0x28f7, (q15_t)0x3bb6, (q15_t)0x2903, (q15_t)0x3bbb, (q15_t)0x290f, (q15_t)0x3bbf, (q15_t)0x291b, (q15_t)0x3bc4, (q15_t)0x2926, (q15_t)0x3bc8, (q15_t)0x2932, (q15_t)0x3bcd, (q15_t)0x293e, (q15_t)0x3bd1, (q15_t)0x294a, (q15_t)0x3bd6, (q15_t)0x2955, (q15_t)0x3bda, (q15_t)0x2961, (q15_t)0x3bde, (q15_t)0x296d, (q15_t)0x3be3, (q15_t)0x2979, (q15_t)0x3be7, (q15_t)0x2984, (q15_t)0x3bec, (q15_t)0x2990, (q15_t)0x3bf0, (q15_t)0x299c, (q15_t)0x3bf5, (q15_t)0x29a8, (q15_t)0x3bf9, (q15_t)0x29b4, (q15_t)0x3bfd, (q15_t)0x29bf, (q15_t)0x3c02, (q15_t)0x29cb, (q15_t)0x3c06, (q15_t)0x29d7, (q15_t)0x3c0a, (q15_t)0x29e3, (q15_t)0x3c0f, (q15_t)0x29ee, (q15_t)0x3c13, (q15_t)0x29fa, (q15_t)0x3c17, (q15_t)0x2a06, (q15_t)0x3c1c, (q15_t)0x2a12, (q15_t)0x3c20, (q15_t)0x2a1e, (q15_t)0x3c24, (q15_t)0x2a29, (q15_t)0x3c29, (q15_t)0x2a35, (q15_t)0x3c2d, (q15_t)0x2a41, (q15_t)0x3c31, (q15_t)0x2a4d, (q15_t)0x3c36, (q15_t)0x2a59, (q15_t)0x3c3a, (q15_t)0x2a65, (q15_t)0x3c3e, (q15_t)0x2a70, (q15_t)0x3c42, (q15_t)0x2a7c, (q15_t)0x3c46, (q15_t)0x2a88, (q15_t)0x3c4b, (q15_t)0x2a94, (q15_t)0x3c4f, (q15_t)0x2aa0, (q15_t)0x3c53, (q15_t)0x2aac, (q15_t)0x3c57, (q15_t)0x2ab7, (q15_t)0x3c5b, (q15_t)0x2ac3, (q15_t)0x3c60, (q15_t)0x2acf, (q15_t)0x3c64, (q15_t)0x2adb, (q15_t)0x3c68, (q15_t)0x2ae7, (q15_t)0x3c6c, (q15_t)0x2af3, (q15_t)0x3c70, (q15_t)0x2aff, (q15_t)0x3c74, (q15_t)0x2b0a, (q15_t)0x3c79, (q15_t)0x2b16, (q15_t)0x3c7d, (q15_t)0x2b22, (q15_t)0x3c81, (q15_t)0x2b2e, (q15_t)0x3c85, (q15_t)0x2b3a, (q15_t)0x3c89, (q15_t)0x2b46, (q15_t)0x3c8d, (q15_t)0x2b52, (q15_t)0x3c91, (q15_t)0x2b5e, (q15_t)0x3c95, (q15_t)0x2b6a, (q15_t)0x3c99, (q15_t)0x2b75, (q15_t)0x3c9d, (q15_t)0x2b81, (q15_t)0x3ca1, (q15_t)0x2b8d, (q15_t)0x3ca5, (q15_t)0x2b99, (q15_t)0x3ca9, (q15_t)0x2ba5, (q15_t)0x3cad, (q15_t)0x2bb1, (q15_t)0x3cb1, (q15_t)0x2bbd, (q15_t)0x3cb5, (q15_t)0x2bc9, (q15_t)0x3cb9, (q15_t)0x2bd5, (q15_t)0x3cbd, (q15_t)0x2be1, (q15_t)0x3cc1, (q15_t)0x2bed, (q15_t)0x3cc5, (q15_t)0x2bf9, (q15_t)0x3cc9, (q15_t)0x2c05, (q15_t)0x3ccd, (q15_t)0x2c10, (q15_t)0x3cd1, (q15_t)0x2c1c, (q15_t)0x3cd5, (q15_t)0x2c28, (q15_t)0x3cd9, (q15_t)0x2c34, (q15_t)0x3cdd, (q15_t)0x2c40, (q15_t)0x3ce0, (q15_t)0x2c4c, (q15_t)0x3ce4, (q15_t)0x2c58, (q15_t)0x3ce8, (q15_t)0x2c64, (q15_t)0x3cec, (q15_t)0x2c70, (q15_t)0x3cf0, (q15_t)0x2c7c, (q15_t)0x3cf4, (q15_t)0x2c88, (q15_t)0x3cf8, (q15_t)0x2c94, (q15_t)0x3cfb, (q15_t)0x2ca0, (q15_t)0x3cff, (q15_t)0x2cac, (q15_t)0x3d03, (q15_t)0x2cb8, (q15_t)0x3d07, (q15_t)0x2cc4, (q15_t)0x3d0b, (q15_t)0x2cd0, (q15_t)0x3d0e, (q15_t)0x2cdc, (q15_t)0x3d12, (q15_t)0x2ce8, (q15_t)0x3d16, (q15_t)0x2cf4, (q15_t)0x3d1a, (q15_t)0x2d00, (q15_t)0x3d1d, (q15_t)0x2d0c, (q15_t)0x3d21, (q15_t)0x2d18, (q15_t)0x3d25, (q15_t)0x2d24, (q15_t)0x3d28, (q15_t)0x2d30, (q15_t)0x3d2c, (q15_t)0x2d3c, (q15_t)0x3d30, (q15_t)0x2d48, (q15_t)0x3d34, (q15_t)0x2d54, (q15_t)0x3d37, (q15_t)0x2d60, (q15_t)0x3d3b, (q15_t)0x2d6c, (q15_t)0x3d3f, (q15_t)0x2d78, (q15_t)0x3d42, (q15_t)0x2d84, (q15_t)0x3d46, (q15_t)0x2d90, (q15_t)0x3d49, (q15_t)0x2d9c, (q15_t)0x3d4d, (q15_t)0x2da8, (q15_t)0x3d51, (q15_t)0x2db4, (q15_t)0x3d54, (q15_t)0x2dc0, (q15_t)0x3d58, (q15_t)0x2dcc, (q15_t)0x3d5b, (q15_t)0x2dd8, (q15_t)0x3d5f, (q15_t)0x2de4, (q15_t)0x3d63, (q15_t)0x2df0, (q15_t)0x3d66, (q15_t)0x2dfc, (q15_t)0x3d6a, (q15_t)0x2e09, (q15_t)0x3d6d, (q15_t)0x2e15, (q15_t)0x3d71, (q15_t)0x2e21, (q15_t)0x3d74, (q15_t)0x2e2d, (q15_t)0x3d78, (q15_t)0x2e39, (q15_t)0x3d7b, (q15_t)0x2e45, (q15_t)0x3d7f, (q15_t)0x2e51, (q15_t)0x3d82, (q15_t)0x2e5d, (q15_t)0x3d86, (q15_t)0x2e69, (q15_t)0x3d89, (q15_t)0x2e75, (q15_t)0x3d8d, (q15_t)0x2e81, (q15_t)0x3d90, (q15_t)0x2e8d, (q15_t)0x3d93, (q15_t)0x2e99, (q15_t)0x3d97, (q15_t)0x2ea6, (q15_t)0x3d9a, (q15_t)0x2eb2, (q15_t)0x3d9e, (q15_t)0x2ebe, (q15_t)0x3da1, (q15_t)0x2eca, (q15_t)0x3da4, (q15_t)0x2ed6, (q15_t)0x3da8, (q15_t)0x2ee2, (q15_t)0x3dab, (q15_t)0x2eee, (q15_t)0x3daf, (q15_t)0x2efa, (q15_t)0x3db2, (q15_t)0x2f06, (q15_t)0x3db5, (q15_t)0x2f13, (q15_t)0x3db9, (q15_t)0x2f1f, (q15_t)0x3dbc, (q15_t)0x2f2b, (q15_t)0x3dbf, (q15_t)0x2f37, (q15_t)0x3dc2, (q15_t)0x2f43, (q15_t)0x3dc6, (q15_t)0x2f4f, (q15_t)0x3dc9, (q15_t)0x2f5b, (q15_t)0x3dcc, (q15_t)0x2f67, (q15_t)0x3dd0, (q15_t)0x2f74, (q15_t)0x3dd3, (q15_t)0x2f80, (q15_t)0x3dd6, (q15_t)0x2f8c, (q15_t)0x3dd9, (q15_t)0x2f98, (q15_t)0x3ddd, (q15_t)0x2fa4, (q15_t)0x3de0, (q15_t)0x2fb0, (q15_t)0x3de3, (q15_t)0x2fbc, (q15_t)0x3de6, (q15_t)0x2fc9, (q15_t)0x3de9, (q15_t)0x2fd5, (q15_t)0x3ded, (q15_t)0x2fe1, (q15_t)0x3df0, (q15_t)0x2fed, (q15_t)0x3df3, (q15_t)0x2ff9, (q15_t)0x3df6, (q15_t)0x3005, (q15_t)0x3df9, (q15_t)0x3012, (q15_t)0x3dfc, (q15_t)0x301e, (q15_t)0x3dff, (q15_t)0x302a, (q15_t)0x3e03, (q15_t)0x3036, (q15_t)0x3e06, (q15_t)0x3042, (q15_t)0x3e09, (q15_t)0x304e, (q15_t)0x3e0c, (q15_t)0x305b, (q15_t)0x3e0f, (q15_t)0x3067, (q15_t)0x3e12, (q15_t)0x3073, (q15_t)0x3e15, (q15_t)0x307f, (q15_t)0x3e18, (q15_t)0x308b, (q15_t)0x3e1b, (q15_t)0x3098, (q15_t)0x3e1e, (q15_t)0x30a4, (q15_t)0x3e21, (q15_t)0x30b0, (q15_t)0x3e24, (q15_t)0x30bc, (q15_t)0x3e27, (q15_t)0x30c8, (q15_t)0x3e2a, (q15_t)0x30d5, (q15_t)0x3e2d, (q15_t)0x30e1, (q15_t)0x3e30, (q15_t)0x30ed, (q15_t)0x3e33, (q15_t)0x30f9, (q15_t)0x3e36, (q15_t)0x3105, (q15_t)0x3e39, (q15_t)0x3112, (q15_t)0x3e3c, (q15_t)0x311e, (q15_t)0x3e3f, (q15_t)0x312a, (q15_t)0x3e42, (q15_t)0x3136, (q15_t)0x3e45, (q15_t)0x3143, (q15_t)0x3e48, (q15_t)0x314f, (q15_t)0x3e4a, (q15_t)0x315b, (q15_t)0x3e4d, (q15_t)0x3167, (q15_t)0x3e50, (q15_t)0x3174, (q15_t)0x3e53, (q15_t)0x3180, (q15_t)0x3e56, (q15_t)0x318c, (q15_t)0x3e59, (q15_t)0x3198, (q15_t)0x3e5c, (q15_t)0x31a4, (q15_t)0x3e5e, (q15_t)0x31b1, (q15_t)0x3e61, (q15_t)0x31bd, (q15_t)0x3e64, (q15_t)0x31c9, (q15_t)0x3e67, (q15_t)0x31d5, (q15_t)0x3e6a, (q15_t)0x31e2, (q15_t)0x3e6c, (q15_t)0x31ee, (q15_t)0x3e6f, (q15_t)0x31fa, (q15_t)0x3e72, (q15_t)0x3207, (q15_t)0x3e75, (q15_t)0x3213, (q15_t)0x3e77, (q15_t)0x321f, (q15_t)0x3e7a, (q15_t)0x322b, (q15_t)0x3e7d, (q15_t)0x3238, (q15_t)0x3e80, (q15_t)0x3244, (q15_t)0x3e82, (q15_t)0x3250, (q15_t)0x3e85, (q15_t)0x325c, (q15_t)0x3e88, (q15_t)0x3269, (q15_t)0x3e8a, (q15_t)0x3275, (q15_t)0x3e8d, (q15_t)0x3281, (q15_t)0x3e90, (q15_t)0x328e, (q15_t)0x3e92, (q15_t)0x329a, (q15_t)0x3e95, (q15_t)0x32a6, (q15_t)0x3e98, (q15_t)0x32b2, (q15_t)0x3e9a, (q15_t)0x32bf, (q15_t)0x3e9d, (q15_t)0x32cb, (q15_t)0x3e9f, (q15_t)0x32d7, (q15_t)0x3ea2, (q15_t)0x32e4, (q15_t)0x3ea5, (q15_t)0x32f0, (q15_t)0x3ea7, (q15_t)0x32fc, (q15_t)0x3eaa, (q15_t)0x3308, (q15_t)0x3eac, (q15_t)0x3315, (q15_t)0x3eaf, (q15_t)0x3321, (q15_t)0x3eb1, (q15_t)0x332d, (q15_t)0x3eb4, (q15_t)0x333a, (q15_t)0x3eb6, (q15_t)0x3346, (q15_t)0x3eb9, (q15_t)0x3352, (q15_t)0x3ebb, (q15_t)0x335f, (q15_t)0x3ebe, (q15_t)0x336b, (q15_t)0x3ec0, (q15_t)0x3377, (q15_t)0x3ec3, (q15_t)0x3384, (q15_t)0x3ec5, (q15_t)0x3390, (q15_t)0x3ec8, (q15_t)0x339c, (q15_t)0x3eca, (q15_t)0x33a9, (q15_t)0x3ecc, (q15_t)0x33b5, (q15_t)0x3ecf, (q15_t)0x33c1, (q15_t)0x3ed1, (q15_t)0x33ce, (q15_t)0x3ed4, (q15_t)0x33da, (q15_t)0x3ed6, (q15_t)0x33e6, (q15_t)0x3ed8, (q15_t)0x33f3, (q15_t)0x3edb, (q15_t)0x33ff, (q15_t)0x3edd, (q15_t)0x340b, (q15_t)0x3ee0, (q15_t)0x3418, (q15_t)0x3ee2, (q15_t)0x3424, (q15_t)0x3ee4, (q15_t)0x3430, (q15_t)0x3ee7, (q15_t)0x343d, (q15_t)0x3ee9, (q15_t)0x3449, (q15_t)0x3eeb, (q15_t)0x3455, (q15_t)0x3eed, (q15_t)0x3462, (q15_t)0x3ef0, (q15_t)0x346e, (q15_t)0x3ef2, (q15_t)0x347b, (q15_t)0x3ef4, (q15_t)0x3487, (q15_t)0x3ef7, (q15_t)0x3493, (q15_t)0x3ef9, (q15_t)0x34a0, (q15_t)0x3efb, (q15_t)0x34ac, (q15_t)0x3efd, (q15_t)0x34b8, (q15_t)0x3f00, (q15_t)0x34c5, (q15_t)0x3f02, (q15_t)0x34d1, (q15_t)0x3f04, (q15_t)0x34dd, (q15_t)0x3f06, (q15_t)0x34ea, (q15_t)0x3f08, (q15_t)0x34f6, (q15_t)0x3f0a, (q15_t)0x3503, (q15_t)0x3f0d, (q15_t)0x350f, (q15_t)0x3f0f, (q15_t)0x351b, (q15_t)0x3f11, (q15_t)0x3528, (q15_t)0x3f13, (q15_t)0x3534, (q15_t)0x3f15, (q15_t)0x3540, (q15_t)0x3f17, (q15_t)0x354d, (q15_t)0x3f19, (q15_t)0x3559, (q15_t)0x3f1c, (q15_t)0x3566, (q15_t)0x3f1e, (q15_t)0x3572, (q15_t)0x3f20, (q15_t)0x357e, (q15_t)0x3f22, (q15_t)0x358b, (q15_t)0x3f24, (q15_t)0x3597, (q15_t)0x3f26, (q15_t)0x35a4, (q15_t)0x3f28, (q15_t)0x35b0, (q15_t)0x3f2a, (q15_t)0x35bc, (q15_t)0x3f2c, (q15_t)0x35c9, (q15_t)0x3f2e, (q15_t)0x35d5, (q15_t)0x3f30, (q15_t)0x35e2, (q15_t)0x3f32, (q15_t)0x35ee, (q15_t)0x3f34, (q15_t)0x35fa, (q15_t)0x3f36, (q15_t)0x3607, (q15_t)0x3f38, (q15_t)0x3613, (q15_t)0x3f3a, (q15_t)0x3620, (q15_t)0x3f3c, (q15_t)0x362c, (q15_t)0x3f3e, (q15_t)0x3639, (q15_t)0x3f40, (q15_t)0x3645, (q15_t)0x3f42, (q15_t)0x3651, (q15_t)0x3f43, (q15_t)0x365e, (q15_t)0x3f45, (q15_t)0x366a, (q15_t)0x3f47, (q15_t)0x3677, (q15_t)0x3f49, (q15_t)0x3683, (q15_t)0x3f4b, (q15_t)0x3690, (q15_t)0x3f4d, (q15_t)0x369c, (q15_t)0x3f4f, (q15_t)0x36a8, (q15_t)0x3f51, (q15_t)0x36b5, (q15_t)0x3f52, (q15_t)0x36c1, (q15_t)0x3f54, (q15_t)0x36ce, (q15_t)0x3f56, (q15_t)0x36da, (q15_t)0x3f58, (q15_t)0x36e7, (q15_t)0x3f5a, (q15_t)0x36f3, (q15_t)0x3f5b, (q15_t)0x36ff, (q15_t)0x3f5d, (q15_t)0x370c, (q15_t)0x3f5f, (q15_t)0x3718, (q15_t)0x3f61, (q15_t)0x3725, (q15_t)0x3f62, (q15_t)0x3731, (q15_t)0x3f64, (q15_t)0x373e, (q15_t)0x3f66, (q15_t)0x374a, (q15_t)0x3f68, (q15_t)0x3757, (q15_t)0x3f69, (q15_t)0x3763, (q15_t)0x3f6b, (q15_t)0x376f, (q15_t)0x3f6d, (q15_t)0x377c, (q15_t)0x3f6e, (q15_t)0x3788, (q15_t)0x3f70, (q15_t)0x3795, (q15_t)0x3f72, (q15_t)0x37a1, (q15_t)0x3f73, (q15_t)0x37ae, (q15_t)0x3f75, (q15_t)0x37ba, (q15_t)0x3f77, (q15_t)0x37c7, (q15_t)0x3f78, (q15_t)0x37d3, (q15_t)0x3f7a, (q15_t)0x37e0, (q15_t)0x3f7b, (q15_t)0x37ec, (q15_t)0x3f7d, (q15_t)0x37f9, (q15_t)0x3f7f, (q15_t)0x3805, (q15_t)0x3f80, (q15_t)0x3811, (q15_t)0x3f82, (q15_t)0x381e, (q15_t)0x3f83, (q15_t)0x382a, (q15_t)0x3f85, (q15_t)0x3837, (q15_t)0x3f86, (q15_t)0x3843, (q15_t)0x3f88, (q15_t)0x3850, (q15_t)0x3f89, (q15_t)0x385c, (q15_t)0x3f8b, (q15_t)0x3869, (q15_t)0x3f8c, (q15_t)0x3875, (q15_t)0x3f8e, (q15_t)0x3882, (q15_t)0x3f8f, (q15_t)0x388e, (q15_t)0x3f91, (q15_t)0x389b, (q15_t)0x3f92, (q15_t)0x38a7, (q15_t)0x3f94, (q15_t)0x38b4, (q15_t)0x3f95, (q15_t)0x38c0, (q15_t)0x3f97, (q15_t)0x38cd, (q15_t)0x3f98, (q15_t)0x38d9, (q15_t)0x3f99, (q15_t)0x38e6, (q15_t)0x3f9b, (q15_t)0x38f2, (q15_t)0x3f9c, (q15_t)0x38ff, (q15_t)0x3f9e, (q15_t)0x390b, (q15_t)0x3f9f, (q15_t)0x3918, (q15_t)0x3fa0, (q15_t)0x3924, (q15_t)0x3fa2, (q15_t)0x3931, (q15_t)0x3fa3, (q15_t)0x393d, (q15_t)0x3fa4, (q15_t)0x394a, (q15_t)0x3fa6, (q15_t)0x3956, (q15_t)0x3fa7, (q15_t)0x3963, (q15_t)0x3fa8, (q15_t)0x396f, (q15_t)0x3faa, (q15_t)0x397c, (q15_t)0x3fab, (q15_t)0x3988, (q15_t)0x3fac, (q15_t)0x3995, (q15_t)0x3fad, (q15_t)0x39a1, (q15_t)0x3faf, (q15_t)0x39ae, (q15_t)0x3fb0, (q15_t)0x39ba, (q15_t)0x3fb1, (q15_t)0x39c7, (q15_t)0x3fb2, (q15_t)0x39d3, (q15_t)0x3fb4, (q15_t)0x39e0, (q15_t)0x3fb5, (q15_t)0x39ec, (q15_t)0x3fb6, (q15_t)0x39f9, (q15_t)0x3fb7, (q15_t)0x3a05, (q15_t)0x3fb8, (q15_t)0x3a12, (q15_t)0x3fb9, (q15_t)0x3a1e, (q15_t)0x3fbb, (q15_t)0x3a2b, (q15_t)0x3fbc, (q15_t)0x3a37, (q15_t)0x3fbd, (q15_t)0x3a44, (q15_t)0x3fbe, (q15_t)0x3a50, (q15_t)0x3fbf, (q15_t)0x3a5d, (q15_t)0x3fc0, (q15_t)0x3a69, (q15_t)0x3fc1, (q15_t)0x3a76, (q15_t)0x3fc3, (q15_t)0x3a82, (q15_t)0x3fc4, (q15_t)0x3a8f, (q15_t)0x3fc5, (q15_t)0x3a9b, (q15_t)0x3fc6, (q15_t)0x3aa8, (q15_t)0x3fc7, (q15_t)0x3ab4, (q15_t)0x3fc8, (q15_t)0x3ac1, (q15_t)0x3fc9, (q15_t)0x3acd, (q15_t)0x3fca, (q15_t)0x3ada, (q15_t)0x3fcb, (q15_t)0x3ae6, (q15_t)0x3fcc, (q15_t)0x3af3, (q15_t)0x3fcd, (q15_t)0x3b00, (q15_t)0x3fce, (q15_t)0x3b0c, (q15_t)0x3fcf, (q15_t)0x3b19, (q15_t)0x3fd0, (q15_t)0x3b25, (q15_t)0x3fd1, (q15_t)0x3b32, (q15_t)0x3fd2, (q15_t)0x3b3e, (q15_t)0x3fd3, (q15_t)0x3b4b, (q15_t)0x3fd4, (q15_t)0x3b57, (q15_t)0x3fd5, (q15_t)0x3b64, (q15_t)0x3fd5, (q15_t)0x3b70, (q15_t)0x3fd6, (q15_t)0x3b7d, (q15_t)0x3fd7, (q15_t)0x3b89, (q15_t)0x3fd8, (q15_t)0x3b96, (q15_t)0x3fd9, (q15_t)0x3ba2, (q15_t)0x3fda, (q15_t)0x3baf, (q15_t)0x3fdb, (q15_t)0x3bbc, (q15_t)0x3fdc, (q15_t)0x3bc8, (q15_t)0x3fdc, (q15_t)0x3bd5, (q15_t)0x3fdd, (q15_t)0x3be1, (q15_t)0x3fde, (q15_t)0x3bee, (q15_t)0x3fdf, (q15_t)0x3bfa, (q15_t)0x3fe0, (q15_t)0x3c07, (q15_t)0x3fe0, (q15_t)0x3c13, (q15_t)0x3fe1, (q15_t)0x3c20, (q15_t)0x3fe2, (q15_t)0x3c2c, (q15_t)0x3fe3, (q15_t)0x3c39, (q15_t)0x3fe3, (q15_t)0x3c45, (q15_t)0x3fe4, (q15_t)0x3c52, (q15_t)0x3fe5, (q15_t)0x3c5f, (q15_t)0x3fe6, (q15_t)0x3c6b, (q15_t)0x3fe6, (q15_t)0x3c78, (q15_t)0x3fe7, (q15_t)0x3c84, (q15_t)0x3fe8, (q15_t)0x3c91, (q15_t)0x3fe8, (q15_t)0x3c9d, (q15_t)0x3fe9, (q15_t)0x3caa, (q15_t)0x3fea, (q15_t)0x3cb6, (q15_t)0x3fea, (q15_t)0x3cc3, (q15_t)0x3feb, (q15_t)0x3cd0, (q15_t)0x3fec, (q15_t)0x3cdc, (q15_t)0x3fec, (q15_t)0x3ce9, (q15_t)0x3fed, (q15_t)0x3cf5, (q15_t)0x3fed, (q15_t)0x3d02, (q15_t)0x3fee, (q15_t)0x3d0e, (q15_t)0x3fef, (q15_t)0x3d1b, (q15_t)0x3fef, (q15_t)0x3d27, (q15_t)0x3ff0, (q15_t)0x3d34, (q15_t)0x3ff0, (q15_t)0x3d40, (q15_t)0x3ff1, (q15_t)0x3d4d, (q15_t)0x3ff1, (q15_t)0x3d5a, (q15_t)0x3ff2, (q15_t)0x3d66, (q15_t)0x3ff2, (q15_t)0x3d73, (q15_t)0x3ff3, (q15_t)0x3d7f, (q15_t)0x3ff3, (q15_t)0x3d8c, (q15_t)0x3ff4, (q15_t)0x3d98, (q15_t)0x3ff4, (q15_t)0x3da5, (q15_t)0x3ff5, (q15_t)0x3db2, (q15_t)0x3ff5, (q15_t)0x3dbe, (q15_t)0x3ff6, (q15_t)0x3dcb, (q15_t)0x3ff6, (q15_t)0x3dd7, (q15_t)0x3ff7, (q15_t)0x3de4, (q15_t)0x3ff7, (q15_t)0x3df0, (q15_t)0x3ff7, (q15_t)0x3dfd, (q15_t)0x3ff8, (q15_t)0x3e09, (q15_t)0x3ff8, (q15_t)0x3e16, (q15_t)0x3ff9, (q15_t)0x3e23, (q15_t)0x3ff9, (q15_t)0x3e2f, (q15_t)0x3ff9, (q15_t)0x3e3c, (q15_t)0x3ffa, (q15_t)0x3e48, (q15_t)0x3ffa, (q15_t)0x3e55, (q15_t)0x3ffa, (q15_t)0x3e61, (q15_t)0x3ffb, (q15_t)0x3e6e, (q15_t)0x3ffb, (q15_t)0x3e7a, (q15_t)0x3ffb, (q15_t)0x3e87, (q15_t)0x3ffc, (q15_t)0x3e94, (q15_t)0x3ffc, (q15_t)0x3ea0, (q15_t)0x3ffc, (q15_t)0x3ead, (q15_t)0x3ffc, (q15_t)0x3eb9, (q15_t)0x3ffd, (q15_t)0x3ec6, (q15_t)0x3ffd, (q15_t)0x3ed2, (q15_t)0x3ffd, (q15_t)0x3edf, (q15_t)0x3ffd, (q15_t)0x3eec, (q15_t)0x3ffe, (q15_t)0x3ef8, (q15_t)0x3ffe, (q15_t)0x3f05, (q15_t)0x3ffe, (q15_t)0x3f11, (q15_t)0x3ffe, (q15_t)0x3f1e, (q15_t)0x3ffe, (q15_t)0x3f2a, (q15_t)0x3fff, (q15_t)0x3f37, (q15_t)0x3fff, (q15_t)0x3f44, (q15_t)0x3fff, (q15_t)0x3f50, (q15_t)0x3fff, (q15_t)0x3f5d, (q15_t)0x3fff, (q15_t)0x3f69, (q15_t)0x3fff, (q15_t)0x3f76, (q15_t)0x3fff, (q15_t)0x3f82, (q15_t)0x4000, (q15_t)0x3f8f, (q15_t)0x4000, (q15_t)0x3f9b, (q15_t)0x4000, (q15_t)0x3fa8, (q15_t)0x4000, (q15_t)0x3fb5, (q15_t)0x4000, (q15_t)0x3fc1, (q15_t)0x4000, (q15_t)0x3fce, (q15_t)0x4000, (q15_t)0x3fda, (q15_t)0x4000, (q15_t)0x3fe7, (q15_t)0x4000, (q15_t)0x3ff3, (q15_t)0x4000, }; /** @par Generation of real_CoefB array: @par n = 4096
for (i = 0; i < n; i++)
  {
     pBTable[2 * i]     = 0.5 * (1.0 + sin (2 * PI / (double) (2 * n) * (double) i));
     pBTable[2 * i + 1] = 0.5 * (1.0 * cos (2 * PI / (double) (2 * n) * (double) i));
  }
@par Convert to fixed point Q15 format round(pBTable[i] * pow(2, 15)) */ const q15_t __ALIGNED(4) realCoefBQ15[8192] ARM_DSP_TABLE_ATTRIBUTE = { (q15_t)0x4000, (q15_t)0x4000, (q15_t)0x400d, (q15_t)0x4000, (q15_t)0x4019, (q15_t)0x4000, (q15_t)0x4026, (q15_t)0x4000, (q15_t)0x4032, (q15_t)0x4000, (q15_t)0x403f, (q15_t)0x4000, (q15_t)0x404b, (q15_t)0x4000, (q15_t)0x4058, (q15_t)0x4000, (q15_t)0x4065, (q15_t)0x4000, (q15_t)0x4071, (q15_t)0x4000, (q15_t)0x407e, (q15_t)0x4000, (q15_t)0x408a, (q15_t)0x3fff, (q15_t)0x4097, (q15_t)0x3fff, (q15_t)0x40a3, (q15_t)0x3fff, (q15_t)0x40b0, (q15_t)0x3fff, (q15_t)0x40bc, (q15_t)0x3fff, (q15_t)0x40c9, (q15_t)0x3fff, (q15_t)0x40d6, (q15_t)0x3fff, (q15_t)0x40e2, (q15_t)0x3ffe, (q15_t)0x40ef, (q15_t)0x3ffe, (q15_t)0x40fb, (q15_t)0x3ffe, (q15_t)0x4108, (q15_t)0x3ffe, (q15_t)0x4114, (q15_t)0x3ffe, (q15_t)0x4121, (q15_t)0x3ffd, (q15_t)0x412e, (q15_t)0x3ffd, (q15_t)0x413a, (q15_t)0x3ffd, (q15_t)0x4147, (q15_t)0x3ffd, (q15_t)0x4153, (q15_t)0x3ffc, (q15_t)0x4160, (q15_t)0x3ffc, (q15_t)0x416c, (q15_t)0x3ffc, (q15_t)0x4179, (q15_t)0x3ffc, (q15_t)0x4186, (q15_t)0x3ffb, (q15_t)0x4192, (q15_t)0x3ffb, (q15_t)0x419f, (q15_t)0x3ffb, (q15_t)0x41ab, (q15_t)0x3ffa, (q15_t)0x41b8, (q15_t)0x3ffa, (q15_t)0x41c4, (q15_t)0x3ffa, (q15_t)0x41d1, (q15_t)0x3ff9, (q15_t)0x41dd, (q15_t)0x3ff9, (q15_t)0x41ea, (q15_t)0x3ff9, (q15_t)0x41f7, (q15_t)0x3ff8, (q15_t)0x4203, (q15_t)0x3ff8, (q15_t)0x4210, (q15_t)0x3ff7, (q15_t)0x421c, (q15_t)0x3ff7, (q15_t)0x4229, (q15_t)0x3ff7, (q15_t)0x4235, (q15_t)0x3ff6, (q15_t)0x4242, (q15_t)0x3ff6, (q15_t)0x424e, (q15_t)0x3ff5, (q15_t)0x425b, (q15_t)0x3ff5, (q15_t)0x4268, (q15_t)0x3ff4, (q15_t)0x4274, (q15_t)0x3ff4, (q15_t)0x4281, (q15_t)0x3ff3, (q15_t)0x428d, (q15_t)0x3ff3, (q15_t)0x429a, (q15_t)0x3ff2, (q15_t)0x42a6, (q15_t)0x3ff2, (q15_t)0x42b3, (q15_t)0x3ff1, (q15_t)0x42c0, (q15_t)0x3ff1, (q15_t)0x42cc, (q15_t)0x3ff0, (q15_t)0x42d9, (q15_t)0x3ff0, (q15_t)0x42e5, (q15_t)0x3fef, (q15_t)0x42f2, (q15_t)0x3fef, (q15_t)0x42fe, (q15_t)0x3fee, (q15_t)0x430b, (q15_t)0x3fed, (q15_t)0x4317, (q15_t)0x3fed, (q15_t)0x4324, (q15_t)0x3fec, (q15_t)0x4330, (q15_t)0x3fec, (q15_t)0x433d, (q15_t)0x3feb, (q15_t)0x434a, (q15_t)0x3fea, (q15_t)0x4356, (q15_t)0x3fea, (q15_t)0x4363, (q15_t)0x3fe9, (q15_t)0x436f, (q15_t)0x3fe8, (q15_t)0x437c, (q15_t)0x3fe8, (q15_t)0x4388, (q15_t)0x3fe7, (q15_t)0x4395, (q15_t)0x3fe6, (q15_t)0x43a1, (q15_t)0x3fe6, (q15_t)0x43ae, (q15_t)0x3fe5, (q15_t)0x43bb, (q15_t)0x3fe4, (q15_t)0x43c7, (q15_t)0x3fe3, (q15_t)0x43d4, (q15_t)0x3fe3, (q15_t)0x43e0, (q15_t)0x3fe2, (q15_t)0x43ed, (q15_t)0x3fe1, (q15_t)0x43f9, (q15_t)0x3fe0, (q15_t)0x4406, (q15_t)0x3fe0, (q15_t)0x4412, (q15_t)0x3fdf, (q15_t)0x441f, (q15_t)0x3fde, (q15_t)0x442b, (q15_t)0x3fdd, (q15_t)0x4438, (q15_t)0x3fdc, (q15_t)0x4444, (q15_t)0x3fdc, (q15_t)0x4451, (q15_t)0x3fdb, (q15_t)0x445e, (q15_t)0x3fda, (q15_t)0x446a, (q15_t)0x3fd9, (q15_t)0x4477, (q15_t)0x3fd8, (q15_t)0x4483, (q15_t)0x3fd7, (q15_t)0x4490, (q15_t)0x3fd6, (q15_t)0x449c, (q15_t)0x3fd5, (q15_t)0x44a9, (q15_t)0x3fd5, (q15_t)0x44b5, (q15_t)0x3fd4, (q15_t)0x44c2, (q15_t)0x3fd3, (q15_t)0x44ce, (q15_t)0x3fd2, (q15_t)0x44db, (q15_t)0x3fd1, (q15_t)0x44e7, (q15_t)0x3fd0, (q15_t)0x44f4, (q15_t)0x3fcf, (q15_t)0x4500, (q15_t)0x3fce, (q15_t)0x450d, (q15_t)0x3fcd, (q15_t)0x451a, (q15_t)0x3fcc, (q15_t)0x4526, (q15_t)0x3fcb, (q15_t)0x4533, (q15_t)0x3fca, (q15_t)0x453f, (q15_t)0x3fc9, (q15_t)0x454c, (q15_t)0x3fc8, (q15_t)0x4558, (q15_t)0x3fc7, (q15_t)0x4565, (q15_t)0x3fc6, (q15_t)0x4571, (q15_t)0x3fc5, (q15_t)0x457e, (q15_t)0x3fc4, (q15_t)0x458a, (q15_t)0x3fc3, (q15_t)0x4597, (q15_t)0x3fc1, (q15_t)0x45a3, (q15_t)0x3fc0, (q15_t)0x45b0, (q15_t)0x3fbf, (q15_t)0x45bc, (q15_t)0x3fbe, (q15_t)0x45c9, (q15_t)0x3fbd, (q15_t)0x45d5, (q15_t)0x3fbc, (q15_t)0x45e2, (q15_t)0x3fbb, (q15_t)0x45ee, (q15_t)0x3fb9, (q15_t)0x45fb, (q15_t)0x3fb8, (q15_t)0x4607, (q15_t)0x3fb7, (q15_t)0x4614, (q15_t)0x3fb6, (q15_t)0x4620, (q15_t)0x3fb5, (q15_t)0x462d, (q15_t)0x3fb4, (q15_t)0x4639, (q15_t)0x3fb2, (q15_t)0x4646, (q15_t)0x3fb1, (q15_t)0x4652, (q15_t)0x3fb0, (q15_t)0x465f, (q15_t)0x3faf, (q15_t)0x466b, (q15_t)0x3fad, (q15_t)0x4678, (q15_t)0x3fac, (q15_t)0x4684, (q15_t)0x3fab, (q15_t)0x4691, (q15_t)0x3faa, (q15_t)0x469d, (q15_t)0x3fa8, (q15_t)0x46aa, (q15_t)0x3fa7, (q15_t)0x46b6, (q15_t)0x3fa6, (q15_t)0x46c3, (q15_t)0x3fa4, (q15_t)0x46cf, (q15_t)0x3fa3, (q15_t)0x46dc, (q15_t)0x3fa2, (q15_t)0x46e8, (q15_t)0x3fa0, (q15_t)0x46f5, (q15_t)0x3f9f, (q15_t)0x4701, (q15_t)0x3f9e, (q15_t)0x470e, (q15_t)0x3f9c, (q15_t)0x471a, (q15_t)0x3f9b, (q15_t)0x4727, (q15_t)0x3f99, (q15_t)0x4733, (q15_t)0x3f98, (q15_t)0x4740, (q15_t)0x3f97, (q15_t)0x474c, (q15_t)0x3f95, (q15_t)0x4759, (q15_t)0x3f94, (q15_t)0x4765, (q15_t)0x3f92, (q15_t)0x4772, (q15_t)0x3f91, (q15_t)0x477e, (q15_t)0x3f8f, (q15_t)0x478b, (q15_t)0x3f8e, (q15_t)0x4797, (q15_t)0x3f8c, (q15_t)0x47a4, (q15_t)0x3f8b, (q15_t)0x47b0, (q15_t)0x3f89, (q15_t)0x47bd, (q15_t)0x3f88, (q15_t)0x47c9, (q15_t)0x3f86, (q15_t)0x47d6, (q15_t)0x3f85, (q15_t)0x47e2, (q15_t)0x3f83, (q15_t)0x47ef, (q15_t)0x3f82, (q15_t)0x47fb, (q15_t)0x3f80, (q15_t)0x4807, (q15_t)0x3f7f, (q15_t)0x4814, (q15_t)0x3f7d, (q15_t)0x4820, (q15_t)0x3f7b, (q15_t)0x482d, (q15_t)0x3f7a, (q15_t)0x4839, (q15_t)0x3f78, (q15_t)0x4846, (q15_t)0x3f77, (q15_t)0x4852, (q15_t)0x3f75, (q15_t)0x485f, (q15_t)0x3f73, (q15_t)0x486b, (q15_t)0x3f72, (q15_t)0x4878, (q15_t)0x3f70, (q15_t)0x4884, (q15_t)0x3f6e, (q15_t)0x4891, (q15_t)0x3f6d, (q15_t)0x489d, (q15_t)0x3f6b, (q15_t)0x48a9, (q15_t)0x3f69, (q15_t)0x48b6, (q15_t)0x3f68, (q15_t)0x48c2, (q15_t)0x3f66, (q15_t)0x48cf, (q15_t)0x3f64, (q15_t)0x48db, (q15_t)0x3f62, (q15_t)0x48e8, (q15_t)0x3f61, (q15_t)0x48f4, (q15_t)0x3f5f, (q15_t)0x4901, (q15_t)0x3f5d, (q15_t)0x490d, (q15_t)0x3f5b, (q15_t)0x4919, (q15_t)0x3f5a, (q15_t)0x4926, (q15_t)0x3f58, (q15_t)0x4932, (q15_t)0x3f56, (q15_t)0x493f, (q15_t)0x3f54, (q15_t)0x494b, (q15_t)0x3f52, (q15_t)0x4958, (q15_t)0x3f51, (q15_t)0x4964, (q15_t)0x3f4f, (q15_t)0x4970, (q15_t)0x3f4d, (q15_t)0x497d, (q15_t)0x3f4b, (q15_t)0x4989, (q15_t)0x3f49, (q15_t)0x4996, (q15_t)0x3f47, (q15_t)0x49a2, (q15_t)0x3f45, (q15_t)0x49af, (q15_t)0x3f43, (q15_t)0x49bb, (q15_t)0x3f42, (q15_t)0x49c7, (q15_t)0x3f40, (q15_t)0x49d4, (q15_t)0x3f3e, (q15_t)0x49e0, (q15_t)0x3f3c, (q15_t)0x49ed, (q15_t)0x3f3a, (q15_t)0x49f9, (q15_t)0x3f38, (q15_t)0x4a06, (q15_t)0x3f36, (q15_t)0x4a12, (q15_t)0x3f34, (q15_t)0x4a1e, (q15_t)0x3f32, (q15_t)0x4a2b, (q15_t)0x3f30, (q15_t)0x4a37, (q15_t)0x3f2e, (q15_t)0x4a44, (q15_t)0x3f2c, (q15_t)0x4a50, (q15_t)0x3f2a, (q15_t)0x4a5c, (q15_t)0x3f28, (q15_t)0x4a69, (q15_t)0x3f26, (q15_t)0x4a75, (q15_t)0x3f24, (q15_t)0x4a82, (q15_t)0x3f22, (q15_t)0x4a8e, (q15_t)0x3f20, (q15_t)0x4a9a, (q15_t)0x3f1e, (q15_t)0x4aa7, (q15_t)0x3f1c, (q15_t)0x4ab3, (q15_t)0x3f19, (q15_t)0x4ac0, (q15_t)0x3f17, (q15_t)0x4acc, (q15_t)0x3f15, (q15_t)0x4ad8, (q15_t)0x3f13, (q15_t)0x4ae5, (q15_t)0x3f11, (q15_t)0x4af1, (q15_t)0x3f0f, (q15_t)0x4afd, (q15_t)0x3f0d, (q15_t)0x4b0a, (q15_t)0x3f0a, (q15_t)0x4b16, (q15_t)0x3f08, (q15_t)0x4b23, (q15_t)0x3f06, (q15_t)0x4b2f, (q15_t)0x3f04, (q15_t)0x4b3b, (q15_t)0x3f02, (q15_t)0x4b48, (q15_t)0x3f00, (q15_t)0x4b54, (q15_t)0x3efd, (q15_t)0x4b60, (q15_t)0x3efb, (q15_t)0x4b6d, (q15_t)0x3ef9, (q15_t)0x4b79, (q15_t)0x3ef7, (q15_t)0x4b85, (q15_t)0x3ef4, (q15_t)0x4b92, (q15_t)0x3ef2, (q15_t)0x4b9e, (q15_t)0x3ef0, (q15_t)0x4bab, (q15_t)0x3eed, (q15_t)0x4bb7, (q15_t)0x3eeb, (q15_t)0x4bc3, (q15_t)0x3ee9, (q15_t)0x4bd0, (q15_t)0x3ee7, (q15_t)0x4bdc, (q15_t)0x3ee4, (q15_t)0x4be8, (q15_t)0x3ee2, (q15_t)0x4bf5, (q15_t)0x3ee0, (q15_t)0x4c01, (q15_t)0x3edd, (q15_t)0x4c0d, (q15_t)0x3edb, (q15_t)0x4c1a, (q15_t)0x3ed8, (q15_t)0x4c26, (q15_t)0x3ed6, (q15_t)0x4c32, (q15_t)0x3ed4, (q15_t)0x4c3f, (q15_t)0x3ed1, (q15_t)0x4c4b, (q15_t)0x3ecf, (q15_t)0x4c57, (q15_t)0x3ecc, (q15_t)0x4c64, (q15_t)0x3eca, (q15_t)0x4c70, (q15_t)0x3ec8, (q15_t)0x4c7c, (q15_t)0x3ec5, (q15_t)0x4c89, (q15_t)0x3ec3, (q15_t)0x4c95, (q15_t)0x3ec0, (q15_t)0x4ca1, (q15_t)0x3ebe, (q15_t)0x4cae, (q15_t)0x3ebb, (q15_t)0x4cba, (q15_t)0x3eb9, (q15_t)0x4cc6, (q15_t)0x3eb6, (q15_t)0x4cd3, (q15_t)0x3eb4, (q15_t)0x4cdf, (q15_t)0x3eb1, (q15_t)0x4ceb, (q15_t)0x3eaf, (q15_t)0x4cf8, (q15_t)0x3eac, (q15_t)0x4d04, (q15_t)0x3eaa, (q15_t)0x4d10, (q15_t)0x3ea7, (q15_t)0x4d1c, (q15_t)0x3ea5, (q15_t)0x4d29, (q15_t)0x3ea2, (q15_t)0x4d35, (q15_t)0x3e9f, (q15_t)0x4d41, (q15_t)0x3e9d, (q15_t)0x4d4e, (q15_t)0x3e9a, (q15_t)0x4d5a, (q15_t)0x3e98, (q15_t)0x4d66, (q15_t)0x3e95, (q15_t)0x4d72, (q15_t)0x3e92, (q15_t)0x4d7f, (q15_t)0x3e90, (q15_t)0x4d8b, (q15_t)0x3e8d, (q15_t)0x4d97, (q15_t)0x3e8a, (q15_t)0x4da4, (q15_t)0x3e88, (q15_t)0x4db0, (q15_t)0x3e85, (q15_t)0x4dbc, (q15_t)0x3e82, (q15_t)0x4dc8, (q15_t)0x3e80, (q15_t)0x4dd5, (q15_t)0x3e7d, (q15_t)0x4de1, (q15_t)0x3e7a, (q15_t)0x4ded, (q15_t)0x3e77, (q15_t)0x4df9, (q15_t)0x3e75, (q15_t)0x4e06, (q15_t)0x3e72, (q15_t)0x4e12, (q15_t)0x3e6f, (q15_t)0x4e1e, (q15_t)0x3e6c, (q15_t)0x4e2b, (q15_t)0x3e6a, (q15_t)0x4e37, (q15_t)0x3e67, (q15_t)0x4e43, (q15_t)0x3e64, (q15_t)0x4e4f, (q15_t)0x3e61, (q15_t)0x4e5c, (q15_t)0x3e5e, (q15_t)0x4e68, (q15_t)0x3e5c, (q15_t)0x4e74, (q15_t)0x3e59, (q15_t)0x4e80, (q15_t)0x3e56, (q15_t)0x4e8c, (q15_t)0x3e53, (q15_t)0x4e99, (q15_t)0x3e50, (q15_t)0x4ea5, (q15_t)0x3e4d, (q15_t)0x4eb1, (q15_t)0x3e4a, (q15_t)0x4ebd, (q15_t)0x3e48, (q15_t)0x4eca, (q15_t)0x3e45, (q15_t)0x4ed6, (q15_t)0x3e42, (q15_t)0x4ee2, (q15_t)0x3e3f, (q15_t)0x4eee, (q15_t)0x3e3c, (q15_t)0x4efb, (q15_t)0x3e39, (q15_t)0x4f07, (q15_t)0x3e36, (q15_t)0x4f13, (q15_t)0x3e33, (q15_t)0x4f1f, (q15_t)0x3e30, (q15_t)0x4f2b, (q15_t)0x3e2d, (q15_t)0x4f38, (q15_t)0x3e2a, (q15_t)0x4f44, (q15_t)0x3e27, (q15_t)0x4f50, (q15_t)0x3e24, (q15_t)0x4f5c, (q15_t)0x3e21, (q15_t)0x4f68, (q15_t)0x3e1e, (q15_t)0x4f75, (q15_t)0x3e1b, (q15_t)0x4f81, (q15_t)0x3e18, (q15_t)0x4f8d, (q15_t)0x3e15, (q15_t)0x4f99, (q15_t)0x3e12, (q15_t)0x4fa5, (q15_t)0x3e0f, (q15_t)0x4fb2, (q15_t)0x3e0c, (q15_t)0x4fbe, (q15_t)0x3e09, (q15_t)0x4fca, (q15_t)0x3e06, (q15_t)0x4fd6, (q15_t)0x3e03, (q15_t)0x4fe2, (q15_t)0x3dff, (q15_t)0x4fee, (q15_t)0x3dfc, (q15_t)0x4ffb, (q15_t)0x3df9, (q15_t)0x5007, (q15_t)0x3df6, (q15_t)0x5013, (q15_t)0x3df3, (q15_t)0x501f, (q15_t)0x3df0, (q15_t)0x502b, (q15_t)0x3ded, (q15_t)0x5037, (q15_t)0x3de9, (q15_t)0x5044, (q15_t)0x3de6, (q15_t)0x5050, (q15_t)0x3de3, (q15_t)0x505c, (q15_t)0x3de0, (q15_t)0x5068, (q15_t)0x3ddd, (q15_t)0x5074, (q15_t)0x3dd9, (q15_t)0x5080, (q15_t)0x3dd6, (q15_t)0x508c, (q15_t)0x3dd3, (q15_t)0x5099, (q15_t)0x3dd0, (q15_t)0x50a5, (q15_t)0x3dcc, (q15_t)0x50b1, (q15_t)0x3dc9, (q15_t)0x50bd, (q15_t)0x3dc6, (q15_t)0x50c9, (q15_t)0x3dc2, (q15_t)0x50d5, (q15_t)0x3dbf, (q15_t)0x50e1, (q15_t)0x3dbc, (q15_t)0x50ed, (q15_t)0x3db9, (q15_t)0x50fa, (q15_t)0x3db5, (q15_t)0x5106, (q15_t)0x3db2, (q15_t)0x5112, (q15_t)0x3daf, (q15_t)0x511e, (q15_t)0x3dab, (q15_t)0x512a, (q15_t)0x3da8, (q15_t)0x5136, (q15_t)0x3da4, (q15_t)0x5142, (q15_t)0x3da1, (q15_t)0x514e, (q15_t)0x3d9e, (q15_t)0x515a, (q15_t)0x3d9a, (q15_t)0x5167, (q15_t)0x3d97, (q15_t)0x5173, (q15_t)0x3d93, (q15_t)0x517f, (q15_t)0x3d90, (q15_t)0x518b, (q15_t)0x3d8d, (q15_t)0x5197, (q15_t)0x3d89, (q15_t)0x51a3, (q15_t)0x3d86, (q15_t)0x51af, (q15_t)0x3d82, (q15_t)0x51bb, (q15_t)0x3d7f, (q15_t)0x51c7, (q15_t)0x3d7b, (q15_t)0x51d3, (q15_t)0x3d78, (q15_t)0x51df, (q15_t)0x3d74, (q15_t)0x51eb, (q15_t)0x3d71, (q15_t)0x51f7, (q15_t)0x3d6d, (q15_t)0x5204, (q15_t)0x3d6a, (q15_t)0x5210, (q15_t)0x3d66, (q15_t)0x521c, (q15_t)0x3d63, (q15_t)0x5228, (q15_t)0x3d5f, (q15_t)0x5234, (q15_t)0x3d5b, (q15_t)0x5240, (q15_t)0x3d58, (q15_t)0x524c, (q15_t)0x3d54, (q15_t)0x5258, (q15_t)0x3d51, (q15_t)0x5264, (q15_t)0x3d4d, (q15_t)0x5270, (q15_t)0x3d49, (q15_t)0x527c, (q15_t)0x3d46, (q15_t)0x5288, (q15_t)0x3d42, (q15_t)0x5294, (q15_t)0x3d3f, (q15_t)0x52a0, (q15_t)0x3d3b, (q15_t)0x52ac, (q15_t)0x3d37, (q15_t)0x52b8, (q15_t)0x3d34, (q15_t)0x52c4, (q15_t)0x3d30, (q15_t)0x52d0, (q15_t)0x3d2c, (q15_t)0x52dc, (q15_t)0x3d28, (q15_t)0x52e8, (q15_t)0x3d25, (q15_t)0x52f4, (q15_t)0x3d21, (q15_t)0x5300, (q15_t)0x3d1d, (q15_t)0x530c, (q15_t)0x3d1a, (q15_t)0x5318, (q15_t)0x3d16, (q15_t)0x5324, (q15_t)0x3d12, (q15_t)0x5330, (q15_t)0x3d0e, (q15_t)0x533c, (q15_t)0x3d0b, (q15_t)0x5348, (q15_t)0x3d07, (q15_t)0x5354, (q15_t)0x3d03, (q15_t)0x5360, (q15_t)0x3cff, (q15_t)0x536c, (q15_t)0x3cfb, (q15_t)0x5378, (q15_t)0x3cf8, (q15_t)0x5384, (q15_t)0x3cf4, (q15_t)0x5390, (q15_t)0x3cf0, (q15_t)0x539c, (q15_t)0x3cec, (q15_t)0x53a8, (q15_t)0x3ce8, (q15_t)0x53b4, (q15_t)0x3ce4, (q15_t)0x53c0, (q15_t)0x3ce0, (q15_t)0x53cc, (q15_t)0x3cdd, (q15_t)0x53d8, (q15_t)0x3cd9, (q15_t)0x53e4, (q15_t)0x3cd5, (q15_t)0x53f0, (q15_t)0x3cd1, (q15_t)0x53fb, (q15_t)0x3ccd, (q15_t)0x5407, (q15_t)0x3cc9, (q15_t)0x5413, (q15_t)0x3cc5, (q15_t)0x541f, (q15_t)0x3cc1, (q15_t)0x542b, (q15_t)0x3cbd, (q15_t)0x5437, (q15_t)0x3cb9, (q15_t)0x5443, (q15_t)0x3cb5, (q15_t)0x544f, (q15_t)0x3cb1, (q15_t)0x545b, (q15_t)0x3cad, (q15_t)0x5467, (q15_t)0x3ca9, (q15_t)0x5473, (q15_t)0x3ca5, (q15_t)0x547f, (q15_t)0x3ca1, (q15_t)0x548b, (q15_t)0x3c9d, (q15_t)0x5496, (q15_t)0x3c99, (q15_t)0x54a2, (q15_t)0x3c95, (q15_t)0x54ae, (q15_t)0x3c91, (q15_t)0x54ba, (q15_t)0x3c8d, (q15_t)0x54c6, (q15_t)0x3c89, (q15_t)0x54d2, (q15_t)0x3c85, (q15_t)0x54de, (q15_t)0x3c81, (q15_t)0x54ea, (q15_t)0x3c7d, (q15_t)0x54f6, (q15_t)0x3c79, (q15_t)0x5501, (q15_t)0x3c74, (q15_t)0x550d, (q15_t)0x3c70, (q15_t)0x5519, (q15_t)0x3c6c, (q15_t)0x5525, (q15_t)0x3c68, (q15_t)0x5531, (q15_t)0x3c64, (q15_t)0x553d, (q15_t)0x3c60, (q15_t)0x5549, (q15_t)0x3c5b, (q15_t)0x5554, (q15_t)0x3c57, (q15_t)0x5560, (q15_t)0x3c53, (q15_t)0x556c, (q15_t)0x3c4f, (q15_t)0x5578, (q15_t)0x3c4b, (q15_t)0x5584, (q15_t)0x3c46, (q15_t)0x5590, (q15_t)0x3c42, (q15_t)0x559b, (q15_t)0x3c3e, (q15_t)0x55a7, (q15_t)0x3c3a, (q15_t)0x55b3, (q15_t)0x3c36, (q15_t)0x55bf, (q15_t)0x3c31, (q15_t)0x55cb, (q15_t)0x3c2d, (q15_t)0x55d7, (q15_t)0x3c29, (q15_t)0x55e2, (q15_t)0x3c24, (q15_t)0x55ee, (q15_t)0x3c20, (q15_t)0x55fa, (q15_t)0x3c1c, (q15_t)0x5606, (q15_t)0x3c17, (q15_t)0x5612, (q15_t)0x3c13, (q15_t)0x561d, (q15_t)0x3c0f, (q15_t)0x5629, (q15_t)0x3c0a, (q15_t)0x5635, (q15_t)0x3c06, (q15_t)0x5641, (q15_t)0x3c02, (q15_t)0x564c, (q15_t)0x3bfd, (q15_t)0x5658, (q15_t)0x3bf9, (q15_t)0x5664, (q15_t)0x3bf5, (q15_t)0x5670, (q15_t)0x3bf0, (q15_t)0x567c, (q15_t)0x3bec, (q15_t)0x5687, (q15_t)0x3be7, (q15_t)0x5693, (q15_t)0x3be3, (q15_t)0x569f, (q15_t)0x3bde, (q15_t)0x56ab, (q15_t)0x3bda, (q15_t)0x56b6, (q15_t)0x3bd6, (q15_t)0x56c2, (q15_t)0x3bd1, (q15_t)0x56ce, (q15_t)0x3bcd, (q15_t)0x56da, (q15_t)0x3bc8, (q15_t)0x56e5, (q15_t)0x3bc4, (q15_t)0x56f1, (q15_t)0x3bbf, (q15_t)0x56fd, (q15_t)0x3bbb, (q15_t)0x5709, (q15_t)0x3bb6, (q15_t)0x5714, (q15_t)0x3bb2, (q15_t)0x5720, (q15_t)0x3bad, (q15_t)0x572c, (q15_t)0x3ba9, (q15_t)0x5737, (q15_t)0x3ba4, (q15_t)0x5743, (q15_t)0x3b9f, (q15_t)0x574f, (q15_t)0x3b9b, (q15_t)0x575b, (q15_t)0x3b96, (q15_t)0x5766, (q15_t)0x3b92, (q15_t)0x5772, (q15_t)0x3b8d, (q15_t)0x577e, (q15_t)0x3b88, (q15_t)0x5789, (q15_t)0x3b84, (q15_t)0x5795, (q15_t)0x3b7f, (q15_t)0x57a1, (q15_t)0x3b7b, (q15_t)0x57ac, (q15_t)0x3b76, (q15_t)0x57b8, (q15_t)0x3b71, (q15_t)0x57c4, (q15_t)0x3b6d, (q15_t)0x57cf, (q15_t)0x3b68, (q15_t)0x57db, (q15_t)0x3b63, (q15_t)0x57e7, (q15_t)0x3b5f, (q15_t)0x57f2, (q15_t)0x3b5a, (q15_t)0x57fe, (q15_t)0x3b55, (q15_t)0x580a, (q15_t)0x3b50, (q15_t)0x5815, (q15_t)0x3b4c, (q15_t)0x5821, (q15_t)0x3b47, (q15_t)0x582d, (q15_t)0x3b42, (q15_t)0x5838, (q15_t)0x3b3e, (q15_t)0x5844, (q15_t)0x3b39, (q15_t)0x584f, (q15_t)0x3b34, (q15_t)0x585b, (q15_t)0x3b2f, (q15_t)0x5867, (q15_t)0x3b2a, (q15_t)0x5872, (q15_t)0x3b26, (q15_t)0x587e, (q15_t)0x3b21, (q15_t)0x5889, (q15_t)0x3b1c, (q15_t)0x5895, (q15_t)0x3b17, (q15_t)0x58a1, (q15_t)0x3b12, (q15_t)0x58ac, (q15_t)0x3b0e, (q15_t)0x58b8, (q15_t)0x3b09, (q15_t)0x58c3, (q15_t)0x3b04, (q15_t)0x58cf, (q15_t)0x3aff, (q15_t)0x58db, (q15_t)0x3afa, (q15_t)0x58e6, (q15_t)0x3af5, (q15_t)0x58f2, (q15_t)0x3af0, (q15_t)0x58fd, (q15_t)0x3aeb, (q15_t)0x5909, (q15_t)0x3ae6, (q15_t)0x5914, (q15_t)0x3ae2, (q15_t)0x5920, (q15_t)0x3add, (q15_t)0x592c, (q15_t)0x3ad8, (q15_t)0x5937, (q15_t)0x3ad3, (q15_t)0x5943, (q15_t)0x3ace, (q15_t)0x594e, (q15_t)0x3ac9, (q15_t)0x595a, (q15_t)0x3ac4, (q15_t)0x5965, (q15_t)0x3abf, (q15_t)0x5971, (q15_t)0x3aba, (q15_t)0x597c, (q15_t)0x3ab5, (q15_t)0x5988, (q15_t)0x3ab0, (q15_t)0x5993, (q15_t)0x3aab, (q15_t)0x599f, (q15_t)0x3aa6, (q15_t)0x59aa, (q15_t)0x3aa1, (q15_t)0x59b6, (q15_t)0x3a9c, (q15_t)0x59c1, (q15_t)0x3a97, (q15_t)0x59cd, (q15_t)0x3a92, (q15_t)0x59d8, (q15_t)0x3a8d, (q15_t)0x59e4, (q15_t)0x3a88, (q15_t)0x59ef, (q15_t)0x3a82, (q15_t)0x59fb, (q15_t)0x3a7d, (q15_t)0x5a06, (q15_t)0x3a78, (q15_t)0x5a12, (q15_t)0x3a73, (q15_t)0x5a1d, (q15_t)0x3a6e, (q15_t)0x5a29, (q15_t)0x3a69, (q15_t)0x5a34, (q15_t)0x3a64, (q15_t)0x5a40, (q15_t)0x3a5f, (q15_t)0x5a4b, (q15_t)0x3a59, (q15_t)0x5a57, (q15_t)0x3a54, (q15_t)0x5a62, (q15_t)0x3a4f, (q15_t)0x5a6e, (q15_t)0x3a4a, (q15_t)0x5a79, (q15_t)0x3a45, (q15_t)0x5a84, (q15_t)0x3a3f, (q15_t)0x5a90, (q15_t)0x3a3a, (q15_t)0x5a9b, (q15_t)0x3a35, (q15_t)0x5aa7, (q15_t)0x3a30, (q15_t)0x5ab2, (q15_t)0x3a2b, (q15_t)0x5abe, (q15_t)0x3a25, (q15_t)0x5ac9, (q15_t)0x3a20, (q15_t)0x5ad4, (q15_t)0x3a1b, (q15_t)0x5ae0, (q15_t)0x3a16, (q15_t)0x5aeb, (q15_t)0x3a10, (q15_t)0x5af7, (q15_t)0x3a0b, (q15_t)0x5b02, (q15_t)0x3a06, (q15_t)0x5b0d, (q15_t)0x3a00, (q15_t)0x5b19, (q15_t)0x39fb, (q15_t)0x5b24, (q15_t)0x39f6, (q15_t)0x5b30, (q15_t)0x39f0, (q15_t)0x5b3b, (q15_t)0x39eb, (q15_t)0x5b46, (q15_t)0x39e6, (q15_t)0x5b52, (q15_t)0x39e0, (q15_t)0x5b5d, (q15_t)0x39db, (q15_t)0x5b68, (q15_t)0x39d6, (q15_t)0x5b74, (q15_t)0x39d0, (q15_t)0x5b7f, (q15_t)0x39cb, (q15_t)0x5b8a, (q15_t)0x39c5, (q15_t)0x5b96, (q15_t)0x39c0, (q15_t)0x5ba1, (q15_t)0x39bb, (q15_t)0x5bac, (q15_t)0x39b5, (q15_t)0x5bb8, (q15_t)0x39b0, (q15_t)0x5bc3, (q15_t)0x39aa, (q15_t)0x5bce, (q15_t)0x39a5, (q15_t)0x5bda, (q15_t)0x399f, (q15_t)0x5be5, (q15_t)0x399a, (q15_t)0x5bf0, (q15_t)0x3994, (q15_t)0x5bfc, (q15_t)0x398f, (q15_t)0x5c07, (q15_t)0x3989, (q15_t)0x5c12, (q15_t)0x3984, (q15_t)0x5c1e, (q15_t)0x397e, (q15_t)0x5c29, (q15_t)0x3979, (q15_t)0x5c34, (q15_t)0x3973, (q15_t)0x5c3f, (q15_t)0x396e, (q15_t)0x5c4b, (q15_t)0x3968, (q15_t)0x5c56, (q15_t)0x3963, (q15_t)0x5c61, (q15_t)0x395d, (q15_t)0x5c6c, (q15_t)0x3958, (q15_t)0x5c78, (q15_t)0x3952, (q15_t)0x5c83, (q15_t)0x394c, (q15_t)0x5c8e, (q15_t)0x3947, (q15_t)0x5c99, (q15_t)0x3941, (q15_t)0x5ca5, (q15_t)0x393b, (q15_t)0x5cb0, (q15_t)0x3936, (q15_t)0x5cbb, (q15_t)0x3930, (q15_t)0x5cc6, (q15_t)0x392b, (q15_t)0x5cd2, (q15_t)0x3925, (q15_t)0x5cdd, (q15_t)0x391f, (q15_t)0x5ce8, (q15_t)0x391a, (q15_t)0x5cf3, (q15_t)0x3914, (q15_t)0x5cff, (q15_t)0x390e, (q15_t)0x5d0a, (q15_t)0x3909, (q15_t)0x5d15, (q15_t)0x3903, (q15_t)0x5d20, (q15_t)0x38fd, (q15_t)0x5d2b, (q15_t)0x38f7, (q15_t)0x5d36, (q15_t)0x38f2, (q15_t)0x5d42, (q15_t)0x38ec, (q15_t)0x5d4d, (q15_t)0x38e6, (q15_t)0x5d58, (q15_t)0x38e0, (q15_t)0x5d63, (q15_t)0x38db, (q15_t)0x5d6e, (q15_t)0x38d5, (q15_t)0x5d79, (q15_t)0x38cf, (q15_t)0x5d85, (q15_t)0x38c9, (q15_t)0x5d90, (q15_t)0x38c3, (q15_t)0x5d9b, (q15_t)0x38be, (q15_t)0x5da6, (q15_t)0x38b8, (q15_t)0x5db1, (q15_t)0x38b2, (q15_t)0x5dbc, (q15_t)0x38ac, (q15_t)0x5dc7, (q15_t)0x38a6, (q15_t)0x5dd3, (q15_t)0x38a1, (q15_t)0x5dde, (q15_t)0x389b, (q15_t)0x5de9, (q15_t)0x3895, (q15_t)0x5df4, (q15_t)0x388f, (q15_t)0x5dff, (q15_t)0x3889, (q15_t)0x5e0a, (q15_t)0x3883, (q15_t)0x5e15, (q15_t)0x387d, (q15_t)0x5e20, (q15_t)0x3877, (q15_t)0x5e2b, (q15_t)0x3871, (q15_t)0x5e36, (q15_t)0x386b, (q15_t)0x5e42, (q15_t)0x3866, (q15_t)0x5e4d, (q15_t)0x3860, (q15_t)0x5e58, (q15_t)0x385a, (q15_t)0x5e63, (q15_t)0x3854, (q15_t)0x5e6e, (q15_t)0x384e, (q15_t)0x5e79, (q15_t)0x3848, (q15_t)0x5e84, (q15_t)0x3842, (q15_t)0x5e8f, (q15_t)0x383c, (q15_t)0x5e9a, (q15_t)0x3836, (q15_t)0x5ea5, (q15_t)0x3830, (q15_t)0x5eb0, (q15_t)0x382a, (q15_t)0x5ebb, (q15_t)0x3824, (q15_t)0x5ec6, (q15_t)0x381e, (q15_t)0x5ed1, (q15_t)0x3818, (q15_t)0x5edc, (q15_t)0x3812, (q15_t)0x5ee7, (q15_t)0x380b, (q15_t)0x5ef2, (q15_t)0x3805, (q15_t)0x5efd, (q15_t)0x37ff, (q15_t)0x5f08, (q15_t)0x37f9, (q15_t)0x5f13, (q15_t)0x37f3, (q15_t)0x5f1e, (q15_t)0x37ed, (q15_t)0x5f29, (q15_t)0x37e7, (q15_t)0x5f34, (q15_t)0x37e1, (q15_t)0x5f3f, (q15_t)0x37db, (q15_t)0x5f4a, (q15_t)0x37d5, (q15_t)0x5f55, (q15_t)0x37ce, (q15_t)0x5f60, (q15_t)0x37c8, (q15_t)0x5f6b, (q15_t)0x37c2, (q15_t)0x5f76, (q15_t)0x37bc, (q15_t)0x5f81, (q15_t)0x37b6, (q15_t)0x5f8c, (q15_t)0x37b0, (q15_t)0x5f97, (q15_t)0x37a9, (q15_t)0x5fa2, (q15_t)0x37a3, (q15_t)0x5fac, (q15_t)0x379d, (q15_t)0x5fb7, (q15_t)0x3797, (q15_t)0x5fc2, (q15_t)0x3790, (q15_t)0x5fcd, (q15_t)0x378a, (q15_t)0x5fd8, (q15_t)0x3784, (q15_t)0x5fe3, (q15_t)0x377e, (q15_t)0x5fee, (q15_t)0x3777, (q15_t)0x5ff9, (q15_t)0x3771, (q15_t)0x6004, (q15_t)0x376b, (q15_t)0x600f, (q15_t)0x3765, (q15_t)0x6019, (q15_t)0x375e, (q15_t)0x6024, (q15_t)0x3758, (q15_t)0x602f, (q15_t)0x3752, (q15_t)0x603a, (q15_t)0x374b, (q15_t)0x6045, (q15_t)0x3745, (q15_t)0x6050, (q15_t)0x373f, (q15_t)0x605b, (q15_t)0x3738, (q15_t)0x6065, (q15_t)0x3732, (q15_t)0x6070, (q15_t)0x372c, (q15_t)0x607b, (q15_t)0x3725, (q15_t)0x6086, (q15_t)0x371f, (q15_t)0x6091, (q15_t)0x3718, (q15_t)0x609b, (q15_t)0x3712, (q15_t)0x60a6, (q15_t)0x370c, (q15_t)0x60b1, (q15_t)0x3705, (q15_t)0x60bc, (q15_t)0x36ff, (q15_t)0x60c7, (q15_t)0x36f8, (q15_t)0x60d1, (q15_t)0x36f2, (q15_t)0x60dc, (q15_t)0x36eb, (q15_t)0x60e7, (q15_t)0x36e5, (q15_t)0x60f2, (q15_t)0x36df, (q15_t)0x60fd, (q15_t)0x36d8, (q15_t)0x6107, (q15_t)0x36d2, (q15_t)0x6112, (q15_t)0x36cb, (q15_t)0x611d, (q15_t)0x36c5, (q15_t)0x6128, (q15_t)0x36be, (q15_t)0x6132, (q15_t)0x36b8, (q15_t)0x613d, (q15_t)0x36b1, (q15_t)0x6148, (q15_t)0x36ab, (q15_t)0x6153, (q15_t)0x36a4, (q15_t)0x615d, (q15_t)0x369d, (q15_t)0x6168, (q15_t)0x3697, (q15_t)0x6173, (q15_t)0x3690, (q15_t)0x617d, (q15_t)0x368a, (q15_t)0x6188, (q15_t)0x3683, (q15_t)0x6193, (q15_t)0x367d, (q15_t)0x619e, (q15_t)0x3676, (q15_t)0x61a8, (q15_t)0x366f, (q15_t)0x61b3, (q15_t)0x3669, (q15_t)0x61be, (q15_t)0x3662, (q15_t)0x61c8, (q15_t)0x365c, (q15_t)0x61d3, (q15_t)0x3655, (q15_t)0x61de, (q15_t)0x364e, (q15_t)0x61e8, (q15_t)0x3648, (q15_t)0x61f3, (q15_t)0x3641, (q15_t)0x61fe, (q15_t)0x363a, (q15_t)0x6208, (q15_t)0x3634, (q15_t)0x6213, (q15_t)0x362d, (q15_t)0x621e, (q15_t)0x3626, (q15_t)0x6228, (q15_t)0x3620, (q15_t)0x6233, (q15_t)0x3619, (q15_t)0x623d, (q15_t)0x3612, (q15_t)0x6248, (q15_t)0x360b, (q15_t)0x6253, (q15_t)0x3605, (q15_t)0x625d, (q15_t)0x35fe, (q15_t)0x6268, (q15_t)0x35f7, (q15_t)0x6272, (q15_t)0x35f0, (q15_t)0x627d, (q15_t)0x35ea, (q15_t)0x6288, (q15_t)0x35e3, (q15_t)0x6292, (q15_t)0x35dc, (q15_t)0x629d, (q15_t)0x35d5, (q15_t)0x62a7, (q15_t)0x35ce, (q15_t)0x62b2, (q15_t)0x35c8, (q15_t)0x62bc, (q15_t)0x35c1, (q15_t)0x62c7, (q15_t)0x35ba, (q15_t)0x62d2, (q15_t)0x35b3, (q15_t)0x62dc, (q15_t)0x35ac, (q15_t)0x62e7, (q15_t)0x35a5, (q15_t)0x62f1, (q15_t)0x359f, (q15_t)0x62fc, (q15_t)0x3598, (q15_t)0x6306, (q15_t)0x3591, (q15_t)0x6311, (q15_t)0x358a, (q15_t)0x631b, (q15_t)0x3583, (q15_t)0x6326, (q15_t)0x357c, (q15_t)0x6330, (q15_t)0x3575, (q15_t)0x633b, (q15_t)0x356e, (q15_t)0x6345, (q15_t)0x3567, (q15_t)0x6350, (q15_t)0x3561, (q15_t)0x635a, (q15_t)0x355a, (q15_t)0x6365, (q15_t)0x3553, (q15_t)0x636f, (q15_t)0x354c, (q15_t)0x637a, (q15_t)0x3545, (q15_t)0x6384, (q15_t)0x353e, (q15_t)0x638e, (q15_t)0x3537, (q15_t)0x6399, (q15_t)0x3530, (q15_t)0x63a3, (q15_t)0x3529, (q15_t)0x63ae, (q15_t)0x3522, (q15_t)0x63b8, (q15_t)0x351b, (q15_t)0x63c3, (q15_t)0x3514, (q15_t)0x63cd, (q15_t)0x350d, (q15_t)0x63d7, (q15_t)0x3506, (q15_t)0x63e2, (q15_t)0x34ff, (q15_t)0x63ec, (q15_t)0x34f8, (q15_t)0x63f7, (q15_t)0x34f1, (q15_t)0x6401, (q15_t)0x34ea, (q15_t)0x640b, (q15_t)0x34e2, (q15_t)0x6416, (q15_t)0x34db, (q15_t)0x6420, (q15_t)0x34d4, (q15_t)0x642b, (q15_t)0x34cd, (q15_t)0x6435, (q15_t)0x34c6, (q15_t)0x643f, (q15_t)0x34bf, (q15_t)0x644a, (q15_t)0x34b8, (q15_t)0x6454, (q15_t)0x34b1, (q15_t)0x645e, (q15_t)0x34aa, (q15_t)0x6469, (q15_t)0x34a2, (q15_t)0x6473, (q15_t)0x349b, (q15_t)0x647d, (q15_t)0x3494, (q15_t)0x6488, (q15_t)0x348d, (q15_t)0x6492, (q15_t)0x3486, (q15_t)0x649c, (q15_t)0x347f, (q15_t)0x64a7, (q15_t)0x3477, (q15_t)0x64b1, (q15_t)0x3470, (q15_t)0x64bb, (q15_t)0x3469, (q15_t)0x64c5, (q15_t)0x3462, (q15_t)0x64d0, (q15_t)0x345b, (q15_t)0x64da, (q15_t)0x3453, (q15_t)0x64e4, (q15_t)0x344c, (q15_t)0x64ef, (q15_t)0x3445, (q15_t)0x64f9, (q15_t)0x343e, (q15_t)0x6503, (q15_t)0x3436, (q15_t)0x650d, (q15_t)0x342f, (q15_t)0x6518, (q15_t)0x3428, (q15_t)0x6522, (q15_t)0x3420, (q15_t)0x652c, (q15_t)0x3419, (q15_t)0x6536, (q15_t)0x3412, (q15_t)0x6541, (q15_t)0x340b, (q15_t)0x654b, (q15_t)0x3403, (q15_t)0x6555, (q15_t)0x33fc, (q15_t)0x655f, (q15_t)0x33f5, (q15_t)0x6569, (q15_t)0x33ed, (q15_t)0x6574, (q15_t)0x33e6, (q15_t)0x657e, (q15_t)0x33df, (q15_t)0x6588, (q15_t)0x33d7, (q15_t)0x6592, (q15_t)0x33d0, (q15_t)0x659c, (q15_t)0x33c8, (q15_t)0x65a6, (q15_t)0x33c1, (q15_t)0x65b1, (q15_t)0x33ba, (q15_t)0x65bb, (q15_t)0x33b2, (q15_t)0x65c5, (q15_t)0x33ab, (q15_t)0x65cf, (q15_t)0x33a3, (q15_t)0x65d9, (q15_t)0x339c, (q15_t)0x65e3, (q15_t)0x3395, (q15_t)0x65ed, (q15_t)0x338d, (q15_t)0x65f8, (q15_t)0x3386, (q15_t)0x6602, (q15_t)0x337e, (q15_t)0x660c, (q15_t)0x3377, (q15_t)0x6616, (q15_t)0x336f, (q15_t)0x6620, (q15_t)0x3368, (q15_t)0x662a, (q15_t)0x3360, (q15_t)0x6634, (q15_t)0x3359, (q15_t)0x663e, (q15_t)0x3351, (q15_t)0x6648, (q15_t)0x334a, (q15_t)0x6652, (q15_t)0x3342, (q15_t)0x665c, (q15_t)0x333b, (q15_t)0x6666, (q15_t)0x3333, (q15_t)0x6671, (q15_t)0x332c, (q15_t)0x667b, (q15_t)0x3324, (q15_t)0x6685, (q15_t)0x331d, (q15_t)0x668f, (q15_t)0x3315, (q15_t)0x6699, (q15_t)0x330d, (q15_t)0x66a3, (q15_t)0x3306, (q15_t)0x66ad, (q15_t)0x32fe, (q15_t)0x66b7, (q15_t)0x32f7, (q15_t)0x66c1, (q15_t)0x32ef, (q15_t)0x66cb, (q15_t)0x32e7, (q15_t)0x66d5, (q15_t)0x32e0, (q15_t)0x66df, (q15_t)0x32d8, (q15_t)0x66e9, (q15_t)0x32d0, (q15_t)0x66f3, (q15_t)0x32c9, (q15_t)0x66fd, (q15_t)0x32c1, (q15_t)0x6707, (q15_t)0x32ba, (q15_t)0x6711, (q15_t)0x32b2, (q15_t)0x671a, (q15_t)0x32aa, (q15_t)0x6724, (q15_t)0x32a3, (q15_t)0x672e, (q15_t)0x329b, (q15_t)0x6738, (q15_t)0x3293, (q15_t)0x6742, (q15_t)0x328b, (q15_t)0x674c, (q15_t)0x3284, (q15_t)0x6756, (q15_t)0x327c, (q15_t)0x6760, (q15_t)0x3274, (q15_t)0x676a, (q15_t)0x326d, (q15_t)0x6774, (q15_t)0x3265, (q15_t)0x677e, (q15_t)0x325d, (q15_t)0x6788, (q15_t)0x3255, (q15_t)0x6791, (q15_t)0x324e, (q15_t)0x679b, (q15_t)0x3246, (q15_t)0x67a5, (q15_t)0x323e, (q15_t)0x67af, (q15_t)0x3236, (q15_t)0x67b9, (q15_t)0x322e, (q15_t)0x67c3, (q15_t)0x3227, (q15_t)0x67cd, (q15_t)0x321f, (q15_t)0x67d6, (q15_t)0x3217, (q15_t)0x67e0, (q15_t)0x320f, (q15_t)0x67ea, (q15_t)0x3207, (q15_t)0x67f4, (q15_t)0x31ff, (q15_t)0x67fe, (q15_t)0x31f8, (q15_t)0x6808, (q15_t)0x31f0, (q15_t)0x6811, (q15_t)0x31e8, (q15_t)0x681b, (q15_t)0x31e0, (q15_t)0x6825, (q15_t)0x31d8, (q15_t)0x682f, (q15_t)0x31d0, (q15_t)0x6838, (q15_t)0x31c8, (q15_t)0x6842, (q15_t)0x31c0, (q15_t)0x684c, (q15_t)0x31b9, (q15_t)0x6856, (q15_t)0x31b1, (q15_t)0x6860, (q15_t)0x31a9, (q15_t)0x6869, (q15_t)0x31a1, (q15_t)0x6873, (q15_t)0x3199, (q15_t)0x687d, (q15_t)0x3191, (q15_t)0x6886, (q15_t)0x3189, (q15_t)0x6890, (q15_t)0x3181, (q15_t)0x689a, (q15_t)0x3179, (q15_t)0x68a4, (q15_t)0x3171, (q15_t)0x68ad, (q15_t)0x3169, (q15_t)0x68b7, (q15_t)0x3161, (q15_t)0x68c1, (q15_t)0x3159, (q15_t)0x68ca, (q15_t)0x3151, (q15_t)0x68d4, (q15_t)0x3149, (q15_t)0x68de, (q15_t)0x3141, (q15_t)0x68e7, (q15_t)0x3139, (q15_t)0x68f1, (q15_t)0x3131, (q15_t)0x68fb, (q15_t)0x3129, (q15_t)0x6904, (q15_t)0x3121, (q15_t)0x690e, (q15_t)0x3119, (q15_t)0x6918, (q15_t)0x3111, (q15_t)0x6921, (q15_t)0x3109, (q15_t)0x692b, (q15_t)0x3101, (q15_t)0x6935, (q15_t)0x30f9, (q15_t)0x693e, (q15_t)0x30f0, (q15_t)0x6948, (q15_t)0x30e8, (q15_t)0x6951, (q15_t)0x30e0, (q15_t)0x695b, (q15_t)0x30d8, (q15_t)0x6965, (q15_t)0x30d0, (q15_t)0x696e, (q15_t)0x30c8, (q15_t)0x6978, (q15_t)0x30c0, (q15_t)0x6981, (q15_t)0x30b8, (q15_t)0x698b, (q15_t)0x30af, (q15_t)0x6994, (q15_t)0x30a7, (q15_t)0x699e, (q15_t)0x309f, (q15_t)0x69a7, (q15_t)0x3097, (q15_t)0x69b1, (q15_t)0x308f, (q15_t)0x69bb, (q15_t)0x3087, (q15_t)0x69c4, (q15_t)0x307e, (q15_t)0x69ce, (q15_t)0x3076, (q15_t)0x69d7, (q15_t)0x306e, (q15_t)0x69e1, (q15_t)0x3066, (q15_t)0x69ea, (q15_t)0x305d, (q15_t)0x69f4, (q15_t)0x3055, (q15_t)0x69fd, (q15_t)0x304d, (q15_t)0x6a07, (q15_t)0x3045, (q15_t)0x6a10, (q15_t)0x303c, (q15_t)0x6a1a, (q15_t)0x3034, (q15_t)0x6a23, (q15_t)0x302c, (q15_t)0x6a2c, (q15_t)0x3024, (q15_t)0x6a36, (q15_t)0x301b, (q15_t)0x6a3f, (q15_t)0x3013, (q15_t)0x6a49, (q15_t)0x300b, (q15_t)0x6a52, (q15_t)0x3002, (q15_t)0x6a5c, (q15_t)0x2ffa, (q15_t)0x6a65, (q15_t)0x2ff2, (q15_t)0x6a6e, (q15_t)0x2fea, (q15_t)0x6a78, (q15_t)0x2fe1, (q15_t)0x6a81, (q15_t)0x2fd9, (q15_t)0x6a8b, (q15_t)0x2fd0, (q15_t)0x6a94, (q15_t)0x2fc8, (q15_t)0x6a9d, (q15_t)0x2fc0, (q15_t)0x6aa7, (q15_t)0x2fb7, (q15_t)0x6ab0, (q15_t)0x2faf, (q15_t)0x6ab9, (q15_t)0x2fa7, (q15_t)0x6ac3, (q15_t)0x2f9e, (q15_t)0x6acc, (q15_t)0x2f96, (q15_t)0x6ad6, (q15_t)0x2f8d, (q15_t)0x6adf, (q15_t)0x2f85, (q15_t)0x6ae8, (q15_t)0x2f7d, (q15_t)0x6af2, (q15_t)0x2f74, (q15_t)0x6afb, (q15_t)0x2f6c, (q15_t)0x6b04, (q15_t)0x2f63, (q15_t)0x6b0d, (q15_t)0x2f5b, (q15_t)0x6b17, (q15_t)0x2f52, (q15_t)0x6b20, (q15_t)0x2f4a, (q15_t)0x6b29, (q15_t)0x2f41, (q15_t)0x6b33, (q15_t)0x2f39, (q15_t)0x6b3c, (q15_t)0x2f30, (q15_t)0x6b45, (q15_t)0x2f28, (q15_t)0x6b4e, (q15_t)0x2f20, (q15_t)0x6b58, (q15_t)0x2f17, (q15_t)0x6b61, (q15_t)0x2f0e, (q15_t)0x6b6a, (q15_t)0x2f06, (q15_t)0x6b73, (q15_t)0x2efd, (q15_t)0x6b7d, (q15_t)0x2ef5, (q15_t)0x6b86, (q15_t)0x2eec, (q15_t)0x6b8f, (q15_t)0x2ee4, (q15_t)0x6b98, (q15_t)0x2edb, (q15_t)0x6ba1, (q15_t)0x2ed3, (q15_t)0x6bab, (q15_t)0x2eca, (q15_t)0x6bb4, (q15_t)0x2ec2, (q15_t)0x6bbd, (q15_t)0x2eb9, (q15_t)0x6bc6, (q15_t)0x2eb0, (q15_t)0x6bcf, (q15_t)0x2ea8, (q15_t)0x6bd8, (q15_t)0x2e9f, (q15_t)0x6be2, (q15_t)0x2e97, (q15_t)0x6beb, (q15_t)0x2e8e, (q15_t)0x6bf4, (q15_t)0x2e85, (q15_t)0x6bfd, (q15_t)0x2e7d, (q15_t)0x6c06, (q15_t)0x2e74, (q15_t)0x6c0f, (q15_t)0x2e6b, (q15_t)0x6c18, (q15_t)0x2e63, (q15_t)0x6c21, (q15_t)0x2e5a, (q15_t)0x6c2b, (q15_t)0x2e51, (q15_t)0x6c34, (q15_t)0x2e49, (q15_t)0x6c3d, (q15_t)0x2e40, (q15_t)0x6c46, (q15_t)0x2e37, (q15_t)0x6c4f, (q15_t)0x2e2f, (q15_t)0x6c58, (q15_t)0x2e26, (q15_t)0x6c61, (q15_t)0x2e1d, (q15_t)0x6c6a, (q15_t)0x2e15, (q15_t)0x6c73, (q15_t)0x2e0c, (q15_t)0x6c7c, (q15_t)0x2e03, (q15_t)0x6c85, (q15_t)0x2dfa, (q15_t)0x6c8e, (q15_t)0x2df2, (q15_t)0x6c97, (q15_t)0x2de9, (q15_t)0x6ca0, (q15_t)0x2de0, (q15_t)0x6ca9, (q15_t)0x2dd7, (q15_t)0x6cb2, (q15_t)0x2dcf, (q15_t)0x6cbb, (q15_t)0x2dc6, (q15_t)0x6cc4, (q15_t)0x2dbd, (q15_t)0x6ccd, (q15_t)0x2db4, (q15_t)0x6cd6, (q15_t)0x2dab, (q15_t)0x6cdf, (q15_t)0x2da3, (q15_t)0x6ce8, (q15_t)0x2d9a, (q15_t)0x6cf1, (q15_t)0x2d91, (q15_t)0x6cfa, (q15_t)0x2d88, (q15_t)0x6d03, (q15_t)0x2d7f, (q15_t)0x6d0c, (q15_t)0x2d76, (q15_t)0x6d15, (q15_t)0x2d6e, (q15_t)0x6d1e, (q15_t)0x2d65, (q15_t)0x6d27, (q15_t)0x2d5c, (q15_t)0x6d2f, (q15_t)0x2d53, (q15_t)0x6d38, (q15_t)0x2d4a, (q15_t)0x6d41, (q15_t)0x2d41, (q15_t)0x6d4a, (q15_t)0x2d38, (q15_t)0x6d53, (q15_t)0x2d2f, (q15_t)0x6d5c, (q15_t)0x2d27, (q15_t)0x6d65, (q15_t)0x2d1e, (q15_t)0x6d6e, (q15_t)0x2d15, (q15_t)0x6d76, (q15_t)0x2d0c, (q15_t)0x6d7f, (q15_t)0x2d03, (q15_t)0x6d88, (q15_t)0x2cfa, (q15_t)0x6d91, (q15_t)0x2cf1, (q15_t)0x6d9a, (q15_t)0x2ce8, (q15_t)0x6da3, (q15_t)0x2cdf, (q15_t)0x6dab, (q15_t)0x2cd6, (q15_t)0x6db4, (q15_t)0x2ccd, (q15_t)0x6dbd, (q15_t)0x2cc4, (q15_t)0x6dc6, (q15_t)0x2cbb, (q15_t)0x6dcf, (q15_t)0x2cb2, (q15_t)0x6dd7, (q15_t)0x2ca9, (q15_t)0x6de0, (q15_t)0x2ca0, (q15_t)0x6de9, (q15_t)0x2c97, (q15_t)0x6df2, (q15_t)0x2c8e, (q15_t)0x6dfa, (q15_t)0x2c85, (q15_t)0x6e03, (q15_t)0x2c7c, (q15_t)0x6e0c, (q15_t)0x2c73, (q15_t)0x6e15, (q15_t)0x2c6a, (q15_t)0x6e1d, (q15_t)0x2c61, (q15_t)0x6e26, (q15_t)0x2c58, (q15_t)0x6e2f, (q15_t)0x2c4f, (q15_t)0x6e37, (q15_t)0x2c46, (q15_t)0x6e40, (q15_t)0x2c3d, (q15_t)0x6e49, (q15_t)0x2c34, (q15_t)0x6e51, (q15_t)0x2c2b, (q15_t)0x6e5a, (q15_t)0x2c21, (q15_t)0x6e63, (q15_t)0x2c18, (q15_t)0x6e6b, (q15_t)0x2c0f, (q15_t)0x6e74, (q15_t)0x2c06, (q15_t)0x6e7d, (q15_t)0x2bfd, (q15_t)0x6e85, (q15_t)0x2bf4, (q15_t)0x6e8e, (q15_t)0x2beb, (q15_t)0x6e97, (q15_t)0x2be2, (q15_t)0x6e9f, (q15_t)0x2bd8, (q15_t)0x6ea8, (q15_t)0x2bcf, (q15_t)0x6eb0, (q15_t)0x2bc6, (q15_t)0x6eb9, (q15_t)0x2bbd, (q15_t)0x6ec2, (q15_t)0x2bb4, (q15_t)0x6eca, (q15_t)0x2bab, (q15_t)0x6ed3, (q15_t)0x2ba1, (q15_t)0x6edb, (q15_t)0x2b98, (q15_t)0x6ee4, (q15_t)0x2b8f, (q15_t)0x6eec, (q15_t)0x2b86, (q15_t)0x6ef5, (q15_t)0x2b7d, (q15_t)0x6efd, (q15_t)0x2b73, (q15_t)0x6f06, (q15_t)0x2b6a, (q15_t)0x6f0e, (q15_t)0x2b61, (q15_t)0x6f17, (q15_t)0x2b58, (q15_t)0x6f20, (q15_t)0x2b4e, (q15_t)0x6f28, (q15_t)0x2b45, (q15_t)0x6f30, (q15_t)0x2b3c, (q15_t)0x6f39, (q15_t)0x2b33, (q15_t)0x6f41, (q15_t)0x2b29, (q15_t)0x6f4a, (q15_t)0x2b20, (q15_t)0x6f52, (q15_t)0x2b17, (q15_t)0x6f5b, (q15_t)0x2b0d, (q15_t)0x6f63, (q15_t)0x2b04, (q15_t)0x6f6c, (q15_t)0x2afb, (q15_t)0x6f74, (q15_t)0x2af2, (q15_t)0x6f7d, (q15_t)0x2ae8, (q15_t)0x6f85, (q15_t)0x2adf, (q15_t)0x6f8d, (q15_t)0x2ad6, (q15_t)0x6f96, (q15_t)0x2acc, (q15_t)0x6f9e, (q15_t)0x2ac3, (q15_t)0x6fa7, (q15_t)0x2ab9, (q15_t)0x6faf, (q15_t)0x2ab0, (q15_t)0x6fb7, (q15_t)0x2aa7, (q15_t)0x6fc0, (q15_t)0x2a9d, (q15_t)0x6fc8, (q15_t)0x2a94, (q15_t)0x6fd0, (q15_t)0x2a8b, (q15_t)0x6fd9, (q15_t)0x2a81, (q15_t)0x6fe1, (q15_t)0x2a78, (q15_t)0x6fea, (q15_t)0x2a6e, (q15_t)0x6ff2, (q15_t)0x2a65, (q15_t)0x6ffa, (q15_t)0x2a5c, (q15_t)0x7002, (q15_t)0x2a52, (q15_t)0x700b, (q15_t)0x2a49, (q15_t)0x7013, (q15_t)0x2a3f, (q15_t)0x701b, (q15_t)0x2a36, (q15_t)0x7024, (q15_t)0x2a2c, (q15_t)0x702c, (q15_t)0x2a23, (q15_t)0x7034, (q15_t)0x2a1a, (q15_t)0x703c, (q15_t)0x2a10, (q15_t)0x7045, (q15_t)0x2a07, (q15_t)0x704d, (q15_t)0x29fd, (q15_t)0x7055, (q15_t)0x29f4, (q15_t)0x705d, (q15_t)0x29ea, (q15_t)0x7066, (q15_t)0x29e1, (q15_t)0x706e, (q15_t)0x29d7, (q15_t)0x7076, (q15_t)0x29ce, (q15_t)0x707e, (q15_t)0x29c4, (q15_t)0x7087, (q15_t)0x29bb, (q15_t)0x708f, (q15_t)0x29b1, (q15_t)0x7097, (q15_t)0x29a7, (q15_t)0x709f, (q15_t)0x299e, (q15_t)0x70a7, (q15_t)0x2994, (q15_t)0x70af, (q15_t)0x298b, (q15_t)0x70b8, (q15_t)0x2981, (q15_t)0x70c0, (q15_t)0x2978, (q15_t)0x70c8, (q15_t)0x296e, (q15_t)0x70d0, (q15_t)0x2965, (q15_t)0x70d8, (q15_t)0x295b, (q15_t)0x70e0, (q15_t)0x2951, (q15_t)0x70e8, (q15_t)0x2948, (q15_t)0x70f0, (q15_t)0x293e, (q15_t)0x70f9, (q15_t)0x2935, (q15_t)0x7101, (q15_t)0x292b, (q15_t)0x7109, (q15_t)0x2921, (q15_t)0x7111, (q15_t)0x2918, (q15_t)0x7119, (q15_t)0x290e, (q15_t)0x7121, (q15_t)0x2904, (q15_t)0x7129, (q15_t)0x28fb, (q15_t)0x7131, (q15_t)0x28f1, (q15_t)0x7139, (q15_t)0x28e7, (q15_t)0x7141, (q15_t)0x28de, (q15_t)0x7149, (q15_t)0x28d4, (q15_t)0x7151, (q15_t)0x28ca, (q15_t)0x7159, (q15_t)0x28c1, (q15_t)0x7161, (q15_t)0x28b7, (q15_t)0x7169, (q15_t)0x28ad, (q15_t)0x7171, (q15_t)0x28a4, (q15_t)0x7179, (q15_t)0x289a, (q15_t)0x7181, (q15_t)0x2890, (q15_t)0x7189, (q15_t)0x2886, (q15_t)0x7191, (q15_t)0x287d, (q15_t)0x7199, (q15_t)0x2873, (q15_t)0x71a1, (q15_t)0x2869, (q15_t)0x71a9, (q15_t)0x2860, (q15_t)0x71b1, (q15_t)0x2856, (q15_t)0x71b9, (q15_t)0x284c, (q15_t)0x71c0, (q15_t)0x2842, (q15_t)0x71c8, (q15_t)0x2838, (q15_t)0x71d0, (q15_t)0x282f, (q15_t)0x71d8, (q15_t)0x2825, (q15_t)0x71e0, (q15_t)0x281b, (q15_t)0x71e8, (q15_t)0x2811, (q15_t)0x71f0, (q15_t)0x2808, (q15_t)0x71f8, (q15_t)0x27fe, (q15_t)0x71ff, (q15_t)0x27f4, (q15_t)0x7207, (q15_t)0x27ea, (q15_t)0x720f, (q15_t)0x27e0, (q15_t)0x7217, (q15_t)0x27d6, (q15_t)0x721f, (q15_t)0x27cd, (q15_t)0x7227, (q15_t)0x27c3, (q15_t)0x722e, (q15_t)0x27b9, (q15_t)0x7236, (q15_t)0x27af, (q15_t)0x723e, (q15_t)0x27a5, (q15_t)0x7246, (q15_t)0x279b, (q15_t)0x724e, (q15_t)0x2791, (q15_t)0x7255, (q15_t)0x2788, (q15_t)0x725d, (q15_t)0x277e, (q15_t)0x7265, (q15_t)0x2774, (q15_t)0x726d, (q15_t)0x276a, (q15_t)0x7274, (q15_t)0x2760, (q15_t)0x727c, (q15_t)0x2756, (q15_t)0x7284, (q15_t)0x274c, (q15_t)0x728b, (q15_t)0x2742, (q15_t)0x7293, (q15_t)0x2738, (q15_t)0x729b, (q15_t)0x272e, (q15_t)0x72a3, (q15_t)0x2724, (q15_t)0x72aa, (q15_t)0x271a, (q15_t)0x72b2, (q15_t)0x2711, (q15_t)0x72ba, (q15_t)0x2707, (q15_t)0x72c1, (q15_t)0x26fd, (q15_t)0x72c9, (q15_t)0x26f3, (q15_t)0x72d0, (q15_t)0x26e9, (q15_t)0x72d8, (q15_t)0x26df, (q15_t)0x72e0, (q15_t)0x26d5, (q15_t)0x72e7, (q15_t)0x26cb, (q15_t)0x72ef, (q15_t)0x26c1, (q15_t)0x72f7, (q15_t)0x26b7, (q15_t)0x72fe, (q15_t)0x26ad, (q15_t)0x7306, (q15_t)0x26a3, (q15_t)0x730d, (q15_t)0x2699, (q15_t)0x7315, (q15_t)0x268f, (q15_t)0x731d, (q15_t)0x2685, (q15_t)0x7324, (q15_t)0x267b, (q15_t)0x732c, (q15_t)0x2671, (q15_t)0x7333, (q15_t)0x2666, (q15_t)0x733b, (q15_t)0x265c, (q15_t)0x7342, (q15_t)0x2652, (q15_t)0x734a, (q15_t)0x2648, (q15_t)0x7351, (q15_t)0x263e, (q15_t)0x7359, (q15_t)0x2634, (q15_t)0x7360, (q15_t)0x262a, (q15_t)0x7368, (q15_t)0x2620, (q15_t)0x736f, (q15_t)0x2616, (q15_t)0x7377, (q15_t)0x260c, (q15_t)0x737e, (q15_t)0x2602, (q15_t)0x7386, (q15_t)0x25f8, (q15_t)0x738d, (q15_t)0x25ed, (q15_t)0x7395, (q15_t)0x25e3, (q15_t)0x739c, (q15_t)0x25d9, (q15_t)0x73a3, (q15_t)0x25cf, (q15_t)0x73ab, (q15_t)0x25c5, (q15_t)0x73b2, (q15_t)0x25bb, (q15_t)0x73ba, (q15_t)0x25b1, (q15_t)0x73c1, (q15_t)0x25a6, (q15_t)0x73c8, (q15_t)0x259c, (q15_t)0x73d0, (q15_t)0x2592, (q15_t)0x73d7, (q15_t)0x2588, (q15_t)0x73df, (q15_t)0x257e, (q15_t)0x73e6, (q15_t)0x2574, (q15_t)0x73ed, (q15_t)0x2569, (q15_t)0x73f5, (q15_t)0x255f, (q15_t)0x73fc, (q15_t)0x2555, (q15_t)0x7403, (q15_t)0x254b, (q15_t)0x740b, (q15_t)0x2541, (q15_t)0x7412, (q15_t)0x2536, (q15_t)0x7419, (q15_t)0x252c, (q15_t)0x7420, (q15_t)0x2522, (q15_t)0x7428, (q15_t)0x2518, (q15_t)0x742f, (q15_t)0x250d, (q15_t)0x7436, (q15_t)0x2503, (q15_t)0x743e, (q15_t)0x24f9, (q15_t)0x7445, (q15_t)0x24ef, (q15_t)0x744c, (q15_t)0x24e4, (q15_t)0x7453, (q15_t)0x24da, (q15_t)0x745b, (q15_t)0x24d0, (q15_t)0x7462, (q15_t)0x24c5, (q15_t)0x7469, (q15_t)0x24bb, (q15_t)0x7470, (q15_t)0x24b1, (q15_t)0x7477, (q15_t)0x24a7, (q15_t)0x747f, (q15_t)0x249c, (q15_t)0x7486, (q15_t)0x2492, (q15_t)0x748d, (q15_t)0x2488, (q15_t)0x7494, (q15_t)0x247d, (q15_t)0x749b, (q15_t)0x2473, (q15_t)0x74a2, (q15_t)0x2469, (q15_t)0x74aa, (q15_t)0x245e, (q15_t)0x74b1, (q15_t)0x2454, (q15_t)0x74b8, (q15_t)0x244a, (q15_t)0x74bf, (q15_t)0x243f, (q15_t)0x74c6, (q15_t)0x2435, (q15_t)0x74cd, (q15_t)0x242b, (q15_t)0x74d4, (q15_t)0x2420, (q15_t)0x74db, (q15_t)0x2416, (q15_t)0x74e2, (q15_t)0x240b, (q15_t)0x74ea, (q15_t)0x2401, (q15_t)0x74f1, (q15_t)0x23f7, (q15_t)0x74f8, (q15_t)0x23ec, (q15_t)0x74ff, (q15_t)0x23e2, (q15_t)0x7506, (q15_t)0x23d7, (q15_t)0x750d, (q15_t)0x23cd, (q15_t)0x7514, (q15_t)0x23c3, (q15_t)0x751b, (q15_t)0x23b8, (q15_t)0x7522, (q15_t)0x23ae, (q15_t)0x7529, (q15_t)0x23a3, (q15_t)0x7530, (q15_t)0x2399, (q15_t)0x7537, (q15_t)0x238e, (q15_t)0x753e, (q15_t)0x2384, (q15_t)0x7545, (q15_t)0x237a, (q15_t)0x754c, (q15_t)0x236f, (q15_t)0x7553, (q15_t)0x2365, (q15_t)0x755a, (q15_t)0x235a, (q15_t)0x7561, (q15_t)0x2350, (q15_t)0x7567, (q15_t)0x2345, (q15_t)0x756e, (q15_t)0x233b, (q15_t)0x7575, (q15_t)0x2330, (q15_t)0x757c, (q15_t)0x2326, (q15_t)0x7583, (q15_t)0x231b, (q15_t)0x758a, (q15_t)0x2311, (q15_t)0x7591, (q15_t)0x2306, (q15_t)0x7598, (q15_t)0x22fc, (q15_t)0x759f, (q15_t)0x22f1, (q15_t)0x75a5, (q15_t)0x22e7, (q15_t)0x75ac, (q15_t)0x22dc, (q15_t)0x75b3, (q15_t)0x22d2, (q15_t)0x75ba, (q15_t)0x22c7, (q15_t)0x75c1, (q15_t)0x22bc, (q15_t)0x75c8, (q15_t)0x22b2, (q15_t)0x75ce, (q15_t)0x22a7, (q15_t)0x75d5, (q15_t)0x229d, (q15_t)0x75dc, (q15_t)0x2292, (q15_t)0x75e3, (q15_t)0x2288, (q15_t)0x75ea, (q15_t)0x227d, (q15_t)0x75f0, (q15_t)0x2272, (q15_t)0x75f7, (q15_t)0x2268, (q15_t)0x75fe, (q15_t)0x225d, (q15_t)0x7605, (q15_t)0x2253, (q15_t)0x760b, (q15_t)0x2248, (q15_t)0x7612, (q15_t)0x223d, (q15_t)0x7619, (q15_t)0x2233, (q15_t)0x7620, (q15_t)0x2228, (q15_t)0x7626, (q15_t)0x221e, (q15_t)0x762d, (q15_t)0x2213, (q15_t)0x7634, (q15_t)0x2208, (q15_t)0x763a, (q15_t)0x21fe, (q15_t)0x7641, (q15_t)0x21f3, (q15_t)0x7648, (q15_t)0x21e8, (q15_t)0x764e, (q15_t)0x21de, (q15_t)0x7655, (q15_t)0x21d3, (q15_t)0x765c, (q15_t)0x21c8, (q15_t)0x7662, (q15_t)0x21be, (q15_t)0x7669, (q15_t)0x21b3, (q15_t)0x766f, (q15_t)0x21a8, (q15_t)0x7676, (q15_t)0x219e, (q15_t)0x767d, (q15_t)0x2193, (q15_t)0x7683, (q15_t)0x2188, (q15_t)0x768a, (q15_t)0x217d, (q15_t)0x7690, (q15_t)0x2173, (q15_t)0x7697, (q15_t)0x2168, (q15_t)0x769d, (q15_t)0x215d, (q15_t)0x76a4, (q15_t)0x2153, (q15_t)0x76ab, (q15_t)0x2148, (q15_t)0x76b1, (q15_t)0x213d, (q15_t)0x76b8, (q15_t)0x2132, (q15_t)0x76be, (q15_t)0x2128, (q15_t)0x76c5, (q15_t)0x211d, (q15_t)0x76cb, (q15_t)0x2112, (q15_t)0x76d2, (q15_t)0x2107, (q15_t)0x76d8, (q15_t)0x20fd, (q15_t)0x76df, (q15_t)0x20f2, (q15_t)0x76e5, (q15_t)0x20e7, (q15_t)0x76eb, (q15_t)0x20dc, (q15_t)0x76f2, (q15_t)0x20d1, (q15_t)0x76f8, (q15_t)0x20c7, (q15_t)0x76ff, (q15_t)0x20bc, (q15_t)0x7705, (q15_t)0x20b1, (q15_t)0x770c, (q15_t)0x20a6, (q15_t)0x7712, (q15_t)0x209b, (q15_t)0x7718, (q15_t)0x2091, (q15_t)0x771f, (q15_t)0x2086, (q15_t)0x7725, (q15_t)0x207b, (q15_t)0x772c, (q15_t)0x2070, (q15_t)0x7732, (q15_t)0x2065, (q15_t)0x7738, (q15_t)0x205b, (q15_t)0x773f, (q15_t)0x2050, (q15_t)0x7745, (q15_t)0x2045, (q15_t)0x774b, (q15_t)0x203a, (q15_t)0x7752, (q15_t)0x202f, (q15_t)0x7758, (q15_t)0x2024, (q15_t)0x775e, (q15_t)0x2019, (q15_t)0x7765, (q15_t)0x200f, (q15_t)0x776b, (q15_t)0x2004, (q15_t)0x7771, (q15_t)0x1ff9, (q15_t)0x7777, (q15_t)0x1fee, (q15_t)0x777e, (q15_t)0x1fe3, (q15_t)0x7784, (q15_t)0x1fd8, (q15_t)0x778a, (q15_t)0x1fcd, (q15_t)0x7790, (q15_t)0x1fc2, (q15_t)0x7797, (q15_t)0x1fb7, (q15_t)0x779d, (q15_t)0x1fac, (q15_t)0x77a3, (q15_t)0x1fa2, (q15_t)0x77a9, (q15_t)0x1f97, (q15_t)0x77b0, (q15_t)0x1f8c, (q15_t)0x77b6, (q15_t)0x1f81, (q15_t)0x77bc, (q15_t)0x1f76, (q15_t)0x77c2, (q15_t)0x1f6b, (q15_t)0x77c8, (q15_t)0x1f60, (q15_t)0x77ce, (q15_t)0x1f55, (q15_t)0x77d5, (q15_t)0x1f4a, (q15_t)0x77db, (q15_t)0x1f3f, (q15_t)0x77e1, (q15_t)0x1f34, (q15_t)0x77e7, (q15_t)0x1f29, (q15_t)0x77ed, (q15_t)0x1f1e, (q15_t)0x77f3, (q15_t)0x1f13, (q15_t)0x77f9, (q15_t)0x1f08, (q15_t)0x77ff, (q15_t)0x1efd, (q15_t)0x7805, (q15_t)0x1ef2, (q15_t)0x780b, (q15_t)0x1ee7, (q15_t)0x7812, (q15_t)0x1edc, (q15_t)0x7818, (q15_t)0x1ed1, (q15_t)0x781e, (q15_t)0x1ec6, (q15_t)0x7824, (q15_t)0x1ebb, (q15_t)0x782a, (q15_t)0x1eb0, (q15_t)0x7830, (q15_t)0x1ea5, (q15_t)0x7836, (q15_t)0x1e9a, (q15_t)0x783c, (q15_t)0x1e8f, (q15_t)0x7842, (q15_t)0x1e84, (q15_t)0x7848, (q15_t)0x1e79, (q15_t)0x784e, (q15_t)0x1e6e, (q15_t)0x7854, (q15_t)0x1e63, (q15_t)0x785a, (q15_t)0x1e58, (q15_t)0x7860, (q15_t)0x1e4d, (q15_t)0x7866, (q15_t)0x1e42, (q15_t)0x786b, (q15_t)0x1e36, (q15_t)0x7871, (q15_t)0x1e2b, (q15_t)0x7877, (q15_t)0x1e20, (q15_t)0x787d, (q15_t)0x1e15, (q15_t)0x7883, (q15_t)0x1e0a, (q15_t)0x7889, (q15_t)0x1dff, (q15_t)0x788f, (q15_t)0x1df4, (q15_t)0x7895, (q15_t)0x1de9, (q15_t)0x789b, (q15_t)0x1dde, (q15_t)0x78a1, (q15_t)0x1dd3, (q15_t)0x78a6, (q15_t)0x1dc7, (q15_t)0x78ac, (q15_t)0x1dbc, (q15_t)0x78b2, (q15_t)0x1db1, (q15_t)0x78b8, (q15_t)0x1da6, (q15_t)0x78be, (q15_t)0x1d9b, (q15_t)0x78c3, (q15_t)0x1d90, (q15_t)0x78c9, (q15_t)0x1d85, (q15_t)0x78cf, (q15_t)0x1d79, (q15_t)0x78d5, (q15_t)0x1d6e, (q15_t)0x78db, (q15_t)0x1d63, (q15_t)0x78e0, (q15_t)0x1d58, (q15_t)0x78e6, (q15_t)0x1d4d, (q15_t)0x78ec, (q15_t)0x1d42, (q15_t)0x78f2, (q15_t)0x1d36, (q15_t)0x78f7, (q15_t)0x1d2b, (q15_t)0x78fd, (q15_t)0x1d20, (q15_t)0x7903, (q15_t)0x1d15, (q15_t)0x7909, (q15_t)0x1d0a, (q15_t)0x790e, (q15_t)0x1cff, (q15_t)0x7914, (q15_t)0x1cf3, (q15_t)0x791a, (q15_t)0x1ce8, (q15_t)0x791f, (q15_t)0x1cdd, (q15_t)0x7925, (q15_t)0x1cd2, (q15_t)0x792b, (q15_t)0x1cc6, (q15_t)0x7930, (q15_t)0x1cbb, (q15_t)0x7936, (q15_t)0x1cb0, (q15_t)0x793b, (q15_t)0x1ca5, (q15_t)0x7941, (q15_t)0x1c99, (q15_t)0x7947, (q15_t)0x1c8e, (q15_t)0x794c, (q15_t)0x1c83, (q15_t)0x7952, (q15_t)0x1c78, (q15_t)0x7958, (q15_t)0x1c6c, (q15_t)0x795d, (q15_t)0x1c61, (q15_t)0x7963, (q15_t)0x1c56, (q15_t)0x7968, (q15_t)0x1c4b, (q15_t)0x796e, (q15_t)0x1c3f, (q15_t)0x7973, (q15_t)0x1c34, (q15_t)0x7979, (q15_t)0x1c29, (q15_t)0x797e, (q15_t)0x1c1e, (q15_t)0x7984, (q15_t)0x1c12, (q15_t)0x7989, (q15_t)0x1c07, (q15_t)0x798f, (q15_t)0x1bfc, (q15_t)0x7994, (q15_t)0x1bf0, (q15_t)0x799a, (q15_t)0x1be5, (q15_t)0x799f, (q15_t)0x1bda, (q15_t)0x79a5, (q15_t)0x1bce, (q15_t)0x79aa, (q15_t)0x1bc3, (q15_t)0x79b0, (q15_t)0x1bb8, (q15_t)0x79b5, (q15_t)0x1bac, (q15_t)0x79bb, (q15_t)0x1ba1, (q15_t)0x79c0, (q15_t)0x1b96, (q15_t)0x79c5, (q15_t)0x1b8a, (q15_t)0x79cb, (q15_t)0x1b7f, (q15_t)0x79d0, (q15_t)0x1b74, (q15_t)0x79d6, (q15_t)0x1b68, (q15_t)0x79db, (q15_t)0x1b5d, (q15_t)0x79e0, (q15_t)0x1b52, (q15_t)0x79e6, (q15_t)0x1b46, (q15_t)0x79eb, (q15_t)0x1b3b, (q15_t)0x79f0, (q15_t)0x1b30, (q15_t)0x79f6, (q15_t)0x1b24, (q15_t)0x79fb, (q15_t)0x1b19, (q15_t)0x7a00, (q15_t)0x1b0d, (q15_t)0x7a06, (q15_t)0x1b02, (q15_t)0x7a0b, (q15_t)0x1af7, (q15_t)0x7a10, (q15_t)0x1aeb, (q15_t)0x7a16, (q15_t)0x1ae0, (q15_t)0x7a1b, (q15_t)0x1ad4, (q15_t)0x7a20, (q15_t)0x1ac9, (q15_t)0x7a25, (q15_t)0x1abe, (q15_t)0x7a2b, (q15_t)0x1ab2, (q15_t)0x7a30, (q15_t)0x1aa7, (q15_t)0x7a35, (q15_t)0x1a9b, (q15_t)0x7a3a, (q15_t)0x1a90, (q15_t)0x7a3f, (q15_t)0x1a84, (q15_t)0x7a45, (q15_t)0x1a79, (q15_t)0x7a4a, (q15_t)0x1a6e, (q15_t)0x7a4f, (q15_t)0x1a62, (q15_t)0x7a54, (q15_t)0x1a57, (q15_t)0x7a59, (q15_t)0x1a4b, (q15_t)0x7a5f, (q15_t)0x1a40, (q15_t)0x7a64, (q15_t)0x1a34, (q15_t)0x7a69, (q15_t)0x1a29, (q15_t)0x7a6e, (q15_t)0x1a1d, (q15_t)0x7a73, (q15_t)0x1a12, (q15_t)0x7a78, (q15_t)0x1a06, (q15_t)0x7a7d, (q15_t)0x19fb, (q15_t)0x7a82, (q15_t)0x19ef, (q15_t)0x7a88, (q15_t)0x19e4, (q15_t)0x7a8d, (q15_t)0x19d8, (q15_t)0x7a92, (q15_t)0x19cd, (q15_t)0x7a97, (q15_t)0x19c1, (q15_t)0x7a9c, (q15_t)0x19b6, (q15_t)0x7aa1, (q15_t)0x19aa, (q15_t)0x7aa6, (q15_t)0x199f, (q15_t)0x7aab, (q15_t)0x1993, (q15_t)0x7ab0, (q15_t)0x1988, (q15_t)0x7ab5, (q15_t)0x197c, (q15_t)0x7aba, (q15_t)0x1971, (q15_t)0x7abf, (q15_t)0x1965, (q15_t)0x7ac4, (q15_t)0x195a, (q15_t)0x7ac9, (q15_t)0x194e, (q15_t)0x7ace, (q15_t)0x1943, (q15_t)0x7ad3, (q15_t)0x1937, (q15_t)0x7ad8, (q15_t)0x192c, (q15_t)0x7add, (q15_t)0x1920, (q15_t)0x7ae2, (q15_t)0x1914, (q15_t)0x7ae6, (q15_t)0x1909, (q15_t)0x7aeb, (q15_t)0x18fd, (q15_t)0x7af0, (q15_t)0x18f2, (q15_t)0x7af5, (q15_t)0x18e6, (q15_t)0x7afa, (q15_t)0x18db, (q15_t)0x7aff, (q15_t)0x18cf, (q15_t)0x7b04, (q15_t)0x18c3, (q15_t)0x7b09, (q15_t)0x18b8, (q15_t)0x7b0e, (q15_t)0x18ac, (q15_t)0x7b12, (q15_t)0x18a1, (q15_t)0x7b17, (q15_t)0x1895, (q15_t)0x7b1c, (q15_t)0x1889, (q15_t)0x7b21, (q15_t)0x187e, (q15_t)0x7b26, (q15_t)0x1872, (q15_t)0x7b2a, (q15_t)0x1867, (q15_t)0x7b2f, (q15_t)0x185b, (q15_t)0x7b34, (q15_t)0x184f, (q15_t)0x7b39, (q15_t)0x1844, (q15_t)0x7b3e, (q15_t)0x1838, (q15_t)0x7b42, (q15_t)0x182d, (q15_t)0x7b47, (q15_t)0x1821, (q15_t)0x7b4c, (q15_t)0x1815, (q15_t)0x7b50, (q15_t)0x180a, (q15_t)0x7b55, (q15_t)0x17fe, (q15_t)0x7b5a, (q15_t)0x17f2, (q15_t)0x7b5f, (q15_t)0x17e7, (q15_t)0x7b63, (q15_t)0x17db, (q15_t)0x7b68, (q15_t)0x17cf, (q15_t)0x7b6d, (q15_t)0x17c4, (q15_t)0x7b71, (q15_t)0x17b8, (q15_t)0x7b76, (q15_t)0x17ac, (q15_t)0x7b7b, (q15_t)0x17a1, (q15_t)0x7b7f, (q15_t)0x1795, (q15_t)0x7b84, (q15_t)0x1789, (q15_t)0x7b88, (q15_t)0x177e, (q15_t)0x7b8d, (q15_t)0x1772, (q15_t)0x7b92, (q15_t)0x1766, (q15_t)0x7b96, (q15_t)0x175b, (q15_t)0x7b9b, (q15_t)0x174f, (q15_t)0x7b9f, (q15_t)0x1743, (q15_t)0x7ba4, (q15_t)0x1737, (q15_t)0x7ba9, (q15_t)0x172c, (q15_t)0x7bad, (q15_t)0x1720, (q15_t)0x7bb2, (q15_t)0x1714, (q15_t)0x7bb6, (q15_t)0x1709, (q15_t)0x7bbb, (q15_t)0x16fd, (q15_t)0x7bbf, (q15_t)0x16f1, (q15_t)0x7bc4, (q15_t)0x16e5, (q15_t)0x7bc8, (q15_t)0x16da, (q15_t)0x7bcd, (q15_t)0x16ce, (q15_t)0x7bd1, (q15_t)0x16c2, (q15_t)0x7bd6, (q15_t)0x16b6, (q15_t)0x7bda, (q15_t)0x16ab, (q15_t)0x7bde, (q15_t)0x169f, (q15_t)0x7be3, (q15_t)0x1693, (q15_t)0x7be7, (q15_t)0x1687, (q15_t)0x7bec, (q15_t)0x167c, (q15_t)0x7bf0, (q15_t)0x1670, (q15_t)0x7bf5, (q15_t)0x1664, (q15_t)0x7bf9, (q15_t)0x1658, (q15_t)0x7bfd, (q15_t)0x164c, (q15_t)0x7c02, (q15_t)0x1641, (q15_t)0x7c06, (q15_t)0x1635, (q15_t)0x7c0a, (q15_t)0x1629, (q15_t)0x7c0f, (q15_t)0x161d, (q15_t)0x7c13, (q15_t)0x1612, (q15_t)0x7c17, (q15_t)0x1606, (q15_t)0x7c1c, (q15_t)0x15fa, (q15_t)0x7c20, (q15_t)0x15ee, (q15_t)0x7c24, (q15_t)0x15e2, (q15_t)0x7c29, (q15_t)0x15d7, (q15_t)0x7c2d, (q15_t)0x15cb, (q15_t)0x7c31, (q15_t)0x15bf, (q15_t)0x7c36, (q15_t)0x15b3, (q15_t)0x7c3a, (q15_t)0x15a7, (q15_t)0x7c3e, (q15_t)0x159b, (q15_t)0x7c42, (q15_t)0x1590, (q15_t)0x7c46, (q15_t)0x1584, (q15_t)0x7c4b, (q15_t)0x1578, (q15_t)0x7c4f, (q15_t)0x156c, (q15_t)0x7c53, (q15_t)0x1560, (q15_t)0x7c57, (q15_t)0x1554, (q15_t)0x7c5b, (q15_t)0x1549, (q15_t)0x7c60, (q15_t)0x153d, (q15_t)0x7c64, (q15_t)0x1531, (q15_t)0x7c68, (q15_t)0x1525, (q15_t)0x7c6c, (q15_t)0x1519, (q15_t)0x7c70, (q15_t)0x150d, (q15_t)0x7c74, (q15_t)0x1501, (q15_t)0x7c79, (q15_t)0x14f6, (q15_t)0x7c7d, (q15_t)0x14ea, (q15_t)0x7c81, (q15_t)0x14de, (q15_t)0x7c85, (q15_t)0x14d2, (q15_t)0x7c89, (q15_t)0x14c6, (q15_t)0x7c8d, (q15_t)0x14ba, (q15_t)0x7c91, (q15_t)0x14ae, (q15_t)0x7c95, (q15_t)0x14a2, (q15_t)0x7c99, (q15_t)0x1496, (q15_t)0x7c9d, (q15_t)0x148b, (q15_t)0x7ca1, (q15_t)0x147f, (q15_t)0x7ca5, (q15_t)0x1473, (q15_t)0x7ca9, (q15_t)0x1467, (q15_t)0x7cad, (q15_t)0x145b, (q15_t)0x7cb1, (q15_t)0x144f, (q15_t)0x7cb5, (q15_t)0x1443, (q15_t)0x7cb9, (q15_t)0x1437, (q15_t)0x7cbd, (q15_t)0x142b, (q15_t)0x7cc1, (q15_t)0x141f, (q15_t)0x7cc5, (q15_t)0x1413, (q15_t)0x7cc9, (q15_t)0x1407, (q15_t)0x7ccd, (q15_t)0x13fb, (q15_t)0x7cd1, (q15_t)0x13f0, (q15_t)0x7cd5, (q15_t)0x13e4, (q15_t)0x7cd9, (q15_t)0x13d8, (q15_t)0x7cdd, (q15_t)0x13cc, (q15_t)0x7ce0, (q15_t)0x13c0, (q15_t)0x7ce4, (q15_t)0x13b4, (q15_t)0x7ce8, (q15_t)0x13a8, (q15_t)0x7cec, (q15_t)0x139c, (q15_t)0x7cf0, (q15_t)0x1390, (q15_t)0x7cf4, (q15_t)0x1384, (q15_t)0x7cf8, (q15_t)0x1378, (q15_t)0x7cfb, (q15_t)0x136c, (q15_t)0x7cff, (q15_t)0x1360, (q15_t)0x7d03, (q15_t)0x1354, (q15_t)0x7d07, (q15_t)0x1348, (q15_t)0x7d0b, (q15_t)0x133c, (q15_t)0x7d0e, (q15_t)0x1330, (q15_t)0x7d12, (q15_t)0x1324, (q15_t)0x7d16, (q15_t)0x1318, (q15_t)0x7d1a, (q15_t)0x130c, (q15_t)0x7d1d, (q15_t)0x1300, (q15_t)0x7d21, (q15_t)0x12f4, (q15_t)0x7d25, (q15_t)0x12e8, (q15_t)0x7d28, (q15_t)0x12dc, (q15_t)0x7d2c, (q15_t)0x12d0, (q15_t)0x7d30, (q15_t)0x12c4, (q15_t)0x7d34, (q15_t)0x12b8, (q15_t)0x7d37, (q15_t)0x12ac, (q15_t)0x7d3b, (q15_t)0x12a0, (q15_t)0x7d3f, (q15_t)0x1294, (q15_t)0x7d42, (q15_t)0x1288, (q15_t)0x7d46, (q15_t)0x127c, (q15_t)0x7d49, (q15_t)0x1270, (q15_t)0x7d4d, (q15_t)0x1264, (q15_t)0x7d51, (q15_t)0x1258, (q15_t)0x7d54, (q15_t)0x124c, (q15_t)0x7d58, (q15_t)0x1240, (q15_t)0x7d5b, (q15_t)0x1234, (q15_t)0x7d5f, (q15_t)0x1228, (q15_t)0x7d63, (q15_t)0x121c, (q15_t)0x7d66, (q15_t)0x1210, (q15_t)0x7d6a, (q15_t)0x1204, (q15_t)0x7d6d, (q15_t)0x11f7, (q15_t)0x7d71, (q15_t)0x11eb, (q15_t)0x7d74, (q15_t)0x11df, (q15_t)0x7d78, (q15_t)0x11d3, (q15_t)0x7d7b, (q15_t)0x11c7, (q15_t)0x7d7f, (q15_t)0x11bb, (q15_t)0x7d82, (q15_t)0x11af, (q15_t)0x7d86, (q15_t)0x11a3, (q15_t)0x7d89, (q15_t)0x1197, (q15_t)0x7d8d, (q15_t)0x118b, (q15_t)0x7d90, (q15_t)0x117f, (q15_t)0x7d93, (q15_t)0x1173, (q15_t)0x7d97, (q15_t)0x1167, (q15_t)0x7d9a, (q15_t)0x115a, (q15_t)0x7d9e, (q15_t)0x114e, (q15_t)0x7da1, (q15_t)0x1142, (q15_t)0x7da4, (q15_t)0x1136, (q15_t)0x7da8, (q15_t)0x112a, (q15_t)0x7dab, (q15_t)0x111e, (q15_t)0x7daf, (q15_t)0x1112, (q15_t)0x7db2, (q15_t)0x1106, (q15_t)0x7db5, (q15_t)0x10fa, (q15_t)0x7db9, (q15_t)0x10ed, (q15_t)0x7dbc, (q15_t)0x10e1, (q15_t)0x7dbf, (q15_t)0x10d5, (q15_t)0x7dc2, (q15_t)0x10c9, (q15_t)0x7dc6, (q15_t)0x10bd, (q15_t)0x7dc9, (q15_t)0x10b1, (q15_t)0x7dcc, (q15_t)0x10a5, (q15_t)0x7dd0, (q15_t)0x1099, (q15_t)0x7dd3, (q15_t)0x108c, (q15_t)0x7dd6, (q15_t)0x1080, (q15_t)0x7dd9, (q15_t)0x1074, (q15_t)0x7ddd, (q15_t)0x1068, (q15_t)0x7de0, (q15_t)0x105c, (q15_t)0x7de3, (q15_t)0x1050, (q15_t)0x7de6, (q15_t)0x1044, (q15_t)0x7de9, (q15_t)0x1037, (q15_t)0x7ded, (q15_t)0x102b, (q15_t)0x7df0, (q15_t)0x101f, (q15_t)0x7df3, (q15_t)0x1013, (q15_t)0x7df6, (q15_t)0x1007, (q15_t)0x7df9, (q15_t)0xffb, (q15_t)0x7dfc, (q15_t)0xfee, (q15_t)0x7dff, (q15_t)0xfe2, (q15_t)0x7e03, (q15_t)0xfd6, (q15_t)0x7e06, (q15_t)0xfca, (q15_t)0x7e09, (q15_t)0xfbe, (q15_t)0x7e0c, (q15_t)0xfb2, (q15_t)0x7e0f, (q15_t)0xfa5, (q15_t)0x7e12, (q15_t)0xf99, (q15_t)0x7e15, (q15_t)0xf8d, (q15_t)0x7e18, (q15_t)0xf81, (q15_t)0x7e1b, (q15_t)0xf75, (q15_t)0x7e1e, (q15_t)0xf68, (q15_t)0x7e21, (q15_t)0xf5c, (q15_t)0x7e24, (q15_t)0xf50, (q15_t)0x7e27, (q15_t)0xf44, (q15_t)0x7e2a, (q15_t)0xf38, (q15_t)0x7e2d, (q15_t)0xf2b, (q15_t)0x7e30, (q15_t)0xf1f, (q15_t)0x7e33, (q15_t)0xf13, (q15_t)0x7e36, (q15_t)0xf07, (q15_t)0x7e39, (q15_t)0xefb, (q15_t)0x7e3c, (q15_t)0xeee, (q15_t)0x7e3f, (q15_t)0xee2, (q15_t)0x7e42, (q15_t)0xed6, (q15_t)0x7e45, (q15_t)0xeca, (q15_t)0x7e48, (q15_t)0xebd, (q15_t)0x7e4a, (q15_t)0xeb1, (q15_t)0x7e4d, (q15_t)0xea5, (q15_t)0x7e50, (q15_t)0xe99, (q15_t)0x7e53, (q15_t)0xe8c, (q15_t)0x7e56, (q15_t)0xe80, (q15_t)0x7e59, (q15_t)0xe74, (q15_t)0x7e5c, (q15_t)0xe68, (q15_t)0x7e5e, (q15_t)0xe5c, (q15_t)0x7e61, (q15_t)0xe4f, (q15_t)0x7e64, (q15_t)0xe43, (q15_t)0x7e67, (q15_t)0xe37, (q15_t)0x7e6a, (q15_t)0xe2b, (q15_t)0x7e6c, (q15_t)0xe1e, (q15_t)0x7e6f, (q15_t)0xe12, (q15_t)0x7e72, (q15_t)0xe06, (q15_t)0x7e75, (q15_t)0xdf9, (q15_t)0x7e77, (q15_t)0xded, (q15_t)0x7e7a, (q15_t)0xde1, (q15_t)0x7e7d, (q15_t)0xdd5, (q15_t)0x7e80, (q15_t)0xdc8, (q15_t)0x7e82, (q15_t)0xdbc, (q15_t)0x7e85, (q15_t)0xdb0, (q15_t)0x7e88, (q15_t)0xda4, (q15_t)0x7e8a, (q15_t)0xd97, (q15_t)0x7e8d, (q15_t)0xd8b, (q15_t)0x7e90, (q15_t)0xd7f, (q15_t)0x7e92, (q15_t)0xd72, (q15_t)0x7e95, (q15_t)0xd66, (q15_t)0x7e98, (q15_t)0xd5a, (q15_t)0x7e9a, (q15_t)0xd4e, (q15_t)0x7e9d, (q15_t)0xd41, (q15_t)0x7e9f, (q15_t)0xd35, (q15_t)0x7ea2, (q15_t)0xd29, (q15_t)0x7ea5, (q15_t)0xd1c, (q15_t)0x7ea7, (q15_t)0xd10, (q15_t)0x7eaa, (q15_t)0xd04, (q15_t)0x7eac, (q15_t)0xcf8, (q15_t)0x7eaf, (q15_t)0xceb, (q15_t)0x7eb1, (q15_t)0xcdf, (q15_t)0x7eb4, (q15_t)0xcd3, (q15_t)0x7eb6, (q15_t)0xcc6, (q15_t)0x7eb9, (q15_t)0xcba, (q15_t)0x7ebb, (q15_t)0xcae, (q15_t)0x7ebe, (q15_t)0xca1, (q15_t)0x7ec0, (q15_t)0xc95, (q15_t)0x7ec3, (q15_t)0xc89, (q15_t)0x7ec5, (q15_t)0xc7c, (q15_t)0x7ec8, (q15_t)0xc70, (q15_t)0x7eca, (q15_t)0xc64, (q15_t)0x7ecc, (q15_t)0xc57, (q15_t)0x7ecf, (q15_t)0xc4b, (q15_t)0x7ed1, (q15_t)0xc3f, (q15_t)0x7ed4, (q15_t)0xc32, (q15_t)0x7ed6, (q15_t)0xc26, (q15_t)0x7ed8, (q15_t)0xc1a, (q15_t)0x7edb, (q15_t)0xc0d, (q15_t)0x7edd, (q15_t)0xc01, (q15_t)0x7ee0, (q15_t)0xbf5, (q15_t)0x7ee2, (q15_t)0xbe8, (q15_t)0x7ee4, (q15_t)0xbdc, (q15_t)0x7ee7, (q15_t)0xbd0, (q15_t)0x7ee9, (q15_t)0xbc3, (q15_t)0x7eeb, (q15_t)0xbb7, (q15_t)0x7eed, (q15_t)0xbab, (q15_t)0x7ef0, (q15_t)0xb9e, (q15_t)0x7ef2, (q15_t)0xb92, (q15_t)0x7ef4, (q15_t)0xb85, (q15_t)0x7ef7, (q15_t)0xb79, (q15_t)0x7ef9, (q15_t)0xb6d, (q15_t)0x7efb, (q15_t)0xb60, (q15_t)0x7efd, (q15_t)0xb54, (q15_t)0x7f00, (q15_t)0xb48, (q15_t)0x7f02, (q15_t)0xb3b, (q15_t)0x7f04, (q15_t)0xb2f, (q15_t)0x7f06, (q15_t)0xb23, (q15_t)0x7f08, (q15_t)0xb16, (q15_t)0x7f0a, (q15_t)0xb0a, (q15_t)0x7f0d, (q15_t)0xafd, (q15_t)0x7f0f, (q15_t)0xaf1, (q15_t)0x7f11, (q15_t)0xae5, (q15_t)0x7f13, (q15_t)0xad8, (q15_t)0x7f15, (q15_t)0xacc, (q15_t)0x7f17, (q15_t)0xac0, (q15_t)0x7f19, (q15_t)0xab3, (q15_t)0x7f1c, (q15_t)0xaa7, (q15_t)0x7f1e, (q15_t)0xa9a, (q15_t)0x7f20, (q15_t)0xa8e, (q15_t)0x7f22, (q15_t)0xa82, (q15_t)0x7f24, (q15_t)0xa75, (q15_t)0x7f26, (q15_t)0xa69, (q15_t)0x7f28, (q15_t)0xa5c, (q15_t)0x7f2a, (q15_t)0xa50, (q15_t)0x7f2c, (q15_t)0xa44, (q15_t)0x7f2e, (q15_t)0xa37, (q15_t)0x7f30, (q15_t)0xa2b, (q15_t)0x7f32, (q15_t)0xa1e, (q15_t)0x7f34, (q15_t)0xa12, (q15_t)0x7f36, (q15_t)0xa06, (q15_t)0x7f38, (q15_t)0x9f9, (q15_t)0x7f3a, (q15_t)0x9ed, (q15_t)0x7f3c, (q15_t)0x9e0, (q15_t)0x7f3e, (q15_t)0x9d4, (q15_t)0x7f40, (q15_t)0x9c7, (q15_t)0x7f42, (q15_t)0x9bb, (q15_t)0x7f43, (q15_t)0x9af, (q15_t)0x7f45, (q15_t)0x9a2, (q15_t)0x7f47, (q15_t)0x996, (q15_t)0x7f49, (q15_t)0x989, (q15_t)0x7f4b, (q15_t)0x97d, (q15_t)0x7f4d, (q15_t)0x970, (q15_t)0x7f4f, (q15_t)0x964, (q15_t)0x7f51, (q15_t)0x958, (q15_t)0x7f52, (q15_t)0x94b, (q15_t)0x7f54, (q15_t)0x93f, (q15_t)0x7f56, (q15_t)0x932, (q15_t)0x7f58, (q15_t)0x926, (q15_t)0x7f5a, (q15_t)0x919, (q15_t)0x7f5b, (q15_t)0x90d, (q15_t)0x7f5d, (q15_t)0x901, (q15_t)0x7f5f, (q15_t)0x8f4, (q15_t)0x7f61, (q15_t)0x8e8, (q15_t)0x7f62, (q15_t)0x8db, (q15_t)0x7f64, (q15_t)0x8cf, (q15_t)0x7f66, (q15_t)0x8c2, (q15_t)0x7f68, (q15_t)0x8b6, (q15_t)0x7f69, (q15_t)0x8a9, (q15_t)0x7f6b, (q15_t)0x89d, (q15_t)0x7f6d, (q15_t)0x891, (q15_t)0x7f6e, (q15_t)0x884, (q15_t)0x7f70, (q15_t)0x878, (q15_t)0x7f72, (q15_t)0x86b, (q15_t)0x7f73, (q15_t)0x85f, (q15_t)0x7f75, (q15_t)0x852, (q15_t)0x7f77, (q15_t)0x846, (q15_t)0x7f78, (q15_t)0x839, (q15_t)0x7f7a, (q15_t)0x82d, (q15_t)0x7f7b, (q15_t)0x820, (q15_t)0x7f7d, (q15_t)0x814, (q15_t)0x7f7f, (q15_t)0x807, (q15_t)0x7f80, (q15_t)0x7fb, (q15_t)0x7f82, (q15_t)0x7ef, (q15_t)0x7f83, (q15_t)0x7e2, (q15_t)0x7f85, (q15_t)0x7d6, (q15_t)0x7f86, (q15_t)0x7c9, (q15_t)0x7f88, (q15_t)0x7bd, (q15_t)0x7f89, (q15_t)0x7b0, (q15_t)0x7f8b, (q15_t)0x7a4, (q15_t)0x7f8c, (q15_t)0x797, (q15_t)0x7f8e, (q15_t)0x78b, (q15_t)0x7f8f, (q15_t)0x77e, (q15_t)0x7f91, (q15_t)0x772, (q15_t)0x7f92, (q15_t)0x765, (q15_t)0x7f94, (q15_t)0x759, (q15_t)0x7f95, (q15_t)0x74c, (q15_t)0x7f97, (q15_t)0x740, (q15_t)0x7f98, (q15_t)0x733, (q15_t)0x7f99, (q15_t)0x727, (q15_t)0x7f9b, (q15_t)0x71a, (q15_t)0x7f9c, (q15_t)0x70e, (q15_t)0x7f9e, (q15_t)0x701, (q15_t)0x7f9f, (q15_t)0x6f5, (q15_t)0x7fa0, (q15_t)0x6e8, (q15_t)0x7fa2, (q15_t)0x6dc, (q15_t)0x7fa3, (q15_t)0x6cf, (q15_t)0x7fa4, (q15_t)0x6c3, (q15_t)0x7fa6, (q15_t)0x6b6, (q15_t)0x7fa7, (q15_t)0x6aa, (q15_t)0x7fa8, (q15_t)0x69d, (q15_t)0x7faa, (q15_t)0x691, (q15_t)0x7fab, (q15_t)0x684, (q15_t)0x7fac, (q15_t)0x678, (q15_t)0x7fad, (q15_t)0x66b, (q15_t)0x7faf, (q15_t)0x65f, (q15_t)0x7fb0, (q15_t)0x652, (q15_t)0x7fb1, (q15_t)0x646, (q15_t)0x7fb2, (q15_t)0x639, (q15_t)0x7fb4, (q15_t)0x62d, (q15_t)0x7fb5, (q15_t)0x620, (q15_t)0x7fb6, (q15_t)0x614, (q15_t)0x7fb7, (q15_t)0x607, (q15_t)0x7fb8, (q15_t)0x5fb, (q15_t)0x7fb9, (q15_t)0x5ee, (q15_t)0x7fbb, (q15_t)0x5e2, (q15_t)0x7fbc, (q15_t)0x5d5, (q15_t)0x7fbd, (q15_t)0x5c9, (q15_t)0x7fbe, (q15_t)0x5bc, (q15_t)0x7fbf, (q15_t)0x5b0, (q15_t)0x7fc0, (q15_t)0x5a3, (q15_t)0x7fc1, (q15_t)0x597, (q15_t)0x7fc3, (q15_t)0x58a, (q15_t)0x7fc4, (q15_t)0x57e, (q15_t)0x7fc5, (q15_t)0x571, (q15_t)0x7fc6, (q15_t)0x565, (q15_t)0x7fc7, (q15_t)0x558, (q15_t)0x7fc8, (q15_t)0x54c, (q15_t)0x7fc9, (q15_t)0x53f, (q15_t)0x7fca, (q15_t)0x533, (q15_t)0x7fcb, (q15_t)0x526, (q15_t)0x7fcc, (q15_t)0x51a, (q15_t)0x7fcd, (q15_t)0x50d, (q15_t)0x7fce, (q15_t)0x500, (q15_t)0x7fcf, (q15_t)0x4f4, (q15_t)0x7fd0, (q15_t)0x4e7, (q15_t)0x7fd1, (q15_t)0x4db, (q15_t)0x7fd2, (q15_t)0x4ce, (q15_t)0x7fd3, (q15_t)0x4c2, (q15_t)0x7fd4, (q15_t)0x4b5, (q15_t)0x7fd5, (q15_t)0x4a9, (q15_t)0x7fd5, (q15_t)0x49c, (q15_t)0x7fd6, (q15_t)0x490, (q15_t)0x7fd7, (q15_t)0x483, (q15_t)0x7fd8, (q15_t)0x477, (q15_t)0x7fd9, (q15_t)0x46a, (q15_t)0x7fda, (q15_t)0x45e, (q15_t)0x7fdb, (q15_t)0x451, (q15_t)0x7fdc, (q15_t)0x444, (q15_t)0x7fdc, (q15_t)0x438, (q15_t)0x7fdd, (q15_t)0x42b, (q15_t)0x7fde, (q15_t)0x41f, (q15_t)0x7fdf, (q15_t)0x412, (q15_t)0x7fe0, (q15_t)0x406, (q15_t)0x7fe0, (q15_t)0x3f9, (q15_t)0x7fe1, (q15_t)0x3ed, (q15_t)0x7fe2, (q15_t)0x3e0, (q15_t)0x7fe3, (q15_t)0x3d4, (q15_t)0x7fe3, (q15_t)0x3c7, (q15_t)0x7fe4, (q15_t)0x3bb, (q15_t)0x7fe5, (q15_t)0x3ae, (q15_t)0x7fe6, (q15_t)0x3a1, (q15_t)0x7fe6, (q15_t)0x395, (q15_t)0x7fe7, (q15_t)0x388, (q15_t)0x7fe8, (q15_t)0x37c, (q15_t)0x7fe8, (q15_t)0x36f, (q15_t)0x7fe9, (q15_t)0x363, (q15_t)0x7fea, (q15_t)0x356, (q15_t)0x7fea, (q15_t)0x34a, (q15_t)0x7feb, (q15_t)0x33d, (q15_t)0x7fec, (q15_t)0x330, (q15_t)0x7fec, (q15_t)0x324, (q15_t)0x7fed, (q15_t)0x317, (q15_t)0x7fed, (q15_t)0x30b, (q15_t)0x7fee, (q15_t)0x2fe, (q15_t)0x7fef, (q15_t)0x2f2, (q15_t)0x7fef, (q15_t)0x2e5, (q15_t)0x7ff0, (q15_t)0x2d9, (q15_t)0x7ff0, (q15_t)0x2cc, (q15_t)0x7ff1, (q15_t)0x2c0, (q15_t)0x7ff1, (q15_t)0x2b3, (q15_t)0x7ff2, (q15_t)0x2a6, (q15_t)0x7ff2, (q15_t)0x29a, (q15_t)0x7ff3, (q15_t)0x28d, (q15_t)0x7ff3, (q15_t)0x281, (q15_t)0x7ff4, (q15_t)0x274, (q15_t)0x7ff4, (q15_t)0x268, (q15_t)0x7ff5, (q15_t)0x25b, (q15_t)0x7ff5, (q15_t)0x24e, (q15_t)0x7ff6, (q15_t)0x242, (q15_t)0x7ff6, (q15_t)0x235, (q15_t)0x7ff7, (q15_t)0x229, (q15_t)0x7ff7, (q15_t)0x21c, (q15_t)0x7ff7, (q15_t)0x210, (q15_t)0x7ff8, (q15_t)0x203, (q15_t)0x7ff8, (q15_t)0x1f7, (q15_t)0x7ff9, (q15_t)0x1ea, (q15_t)0x7ff9, (q15_t)0x1dd, (q15_t)0x7ff9, (q15_t)0x1d1, (q15_t)0x7ffa, (q15_t)0x1c4, (q15_t)0x7ffa, (q15_t)0x1b8, (q15_t)0x7ffa, (q15_t)0x1ab, (q15_t)0x7ffb, (q15_t)0x19f, (q15_t)0x7ffb, (q15_t)0x192, (q15_t)0x7ffb, (q15_t)0x186, (q15_t)0x7ffc, (q15_t)0x179, (q15_t)0x7ffc, (q15_t)0x16c, (q15_t)0x7ffc, (q15_t)0x160, (q15_t)0x7ffc, (q15_t)0x153, (q15_t)0x7ffd, (q15_t)0x147, (q15_t)0x7ffd, (q15_t)0x13a, (q15_t)0x7ffd, (q15_t)0x12e, (q15_t)0x7ffd, (q15_t)0x121, (q15_t)0x7ffe, (q15_t)0x114, (q15_t)0x7ffe, (q15_t)0x108, (q15_t)0x7ffe, (q15_t)0xfb, (q15_t)0x7ffe, (q15_t)0xef, (q15_t)0x7ffe, (q15_t)0xe2, (q15_t)0x7fff, (q15_t)0xd6, (q15_t)0x7fff, (q15_t)0xc9, (q15_t)0x7fff, (q15_t)0xbc, (q15_t)0x7fff, (q15_t)0xb0, (q15_t)0x7fff, (q15_t)0xa3, (q15_t)0x7fff, (q15_t)0x97, (q15_t)0x7fff, (q15_t)0x8a, (q15_t)0x7fff, (q15_t)0x7e, (q15_t)0x7fff, (q15_t)0x71, (q15_t)0x7fff, (q15_t)0x65, (q15_t)0x7fff, (q15_t)0x58, (q15_t)0x7fff, (q15_t)0x4b, (q15_t)0x7fff, (q15_t)0x3f, (q15_t)0x7fff, (q15_t)0x32, (q15_t)0x7fff, (q15_t)0x26, (q15_t)0x7fff, (q15_t)0x19, (q15_t)0x7fff, (q15_t)0xd, (q15_t)0x7fff, (q15_t)0x0, (q15_t)0x7fff, (q15_t)0xfff3, (q15_t)0x7fff, (q15_t)0xffe7, (q15_t)0x7fff, (q15_t)0xffda, (q15_t)0x7fff, (q15_t)0xffce, (q15_t)0x7fff, (q15_t)0xffc1, (q15_t)0x7fff, (q15_t)0xffb5, (q15_t)0x7fff, (q15_t)0xffa8, (q15_t)0x7fff, (q15_t)0xff9b, (q15_t)0x7fff, (q15_t)0xff8f, (q15_t)0x7fff, (q15_t)0xff82, (q15_t)0x7fff, (q15_t)0xff76, (q15_t)0x7fff, (q15_t)0xff69, (q15_t)0x7fff, (q15_t)0xff5d, (q15_t)0x7fff, (q15_t)0xff50, (q15_t)0x7fff, (q15_t)0xff44, (q15_t)0x7fff, (q15_t)0xff37, (q15_t)0x7fff, (q15_t)0xff2a, (q15_t)0x7ffe, (q15_t)0xff1e, (q15_t)0x7ffe, (q15_t)0xff11, (q15_t)0x7ffe, (q15_t)0xff05, (q15_t)0x7ffe, (q15_t)0xfef8, (q15_t)0x7ffe, (q15_t)0xfeec, (q15_t)0x7ffd, (q15_t)0xfedf, (q15_t)0x7ffd, (q15_t)0xfed2, (q15_t)0x7ffd, (q15_t)0xfec6, (q15_t)0x7ffd, (q15_t)0xfeb9, (q15_t)0x7ffc, (q15_t)0xfead, (q15_t)0x7ffc, (q15_t)0xfea0, (q15_t)0x7ffc, (q15_t)0xfe94, (q15_t)0x7ffc, (q15_t)0xfe87, (q15_t)0x7ffb, (q15_t)0xfe7a, (q15_t)0x7ffb, (q15_t)0xfe6e, (q15_t)0x7ffb, (q15_t)0xfe61, (q15_t)0x7ffa, (q15_t)0xfe55, (q15_t)0x7ffa, (q15_t)0xfe48, (q15_t)0x7ffa, (q15_t)0xfe3c, (q15_t)0x7ff9, (q15_t)0xfe2f, (q15_t)0x7ff9, (q15_t)0xfe23, (q15_t)0x7ff9, (q15_t)0xfe16, (q15_t)0x7ff8, (q15_t)0xfe09, (q15_t)0x7ff8, (q15_t)0xfdfd, (q15_t)0x7ff7, (q15_t)0xfdf0, (q15_t)0x7ff7, (q15_t)0xfde4, (q15_t)0x7ff7, (q15_t)0xfdd7, (q15_t)0x7ff6, (q15_t)0xfdcb, (q15_t)0x7ff6, (q15_t)0xfdbe, (q15_t)0x7ff5, (q15_t)0xfdb2, (q15_t)0x7ff5, (q15_t)0xfda5, (q15_t)0x7ff4, (q15_t)0xfd98, (q15_t)0x7ff4, (q15_t)0xfd8c, (q15_t)0x7ff3, (q15_t)0xfd7f, (q15_t)0x7ff3, (q15_t)0xfd73, (q15_t)0x7ff2, (q15_t)0xfd66, (q15_t)0x7ff2, (q15_t)0xfd5a, (q15_t)0x7ff1, (q15_t)0xfd4d, (q15_t)0x7ff1, (q15_t)0xfd40, (q15_t)0x7ff0, (q15_t)0xfd34, (q15_t)0x7ff0, (q15_t)0xfd27, (q15_t)0x7fef, (q15_t)0xfd1b, (q15_t)0x7fef, (q15_t)0xfd0e, (q15_t)0x7fee, (q15_t)0xfd02, (q15_t)0x7fed, (q15_t)0xfcf5, (q15_t)0x7fed, (q15_t)0xfce9, (q15_t)0x7fec, (q15_t)0xfcdc, (q15_t)0x7fec, (q15_t)0xfcd0, (q15_t)0x7feb, (q15_t)0xfcc3, (q15_t)0x7fea, (q15_t)0xfcb6, (q15_t)0x7fea, (q15_t)0xfcaa, (q15_t)0x7fe9, (q15_t)0xfc9d, (q15_t)0x7fe8, (q15_t)0xfc91, (q15_t)0x7fe8, (q15_t)0xfc84, (q15_t)0x7fe7, (q15_t)0xfc78, (q15_t)0x7fe6, (q15_t)0xfc6b, (q15_t)0x7fe6, (q15_t)0xfc5f, (q15_t)0x7fe5, (q15_t)0xfc52, (q15_t)0x7fe4, (q15_t)0xfc45, (q15_t)0x7fe3, (q15_t)0xfc39, (q15_t)0x7fe3, (q15_t)0xfc2c, (q15_t)0x7fe2, (q15_t)0xfc20, (q15_t)0x7fe1, (q15_t)0xfc13, (q15_t)0x7fe0, (q15_t)0xfc07, (q15_t)0x7fe0, (q15_t)0xfbfa, (q15_t)0x7fdf, (q15_t)0xfbee, (q15_t)0x7fde, (q15_t)0xfbe1, (q15_t)0x7fdd, (q15_t)0xfbd5, (q15_t)0x7fdc, (q15_t)0xfbc8, (q15_t)0x7fdc, (q15_t)0xfbbc, (q15_t)0x7fdb, (q15_t)0xfbaf, (q15_t)0x7fda, (q15_t)0xfba2, (q15_t)0x7fd9, (q15_t)0xfb96, (q15_t)0x7fd8, (q15_t)0xfb89, (q15_t)0x7fd7, (q15_t)0xfb7d, (q15_t)0x7fd6, (q15_t)0xfb70, (q15_t)0x7fd5, (q15_t)0xfb64, (q15_t)0x7fd5, (q15_t)0xfb57, (q15_t)0x7fd4, (q15_t)0xfb4b, (q15_t)0x7fd3, (q15_t)0xfb3e, (q15_t)0x7fd2, (q15_t)0xfb32, (q15_t)0x7fd1, (q15_t)0xfb25, (q15_t)0x7fd0, (q15_t)0xfb19, (q15_t)0x7fcf, (q15_t)0xfb0c, (q15_t)0x7fce, (q15_t)0xfb00, (q15_t)0x7fcd, (q15_t)0xfaf3, (q15_t)0x7fcc, (q15_t)0xfae6, (q15_t)0x7fcb, (q15_t)0xfada, (q15_t)0x7fca, (q15_t)0xfacd, (q15_t)0x7fc9, (q15_t)0xfac1, (q15_t)0x7fc8, (q15_t)0xfab4, (q15_t)0x7fc7, (q15_t)0xfaa8, (q15_t)0x7fc6, (q15_t)0xfa9b, (q15_t)0x7fc5, (q15_t)0xfa8f, (q15_t)0x7fc4, (q15_t)0xfa82, (q15_t)0x7fc3, (q15_t)0xfa76, (q15_t)0x7fc1, (q15_t)0xfa69, (q15_t)0x7fc0, (q15_t)0xfa5d, (q15_t)0x7fbf, (q15_t)0xfa50, (q15_t)0x7fbe, (q15_t)0xfa44, (q15_t)0x7fbd, (q15_t)0xfa37, (q15_t)0x7fbc, (q15_t)0xfa2b, (q15_t)0x7fbb, (q15_t)0xfa1e, (q15_t)0x7fb9, (q15_t)0xfa12, (q15_t)0x7fb8, (q15_t)0xfa05, (q15_t)0x7fb7, (q15_t)0xf9f9, (q15_t)0x7fb6, (q15_t)0xf9ec, (q15_t)0x7fb5, (q15_t)0xf9e0, (q15_t)0x7fb4, (q15_t)0xf9d3, (q15_t)0x7fb2, (q15_t)0xf9c7, (q15_t)0x7fb1, (q15_t)0xf9ba, (q15_t)0x7fb0, (q15_t)0xf9ae, (q15_t)0x7faf, (q15_t)0xf9a1, (q15_t)0x7fad, (q15_t)0xf995, (q15_t)0x7fac, (q15_t)0xf988, (q15_t)0x7fab, (q15_t)0xf97c, (q15_t)0x7faa, (q15_t)0xf96f, (q15_t)0x7fa8, (q15_t)0xf963, (q15_t)0x7fa7, (q15_t)0xf956, (q15_t)0x7fa6, (q15_t)0xf94a, (q15_t)0x7fa4, (q15_t)0xf93d, (q15_t)0x7fa3, (q15_t)0xf931, (q15_t)0x7fa2, (q15_t)0xf924, (q15_t)0x7fa0, (q15_t)0xf918, (q15_t)0x7f9f, (q15_t)0xf90b, (q15_t)0x7f9e, (q15_t)0xf8ff, (q15_t)0x7f9c, (q15_t)0xf8f2, (q15_t)0x7f9b, (q15_t)0xf8e6, (q15_t)0x7f99, (q15_t)0xf8d9, (q15_t)0x7f98, (q15_t)0xf8cd, (q15_t)0x7f97, (q15_t)0xf8c0, (q15_t)0x7f95, (q15_t)0xf8b4, (q15_t)0x7f94, (q15_t)0xf8a7, (q15_t)0x7f92, (q15_t)0xf89b, (q15_t)0x7f91, (q15_t)0xf88e, (q15_t)0x7f8f, (q15_t)0xf882, (q15_t)0x7f8e, (q15_t)0xf875, (q15_t)0x7f8c, (q15_t)0xf869, (q15_t)0x7f8b, (q15_t)0xf85c, (q15_t)0x7f89, (q15_t)0xf850, (q15_t)0x7f88, (q15_t)0xf843, (q15_t)0x7f86, (q15_t)0xf837, (q15_t)0x7f85, (q15_t)0xf82a, (q15_t)0x7f83, (q15_t)0xf81e, (q15_t)0x7f82, (q15_t)0xf811, (q15_t)0x7f80, (q15_t)0xf805, (q15_t)0x7f7f, (q15_t)0xf7f9, (q15_t)0x7f7d, (q15_t)0xf7ec, (q15_t)0x7f7b, (q15_t)0xf7e0, (q15_t)0x7f7a, (q15_t)0xf7d3, (q15_t)0x7f78, (q15_t)0xf7c7, (q15_t)0x7f77, (q15_t)0xf7ba, (q15_t)0x7f75, (q15_t)0xf7ae, (q15_t)0x7f73, (q15_t)0xf7a1, (q15_t)0x7f72, (q15_t)0xf795, (q15_t)0x7f70, (q15_t)0xf788, (q15_t)0x7f6e, (q15_t)0xf77c, (q15_t)0x7f6d, (q15_t)0xf76f, (q15_t)0x7f6b, (q15_t)0xf763, (q15_t)0x7f69, (q15_t)0xf757, (q15_t)0x7f68, (q15_t)0xf74a, (q15_t)0x7f66, (q15_t)0xf73e, (q15_t)0x7f64, (q15_t)0xf731, (q15_t)0x7f62, (q15_t)0xf725, (q15_t)0x7f61, (q15_t)0xf718, (q15_t)0x7f5f, (q15_t)0xf70c, (q15_t)0x7f5d, (q15_t)0xf6ff, (q15_t)0x7f5b, (q15_t)0xf6f3, (q15_t)0x7f5a, (q15_t)0xf6e7, (q15_t)0x7f58, (q15_t)0xf6da, (q15_t)0x7f56, (q15_t)0xf6ce, (q15_t)0x7f54, (q15_t)0xf6c1, (q15_t)0x7f52, (q15_t)0xf6b5, (q15_t)0x7f51, (q15_t)0xf6a8, (q15_t)0x7f4f, (q15_t)0xf69c, (q15_t)0x7f4d, (q15_t)0xf690, (q15_t)0x7f4b, (q15_t)0xf683, (q15_t)0x7f49, (q15_t)0xf677, (q15_t)0x7f47, (q15_t)0xf66a, (q15_t)0x7f45, (q15_t)0xf65e, (q15_t)0x7f43, (q15_t)0xf651, (q15_t)0x7f42, (q15_t)0xf645, (q15_t)0x7f40, (q15_t)0xf639, (q15_t)0x7f3e, (q15_t)0xf62c, (q15_t)0x7f3c, (q15_t)0xf620, (q15_t)0x7f3a, (q15_t)0xf613, (q15_t)0x7f38, (q15_t)0xf607, (q15_t)0x7f36, (q15_t)0xf5fa, (q15_t)0x7f34, (q15_t)0xf5ee, (q15_t)0x7f32, (q15_t)0xf5e2, (q15_t)0x7f30, (q15_t)0xf5d5, (q15_t)0x7f2e, (q15_t)0xf5c9, (q15_t)0x7f2c, (q15_t)0xf5bc, (q15_t)0x7f2a, (q15_t)0xf5b0, (q15_t)0x7f28, (q15_t)0xf5a4, (q15_t)0x7f26, (q15_t)0xf597, (q15_t)0x7f24, (q15_t)0xf58b, (q15_t)0x7f22, (q15_t)0xf57e, (q15_t)0x7f20, (q15_t)0xf572, (q15_t)0x7f1e, (q15_t)0xf566, (q15_t)0x7f1c, (q15_t)0xf559, (q15_t)0x7f19, (q15_t)0xf54d, (q15_t)0x7f17, (q15_t)0xf540, (q15_t)0x7f15, (q15_t)0xf534, (q15_t)0x7f13, (q15_t)0xf528, (q15_t)0x7f11, (q15_t)0xf51b, (q15_t)0x7f0f, (q15_t)0xf50f, (q15_t)0x7f0d, (q15_t)0xf503, (q15_t)0x7f0a, (q15_t)0xf4f6, (q15_t)0x7f08, (q15_t)0xf4ea, (q15_t)0x7f06, (q15_t)0xf4dd, (q15_t)0x7f04, (q15_t)0xf4d1, (q15_t)0x7f02, (q15_t)0xf4c5, (q15_t)0x7f00, (q15_t)0xf4b8, (q15_t)0x7efd, (q15_t)0xf4ac, (q15_t)0x7efb, (q15_t)0xf4a0, (q15_t)0x7ef9, (q15_t)0xf493, (q15_t)0x7ef7, (q15_t)0xf487, (q15_t)0x7ef4, (q15_t)0xf47b, (q15_t)0x7ef2, (q15_t)0xf46e, (q15_t)0x7ef0, (q15_t)0xf462, (q15_t)0x7eed, (q15_t)0xf455, (q15_t)0x7eeb, (q15_t)0xf449, (q15_t)0x7ee9, (q15_t)0xf43d, (q15_t)0x7ee7, (q15_t)0xf430, (q15_t)0x7ee4, (q15_t)0xf424, (q15_t)0x7ee2, (q15_t)0xf418, (q15_t)0x7ee0, (q15_t)0xf40b, (q15_t)0x7edd, (q15_t)0xf3ff, (q15_t)0x7edb, (q15_t)0xf3f3, (q15_t)0x7ed8, (q15_t)0xf3e6, (q15_t)0x7ed6, (q15_t)0xf3da, (q15_t)0x7ed4, (q15_t)0xf3ce, (q15_t)0x7ed1, (q15_t)0xf3c1, (q15_t)0x7ecf, (q15_t)0xf3b5, (q15_t)0x7ecc, (q15_t)0xf3a9, (q15_t)0x7eca, (q15_t)0xf39c, (q15_t)0x7ec8, (q15_t)0xf390, (q15_t)0x7ec5, (q15_t)0xf384, (q15_t)0x7ec3, (q15_t)0xf377, (q15_t)0x7ec0, (q15_t)0xf36b, (q15_t)0x7ebe, (q15_t)0xf35f, (q15_t)0x7ebb, (q15_t)0xf352, (q15_t)0x7eb9, (q15_t)0xf346, (q15_t)0x7eb6, (q15_t)0xf33a, (q15_t)0x7eb4, (q15_t)0xf32d, (q15_t)0x7eb1, (q15_t)0xf321, (q15_t)0x7eaf, (q15_t)0xf315, (q15_t)0x7eac, (q15_t)0xf308, (q15_t)0x7eaa, (q15_t)0xf2fc, (q15_t)0x7ea7, (q15_t)0xf2f0, (q15_t)0x7ea5, (q15_t)0xf2e4, (q15_t)0x7ea2, (q15_t)0xf2d7, (q15_t)0x7e9f, (q15_t)0xf2cb, (q15_t)0x7e9d, (q15_t)0xf2bf, (q15_t)0x7e9a, (q15_t)0xf2b2, (q15_t)0x7e98, (q15_t)0xf2a6, (q15_t)0x7e95, (q15_t)0xf29a, (q15_t)0x7e92, (q15_t)0xf28e, (q15_t)0x7e90, (q15_t)0xf281, (q15_t)0x7e8d, (q15_t)0xf275, (q15_t)0x7e8a, (q15_t)0xf269, (q15_t)0x7e88, (q15_t)0xf25c, (q15_t)0x7e85, (q15_t)0xf250, (q15_t)0x7e82, (q15_t)0xf244, (q15_t)0x7e80, (q15_t)0xf238, (q15_t)0x7e7d, (q15_t)0xf22b, (q15_t)0x7e7a, (q15_t)0xf21f, (q15_t)0x7e77, (q15_t)0xf213, (q15_t)0x7e75, (q15_t)0xf207, (q15_t)0x7e72, (q15_t)0xf1fa, (q15_t)0x7e6f, (q15_t)0xf1ee, (q15_t)0x7e6c, (q15_t)0xf1e2, (q15_t)0x7e6a, (q15_t)0xf1d5, (q15_t)0x7e67, (q15_t)0xf1c9, (q15_t)0x7e64, (q15_t)0xf1bd, (q15_t)0x7e61, (q15_t)0xf1b1, (q15_t)0x7e5e, (q15_t)0xf1a4, (q15_t)0x7e5c, (q15_t)0xf198, (q15_t)0x7e59, (q15_t)0xf18c, (q15_t)0x7e56, (q15_t)0xf180, (q15_t)0x7e53, (q15_t)0xf174, (q15_t)0x7e50, (q15_t)0xf167, (q15_t)0x7e4d, (q15_t)0xf15b, (q15_t)0x7e4a, (q15_t)0xf14f, (q15_t)0x7e48, (q15_t)0xf143, (q15_t)0x7e45, (q15_t)0xf136, (q15_t)0x7e42, (q15_t)0xf12a, (q15_t)0x7e3f, (q15_t)0xf11e, (q15_t)0x7e3c, (q15_t)0xf112, (q15_t)0x7e39, (q15_t)0xf105, (q15_t)0x7e36, (q15_t)0xf0f9, (q15_t)0x7e33, (q15_t)0xf0ed, (q15_t)0x7e30, (q15_t)0xf0e1, (q15_t)0x7e2d, (q15_t)0xf0d5, (q15_t)0x7e2a, (q15_t)0xf0c8, (q15_t)0x7e27, (q15_t)0xf0bc, (q15_t)0x7e24, (q15_t)0xf0b0, (q15_t)0x7e21, (q15_t)0xf0a4, (q15_t)0x7e1e, (q15_t)0xf098, (q15_t)0x7e1b, (q15_t)0xf08b, (q15_t)0x7e18, (q15_t)0xf07f, (q15_t)0x7e15, (q15_t)0xf073, (q15_t)0x7e12, (q15_t)0xf067, (q15_t)0x7e0f, (q15_t)0xf05b, (q15_t)0x7e0c, (q15_t)0xf04e, (q15_t)0x7e09, (q15_t)0xf042, (q15_t)0x7e06, (q15_t)0xf036, (q15_t)0x7e03, (q15_t)0xf02a, (q15_t)0x7dff, (q15_t)0xf01e, (q15_t)0x7dfc, (q15_t)0xf012, (q15_t)0x7df9, (q15_t)0xf005, (q15_t)0x7df6, (q15_t)0xeff9, (q15_t)0x7df3, (q15_t)0xefed, (q15_t)0x7df0, (q15_t)0xefe1, (q15_t)0x7ded, (q15_t)0xefd5, (q15_t)0x7de9, (q15_t)0xefc9, (q15_t)0x7de6, (q15_t)0xefbc, (q15_t)0x7de3, (q15_t)0xefb0, (q15_t)0x7de0, (q15_t)0xefa4, (q15_t)0x7ddd, (q15_t)0xef98, (q15_t)0x7dd9, (q15_t)0xef8c, (q15_t)0x7dd6, (q15_t)0xef80, (q15_t)0x7dd3, (q15_t)0xef74, (q15_t)0x7dd0, (q15_t)0xef67, (q15_t)0x7dcc, (q15_t)0xef5b, (q15_t)0x7dc9, (q15_t)0xef4f, (q15_t)0x7dc6, (q15_t)0xef43, (q15_t)0x7dc2, (q15_t)0xef37, (q15_t)0x7dbf, (q15_t)0xef2b, (q15_t)0x7dbc, (q15_t)0xef1f, (q15_t)0x7db9, (q15_t)0xef13, (q15_t)0x7db5, (q15_t)0xef06, (q15_t)0x7db2, (q15_t)0xeefa, (q15_t)0x7daf, (q15_t)0xeeee, (q15_t)0x7dab, (q15_t)0xeee2, (q15_t)0x7da8, (q15_t)0xeed6, (q15_t)0x7da4, (q15_t)0xeeca, (q15_t)0x7da1, (q15_t)0xeebe, (q15_t)0x7d9e, (q15_t)0xeeb2, (q15_t)0x7d9a, (q15_t)0xeea6, (q15_t)0x7d97, (q15_t)0xee99, (q15_t)0x7d93, (q15_t)0xee8d, (q15_t)0x7d90, (q15_t)0xee81, (q15_t)0x7d8d, (q15_t)0xee75, (q15_t)0x7d89, (q15_t)0xee69, (q15_t)0x7d86, (q15_t)0xee5d, (q15_t)0x7d82, (q15_t)0xee51, (q15_t)0x7d7f, (q15_t)0xee45, (q15_t)0x7d7b, (q15_t)0xee39, (q15_t)0x7d78, (q15_t)0xee2d, (q15_t)0x7d74, (q15_t)0xee21, (q15_t)0x7d71, (q15_t)0xee15, (q15_t)0x7d6d, (q15_t)0xee09, (q15_t)0x7d6a, (q15_t)0xedfc, (q15_t)0x7d66, (q15_t)0xedf0, (q15_t)0x7d63, (q15_t)0xede4, (q15_t)0x7d5f, (q15_t)0xedd8, (q15_t)0x7d5b, (q15_t)0xedcc, (q15_t)0x7d58, (q15_t)0xedc0, (q15_t)0x7d54, (q15_t)0xedb4, (q15_t)0x7d51, (q15_t)0xeda8, (q15_t)0x7d4d, (q15_t)0xed9c, (q15_t)0x7d49, (q15_t)0xed90, (q15_t)0x7d46, (q15_t)0xed84, (q15_t)0x7d42, (q15_t)0xed78, (q15_t)0x7d3f, (q15_t)0xed6c, (q15_t)0x7d3b, (q15_t)0xed60, (q15_t)0x7d37, (q15_t)0xed54, (q15_t)0x7d34, (q15_t)0xed48, (q15_t)0x7d30, (q15_t)0xed3c, (q15_t)0x7d2c, (q15_t)0xed30, (q15_t)0x7d28, (q15_t)0xed24, (q15_t)0x7d25, (q15_t)0xed18, (q15_t)0x7d21, (q15_t)0xed0c, (q15_t)0x7d1d, (q15_t)0xed00, (q15_t)0x7d1a, (q15_t)0xecf4, (q15_t)0x7d16, (q15_t)0xece8, (q15_t)0x7d12, (q15_t)0xecdc, (q15_t)0x7d0e, (q15_t)0xecd0, (q15_t)0x7d0b, (q15_t)0xecc4, (q15_t)0x7d07, (q15_t)0xecb8, (q15_t)0x7d03, (q15_t)0xecac, (q15_t)0x7cff, (q15_t)0xeca0, (q15_t)0x7cfb, (q15_t)0xec94, (q15_t)0x7cf8, (q15_t)0xec88, (q15_t)0x7cf4, (q15_t)0xec7c, (q15_t)0x7cf0, (q15_t)0xec70, (q15_t)0x7cec, (q15_t)0xec64, (q15_t)0x7ce8, (q15_t)0xec58, (q15_t)0x7ce4, (q15_t)0xec4c, (q15_t)0x7ce0, (q15_t)0xec40, (q15_t)0x7cdd, (q15_t)0xec34, (q15_t)0x7cd9, (q15_t)0xec28, (q15_t)0x7cd5, (q15_t)0xec1c, (q15_t)0x7cd1, (q15_t)0xec10, (q15_t)0x7ccd, (q15_t)0xec05, (q15_t)0x7cc9, (q15_t)0xebf9, (q15_t)0x7cc5, (q15_t)0xebed, (q15_t)0x7cc1, (q15_t)0xebe1, (q15_t)0x7cbd, (q15_t)0xebd5, (q15_t)0x7cb9, (q15_t)0xebc9, (q15_t)0x7cb5, (q15_t)0xebbd, (q15_t)0x7cb1, (q15_t)0xebb1, (q15_t)0x7cad, (q15_t)0xeba5, (q15_t)0x7ca9, (q15_t)0xeb99, (q15_t)0x7ca5, (q15_t)0xeb8d, (q15_t)0x7ca1, (q15_t)0xeb81, (q15_t)0x7c9d, (q15_t)0xeb75, (q15_t)0x7c99, (q15_t)0xeb6a, (q15_t)0x7c95, (q15_t)0xeb5e, (q15_t)0x7c91, (q15_t)0xeb52, (q15_t)0x7c8d, (q15_t)0xeb46, (q15_t)0x7c89, (q15_t)0xeb3a, (q15_t)0x7c85, (q15_t)0xeb2e, (q15_t)0x7c81, (q15_t)0xeb22, (q15_t)0x7c7d, (q15_t)0xeb16, (q15_t)0x7c79, (q15_t)0xeb0a, (q15_t)0x7c74, (q15_t)0xeaff, (q15_t)0x7c70, (q15_t)0xeaf3, (q15_t)0x7c6c, (q15_t)0xeae7, (q15_t)0x7c68, (q15_t)0xeadb, (q15_t)0x7c64, (q15_t)0xeacf, (q15_t)0x7c60, (q15_t)0xeac3, (q15_t)0x7c5b, (q15_t)0xeab7, (q15_t)0x7c57, (q15_t)0xeaac, (q15_t)0x7c53, (q15_t)0xeaa0, (q15_t)0x7c4f, (q15_t)0xea94, (q15_t)0x7c4b, (q15_t)0xea88, (q15_t)0x7c46, (q15_t)0xea7c, (q15_t)0x7c42, (q15_t)0xea70, (q15_t)0x7c3e, (q15_t)0xea65, (q15_t)0x7c3a, (q15_t)0xea59, (q15_t)0x7c36, (q15_t)0xea4d, (q15_t)0x7c31, (q15_t)0xea41, (q15_t)0x7c2d, (q15_t)0xea35, (q15_t)0x7c29, (q15_t)0xea29, (q15_t)0x7c24, (q15_t)0xea1e, (q15_t)0x7c20, (q15_t)0xea12, (q15_t)0x7c1c, (q15_t)0xea06, (q15_t)0x7c17, (q15_t)0xe9fa, (q15_t)0x7c13, (q15_t)0xe9ee, (q15_t)0x7c0f, (q15_t)0xe9e3, (q15_t)0x7c0a, (q15_t)0xe9d7, (q15_t)0x7c06, (q15_t)0xe9cb, (q15_t)0x7c02, (q15_t)0xe9bf, (q15_t)0x7bfd, (q15_t)0xe9b4, (q15_t)0x7bf9, (q15_t)0xe9a8, (q15_t)0x7bf5, (q15_t)0xe99c, (q15_t)0x7bf0, (q15_t)0xe990, (q15_t)0x7bec, (q15_t)0xe984, (q15_t)0x7be7, (q15_t)0xe979, (q15_t)0x7be3, (q15_t)0xe96d, (q15_t)0x7bde, (q15_t)0xe961, (q15_t)0x7bda, (q15_t)0xe955, (q15_t)0x7bd6, (q15_t)0xe94a, (q15_t)0x7bd1, (q15_t)0xe93e, (q15_t)0x7bcd, (q15_t)0xe932, (q15_t)0x7bc8, (q15_t)0xe926, (q15_t)0x7bc4, (q15_t)0xe91b, (q15_t)0x7bbf, (q15_t)0xe90f, (q15_t)0x7bbb, (q15_t)0xe903, (q15_t)0x7bb6, (q15_t)0xe8f7, (q15_t)0x7bb2, (q15_t)0xe8ec, (q15_t)0x7bad, (q15_t)0xe8e0, (q15_t)0x7ba9, (q15_t)0xe8d4, (q15_t)0x7ba4, (q15_t)0xe8c9, (q15_t)0x7b9f, (q15_t)0xe8bd, (q15_t)0x7b9b, (q15_t)0xe8b1, (q15_t)0x7b96, (q15_t)0xe8a5, (q15_t)0x7b92, (q15_t)0xe89a, (q15_t)0x7b8d, (q15_t)0xe88e, (q15_t)0x7b88, (q15_t)0xe882, (q15_t)0x7b84, (q15_t)0xe877, (q15_t)0x7b7f, (q15_t)0xe86b, (q15_t)0x7b7b, (q15_t)0xe85f, (q15_t)0x7b76, (q15_t)0xe854, (q15_t)0x7b71, (q15_t)0xe848, (q15_t)0x7b6d, (q15_t)0xe83c, (q15_t)0x7b68, (q15_t)0xe831, (q15_t)0x7b63, (q15_t)0xe825, (q15_t)0x7b5f, (q15_t)0xe819, (q15_t)0x7b5a, (q15_t)0xe80e, (q15_t)0x7b55, (q15_t)0xe802, (q15_t)0x7b50, (q15_t)0xe7f6, (q15_t)0x7b4c, (q15_t)0xe7eb, (q15_t)0x7b47, (q15_t)0xe7df, (q15_t)0x7b42, (q15_t)0xe7d3, (q15_t)0x7b3e, (q15_t)0xe7c8, (q15_t)0x7b39, (q15_t)0xe7bc, (q15_t)0x7b34, (q15_t)0xe7b1, (q15_t)0x7b2f, (q15_t)0xe7a5, (q15_t)0x7b2a, (q15_t)0xe799, (q15_t)0x7b26, (q15_t)0xe78e, (q15_t)0x7b21, (q15_t)0xe782, (q15_t)0x7b1c, (q15_t)0xe777, (q15_t)0x7b17, (q15_t)0xe76b, (q15_t)0x7b12, (q15_t)0xe75f, (q15_t)0x7b0e, (q15_t)0xe754, (q15_t)0x7b09, (q15_t)0xe748, (q15_t)0x7b04, (q15_t)0xe73d, (q15_t)0x7aff, (q15_t)0xe731, (q15_t)0x7afa, (q15_t)0xe725, (q15_t)0x7af5, (q15_t)0xe71a, (q15_t)0x7af0, (q15_t)0xe70e, (q15_t)0x7aeb, (q15_t)0xe703, (q15_t)0x7ae6, (q15_t)0xe6f7, (q15_t)0x7ae2, (q15_t)0xe6ec, (q15_t)0x7add, (q15_t)0xe6e0, (q15_t)0x7ad8, (q15_t)0xe6d4, (q15_t)0x7ad3, (q15_t)0xe6c9, (q15_t)0x7ace, (q15_t)0xe6bd, (q15_t)0x7ac9, (q15_t)0xe6b2, (q15_t)0x7ac4, (q15_t)0xe6a6, (q15_t)0x7abf, (q15_t)0xe69b, (q15_t)0x7aba, (q15_t)0xe68f, (q15_t)0x7ab5, (q15_t)0xe684, (q15_t)0x7ab0, (q15_t)0xe678, (q15_t)0x7aab, (q15_t)0xe66d, (q15_t)0x7aa6, (q15_t)0xe661, (q15_t)0x7aa1, (q15_t)0xe656, (q15_t)0x7a9c, (q15_t)0xe64a, (q15_t)0x7a97, (q15_t)0xe63f, (q15_t)0x7a92, (q15_t)0xe633, (q15_t)0x7a8d, (q15_t)0xe628, (q15_t)0x7a88, (q15_t)0xe61c, (q15_t)0x7a82, (q15_t)0xe611, (q15_t)0x7a7d, (q15_t)0xe605, (q15_t)0x7a78, (q15_t)0xe5fa, (q15_t)0x7a73, (q15_t)0xe5ee, (q15_t)0x7a6e, (q15_t)0xe5e3, (q15_t)0x7a69, (q15_t)0xe5d7, (q15_t)0x7a64, (q15_t)0xe5cc, (q15_t)0x7a5f, (q15_t)0xe5c0, (q15_t)0x7a59, (q15_t)0xe5b5, (q15_t)0x7a54, (q15_t)0xe5a9, (q15_t)0x7a4f, (q15_t)0xe59e, (q15_t)0x7a4a, (q15_t)0xe592, (q15_t)0x7a45, (q15_t)0xe587, (q15_t)0x7a3f, (q15_t)0xe57c, (q15_t)0x7a3a, (q15_t)0xe570, (q15_t)0x7a35, (q15_t)0xe565, (q15_t)0x7a30, (q15_t)0xe559, (q15_t)0x7a2b, (q15_t)0xe54e, (q15_t)0x7a25, (q15_t)0xe542, (q15_t)0x7a20, (q15_t)0xe537, (q15_t)0x7a1b, (q15_t)0xe52c, (q15_t)0x7a16, (q15_t)0xe520, (q15_t)0x7a10, (q15_t)0xe515, (q15_t)0x7a0b, (q15_t)0xe509, (q15_t)0x7a06, (q15_t)0xe4fe, (q15_t)0x7a00, (q15_t)0xe4f3, (q15_t)0x79fb, (q15_t)0xe4e7, (q15_t)0x79f6, (q15_t)0xe4dc, (q15_t)0x79f0, (q15_t)0xe4d0, (q15_t)0x79eb, (q15_t)0xe4c5, (q15_t)0x79e6, (q15_t)0xe4ba, (q15_t)0x79e0, (q15_t)0xe4ae, (q15_t)0x79db, (q15_t)0xe4a3, (q15_t)0x79d6, (q15_t)0xe498, (q15_t)0x79d0, (q15_t)0xe48c, (q15_t)0x79cb, (q15_t)0xe481, (q15_t)0x79c5, (q15_t)0xe476, (q15_t)0x79c0, (q15_t)0xe46a, (q15_t)0x79bb, (q15_t)0xe45f, (q15_t)0x79b5, (q15_t)0xe454, (q15_t)0x79b0, (q15_t)0xe448, (q15_t)0x79aa, (q15_t)0xe43d, (q15_t)0x79a5, (q15_t)0xe432, (q15_t)0x799f, (q15_t)0xe426, (q15_t)0x799a, (q15_t)0xe41b, (q15_t)0x7994, (q15_t)0xe410, (q15_t)0x798f, (q15_t)0xe404, (q15_t)0x7989, (q15_t)0xe3f9, (q15_t)0x7984, (q15_t)0xe3ee, (q15_t)0x797e, (q15_t)0xe3e2, (q15_t)0x7979, (q15_t)0xe3d7, (q15_t)0x7973, (q15_t)0xe3cc, (q15_t)0x796e, (q15_t)0xe3c1, (q15_t)0x7968, (q15_t)0xe3b5, (q15_t)0x7963, (q15_t)0xe3aa, (q15_t)0x795d, (q15_t)0xe39f, (q15_t)0x7958, (q15_t)0xe394, (q15_t)0x7952, (q15_t)0xe388, (q15_t)0x794c, (q15_t)0xe37d, (q15_t)0x7947, (q15_t)0xe372, (q15_t)0x7941, (q15_t)0xe367, (q15_t)0x793b, (q15_t)0xe35b, (q15_t)0x7936, (q15_t)0xe350, (q15_t)0x7930, (q15_t)0xe345, (q15_t)0x792b, (q15_t)0xe33a, (q15_t)0x7925, (q15_t)0xe32e, (q15_t)0x791f, (q15_t)0xe323, (q15_t)0x791a, (q15_t)0xe318, (q15_t)0x7914, (q15_t)0xe30d, (q15_t)0x790e, (q15_t)0xe301, (q15_t)0x7909, (q15_t)0xe2f6, (q15_t)0x7903, (q15_t)0xe2eb, (q15_t)0x78fd, (q15_t)0xe2e0, (q15_t)0x78f7, (q15_t)0xe2d5, (q15_t)0x78f2, (q15_t)0xe2ca, (q15_t)0x78ec, (q15_t)0xe2be, (q15_t)0x78e6, (q15_t)0xe2b3, (q15_t)0x78e0, (q15_t)0xe2a8, (q15_t)0x78db, (q15_t)0xe29d, (q15_t)0x78d5, (q15_t)0xe292, (q15_t)0x78cf, (q15_t)0xe287, (q15_t)0x78c9, (q15_t)0xe27b, (q15_t)0x78c3, (q15_t)0xe270, (q15_t)0x78be, (q15_t)0xe265, (q15_t)0x78b8, (q15_t)0xe25a, (q15_t)0x78b2, (q15_t)0xe24f, (q15_t)0x78ac, (q15_t)0xe244, (q15_t)0x78a6, (q15_t)0xe239, (q15_t)0x78a1, (q15_t)0xe22d, (q15_t)0x789b, (q15_t)0xe222, (q15_t)0x7895, (q15_t)0xe217, (q15_t)0x788f, (q15_t)0xe20c, (q15_t)0x7889, (q15_t)0xe201, (q15_t)0x7883, (q15_t)0xe1f6, (q15_t)0x787d, (q15_t)0xe1eb, (q15_t)0x7877, (q15_t)0xe1e0, (q15_t)0x7871, (q15_t)0xe1d5, (q15_t)0x786b, (q15_t)0xe1ca, (q15_t)0x7866, (q15_t)0xe1be, (q15_t)0x7860, (q15_t)0xe1b3, (q15_t)0x785a, (q15_t)0xe1a8, (q15_t)0x7854, (q15_t)0xe19d, (q15_t)0x784e, (q15_t)0xe192, (q15_t)0x7848, (q15_t)0xe187, (q15_t)0x7842, (q15_t)0xe17c, (q15_t)0x783c, (q15_t)0xe171, (q15_t)0x7836, (q15_t)0xe166, (q15_t)0x7830, (q15_t)0xe15b, (q15_t)0x782a, (q15_t)0xe150, (q15_t)0x7824, (q15_t)0xe145, (q15_t)0x781e, (q15_t)0xe13a, (q15_t)0x7818, (q15_t)0xe12f, (q15_t)0x7812, (q15_t)0xe124, (q15_t)0x780b, (q15_t)0xe119, (q15_t)0x7805, (q15_t)0xe10e, (q15_t)0x77ff, (q15_t)0xe103, (q15_t)0x77f9, (q15_t)0xe0f8, (q15_t)0x77f3, (q15_t)0xe0ed, (q15_t)0x77ed, (q15_t)0xe0e2, (q15_t)0x77e7, (q15_t)0xe0d7, (q15_t)0x77e1, (q15_t)0xe0cc, (q15_t)0x77db, (q15_t)0xe0c1, (q15_t)0x77d5, (q15_t)0xe0b6, (q15_t)0x77ce, (q15_t)0xe0ab, (q15_t)0x77c8, (q15_t)0xe0a0, (q15_t)0x77c2, (q15_t)0xe095, (q15_t)0x77bc, (q15_t)0xe08a, (q15_t)0x77b6, (q15_t)0xe07f, (q15_t)0x77b0, (q15_t)0xe074, (q15_t)0x77a9, (q15_t)0xe069, (q15_t)0x77a3, (q15_t)0xe05e, (q15_t)0x779d, (q15_t)0xe054, (q15_t)0x7797, (q15_t)0xe049, (q15_t)0x7790, (q15_t)0xe03e, (q15_t)0x778a, (q15_t)0xe033, (q15_t)0x7784, (q15_t)0xe028, (q15_t)0x777e, (q15_t)0xe01d, (q15_t)0x7777, (q15_t)0xe012, (q15_t)0x7771, (q15_t)0xe007, (q15_t)0x776b, (q15_t)0xdffc, (q15_t)0x7765, (q15_t)0xdff1, (q15_t)0x775e, (q15_t)0xdfe7, (q15_t)0x7758, (q15_t)0xdfdc, (q15_t)0x7752, (q15_t)0xdfd1, (q15_t)0x774b, (q15_t)0xdfc6, (q15_t)0x7745, (q15_t)0xdfbb, (q15_t)0x773f, (q15_t)0xdfb0, (q15_t)0x7738, (q15_t)0xdfa5, (q15_t)0x7732, (q15_t)0xdf9b, (q15_t)0x772c, (q15_t)0xdf90, (q15_t)0x7725, (q15_t)0xdf85, (q15_t)0x771f, (q15_t)0xdf7a, (q15_t)0x7718, (q15_t)0xdf6f, (q15_t)0x7712, (q15_t)0xdf65, (q15_t)0x770c, (q15_t)0xdf5a, (q15_t)0x7705, (q15_t)0xdf4f, (q15_t)0x76ff, (q15_t)0xdf44, (q15_t)0x76f8, (q15_t)0xdf39, (q15_t)0x76f2, (q15_t)0xdf2f, (q15_t)0x76eb, (q15_t)0xdf24, (q15_t)0x76e5, (q15_t)0xdf19, (q15_t)0x76df, (q15_t)0xdf0e, (q15_t)0x76d8, (q15_t)0xdf03, (q15_t)0x76d2, (q15_t)0xdef9, (q15_t)0x76cb, (q15_t)0xdeee, (q15_t)0x76c5, (q15_t)0xdee3, (q15_t)0x76be, (q15_t)0xded8, (q15_t)0x76b8, (q15_t)0xdece, (q15_t)0x76b1, (q15_t)0xdec3, (q15_t)0x76ab, (q15_t)0xdeb8, (q15_t)0x76a4, (q15_t)0xdead, (q15_t)0x769d, (q15_t)0xdea3, (q15_t)0x7697, (q15_t)0xde98, (q15_t)0x7690, (q15_t)0xde8d, (q15_t)0x768a, (q15_t)0xde83, (q15_t)0x7683, (q15_t)0xde78, (q15_t)0x767d, (q15_t)0xde6d, (q15_t)0x7676, (q15_t)0xde62, (q15_t)0x766f, (q15_t)0xde58, (q15_t)0x7669, (q15_t)0xde4d, (q15_t)0x7662, (q15_t)0xde42, (q15_t)0x765c, (q15_t)0xde38, (q15_t)0x7655, (q15_t)0xde2d, (q15_t)0x764e, (q15_t)0xde22, (q15_t)0x7648, (q15_t)0xde18, (q15_t)0x7641, (q15_t)0xde0d, (q15_t)0x763a, (q15_t)0xde02, (q15_t)0x7634, (q15_t)0xddf8, (q15_t)0x762d, (q15_t)0xdded, (q15_t)0x7626, (q15_t)0xdde2, (q15_t)0x7620, (q15_t)0xddd8, (q15_t)0x7619, (q15_t)0xddcd, (q15_t)0x7612, (q15_t)0xddc3, (q15_t)0x760b, (q15_t)0xddb8, (q15_t)0x7605, (q15_t)0xddad, (q15_t)0x75fe, (q15_t)0xdda3, (q15_t)0x75f7, (q15_t)0xdd98, (q15_t)0x75f0, (q15_t)0xdd8e, (q15_t)0x75ea, (q15_t)0xdd83, (q15_t)0x75e3, (q15_t)0xdd78, (q15_t)0x75dc, (q15_t)0xdd6e, (q15_t)0x75d5, (q15_t)0xdd63, (q15_t)0x75ce, (q15_t)0xdd59, (q15_t)0x75c8, (q15_t)0xdd4e, (q15_t)0x75c1, (q15_t)0xdd44, (q15_t)0x75ba, (q15_t)0xdd39, (q15_t)0x75b3, (q15_t)0xdd2e, (q15_t)0x75ac, (q15_t)0xdd24, (q15_t)0x75a5, (q15_t)0xdd19, (q15_t)0x759f, (q15_t)0xdd0f, (q15_t)0x7598, (q15_t)0xdd04, (q15_t)0x7591, (q15_t)0xdcfa, (q15_t)0x758a, (q15_t)0xdcef, (q15_t)0x7583, (q15_t)0xdce5, (q15_t)0x757c, (q15_t)0xdcda, (q15_t)0x7575, (q15_t)0xdcd0, (q15_t)0x756e, (q15_t)0xdcc5, (q15_t)0x7567, (q15_t)0xdcbb, (q15_t)0x7561, (q15_t)0xdcb0, (q15_t)0x755a, (q15_t)0xdca6, (q15_t)0x7553, (q15_t)0xdc9b, (q15_t)0x754c, (q15_t)0xdc91, (q15_t)0x7545, (q15_t)0xdc86, (q15_t)0x753e, (q15_t)0xdc7c, (q15_t)0x7537, (q15_t)0xdc72, (q15_t)0x7530, (q15_t)0xdc67, (q15_t)0x7529, (q15_t)0xdc5d, (q15_t)0x7522, (q15_t)0xdc52, (q15_t)0x751b, (q15_t)0xdc48, (q15_t)0x7514, (q15_t)0xdc3d, (q15_t)0x750d, (q15_t)0xdc33, (q15_t)0x7506, (q15_t)0xdc29, (q15_t)0x74ff, (q15_t)0xdc1e, (q15_t)0x74f8, (q15_t)0xdc14, (q15_t)0x74f1, (q15_t)0xdc09, (q15_t)0x74ea, (q15_t)0xdbff, (q15_t)0x74e2, (q15_t)0xdbf5, (q15_t)0x74db, (q15_t)0xdbea, (q15_t)0x74d4, (q15_t)0xdbe0, (q15_t)0x74cd, (q15_t)0xdbd5, (q15_t)0x74c6, (q15_t)0xdbcb, (q15_t)0x74bf, (q15_t)0xdbc1, (q15_t)0x74b8, (q15_t)0xdbb6, (q15_t)0x74b1, (q15_t)0xdbac, (q15_t)0x74aa, (q15_t)0xdba2, (q15_t)0x74a2, (q15_t)0xdb97, (q15_t)0x749b, (q15_t)0xdb8d, (q15_t)0x7494, (q15_t)0xdb83, (q15_t)0x748d, (q15_t)0xdb78, (q15_t)0x7486, (q15_t)0xdb6e, (q15_t)0x747f, (q15_t)0xdb64, (q15_t)0x7477, (q15_t)0xdb59, (q15_t)0x7470, (q15_t)0xdb4f, (q15_t)0x7469, (q15_t)0xdb45, (q15_t)0x7462, (q15_t)0xdb3b, (q15_t)0x745b, (q15_t)0xdb30, (q15_t)0x7453, (q15_t)0xdb26, (q15_t)0x744c, (q15_t)0xdb1c, (q15_t)0x7445, (q15_t)0xdb11, (q15_t)0x743e, (q15_t)0xdb07, (q15_t)0x7436, (q15_t)0xdafd, (q15_t)0x742f, (q15_t)0xdaf3, (q15_t)0x7428, (q15_t)0xdae8, (q15_t)0x7420, (q15_t)0xdade, (q15_t)0x7419, (q15_t)0xdad4, (q15_t)0x7412, (q15_t)0xdaca, (q15_t)0x740b, (q15_t)0xdabf, (q15_t)0x7403, (q15_t)0xdab5, (q15_t)0x73fc, (q15_t)0xdaab, (q15_t)0x73f5, (q15_t)0xdaa1, (q15_t)0x73ed, (q15_t)0xda97, (q15_t)0x73e6, (q15_t)0xda8c, (q15_t)0x73df, (q15_t)0xda82, (q15_t)0x73d7, (q15_t)0xda78, (q15_t)0x73d0, (q15_t)0xda6e, (q15_t)0x73c8, (q15_t)0xda64, (q15_t)0x73c1, (q15_t)0xda5a, (q15_t)0x73ba, (q15_t)0xda4f, (q15_t)0x73b2, (q15_t)0xda45, (q15_t)0x73ab, (q15_t)0xda3b, (q15_t)0x73a3, (q15_t)0xda31, (q15_t)0x739c, (q15_t)0xda27, (q15_t)0x7395, (q15_t)0xda1d, (q15_t)0x738d, (q15_t)0xda13, (q15_t)0x7386, (q15_t)0xda08, (q15_t)0x737e, (q15_t)0xd9fe, (q15_t)0x7377, (q15_t)0xd9f4, (q15_t)0x736f, (q15_t)0xd9ea, (q15_t)0x7368, (q15_t)0xd9e0, (q15_t)0x7360, (q15_t)0xd9d6, (q15_t)0x7359, (q15_t)0xd9cc, (q15_t)0x7351, (q15_t)0xd9c2, (q15_t)0x734a, (q15_t)0xd9b8, (q15_t)0x7342, (q15_t)0xd9ae, (q15_t)0x733b, (q15_t)0xd9a4, (q15_t)0x7333, (q15_t)0xd99a, (q15_t)0x732c, (q15_t)0xd98f, (q15_t)0x7324, (q15_t)0xd985, (q15_t)0x731d, (q15_t)0xd97b, (q15_t)0x7315, (q15_t)0xd971, (q15_t)0x730d, (q15_t)0xd967, (q15_t)0x7306, (q15_t)0xd95d, (q15_t)0x72fe, (q15_t)0xd953, (q15_t)0x72f7, (q15_t)0xd949, (q15_t)0x72ef, (q15_t)0xd93f, (q15_t)0x72e7, (q15_t)0xd935, (q15_t)0x72e0, (q15_t)0xd92b, (q15_t)0x72d8, (q15_t)0xd921, (q15_t)0x72d0, (q15_t)0xd917, (q15_t)0x72c9, (q15_t)0xd90d, (q15_t)0x72c1, (q15_t)0xd903, (q15_t)0x72ba, (q15_t)0xd8f9, (q15_t)0x72b2, (q15_t)0xd8ef, (q15_t)0x72aa, (q15_t)0xd8e6, (q15_t)0x72a3, (q15_t)0xd8dc, (q15_t)0x729b, (q15_t)0xd8d2, (q15_t)0x7293, (q15_t)0xd8c8, (q15_t)0x728b, (q15_t)0xd8be, (q15_t)0x7284, (q15_t)0xd8b4, (q15_t)0x727c, (q15_t)0xd8aa, (q15_t)0x7274, (q15_t)0xd8a0, (q15_t)0x726d, (q15_t)0xd896, (q15_t)0x7265, (q15_t)0xd88c, (q15_t)0x725d, (q15_t)0xd882, (q15_t)0x7255, (q15_t)0xd878, (q15_t)0x724e, (q15_t)0xd86f, (q15_t)0x7246, (q15_t)0xd865, (q15_t)0x723e, (q15_t)0xd85b, (q15_t)0x7236, (q15_t)0xd851, (q15_t)0x722e, (q15_t)0xd847, (q15_t)0x7227, (q15_t)0xd83d, (q15_t)0x721f, (q15_t)0xd833, (q15_t)0x7217, (q15_t)0xd82a, (q15_t)0x720f, (q15_t)0xd820, (q15_t)0x7207, (q15_t)0xd816, (q15_t)0x71ff, (q15_t)0xd80c, (q15_t)0x71f8, (q15_t)0xd802, (q15_t)0x71f0, (q15_t)0xd7f8, (q15_t)0x71e8, (q15_t)0xd7ef, (q15_t)0x71e0, (q15_t)0xd7e5, (q15_t)0x71d8, (q15_t)0xd7db, (q15_t)0x71d0, (q15_t)0xd7d1, (q15_t)0x71c8, (q15_t)0xd7c8, (q15_t)0x71c0, (q15_t)0xd7be, (q15_t)0x71b9, (q15_t)0xd7b4, (q15_t)0x71b1, (q15_t)0xd7aa, (q15_t)0x71a9, (q15_t)0xd7a0, (q15_t)0x71a1, (q15_t)0xd797, (q15_t)0x7199, (q15_t)0xd78d, (q15_t)0x7191, (q15_t)0xd783, (q15_t)0x7189, (q15_t)0xd77a, (q15_t)0x7181, (q15_t)0xd770, (q15_t)0x7179, (q15_t)0xd766, (q15_t)0x7171, (q15_t)0xd75c, (q15_t)0x7169, (q15_t)0xd753, (q15_t)0x7161, (q15_t)0xd749, (q15_t)0x7159, (q15_t)0xd73f, (q15_t)0x7151, (q15_t)0xd736, (q15_t)0x7149, (q15_t)0xd72c, (q15_t)0x7141, (q15_t)0xd722, (q15_t)0x7139, (q15_t)0xd719, (q15_t)0x7131, (q15_t)0xd70f, (q15_t)0x7129, (q15_t)0xd705, (q15_t)0x7121, (q15_t)0xd6fc, (q15_t)0x7119, (q15_t)0xd6f2, (q15_t)0x7111, (q15_t)0xd6e8, (q15_t)0x7109, (q15_t)0xd6df, (q15_t)0x7101, (q15_t)0xd6d5, (q15_t)0x70f9, (q15_t)0xd6cb, (q15_t)0x70f0, (q15_t)0xd6c2, (q15_t)0x70e8, (q15_t)0xd6b8, (q15_t)0x70e0, (q15_t)0xd6af, (q15_t)0x70d8, (q15_t)0xd6a5, (q15_t)0x70d0, (q15_t)0xd69b, (q15_t)0x70c8, (q15_t)0xd692, (q15_t)0x70c0, (q15_t)0xd688, (q15_t)0x70b8, (q15_t)0xd67f, (q15_t)0x70af, (q15_t)0xd675, (q15_t)0x70a7, (q15_t)0xd66c, (q15_t)0x709f, (q15_t)0xd662, (q15_t)0x7097, (q15_t)0xd659, (q15_t)0x708f, (q15_t)0xd64f, (q15_t)0x7087, (q15_t)0xd645, (q15_t)0x707e, (q15_t)0xd63c, (q15_t)0x7076, (q15_t)0xd632, (q15_t)0x706e, (q15_t)0xd629, (q15_t)0x7066, (q15_t)0xd61f, (q15_t)0x705d, (q15_t)0xd616, (q15_t)0x7055, (q15_t)0xd60c, (q15_t)0x704d, (q15_t)0xd603, (q15_t)0x7045, (q15_t)0xd5f9, (q15_t)0x703c, (q15_t)0xd5f0, (q15_t)0x7034, (q15_t)0xd5e6, (q15_t)0x702c, (q15_t)0xd5dd, (q15_t)0x7024, (q15_t)0xd5d4, (q15_t)0x701b, (q15_t)0xd5ca, (q15_t)0x7013, (q15_t)0xd5c1, (q15_t)0x700b, (q15_t)0xd5b7, (q15_t)0x7002, (q15_t)0xd5ae, (q15_t)0x6ffa, (q15_t)0xd5a4, (q15_t)0x6ff2, (q15_t)0xd59b, (q15_t)0x6fea, (q15_t)0xd592, (q15_t)0x6fe1, (q15_t)0xd588, (q15_t)0x6fd9, (q15_t)0xd57f, (q15_t)0x6fd0, (q15_t)0xd575, (q15_t)0x6fc8, (q15_t)0xd56c, (q15_t)0x6fc0, (q15_t)0xd563, (q15_t)0x6fb7, (q15_t)0xd559, (q15_t)0x6faf, (q15_t)0xd550, (q15_t)0x6fa7, (q15_t)0xd547, (q15_t)0x6f9e, (q15_t)0xd53d, (q15_t)0x6f96, (q15_t)0xd534, (q15_t)0x6f8d, (q15_t)0xd52a, (q15_t)0x6f85, (q15_t)0xd521, (q15_t)0x6f7d, (q15_t)0xd518, (q15_t)0x6f74, (q15_t)0xd50e, (q15_t)0x6f6c, (q15_t)0xd505, (q15_t)0x6f63, (q15_t)0xd4fc, (q15_t)0x6f5b, (q15_t)0xd4f3, (q15_t)0x6f52, (q15_t)0xd4e9, (q15_t)0x6f4a, (q15_t)0xd4e0, (q15_t)0x6f41, (q15_t)0xd4d7, (q15_t)0x6f39, (q15_t)0xd4cd, (q15_t)0x6f30, (q15_t)0xd4c4, (q15_t)0x6f28, (q15_t)0xd4bb, (q15_t)0x6f20, (q15_t)0xd4b2, (q15_t)0x6f17, (q15_t)0xd4a8, (q15_t)0x6f0e, (q15_t)0xd49f, (q15_t)0x6f06, (q15_t)0xd496, (q15_t)0x6efd, (q15_t)0xd48d, (q15_t)0x6ef5, (q15_t)0xd483, (q15_t)0x6eec, (q15_t)0xd47a, (q15_t)0x6ee4, (q15_t)0xd471, (q15_t)0x6edb, (q15_t)0xd468, (q15_t)0x6ed3, (q15_t)0xd45f, (q15_t)0x6eca, (q15_t)0xd455, (q15_t)0x6ec2, (q15_t)0xd44c, (q15_t)0x6eb9, (q15_t)0xd443, (q15_t)0x6eb0, (q15_t)0xd43a, (q15_t)0x6ea8, (q15_t)0xd431, (q15_t)0x6e9f, (q15_t)0xd428, (q15_t)0x6e97, (q15_t)0xd41e, (q15_t)0x6e8e, (q15_t)0xd415, (q15_t)0x6e85, (q15_t)0xd40c, (q15_t)0x6e7d, (q15_t)0xd403, (q15_t)0x6e74, (q15_t)0xd3fa, (q15_t)0x6e6b, (q15_t)0xd3f1, (q15_t)0x6e63, (q15_t)0xd3e8, (q15_t)0x6e5a, (q15_t)0xd3df, (q15_t)0x6e51, (q15_t)0xd3d5, (q15_t)0x6e49, (q15_t)0xd3cc, (q15_t)0x6e40, (q15_t)0xd3c3, (q15_t)0x6e37, (q15_t)0xd3ba, (q15_t)0x6e2f, (q15_t)0xd3b1, (q15_t)0x6e26, (q15_t)0xd3a8, (q15_t)0x6e1d, (q15_t)0xd39f, (q15_t)0x6e15, (q15_t)0xd396, (q15_t)0x6e0c, (q15_t)0xd38d, (q15_t)0x6e03, (q15_t)0xd384, (q15_t)0x6dfa, (q15_t)0xd37b, (q15_t)0x6df2, (q15_t)0xd372, (q15_t)0x6de9, (q15_t)0xd369, (q15_t)0x6de0, (q15_t)0xd360, (q15_t)0x6dd7, (q15_t)0xd357, (q15_t)0x6dcf, (q15_t)0xd34e, (q15_t)0x6dc6, (q15_t)0xd345, (q15_t)0x6dbd, (q15_t)0xd33c, (q15_t)0x6db4, (q15_t)0xd333, (q15_t)0x6dab, (q15_t)0xd32a, (q15_t)0x6da3, (q15_t)0xd321, (q15_t)0x6d9a, (q15_t)0xd318, (q15_t)0x6d91, (q15_t)0xd30f, (q15_t)0x6d88, (q15_t)0xd306, (q15_t)0x6d7f, (q15_t)0xd2fd, (q15_t)0x6d76, (q15_t)0xd2f4, (q15_t)0x6d6e, (q15_t)0xd2eb, (q15_t)0x6d65, (q15_t)0xd2e2, (q15_t)0x6d5c, (q15_t)0xd2d9, (q15_t)0x6d53, (q15_t)0xd2d1, (q15_t)0x6d4a, (q15_t)0xd2c8, (q15_t)0x6d41, (q15_t)0xd2bf, (q15_t)0x6d38, (q15_t)0xd2b6, (q15_t)0x6d2f, (q15_t)0xd2ad, (q15_t)0x6d27, (q15_t)0xd2a4, (q15_t)0x6d1e, (q15_t)0xd29b, (q15_t)0x6d15, (q15_t)0xd292, (q15_t)0x6d0c, (q15_t)0xd28a, (q15_t)0x6d03, (q15_t)0xd281, (q15_t)0x6cfa, (q15_t)0xd278, (q15_t)0x6cf1, (q15_t)0xd26f, (q15_t)0x6ce8, (q15_t)0xd266, (q15_t)0x6cdf, (q15_t)0xd25d, (q15_t)0x6cd6, (q15_t)0xd255, (q15_t)0x6ccd, (q15_t)0xd24c, (q15_t)0x6cc4, (q15_t)0xd243, (q15_t)0x6cbb, (q15_t)0xd23a, (q15_t)0x6cb2, (q15_t)0xd231, (q15_t)0x6ca9, (q15_t)0xd229, (q15_t)0x6ca0, (q15_t)0xd220, (q15_t)0x6c97, (q15_t)0xd217, (q15_t)0x6c8e, (q15_t)0xd20e, (q15_t)0x6c85, (q15_t)0xd206, (q15_t)0x6c7c, (q15_t)0xd1fd, (q15_t)0x6c73, (q15_t)0xd1f4, (q15_t)0x6c6a, (q15_t)0xd1eb, (q15_t)0x6c61, (q15_t)0xd1e3, (q15_t)0x6c58, (q15_t)0xd1da, (q15_t)0x6c4f, (q15_t)0xd1d1, (q15_t)0x6c46, (q15_t)0xd1c9, (q15_t)0x6c3d, (q15_t)0xd1c0, (q15_t)0x6c34, (q15_t)0xd1b7, (q15_t)0x6c2b, (q15_t)0xd1af, (q15_t)0x6c21, (q15_t)0xd1a6, (q15_t)0x6c18, (q15_t)0xd19d, (q15_t)0x6c0f, (q15_t)0xd195, (q15_t)0x6c06, (q15_t)0xd18c, (q15_t)0x6bfd, (q15_t)0xd183, (q15_t)0x6bf4, (q15_t)0xd17b, (q15_t)0x6beb, (q15_t)0xd172, (q15_t)0x6be2, (q15_t)0xd169, (q15_t)0x6bd8, (q15_t)0xd161, (q15_t)0x6bcf, (q15_t)0xd158, (q15_t)0x6bc6, (q15_t)0xd150, (q15_t)0x6bbd, (q15_t)0xd147, (q15_t)0x6bb4, (q15_t)0xd13e, (q15_t)0x6bab, (q15_t)0xd136, (q15_t)0x6ba1, (q15_t)0xd12d, (q15_t)0x6b98, (q15_t)0xd125, (q15_t)0x6b8f, (q15_t)0xd11c, (q15_t)0x6b86, (q15_t)0xd114, (q15_t)0x6b7d, (q15_t)0xd10b, (q15_t)0x6b73, (q15_t)0xd103, (q15_t)0x6b6a, (q15_t)0xd0fa, (q15_t)0x6b61, (q15_t)0xd0f2, (q15_t)0x6b58, (q15_t)0xd0e9, (q15_t)0x6b4e, (q15_t)0xd0e0, (q15_t)0x6b45, (q15_t)0xd0d8, (q15_t)0x6b3c, (q15_t)0xd0d0, (q15_t)0x6b33, (q15_t)0xd0c7, (q15_t)0x6b29, (q15_t)0xd0bf, (q15_t)0x6b20, (q15_t)0xd0b6, (q15_t)0x6b17, (q15_t)0xd0ae, (q15_t)0x6b0d, (q15_t)0xd0a5, (q15_t)0x6b04, (q15_t)0xd09d, (q15_t)0x6afb, (q15_t)0xd094, (q15_t)0x6af2, (q15_t)0xd08c, (q15_t)0x6ae8, (q15_t)0xd083, (q15_t)0x6adf, (q15_t)0xd07b, (q15_t)0x6ad6, (q15_t)0xd073, (q15_t)0x6acc, (q15_t)0xd06a, (q15_t)0x6ac3, (q15_t)0xd062, (q15_t)0x6ab9, (q15_t)0xd059, (q15_t)0x6ab0, (q15_t)0xd051, (q15_t)0x6aa7, (q15_t)0xd049, (q15_t)0x6a9d, (q15_t)0xd040, (q15_t)0x6a94, (q15_t)0xd038, (q15_t)0x6a8b, (q15_t)0xd030, (q15_t)0x6a81, (q15_t)0xd027, (q15_t)0x6a78, (q15_t)0xd01f, (q15_t)0x6a6e, (q15_t)0xd016, (q15_t)0x6a65, (q15_t)0xd00e, (q15_t)0x6a5c, (q15_t)0xd006, (q15_t)0x6a52, (q15_t)0xcffe, (q15_t)0x6a49, (q15_t)0xcff5, (q15_t)0x6a3f, (q15_t)0xcfed, (q15_t)0x6a36, (q15_t)0xcfe5, (q15_t)0x6a2c, (q15_t)0xcfdc, (q15_t)0x6a23, (q15_t)0xcfd4, (q15_t)0x6a1a, (q15_t)0xcfcc, (q15_t)0x6a10, (q15_t)0xcfc4, (q15_t)0x6a07, (q15_t)0xcfbb, (q15_t)0x69fd, (q15_t)0xcfb3, (q15_t)0x69f4, (q15_t)0xcfab, (q15_t)0x69ea, (q15_t)0xcfa3, (q15_t)0x69e1, (q15_t)0xcf9a, (q15_t)0x69d7, (q15_t)0xcf92, (q15_t)0x69ce, (q15_t)0xcf8a, (q15_t)0x69c4, (q15_t)0xcf82, (q15_t)0x69bb, (q15_t)0xcf79, (q15_t)0x69b1, (q15_t)0xcf71, (q15_t)0x69a7, (q15_t)0xcf69, (q15_t)0x699e, (q15_t)0xcf61, (q15_t)0x6994, (q15_t)0xcf59, (q15_t)0x698b, (q15_t)0xcf51, (q15_t)0x6981, (q15_t)0xcf48, (q15_t)0x6978, (q15_t)0xcf40, (q15_t)0x696e, (q15_t)0xcf38, (q15_t)0x6965, (q15_t)0xcf30, (q15_t)0x695b, (q15_t)0xcf28, (q15_t)0x6951, (q15_t)0xcf20, (q15_t)0x6948, (q15_t)0xcf18, (q15_t)0x693e, (q15_t)0xcf10, (q15_t)0x6935, (q15_t)0xcf07, (q15_t)0x692b, (q15_t)0xceff, (q15_t)0x6921, (q15_t)0xcef7, (q15_t)0x6918, (q15_t)0xceef, (q15_t)0x690e, (q15_t)0xcee7, (q15_t)0x6904, (q15_t)0xcedf, (q15_t)0x68fb, (q15_t)0xced7, (q15_t)0x68f1, (q15_t)0xcecf, (q15_t)0x68e7, (q15_t)0xcec7, (q15_t)0x68de, (q15_t)0xcebf, (q15_t)0x68d4, (q15_t)0xceb7, (q15_t)0x68ca, (q15_t)0xceaf, (q15_t)0x68c1, (q15_t)0xcea7, (q15_t)0x68b7, (q15_t)0xce9f, (q15_t)0x68ad, (q15_t)0xce97, (q15_t)0x68a4, (q15_t)0xce8f, (q15_t)0x689a, (q15_t)0xce87, (q15_t)0x6890, (q15_t)0xce7f, (q15_t)0x6886, (q15_t)0xce77, (q15_t)0x687d, (q15_t)0xce6f, (q15_t)0x6873, (q15_t)0xce67, (q15_t)0x6869, (q15_t)0xce5f, (q15_t)0x6860, (q15_t)0xce57, (q15_t)0x6856, (q15_t)0xce4f, (q15_t)0x684c, (q15_t)0xce47, (q15_t)0x6842, (q15_t)0xce40, (q15_t)0x6838, (q15_t)0xce38, (q15_t)0x682f, (q15_t)0xce30, (q15_t)0x6825, (q15_t)0xce28, (q15_t)0x681b, (q15_t)0xce20, (q15_t)0x6811, (q15_t)0xce18, (q15_t)0x6808, (q15_t)0xce10, (q15_t)0x67fe, (q15_t)0xce08, (q15_t)0x67f4, (q15_t)0xce01, (q15_t)0x67ea, (q15_t)0xcdf9, (q15_t)0x67e0, (q15_t)0xcdf1, (q15_t)0x67d6, (q15_t)0xcde9, (q15_t)0x67cd, (q15_t)0xcde1, (q15_t)0x67c3, (q15_t)0xcdd9, (q15_t)0x67b9, (q15_t)0xcdd2, (q15_t)0x67af, (q15_t)0xcdca, (q15_t)0x67a5, (q15_t)0xcdc2, (q15_t)0x679b, (q15_t)0xcdba, (q15_t)0x6791, (q15_t)0xcdb2, (q15_t)0x6788, (q15_t)0xcdab, (q15_t)0x677e, (q15_t)0xcda3, (q15_t)0x6774, (q15_t)0xcd9b, (q15_t)0x676a, (q15_t)0xcd93, (q15_t)0x6760, (q15_t)0xcd8c, (q15_t)0x6756, (q15_t)0xcd84, (q15_t)0x674c, (q15_t)0xcd7c, (q15_t)0x6742, (q15_t)0xcd75, (q15_t)0x6738, (q15_t)0xcd6d, (q15_t)0x672e, (q15_t)0xcd65, (q15_t)0x6724, (q15_t)0xcd5d, (q15_t)0x671a, (q15_t)0xcd56, (q15_t)0x6711, (q15_t)0xcd4e, (q15_t)0x6707, (q15_t)0xcd46, (q15_t)0x66fd, (q15_t)0xcd3f, (q15_t)0x66f3, (q15_t)0xcd37, (q15_t)0x66e9, (q15_t)0xcd30, (q15_t)0x66df, (q15_t)0xcd28, (q15_t)0x66d5, (q15_t)0xcd20, (q15_t)0x66cb, (q15_t)0xcd19, (q15_t)0x66c1, (q15_t)0xcd11, (q15_t)0x66b7, (q15_t)0xcd09, (q15_t)0x66ad, (q15_t)0xcd02, (q15_t)0x66a3, (q15_t)0xccfa, (q15_t)0x6699, (q15_t)0xccf3, (q15_t)0x668f, (q15_t)0xcceb, (q15_t)0x6685, (q15_t)0xcce3, (q15_t)0x667b, (q15_t)0xccdc, (q15_t)0x6671, (q15_t)0xccd4, (q15_t)0x6666, (q15_t)0xcccd, (q15_t)0x665c, (q15_t)0xccc5, (q15_t)0x6652, (q15_t)0xccbe, (q15_t)0x6648, (q15_t)0xccb6, (q15_t)0x663e, (q15_t)0xccaf, (q15_t)0x6634, (q15_t)0xcca7, (q15_t)0x662a, (q15_t)0xcca0, (q15_t)0x6620, (q15_t)0xcc98, (q15_t)0x6616, (q15_t)0xcc91, (q15_t)0x660c, (q15_t)0xcc89, (q15_t)0x6602, (q15_t)0xcc82, (q15_t)0x65f8, (q15_t)0xcc7a, (q15_t)0x65ed, (q15_t)0xcc73, (q15_t)0x65e3, (q15_t)0xcc6b, (q15_t)0x65d9, (q15_t)0xcc64, (q15_t)0x65cf, (q15_t)0xcc5d, (q15_t)0x65c5, (q15_t)0xcc55, (q15_t)0x65bb, (q15_t)0xcc4e, (q15_t)0x65b1, (q15_t)0xcc46, (q15_t)0x65a6, (q15_t)0xcc3f, (q15_t)0x659c, (q15_t)0xcc38, (q15_t)0x6592, (q15_t)0xcc30, (q15_t)0x6588, (q15_t)0xcc29, (q15_t)0x657e, (q15_t)0xcc21, (q15_t)0x6574, (q15_t)0xcc1a, (q15_t)0x6569, (q15_t)0xcc13, (q15_t)0x655f, (q15_t)0xcc0b, (q15_t)0x6555, (q15_t)0xcc04, (q15_t)0x654b, (q15_t)0xcbfd, (q15_t)0x6541, (q15_t)0xcbf5, (q15_t)0x6536, (q15_t)0xcbee, (q15_t)0x652c, (q15_t)0xcbe7, (q15_t)0x6522, (q15_t)0xcbe0, (q15_t)0x6518, (q15_t)0xcbd8, (q15_t)0x650d, (q15_t)0xcbd1, (q15_t)0x6503, (q15_t)0xcbca, (q15_t)0x64f9, (q15_t)0xcbc2, (q15_t)0x64ef, (q15_t)0xcbbb, (q15_t)0x64e4, (q15_t)0xcbb4, (q15_t)0x64da, (q15_t)0xcbad, (q15_t)0x64d0, (q15_t)0xcba5, (q15_t)0x64c5, (q15_t)0xcb9e, (q15_t)0x64bb, (q15_t)0xcb97, (q15_t)0x64b1, (q15_t)0xcb90, (q15_t)0x64a7, (q15_t)0xcb89, (q15_t)0x649c, (q15_t)0xcb81, (q15_t)0x6492, (q15_t)0xcb7a, (q15_t)0x6488, (q15_t)0xcb73, (q15_t)0x647d, (q15_t)0xcb6c, (q15_t)0x6473, (q15_t)0xcb65, (q15_t)0x6469, (q15_t)0xcb5e, (q15_t)0x645e, (q15_t)0xcb56, (q15_t)0x6454, (q15_t)0xcb4f, (q15_t)0x644a, (q15_t)0xcb48, (q15_t)0x643f, (q15_t)0xcb41, (q15_t)0x6435, (q15_t)0xcb3a, (q15_t)0x642b, (q15_t)0xcb33, (q15_t)0x6420, (q15_t)0xcb2c, (q15_t)0x6416, (q15_t)0xcb25, (q15_t)0x640b, (q15_t)0xcb1e, (q15_t)0x6401, (q15_t)0xcb16, (q15_t)0x63f7, (q15_t)0xcb0f, (q15_t)0x63ec, (q15_t)0xcb08, (q15_t)0x63e2, (q15_t)0xcb01, (q15_t)0x63d7, (q15_t)0xcafa, (q15_t)0x63cd, (q15_t)0xcaf3, (q15_t)0x63c3, (q15_t)0xcaec, (q15_t)0x63b8, (q15_t)0xcae5, (q15_t)0x63ae, (q15_t)0xcade, (q15_t)0x63a3, (q15_t)0xcad7, (q15_t)0x6399, (q15_t)0xcad0, (q15_t)0x638e, (q15_t)0xcac9, (q15_t)0x6384, (q15_t)0xcac2, (q15_t)0x637a, (q15_t)0xcabb, (q15_t)0x636f, (q15_t)0xcab4, (q15_t)0x6365, (q15_t)0xcaad, (q15_t)0x635a, (q15_t)0xcaa6, (q15_t)0x6350, (q15_t)0xca9f, (q15_t)0x6345, (q15_t)0xca99, (q15_t)0x633b, (q15_t)0xca92, (q15_t)0x6330, (q15_t)0xca8b, (q15_t)0x6326, (q15_t)0xca84, (q15_t)0x631b, (q15_t)0xca7d, (q15_t)0x6311, (q15_t)0xca76, (q15_t)0x6306, (q15_t)0xca6f, (q15_t)0x62fc, (q15_t)0xca68, (q15_t)0x62f1, (q15_t)0xca61, (q15_t)0x62e7, (q15_t)0xca5b, (q15_t)0x62dc, (q15_t)0xca54, (q15_t)0x62d2, (q15_t)0xca4d, (q15_t)0x62c7, (q15_t)0xca46, (q15_t)0x62bc, (q15_t)0xca3f, (q15_t)0x62b2, (q15_t)0xca38, (q15_t)0x62a7, (q15_t)0xca32, (q15_t)0x629d, (q15_t)0xca2b, (q15_t)0x6292, (q15_t)0xca24, (q15_t)0x6288, (q15_t)0xca1d, (q15_t)0x627d, (q15_t)0xca16, (q15_t)0x6272, (q15_t)0xca10, (q15_t)0x6268, (q15_t)0xca09, (q15_t)0x625d, (q15_t)0xca02, (q15_t)0x6253, (q15_t)0xc9fb, (q15_t)0x6248, (q15_t)0xc9f5, (q15_t)0x623d, (q15_t)0xc9ee, (q15_t)0x6233, (q15_t)0xc9e7, (q15_t)0x6228, (q15_t)0xc9e0, (q15_t)0x621e, (q15_t)0xc9da, (q15_t)0x6213, (q15_t)0xc9d3, (q15_t)0x6208, (q15_t)0xc9cc, (q15_t)0x61fe, (q15_t)0xc9c6, (q15_t)0x61f3, (q15_t)0xc9bf, (q15_t)0x61e8, (q15_t)0xc9b8, (q15_t)0x61de, (q15_t)0xc9b2, (q15_t)0x61d3, (q15_t)0xc9ab, (q15_t)0x61c8, (q15_t)0xc9a4, (q15_t)0x61be, (q15_t)0xc99e, (q15_t)0x61b3, (q15_t)0xc997, (q15_t)0x61a8, (q15_t)0xc991, (q15_t)0x619e, (q15_t)0xc98a, (q15_t)0x6193, (q15_t)0xc983, (q15_t)0x6188, (q15_t)0xc97d, (q15_t)0x617d, (q15_t)0xc976, (q15_t)0x6173, (q15_t)0xc970, (q15_t)0x6168, (q15_t)0xc969, (q15_t)0x615d, (q15_t)0xc963, (q15_t)0x6153, (q15_t)0xc95c, (q15_t)0x6148, (q15_t)0xc955, (q15_t)0x613d, (q15_t)0xc94f, (q15_t)0x6132, (q15_t)0xc948, (q15_t)0x6128, (q15_t)0xc942, (q15_t)0x611d, (q15_t)0xc93b, (q15_t)0x6112, (q15_t)0xc935, (q15_t)0x6107, (q15_t)0xc92e, (q15_t)0x60fd, (q15_t)0xc928, (q15_t)0x60f2, (q15_t)0xc921, (q15_t)0x60e7, (q15_t)0xc91b, (q15_t)0x60dc, (q15_t)0xc915, (q15_t)0x60d1, (q15_t)0xc90e, (q15_t)0x60c7, (q15_t)0xc908, (q15_t)0x60bc, (q15_t)0xc901, (q15_t)0x60b1, (q15_t)0xc8fb, (q15_t)0x60a6, (q15_t)0xc8f4, (q15_t)0x609b, (q15_t)0xc8ee, (q15_t)0x6091, (q15_t)0xc8e8, (q15_t)0x6086, (q15_t)0xc8e1, (q15_t)0x607b, (q15_t)0xc8db, (q15_t)0x6070, (q15_t)0xc8d4, (q15_t)0x6065, (q15_t)0xc8ce, (q15_t)0x605b, (q15_t)0xc8c8, (q15_t)0x6050, (q15_t)0xc8c1, (q15_t)0x6045, (q15_t)0xc8bb, (q15_t)0x603a, (q15_t)0xc8b5, (q15_t)0x602f, (q15_t)0xc8ae, (q15_t)0x6024, (q15_t)0xc8a8, (q15_t)0x6019, (q15_t)0xc8a2, (q15_t)0x600f, (q15_t)0xc89b, (q15_t)0x6004, (q15_t)0xc895, (q15_t)0x5ff9, (q15_t)0xc88f, (q15_t)0x5fee, (q15_t)0xc889, (q15_t)0x5fe3, (q15_t)0xc882, (q15_t)0x5fd8, (q15_t)0xc87c, (q15_t)0x5fcd, (q15_t)0xc876, (q15_t)0x5fc2, (q15_t)0xc870, (q15_t)0x5fb7, (q15_t)0xc869, (q15_t)0x5fac, (q15_t)0xc863, (q15_t)0x5fa2, (q15_t)0xc85d, (q15_t)0x5f97, (q15_t)0xc857, (q15_t)0x5f8c, (q15_t)0xc850, (q15_t)0x5f81, (q15_t)0xc84a, (q15_t)0x5f76, (q15_t)0xc844, (q15_t)0x5f6b, (q15_t)0xc83e, (q15_t)0x5f60, (q15_t)0xc838, (q15_t)0x5f55, (q15_t)0xc832, (q15_t)0x5f4a, (q15_t)0xc82b, (q15_t)0x5f3f, (q15_t)0xc825, (q15_t)0x5f34, (q15_t)0xc81f, (q15_t)0x5f29, (q15_t)0xc819, (q15_t)0x5f1e, (q15_t)0xc813, (q15_t)0x5f13, (q15_t)0xc80d, (q15_t)0x5f08, (q15_t)0xc807, (q15_t)0x5efd, (q15_t)0xc801, (q15_t)0x5ef2, (q15_t)0xc7fb, (q15_t)0x5ee7, (q15_t)0xc7f5, (q15_t)0x5edc, (q15_t)0xc7ee, (q15_t)0x5ed1, (q15_t)0xc7e8, (q15_t)0x5ec6, (q15_t)0xc7e2, (q15_t)0x5ebb, (q15_t)0xc7dc, (q15_t)0x5eb0, (q15_t)0xc7d6, (q15_t)0x5ea5, (q15_t)0xc7d0, (q15_t)0x5e9a, (q15_t)0xc7ca, (q15_t)0x5e8f, (q15_t)0xc7c4, (q15_t)0x5e84, (q15_t)0xc7be, (q15_t)0x5e79, (q15_t)0xc7b8, (q15_t)0x5e6e, (q15_t)0xc7b2, (q15_t)0x5e63, (q15_t)0xc7ac, (q15_t)0x5e58, (q15_t)0xc7a6, (q15_t)0x5e4d, (q15_t)0xc7a0, (q15_t)0x5e42, (q15_t)0xc79a, (q15_t)0x5e36, (q15_t)0xc795, (q15_t)0x5e2b, (q15_t)0xc78f, (q15_t)0x5e20, (q15_t)0xc789, (q15_t)0x5e15, (q15_t)0xc783, (q15_t)0x5e0a, (q15_t)0xc77d, (q15_t)0x5dff, (q15_t)0xc777, (q15_t)0x5df4, (q15_t)0xc771, (q15_t)0x5de9, (q15_t)0xc76b, (q15_t)0x5dde, (q15_t)0xc765, (q15_t)0x5dd3, (q15_t)0xc75f, (q15_t)0x5dc7, (q15_t)0xc75a, (q15_t)0x5dbc, (q15_t)0xc754, (q15_t)0x5db1, (q15_t)0xc74e, (q15_t)0x5da6, (q15_t)0xc748, (q15_t)0x5d9b, (q15_t)0xc742, (q15_t)0x5d90, (q15_t)0xc73d, (q15_t)0x5d85, (q15_t)0xc737, (q15_t)0x5d79, (q15_t)0xc731, (q15_t)0x5d6e, (q15_t)0xc72b, (q15_t)0x5d63, (q15_t)0xc725, (q15_t)0x5d58, (q15_t)0xc720, (q15_t)0x5d4d, (q15_t)0xc71a, (q15_t)0x5d42, (q15_t)0xc714, (q15_t)0x5d36, (q15_t)0xc70e, (q15_t)0x5d2b, (q15_t)0xc709, (q15_t)0x5d20, (q15_t)0xc703, (q15_t)0x5d15, (q15_t)0xc6fd, (q15_t)0x5d0a, (q15_t)0xc6f7, (q15_t)0x5cff, (q15_t)0xc6f2, (q15_t)0x5cf3, (q15_t)0xc6ec, (q15_t)0x5ce8, (q15_t)0xc6e6, (q15_t)0x5cdd, (q15_t)0xc6e1, (q15_t)0x5cd2, (q15_t)0xc6db, (q15_t)0x5cc6, (q15_t)0xc6d5, (q15_t)0x5cbb, (q15_t)0xc6d0, (q15_t)0x5cb0, (q15_t)0xc6ca, (q15_t)0x5ca5, (q15_t)0xc6c5, (q15_t)0x5c99, (q15_t)0xc6bf, (q15_t)0x5c8e, (q15_t)0xc6b9, (q15_t)0x5c83, (q15_t)0xc6b4, (q15_t)0x5c78, (q15_t)0xc6ae, (q15_t)0x5c6c, (q15_t)0xc6a8, (q15_t)0x5c61, (q15_t)0xc6a3, (q15_t)0x5c56, (q15_t)0xc69d, (q15_t)0x5c4b, (q15_t)0xc698, (q15_t)0x5c3f, (q15_t)0xc692, (q15_t)0x5c34, (q15_t)0xc68d, (q15_t)0x5c29, (q15_t)0xc687, (q15_t)0x5c1e, (q15_t)0xc682, (q15_t)0x5c12, (q15_t)0xc67c, (q15_t)0x5c07, (q15_t)0xc677, (q15_t)0x5bfc, (q15_t)0xc671, (q15_t)0x5bf0, (q15_t)0xc66c, (q15_t)0x5be5, (q15_t)0xc666, (q15_t)0x5bda, (q15_t)0xc661, (q15_t)0x5bce, (q15_t)0xc65b, (q15_t)0x5bc3, (q15_t)0xc656, (q15_t)0x5bb8, (q15_t)0xc650, (q15_t)0x5bac, (q15_t)0xc64b, (q15_t)0x5ba1, (q15_t)0xc645, (q15_t)0x5b96, (q15_t)0xc640, (q15_t)0x5b8a, (q15_t)0xc63b, (q15_t)0x5b7f, (q15_t)0xc635, (q15_t)0x5b74, (q15_t)0xc630, (q15_t)0x5b68, (q15_t)0xc62a, (q15_t)0x5b5d, (q15_t)0xc625, (q15_t)0x5b52, (q15_t)0xc620, (q15_t)0x5b46, (q15_t)0xc61a, (q15_t)0x5b3b, (q15_t)0xc615, (q15_t)0x5b30, (q15_t)0xc610, (q15_t)0x5b24, (q15_t)0xc60a, (q15_t)0x5b19, (q15_t)0xc605, (q15_t)0x5b0d, (q15_t)0xc600, (q15_t)0x5b02, (q15_t)0xc5fa, (q15_t)0x5af7, (q15_t)0xc5f5, (q15_t)0x5aeb, (q15_t)0xc5f0, (q15_t)0x5ae0, (q15_t)0xc5ea, (q15_t)0x5ad4, (q15_t)0xc5e5, (q15_t)0x5ac9, (q15_t)0xc5e0, (q15_t)0x5abe, (q15_t)0xc5db, (q15_t)0x5ab2, (q15_t)0xc5d5, (q15_t)0x5aa7, (q15_t)0xc5d0, (q15_t)0x5a9b, (q15_t)0xc5cb, (q15_t)0x5a90, (q15_t)0xc5c6, (q15_t)0x5a84, (q15_t)0xc5c1, (q15_t)0x5a79, (q15_t)0xc5bb, (q15_t)0x5a6e, (q15_t)0xc5b6, (q15_t)0x5a62, (q15_t)0xc5b1, (q15_t)0x5a57, (q15_t)0xc5ac, (q15_t)0x5a4b, (q15_t)0xc5a7, (q15_t)0x5a40, (q15_t)0xc5a1, (q15_t)0x5a34, (q15_t)0xc59c, (q15_t)0x5a29, (q15_t)0xc597, (q15_t)0x5a1d, (q15_t)0xc592, (q15_t)0x5a12, (q15_t)0xc58d, (q15_t)0x5a06, (q15_t)0xc588, (q15_t)0x59fb, (q15_t)0xc583, (q15_t)0x59ef, (q15_t)0xc57e, (q15_t)0x59e4, (q15_t)0xc578, (q15_t)0x59d8, (q15_t)0xc573, (q15_t)0x59cd, (q15_t)0xc56e, (q15_t)0x59c1, (q15_t)0xc569, (q15_t)0x59b6, (q15_t)0xc564, (q15_t)0x59aa, (q15_t)0xc55f, (q15_t)0x599f, (q15_t)0xc55a, (q15_t)0x5993, (q15_t)0xc555, (q15_t)0x5988, (q15_t)0xc550, (q15_t)0x597c, (q15_t)0xc54b, (q15_t)0x5971, (q15_t)0xc546, (q15_t)0x5965, (q15_t)0xc541, (q15_t)0x595a, (q15_t)0xc53c, (q15_t)0x594e, (q15_t)0xc537, (q15_t)0x5943, (q15_t)0xc532, (q15_t)0x5937, (q15_t)0xc52d, (q15_t)0x592c, (q15_t)0xc528, (q15_t)0x5920, (q15_t)0xc523, (q15_t)0x5914, (q15_t)0xc51e, (q15_t)0x5909, (q15_t)0xc51a, (q15_t)0x58fd, (q15_t)0xc515, (q15_t)0x58f2, (q15_t)0xc510, (q15_t)0x58e6, (q15_t)0xc50b, (q15_t)0x58db, (q15_t)0xc506, (q15_t)0x58cf, (q15_t)0xc501, (q15_t)0x58c3, (q15_t)0xc4fc, (q15_t)0x58b8, (q15_t)0xc4f7, (q15_t)0x58ac, (q15_t)0xc4f2, (q15_t)0x58a1, (q15_t)0xc4ee, (q15_t)0x5895, (q15_t)0xc4e9, (q15_t)0x5889, (q15_t)0xc4e4, (q15_t)0x587e, (q15_t)0xc4df, (q15_t)0x5872, (q15_t)0xc4da, (q15_t)0x5867, (q15_t)0xc4d6, (q15_t)0x585b, (q15_t)0xc4d1, (q15_t)0x584f, (q15_t)0xc4cc, (q15_t)0x5844, (q15_t)0xc4c7, (q15_t)0x5838, (q15_t)0xc4c2, (q15_t)0x582d, (q15_t)0xc4be, (q15_t)0x5821, (q15_t)0xc4b9, (q15_t)0x5815, (q15_t)0xc4b4, (q15_t)0x580a, (q15_t)0xc4b0, (q15_t)0x57fe, (q15_t)0xc4ab, (q15_t)0x57f2, (q15_t)0xc4a6, (q15_t)0x57e7, (q15_t)0xc4a1, (q15_t)0x57db, (q15_t)0xc49d, (q15_t)0x57cf, (q15_t)0xc498, (q15_t)0x57c4, (q15_t)0xc493, (q15_t)0x57b8, (q15_t)0xc48f, (q15_t)0x57ac, (q15_t)0xc48a, (q15_t)0x57a1, (q15_t)0xc485, (q15_t)0x5795, (q15_t)0xc481, (q15_t)0x5789, (q15_t)0xc47c, (q15_t)0x577e, (q15_t)0xc478, (q15_t)0x5772, (q15_t)0xc473, (q15_t)0x5766, (q15_t)0xc46e, (q15_t)0x575b, (q15_t)0xc46a, (q15_t)0x574f, (q15_t)0xc465, (q15_t)0x5743, (q15_t)0xc461, (q15_t)0x5737, (q15_t)0xc45c, (q15_t)0x572c, (q15_t)0xc457, (q15_t)0x5720, (q15_t)0xc453, (q15_t)0x5714, (q15_t)0xc44e, (q15_t)0x5709, (q15_t)0xc44a, (q15_t)0x56fd, (q15_t)0xc445, (q15_t)0x56f1, (q15_t)0xc441, (q15_t)0x56e5, (q15_t)0xc43c, (q15_t)0x56da, (q15_t)0xc438, (q15_t)0x56ce, (q15_t)0xc433, (q15_t)0x56c2, (q15_t)0xc42f, (q15_t)0x56b6, (q15_t)0xc42a, (q15_t)0x56ab, (q15_t)0xc426, (q15_t)0x569f, (q15_t)0xc422, (q15_t)0x5693, (q15_t)0xc41d, (q15_t)0x5687, (q15_t)0xc419, (q15_t)0x567c, (q15_t)0xc414, (q15_t)0x5670, (q15_t)0xc410, (q15_t)0x5664, (q15_t)0xc40b, (q15_t)0x5658, (q15_t)0xc407, (q15_t)0x564c, (q15_t)0xc403, (q15_t)0x5641, (q15_t)0xc3fe, (q15_t)0x5635, (q15_t)0xc3fa, (q15_t)0x5629, (q15_t)0xc3f6, (q15_t)0x561d, (q15_t)0xc3f1, (q15_t)0x5612, (q15_t)0xc3ed, (q15_t)0x5606, (q15_t)0xc3e9, (q15_t)0x55fa, (q15_t)0xc3e4, (q15_t)0x55ee, (q15_t)0xc3e0, (q15_t)0x55e2, (q15_t)0xc3dc, (q15_t)0x55d7, (q15_t)0xc3d7, (q15_t)0x55cb, (q15_t)0xc3d3, (q15_t)0x55bf, (q15_t)0xc3cf, (q15_t)0x55b3, (q15_t)0xc3ca, (q15_t)0x55a7, (q15_t)0xc3c6, (q15_t)0x559b, (q15_t)0xc3c2, (q15_t)0x5590, (q15_t)0xc3be, (q15_t)0x5584, (q15_t)0xc3ba, (q15_t)0x5578, (q15_t)0xc3b5, (q15_t)0x556c, (q15_t)0xc3b1, (q15_t)0x5560, (q15_t)0xc3ad, (q15_t)0x5554, (q15_t)0xc3a9, (q15_t)0x5549, (q15_t)0xc3a5, (q15_t)0x553d, (q15_t)0xc3a0, (q15_t)0x5531, (q15_t)0xc39c, (q15_t)0x5525, (q15_t)0xc398, (q15_t)0x5519, (q15_t)0xc394, (q15_t)0x550d, (q15_t)0xc390, (q15_t)0x5501, (q15_t)0xc38c, (q15_t)0x54f6, (q15_t)0xc387, (q15_t)0x54ea, (q15_t)0xc383, (q15_t)0x54de, (q15_t)0xc37f, (q15_t)0x54d2, (q15_t)0xc37b, (q15_t)0x54c6, (q15_t)0xc377, (q15_t)0x54ba, (q15_t)0xc373, (q15_t)0x54ae, (q15_t)0xc36f, (q15_t)0x54a2, (q15_t)0xc36b, (q15_t)0x5496, (q15_t)0xc367, (q15_t)0x548b, (q15_t)0xc363, (q15_t)0x547f, (q15_t)0xc35f, (q15_t)0x5473, (q15_t)0xc35b, (q15_t)0x5467, (q15_t)0xc357, (q15_t)0x545b, (q15_t)0xc353, (q15_t)0x544f, (q15_t)0xc34f, (q15_t)0x5443, (q15_t)0xc34b, (q15_t)0x5437, (q15_t)0xc347, (q15_t)0x542b, (q15_t)0xc343, (q15_t)0x541f, (q15_t)0xc33f, (q15_t)0x5413, (q15_t)0xc33b, (q15_t)0x5407, (q15_t)0xc337, (q15_t)0x53fb, (q15_t)0xc333, (q15_t)0x53f0, (q15_t)0xc32f, (q15_t)0x53e4, (q15_t)0xc32b, (q15_t)0x53d8, (q15_t)0xc327, (q15_t)0x53cc, (q15_t)0xc323, (q15_t)0x53c0, (q15_t)0xc320, (q15_t)0x53b4, (q15_t)0xc31c, (q15_t)0x53a8, (q15_t)0xc318, (q15_t)0x539c, (q15_t)0xc314, (q15_t)0x5390, (q15_t)0xc310, (q15_t)0x5384, (q15_t)0xc30c, (q15_t)0x5378, (q15_t)0xc308, (q15_t)0x536c, (q15_t)0xc305, (q15_t)0x5360, (q15_t)0xc301, (q15_t)0x5354, (q15_t)0xc2fd, (q15_t)0x5348, (q15_t)0xc2f9, (q15_t)0x533c, (q15_t)0xc2f5, (q15_t)0x5330, (q15_t)0xc2f2, (q15_t)0x5324, (q15_t)0xc2ee, (q15_t)0x5318, (q15_t)0xc2ea, (q15_t)0x530c, (q15_t)0xc2e6, (q15_t)0x5300, (q15_t)0xc2e3, (q15_t)0x52f4, (q15_t)0xc2df, (q15_t)0x52e8, (q15_t)0xc2db, (q15_t)0x52dc, (q15_t)0xc2d8, (q15_t)0x52d0, (q15_t)0xc2d4, (q15_t)0x52c4, (q15_t)0xc2d0, (q15_t)0x52b8, (q15_t)0xc2cc, (q15_t)0x52ac, (q15_t)0xc2c9, (q15_t)0x52a0, (q15_t)0xc2c5, (q15_t)0x5294, (q15_t)0xc2c1, (q15_t)0x5288, (q15_t)0xc2be, (q15_t)0x527c, (q15_t)0xc2ba, (q15_t)0x5270, (q15_t)0xc2b7, (q15_t)0x5264, (q15_t)0xc2b3, (q15_t)0x5258, (q15_t)0xc2af, (q15_t)0x524c, (q15_t)0xc2ac, (q15_t)0x5240, (q15_t)0xc2a8, (q15_t)0x5234, (q15_t)0xc2a5, (q15_t)0x5228, (q15_t)0xc2a1, (q15_t)0x521c, (q15_t)0xc29d, (q15_t)0x5210, (q15_t)0xc29a, (q15_t)0x5204, (q15_t)0xc296, (q15_t)0x51f7, (q15_t)0xc293, (q15_t)0x51eb, (q15_t)0xc28f, (q15_t)0x51df, (q15_t)0xc28c, (q15_t)0x51d3, (q15_t)0xc288, (q15_t)0x51c7, (q15_t)0xc285, (q15_t)0x51bb, (q15_t)0xc281, (q15_t)0x51af, (q15_t)0xc27e, (q15_t)0x51a3, (q15_t)0xc27a, (q15_t)0x5197, (q15_t)0xc277, (q15_t)0x518b, (q15_t)0xc273, (q15_t)0x517f, (q15_t)0xc270, (q15_t)0x5173, (q15_t)0xc26d, (q15_t)0x5167, (q15_t)0xc269, (q15_t)0x515a, (q15_t)0xc266, (q15_t)0x514e, (q15_t)0xc262, (q15_t)0x5142, (q15_t)0xc25f, (q15_t)0x5136, (q15_t)0xc25c, (q15_t)0x512a, (q15_t)0xc258, (q15_t)0x511e, (q15_t)0xc255, (q15_t)0x5112, (q15_t)0xc251, (q15_t)0x5106, (q15_t)0xc24e, (q15_t)0x50fa, (q15_t)0xc24b, (q15_t)0x50ed, (q15_t)0xc247, (q15_t)0x50e1, (q15_t)0xc244, (q15_t)0x50d5, (q15_t)0xc241, (q15_t)0x50c9, (q15_t)0xc23e, (q15_t)0x50bd, (q15_t)0xc23a, (q15_t)0x50b1, (q15_t)0xc237, (q15_t)0x50a5, (q15_t)0xc234, (q15_t)0x5099, (q15_t)0xc230, (q15_t)0x508c, (q15_t)0xc22d, (q15_t)0x5080, (q15_t)0xc22a, (q15_t)0x5074, (q15_t)0xc227, (q15_t)0x5068, (q15_t)0xc223, (q15_t)0x505c, (q15_t)0xc220, (q15_t)0x5050, (q15_t)0xc21d, (q15_t)0x5044, (q15_t)0xc21a, (q15_t)0x5037, (q15_t)0xc217, (q15_t)0x502b, (q15_t)0xc213, (q15_t)0x501f, (q15_t)0xc210, (q15_t)0x5013, (q15_t)0xc20d, (q15_t)0x5007, (q15_t)0xc20a, (q15_t)0x4ffb, (q15_t)0xc207, (q15_t)0x4fee, (q15_t)0xc204, (q15_t)0x4fe2, (q15_t)0xc201, (q15_t)0x4fd6, (q15_t)0xc1fd, (q15_t)0x4fca, (q15_t)0xc1fa, (q15_t)0x4fbe, (q15_t)0xc1f7, (q15_t)0x4fb2, (q15_t)0xc1f4, (q15_t)0x4fa5, (q15_t)0xc1f1, (q15_t)0x4f99, (q15_t)0xc1ee, (q15_t)0x4f8d, (q15_t)0xc1eb, (q15_t)0x4f81, (q15_t)0xc1e8, (q15_t)0x4f75, (q15_t)0xc1e5, (q15_t)0x4f68, (q15_t)0xc1e2, (q15_t)0x4f5c, (q15_t)0xc1df, (q15_t)0x4f50, (q15_t)0xc1dc, (q15_t)0x4f44, (q15_t)0xc1d9, (q15_t)0x4f38, (q15_t)0xc1d6, (q15_t)0x4f2b, (q15_t)0xc1d3, (q15_t)0x4f1f, (q15_t)0xc1d0, (q15_t)0x4f13, (q15_t)0xc1cd, (q15_t)0x4f07, (q15_t)0xc1ca, (q15_t)0x4efb, (q15_t)0xc1c7, (q15_t)0x4eee, (q15_t)0xc1c4, (q15_t)0x4ee2, (q15_t)0xc1c1, (q15_t)0x4ed6, (q15_t)0xc1be, (q15_t)0x4eca, (q15_t)0xc1bb, (q15_t)0x4ebd, (q15_t)0xc1b8, (q15_t)0x4eb1, (q15_t)0xc1b6, (q15_t)0x4ea5, (q15_t)0xc1b3, (q15_t)0x4e99, (q15_t)0xc1b0, (q15_t)0x4e8c, (q15_t)0xc1ad, (q15_t)0x4e80, (q15_t)0xc1aa, (q15_t)0x4e74, (q15_t)0xc1a7, (q15_t)0x4e68, (q15_t)0xc1a4, (q15_t)0x4e5c, (q15_t)0xc1a2, (q15_t)0x4e4f, (q15_t)0xc19f, (q15_t)0x4e43, (q15_t)0xc19c, (q15_t)0x4e37, (q15_t)0xc199, (q15_t)0x4e2b, (q15_t)0xc196, (q15_t)0x4e1e, (q15_t)0xc194, (q15_t)0x4e12, (q15_t)0xc191, (q15_t)0x4e06, (q15_t)0xc18e, (q15_t)0x4df9, (q15_t)0xc18b, (q15_t)0x4ded, (q15_t)0xc189, (q15_t)0x4de1, (q15_t)0xc186, (q15_t)0x4dd5, (q15_t)0xc183, (q15_t)0x4dc8, (q15_t)0xc180, (q15_t)0x4dbc, (q15_t)0xc17e, (q15_t)0x4db0, (q15_t)0xc17b, (q15_t)0x4da4, (q15_t)0xc178, (q15_t)0x4d97, (q15_t)0xc176, (q15_t)0x4d8b, (q15_t)0xc173, (q15_t)0x4d7f, (q15_t)0xc170, (q15_t)0x4d72, (q15_t)0xc16e, (q15_t)0x4d66, (q15_t)0xc16b, (q15_t)0x4d5a, (q15_t)0xc168, (q15_t)0x4d4e, (q15_t)0xc166, (q15_t)0x4d41, (q15_t)0xc163, (q15_t)0x4d35, (q15_t)0xc161, (q15_t)0x4d29, (q15_t)0xc15e, (q15_t)0x4d1c, (q15_t)0xc15b, (q15_t)0x4d10, (q15_t)0xc159, (q15_t)0x4d04, (q15_t)0xc156, (q15_t)0x4cf8, (q15_t)0xc154, (q15_t)0x4ceb, (q15_t)0xc151, (q15_t)0x4cdf, (q15_t)0xc14f, (q15_t)0x4cd3, (q15_t)0xc14c, (q15_t)0x4cc6, (q15_t)0xc14a, (q15_t)0x4cba, (q15_t)0xc147, (q15_t)0x4cae, (q15_t)0xc145, (q15_t)0x4ca1, (q15_t)0xc142, (q15_t)0x4c95, (q15_t)0xc140, (q15_t)0x4c89, (q15_t)0xc13d, (q15_t)0x4c7c, (q15_t)0xc13b, (q15_t)0x4c70, (q15_t)0xc138, (q15_t)0x4c64, (q15_t)0xc136, (q15_t)0x4c57, (q15_t)0xc134, (q15_t)0x4c4b, (q15_t)0xc131, (q15_t)0x4c3f, (q15_t)0xc12f, (q15_t)0x4c32, (q15_t)0xc12c, (q15_t)0x4c26, (q15_t)0xc12a, (q15_t)0x4c1a, (q15_t)0xc128, (q15_t)0x4c0d, (q15_t)0xc125, (q15_t)0x4c01, (q15_t)0xc123, (q15_t)0x4bf5, (q15_t)0xc120, (q15_t)0x4be8, (q15_t)0xc11e, (q15_t)0x4bdc, (q15_t)0xc11c, (q15_t)0x4bd0, (q15_t)0xc119, (q15_t)0x4bc3, (q15_t)0xc117, (q15_t)0x4bb7, (q15_t)0xc115, (q15_t)0x4bab, (q15_t)0xc113, (q15_t)0x4b9e, (q15_t)0xc110, (q15_t)0x4b92, (q15_t)0xc10e, (q15_t)0x4b85, (q15_t)0xc10c, (q15_t)0x4b79, (q15_t)0xc109, (q15_t)0x4b6d, (q15_t)0xc107, (q15_t)0x4b60, (q15_t)0xc105, (q15_t)0x4b54, (q15_t)0xc103, (q15_t)0x4b48, (q15_t)0xc100, (q15_t)0x4b3b, (q15_t)0xc0fe, (q15_t)0x4b2f, (q15_t)0xc0fc, (q15_t)0x4b23, (q15_t)0xc0fa, (q15_t)0x4b16, (q15_t)0xc0f8, (q15_t)0x4b0a, (q15_t)0xc0f6, (q15_t)0x4afd, (q15_t)0xc0f3, (q15_t)0x4af1, (q15_t)0xc0f1, (q15_t)0x4ae5, (q15_t)0xc0ef, (q15_t)0x4ad8, (q15_t)0xc0ed, (q15_t)0x4acc, (q15_t)0xc0eb, (q15_t)0x4ac0, (q15_t)0xc0e9, (q15_t)0x4ab3, (q15_t)0xc0e7, (q15_t)0x4aa7, (q15_t)0xc0e4, (q15_t)0x4a9a, (q15_t)0xc0e2, (q15_t)0x4a8e, (q15_t)0xc0e0, (q15_t)0x4a82, (q15_t)0xc0de, (q15_t)0x4a75, (q15_t)0xc0dc, (q15_t)0x4a69, (q15_t)0xc0da, (q15_t)0x4a5c, (q15_t)0xc0d8, (q15_t)0x4a50, (q15_t)0xc0d6, (q15_t)0x4a44, (q15_t)0xc0d4, (q15_t)0x4a37, (q15_t)0xc0d2, (q15_t)0x4a2b, (q15_t)0xc0d0, (q15_t)0x4a1e, (q15_t)0xc0ce, (q15_t)0x4a12, (q15_t)0xc0cc, (q15_t)0x4a06, (q15_t)0xc0ca, (q15_t)0x49f9, (q15_t)0xc0c8, (q15_t)0x49ed, (q15_t)0xc0c6, (q15_t)0x49e0, (q15_t)0xc0c4, (q15_t)0x49d4, (q15_t)0xc0c2, (q15_t)0x49c7, (q15_t)0xc0c0, (q15_t)0x49bb, (q15_t)0xc0be, (q15_t)0x49af, (q15_t)0xc0bd, (q15_t)0x49a2, (q15_t)0xc0bb, (q15_t)0x4996, (q15_t)0xc0b9, (q15_t)0x4989, (q15_t)0xc0b7, (q15_t)0x497d, (q15_t)0xc0b5, (q15_t)0x4970, (q15_t)0xc0b3, (q15_t)0x4964, (q15_t)0xc0b1, (q15_t)0x4958, (q15_t)0xc0af, (q15_t)0x494b, (q15_t)0xc0ae, (q15_t)0x493f, (q15_t)0xc0ac, (q15_t)0x4932, (q15_t)0xc0aa, (q15_t)0x4926, (q15_t)0xc0a8, (q15_t)0x4919, (q15_t)0xc0a6, (q15_t)0x490d, (q15_t)0xc0a5, (q15_t)0x4901, (q15_t)0xc0a3, (q15_t)0x48f4, (q15_t)0xc0a1, (q15_t)0x48e8, (q15_t)0xc09f, (q15_t)0x48db, (q15_t)0xc09e, (q15_t)0x48cf, (q15_t)0xc09c, (q15_t)0x48c2, (q15_t)0xc09a, (q15_t)0x48b6, (q15_t)0xc098, (q15_t)0x48a9, (q15_t)0xc097, (q15_t)0x489d, (q15_t)0xc095, (q15_t)0x4891, (q15_t)0xc093, (q15_t)0x4884, (q15_t)0xc092, (q15_t)0x4878, (q15_t)0xc090, (q15_t)0x486b, (q15_t)0xc08e, (q15_t)0x485f, (q15_t)0xc08d, (q15_t)0x4852, (q15_t)0xc08b, (q15_t)0x4846, (q15_t)0xc089, (q15_t)0x4839, (q15_t)0xc088, (q15_t)0x482d, (q15_t)0xc086, (q15_t)0x4820, (q15_t)0xc085, (q15_t)0x4814, (q15_t)0xc083, (q15_t)0x4807, (q15_t)0xc081, (q15_t)0x47fb, (q15_t)0xc080, (q15_t)0x47ef, (q15_t)0xc07e, (q15_t)0x47e2, (q15_t)0xc07d, (q15_t)0x47d6, (q15_t)0xc07b, (q15_t)0x47c9, (q15_t)0xc07a, (q15_t)0x47bd, (q15_t)0xc078, (q15_t)0x47b0, (q15_t)0xc077, (q15_t)0x47a4, (q15_t)0xc075, (q15_t)0x4797, (q15_t)0xc074, (q15_t)0x478b, (q15_t)0xc072, (q15_t)0x477e, (q15_t)0xc071, (q15_t)0x4772, (q15_t)0xc06f, (q15_t)0x4765, (q15_t)0xc06e, (q15_t)0x4759, (q15_t)0xc06c, (q15_t)0x474c, (q15_t)0xc06b, (q15_t)0x4740, (q15_t)0xc069, (q15_t)0x4733, (q15_t)0xc068, (q15_t)0x4727, (q15_t)0xc067, (q15_t)0x471a, (q15_t)0xc065, (q15_t)0x470e, (q15_t)0xc064, (q15_t)0x4701, (q15_t)0xc062, (q15_t)0x46f5, (q15_t)0xc061, (q15_t)0x46e8, (q15_t)0xc060, (q15_t)0x46dc, (q15_t)0xc05e, (q15_t)0x46cf, (q15_t)0xc05d, (q15_t)0x46c3, (q15_t)0xc05c, (q15_t)0x46b6, (q15_t)0xc05a, (q15_t)0x46aa, (q15_t)0xc059, (q15_t)0x469d, (q15_t)0xc058, (q15_t)0x4691, (q15_t)0xc056, (q15_t)0x4684, (q15_t)0xc055, (q15_t)0x4678, (q15_t)0xc054, (q15_t)0x466b, (q15_t)0xc053, (q15_t)0x465f, (q15_t)0xc051, (q15_t)0x4652, (q15_t)0xc050, (q15_t)0x4646, (q15_t)0xc04f, (q15_t)0x4639, (q15_t)0xc04e, (q15_t)0x462d, (q15_t)0xc04c, (q15_t)0x4620, (q15_t)0xc04b, (q15_t)0x4614, (q15_t)0xc04a, (q15_t)0x4607, (q15_t)0xc049, (q15_t)0x45fb, (q15_t)0xc048, (q15_t)0x45ee, (q15_t)0xc047, (q15_t)0x45e2, (q15_t)0xc045, (q15_t)0x45d5, (q15_t)0xc044, (q15_t)0x45c9, (q15_t)0xc043, (q15_t)0x45bc, (q15_t)0xc042, (q15_t)0x45b0, (q15_t)0xc041, (q15_t)0x45a3, (q15_t)0xc040, (q15_t)0x4597, (q15_t)0xc03f, (q15_t)0x458a, (q15_t)0xc03d, (q15_t)0x457e, (q15_t)0xc03c, (q15_t)0x4571, (q15_t)0xc03b, (q15_t)0x4565, (q15_t)0xc03a, (q15_t)0x4558, (q15_t)0xc039, (q15_t)0x454c, (q15_t)0xc038, (q15_t)0x453f, (q15_t)0xc037, (q15_t)0x4533, (q15_t)0xc036, (q15_t)0x4526, (q15_t)0xc035, (q15_t)0x451a, (q15_t)0xc034, (q15_t)0x450d, (q15_t)0xc033, (q15_t)0x4500, (q15_t)0xc032, (q15_t)0x44f4, (q15_t)0xc031, (q15_t)0x44e7, (q15_t)0xc030, (q15_t)0x44db, (q15_t)0xc02f, (q15_t)0x44ce, (q15_t)0xc02e, (q15_t)0x44c2, (q15_t)0xc02d, (q15_t)0x44b5, (q15_t)0xc02c, (q15_t)0x44a9, (q15_t)0xc02b, (q15_t)0x449c, (q15_t)0xc02b, (q15_t)0x4490, (q15_t)0xc02a, (q15_t)0x4483, (q15_t)0xc029, (q15_t)0x4477, (q15_t)0xc028, (q15_t)0x446a, (q15_t)0xc027, (q15_t)0x445e, (q15_t)0xc026, (q15_t)0x4451, (q15_t)0xc025, (q15_t)0x4444, (q15_t)0xc024, (q15_t)0x4438, (q15_t)0xc024, (q15_t)0x442b, (q15_t)0xc023, (q15_t)0x441f, (q15_t)0xc022, (q15_t)0x4412, (q15_t)0xc021, (q15_t)0x4406, (q15_t)0xc020, (q15_t)0x43f9, (q15_t)0xc020, (q15_t)0x43ed, (q15_t)0xc01f, (q15_t)0x43e0, (q15_t)0xc01e, (q15_t)0x43d4, (q15_t)0xc01d, (q15_t)0x43c7, (q15_t)0xc01d, (q15_t)0x43bb, (q15_t)0xc01c, (q15_t)0x43ae, (q15_t)0xc01b, (q15_t)0x43a1, (q15_t)0xc01a, (q15_t)0x4395, (q15_t)0xc01a, (q15_t)0x4388, (q15_t)0xc019, (q15_t)0x437c, (q15_t)0xc018, (q15_t)0x436f, (q15_t)0xc018, (q15_t)0x4363, (q15_t)0xc017, (q15_t)0x4356, (q15_t)0xc016, (q15_t)0x434a, (q15_t)0xc016, (q15_t)0x433d, (q15_t)0xc015, (q15_t)0x4330, (q15_t)0xc014, (q15_t)0x4324, (q15_t)0xc014, (q15_t)0x4317, (q15_t)0xc013, (q15_t)0x430b, (q15_t)0xc013, (q15_t)0x42fe, (q15_t)0xc012, (q15_t)0x42f2, (q15_t)0xc011, (q15_t)0x42e5, (q15_t)0xc011, (q15_t)0x42d9, (q15_t)0xc010, (q15_t)0x42cc, (q15_t)0xc010, (q15_t)0x42c0, (q15_t)0xc00f, (q15_t)0x42b3, (q15_t)0xc00f, (q15_t)0x42a6, (q15_t)0xc00e, (q15_t)0x429a, (q15_t)0xc00e, (q15_t)0x428d, (q15_t)0xc00d, (q15_t)0x4281, (q15_t)0xc00d, (q15_t)0x4274, (q15_t)0xc00c, (q15_t)0x4268, (q15_t)0xc00c, (q15_t)0x425b, (q15_t)0xc00b, (q15_t)0x424e, (q15_t)0xc00b, (q15_t)0x4242, (q15_t)0xc00a, (q15_t)0x4235, (q15_t)0xc00a, (q15_t)0x4229, (q15_t)0xc009, (q15_t)0x421c, (q15_t)0xc009, (q15_t)0x4210, (q15_t)0xc009, (q15_t)0x4203, (q15_t)0xc008, (q15_t)0x41f7, (q15_t)0xc008, (q15_t)0x41ea, (q15_t)0xc007, (q15_t)0x41dd, (q15_t)0xc007, (q15_t)0x41d1, (q15_t)0xc007, (q15_t)0x41c4, (q15_t)0xc006, (q15_t)0x41b8, (q15_t)0xc006, (q15_t)0x41ab, (q15_t)0xc006, (q15_t)0x419f, (q15_t)0xc005, (q15_t)0x4192, (q15_t)0xc005, (q15_t)0x4186, (q15_t)0xc005, (q15_t)0x4179, (q15_t)0xc004, (q15_t)0x416c, (q15_t)0xc004, (q15_t)0x4160, (q15_t)0xc004, (q15_t)0x4153, (q15_t)0xc004, (q15_t)0x4147, (q15_t)0xc003, (q15_t)0x413a, (q15_t)0xc003, (q15_t)0x412e, (q15_t)0xc003, (q15_t)0x4121, (q15_t)0xc003, (q15_t)0x4114, (q15_t)0xc002, (q15_t)0x4108, (q15_t)0xc002, (q15_t)0x40fb, (q15_t)0xc002, (q15_t)0x40ef, (q15_t)0xc002, (q15_t)0x40e2, (q15_t)0xc002, (q15_t)0x40d6, (q15_t)0xc001, (q15_t)0x40c9, (q15_t)0xc001, (q15_t)0x40bc, (q15_t)0xc001, (q15_t)0x40b0, (q15_t)0xc001, (q15_t)0x40a3, (q15_t)0xc001, (q15_t)0x4097, (q15_t)0xc001, (q15_t)0x408a, (q15_t)0xc001, (q15_t)0x407e, (q15_t)0xc000, (q15_t)0x4071, (q15_t)0xc000, (q15_t)0x4065, (q15_t)0xc000, (q15_t)0x4058, (q15_t)0xc000, (q15_t)0x404b, (q15_t)0xc000, (q15_t)0x403f, (q15_t)0xc000, (q15_t)0x4032, (q15_t)0xc000, (q15_t)0x4026, (q15_t)0xc000, (q15_t)0x4019, (q15_t)0xc000, (q15_t)0x400d, (q15_t)0xc000, }; /** @} end of RealFFT_Table group */ /** @brief Q15 table for reciprocal */ const q15_t __ALIGNED(4) armRecipTableQ15[64] ARM_DSP_TABLE_ATTRIBUTE = { 0x7F03, 0x7D13, 0x7B31, 0x795E, 0x7798, 0x75E0, 0x7434, 0x7294, 0x70FF, 0x6F76, 0x6DF6, 0x6C82, 0x6B16, 0x69B5, 0x685C, 0x670C, 0x65C4, 0x6484, 0x634C, 0x621C, 0x60F3, 0x5FD0, 0x5EB5, 0x5DA0, 0x5C91, 0x5B88, 0x5A85, 0x5988, 0x5890, 0x579E, 0x56B0, 0x55C8, 0x54E4, 0x5405, 0x532B, 0x5255, 0x5183, 0x50B6, 0x4FEC, 0x4F26, 0x4E64, 0x4DA6, 0x4CEC, 0x4C34, 0x4B81, 0x4AD0, 0x4A23, 0x4978, 0x48D1, 0x482D, 0x478C, 0x46ED, 0x4651, 0x45B8, 0x4521, 0x448D, 0x43FC, 0x436C, 0x42DF, 0x4255, 0x41CC, 0x4146, 0x40C2, 0x4040 }; /** @brief Q31 table for reciprocal */ const q31_t armRecipTableQ31[64] ARM_DSP_TABLE_ATTRIBUTE = { 0x7F03F03F, 0x7D137420, 0x7B31E739, 0x795E9F94, 0x7798FD29, 0x75E06928, 0x7434554D, 0x72943B4B, 0x70FF9C40, 0x6F760031, 0x6DF6F593, 0x6C8210E3, 0x6B16EC3A, 0x69B526F6, 0x685C655F, 0x670C505D, 0x65C4952D, 0x6484E519, 0x634CF53E, 0x621C7E4F, 0x60F33C61, 0x5FD0EEB3, 0x5EB55785, 0x5DA03BEB, 0x5C9163A1, 0x5B8898E6, 0x5A85A85A, 0x598860DF, 0x58909373, 0x579E1318, 0x56B0B4B8, 0x55C84F0B, 0x54E4BA80, 0x5405D124, 0x532B6E8F, 0x52556FD0, 0x5183B35A, 0x50B618F3, 0x4FEC81A2, 0x4F26CFA2, 0x4E64E64E, 0x4DA6AA1D, 0x4CEC008B, 0x4C34D010, 0x4B810016, 0x4AD078EF, 0x4A2323C4, 0x4978EA96, 0x48D1B827, 0x482D77FE, 0x478C1657, 0x46ED801D, 0x4651A2E5, 0x45B86CE2, 0x4521CCE1, 0x448DB244, 0x43FC0CFA, 0x436CCD78, 0x42DFE4B4, 0x42554426, 0x41CCDDB6, 0x4146A3C6, 0x40C28923, 0x40408102 }; /** @par Example code for the generation of the floating-point sine table:
  tableSize = 512;
  for (n = 0; n < (tableSize + 1); n++)
  {
 	sinTable[n] = sin(2*PI*n/tableSize);
  }
@par where PI value is 3.14159265358979 */ const float32_t sinTable_f32[FAST_MATH_TABLE_SIZE + 1] ARM_DSP_TABLE_ATTRIBUTE = { 0.000000000f, 0.012271538f, 0.024541229f, 0.036807223f, 0.049067674f, 0.061320736f, 0.073564564f, 0.085797312f, 0.098017140f, 0.110222207f, 0.122410675f, 0.134580709f, 0.146730474f, 0.158858143f, 0.170961889f, 0.183039888f, 0.195090322f, 0.207111376f, 0.219101240f, 0.231058108f, 0.242980180f, 0.254865660f, 0.266712757f, 0.278519689f, 0.290284677f, 0.302005949f, 0.313681740f, 0.325310292f, 0.336889853f, 0.348418680f, 0.359895037f, 0.371317194f, 0.382683432f, 0.393992040f, 0.405241314f, 0.416429560f, 0.427555093f, 0.438616239f, 0.449611330f, 0.460538711f, 0.471396737f, 0.482183772f, 0.492898192f, 0.503538384f, 0.514102744f, 0.524589683f, 0.534997620f, 0.545324988f, 0.555570233f, 0.565731811f, 0.575808191f, 0.585797857f, 0.595699304f, 0.605511041f, 0.615231591f, 0.624859488f, 0.634393284f, 0.643831543f, 0.653172843f, 0.662415778f, 0.671558955f, 0.680600998f, 0.689540545f, 0.698376249f, 0.707106781f, 0.715730825f, 0.724247083f, 0.732654272f, 0.740951125f, 0.749136395f, 0.757208847f, 0.765167266f, 0.773010453f, 0.780737229f, 0.788346428f, 0.795836905f, 0.803207531f, 0.810457198f, 0.817584813f, 0.824589303f, 0.831469612f, 0.838224706f, 0.844853565f, 0.851355193f, 0.857728610f, 0.863972856f, 0.870086991f, 0.876070094f, 0.881921264f, 0.887639620f, 0.893224301f, 0.898674466f, 0.903989293f, 0.909167983f, 0.914209756f, 0.919113852f, 0.923879533f, 0.928506080f, 0.932992799f, 0.937339012f, 0.941544065f, 0.945607325f, 0.949528181f, 0.953306040f, 0.956940336f, 0.960430519f, 0.963776066f, 0.966976471f, 0.970031253f, 0.972939952f, 0.975702130f, 0.978317371f, 0.980785280f, 0.983105487f, 0.985277642f, 0.987301418f, 0.989176510f, 0.990902635f, 0.992479535f, 0.993906970f, 0.995184727f, 0.996312612f, 0.997290457f, 0.998118113f, 0.998795456f, 0.999322385f, 0.999698819f, 0.999924702f, 1.000000000f, 0.999924702f, 0.999698819f, 0.999322385f, 0.998795456f, 0.998118113f, 0.997290457f, 0.996312612f, 0.995184727f, 0.993906970f, 0.992479535f, 0.990902635f, 0.989176510f, 0.987301418f, 0.985277642f, 0.983105487f, 0.980785280f, 0.978317371f, 0.975702130f, 0.972939952f, 0.970031253f, 0.966976471f, 0.963776066f, 0.960430519f, 0.956940336f, 0.953306040f, 0.949528181f, 0.945607325f, 0.941544065f, 0.937339012f, 0.932992799f, 0.928506080f, 0.923879533f, 0.919113852f, 0.914209756f, 0.909167983f, 0.903989293f, 0.898674466f, 0.893224301f, 0.887639620f, 0.881921264f, 0.876070094f, 0.870086991f, 0.863972856f, 0.857728610f, 0.851355193f, 0.844853565f, 0.838224706f, 0.831469612f, 0.824589303f, 0.817584813f, 0.810457198f, 0.803207531f, 0.795836905f, 0.788346428f, 0.780737229f, 0.773010453f, 0.765167266f, 0.757208847f, 0.749136395f, 0.740951125f, 0.732654272f, 0.724247083f, 0.715730825f, 0.707106781f, 0.698376249f, 0.689540545f, 0.680600998f, 0.671558955f, 0.662415778f, 0.653172843f, 0.643831543f, 0.634393284f, 0.624859488f, 0.615231591f, 0.605511041f, 0.595699304f, 0.585797857f, 0.575808191f, 0.565731811f, 0.555570233f, 0.545324988f, 0.534997620f, 0.524589683f, 0.514102744f, 0.503538384f, 0.492898192f, 0.482183772f, 0.471396737f, 0.460538711f, 0.449611330f, 0.438616239f, 0.427555093f, 0.416429560f, 0.405241314f, 0.393992040f, 0.382683432f, 0.371317194f, 0.359895037f, 0.348418680f, 0.336889853f, 0.325310292f, 0.313681740f, 0.302005949f, 0.290284677f, 0.278519689f, 0.266712757f, 0.254865660f, 0.242980180f, 0.231058108f, 0.219101240f, 0.207111376f, 0.195090322f, 0.183039888f, 0.170961889f, 0.158858143f, 0.146730474f, 0.134580709f, 0.122410675f, 0.110222207f, 0.098017140f, 0.085797312f, 0.073564564f, 0.061320736f, 0.049067674f, 0.036807223f, 0.024541229f, 0.012271538f, 0.000000000f, -0.012271538f, -0.024541229f, -0.036807223f, -0.049067674f, -0.061320736f, -0.073564564f, -0.085797312f, -0.098017140f, -0.110222207f, -0.122410675f, -0.134580709f, -0.146730474f, -0.158858143f, -0.170961889f, -0.183039888f, -0.195090322f, -0.207111376f, -0.219101240f, -0.231058108f, -0.242980180f, -0.254865660f, -0.266712757f, -0.278519689f, -0.290284677f, -0.302005949f, -0.313681740f, -0.325310292f, -0.336889853f, -0.348418680f, -0.359895037f, -0.371317194f, -0.382683432f, -0.393992040f, -0.405241314f, -0.416429560f, -0.427555093f, -0.438616239f, -0.449611330f, -0.460538711f, -0.471396737f, -0.482183772f, -0.492898192f, -0.503538384f, -0.514102744f, -0.524589683f, -0.534997620f, -0.545324988f, -0.555570233f, -0.565731811f, -0.575808191f, -0.585797857f, -0.595699304f, -0.605511041f, -0.615231591f, -0.624859488f, -0.634393284f, -0.643831543f, -0.653172843f, -0.662415778f, -0.671558955f, -0.680600998f, -0.689540545f, -0.698376249f, -0.707106781f, -0.715730825f, -0.724247083f, -0.732654272f, -0.740951125f, -0.749136395f, -0.757208847f, -0.765167266f, -0.773010453f, -0.780737229f, -0.788346428f, -0.795836905f, -0.803207531f, -0.810457198f, -0.817584813f, -0.824589303f, -0.831469612f, -0.838224706f, -0.844853565f, -0.851355193f, -0.857728610f, -0.863972856f, -0.870086991f, -0.876070094f, -0.881921264f, -0.887639620f, -0.893224301f, -0.898674466f, -0.903989293f, -0.909167983f, -0.914209756f, -0.919113852f, -0.923879533f, -0.928506080f, -0.932992799f, -0.937339012f, -0.941544065f, -0.945607325f, -0.949528181f, -0.953306040f, -0.956940336f, -0.960430519f, -0.963776066f, -0.966976471f, -0.970031253f, -0.972939952f, -0.975702130f, -0.978317371f, -0.980785280f, -0.983105487f, -0.985277642f, -0.987301418f, -0.989176510f, -0.990902635f, -0.992479535f, -0.993906970f, -0.995184727f, -0.996312612f, -0.997290457f, -0.998118113f, -0.998795456f, -0.999322385f, -0.999698819f, -0.999924702f, -1.000000000f, -0.999924702f, -0.999698819f, -0.999322385f, -0.998795456f, -0.998118113f, -0.997290457f, -0.996312612f, -0.995184727f, -0.993906970f, -0.992479535f, -0.990902635f, -0.989176510f, -0.987301418f, -0.985277642f, -0.983105487f, -0.980785280f, -0.978317371f, -0.975702130f, -0.972939952f, -0.970031253f, -0.966976471f, -0.963776066f, -0.960430519f, -0.956940336f, -0.953306040f, -0.949528181f, -0.945607325f, -0.941544065f, -0.937339012f, -0.932992799f, -0.928506080f, -0.923879533f, -0.919113852f, -0.914209756f, -0.909167983f, -0.903989293f, -0.898674466f, -0.893224301f, -0.887639620f, -0.881921264f, -0.876070094f, -0.870086991f, -0.863972856f, -0.857728610f, -0.851355193f, -0.844853565f, -0.838224706f, -0.831469612f, -0.824589303f, -0.817584813f, -0.810457198f, -0.803207531f, -0.795836905f, -0.788346428f, -0.780737229f, -0.773010453f, -0.765167266f, -0.757208847f, -0.749136395f, -0.740951125f, -0.732654272f, -0.724247083f, -0.715730825f, -0.707106781f, -0.698376249f, -0.689540545f, -0.680600998f, -0.671558955f, -0.662415778f, -0.653172843f, -0.643831543f, -0.634393284f, -0.624859488f, -0.615231591f, -0.605511041f, -0.595699304f, -0.585797857f, -0.575808191f, -0.565731811f, -0.555570233f, -0.545324988f, -0.534997620f, -0.524589683f, -0.514102744f, -0.503538384f, -0.492898192f, -0.482183772f, -0.471396737f, -0.460538711f, -0.449611330f, -0.438616239f, -0.427555093f, -0.416429560f, -0.405241314f, -0.393992040f, -0.382683432f, -0.371317194f, -0.359895037f, -0.348418680f, -0.336889853f, -0.325310292f, -0.313681740f, -0.302005949f, -0.290284677f, -0.278519689f, -0.266712757f, -0.254865660f, -0.242980180f, -0.231058108f, -0.219101240f, -0.207111376f, -0.195090322f, -0.183039888f, -0.170961889f, -0.158858143f, -0.146730474f, -0.134580709f, -0.122410675f, -0.110222207f, -0.098017140f, -0.085797312f, -0.073564564f, -0.061320736f, -0.049067674f, -0.036807223f, -0.024541229f, -0.012271538f, -0.000000000f }; /** @par Table values are in Q31 (1.31 fixed-point format) and generation is done in three steps. First, generate sin values in floating point:
  tableSize = 512;
  for (n = 0; n < (tableSize + 1); n++)
  {
 	sinTable[n] = sin(2*PI*n/tableSize);
  } 
where PI value is 3.14159265358979 @par Second, convert floating-point to Q31 (Fixed point): (sinTable[i] * pow(2, 31)) @par Finally, round to the nearest integer value: sinTable[i] += (sinTable[i] > 0 ? 0.5 : -0.5); */ const q31_t sinTable_q31[FAST_MATH_TABLE_SIZE + 1] ARM_DSP_TABLE_ATTRIBUTE = { 0L, 26352928L, 52701887L, 79042909L, 105372028L, 131685278L, 157978697L, 184248325L, 210490206L, 236700388L, 262874923L, 289009871L, 315101295L, 341145265L, 367137861L, 393075166L, 418953276L, 444768294L, 470516330L, 496193509L, 521795963L, 547319836L, 572761285L, 598116479L, 623381598L, 648552838L, 673626408L, 698598533L, 723465451L, 748223418L, 772868706L, 797397602L, 821806413L, 846091463L, 870249095L, 894275671L, 918167572L, 941921200L, 965532978L, 988999351L, 1012316784L, 1035481766L, 1058490808L, 1081340445L, 1104027237L, 1126547765L, 1148898640L, 1171076495L, 1193077991L, 1214899813L, 1236538675L, 1257991320L, 1279254516L, 1300325060L, 1321199781L, 1341875533L, 1362349204L, 1382617710L, 1402678000L, 1422527051L, 1442161874L, 1461579514L, 1480777044L, 1499751576L, 1518500250L, 1537020244L, 1555308768L, 1573363068L, 1591180426L, 1608758157L, 1626093616L, 1643184191L, 1660027308L, 1676620432L, 1692961062L, 1709046739L, 1724875040L, 1740443581L, 1755750017L, 1770792044L, 1785567396L, 1800073849L, 1814309216L, 1828271356L, 1841958164L, 1855367581L, 1868497586L, 1881346202L, 1893911494L, 1906191570L, 1918184581L, 1929888720L, 1941302225L, 1952423377L, 1963250501L, 1973781967L, 1984016189L, 1993951625L, 2003586779L, 2012920201L, 2021950484L, 2030676269L, 2039096241L, 2047209133L, 2055013723L, 2062508835L, 2069693342L, 2076566160L, 2083126254L, 2089372638L, 2095304370L, 2100920556L, 2106220352L, 2111202959L, 2115867626L, 2120213651L, 2124240380L, 2127947206L, 2131333572L, 2134398966L, 2137142927L, 2139565043L, 2141664948L, 2143442326L, 2144896910L, 2146028480L, 2146836866L, 2147321946L, 2147483647L, 2147321946L, 2146836866L, 2146028480L, 2144896910L, 2143442326L, 2141664948L, 2139565043L, 2137142927L, 2134398966L, 2131333572L, 2127947206L, 2124240380L, 2120213651L, 2115867626L, 2111202959L, 2106220352L, 2100920556L, 2095304370L, 2089372638L, 2083126254L, 2076566160L, 2069693342L, 2062508835L, 2055013723L, 2047209133L, 2039096241L, 2030676269L, 2021950484L, 2012920201L, 2003586779L, 1993951625L, 1984016189L, 1973781967L, 1963250501L, 1952423377L, 1941302225L, 1929888720L, 1918184581L, 1906191570L, 1893911494L, 1881346202L, 1868497586L, 1855367581L, 1841958164L, 1828271356L, 1814309216L, 1800073849L, 1785567396L, 1770792044L, 1755750017L, 1740443581L, 1724875040L, 1709046739L, 1692961062L, 1676620432L, 1660027308L, 1643184191L, 1626093616L, 1608758157L, 1591180426L, 1573363068L, 1555308768L, 1537020244L, 1518500250L, 1499751576L, 1480777044L, 1461579514L, 1442161874L, 1422527051L, 1402678000L, 1382617710L, 1362349204L, 1341875533L, 1321199781L, 1300325060L, 1279254516L, 1257991320L, 1236538675L, 1214899813L, 1193077991L, 1171076495L, 1148898640L, 1126547765L, 1104027237L, 1081340445L, 1058490808L, 1035481766L, 1012316784L, 988999351L, 965532978L, 941921200L, 918167572L, 894275671L, 870249095L, 846091463L, 821806413L, 797397602L, 772868706L, 748223418L, 723465451L, 698598533L, 673626408L, 648552838L, 623381598L, 598116479L, 572761285L, 547319836L, 521795963L, 496193509L, 470516330L, 444768294L, 418953276L, 393075166L, 367137861L, 341145265L, 315101295L, 289009871L, 262874923L, 236700388L, 210490206L, 184248325L, 157978697L, 131685278L, 105372028L, 79042909L, 52701887L, 26352928L, 0L, -26352928L, -52701887L, -79042909L, -105372028L, -131685278L, -157978697L, -184248325L, -210490206L, -236700388L, -262874923L, -289009871L, -315101295L, -341145265L, -367137861L, -393075166L, -418953276L, -444768294L, -470516330L, -496193509L, -521795963L, -547319836L, -572761285L, -598116479L, -623381598L, -648552838L, -673626408L, -698598533L, -723465451L, -748223418L, -772868706L, -797397602L, -821806413L, -846091463L, -870249095L, -894275671L, -918167572L, -941921200L, -965532978L, -988999351L, -1012316784L, -1035481766L, -1058490808L, -1081340445L, -1104027237L, -1126547765L, -1148898640L, -1171076495L, -1193077991L, -1214899813L, -1236538675L, -1257991320L, -1279254516L, -1300325060L, -1321199781L, -1341875533L, -1362349204L, -1382617710L, -1402678000L, -1422527051L, -1442161874L, -1461579514L, -1480777044L, -1499751576L, -1518500250L, -1537020244L, -1555308768L, -1573363068L, -1591180426L, -1608758157L, -1626093616L, -1643184191L, -1660027308L, -1676620432L, -1692961062L, -1709046739L, -1724875040L, -1740443581L, -1755750017L, -1770792044L, -1785567396L, -1800073849L, -1814309216L, -1828271356L, -1841958164L, -1855367581L, -1868497586L, -1881346202L, -1893911494L, -1906191570L, -1918184581L, -1929888720L, -1941302225L, -1952423377L, -1963250501L, -1973781967L, -1984016189L, -1993951625L, -2003586779L, -2012920201L, -2021950484L, -2030676269L, -2039096241L, -2047209133L, -2055013723L, -2062508835L, -2069693342L, -2076566160L, -2083126254L, -2089372638L, -2095304370L, -2100920556L, -2106220352L, -2111202959L, -2115867626L, -2120213651L, -2124240380L, -2127947206L, -2131333572L, -2134398966L, -2137142927L, -2139565043L, -2141664948L, -2143442326L, -2144896910L, -2146028480L, -2146836866L, -2147321946L, (q31_t)0x80000000, -2147321946L, -2146836866L, -2146028480L, -2144896910L, -2143442326L, -2141664948L, -2139565043L, -2137142927L, -2134398966L, -2131333572L, -2127947206L, -2124240380L, -2120213651L, -2115867626L, -2111202959L, -2106220352L, -2100920556L, -2095304370L, -2089372638L, -2083126254L, -2076566160L, -2069693342L, -2062508835L, -2055013723L, -2047209133L, -2039096241L, -2030676269L, -2021950484L, -2012920201L, -2003586779L, -1993951625L, -1984016189L, -1973781967L, -1963250501L, -1952423377L, -1941302225L, -1929888720L, -1918184581L, -1906191570L, -1893911494L, -1881346202L, -1868497586L, -1855367581L, -1841958164L, -1828271356L, -1814309216L, -1800073849L, -1785567396L, -1770792044L, -1755750017L, -1740443581L, -1724875040L, -1709046739L, -1692961062L, -1676620432L, -1660027308L, -1643184191L, -1626093616L, -1608758157L, -1591180426L, -1573363068L, -1555308768L, -1537020244L, -1518500250L, -1499751576L, -1480777044L, -1461579514L, -1442161874L, -1422527051L, -1402678000L, -1382617710L, -1362349204L, -1341875533L, -1321199781L, -1300325060L, -1279254516L, -1257991320L, -1236538675L, -1214899813L, -1193077991L, -1171076495L, -1148898640L, -1126547765L, -1104027237L, -1081340445L, -1058490808L, -1035481766L, -1012316784L, -988999351L, -965532978L, -941921200L, -918167572L, -894275671L, -870249095L, -846091463L, -821806413L, -797397602L, -772868706L, -748223418L, -723465451L, -698598533L, -673626408L, -648552838L, -623381598L, -598116479L, -572761285L, -547319836L, -521795963L, -496193509L, -470516330L, -444768294L, -418953276L, -393075166L, -367137861L, -341145265L, -315101295L, -289009871L, -262874923L, -236700388L, -210490206L, -184248325L, -157978697L, -131685278L, -105372028L, -79042909L, -52701887L, -26352928L, 0 }; /** @par Table values are in Q15 (1.15 fixed-point format) and generation is done in three steps. First, generate sin values in floating point:
  tableSize = 512;
  for (n = 0; n < (tableSize + 1); n++)
  {
 	sinTable[n] = sin(2*PI*n/tableSize);
  } 
where PI value is 3.14159265358979 @par Second, convert floating-point to Q15 (Fixed point): (sinTable[i] * pow(2, 15)) @par Finally, round to the nearest integer value: sinTable[i] += (sinTable[i] > 0 ? 0.5 :-0.5); */ const q15_t sinTable_q15[FAST_MATH_TABLE_SIZE + 1] ARM_DSP_TABLE_ATTRIBUTE = { 0, 402, 804, 1206, 1608, 2009, 2411, 2811, 3212, 3612, 4011, 4410, 4808, 5205, 5602, 5998, 6393, 6787, 7180, 7571, 7962, 8351, 8740, 9127, 9512, 9896, 10279, 10660, 11039, 11417, 11793, 12167, 12540, 12910, 13279, 13646, 14010, 14373, 14733, 15091, 15447, 15800, 16151, 16500, 16846, 17190, 17531, 17869, 18205, 18538, 18868, 19195, 19520, 19841, 20160, 20475, 20788, 21097, 21403, 21706, 22006, 22302, 22595, 22884, 23170, 23453, 23732, 24008, 24279, 24548, 24812, 25073, 25330, 25583, 25833, 26078, 26320, 26557, 26791, 27020, 27246, 27467, 27684, 27897, 28106, 28311, 28511, 28707, 28899, 29086, 29269, 29448, 29622, 29792, 29957, 30118, 30274, 30425, 30572, 30715, 30853, 30986, 31114, 31238, 31357, 31471, 31581, 31686, 31786, 31881, 31972, 32058, 32138, 32214, 32286, 32352, 32413, 32470, 32522, 32568, 32610, 32647, 32679, 32706, 32729, 32746, 32758, 32766, 32767, 32766, 32758, 32746, 32729, 32706, 32679, 32647, 32610, 32568, 32522, 32470, 32413, 32352, 32286, 32214, 32138, 32058, 31972, 31881, 31786, 31686, 31581, 31471, 31357, 31238, 31114, 30986, 30853, 30715, 30572, 30425, 30274, 30118, 29957, 29792, 29622, 29448, 29269, 29086, 28899, 28707, 28511, 28311, 28106, 27897, 27684, 27467, 27246, 27020, 26791, 26557, 26320, 26078, 25833, 25583, 25330, 25073, 24812, 24548, 24279, 24008, 23732, 23453, 23170, 22884, 22595, 22302, 22006, 21706, 21403, 21097, 20788, 20475, 20160, 19841, 19520, 19195, 18868, 18538, 18205, 17869, 17531, 17190, 16846, 16500, 16151, 15800, 15447, 15091, 14733, 14373, 14010, 13646, 13279, 12910, 12540, 12167, 11793, 11417, 11039, 10660, 10279, 9896, 9512, 9127, 8740, 8351, 7962, 7571, 7180, 6787, 6393, 5998, 5602, 5205, 4808, 4410, 4011, 3612, 3212, 2811, 2411, 2009, 1608, 1206, 804, 402, 0, -402, -804, -1206, -1608, -2009, -2411, -2811, -3212, -3612, -4011, -4410, -4808, -5205, -5602, -5998, -6393, -6787, -7180, -7571, -7962, -8351, -8740, -9127, -9512, -9896, -10279, -10660, -11039, -11417, -11793, -12167, -12540, -12910, -13279, -13646, -14010, -14373, -14733, -15091, -15447, -15800, -16151, -16500, -16846, -17190, -17531, -17869, -18205, -18538, -18868, -19195, -19520, -19841, -20160, -20475, -20788, -21097, -21403, -21706, -22006, -22302, -22595, -22884, -23170, -23453, -23732, -24008, -24279, -24548, -24812, -25073, -25330, -25583, -25833, -26078, -26320, -26557, -26791, -27020, -27246, -27467, -27684, -27897, -28106, -28311, -28511, -28707, -28899, -29086, -29269, -29448, -29622, -29792, -29957, -30118, -30274, -30425, -30572, -30715, -30853, -30986, -31114, -31238, -31357, -31471, -31581, -31686, -31786, -31881, -31972, -32058, -32138, -32214, -32286, -32352, -32413, -32470, -32522, -32568, -32610, -32647, -32679, -32706, -32729, -32746, -32758, -32766, -32768, -32766, -32758, -32746, -32729, -32706, -32679, -32647, -32610, -32568, -32522, -32470, -32413, -32352, -32286, -32214, -32138, -32058, -31972, -31881, -31786, -31686, -31581, -31471, -31357, -31238, -31114, -30986, -30853, -30715, -30572, -30425, -30274, -30118, -29957, -29792, -29622, -29448, -29269, -29086, -28899, -28707, -28511, -28311, -28106, -27897, -27684, -27467, -27246, -27020, -26791, -26557, -26320, -26078, -25833, -25583, -25330, -25073, -24812, -24548, -24279, -24008, -23732, -23453, -23170, -22884, -22595, -22302, -22006, -21706, -21403, -21097, -20788, -20475, -20160, -19841, -19520, -19195, -18868, -18538, -18205, -17869, -17531, -17190, -16846, -16500, -16151, -15800, -15447, -15091, -14733, -14373, -14010, -13646, -13279, -12910, -12540, -12167, -11793, -11417, -11039, -10660, -10279, -9896, -9512, -9127, -8740, -8351, -7962, -7571, -7180, -6787, -6393, -5998, -5602, -5205, -4808, -4410, -4011, -3612, -3212, -2811, -2411, -2009, -1608, -1206, -804, -402, 0 }; #if (defined(ARM_MATH_MVEI) || defined(ARM_MATH_HELIUM)) && !defined(ARM_MATH_AUTOVECTORIZE) const q31_t sqrtTable_Q31[256] ARM_DSP_TABLE_ATTRIBUTE = { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x5ffffffe, 0x7ffffffa, 0x5e88c596, 0x7a39e2ff, 0x5d2238d8, 0x74dfa6b1, 0x5bcb268e, 0x6fe69562, 0x5a827998, 0x6b454dba, 0x5947373a, 0x66f39063, 0x58187bf8, 0x62ea1669, 0x56f578e6, 0x5f226e5f, 0x55dd714e, 0x5b96df40, 0x54cfb8b0, 0x58424fca, 0x53cbb102, 0x552031c7, 0x52d0c92c, 0x522c7048, 0x51de7bb2, 0x4f6360a9, 0x50f44d86, 0x4cc1b594, 0x5011cd0a, 0x4a4473f6, 0x4f36911a, 0x47e8e962, 0x4e62384e, 0x45aca3d0, 0x4d946838, 0x438d6a6a, 0x4cccccca, 0x41893746, 0x4c0b17c0, 0x3f9e31fa, 0x4b4f0022, 0x3dcaaac3, 0x4a9841ce, 0x3c0d1660, 0x49e69d14, 0x3a640a53, 0x4939d654, 0x38ce39a6, 0x4891b5b2, 0x374a720b, 0x47ee06ba, 0x35d7993c, 0x474e9830, 0x3474aacc, 0x46b33bc0, 0x3320b60c, 0x461bc5d2, 0x31dadc4f, 0x45880d4c, 0x30a24f3c, 0x44f7eb6a, 0x2f764f6a, 0x446b3b92, 0x2e562b0b, 0x43e1db32, 0x2d413cc9, 0x435ba98a, 0x2c36eab0, 0x42d887a4, 0x2b36a542, 0x42585824, 0x2a3fe69b, 0x41daff34, 0x295231b0, 0x41606266, 0x286d118d, 0x40e868a4, 0x279018c3, 0x4072fa10, 0x26bae0c8, 0x3ffffffe, 0x25ed0979, 0x3f8f64d2, 0x25263894, 0x3f2113f8, 0x24661958, 0x3eb4f9d8, 0x23ac5c10, 0x3e4b03ba, 0x22f8b5bb, 0x3de31fc4, 0x224adfba, 0x3d7d3cee, 0x21a2977a, 0x3d194ae8, 0x20ff9e30, 0x3cb73a24, 0x2061b89a, 0x3c56fbba, 0x1fc8aebb, 0x3bf88166, 0x1f344ba6, 0x3b9bbd80, 0x1ea45d4b, 0x3b40a2f0, 0x1e18b448, 0x3ae7252e, 0x1d9123b9, 0x3a8f382c, 0x1d0d8113, 0x3a38d062, 0x1c8da3fb, 0x39e3e2b6, 0x1c116628, 0x39906482, 0x1b98a33c, 0x393e4b8a, 0x1b2338aa, 0x38ed8df6, 0x1ab1059a, 0x389e2250, 0x1a41eace, 0x384fff7a, 0x19d5ca89, 0x38031cb2, 0x196c887b, 0x37b77184, 0x190609a9, 0x376cf5ce, 0x18a2345b, 0x3723a1ba, 0x1840f00a, 0x36db6db6, 0x17e22550, 0x36945276, 0x1785bdd2, 0x364e48f4, 0x172ba43e, 0x36094a64, 0x16d3c42c, 0x35c55036, 0x167e0a1f, 0x35825414, 0x162a6372, 0x35404fde, 0x15d8be4d, 0x34ff3dac, 0x1589099d, 0x34bf17c4, 0x153b3508, 0x347fd89e, 0x14ef30e4, 0x34417ade, 0x14a4ee2a, 0x3403f956, 0x145c5e76, 0x33c74f02, 0x141573fa, 0x338b7706, 0x13d02171, 0x33506cae, 0x138c5a28, 0x33162b6a, 0x134a11e6, 0x32dcaed0, 0x13093cee, 0x32a3f294, 0x12c9cffa, 0x326bf292, 0x128bc034, 0x3234aac0, 0x124f0330, 0x31fe1736, 0x12138ee5, 0x31c83428, 0x11d959b0, 0x3192fde6, 0x11a05a45, 0x315e70de, 0x116887b5, 0x312a8994, 0x1131d960, 0x30f744aa, 0x10fc46fd, 0x30c49ed6, 0x10c7c88b, 0x309294ea, 0x10945653, 0x306123cc, 0x1061e8e6, 0x30304878, 0x10307919 }; const q15_t sqrtTable_Q15[256] ARM_DSP_TABLE_ATTRIBUTE = { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x5fff, 0x7fff, 0x5e88, 0x7a39, 0x5d22, 0x74df, 0x5bcb, 0x6fe6, 0x5a82, 0x6b45, 0x5947, 0x66f3, 0x5818, 0x62ea, 0x56f5, 0x5f22, 0x55dd, 0x5b96, 0x54cf, 0x5842, 0x53cb, 0x5520, 0x52d0, 0x522c, 0x51de, 0x4f63, 0x50f4, 0x4cc1, 0x5011, 0x4a44, 0x4f36, 0x47e8, 0x4e62, 0x45ac, 0x4d94, 0x438d, 0x4ccc, 0x4189, 0x4c0b, 0x3f9e, 0x4b4f, 0x3dca, 0x4a98, 0x3c0d, 0x49e6, 0x3a64, 0x4939, 0x38ce, 0x4891, 0x374a, 0x47ee, 0x35d7, 0x474e, 0x3474, 0x46b3, 0x3320, 0x461b, 0x31da, 0x4588, 0x30a2, 0x44f7, 0x2f76, 0x446b, 0x2e56, 0x43e1, 0x2d41, 0x435b, 0x2c36, 0x42d8, 0x2b36, 0x4258, 0x2a3f, 0x41da, 0x2952, 0x4160, 0x286d, 0x40e8, 0x2790, 0x4072, 0x26ba, 0x3fff, 0x25ed, 0x3f8f, 0x2526, 0x3f21, 0x2466, 0x3eb4, 0x23ac, 0x3e4b, 0x22f8, 0x3de3, 0x224a, 0x3d7d, 0x21a2, 0x3d19, 0x20ff, 0x3cb7, 0x2061, 0x3c56, 0x1fc8, 0x3bf8, 0x1f34, 0x3b9b, 0x1ea4, 0x3b40, 0x1e18, 0x3ae7, 0x1d91, 0x3a8f, 0x1d0d, 0x3a38, 0x1c8d, 0x39e3, 0x1c11, 0x3990, 0x1b98, 0x393e, 0x1b23, 0x38ed, 0x1ab1, 0x389e, 0x1a41, 0x384f, 0x19d5, 0x3803, 0x196c, 0x37b7, 0x1906, 0x376c, 0x18a2, 0x3723, 0x1840, 0x36db, 0x17e2, 0x3694, 0x1785, 0x364e, 0x172b, 0x3609, 0x16d3, 0x35c5, 0x167e, 0x3582, 0x162a, 0x3540, 0x15d8, 0x34ff, 0x1589, 0x34bf, 0x153b, 0x347f, 0x14ef, 0x3441, 0x14a4, 0x3403, 0x145c, 0x33c7, 0x1415, 0x338b, 0x13d0, 0x3350, 0x138c, 0x3316, 0x134a, 0x32dc, 0x1309, 0x32a3, 0x12c9, 0x326b, 0x128b, 0x3234, 0x124f, 0x31fe, 0x1213, 0x31c8, 0x11d9, 0x3192, 0x11a0, 0x315e, 0x1168, 0x312a, 0x1131, 0x30f7, 0x10fc, 0x30c4, 0x10c7, 0x3092, 0x1094, 0x3061, 0x1061, 0x3030, 0x1030 }; /* haming weight LUT for bytes */ #define B2(n) n, n + 1, n + 1, n + 2 #define B4(n) B2(n) , B2(n + 1), B2(n + 1), B2(n + 2) #define B6(n) B4(n) , B4(n + 1), B4(n + 1), B4(n + 2) // Lookup table that store the reverse of each table const unsigned char hwLUT[256] ARM_DSP_TABLE_ATTRIBUTE = { B6(0), B6(1), B6(1), B6(2) }; #endif /* ClearAll[tofix]; tofix[q_][a_] := With[{r = Round[a*2^q]}, If[r > (2^q - 1), 2^q - 1, r] ]; (* For q = format, 2^nb is length of the table *) With[{q = 15, nb = 4, q12quarter = 16^^2000}, With[{shift = Echo[q - nb]}, Table[tofix[q][1.0/Sqrt[1.0*i/2^q]/8.0], {i, 2^(q - 2), 2^q + q12quarter - 1, 2^shift}]] ] // CopyToClipboard */ const q31_t sqrt_initial_lut_q31[32] ARM_DSP_TABLE_ATTRIBUTE = {536870912, 506166750, 480191942, 457845052, 438353264, 421156193, \ 405836263, 392075079, 379625062, 368290407, 357913941, 348367849, \ 339546978, 331363921, 323745341, 316629190, 309962566, 303700050, \ 297802400, 292235509, 286969573, 281978417, 277238947, 272730696, \ 268435456, 264336964, 260420644, 256673389, 253083375, 249639903, \ 246333269, 243154642}; const q15_t sqrt_initial_lut_q15[16] ARM_DSP_TABLE_ATTRIBUTE ={8192, 7327, 6689, 6193, 5793, 5461, 5181, 4940, 4730, 4544, 4379, \ 4230, 4096, 3974, 3862, 3759}; #if (defined(ARM_MATH_MVEF) || defined(ARM_MATH_HELIUM)) && !defined(ARM_MATH_AUTOVECTORIZE) const float32_t exp_tab[8] ARM_DSP_TABLE_ATTRIBUTE = { (1.f), (0.0416598916054f), (0.500000596046f), (0.0014122662833f), (1.00000011921f), (0.00833693705499f), (0.166665703058f), (0.000195780929062f), }; const float32_t __logf_lut_f32[8] ARM_DSP_TABLE_ATTRIBUTE = { -2.295614848256274, /*p0*/ -2.470711633419806, /*p4*/ -5.686926051100417, /*p2*/ -0.165253547131978, /*p6*/ +5.175912446351073, /*p1*/ +0.844006986174912, /*p5*/ +4.584458825456749, /*p3*/ +0.014127821926000 /*p7*/ }; #endif