file
stringlengths
18
26
data
stringlengths
3
1.04M
the_stack_data/637697.c
#include <stdio.h> #include <stdlib.h> #ifndef INNATIVE_NATIVE static unsigned res = 0; void set_res(void *x) { res = *(unsigned*)x; } unsigned get_res() { return res; } void fib2_setup(void *global_ctx, void **ctx_p); void fib2_body(void *ctx); unsigned app_main() { void *p_ctx; fib2_setup(NULL, &p_ctx); fib2_body(p_ctx); return get_res(); } #ifndef INNATIVE_WASM int main(int argc, char **argv) { unsigned ret = app_main(); printf("##ret: %d\n", ret); return 0; } #endif #else void fib2_WASM_innative_internal_init(); void fib2_WASM_innative_internal_exit(); unsigned fib2_WASM_app_main(); int main(int argc, char **argv) { unsigned ret = 0; fib2_WASM_innative_internal_init(); ret = fib2_WASM_app_main(); printf("##ret: %d\n", ret); fib2_WASM_innative_internal_exit(); } #endif
the_stack_data/215768898.c
// RUN: rm -rf %t.idx // RUN: %clang -target x86_64-apple-darwin -arch x86_64 -mmacosx-version-min=10.7 -x c-header %S/Inputs/head.h -o %t.h.pch -index-store-path %t.idx // RUN: %clang -target x86_64-apple-darwin -arch x86_64 -mmacosx-version-min=10.7 -c %s -o %t.o -index-store-path %t.idx -include %t.h -Werror // RUN: c-index-test core -aggregate-json %t.idx -o %t.json // RUN: sed -e "s:%S::g" -e "s:%T::g" %t.json > %t.final.json // RUN: diff -u %s.json %t.final.json int main() { test1_func(); }
the_stack_data/95451194.c
struct A{int a; int b;}; int test295(){struct A a; a.a = 174; struct A b = a; return b.a;}
the_stack_data/151856.c
#include <stdlib.h> #include <stdio.h> #define TRUE 1 #define FALSE 0 struct _primelist { long prime; struct _primelist *next; }; typedef struct _primelist primelist; primelist *head=NULL, *tail=NULL; int checkprime(long n) { primelist *p; long i, n_div_i, n_mod_i; int flag; flag = TRUE; for (p = head; p != NULL ; p = p->next) { i = p->prime; n_div_i = n / i; n_mod_i = n % i; if (n_mod_i == 0) { flag = FALSE; break; /* found not to be prime */ } if (n_div_i < i) { break; /* no use doing more i-loop if n < i*i */ } } return flag; } int main(int argc, char **argv) { primelist *p=NULL, *q=NULL; long n, n_max; n_max = atol(argv[1]); for (n = 2; n <= n_max; n++) { if (checkprime(n)) { q= calloc(1, sizeof(primelist)); q->prime = n; if (head == NULL) { head = q; } else { tail->next=q; } tail = q; } } for (p = head; p != NULL; p = p->next) { printf ("%ld\n", p->prime); } for (p = head; p != NULL; q = p->next, free(p), p = q) {} return EXIT_SUCCESS; }
the_stack_data/1088038.c
// PARAM: --enable ana.int.interval #include <assert.h> int main() { int x, y, z; if (x+1 == 2) { assert(x == 1); } else { assert(x != 1); } if (5-x == 3) assert(x == 2); if (5-x == 3 && x+y == x*3) assert(x == 2 && y == 4); if (x == 3 && y/x == 2) assert(y == 6); if (y/x == 2 && x == 3) assert(x == 3); // TODO y == 6 if (2+(3-x)*4/5 == 6 && 2*y >= x+4) assert(x == -2 && y >= 1); if (x > 1 && x < 5 && x % 2 == 1) assert(x != 2); // [2,4] -> [3,4] TODO x % 2 == 1 }
the_stack_data/247018692.c
/*BEGIN_LEGAL Intel Open Source License Copyright (c) 2002-2016 Intel Corporation. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. Neither the name of the Intel Corporation nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE INTEL OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. END_LEGAL */ #include <string.h> #include <stdio.h> char str1[] = "foo"; char str2[] = "foo"; char str3[] = "not_foo"; int main(int argc, char *argv[]) { char *p_str2 = str2; char *p_str3 = str3; if (strcmp(str1, p_str2) == 0) fprintf(stderr, " string equals to foo\n"); if (strcmp(str1, p_str3) == 0) fprintf(stderr, " string isn't equal to foo\n"); return 0; }
the_stack_data/139214.c
/**************************************************************************** * * Copyright 2018 Samsung Electronics All Rights Reserved. * * 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 * * http://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. * ****************************************************************************/ /**************************************************************************** * lib/libc/wchar/lib_mbsnrtowcs.c * * Copyright (C) 2017 Gregory Nutt. All rights reserved. * Author: Alan Carvalho de Assis <[email protected]> * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in * the documentation and/or other materials provided with the * distribution. * 3. Neither the name NuttX nor the names of its contributors may be * used to endorse or promote products derived from this software * without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. * ****************************************************************************/ /**************************************************************************** * Included Files ****************************************************************************/ #include <sys/types.h> #include <wchar.h> #ifdef CONFIG_LIBC_WCHAR /**************************************************************************** * Public Functions ****************************************************************************/ /**************************************************************************** * Name: mbsnrtowcs * * Description: * The 'mbsrtowcs' function converts a sequence of multibyte characters * pointed to indirectly by 'src' into a sequence of corresponding wide * characters and stores at most 'len' of them in the wchar_t array pointed * to by 'dst', until it encounters a terminating null character ('\0'). * * If 'dst' is NULL, no characters are stored. * * If 'dst' is not NULL, the pointer pointed to by 'src' is updated to * point to the character after the one that conversion stopped at. If * conversion stops because a null character is encountered, *'src' is set * to NULL. * * The mbstate_t argument, 'ps', is used to keep track of the shift state. * If it is NULL, 'mbsrtowcs' uses an internal, static mbstate_t object, * which is initialized to the initial conversion state at program startup. * * The 'mbsnrtowcs' function behaves identically to 'mbsrtowcs', except * that conversion stops after reading at most 'nms' bytes from the buffer * pointed to by 'src'. * * Returned Value: * The 'mbsrtowcs' and 'mbsnrtowcs' functions return the number of wide * characters stored in the array pointed to by 'dst' if successful, * otherwise it returns (size_t)-1. * * Portability: * 'mbsrtowcs' is defined by the C99 standard. * 'mbsnrtowcs' is defined by the POSIX.1-2008 standard. * ****************************************************************************/ size_t mbsnrtowcs(FAR wchar_t *dst, FAR const char **src, size_t nms, size_t len, FAR mbstate_t *ps) { return len; } #endif /* CONFIG_LIBC_WCHAR */
the_stack_data/18887920.c
#include <stdio.h> main(){ /*count characters*/ long n; for(n=0;getchar()!=EOF;++n) ; printf("%ld",n); }
the_stack_data/136202.c
#include <stdio.h> int main () { int numbers[5]; int *p; p = numbers; *p = 10; p++; *p = 20; p = &numbers[2]; *p = 30; p = numbers + 3; *p = 40; p = numbers; *(p+4) = 50; for (int n=0; n<5; n++) printf("%d, ", numbers[n]); return 0; }
the_stack_data/849.c
#include <stdio.h> #include <stdlib.h> void error_message(char *message) /*includefile */ { fprintf(stderr,"ERROR: %s\n",message); exit(1); }
the_stack_data/111544.c
#include <stdio.h> #include <stdlib.h> #include <stdint.h> #define LV_ATTRIBUTE_MEM_ALIGN #define LV_ATTRIBUTE_IMG_ALARM_16PX #define LV_COLOR_DEPTH 32 #define LV_COLOR_SIZE 32 //#define LV_COLOR_DEPTH 16 #define LV_IMG_PX_SIZE_ALPHA_BYTE 4 /* for 32 bit color */ //#define LV_IMG_PX_SIZE_ALPHA_BYTE 3 /* for 16 bit color */ #define LV_IMG_CF_TRUE_COLOR_ALPHA 5 /* for 32 bit color */ #define LV_IMG_CF_TRUE_COLOR 4 /* for 32 bit color */ // #define LV_IMG_CF_TRUE_COLOR_ALPHA 3 /* for 16 bit color */ // #define LV_COLOR_16_SWAP 1 /** Image header it is compatible with * the result from image converter utility*/ typedef struct { uint32_t cf : 5; /* Color format: See `lv_img_color_format_t`*/ uint32_t always_zero : 3; /*It the upper bits of the first byte. Always zero to look like a non-printable character*/ uint32_t reserved : 2; /*Reserved to be used later*/ uint32_t w : 11; /*Width of the image map*/ uint32_t h : 11; /*Height of the image map*/ } lv_img_header_t; typedef struct { lv_img_header_t header; uint32_t data_size; const uint8_t * data; } lv_img_dsc_t; #ifndef LV_ATTRIBUTE_MEM_ALIGN #define LV_ATTRIBUTE_MEM_ALIGN #endif #ifndef LV_ATTRIBUTE_IMG_LV_DEMO_PRINTER_IMG_PRINT #define LV_ATTRIBUTE_IMG_LV_DEMO_PRINTER_IMG_PRINT #endif const LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_IMG_LV_DEMO_PRINTER_IMG_PRINT uint8_t lv_demo_printer_img_print_map[] = { #if LV_COLOR_DEPTH == 1 || LV_COLOR_DEPTH == 8 /*Pixel format: Alpha 8 bit, Red: 3 bit, Green: 3 bit, Blue: 2 bit*/ 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x47, 0xff, 0x4f, 0xff, 0x63, 0xff, 0x5c, 0xff, 0x5c, 0xff, 0x5c, 0xff, 0x5c, 0xff, 0x5c, 0xff, 0x5c, 0xff, 0x5c, 0xff, 0x5c, 0xff, 0x5c, 0xff, 0x5c, 0xff, 0x5c, 0xff, 0x5c, 0xff, 0x5c, 0xff, 0x5c, 0xff, 0x5c, 0xff, 0x5c, 0xff, 0x5c, 0xff, 0x5c, 0xff, 0x5c, 0xff, 0x5c, 0xff, 0x5c, 0xff, 0x5c, 0xff, 0x5c, 0xff, 0x5c, 0xff, 0x5c, 0xff, 0x5c, 0xff, 0x5c, 0xff, 0x5c, 0xff, 0x5c, 0xff, 0x5c, 0xff, 0x5c, 0xff, 0x5c, 0xff, 0x5c, 0xff, 0x5c, 0xff, 0x5c, 0xff, 0x5c, 0xff, 0x5c, 0xff, 0x63, 0xff, 0x50, 0xff, 0x48, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x5c, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x64, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x90, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x94, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xaf, 0xff, 0xa7, 0xff, 0xac, 0xff, 0xac, 0xff, 0xa8, 0xff, 0xa8, 0xff, 0xa8, 0xff, 0xac, 0xff, 0xac, 0xff, 0xac, 0xff, 0xa8, 0xff, 0xa8, 0xff, 0xa8, 0xff, 0xac, 0xff, 0xac, 0xff, 0xac, 0xff, 0xac, 0xff, 0xa8, 0xff, 0xa8, 0xff, 0xa8, 0xff, 0xac, 0xff, 0xac, 0xff, 0xac, 0xff, 0xac, 0xff, 0xa8, 0xff, 0xa8, 0xff, 0xa8, 0xff, 0xac, 0xff, 0xac, 0xff, 0xac, 0xff, 0xac, 0xff, 0xa8, 0xff, 0xa8, 0xff, 0xa7, 0xff, 0xaf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x87, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0x9b, 0xff, 0x4c, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x4c, 0xff, 0x93, 0xff, 0xff, 0xff, 0xff, 0xff, 0x87, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x88, 0xff, 0xff, 0xff, 0xff, 0xff, 0x87, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x8b, 0xff, 0xff, 0xff, 0xff, 0xff, 0x87, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x8b, 0xff, 0xff, 0xff, 0xff, 0xff, 0x87, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x8b, 0xff, 0xff, 0xff, 0xff, 0xff, 0x87, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x8b, 0xff, 0xff, 0xff, 0xff, 0xff, 0x87, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x8b, 0xff, 0xff, 0xff, 0xff, 0xff, 0x87, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x8b, 0xff, 0xff, 0xff, 0xff, 0xff, 0x87, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x8b, 0xff, 0xff, 0xff, 0xff, 0xff, 0x87, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x8b, 0xff, 0xff, 0xff, 0xff, 0xff, 0x87, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x8b, 0xff, 0xff, 0xff, 0xff, 0xff, 0x87, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x88, 0xff, 0xff, 0xff, 0xff, 0xff, 0x83, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x3f, 0xff, 0x48, 0xff, 0x5b, 0xff, 0x64, 0xff, 0x64, 0xff, 0x63, 0xff, 0x5c, 0xff, 0x64, 0xff, 0xa3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xa7, 0xff, 0x68, 0xff, 0x5c, 0xff, 0x63, 0xff, 0x63, 0xff, 0x63, 0xff, 0x63, 0xff, 0x63, 0xff, 0x63, 0xff, 0x63, 0xff, 0x63, 0xff, 0x63, 0xff, 0x63, 0xff, 0x63, 0xff, 0x63, 0xff, 0x63, 0xff, 0x63, 0xff, 0x63, 0xff, 0x63, 0xff, 0x63, 0xff, 0x63, 0xff, 0x63, 0xff, 0x63, 0xff, 0x63, 0xff, 0x63, 0xff, 0x63, 0xff, 0x63, 0xff, 0x63, 0xff, 0x63, 0xff, 0x63, 0xff, 0x63, 0xff, 0x63, 0xff, 0x63, 0xff, 0x63, 0xff, 0x5c, 0xff, 0x68, 0xff, 0xa7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xa7, 0xff, 0x64, 0xff, 0x5c, 0xff, 0x63, 0xff, 0x63, 0xff, 0x64, 0xff, 0x5b, 0xff, 0x47, 0xff, 0x3f, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x4c, 0xff, 0x74, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x77, 0xff, 0x4c, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x47, 0xff, 0x94, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x9c, 0xff, 0x48, 0xff, 0x00, 0xff, 0x00, 0xff, 0x5c, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb0, 0xff, 0xb0, 0xff, 0xd4, 0xff, 0xd4, 0xff, 0xd4, 0xff, 0xd4, 0xff, 0xd4, 0xff, 0xd4, 0xff, 0xd4, 0xff, 0xd4, 0xff, 0xd4, 0xff, 0xd4, 0xff, 0xd4, 0xff, 0xd4, 0xff, 0xd4, 0xff, 0xd4, 0xff, 0xd4, 0xff, 0xd4, 0xff, 0xd4, 0xff, 0xd4, 0xff, 0xd4, 0xff, 0xd4, 0xff, 0xd4, 0xff, 0xd4, 0xff, 0xd4, 0xff, 0xd4, 0xff, 0xd4, 0xff, 0xd4, 0xff, 0xd4, 0xff, 0xd4, 0xff, 0xd4, 0xff, 0xd4, 0xff, 0xd4, 0xff, 0xd4, 0xff, 0xd4, 0xff, 0xd4, 0xff, 0xd4, 0xff, 0xd4, 0xff, 0xd4, 0xff, 0xd4, 0xff, 0xd4, 0xff, 0xd4, 0xff, 0xd4, 0xff, 0xd4, 0xff, 0xd4, 0xff, 0xd4, 0xff, 0xd4, 0xff, 0xd4, 0xff, 0xd4, 0xff, 0xd4, 0xff, 0xd4, 0xff, 0xb0, 0xff, 0xb0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x6b, 0xff, 0x00, 0xff, 0x4f, 0xff, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xa8, 0xff, 0x47, 0xff, 0x48, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x48, 0xff, 0x47, 0xff, 0xa3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x4c, 0xff, 0x43, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x48, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x43, 0xff, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x47, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x4c, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x44, 0xff, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x44, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x47, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x43, 0xff, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x44, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x5c, 0xff, 0x7c, 0xff, 0x5c, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x47, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x43, 0xff, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x44, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x63, 0xff, 0xf4, 0xff, 0xff, 0xff, 0xfb, 0xff, 0x63, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x47, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x43, 0xff, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x44, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x5f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x58, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x47, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x43, 0xff, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x44, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x5c, 0xff, 0x77, 0xff, 0xb7, 0xff, 0x7b, 0xff, 0x5c, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x47, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x43, 0xff, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x44, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x47, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x43, 0xff, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x44, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x47, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x43, 0xff, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x44, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x47, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x43, 0xff, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x44, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x47, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x43, 0xff, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x44, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x44, 0xff, 0x50, 0xff, 0x6b, 0xff, 0x63, 0xff, 0x63, 0xff, 0x63, 0xff, 0x63, 0xff, 0x63, 0xff, 0x63, 0xff, 0x63, 0xff, 0x63, 0xff, 0x63, 0xff, 0x63, 0xff, 0x63, 0xff, 0x63, 0xff, 0x63, 0xff, 0x63, 0xff, 0x63, 0xff, 0x63, 0xff, 0x63, 0xff, 0x63, 0xff, 0x63, 0xff, 0x63, 0xff, 0x63, 0xff, 0x63, 0xff, 0x63, 0xff, 0x63, 0xff, 0x63, 0xff, 0x63, 0xff, 0x63, 0xff, 0x63, 0xff, 0x63, 0xff, 0x63, 0xff, 0x63, 0xff, 0x63, 0xff, 0x63, 0xff, 0x63, 0xff, 0x63, 0xff, 0x63, 0xff, 0x63, 0xff, 0x6b, 0xff, 0x53, 0xff, 0x48, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x47, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x43, 0xff, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x44, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x58, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x6b, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x47, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x43, 0xff, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x44, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x8c, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x93, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x47, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x43, 0xff, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x44, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb0, 0xff, 0xeb, 0xff, 0xdf, 0xff, 0xe3, 0xff, 0xe3, 0xff, 0xe3, 0xff, 0xe3, 0xff, 0xe3, 0xff, 0xe3, 0xff, 0xe3, 0xff, 0xe3, 0xff, 0xe3, 0xff, 0xe3, 0xff, 0xe3, 0xff, 0xe3, 0xff, 0xe3, 0xff, 0xe3, 0xff, 0xe3, 0xff, 0xe3, 0xff, 0xe3, 0xff, 0xe3, 0xff, 0xe3, 0xff, 0xe3, 0xff, 0xe3, 0xff, 0xe3, 0xff, 0xe3, 0xff, 0xe3, 0xff, 0xe3, 0xff, 0xe3, 0xff, 0xe3, 0xff, 0xe3, 0xff, 0xe3, 0xff, 0xe3, 0xff, 0xe3, 0xff, 0xdf, 0xff, 0xe8, 0xff, 0xb0, 0xff, 0xff, 0xff, 0xff, 0xff, 0x87, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x47, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x43, 0xff, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x44, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0x93, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x90, 0xff, 0xff, 0xff, 0xff, 0xff, 0x87, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x47, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x43, 0xff, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x44, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x88, 0xff, 0xff, 0xff, 0xff, 0xff, 0x87, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x47, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x43, 0xff, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x44, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x8b, 0xff, 0xff, 0xff, 0xff, 0xff, 0x87, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x47, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x43, 0xff, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x44, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x8b, 0xff, 0xff, 0xff, 0xff, 0xff, 0x87, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x47, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x43, 0xff, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x44, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x1f, 0xff, 0x23, 0xff, 0x3b, 0xff, 0x37, 0xff, 0x37, 0xff, 0x37, 0xff, 0x37, 0xff, 0x37, 0xff, 0x37, 0xff, 0x37, 0xff, 0x37, 0xff, 0x37, 0xff, 0x37, 0xff, 0x37, 0xff, 0x37, 0xff, 0x37, 0xff, 0x37, 0xff, 0x37, 0xff, 0x37, 0xff, 0x37, 0xff, 0x37, 0xff, 0x37, 0xff, 0x37, 0xff, 0x37, 0xff, 0x3b, 0xff, 0x28, 0xff, 0x23, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x8b, 0xff, 0xff, 0xff, 0xff, 0xff, 0x87, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x47, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x43, 0xff, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x44, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x37, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x57, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x8b, 0xff, 0xff, 0xff, 0xff, 0xff, 0x87, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x47, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x43, 0xff, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x44, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x63, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x8b, 0xff, 0xff, 0xff, 0xff, 0xff, 0x87, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x47, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x43, 0xff, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x47, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x24, 0xff, 0x93, 0xff, 0xe8, 0xff, 0xe3, 0xff, 0xe3, 0xff, 0xe3, 0xff, 0xe3, 0xff, 0xe3, 0xff, 0xe3, 0xff, 0xe3, 0xff, 0xe3, 0xff, 0xe3, 0xff, 0xe3, 0xff, 0xe3, 0xff, 0xe3, 0xff, 0xe3, 0xff, 0xe3, 0xff, 0xe3, 0xff, 0xe3, 0xff, 0xe3, 0xff, 0xe3, 0xff, 0xe3, 0xff, 0xe3, 0xff, 0xe3, 0xff, 0xe8, 0xff, 0xa0, 0xff, 0x23, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x8b, 0xff, 0xff, 0xff, 0xff, 0xff, 0x87, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x48, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x43, 0xff, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x44, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x8b, 0xff, 0xff, 0xff, 0xff, 0xff, 0x87, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x48, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x44, 0xff, 0x48, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x83, 0xff, 0x48, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x7c, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x8b, 0xff, 0xff, 0xff, 0xff, 0xff, 0x83, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x47, 0xff, 0x73, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x44, 0xff, 0x47, 0xff, 0x90, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x94, 0xff, 0x5b, 0xff, 0x5b, 0xff, 0x5c, 0xff, 0x58, 0xff, 0x5c, 0xff, 0xa3, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x8b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xa3, 0xff, 0x5c, 0xff, 0x58, 0xff, 0x5c, 0xff, 0x5b, 0xff, 0x5b, 0xff, 0x90, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x9c, 0xff, 0x48, 0xff, 0x00, 0xff, 0x4c, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x8b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x48, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x43, 0xff, 0xf3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x1f, 0xff, 0x24, 0xff, 0x3b, 0xff, 0x37, 0xff, 0x37, 0xff, 0x37, 0xff, 0x37, 0xff, 0x37, 0xff, 0x37, 0xff, 0x37, 0xff, 0x37, 0xff, 0x37, 0xff, 0x37, 0xff, 0x37, 0xff, 0x37, 0xff, 0x37, 0xff, 0x37, 0xff, 0x37, 0xff, 0x37, 0xff, 0x37, 0xff, 0x37, 0xff, 0x37, 0xff, 0x37, 0xff, 0x37, 0xff, 0x3b, 0xff, 0x28, 0xff, 0x24, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x8b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf7, 0xff, 0x3f, 0xff, 0x3f, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x4f, 0xff, 0x60, 0xff, 0xa7, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdc, 0xff, 0xd7, 0xff, 0xe3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x37, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x57, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x8b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe7, 0xff, 0xd7, 0xff, 0xdc, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xa7, 0xff, 0x64, 0xff, 0x4c, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x4f, 0xff, 0x8b, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x63, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x9b, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x8b, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0xff, 0x4c, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x24, 0xff, 0xe4, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xef, 0xff, 0x1c, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x8b, 0xff, 0xff, 0xff, 0xff, 0xff, 0x83, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x20, 0xff, 0x24, 0xff, 0x24, 0xff, 0x24, 0xff, 0x24, 0xff, 0x24, 0xff, 0x24, 0xff, 0x24, 0xff, 0x24, 0xff, 0x24, 0xff, 0x24, 0xff, 0x24, 0xff, 0x24, 0xff, 0x24, 0xff, 0x24, 0xff, 0x24, 0xff, 0x24, 0xff, 0x24, 0xff, 0x24, 0xff, 0x24, 0xff, 0x24, 0xff, 0x24, 0xff, 0x24, 0xff, 0x24, 0xff, 0x24, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x8b, 0xff, 0xff, 0xff, 0xff, 0xff, 0x87, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x8b, 0xff, 0xff, 0xff, 0xff, 0xff, 0x87, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x8b, 0xff, 0xff, 0xff, 0xff, 0xff, 0x87, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x8b, 0xff, 0xff, 0xff, 0xff, 0xff, 0x87, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x8b, 0xff, 0xff, 0xff, 0xff, 0xff, 0x87, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x8b, 0xff, 0xff, 0xff, 0xff, 0xff, 0x87, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x8b, 0xff, 0xff, 0xff, 0xff, 0xff, 0x87, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x88, 0xff, 0xff, 0xff, 0xff, 0xff, 0x87, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xa3, 0xff, 0x63, 0xff, 0x5c, 0xff, 0x60, 0xff, 0x60, 0xff, 0x60, 0xff, 0x60, 0xff, 0x60, 0xff, 0x60, 0xff, 0x60, 0xff, 0x60, 0xff, 0x60, 0xff, 0x60, 0xff, 0x60, 0xff, 0x60, 0xff, 0x60, 0xff, 0x60, 0xff, 0x60, 0xff, 0x60, 0xff, 0x60, 0xff, 0x60, 0xff, 0x60, 0xff, 0x60, 0xff, 0x60, 0xff, 0x60, 0xff, 0x60, 0xff, 0x60, 0xff, 0x60, 0xff, 0x60, 0xff, 0x60, 0xff, 0x60, 0xff, 0x60, 0xff, 0x60, 0xff, 0x60, 0xff, 0x5c, 0xff, 0x63, 0xff, 0xa3, 0xff, 0xff, 0xff, 0xff, 0xff, 0x87, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x88, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x78, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x83, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x4c, 0xff, 0x9b, 0xff, 0xb0, 0xff, 0xac, 0xff, 0xac, 0xff, 0xac, 0xff, 0xac, 0xff, 0xac, 0xff, 0xac, 0xff, 0xac, 0xff, 0xac, 0xff, 0xac, 0xff, 0xac, 0xff, 0xac, 0xff, 0xac, 0xff, 0xac, 0xff, 0xac, 0xff, 0xac, 0xff, 0xac, 0xff, 0xac, 0xff, 0xac, 0xff, 0xac, 0xff, 0xac, 0xff, 0xac, 0xff, 0xac, 0xff, 0xac, 0xff, 0xac, 0xff, 0xac, 0xff, 0xac, 0xff, 0xac, 0xff, 0xac, 0xff, 0xac, 0xff, 0xac, 0xff, 0xac, 0xff, 0xac, 0xff, 0xac, 0xff, 0xac, 0xff, 0xac, 0xff, 0xac, 0xff, 0xac, 0xff, 0xb0, 0xff, 0x9c, 0xff, 0x4c, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, #endif #if LV_COLOR_DEPTH == 16 && LV_COLOR_16_SWAP == 0 /*Pixel format: Alpha 8 bit, Red: 5 bit, Green: 6 bit, Blue: 5 bit*/ 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x47, 0xff, 0xff, 0x4f, 0xff, 0xff, 0x63, 0xff, 0xff, 0x5c, 0xff, 0xff, 0x5c, 0xff, 0xff, 0x5c, 0xff, 0xff, 0x5c, 0xff, 0xff, 0x5c, 0xff, 0xff, 0x5c, 0xff, 0xff, 0x5c, 0xff, 0xff, 0x5c, 0xff, 0xff, 0x5c, 0xff, 0xff, 0x5c, 0xff, 0xff, 0x5c, 0xff, 0xff, 0x5c, 0xff, 0xff, 0x5c, 0xff, 0xff, 0x5c, 0xff, 0xff, 0x5c, 0xff, 0xff, 0x5c, 0xff, 0xff, 0x5c, 0xff, 0xff, 0x5c, 0xff, 0xff, 0x5c, 0xff, 0xff, 0x5c, 0xff, 0xff, 0x5c, 0xff, 0xff, 0x5c, 0xff, 0xff, 0x5c, 0xff, 0xff, 0x5c, 0xff, 0xff, 0x5c, 0xff, 0xff, 0x5c, 0xff, 0xff, 0x5c, 0xff, 0xff, 0x5c, 0xff, 0xff, 0x5c, 0xff, 0xff, 0x5c, 0xff, 0xff, 0x5c, 0xff, 0xff, 0x5c, 0xff, 0xff, 0x5c, 0xff, 0xff, 0x5c, 0xff, 0xff, 0x5c, 0xff, 0xff, 0x5c, 0xff, 0xff, 0x5c, 0xff, 0xff, 0x63, 0xff, 0xff, 0x50, 0xff, 0xff, 0x48, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x5c, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x64, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x90, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x94, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xaf, 0xff, 0xff, 0xa7, 0xff, 0xff, 0xac, 0xff, 0xff, 0xac, 0xff, 0xff, 0xa8, 0xff, 0xff, 0xa8, 0xff, 0xff, 0xa8, 0xff, 0xff, 0xac, 0xff, 0xff, 0xac, 0xff, 0xff, 0xac, 0xff, 0xff, 0xa8, 0xff, 0xff, 0xa8, 0xff, 0xff, 0xa8, 0xff, 0xff, 0xac, 0xff, 0xff, 0xac, 0xff, 0xff, 0xac, 0xff, 0xff, 0xac, 0xff, 0xff, 0xa8, 0xff, 0xff, 0xa8, 0xff, 0xff, 0xa8, 0xff, 0xff, 0xac, 0xff, 0xff, 0xac, 0xff, 0xff, 0xac, 0xff, 0xff, 0xac, 0xff, 0xff, 0xa8, 0xff, 0xff, 0xa8, 0xff, 0xff, 0xa8, 0xff, 0xff, 0xac, 0xff, 0xff, 0xac, 0xff, 0xff, 0xac, 0xff, 0xff, 0xac, 0xff, 0xff, 0xa8, 0xff, 0xff, 0xa8, 0xff, 0xff, 0xa7, 0xff, 0xff, 0xaf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x87, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x9b, 0xff, 0xff, 0x4c, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x4c, 0xff, 0xff, 0x93, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x87, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x88, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x87, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x8b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x87, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x8b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x87, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x8b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x87, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x8b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x87, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x8b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x87, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x8b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x87, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x8b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x87, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x8b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x87, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x8b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x87, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x88, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x83, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x3f, 0xff, 0xff, 0x48, 0xff, 0xff, 0x5b, 0xff, 0xff, 0x64, 0xff, 0xff, 0x64, 0xff, 0xff, 0x63, 0xff, 0xff, 0x5c, 0xff, 0xff, 0x64, 0xff, 0xff, 0xa3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xa7, 0xff, 0xff, 0x68, 0xff, 0xff, 0x5c, 0xff, 0xff, 0x63, 0xff, 0xff, 0x63, 0xff, 0xff, 0x63, 0xff, 0xff, 0x63, 0xff, 0xff, 0x63, 0xff, 0xff, 0x63, 0xff, 0xff, 0x63, 0xff, 0xff, 0x63, 0xff, 0xff, 0x63, 0xff, 0xff, 0x63, 0xff, 0xff, 0x63, 0xff, 0xff, 0x63, 0xff, 0xff, 0x63, 0xff, 0xff, 0x63, 0xff, 0xff, 0x63, 0xff, 0xff, 0x63, 0xff, 0xff, 0x63, 0xff, 0xff, 0x63, 0xff, 0xff, 0x63, 0xff, 0xff, 0x63, 0xff, 0xff, 0x63, 0xff, 0xff, 0x63, 0xff, 0xff, 0x63, 0xff, 0xff, 0x63, 0xff, 0xff, 0x63, 0xff, 0xff, 0x63, 0xff, 0xff, 0x63, 0xff, 0xff, 0x63, 0xff, 0xff, 0x63, 0xff, 0xff, 0x63, 0xff, 0xff, 0x63, 0xff, 0xff, 0x5c, 0xff, 0xff, 0x68, 0xff, 0xff, 0xa7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xa7, 0xff, 0xff, 0x64, 0xff, 0xff, 0x5c, 0xff, 0xff, 0x63, 0xff, 0xff, 0x63, 0xff, 0xff, 0x64, 0xff, 0xff, 0x5b, 0xff, 0xff, 0x47, 0xff, 0xff, 0x3f, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x4c, 0xff, 0xff, 0x74, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x77, 0xff, 0xff, 0x4c, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x47, 0xff, 0xff, 0x94, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x9c, 0xff, 0xff, 0x48, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x5c, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb0, 0xff, 0xff, 0xb0, 0xff, 0xff, 0xd4, 0xff, 0xff, 0xd4, 0xff, 0xff, 0xd4, 0xff, 0xff, 0xd4, 0xff, 0xff, 0xd4, 0xff, 0xff, 0xd4, 0xff, 0xff, 0xd4, 0xff, 0xff, 0xd4, 0xff, 0xff, 0xd4, 0xff, 0xff, 0xd4, 0xff, 0xff, 0xd4, 0xff, 0xff, 0xd4, 0xff, 0xff, 0xd4, 0xff, 0xff, 0xd4, 0xff, 0xff, 0xd4, 0xff, 0xff, 0xd4, 0xff, 0xff, 0xd4, 0xff, 0xff, 0xd4, 0xff, 0xff, 0xd4, 0xff, 0xff, 0xd4, 0xff, 0xff, 0xd4, 0xff, 0xff, 0xd4, 0xff, 0xff, 0xd4, 0xff, 0xff, 0xd4, 0xff, 0xff, 0xd4, 0xff, 0xff, 0xd4, 0xff, 0xff, 0xd4, 0xff, 0xff, 0xd4, 0xff, 0xff, 0xd4, 0xff, 0xff, 0xd4, 0xff, 0xff, 0xd4, 0xff, 0xff, 0xd4, 0xff, 0xff, 0xd4, 0xff, 0xff, 0xd4, 0xff, 0xff, 0xd4, 0xff, 0xff, 0xd4, 0xff, 0xff, 0xd4, 0xff, 0xff, 0xd4, 0xff, 0xff, 0xd4, 0xff, 0xff, 0xd4, 0xff, 0xff, 0xd4, 0xff, 0xff, 0xd4, 0xff, 0xff, 0xd4, 0xff, 0xff, 0xd4, 0xff, 0xff, 0xd4, 0xff, 0xff, 0xd4, 0xff, 0xff, 0xd4, 0xff, 0xff, 0xd4, 0xff, 0xff, 0xd4, 0xff, 0xff, 0xb0, 0xff, 0xff, 0xb0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x6b, 0xff, 0xff, 0x00, 0xff, 0xff, 0x4f, 0xff, 0xff, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xa8, 0xff, 0xff, 0x47, 0xff, 0xff, 0x48, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x48, 0xff, 0xff, 0x47, 0xff, 0xff, 0xa3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0x4c, 0xff, 0xff, 0x43, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x48, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x43, 0xff, 0xff, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x47, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x4c, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x44, 0xff, 0xff, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x44, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x47, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x43, 0xff, 0xff, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x44, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x5c, 0xff, 0xff, 0x7c, 0xff, 0xff, 0x5c, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x47, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x43, 0xff, 0xff, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x44, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x63, 0xff, 0xff, 0xf4, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfb, 0xff, 0xff, 0x63, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x47, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x43, 0xff, 0xff, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x44, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x5f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x58, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x47, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x43, 0xff, 0xff, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x44, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x5c, 0xff, 0xff, 0x77, 0xff, 0xff, 0xb7, 0xff, 0xff, 0x7b, 0xff, 0xff, 0x5c, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x47, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x43, 0xff, 0xff, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x44, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x47, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x43, 0xff, 0xff, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x44, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x47, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x43, 0xff, 0xff, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x44, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x47, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x43, 0xff, 0xff, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x44, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x47, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x43, 0xff, 0xff, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x44, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x44, 0xff, 0xff, 0x50, 0xff, 0xff, 0x6b, 0xff, 0xff, 0x63, 0xff, 0xff, 0x63, 0xff, 0xff, 0x63, 0xff, 0xff, 0x63, 0xff, 0xff, 0x63, 0xff, 0xff, 0x63, 0xff, 0xff, 0x63, 0xff, 0xff, 0x63, 0xff, 0xff, 0x63, 0xff, 0xff, 0x63, 0xff, 0xff, 0x63, 0xff, 0xff, 0x63, 0xff, 0xff, 0x63, 0xff, 0xff, 0x63, 0xff, 0xff, 0x63, 0xff, 0xff, 0x63, 0xff, 0xff, 0x63, 0xff, 0xff, 0x63, 0xff, 0xff, 0x63, 0xff, 0xff, 0x63, 0xff, 0xff, 0x63, 0xff, 0xff, 0x63, 0xff, 0xff, 0x63, 0xff, 0xff, 0x63, 0xff, 0xff, 0x63, 0xff, 0xff, 0x63, 0xff, 0xff, 0x63, 0xff, 0xff, 0x63, 0xff, 0xff, 0x63, 0xff, 0xff, 0x63, 0xff, 0xff, 0x63, 0xff, 0xff, 0x63, 0xff, 0xff, 0x63, 0xff, 0xff, 0x63, 0xff, 0xff, 0x63, 0xff, 0xff, 0x63, 0xff, 0xff, 0x63, 0xff, 0xff, 0x6b, 0xff, 0xff, 0x53, 0xff, 0xff, 0x48, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x47, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x43, 0xff, 0xff, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x44, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x58, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x6b, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x47, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x43, 0xff, 0xff, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x44, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x8c, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x93, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x47, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x43, 0xff, 0xff, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x44, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb0, 0xff, 0xff, 0xeb, 0xff, 0xff, 0xdf, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xdf, 0xff, 0xff, 0xe8, 0xff, 0xff, 0xb0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x87, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x47, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x43, 0xff, 0xff, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x44, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x93, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x90, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x87, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x47, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x43, 0xff, 0xff, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x44, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x88, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x87, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x47, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x43, 0xff, 0xff, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x44, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x8b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x87, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x47, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x43, 0xff, 0xff, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x44, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x8b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x87, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x47, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x43, 0xff, 0xff, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x44, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x1f, 0xff, 0xff, 0x23, 0xff, 0xff, 0x3b, 0xff, 0xff, 0x37, 0xff, 0xff, 0x37, 0xff, 0xff, 0x37, 0xff, 0xff, 0x37, 0xff, 0xff, 0x37, 0xff, 0xff, 0x37, 0xff, 0xff, 0x37, 0xff, 0xff, 0x37, 0xff, 0xff, 0x37, 0xff, 0xff, 0x37, 0xff, 0xff, 0x37, 0xff, 0xff, 0x37, 0xff, 0xff, 0x37, 0xff, 0xff, 0x37, 0xff, 0xff, 0x37, 0xff, 0xff, 0x37, 0xff, 0xff, 0x37, 0xff, 0xff, 0x37, 0xff, 0xff, 0x37, 0xff, 0xff, 0x37, 0xff, 0xff, 0x37, 0xff, 0xff, 0x3b, 0xff, 0xff, 0x28, 0xff, 0xff, 0x23, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x8b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x87, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x47, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x43, 0xff, 0xff, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x44, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x37, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x57, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x8b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x87, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x47, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x43, 0xff, 0xff, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x44, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x63, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x8b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x87, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x47, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x43, 0xff, 0xff, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x47, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x24, 0xff, 0xff, 0x93, 0xff, 0xff, 0xe8, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xe8, 0xff, 0xff, 0xa0, 0xff, 0xff, 0x23, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x8b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x87, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x48, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x43, 0xff, 0xff, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x44, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x8b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x87, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x48, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x44, 0xff, 0xff, 0x48, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x83, 0xff, 0xff, 0x48, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x7c, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x8b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x83, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x47, 0xff, 0xff, 0x73, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x44, 0xff, 0xff, 0x47, 0xff, 0xff, 0x90, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x94, 0xff, 0xff, 0x5b, 0xff, 0xff, 0x5b, 0xff, 0xff, 0x5c, 0xff, 0xff, 0x58, 0xff, 0xff, 0x5c, 0xff, 0xff, 0xa3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x8b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xa3, 0xff, 0xff, 0x5c, 0xff, 0xff, 0x58, 0xff, 0xff, 0x5c, 0xff, 0xff, 0x5b, 0xff, 0xff, 0x5b, 0xff, 0xff, 0x90, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x9c, 0xff, 0xff, 0x48, 0xff, 0xff, 0x00, 0xff, 0xff, 0x4c, 0xff, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x8b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x48, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x43, 0xff, 0xff, 0xf3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x1f, 0xff, 0xff, 0x24, 0xff, 0xff, 0x3b, 0xff, 0xff, 0x37, 0xff, 0xff, 0x37, 0xff, 0xff, 0x37, 0xff, 0xff, 0x37, 0xff, 0xff, 0x37, 0xff, 0xff, 0x37, 0xff, 0xff, 0x37, 0xff, 0xff, 0x37, 0xff, 0xff, 0x37, 0xff, 0xff, 0x37, 0xff, 0xff, 0x37, 0xff, 0xff, 0x37, 0xff, 0xff, 0x37, 0xff, 0xff, 0x37, 0xff, 0xff, 0x37, 0xff, 0xff, 0x37, 0xff, 0xff, 0x37, 0xff, 0xff, 0x37, 0xff, 0xff, 0x37, 0xff, 0xff, 0x37, 0xff, 0xff, 0x37, 0xff, 0xff, 0x3b, 0xff, 0xff, 0x28, 0xff, 0xff, 0x24, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x8b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf7, 0xff, 0xff, 0x3f, 0xff, 0xff, 0x3f, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x4f, 0xff, 0xff, 0x60, 0xff, 0xff, 0xa7, 0xff, 0xff, 0xdf, 0xff, 0xff, 0xdf, 0xff, 0xff, 0xdc, 0xff, 0xff, 0xd7, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x37, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x57, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x8b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe7, 0xff, 0xff, 0xd7, 0xff, 0xff, 0xdc, 0xff, 0xff, 0xdf, 0xff, 0xff, 0xdf, 0xff, 0xff, 0xa7, 0xff, 0xff, 0x64, 0xff, 0xff, 0x4c, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x4f, 0xff, 0xff, 0x8b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x63, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x9b, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x8b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0xff, 0xff, 0x4c, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x24, 0xff, 0xff, 0xe4, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xef, 0xff, 0xff, 0x1c, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x8b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x83, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x20, 0xff, 0xff, 0x24, 0xff, 0xff, 0x24, 0xff, 0xff, 0x24, 0xff, 0xff, 0x24, 0xff, 0xff, 0x24, 0xff, 0xff, 0x24, 0xff, 0xff, 0x24, 0xff, 0xff, 0x24, 0xff, 0xff, 0x24, 0xff, 0xff, 0x24, 0xff, 0xff, 0x24, 0xff, 0xff, 0x24, 0xff, 0xff, 0x24, 0xff, 0xff, 0x24, 0xff, 0xff, 0x24, 0xff, 0xff, 0x24, 0xff, 0xff, 0x24, 0xff, 0xff, 0x24, 0xff, 0xff, 0x24, 0xff, 0xff, 0x24, 0xff, 0xff, 0x24, 0xff, 0xff, 0x24, 0xff, 0xff, 0x24, 0xff, 0xff, 0x24, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x8b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x87, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x8b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x87, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x8b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x87, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x8b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x87, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x8b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x87, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x8b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x87, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x8b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x87, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x88, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x87, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xa3, 0xff, 0xff, 0x63, 0xff, 0xff, 0x5c, 0xff, 0xff, 0x60, 0xff, 0xff, 0x60, 0xff, 0xff, 0x60, 0xff, 0xff, 0x60, 0xff, 0xff, 0x60, 0xff, 0xff, 0x60, 0xff, 0xff, 0x60, 0xff, 0xff, 0x60, 0xff, 0xff, 0x60, 0xff, 0xff, 0x60, 0xff, 0xff, 0x60, 0xff, 0xff, 0x60, 0xff, 0xff, 0x60, 0xff, 0xff, 0x60, 0xff, 0xff, 0x60, 0xff, 0xff, 0x60, 0xff, 0xff, 0x60, 0xff, 0xff, 0x60, 0xff, 0xff, 0x60, 0xff, 0xff, 0x60, 0xff, 0xff, 0x60, 0xff, 0xff, 0x60, 0xff, 0xff, 0x60, 0xff, 0xff, 0x60, 0xff, 0xff, 0x60, 0xff, 0xff, 0x60, 0xff, 0xff, 0x60, 0xff, 0xff, 0x60, 0xff, 0xff, 0x60, 0xff, 0xff, 0x60, 0xff, 0xff, 0x60, 0xff, 0xff, 0x5c, 0xff, 0xff, 0x63, 0xff, 0xff, 0xa3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x87, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x88, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x78, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x83, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x4c, 0xff, 0xff, 0x9b, 0xff, 0xff, 0xb0, 0xff, 0xff, 0xac, 0xff, 0xff, 0xac, 0xff, 0xff, 0xac, 0xff, 0xff, 0xac, 0xff, 0xff, 0xac, 0xff, 0xff, 0xac, 0xff, 0xff, 0xac, 0xff, 0xff, 0xac, 0xff, 0xff, 0xac, 0xff, 0xff, 0xac, 0xff, 0xff, 0xac, 0xff, 0xff, 0xac, 0xff, 0xff, 0xac, 0xff, 0xff, 0xac, 0xff, 0xff, 0xac, 0xff, 0xff, 0xac, 0xff, 0xff, 0xac, 0xff, 0xff, 0xac, 0xff, 0xff, 0xac, 0xff, 0xff, 0xac, 0xff, 0xff, 0xac, 0xff, 0xff, 0xac, 0xff, 0xff, 0xac, 0xff, 0xff, 0xac, 0xff, 0xff, 0xac, 0xff, 0xff, 0xac, 0xff, 0xff, 0xac, 0xff, 0xff, 0xac, 0xff, 0xff, 0xac, 0xff, 0xff, 0xac, 0xff, 0xff, 0xac, 0xff, 0xff, 0xac, 0xff, 0xff, 0xac, 0xff, 0xff, 0xac, 0xff, 0xff, 0xac, 0xff, 0xff, 0xac, 0xff, 0xff, 0xac, 0xff, 0xff, 0xb0, 0xff, 0xff, 0x9c, 0xff, 0xff, 0x4c, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, #endif #if LV_COLOR_DEPTH == 16 && LV_COLOR_16_SWAP != 0 /*Pixel format: Alpha 8 bit, Red: 5 bit, Green: 6 bit, Blue: 5 bit BUT the 2 color bytes are swapped*/ 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x47, 0xff, 0xff, 0x4f, 0xff, 0xff, 0x63, 0xff, 0xff, 0x5c, 0xff, 0xff, 0x5c, 0xff, 0xff, 0x5c, 0xff, 0xff, 0x5c, 0xff, 0xff, 0x5c, 0xff, 0xff, 0x5c, 0xff, 0xff, 0x5c, 0xff, 0xff, 0x5c, 0xff, 0xff, 0x5c, 0xff, 0xff, 0x5c, 0xff, 0xff, 0x5c, 0xff, 0xff, 0x5c, 0xff, 0xff, 0x5c, 0xff, 0xff, 0x5c, 0xff, 0xff, 0x5c, 0xff, 0xff, 0x5c, 0xff, 0xff, 0x5c, 0xff, 0xff, 0x5c, 0xff, 0xff, 0x5c, 0xff, 0xff, 0x5c, 0xff, 0xff, 0x5c, 0xff, 0xff, 0x5c, 0xff, 0xff, 0x5c, 0xff, 0xff, 0x5c, 0xff, 0xff, 0x5c, 0xff, 0xff, 0x5c, 0xff, 0xff, 0x5c, 0xff, 0xff, 0x5c, 0xff, 0xff, 0x5c, 0xff, 0xff, 0x5c, 0xff, 0xff, 0x5c, 0xff, 0xff, 0x5c, 0xff, 0xff, 0x5c, 0xff, 0xff, 0x5c, 0xff, 0xff, 0x5c, 0xff, 0xff, 0x5c, 0xff, 0xff, 0x5c, 0xff, 0xff, 0x63, 0xff, 0xff, 0x50, 0xff, 0xff, 0x48, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x5c, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x64, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x90, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x94, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xaf, 0xff, 0xff, 0xa7, 0xff, 0xff, 0xac, 0xff, 0xff, 0xac, 0xff, 0xff, 0xa8, 0xff, 0xff, 0xa8, 0xff, 0xff, 0xa8, 0xff, 0xff, 0xac, 0xff, 0xff, 0xac, 0xff, 0xff, 0xac, 0xff, 0xff, 0xa8, 0xff, 0xff, 0xa8, 0xff, 0xff, 0xa8, 0xff, 0xff, 0xac, 0xff, 0xff, 0xac, 0xff, 0xff, 0xac, 0xff, 0xff, 0xac, 0xff, 0xff, 0xa8, 0xff, 0xff, 0xa8, 0xff, 0xff, 0xa8, 0xff, 0xff, 0xac, 0xff, 0xff, 0xac, 0xff, 0xff, 0xac, 0xff, 0xff, 0xac, 0xff, 0xff, 0xa8, 0xff, 0xff, 0xa8, 0xff, 0xff, 0xa8, 0xff, 0xff, 0xac, 0xff, 0xff, 0xac, 0xff, 0xff, 0xac, 0xff, 0xff, 0xac, 0xff, 0xff, 0xa8, 0xff, 0xff, 0xa8, 0xff, 0xff, 0xa7, 0xff, 0xff, 0xaf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x87, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x9b, 0xff, 0xff, 0x4c, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x4c, 0xff, 0xff, 0x93, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x87, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x88, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x87, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x8b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x87, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x8b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x87, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x8b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x87, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x8b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x87, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x8b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x87, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x8b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x87, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x8b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x87, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x8b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x87, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x8b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x87, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x88, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x83, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x3f, 0xff, 0xff, 0x48, 0xff, 0xff, 0x5b, 0xff, 0xff, 0x64, 0xff, 0xff, 0x64, 0xff, 0xff, 0x63, 0xff, 0xff, 0x5c, 0xff, 0xff, 0x64, 0xff, 0xff, 0xa3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xa7, 0xff, 0xff, 0x68, 0xff, 0xff, 0x5c, 0xff, 0xff, 0x63, 0xff, 0xff, 0x63, 0xff, 0xff, 0x63, 0xff, 0xff, 0x63, 0xff, 0xff, 0x63, 0xff, 0xff, 0x63, 0xff, 0xff, 0x63, 0xff, 0xff, 0x63, 0xff, 0xff, 0x63, 0xff, 0xff, 0x63, 0xff, 0xff, 0x63, 0xff, 0xff, 0x63, 0xff, 0xff, 0x63, 0xff, 0xff, 0x63, 0xff, 0xff, 0x63, 0xff, 0xff, 0x63, 0xff, 0xff, 0x63, 0xff, 0xff, 0x63, 0xff, 0xff, 0x63, 0xff, 0xff, 0x63, 0xff, 0xff, 0x63, 0xff, 0xff, 0x63, 0xff, 0xff, 0x63, 0xff, 0xff, 0x63, 0xff, 0xff, 0x63, 0xff, 0xff, 0x63, 0xff, 0xff, 0x63, 0xff, 0xff, 0x63, 0xff, 0xff, 0x63, 0xff, 0xff, 0x63, 0xff, 0xff, 0x63, 0xff, 0xff, 0x5c, 0xff, 0xff, 0x68, 0xff, 0xff, 0xa7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xa7, 0xff, 0xff, 0x64, 0xff, 0xff, 0x5c, 0xff, 0xff, 0x63, 0xff, 0xff, 0x63, 0xff, 0xff, 0x64, 0xff, 0xff, 0x5b, 0xff, 0xff, 0x47, 0xff, 0xff, 0x3f, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x4c, 0xff, 0xff, 0x74, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x77, 0xff, 0xff, 0x4c, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x47, 0xff, 0xff, 0x94, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x9c, 0xff, 0xff, 0x48, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x5c, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb0, 0xff, 0xff, 0xb0, 0xff, 0xff, 0xd4, 0xff, 0xff, 0xd4, 0xff, 0xff, 0xd4, 0xff, 0xff, 0xd4, 0xff, 0xff, 0xd4, 0xff, 0xff, 0xd4, 0xff, 0xff, 0xd4, 0xff, 0xff, 0xd4, 0xff, 0xff, 0xd4, 0xff, 0xff, 0xd4, 0xff, 0xff, 0xd4, 0xff, 0xff, 0xd4, 0xff, 0xff, 0xd4, 0xff, 0xff, 0xd4, 0xff, 0xff, 0xd4, 0xff, 0xff, 0xd4, 0xff, 0xff, 0xd4, 0xff, 0xff, 0xd4, 0xff, 0xff, 0xd4, 0xff, 0xff, 0xd4, 0xff, 0xff, 0xd4, 0xff, 0xff, 0xd4, 0xff, 0xff, 0xd4, 0xff, 0xff, 0xd4, 0xff, 0xff, 0xd4, 0xff, 0xff, 0xd4, 0xff, 0xff, 0xd4, 0xff, 0xff, 0xd4, 0xff, 0xff, 0xd4, 0xff, 0xff, 0xd4, 0xff, 0xff, 0xd4, 0xff, 0xff, 0xd4, 0xff, 0xff, 0xd4, 0xff, 0xff, 0xd4, 0xff, 0xff, 0xd4, 0xff, 0xff, 0xd4, 0xff, 0xff, 0xd4, 0xff, 0xff, 0xd4, 0xff, 0xff, 0xd4, 0xff, 0xff, 0xd4, 0xff, 0xff, 0xd4, 0xff, 0xff, 0xd4, 0xff, 0xff, 0xd4, 0xff, 0xff, 0xd4, 0xff, 0xff, 0xd4, 0xff, 0xff, 0xd4, 0xff, 0xff, 0xd4, 0xff, 0xff, 0xd4, 0xff, 0xff, 0xd4, 0xff, 0xff, 0xb0, 0xff, 0xff, 0xb0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x6b, 0xff, 0xff, 0x00, 0xff, 0xff, 0x4f, 0xff, 0xff, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xa8, 0xff, 0xff, 0x47, 0xff, 0xff, 0x48, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x48, 0xff, 0xff, 0x47, 0xff, 0xff, 0xa3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0x4c, 0xff, 0xff, 0x43, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x48, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x43, 0xff, 0xff, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x47, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x4c, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x44, 0xff, 0xff, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x44, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x47, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x43, 0xff, 0xff, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x44, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x5c, 0xff, 0xff, 0x7c, 0xff, 0xff, 0x5c, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x47, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x43, 0xff, 0xff, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x44, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x63, 0xff, 0xff, 0xf4, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfb, 0xff, 0xff, 0x63, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x47, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x43, 0xff, 0xff, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x44, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x5f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x58, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x47, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x43, 0xff, 0xff, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x44, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x5c, 0xff, 0xff, 0x77, 0xff, 0xff, 0xb7, 0xff, 0xff, 0x7b, 0xff, 0xff, 0x5c, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x47, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x43, 0xff, 0xff, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x44, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x47, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x43, 0xff, 0xff, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x44, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x47, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x43, 0xff, 0xff, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x44, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x47, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x43, 0xff, 0xff, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x44, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x47, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x43, 0xff, 0xff, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x44, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x44, 0xff, 0xff, 0x50, 0xff, 0xff, 0x6b, 0xff, 0xff, 0x63, 0xff, 0xff, 0x63, 0xff, 0xff, 0x63, 0xff, 0xff, 0x63, 0xff, 0xff, 0x63, 0xff, 0xff, 0x63, 0xff, 0xff, 0x63, 0xff, 0xff, 0x63, 0xff, 0xff, 0x63, 0xff, 0xff, 0x63, 0xff, 0xff, 0x63, 0xff, 0xff, 0x63, 0xff, 0xff, 0x63, 0xff, 0xff, 0x63, 0xff, 0xff, 0x63, 0xff, 0xff, 0x63, 0xff, 0xff, 0x63, 0xff, 0xff, 0x63, 0xff, 0xff, 0x63, 0xff, 0xff, 0x63, 0xff, 0xff, 0x63, 0xff, 0xff, 0x63, 0xff, 0xff, 0x63, 0xff, 0xff, 0x63, 0xff, 0xff, 0x63, 0xff, 0xff, 0x63, 0xff, 0xff, 0x63, 0xff, 0xff, 0x63, 0xff, 0xff, 0x63, 0xff, 0xff, 0x63, 0xff, 0xff, 0x63, 0xff, 0xff, 0x63, 0xff, 0xff, 0x63, 0xff, 0xff, 0x63, 0xff, 0xff, 0x63, 0xff, 0xff, 0x63, 0xff, 0xff, 0x63, 0xff, 0xff, 0x6b, 0xff, 0xff, 0x53, 0xff, 0xff, 0x48, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x47, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x43, 0xff, 0xff, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x44, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x58, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x6b, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x47, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x43, 0xff, 0xff, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x44, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x8c, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x93, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x47, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x43, 0xff, 0xff, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x44, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb0, 0xff, 0xff, 0xeb, 0xff, 0xff, 0xdf, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xdf, 0xff, 0xff, 0xe8, 0xff, 0xff, 0xb0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x87, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x47, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x43, 0xff, 0xff, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x44, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x93, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x90, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x87, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x47, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x43, 0xff, 0xff, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x44, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x88, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x87, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x47, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x43, 0xff, 0xff, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x44, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x8b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x87, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x47, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x43, 0xff, 0xff, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x44, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x8b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x87, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x47, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x43, 0xff, 0xff, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x44, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x1f, 0xff, 0xff, 0x23, 0xff, 0xff, 0x3b, 0xff, 0xff, 0x37, 0xff, 0xff, 0x37, 0xff, 0xff, 0x37, 0xff, 0xff, 0x37, 0xff, 0xff, 0x37, 0xff, 0xff, 0x37, 0xff, 0xff, 0x37, 0xff, 0xff, 0x37, 0xff, 0xff, 0x37, 0xff, 0xff, 0x37, 0xff, 0xff, 0x37, 0xff, 0xff, 0x37, 0xff, 0xff, 0x37, 0xff, 0xff, 0x37, 0xff, 0xff, 0x37, 0xff, 0xff, 0x37, 0xff, 0xff, 0x37, 0xff, 0xff, 0x37, 0xff, 0xff, 0x37, 0xff, 0xff, 0x37, 0xff, 0xff, 0x37, 0xff, 0xff, 0x3b, 0xff, 0xff, 0x28, 0xff, 0xff, 0x23, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x8b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x87, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x47, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x43, 0xff, 0xff, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x44, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x37, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x57, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x8b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x87, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x47, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x43, 0xff, 0xff, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x44, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x63, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x8b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x87, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x47, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x43, 0xff, 0xff, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x47, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x24, 0xff, 0xff, 0x93, 0xff, 0xff, 0xe8, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xe8, 0xff, 0xff, 0xa0, 0xff, 0xff, 0x23, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x8b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x87, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x48, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x43, 0xff, 0xff, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x44, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x8b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x87, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x48, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x44, 0xff, 0xff, 0x48, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x83, 0xff, 0xff, 0x48, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x7c, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x8b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x83, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x47, 0xff, 0xff, 0x73, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x44, 0xff, 0xff, 0x47, 0xff, 0xff, 0x90, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x94, 0xff, 0xff, 0x5b, 0xff, 0xff, 0x5b, 0xff, 0xff, 0x5c, 0xff, 0xff, 0x58, 0xff, 0xff, 0x5c, 0xff, 0xff, 0xa3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x8b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xa3, 0xff, 0xff, 0x5c, 0xff, 0xff, 0x58, 0xff, 0xff, 0x5c, 0xff, 0xff, 0x5b, 0xff, 0xff, 0x5b, 0xff, 0xff, 0x90, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x9c, 0xff, 0xff, 0x48, 0xff, 0xff, 0x00, 0xff, 0xff, 0x4c, 0xff, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x8b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x48, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x43, 0xff, 0xff, 0xf3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x1f, 0xff, 0xff, 0x24, 0xff, 0xff, 0x3b, 0xff, 0xff, 0x37, 0xff, 0xff, 0x37, 0xff, 0xff, 0x37, 0xff, 0xff, 0x37, 0xff, 0xff, 0x37, 0xff, 0xff, 0x37, 0xff, 0xff, 0x37, 0xff, 0xff, 0x37, 0xff, 0xff, 0x37, 0xff, 0xff, 0x37, 0xff, 0xff, 0x37, 0xff, 0xff, 0x37, 0xff, 0xff, 0x37, 0xff, 0xff, 0x37, 0xff, 0xff, 0x37, 0xff, 0xff, 0x37, 0xff, 0xff, 0x37, 0xff, 0xff, 0x37, 0xff, 0xff, 0x37, 0xff, 0xff, 0x37, 0xff, 0xff, 0x37, 0xff, 0xff, 0x3b, 0xff, 0xff, 0x28, 0xff, 0xff, 0x24, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x8b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf7, 0xff, 0xff, 0x3f, 0xff, 0xff, 0x3f, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x4f, 0xff, 0xff, 0x60, 0xff, 0xff, 0xa7, 0xff, 0xff, 0xdf, 0xff, 0xff, 0xdf, 0xff, 0xff, 0xdc, 0xff, 0xff, 0xd7, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x37, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x57, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x8b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe7, 0xff, 0xff, 0xd7, 0xff, 0xff, 0xdc, 0xff, 0xff, 0xdf, 0xff, 0xff, 0xdf, 0xff, 0xff, 0xa7, 0xff, 0xff, 0x64, 0xff, 0xff, 0x4c, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x4f, 0xff, 0xff, 0x8b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x63, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x9b, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x8b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0xff, 0xff, 0x4c, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x24, 0xff, 0xff, 0xe4, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xef, 0xff, 0xff, 0x1c, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x8b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x83, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x20, 0xff, 0xff, 0x24, 0xff, 0xff, 0x24, 0xff, 0xff, 0x24, 0xff, 0xff, 0x24, 0xff, 0xff, 0x24, 0xff, 0xff, 0x24, 0xff, 0xff, 0x24, 0xff, 0xff, 0x24, 0xff, 0xff, 0x24, 0xff, 0xff, 0x24, 0xff, 0xff, 0x24, 0xff, 0xff, 0x24, 0xff, 0xff, 0x24, 0xff, 0xff, 0x24, 0xff, 0xff, 0x24, 0xff, 0xff, 0x24, 0xff, 0xff, 0x24, 0xff, 0xff, 0x24, 0xff, 0xff, 0x24, 0xff, 0xff, 0x24, 0xff, 0xff, 0x24, 0xff, 0xff, 0x24, 0xff, 0xff, 0x24, 0xff, 0xff, 0x24, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x8b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x87, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x8b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x87, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x8b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x87, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x8b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x87, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x8b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x87, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x8b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x87, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x8b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x87, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x88, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x87, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xa3, 0xff, 0xff, 0x63, 0xff, 0xff, 0x5c, 0xff, 0xff, 0x60, 0xff, 0xff, 0x60, 0xff, 0xff, 0x60, 0xff, 0xff, 0x60, 0xff, 0xff, 0x60, 0xff, 0xff, 0x60, 0xff, 0xff, 0x60, 0xff, 0xff, 0x60, 0xff, 0xff, 0x60, 0xff, 0xff, 0x60, 0xff, 0xff, 0x60, 0xff, 0xff, 0x60, 0xff, 0xff, 0x60, 0xff, 0xff, 0x60, 0xff, 0xff, 0x60, 0xff, 0xff, 0x60, 0xff, 0xff, 0x60, 0xff, 0xff, 0x60, 0xff, 0xff, 0x60, 0xff, 0xff, 0x60, 0xff, 0xff, 0x60, 0xff, 0xff, 0x60, 0xff, 0xff, 0x60, 0xff, 0xff, 0x60, 0xff, 0xff, 0x60, 0xff, 0xff, 0x60, 0xff, 0xff, 0x60, 0xff, 0xff, 0x60, 0xff, 0xff, 0x60, 0xff, 0xff, 0x60, 0xff, 0xff, 0x60, 0xff, 0xff, 0x5c, 0xff, 0xff, 0x63, 0xff, 0xff, 0xa3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x87, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x88, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x78, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x83, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x4c, 0xff, 0xff, 0x9b, 0xff, 0xff, 0xb0, 0xff, 0xff, 0xac, 0xff, 0xff, 0xac, 0xff, 0xff, 0xac, 0xff, 0xff, 0xac, 0xff, 0xff, 0xac, 0xff, 0xff, 0xac, 0xff, 0xff, 0xac, 0xff, 0xff, 0xac, 0xff, 0xff, 0xac, 0xff, 0xff, 0xac, 0xff, 0xff, 0xac, 0xff, 0xff, 0xac, 0xff, 0xff, 0xac, 0xff, 0xff, 0xac, 0xff, 0xff, 0xac, 0xff, 0xff, 0xac, 0xff, 0xff, 0xac, 0xff, 0xff, 0xac, 0xff, 0xff, 0xac, 0xff, 0xff, 0xac, 0xff, 0xff, 0xac, 0xff, 0xff, 0xac, 0xff, 0xff, 0xac, 0xff, 0xff, 0xac, 0xff, 0xff, 0xac, 0xff, 0xff, 0xac, 0xff, 0xff, 0xac, 0xff, 0xff, 0xac, 0xff, 0xff, 0xac, 0xff, 0xff, 0xac, 0xff, 0xff, 0xac, 0xff, 0xff, 0xac, 0xff, 0xff, 0xac, 0xff, 0xff, 0xac, 0xff, 0xff, 0xac, 0xff, 0xff, 0xac, 0xff, 0xff, 0xac, 0xff, 0xff, 0xb0, 0xff, 0xff, 0x9c, 0xff, 0xff, 0x4c, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, #endif #if LV_COLOR_DEPTH == 32 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x47, 0xff, 0xff, 0xff, 0x4f, 0xff, 0xff, 0xff, 0x63, 0xff, 0xff, 0xff, 0x5c, 0xff, 0xff, 0xff, 0x5c, 0xff, 0xff, 0xff, 0x5c, 0xff, 0xff, 0xff, 0x5c, 0xff, 0xff, 0xff, 0x5c, 0xff, 0xff, 0xff, 0x5c, 0xff, 0xff, 0xff, 0x5c, 0xff, 0xff, 0xff, 0x5c, 0xff, 0xff, 0xff, 0x5c, 0xff, 0xff, 0xff, 0x5c, 0xff, 0xff, 0xff, 0x5c, 0xff, 0xff, 0xff, 0x5c, 0xff, 0xff, 0xff, 0x5c, 0xff, 0xff, 0xff, 0x5c, 0xff, 0xff, 0xff, 0x5c, 0xff, 0xff, 0xff, 0x5c, 0xff, 0xff, 0xff, 0x5c, 0xff, 0xff, 0xff, 0x5c, 0xff, 0xff, 0xff, 0x5c, 0xff, 0xff, 0xff, 0x5c, 0xff, 0xff, 0xff, 0x5c, 0xff, 0xff, 0xff, 0x5c, 0xff, 0xff, 0xff, 0x5c, 0xff, 0xff, 0xff, 0x5c, 0xff, 0xff, 0xff, 0x5c, 0xff, 0xff, 0xff, 0x5c, 0xff, 0xff, 0xff, 0x5c, 0xff, 0xff, 0xff, 0x5c, 0xff, 0xff, 0xff, 0x5c, 0xff, 0xff, 0xff, 0x5c, 0xff, 0xff, 0xff, 0x5c, 0xff, 0xff, 0xff, 0x5c, 0xff, 0xff, 0xff, 0x5c, 0xff, 0xff, 0xff, 0x5c, 0xff, 0xff, 0xff, 0x5c, 0xff, 0xff, 0xff, 0x5c, 0xff, 0xff, 0xff, 0x5c, 0xff, 0xff, 0xff, 0x63, 0xff, 0xff, 0xff, 0x50, 0xff, 0xff, 0xff, 0x48, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x5c, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x64, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x90, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x94, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xaf, 0xff, 0xff, 0xff, 0xa7, 0xff, 0xff, 0xff, 0xac, 0xff, 0xff, 0xff, 0xac, 0xff, 0xff, 0xff, 0xa8, 0xff, 0xff, 0xff, 0xa8, 0xff, 0xff, 0xff, 0xa8, 0xff, 0xff, 0xff, 0xac, 0xff, 0xff, 0xff, 0xac, 0xff, 0xff, 0xff, 0xac, 0xff, 0xff, 0xff, 0xa8, 0xff, 0xff, 0xff, 0xa8, 0xff, 0xff, 0xff, 0xa8, 0xff, 0xff, 0xff, 0xac, 0xff, 0xff, 0xff, 0xac, 0xff, 0xff, 0xff, 0xac, 0xff, 0xff, 0xff, 0xac, 0xff, 0xff, 0xff, 0xa8, 0xff, 0xff, 0xff, 0xa8, 0xff, 0xff, 0xff, 0xa8, 0xff, 0xff, 0xff, 0xac, 0xff, 0xff, 0xff, 0xac, 0xff, 0xff, 0xff, 0xac, 0xff, 0xff, 0xff, 0xac, 0xff, 0xff, 0xff, 0xa8, 0xff, 0xff, 0xff, 0xa8, 0xff, 0xff, 0xff, 0xa8, 0xff, 0xff, 0xff, 0xac, 0xff, 0xff, 0xff, 0xac, 0xff, 0xff, 0xff, 0xac, 0xff, 0xff, 0xff, 0xac, 0xff, 0xff, 0xff, 0xa8, 0xff, 0xff, 0xff, 0xa8, 0xff, 0xff, 0xff, 0xa7, 0xff, 0xff, 0xff, 0xaf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x87, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x9b, 0xff, 0xff, 0xff, 0x4c, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x4c, 0xff, 0xff, 0xff, 0x93, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x87, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x88, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x87, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x8b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x87, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x8b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x87, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x8b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x87, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x8b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x87, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x8b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x87, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x8b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x87, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x8b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x87, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x8b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x87, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x8b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x87, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x88, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x83, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x3f, 0xff, 0xff, 0xff, 0x48, 0xff, 0xff, 0xff, 0x5b, 0xff, 0xff, 0xff, 0x64, 0xff, 0xff, 0xff, 0x64, 0xff, 0xff, 0xff, 0x63, 0xff, 0xff, 0xff, 0x5c, 0xff, 0xff, 0xff, 0x64, 0xff, 0xff, 0xff, 0xa3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xa7, 0xff, 0xff, 0xff, 0x68, 0xff, 0xff, 0xff, 0x5c, 0xff, 0xff, 0xff, 0x63, 0xff, 0xff, 0xff, 0x63, 0xff, 0xff, 0xff, 0x63, 0xff, 0xff, 0xff, 0x63, 0xff, 0xff, 0xff, 0x63, 0xff, 0xff, 0xff, 0x63, 0xff, 0xff, 0xff, 0x63, 0xff, 0xff, 0xff, 0x63, 0xff, 0xff, 0xff, 0x63, 0xff, 0xff, 0xff, 0x63, 0xff, 0xff, 0xff, 0x63, 0xff, 0xff, 0xff, 0x63, 0xff, 0xff, 0xff, 0x63, 0xff, 0xff, 0xff, 0x63, 0xff, 0xff, 0xff, 0x63, 0xff, 0xff, 0xff, 0x63, 0xff, 0xff, 0xff, 0x63, 0xff, 0xff, 0xff, 0x63, 0xff, 0xff, 0xff, 0x63, 0xff, 0xff, 0xff, 0x63, 0xff, 0xff, 0xff, 0x63, 0xff, 0xff, 0xff, 0x63, 0xff, 0xff, 0xff, 0x63, 0xff, 0xff, 0xff, 0x63, 0xff, 0xff, 0xff, 0x63, 0xff, 0xff, 0xff, 0x63, 0xff, 0xff, 0xff, 0x63, 0xff, 0xff, 0xff, 0x63, 0xff, 0xff, 0xff, 0x63, 0xff, 0xff, 0xff, 0x63, 0xff, 0xff, 0xff, 0x63, 0xff, 0xff, 0xff, 0x5c, 0xff, 0xff, 0xff, 0x68, 0xff, 0xff, 0xff, 0xa7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xa7, 0xff, 0xff, 0xff, 0x64, 0xff, 0xff, 0xff, 0x5c, 0xff, 0xff, 0xff, 0x63, 0xff, 0xff, 0xff, 0x63, 0xff, 0xff, 0xff, 0x64, 0xff, 0xff, 0xff, 0x5b, 0xff, 0xff, 0xff, 0x47, 0xff, 0xff, 0xff, 0x3f, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x4c, 0xff, 0xff, 0xff, 0x74, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x77, 0xff, 0xff, 0xff, 0x4c, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x47, 0xff, 0xff, 0xff, 0x94, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x9c, 0xff, 0xff, 0xff, 0x48, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x5c, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb0, 0xff, 0xff, 0xff, 0xb0, 0xff, 0xff, 0xff, 0xd4, 0xff, 0xff, 0xff, 0xd4, 0xff, 0xff, 0xff, 0xd4, 0xff, 0xff, 0xff, 0xd4, 0xff, 0xff, 0xff, 0xd4, 0xff, 0xff, 0xff, 0xd4, 0xff, 0xff, 0xff, 0xd4, 0xff, 0xff, 0xff, 0xd4, 0xff, 0xff, 0xff, 0xd4, 0xff, 0xff, 0xff, 0xd4, 0xff, 0xff, 0xff, 0xd4, 0xff, 0xff, 0xff, 0xd4, 0xff, 0xff, 0xff, 0xd4, 0xff, 0xff, 0xff, 0xd4, 0xff, 0xff, 0xff, 0xd4, 0xff, 0xff, 0xff, 0xd4, 0xff, 0xff, 0xff, 0xd4, 0xff, 0xff, 0xff, 0xd4, 0xff, 0xff, 0xff, 0xd4, 0xff, 0xff, 0xff, 0xd4, 0xff, 0xff, 0xff, 0xd4, 0xff, 0xff, 0xff, 0xd4, 0xff, 0xff, 0xff, 0xd4, 0xff, 0xff, 0xff, 0xd4, 0xff, 0xff, 0xff, 0xd4, 0xff, 0xff, 0xff, 0xd4, 0xff, 0xff, 0xff, 0xd4, 0xff, 0xff, 0xff, 0xd4, 0xff, 0xff, 0xff, 0xd4, 0xff, 0xff, 0xff, 0xd4, 0xff, 0xff, 0xff, 0xd4, 0xff, 0xff, 0xff, 0xd4, 0xff, 0xff, 0xff, 0xd4, 0xff, 0xff, 0xff, 0xd4, 0xff, 0xff, 0xff, 0xd4, 0xff, 0xff, 0xff, 0xd4, 0xff, 0xff, 0xff, 0xd4, 0xff, 0xff, 0xff, 0xd4, 0xff, 0xff, 0xff, 0xd4, 0xff, 0xff, 0xff, 0xd4, 0xff, 0xff, 0xff, 0xd4, 0xff, 0xff, 0xff, 0xd4, 0xff, 0xff, 0xff, 0xd4, 0xff, 0xff, 0xff, 0xd4, 0xff, 0xff, 0xff, 0xd4, 0xff, 0xff, 0xff, 0xd4, 0xff, 0xff, 0xff, 0xd4, 0xff, 0xff, 0xff, 0xd4, 0xff, 0xff, 0xff, 0xd4, 0xff, 0xff, 0xff, 0xb0, 0xff, 0xff, 0xff, 0xb0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x6b, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x4f, 0xff, 0xff, 0xff, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xa8, 0xff, 0xff, 0xff, 0x47, 0xff, 0xff, 0xff, 0x48, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x48, 0xff, 0xff, 0xff, 0x47, 0xff, 0xff, 0xff, 0xa3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x4c, 0xff, 0xff, 0xff, 0x43, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x48, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x43, 0xff, 0xff, 0xff, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x47, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x4c, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x44, 0xff, 0xff, 0xff, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x44, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x47, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x43, 0xff, 0xff, 0xff, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x44, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x5c, 0xff, 0xff, 0xff, 0x7c, 0xff, 0xff, 0xff, 0x5c, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x47, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x43, 0xff, 0xff, 0xff, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x44, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x63, 0xff, 0xff, 0xff, 0xf4, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfb, 0xff, 0xff, 0xff, 0x63, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x47, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x43, 0xff, 0xff, 0xff, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x44, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x5f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x58, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x47, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x43, 0xff, 0xff, 0xff, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x44, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x5c, 0xff, 0xff, 0xff, 0x77, 0xff, 0xff, 0xff, 0xb7, 0xff, 0xff, 0xff, 0x7b, 0xff, 0xff, 0xff, 0x5c, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x47, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x43, 0xff, 0xff, 0xff, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x44, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x47, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x43, 0xff, 0xff, 0xff, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x44, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x47, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x43, 0xff, 0xff, 0xff, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x44, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x47, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x43, 0xff, 0xff, 0xff, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x44, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x47, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x43, 0xff, 0xff, 0xff, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x44, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x44, 0xff, 0xff, 0xff, 0x50, 0xff, 0xff, 0xff, 0x6b, 0xff, 0xff, 0xff, 0x63, 0xff, 0xff, 0xff, 0x63, 0xff, 0xff, 0xff, 0x63, 0xff, 0xff, 0xff, 0x63, 0xff, 0xff, 0xff, 0x63, 0xff, 0xff, 0xff, 0x63, 0xff, 0xff, 0xff, 0x63, 0xff, 0xff, 0xff, 0x63, 0xff, 0xff, 0xff, 0x63, 0xff, 0xff, 0xff, 0x63, 0xff, 0xff, 0xff, 0x63, 0xff, 0xff, 0xff, 0x63, 0xff, 0xff, 0xff, 0x63, 0xff, 0xff, 0xff, 0x63, 0xff, 0xff, 0xff, 0x63, 0xff, 0xff, 0xff, 0x63, 0xff, 0xff, 0xff, 0x63, 0xff, 0xff, 0xff, 0x63, 0xff, 0xff, 0xff, 0x63, 0xff, 0xff, 0xff, 0x63, 0xff, 0xff, 0xff, 0x63, 0xff, 0xff, 0xff, 0x63, 0xff, 0xff, 0xff, 0x63, 0xff, 0xff, 0xff, 0x63, 0xff, 0xff, 0xff, 0x63, 0xff, 0xff, 0xff, 0x63, 0xff, 0xff, 0xff, 0x63, 0xff, 0xff, 0xff, 0x63, 0xff, 0xff, 0xff, 0x63, 0xff, 0xff, 0xff, 0x63, 0xff, 0xff, 0xff, 0x63, 0xff, 0xff, 0xff, 0x63, 0xff, 0xff, 0xff, 0x63, 0xff, 0xff, 0xff, 0x63, 0xff, 0xff, 0xff, 0x63, 0xff, 0xff, 0xff, 0x63, 0xff, 0xff, 0xff, 0x63, 0xff, 0xff, 0xff, 0x6b, 0xff, 0xff, 0xff, 0x53, 0xff, 0xff, 0xff, 0x48, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x47, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x43, 0xff, 0xff, 0xff, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x44, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x58, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x6b, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x47, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x43, 0xff, 0xff, 0xff, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x44, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x8c, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x93, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x47, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x43, 0xff, 0xff, 0xff, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x44, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb0, 0xff, 0xff, 0xff, 0xeb, 0xff, 0xff, 0xff, 0xdf, 0xff, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xff, 0xdf, 0xff, 0xff, 0xff, 0xe8, 0xff, 0xff, 0xff, 0xb0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x87, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x47, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x43, 0xff, 0xff, 0xff, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x44, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x93, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x90, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x87, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x47, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x43, 0xff, 0xff, 0xff, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x44, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x88, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x87, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x47, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x43, 0xff, 0xff, 0xff, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x44, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x8b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x87, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x47, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x43, 0xff, 0xff, 0xff, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x44, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x8b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x87, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x47, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x43, 0xff, 0xff, 0xff, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x44, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x1f, 0xff, 0xff, 0xff, 0x23, 0xff, 0xff, 0xff, 0x3b, 0xff, 0xff, 0xff, 0x37, 0xff, 0xff, 0xff, 0x37, 0xff, 0xff, 0xff, 0x37, 0xff, 0xff, 0xff, 0x37, 0xff, 0xff, 0xff, 0x37, 0xff, 0xff, 0xff, 0x37, 0xff, 0xff, 0xff, 0x37, 0xff, 0xff, 0xff, 0x37, 0xff, 0xff, 0xff, 0x37, 0xff, 0xff, 0xff, 0x37, 0xff, 0xff, 0xff, 0x37, 0xff, 0xff, 0xff, 0x37, 0xff, 0xff, 0xff, 0x37, 0xff, 0xff, 0xff, 0x37, 0xff, 0xff, 0xff, 0x37, 0xff, 0xff, 0xff, 0x37, 0xff, 0xff, 0xff, 0x37, 0xff, 0xff, 0xff, 0x37, 0xff, 0xff, 0xff, 0x37, 0xff, 0xff, 0xff, 0x37, 0xff, 0xff, 0xff, 0x37, 0xff, 0xff, 0xff, 0x3b, 0xff, 0xff, 0xff, 0x28, 0xff, 0xff, 0xff, 0x23, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x8b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x87, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x47, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x43, 0xff, 0xff, 0xff, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x44, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x37, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x57, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x8b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x87, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x47, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x43, 0xff, 0xff, 0xff, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x44, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x63, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x8b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x87, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x47, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x43, 0xff, 0xff, 0xff, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x47, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x24, 0xff, 0xff, 0xff, 0x93, 0xff, 0xff, 0xff, 0xe8, 0xff, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xff, 0xe8, 0xff, 0xff, 0xff, 0xa0, 0xff, 0xff, 0xff, 0x23, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x8b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x87, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x48, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x43, 0xff, 0xff, 0xff, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x44, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x8b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x87, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x48, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x44, 0xff, 0xff, 0xff, 0x48, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x83, 0xff, 0xff, 0xff, 0x48, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x7c, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x8b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x83, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x47, 0xff, 0xff, 0xff, 0x73, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x44, 0xff, 0xff, 0xff, 0x47, 0xff, 0xff, 0xff, 0x90, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x94, 0xff, 0xff, 0xff, 0x5b, 0xff, 0xff, 0xff, 0x5b, 0xff, 0xff, 0xff, 0x5c, 0xff, 0xff, 0xff, 0x58, 0xff, 0xff, 0xff, 0x5c, 0xff, 0xff, 0xff, 0xa3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x8b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xa3, 0xff, 0xff, 0xff, 0x5c, 0xff, 0xff, 0xff, 0x58, 0xff, 0xff, 0xff, 0x5c, 0xff, 0xff, 0xff, 0x5b, 0xff, 0xff, 0xff, 0x5b, 0xff, 0xff, 0xff, 0x90, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x9c, 0xff, 0xff, 0xff, 0x48, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x4c, 0xff, 0xff, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x8b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x48, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x43, 0xff, 0xff, 0xff, 0xf3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x1f, 0xff, 0xff, 0xff, 0x24, 0xff, 0xff, 0xff, 0x3b, 0xff, 0xff, 0xff, 0x37, 0xff, 0xff, 0xff, 0x37, 0xff, 0xff, 0xff, 0x37, 0xff, 0xff, 0xff, 0x37, 0xff, 0xff, 0xff, 0x37, 0xff, 0xff, 0xff, 0x37, 0xff, 0xff, 0xff, 0x37, 0xff, 0xff, 0xff, 0x37, 0xff, 0xff, 0xff, 0x37, 0xff, 0xff, 0xff, 0x37, 0xff, 0xff, 0xff, 0x37, 0xff, 0xff, 0xff, 0x37, 0xff, 0xff, 0xff, 0x37, 0xff, 0xff, 0xff, 0x37, 0xff, 0xff, 0xff, 0x37, 0xff, 0xff, 0xff, 0x37, 0xff, 0xff, 0xff, 0x37, 0xff, 0xff, 0xff, 0x37, 0xff, 0xff, 0xff, 0x37, 0xff, 0xff, 0xff, 0x37, 0xff, 0xff, 0xff, 0x37, 0xff, 0xff, 0xff, 0x3b, 0xff, 0xff, 0xff, 0x28, 0xff, 0xff, 0xff, 0x24, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x8b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf7, 0xff, 0xff, 0xff, 0x3f, 0xff, 0xff, 0xff, 0x3f, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x4f, 0xff, 0xff, 0xff, 0x60, 0xff, 0xff, 0xff, 0xa7, 0xff, 0xff, 0xff, 0xdf, 0xff, 0xff, 0xff, 0xdf, 0xff, 0xff, 0xff, 0xdc, 0xff, 0xff, 0xff, 0xd7, 0xff, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x37, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x57, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x8b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe7, 0xff, 0xff, 0xff, 0xd7, 0xff, 0xff, 0xff, 0xdc, 0xff, 0xff, 0xff, 0xdf, 0xff, 0xff, 0xff, 0xdf, 0xff, 0xff, 0xff, 0xa7, 0xff, 0xff, 0xff, 0x64, 0xff, 0xff, 0xff, 0x4c, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x4f, 0xff, 0xff, 0xff, 0x8b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x63, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x9b, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x8b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0xff, 0xff, 0xff, 0x4c, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x24, 0xff, 0xff, 0xff, 0xe4, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xef, 0xff, 0xff, 0xff, 0x1c, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x8b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x83, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x20, 0xff, 0xff, 0xff, 0x24, 0xff, 0xff, 0xff, 0x24, 0xff, 0xff, 0xff, 0x24, 0xff, 0xff, 0xff, 0x24, 0xff, 0xff, 0xff, 0x24, 0xff, 0xff, 0xff, 0x24, 0xff, 0xff, 0xff, 0x24, 0xff, 0xff, 0xff, 0x24, 0xff, 0xff, 0xff, 0x24, 0xff, 0xff, 0xff, 0x24, 0xff, 0xff, 0xff, 0x24, 0xff, 0xff, 0xff, 0x24, 0xff, 0xff, 0xff, 0x24, 0xff, 0xff, 0xff, 0x24, 0xff, 0xff, 0xff, 0x24, 0xff, 0xff, 0xff, 0x24, 0xff, 0xff, 0xff, 0x24, 0xff, 0xff, 0xff, 0x24, 0xff, 0xff, 0xff, 0x24, 0xff, 0xff, 0xff, 0x24, 0xff, 0xff, 0xff, 0x24, 0xff, 0xff, 0xff, 0x24, 0xff, 0xff, 0xff, 0x24, 0xff, 0xff, 0xff, 0x24, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x8b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x87, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x8b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x87, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x8b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x87, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x8b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x87, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x8b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x87, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x8b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x87, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x8b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x87, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x88, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x87, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xa3, 0xff, 0xff, 0xff, 0x63, 0xff, 0xff, 0xff, 0x5c, 0xff, 0xff, 0xff, 0x60, 0xff, 0xff, 0xff, 0x60, 0xff, 0xff, 0xff, 0x60, 0xff, 0xff, 0xff, 0x60, 0xff, 0xff, 0xff, 0x60, 0xff, 0xff, 0xff, 0x60, 0xff, 0xff, 0xff, 0x60, 0xff, 0xff, 0xff, 0x60, 0xff, 0xff, 0xff, 0x60, 0xff, 0xff, 0xff, 0x60, 0xff, 0xff, 0xff, 0x60, 0xff, 0xff, 0xff, 0x60, 0xff, 0xff, 0xff, 0x60, 0xff, 0xff, 0xff, 0x60, 0xff, 0xff, 0xff, 0x60, 0xff, 0xff, 0xff, 0x60, 0xff, 0xff, 0xff, 0x60, 0xff, 0xff, 0xff, 0x60, 0xff, 0xff, 0xff, 0x60, 0xff, 0xff, 0xff, 0x60, 0xff, 0xff, 0xff, 0x60, 0xff, 0xff, 0xff, 0x60, 0xff, 0xff, 0xff, 0x60, 0xff, 0xff, 0xff, 0x60, 0xff, 0xff, 0xff, 0x60, 0xff, 0xff, 0xff, 0x60, 0xff, 0xff, 0xff, 0x60, 0xff, 0xff, 0xff, 0x60, 0xff, 0xff, 0xff, 0x60, 0xff, 0xff, 0xff, 0x60, 0xff, 0xff, 0xff, 0x60, 0xff, 0xff, 0xff, 0x5c, 0xff, 0xff, 0xff, 0x63, 0xff, 0xff, 0xff, 0xa3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x87, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x88, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x78, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x83, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x4c, 0xff, 0xff, 0xff, 0x9b, 0xff, 0xff, 0xff, 0xb0, 0xff, 0xff, 0xff, 0xac, 0xff, 0xff, 0xff, 0xac, 0xff, 0xff, 0xff, 0xac, 0xff, 0xff, 0xff, 0xac, 0xff, 0xff, 0xff, 0xac, 0xff, 0xff, 0xff, 0xac, 0xff, 0xff, 0xff, 0xac, 0xff, 0xff, 0xff, 0xac, 0xff, 0xff, 0xff, 0xac, 0xff, 0xff, 0xff, 0xac, 0xff, 0xff, 0xff, 0xac, 0xff, 0xff, 0xff, 0xac, 0xff, 0xff, 0xff, 0xac, 0xff, 0xff, 0xff, 0xac, 0xff, 0xff, 0xff, 0xac, 0xff, 0xff, 0xff, 0xac, 0xff, 0xff, 0xff, 0xac, 0xff, 0xff, 0xff, 0xac, 0xff, 0xff, 0xff, 0xac, 0xff, 0xff, 0xff, 0xac, 0xff, 0xff, 0xff, 0xac, 0xff, 0xff, 0xff, 0xac, 0xff, 0xff, 0xff, 0xac, 0xff, 0xff, 0xff, 0xac, 0xff, 0xff, 0xff, 0xac, 0xff, 0xff, 0xff, 0xac, 0xff, 0xff, 0xff, 0xac, 0xff, 0xff, 0xff, 0xac, 0xff, 0xff, 0xff, 0xac, 0xff, 0xff, 0xff, 0xac, 0xff, 0xff, 0xff, 0xac, 0xff, 0xff, 0xff, 0xac, 0xff, 0xff, 0xff, 0xac, 0xff, 0xff, 0xff, 0xac, 0xff, 0xff, 0xff, 0xac, 0xff, 0xff, 0xff, 0xac, 0xff, 0xff, 0xff, 0xac, 0xff, 0xff, 0xff, 0xb0, 0xff, 0xff, 0xff, 0x9c, 0xff, 0xff, 0xff, 0x4c, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, #endif }; const lv_img_dsc_t lv_demo_printer_img_print = { .header.always_zero = 0, .header.w = 65, .header.h = 64, .data_size = 4160 * LV_IMG_PX_SIZE_ALPHA_BYTE, .header.cf = LV_IMG_CF_TRUE_COLOR_ALPHA, .data = lv_demo_printer_img_print_map, }; /* * writing the pixel map */ int main(int argc, char **argv) { FILE *fp; char *binFile; binFile="img_print_65x64_argb8888.bin"; /* 32 bit color */ fp = fopen(binFile, "wb"); fwrite(lv_demo_printer_img_print_map,lv_demo_printer_img_print.data_size,1,fp); fclose(fp); }
the_stack_data/103265520.c
#include<stdio.h> int get_num(int,int); int main() { int m,n; scanf("%d%d",&m,&n); printf("%d",get_num(m,n)); return 0; } int get_num(int m,int n) { if(m<n||m<1||n<1) return 0; if(n==1) return m; if(m==1) return 1; return get_num(m-1,n)+get_num(m-1,n-1); }
the_stack_data/247017684.c
#include <unistd.h> #include <stdio.h> #include <stdlib.h> #include <sys/sysinfo.h> #include <time.h> static int num_n; inline static float normalize_loadrate(unsigned long load) { #if !defined(FSHIFT) #define FSHIFT 16 /* nr of bits of precision */ #endif long part_int = (load>>FSHIFT); /* Keep 3 significant digitals after decimal point. */ float part_frac= ((load &((1UL<<FSHIFT)-1))*1000)>>FSHIFT; float load_rate = part_int + part_frac/1000; printf("one before %lf\n", load_rate); if(num_n > 0) { load_rate /= num_n; } return load_rate; } void origin_method() { clock_t tt = clock(); struct sysinfo info; if (sysinfo(&info) == -1) { printf("could not get sysinfo\n"); return; } double x[3]; int i; for (i = 0; i < 3; i++) { x[i] = normalize_loadrate(info.loads[i]); } double td = clock() - tt; printf("original method take %lf cpu clock\n", td); printf("load percentage: %.2f, %.2f, %.2f\n", x[0], x[1],x[2]); } int main(int argc, char **argv) { struct sysinfo info; if (sysinfo(&info) == -1) { printf("could not get sysinfo\n"); return 1; } double av1, av2, av3; double shift = (1 << SI_LOAD_SHIFT); clock_t t = clock(); // outside method num_n = sysconf(_SC_NPROCESSORS_CONF); printf("core nums of the compute is %d\n", num_n); av1 = info.loads[0] / shift; av2 = info.loads[1] / shift; av3 = info.loads[2] / shift; double x = (clock() - t); printf("method1: time takes %lf cpu clock\n", x); printf("load average: %.2f, %.2f, %.2f\n", av1, av2, av3); // read from api double load[3]; t = clock(); if(getloadavg(load, 3) != -1) { x = (clock() - t); printf("method2: time task %lf cpu clock\n", x); printf("load average: %.2f, %.2f, %.2f\n", load[0],load[1],load[2]); } // read from file FILE *f; t = clock(); f = fopen("/proc/loadavg", "r"); if (f != NULL){ int n = fscanf(f, "%lf %lf %lf", &load[0], &load[1], &load[2]); x = (clock() - t); printf("method3: time takes %lf cpu clock\n", x); printf("load average: %.2f, %.2f, %.2f\n", load[0],load[2],load[2]); } origin_method(); return 0; }
the_stack_data/212644116.c
/* Simple S/MIME encrypt example */ #include <openssl/pem.h> #include <openssl/pkcs7.h> #include <openssl/err.h> int main(int argc, char **argv) { BIO *in = NULL, *out = NULL, *tbio = NULL; X509 *rcert = NULL; STACK_OF(X509) *recips = NULL; PKCS7 *p7 = NULL; int ret = 1; /* * On OpenSSL 0.9.9 only: * for streaming set PKCS7_STREAM */ int flags = PKCS7_STREAM; OpenSSL_add_all_algorithms(); ERR_load_crypto_strings(); /* Read in recipient certificate */ tbio = BIO_new_file("signer.pem", "r"); if (!tbio) goto err; rcert = PEM_read_bio_X509(tbio, NULL, 0, NULL); if (!rcert) goto err; /* Create recipient STACK and add recipient cert to it */ recips = sk_X509_new_null(); if (!recips || !sk_X509_push(recips, rcert)) goto err; /* * sk_X509_pop_free will free up recipient STACK and its contents so set * rcert to NULL so it isn't freed up twice. */ rcert = NULL; /* Open content being encrypted */ in = BIO_new_file("encr.txt", "r"); if (!in) goto err; /* encrypt content */ p7 = PKCS7_encrypt(recips, in, EVP_des_ede3_cbc(), flags); if (!p7) goto err; out = BIO_new_file("smencr.txt", "w"); if (!out) goto err; /* Write out S/MIME message */ if (!SMIME_write_PKCS7(out, p7, in, flags)) goto err; ret = 0; err: if (ret) { fprintf(stderr, "Error Encrypting Data\n"); ERR_print_errors_fp(stderr); } if (p7) PKCS7_free(p7); if (rcert) X509_free(rcert); if (recips) sk_X509_pop_free(recips, X509_free); if (in) BIO_free(in); if (out) BIO_free(out); if (tbio) BIO_free(tbio); return ret; }
the_stack_data/557068.c
/* this file contains the actual definitions of */ /* the IIDs and CLSIDs */ // Copyright (c) Microsoft Corporation. All rights reserved. /* link this file in with the server and any clients */ /* File created by MIDL compiler version 5.01.0158 */ /* at Thu Mar 11 18:35:18 1999 */ /* Compiler settings for mtsadmin.idl: Oicf (OptLev=i2), W1, Zp8, env=Win32, ms_ext, c_ext error checks: allocation ref bounds_check enum stub_data */ //@@MIDL_FILE_HEADING( ) #ifdef __cplusplus extern "C"{ #endif #ifndef __IID_DEFINED__ #define __IID_DEFINED__ typedef struct _IID { unsigned long x; unsigned short s1; unsigned short s2; unsigned char c[8]; } IID; #endif // __IID_DEFINED__ #ifndef CLSID_DEFINED #define CLSID_DEFINED typedef IID CLSID; #endif // CLSID_DEFINED const IID IID_ICatalog = {0x6eb22870,0x8a19,0x11d0,{0x81,0xb6,0x00,0xa0,0xc9,0x23,0x1c,0x29}}; const IID IID_IComponentUtil = {0x6eb22873,0x8a19,0x11d0,{0x81,0xb6,0x00,0xa0,0xc9,0x23,0x1c,0x29}}; const IID IID_IPackageUtil = {0x6eb22874,0x8a19,0x11d0,{0x81,0xb6,0x00,0xa0,0xc9,0x23,0x1c,0x29}}; const IID IID_IRemoteComponentUtil = {0x6eb22875,0x8a19,0x11d0,{0x81,0xb6,0x00,0xa0,0xc9,0x23,0x1c,0x29}}; const IID IID_IRoleAssociationUtil = {0x6eb22876,0x8a19,0x11d0,{0x81,0xb6,0x00,0xa0,0xc9,0x23,0x1c,0x29}}; const IID LIBID_MTSAdmin = {0x6eb22880,0x8a19,0x11d0,{0x81,0xb6,0x00,0xa0,0xc9,0x23,0x1c,0x29}}; const CLSID CLSID_Catalog = {0x6eb22881,0x8a19,0x11d0,{0x81,0xb6,0x00,0xa0,0xc9,0x23,0x1c,0x29}}; const CLSID CLSID_CatalogObject = {0x6eb22882,0x8a19,0x11d0,{0x81,0xb6,0x00,0xa0,0xc9,0x23,0x1c,0x29}}; const CLSID CLSID_CatalogCollection = {0x6eb22883,0x8a19,0x11d0,{0x81,0xb6,0x00,0xa0,0xc9,0x23,0x1c,0x29}}; const CLSID CLSID_ComponentUtil = {0x6eb22884,0x8a19,0x11d0,{0x81,0xb6,0x00,0xa0,0xc9,0x23,0x1c,0x29}}; const CLSID CLSID_PackageUtil = {0x6eb22885,0x8a19,0x11d0,{0x81,0xb6,0x00,0xa0,0xc9,0x23,0x1c,0x29}}; const CLSID CLSID_RemoteComponentUtil = {0x6eb22886,0x8a19,0x11d0,{0x81,0xb6,0x00,0xa0,0xc9,0x23,0x1c,0x29}}; const CLSID CLSID_RoleAssociationUtil = {0x6eb22887,0x8a19,0x11d0,{0x81,0xb6,0x00,0xa0,0xc9,0x23,0x1c,0x29}}; #ifdef __cplusplus } #endif
the_stack_data/98574478.c
#include <stdio.h> #include <stdlib.h> #include <string.h> char *Capitalized(const char *input) { char *result; size_t i; result = strdup(input); if (result[0] > 90) { result[0] -= 32; } for (i = 1; i < strlen(result); i++) { if ((result[i] > 64)&&(result[i] < 91)) { result[i] += 32; } } return result; } /* this roputine creates the init file */ static void CreateInitFile(const char *libName, int numConcrete, char **concrete, int numCommands, char **commands, const char *version, FILE *fout) { /* we have to make sure that the name is the correct case */ char *kitName = Capitalized(libName); int i; char **capcommands = (char **)malloc(numCommands*sizeof(char *)); /* capitalize commands just once */ for (i = 0; i < numCommands; i++) { capcommands[i] = Capitalized(commands[i]); } fprintf(fout,"#include \"vtkTclUtil.h\"\n"); fprintf(fout,"#include \"vtkVersion.h\"\n"); fprintf(fout,"#define VTK_TCL_TO_STRING(x) VTK_TCL_TO_STRING0(x)\n"); fprintf(fout,"#define VTK_TCL_TO_STRING0(x) #x\n"); fprintf(fout, "extern \"C\"\n" "{\n" "#if (TCL_MAJOR_VERSION == 8) && (TCL_MINOR_VERSION >= 4)\n" " typedef int (*vtkTclCommandType)(ClientData, Tcl_Interp *,int, CONST84 char *[]);\n" "#else\n" " typedef int (*vtkTclCommandType)(ClientData, Tcl_Interp *,int, char *[]);\n" "#endif\n" "}\n" "\n"); for (i = 0; i < numConcrete; i++) { fprintf(fout,"int %sCommand(ClientData cd, Tcl_Interp *interp,\n int argc, char *argv[]);\n",concrete[i]); fprintf(fout,"ClientData %sNewCommand();\n",concrete[i]); } if (!strcmp(kitName,"Vtkcommoncoretcl")) { fprintf(fout,"int vtkCreateCommand(ClientData cd, Tcl_Interp *interp,\n" " int argc, char *argv[]);\n"); fprintf(fout,"\nTcl_HashTable vtkInstanceLookup;\n"); fprintf(fout,"Tcl_HashTable vtkPointerLookup;\n"); fprintf(fout,"Tcl_HashTable vtkCommandLookup;\n"); } else { fprintf(fout,"\nextern Tcl_HashTable vtkInstanceLookup;\n"); fprintf(fout,"extern Tcl_HashTable vtkPointerLookup;\n"); fprintf(fout,"extern Tcl_HashTable vtkCommandLookup;\n"); } fprintf(fout,"extern void vtkTclDeleteObjectFromHash(void *);\n"); fprintf(fout,"extern void vtkTclListInstances(Tcl_Interp *interp, ClientData arg);\n"); for (i = 0; i < numCommands; i++) { fprintf(fout, "\nextern \"C\" {int VTK_EXPORT %s_Init(Tcl_Interp *interp);}\n", capcommands[i]); } fprintf(fout, "\n\nextern \"C\" {int VTK_EXPORT %s_SafeInit(Tcl_Interp *interp);}\n", kitName); fprintf(fout, "\nextern \"C\" {int VTK_EXPORT %s_Init(Tcl_Interp *interp);}\n", kitName); /* create an extern ref to the generic delete function */ fprintf(fout,"\nextern void vtkTclGenericDeleteObject(ClientData cd);\n"); if (!strcmp(kitName,"Vtkcommoncoretcl")) { fprintf(fout, "extern \"C\"\n{\nvoid vtkCommonDeleteAssocData(ClientData cd)\n"); fprintf(fout," {\n"); fprintf(fout," vtkTclInterpStruct *tis = static_cast<vtkTclInterpStruct*>(cd);\n"); fprintf(fout," delete tis;\n }\n}\n"); } /* the main declaration */ fprintf(fout, "\n\nint VTK_EXPORT %s_SafeInit(Tcl_Interp *interp)\n{\n",kitName); fprintf(fout," return %s_Init(interp);\n}\n",kitName); fprintf(fout,"\n\nint VTK_EXPORT %s_Init(Tcl_Interp *interp)\n{\n", kitName); if (!strcmp(kitName,"Vtkcommoncoretcl")) { fprintf(fout, " vtkTclInterpStruct *info = new vtkTclInterpStruct;\n"); fprintf(fout, " info->Number = 0; info->InDelete = 0; info->DebugOn = 0; info->DeleteExistingObjectOnNew = 0;\n"); fprintf(fout,"\n"); fprintf(fout,"\n"); fprintf(fout, " Tcl_InitHashTable(&info->InstanceLookup, TCL_STRING_KEYS);\n"); fprintf(fout, " Tcl_InitHashTable(&info->PointerLookup, TCL_STRING_KEYS);\n"); fprintf(fout, " Tcl_InitHashTable(&info->CommandLookup, TCL_STRING_KEYS);\n"); fprintf(fout, " Tcl_SetAssocData(interp,(char *)(\"vtk\"),NULL,reinterpret_cast<ClientData *>(info));\n"); fprintf(fout, " Tcl_CreateExitHandler(vtkCommonDeleteAssocData,reinterpret_cast<ClientData *>(info));\n"); /* create special vtkCommand command */ fprintf(fout," Tcl_CreateCommand(interp,(char *)(\"vtkCommand\"),\n" " reinterpret_cast<vtkTclCommandType>(vtkCreateCommand),\n" " static_cast<ClientData *>(NULL), NULL);\n\n"); /* * Set the default precision of tcl to match the legacy vtk default * precsion. Wrapped code will use the tcl_precision variable to * define the output resolution for converting doubles to strings */ fprintf(fout, " Tcl_SetVar2(interp, \"tcl_precision\", (char *) NULL, \"6\", TCL_GLOBAL_ONLY);\n"); } for (i = 0; i < numCommands; i++) { fprintf(fout," %s_Init(interp);\n", capcommands[i]); } fprintf(fout,"\n"); for (i = 0; i < numConcrete; i++) { fprintf(fout," vtkTclCreateNew(interp,const_cast<char *>(\"%s\"), %sNewCommand,\n", concrete[i], concrete[i]); fprintf(fout," %sCommand);\n",concrete[i]); } fprintf(fout," char pkgName[]=\"%s\";\n", libName); if (version && *version) { fprintf(fout," char pkgVers[]=VTK_TCL_TO_STRING(%s);\n", version); } else { fprintf(fout," char pkgVers[]=VTK_TCL_TO_STRING(VTK_MAJOR_VERSION)" " \".\" " "VTK_TCL_TO_STRING(VTK_MINOR_VERSION);\n"); } fprintf(fout," Tcl_PkgProvide(interp, pkgName, pkgVers);\n"); fprintf(fout," return TCL_OK;\n}\n"); for ( i = 0; i < numCommands; i++ ) { free(capcommands[i]); } free(capcommands); free(kitName); } int main(int argc,char *argv[]) { FILE *file; FILE *fout; int numConcrete = 0; int numCommands = 0; char libName[250]; char tmpVal[250]; char *concrete[4000]; char *commands[4000]; char version[4000] = {'\0'}; if (argc < 3) { fprintf(stderr,"Usage: %s input_file output_file\n",argv[0]); return 1; } file = fopen(argv[1],"r"); if (!file) { fprintf(stderr,"Input file %s could not be opened\n",argv[1]); return 1; } fout = fopen(argv[2],"w"); if (!fout) { fclose(file); return 1; } /* read the info from the file */ fscanf(file,"%s",libName); /* read in the classes and commands */ while (fscanf(file,"%s",tmpVal) != EOF) { if (!strcmp(tmpVal,"COMMAND")) { fscanf(file,"%s",tmpVal); commands[numCommands] = strdup(tmpVal); numCommands++; } else if (!strcmp(tmpVal,"VERSION")) { fscanf(file,"%s",version); } else { concrete[numConcrete] = strdup(tmpVal); numConcrete++; } } /* close the file */ fclose(file); CreateInitFile(libName, numConcrete, concrete, numCommands, commands, version, fout); fclose(fout); return 0; }
the_stack_data/150144111.c
#include <stdio.h> #include <math.h> //Prototipos void FAT1(int N, int *F); int FAT2(int N); void COMBINACAO_ARRANJO(int N,int P, int * C, int *A); //Funcoes: void FAT1(int N, int *F){ int C; *F = 1; if(N > 1){ for(C=2;C <= N; C++) *F = (*F) *C; } } int FAT2(int N){ int C, F = 1; if (N > 1){ for(C=2; C <= N; C++) F = F * C; } return F; } void COMBINACAO_ARRANJO(int N, int P, int *C, int *A){ int FN, FD, FP; FAT1(N, &FN); FAT1 (N - P, &FD); *C = (*A) / FP; } int main(void) { int N, P, A, C; while(1){ printf("Valor de N (N>=0): \n"); scanf("%i", &N); printf("%i", &P); if(N , 0 || P < 0 || P > N){ printf("ERRO.Fim do Programa.\n"); break; } else{ COMBINACAO_ARRANJO(N, P, &C, &A); printf("Combinação(%i, %i): %i\n", N, P, C); printf("Arranjo(%i, %i): %i\n", N, P, A); } } return 0; }
the_stack_data/18888936.c
#include <stdio.h> #define MSG "I am a symbolic string in an array." #define MAXLENGTH 81 int main(void) { char words[MAXLENGTH] = "I am a string in an array."; const char * pt1 = "Something is pointing at me."; puts("Here are some strings:"); puts(MSG); puts(words); puts(pt1); words[8] = 'p'; puts(words); return 0; }
the_stack_data/1121819.c
// // Prog 7.6 Function to ginf GCD and return results // #include <stdio.h> float absoluteValue(float x) { if (x < 0) x = -x; return x; } int main (void) { float f1 = -15.5, f2 = 20.0, f3 = -5.0; int i1 = -716; float result; result = absoluteValue(f1); printf("f1 = %.2f\n", f1); printf("result = %.2f\n", result); result = absoluteValue(f2) + absoluteValue(f3); printf("result = %.2f\n", result); result = absoluteValue( (float) i1 ); printf("result = %.2f\n", result); result = absoluteValue( i1 ); printf("result = %.2f\n", result); result = absoluteValue( i1 ); printf("result = %.2f\n", absoluteValue(-6.0) / 4); }
the_stack_data/36074187.c
// code: 1 int f() { return 1; } int main() { int (*func)() = f; return (*func)(); }
the_stack_data/20449845.c
/* $Xorg: UpdMapHint.c,v 1.4 2001/02/09 02:03:53 xorgcvs Exp $ */ /* Copyright 1989, 1998 The Open Group Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that the above copyright notice appear in all copies and that both that copyright notice and this permission notice appear in supporting documentation. The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. Except as contained in this notice, the name of The Open Group shall not be used in advertising or otherwise to promote the sale, use or other dealings in this Software without prior written authorization from The Open Group. */ /* $XFree86: xc/lib/Xmu/UpdMapHint.c,v 1.6 2001/01/17 19:42:57 dawes Exp $ */ /* * Author: Jim Fulton, MIT X Consortium */ #ifdef HAVE_CONFIG_H #include <config.h> #endif #include <stdio.h> #include <X11/Xlib.h> #include <X11/Xutil.h> #include <X11/Xmu/WinUtil.h> Bool XmuUpdateMapHints(Display *dpy, Window w, XSizeHints *hints) { static XSizeHints *shp = NULL; if (!hints) { /* get them first */ long supp; if (!shp) { shp = XAllocSizeHints(); if (!shp) return False; } if (!XGetWMNormalHints (dpy, w, shp, &supp)) return False; hints = shp; } hints->flags &= ~(PPosition|PSize); hints->flags |= (USPosition|USSize); XSetWMNormalHints (dpy, w, hints); return True; }
the_stack_data/14200413.c
extern void foo (void); asm (".symver foo,foo@@@FOO"); void bar (void) { foo (); }
the_stack_data/148577799.c
#include<stdio.h> void main() { float a,b,x=0; printf("Enter first number: "); scanf("%f",&a); printf("Enter second number: "); scanf("%f",&b); x=a*b; printf("The product of the numbers is: %d",x); }
the_stack_data/151705530.c
#include <stdio.h> int strlen(char *); int test() { char *p; p = "hello"; return strlen(p) - 5; } int main () { int x; x = test(); printf("%d\n", x); return 0; }
the_stack_data/7950202.c
/* Simple XCB application drawing a box in a window */ /* to compile it use : Compiling with GCC: gcc x.c -lxcb or gcc -Wall x.c -lxcb Compiling with CC: cc x.c -lxcb */ #include <xcb/xcb.h> #include <stdio.h> #include <stdlib.h> int main(void) { xcb_connection_t *c; xcb_screen_t *s; xcb_window_t w; xcb_gcontext_t g; xcb_generic_event_t *e; uint32_t mask; uint32_t values[2]; int done = 0; xcb_rectangle_t r = { 20, 20, 60, 60 }; setvbuf(stdout, NULL, _IONBF, 0); /* open connection with the server */ c = xcb_connect("192.168.1.102:0", NULL); if (xcb_connection_has_error(c)) { printf("Cannot open display: %d\n",xcb_connection_has_error(c)); exit(1); } printf("Connected OK!\n"); return 0; /* get the first screen */ s = xcb_setup_roots_iterator( xcb_get_setup(c) ).data; /* create black graphics context */ g = xcb_generate_id(c); w = s->root; mask = XCB_GC_FOREGROUND | XCB_GC_GRAPHICS_EXPOSURES; values[0] = s->black_pixel; values[1] = 0; xcb_create_gc(c, g, w, mask, values); /* create window */ w = xcb_generate_id(c); mask = XCB_CW_BACK_PIXEL | XCB_CW_EVENT_MASK; values[0] = s->white_pixel; values[1] = XCB_EVENT_MASK_EXPOSURE | XCB_EVENT_MASK_KEY_PRESS; xcb_create_window(c, s->root_depth, w, s->root, 10, 10, 100, 100, 1, XCB_WINDOW_CLASS_INPUT_OUTPUT, s->root_visual, mask, values); /* map (show) the window */ xcb_map_window(c, w); xcb_flush(c); /* event loop */ while (!done && (e = xcb_wait_for_event(c))) { switch (e->response_type & ~0x80) { case XCB_EXPOSE: /* draw or redraw the window */ xcb_poly_fill_rectangle(c, w, g, 1, &r); xcb_flush(c); break; case XCB_KEY_PRESS: /* exit on key press */ done = 1; break; } free(e); } /* close connection to server */ xcb_disconnect(c); return 0; }
the_stack_data/1171451.c
#include <stdio.h> int main(int argc, char const *argv[]) { float num1,num2,result=0; char ch; printf("Enter first number: "); scanf("%f",&num1); printf("Enter second number: "); scanf("%f",&num2); printf("Choose operation to perform (+,-,*,/): "); scanf(" %c",&ch); switch(ch) { case '+': result=num1+num2; break; case '-': result=num1-num2; break; case '*': result=num1*num2; break; case '/': result=num1/num2; break; default: printf("Invalid operation.\n"); } printf("Result:%f%c%f=%f\n",num1,ch,num2,result); return 0; }
the_stack_data/234519099.c
void stage_cu() { // Writing instruction memory Xil_Out32(0x50001004, 0); Xil_Out32(0x50001000, 0x93030901); Xil_Out32(0x50001004, 4); Xil_Out32(0x50001000, 0xBF810000); // Writing SGPRs for wavefront 1 Xil_Out32(0x50002004, 0); Xil_Out32(0x50002008, 0x13); Xil_Out32(0x5000200C, 0x17); Xil_Out32(0x50002010, 0x1B); Xil_Out32(0x50002014, 0x2); Xil_Out32(0x50002000, 1); Xil_Out32(0x50002004, 16); Xil_Out32(0x50002008, 0x0); Xil_Out32(0x5000200C, 0x18); Xil_Out32(0x50002010, 0x2); Xil_Out32(0x50002014, 0x1C); Xil_Out32(0x50002000, 1); Xil_Out32(0x50002004, 32); Xil_Out32(0x50002008, 0x27); Xil_Out32(0x5000200C, 0x18); Xil_Out32(0x50002010, 0x0); Xil_Out32(0x50002014, 0x0); Xil_Out32(0x50002000, 1); }
the_stack_data/125139727.c
typedef unsigned int size_t; void *malloc(size_t size); enum blockstate { S1, S2 }; typedef struct { enum blockstate bs; int id; int version; } block; typedef struct blocknode { block *b; struct blocknode *next; } blocknode; typedef blocknode *bl; int main() { block *bp = (block *)(malloc(sizeof(block))); bl l = (bl)(malloc(sizeof(blocknode))); bp->version = 1; l->b = bp; l->b->version = l->b->version + 1; // this should fail assert((l->b->version) == 1); }
the_stack_data/20577.c
/* Copyright 2012 Google Inc. All Rights Reserved. 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 http://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 <stdio.h> #include <strings.h> #include <fcntl.h> #include <syscall.h> static int entries = 0; static int depth_max = 0; #define PERM 666 #define paste(front, back) front ## back static int create_main(int max_depth) { int i,j,k,rval; FILE * fp_main; char filename[100]; fp_main = fopen("FOO_main.c","w+"); fprintf (fp_main,"//\n"); fprintf (fp_main,"//\n"); fprintf (fp_main,"#include <stdio.h>\n"); fprintf (fp_main,"\n"); fprintf (fp_main,"int main(int argc, char* argv[])\n"); fprintf (fp_main,"{\n"); fprintf (fp_main,"\tlong i=0;\n"); fprintf (fp_main,"\tlong j,k;\n"); fprintf (fp_main,"\tj=atol(argv[1]);\n"); fprintf (fp_main,"\tfor(k=0;k<j;k++){\n"); fprintf (fp_main,"\t__asm__( \n"); fprintf (fp_main,"\t\"xorq %%rdx, %%rdx\\n\\t\"\n"); fprintf (fp_main,"\t\"xorq %%rcx, %%rcx\\n\\t\"\n"); fprintf (fp_main,"\t\"inc %%rcx\\n\\t\"\n"); fprintf (fp_main,"\t\".align 16\\n\\t\"\n"); for(j=0;j<max_depth;j++){ fprintf (fp_main,"\t\"cmp %%rdx, %%rcx\\n\\t\"\n"); fprintf (fp_main,"\t\"je LP_%06d\\n\\t\"\n",j); fprintf (fp_main,"\t\"xorq %%rdx, %%rcx\\n\\t\"\n"); fprintf (fp_main,"\t\"LP_%06d:\\n\\t\"\n",j); } fprintf (fp_main,"\t);\n"); fprintf (fp_main,"\t}\n"); fprintf (fp_main,"\n"); fprintf (fp_main,"\treturn 0;\n"); fprintf (fp_main,"}\n"); rval=fclose(fp_main); return 0; } main(int argc, char* argv[]) { int max_so,max_chain,max_depth, rval; if(argc < 2){ printf("generator needs one input number, argc = %d\n",argc); exit(1); } max_depth = atoi(argv[1]); printf (" max_depth= %d\n",max_depth); rval = create_main(max_depth); }
the_stack_data/234518311.c
/* Generated by CIL v. 1.7.0 */ /* print_CIL_Input is false */ struct _IO_FILE; struct timeval; extern float strtof(char const *str , char const *endptr ) ; extern void signal(int sig , void *func ) ; typedef struct _IO_FILE FILE; extern int atoi(char const *s ) ; extern double strtod(char const *str , char const *endptr ) ; extern int fclose(void *stream ) ; extern void *fopen(char const *filename , char const *mode ) ; extern void abort() ; extern void exit(int status ) ; extern int raise(int sig ) ; extern int fprintf(struct _IO_FILE *stream , char const *format , ...) ; extern int strcmp(char const *a , char const *b ) ; extern int rand() ; extern unsigned long strtoul(char const *str , char const *endptr , int base ) ; void RandomFunc(unsigned int input[1] , unsigned int output[1] ) ; extern int strncmp(char const *s1 , char const *s2 , unsigned long maxlen ) ; extern int gettimeofday(struct timeval *tv , void *tz , ...) ; extern int printf(char const *format , ...) ; int main(int argc , char *argv[] ) ; void megaInit(void) ; extern unsigned long strlen(char const *s ) ; extern long strtol(char const *str , char const *endptr , int base ) ; extern unsigned long strnlen(char const *s , unsigned long maxlen ) ; extern void *memcpy(void *s1 , void const *s2 , unsigned long size ) ; struct timeval { long tv_sec ; long tv_usec ; }; extern void *malloc(unsigned long size ) ; extern int scanf(char const *format , ...) ; void RandomFunc(unsigned int input[1] , unsigned int output[1] ) { unsigned int state[1] ; unsigned short copy11 ; { state[0UL] = input[0UL] + 1373777115U; if (state[0UL] & 1U) { if ((state[0UL] >> 2U) & 1U) { if ((state[0UL] >> 3U) & 1U) { copy11 = *((unsigned short *)(& state[0UL]) + 0); *((unsigned short *)(& state[0UL]) + 0) = *((unsigned short *)(& state[0UL]) + 1); *((unsigned short *)(& state[0UL]) + 1) = copy11; copy11 = *((unsigned short *)(& state[0UL]) + 1); *((unsigned short *)(& state[0UL]) + 1) = *((unsigned short *)(& state[0UL]) + 0); *((unsigned short *)(& state[0UL]) + 0) = copy11; } else { state[0UL] = (state[0UL] >> (((state[0UL] >> 1U) & 15U) | 1UL)) | (state[0UL] << (32 - (((state[0UL] >> 1U) & 15U) | 1UL))); } } else if (! ((state[0UL] >> 2U) & 1U)) { state[0UL] |= ((state[0UL] + state[0UL]) & 63U) << 4UL; } } else { state[0UL] |= (state[0UL] & 15U) << 2UL; } output[0UL] = state[0UL] * 1000067965U; } } int main(int argc , char *argv[] ) { unsigned int input[1] ; unsigned int output[1] ; int randomFuns_i5 ; unsigned int randomFuns_value6 ; int randomFuns_main_i7 ; { megaInit(); if (argc != 2) { printf("Call this program with %i arguments\n", 1); exit(-1); } else { } randomFuns_i5 = 0; while (randomFuns_i5 < 1) { randomFuns_value6 = (unsigned int )strtoul(argv[randomFuns_i5 + 1], 0, 10); input[randomFuns_i5] = randomFuns_value6; randomFuns_i5 ++; } RandomFunc(input, output); if (output[0] == 2237329092U) { printf("You win!\n"); } else { } randomFuns_main_i7 = 0; while (randomFuns_main_i7 < 1) { printf("%u\n", output[randomFuns_main_i7]); randomFuns_main_i7 ++; } } } void megaInit(void) { { } }
the_stack_data/15762504.c
/* * Copyright (c) 2006-2015, Salvatore Sanfilippo <antirez at gmail dot com> * * * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * * Redistributions of source code must retain the above copyright notice, * this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of Gibson nor the names of its contributors may be used * to endorse or promote products derived from this software without * specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. */ #if HAVE_EPOLL #include <sys/epoll.h> typedef struct aeApiState { int epfd; struct epoll_event *events; } aeApiState; static int aeApiCreate(gbEventLoop *eventLoop) { aeApiState *state = zmalloc(sizeof(aeApiState)); if (!state) return -1; state->events = zmalloc(sizeof(struct epoll_event)*eventLoop->setsize); if (!state->events) { zfree(state); return -1; } state->epfd = epoll_create(1024); /* 1024 is just an hint for the kernel */ if (state->epfd == -1) { zfree(state->events); zfree(state); return -1; } eventLoop->apidata = state; return 0; } static int aeApiResize(gbEventLoop *eventLoop, int setsize) { aeApiState *state = eventLoop->apidata; state->events = zrealloc(state->events, sizeof(struct epoll_event)*setsize); return 0; } static void aeApiFree(gbEventLoop *eventLoop) { aeApiState *state = eventLoop->apidata; close(state->epfd); zfree(state->events); zfree(state); } static int aeApiAddEvent(gbEventLoop *eventLoop, int fd, int mask) { aeApiState *state = eventLoop->apidata; struct epoll_event ee; /* If the fd was already monitored for some event, we need a MOD * operation. Otherwise we need an ADD operation. */ int op = eventLoop->events[fd].mask == GB_NONE ? EPOLL_CTL_ADD : EPOLL_CTL_MOD; ee.events = 0; mask |= eventLoop->events[fd].mask; /* Merge old events */ if (mask & GB_READABLE) ee.events |= EPOLLIN; if (mask & GB_WRITABLE) ee.events |= EPOLLOUT; ee.data.u64 = 0; /* avoid valgrind warning */ ee.data.fd = fd; if (epoll_ctl(state->epfd,op,fd,&ee) == -1) return -1; return 0; } static void aeApiDelEvent(gbEventLoop *eventLoop, int fd, int delmask) { aeApiState *state = eventLoop->apidata; struct epoll_event ee; int mask = eventLoop->events[fd].mask & (~delmask); ee.events = 0; if (mask & GB_READABLE) ee.events |= EPOLLIN; if (mask & GB_WRITABLE) ee.events |= EPOLLOUT; ee.data.u64 = 0; /* avoid valgrind warning */ ee.data.fd = fd; if (mask != GB_NONE) { epoll_ctl(state->epfd,EPOLL_CTL_MOD,fd,&ee); } else { /* Note, Kernel < 2.6.9 requires a non null event pointer even for * EPOLL_CTL_DEL. */ epoll_ctl(state->epfd,EPOLL_CTL_DEL,fd,&ee); } } static int aeApiPoll(gbEventLoop *eventLoop, struct timeval *tvp) { aeApiState *state = eventLoop->apidata; int retval, numevents = 0; retval = epoll_wait(state->epfd,state->events,eventLoop->setsize, tvp ? (tvp->tv_sec*1000 + tvp->tv_usec/1000) : -1); if (retval > 0) { int j; numevents = retval; for (j = 0; j < numevents; j++) { int mask = 0; struct epoll_event *e = state->events+j; if (e->events & EPOLLIN) mask |= GB_READABLE; if (e->events & EPOLLOUT) mask |= GB_WRITABLE; if (e->events & EPOLLERR) mask |= GB_WRITABLE; if (e->events & EPOLLHUP) mask |= GB_WRITABLE; eventLoop->fired[j].fd = e->data.fd; eventLoop->fired[j].mask = mask; } } return numevents; } char *aeApiName(void) { return "epoll"; } #else void AVOID_EMPTY_UNIT_WARNING_BY_GCC_EPOLL(){ } #endif
the_stack_data/179829465.c
#include<stdio.h> #include<string.h> int main ( void ) { const char *s1 = "Feliz ano Novo"; const char *s2 = "Feliz ano Novo"; const char *s3 = "Boas Ferias"; printf("%s%s\n%s%s\n%s%s\n\n%s%2d\n%s%2d\n%s%2d\n\n", "s1 = ", s1, "s2 = ", s2, "s3 = ", s3, "strcmp(s1, s2) = ", strcmp(s1, s2), "strcmp(s1, s3) = ", strcmp(s1, s3), "strcmp(s3, s1) = ", strcmp(s3, s1)); printf("%s%2d\n%s%2d\n%s%2d\n", "strncmp(s1, s3, 6) = ", strncmp(s1, s3, 6), "strncmp(s1, s3, 7) = ", strncmp(s1, s3, 7), "strncmp(s3, s1, 7) = ", strncmp(s3, s1, 7)); }
the_stack_data/50138586.c
#include <stdio.h> #include <stdlib.h> void vassume(int b){} void vtrace(int n, int m){} void mainQ(int n, int u1) { vassume(u1 > 0); int x = 0; int m = 0; while (x < n) { if (u1) { m = x; } x = x + 1; } //%%%traces: int n, int m, int x if (n > 0) { vtrace(n, m); } //assert(0 <= m && m < n); } void main(int argc, char *argv[]) { mainQ(atoi(argv[1]), atoi(argv[2])); }
the_stack_data/225142369.c
#include <stdio.h> /*count characters in input; 1st version */ main() { long nc; nc = 0; while (getchar() != EOF) ++nc; printf("%ld\n", nc); }
the_stack_data/1252167.c
struct { int a } * b; c; d() { if (b->a) e(); if (b->a & c) e(); if (b == b->a) f(); }
the_stack_data/22824.c
void main() { int a,w,l; printf("Enter width of rectangle:"); scanf("%d",&w); printf("Enter length of rectangle:"); scanf("%d",&l); a=w*l; printf("The Area of rectangle is: %d",a); }
the_stack_data/176705754.c
#include <stdio.h> void limpar_entrada() { char c; while ((c = getchar()) != '\n' && c != EOF) {} } //comando para limpar o valor da variavel resp int main() { double c, f; char resp; do { printf("digite a temperatura em graus Celsius: "); scanf("%lf", &c); f = 9.0 * c / 5.0 + 32.0; printf("fahrenheit: %.1lf\n", f); printf("deseja continuar[s/n]? "); limpar_entrada(); scanf("%c", &resp); } while (resp == 's'); return 0; }
the_stack_data/218893678.c
/* Exemplo de código SSE utilizando Intel instrinsics e gcc built-in functions Compile usando: gcc sse.c -o sse -msse -msse4.2 -O3 http://www.songho.ca/misc/sse/sse.html https://gcc.gnu.org/onlinedocs/gcc-4.9.2/gcc/X86-Built-in-Functions.html#X86-Built-in-Functions https://gcc.gnu.org/onlinedocs/gcc-4.9.2/gcc/Vector-Extensions.html#Vector-Extensions https://software.intel.com/sites/landingpage/IntrinsicsGuide/ https://msdn.microsoft.com/en-us/library/26td21ds.aspx AVX https://software.intel.com/en-us/articles/introduction-to-intel-advanced-vector-extensions/ */ #include <stdio.h> #include <xmmintrin.h> // SSE (Required to use the __m128, and __m128d type) #include <emmintrin.h> // SSE2 (Required to use the __m128i type) #include <pmmintrin.h> // SSE3 #include <smmintrin.h> // SSE4.1 #define VECTOR_SIZE 4 typedef float v4sf __attribute__ ((vector_size(sizeof(float)*VECTOR_SIZE))); typedef union f4vector { v4sf v; float f[VECTOR_SIZE]; } f4vector; void add_intel_intrinsics(float *a, float *b, float *c) { __m128 va = _mm_load_ps (a); __m128 vb = _mm_load_ps (b); __m128 vc = _mm_add_ps (va, vb); _mm_store_ps(c, vc); /* Equivalente Assembly ** mov eax, a ** mov edx, b ** mov ecx, c ** movaps xmm0, XMMWORD PTR [eax] ** addps xmm0, XMMWORD PTR [edx] ** movaps XMMWORD PTR [ecx], xmm0 */ } v4sf add_gcc_builtin(v4sf a, v4sf b) { return __builtin_ia32_addps (a, b); } int main (int argc, char *argv[]) { float *a = (float*)_mm_malloc (sizeof(float) * 4, 16); //aloca um vetor de 16bytes (128bits) alinhado em endereços múltiplos de 16bytes. float *b = (float*)_mm_malloc (sizeof(float) * 4, 16); float *c = (float*)_mm_malloc (sizeof(float) * 4, 16); int i = 0; for (i = 0; i < 4; ++i) { a[i] = i; b[i] = i; } printf("Intel SSE\n"); add_intel_intrinsics(a, b, c); for (i = 0; i < 4; ++i) { printf("%f\n", c[i]); } _mm_free(a); _mm_free(b); _mm_free(c); printf("\nGCC Built-in Functions\n"); v4sf d, e, f; d = (v4sf){0, 1, 2, 3}; e = (v4sf){0, 1, 2, 3}; f = add_gcc_builtin(d, e); for (i = 0; i < 4; ++i) { printf("%f\n", f[i]); } printf("\nGCC implicity vectorization\n"); f = d + e; for (i = 0; i < 4; ++i) { printf("%f\n", f[i]); } return 0; }
the_stack_data/652190.c
/* bio_ndef.c */ /* Written by Dr Stephen N Henson ([email protected]) for the OpenSSL * project. */ /* ==================================================================== * Copyright (c) 2008 The OpenSSL Project. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in * the documentation and/or other materials provided with the * distribution. * * 3. All advertising materials mentioning features or use of this * software must display the following acknowledgment: * "This product includes software developed by the OpenSSL Project * for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" * * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to * endorse or promote products derived from this software without * prior written permission. For written permission, please contact * [email protected]. * * 5. Products derived from this software may not be called "OpenSSL" * nor may "OpenSSL" appear in their names without prior written * permission of the OpenSSL Project. * * 6. Redistributions of any form whatsoever must retain the following * acknowledgment: * "This product includes software developed by the OpenSSL Project * for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" * * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED * OF THE POSSIBILITY OF SUCH DAMAGE. * ==================================================================== * */ #include <openssl/asn1.h> #include <openssl/asn1t.h> #include <openssl/bio.h> #include <openssl/err.h> #ifndef OPENSSL_SYSNAME_NETWARE /* #include <memory.h> */ #endif #include <stdio.h> /* Experimental NDEF ASN1 BIO support routines */ /* The usage is quite simple, initialize an ASN1 structure, * get a BIO from it then any data written through the BIO * will end up translated to approptiate format on the fly. * The data is streamed out and does *not* need to be * all held in memory at once. * * When the BIO is flushed the output is finalized and any * signatures etc written out. * * The BIO is a 'proper' BIO and can handle non blocking I/O * correctly. * * The usage is simple. The implementation is *not*... */ /* BIO support data stored in the ASN1 BIO ex_arg */ typedef struct ndef_aux_st { /* ASN1 structure this BIO refers to */ ASN1_VALUE *val; const ASN1_ITEM *it; /* Top of the BIO chain */ BIO *ndef_bio; /* Output BIO */ BIO *out; /* Boundary where content is inserted */ unsigned char **boundary; /* DER buffer start */ unsigned char *derbuf; } NDEF_SUPPORT; static int ndef_prefix(BIO *b, unsigned char **pbuf, int *plen, void *parg); static int ndef_prefix_free(BIO *b, unsigned char **pbuf, int *plen, void *parg); static int ndef_suffix(BIO *b, unsigned char **pbuf, int *plen, void *parg); static int ndef_suffix_free(BIO *b, unsigned char **pbuf, int *plen, void *parg); BIO *BIO_new_NDEF(BIO *out, ASN1_VALUE *val, const ASN1_ITEM *it) { NDEF_SUPPORT *ndef_aux = NULL; BIO *asn_bio = NULL; const ASN1_AUX *aux = it->funcs; ASN1_STREAM_ARG sarg; if (!aux || !aux->asn1_cb) { ASN1err(ASN1_F_BIO_NEW_NDEF, ASN1_R_STREAMING_NOT_SUPPORTED); return NULL; } ndef_aux = OPENSSL_malloc(sizeof(NDEF_SUPPORT)); asn_bio = BIO_new(BIO_f_asn1()); /* ASN1 bio needs to be next to output BIO */ out = BIO_push(asn_bio, out); if (!ndef_aux || !asn_bio || !out) goto err; BIO_asn1_set_prefix(asn_bio, ndef_prefix, ndef_prefix_free); BIO_asn1_set_suffix(asn_bio, ndef_suffix, ndef_suffix_free); /* Now let callback prepend any digest, cipher etc BIOs * ASN1 structure needs. */ sarg.out = out; sarg.ndef_bio = NULL; sarg.boundary = NULL; if (aux->asn1_cb(ASN1_OP_STREAM_PRE, &val, it, &sarg) <= 0) goto err; ndef_aux->val = val; ndef_aux->it = it; ndef_aux->ndef_bio = sarg.ndef_bio; ndef_aux->boundary = sarg.boundary; ndef_aux->out = out; BIO_ctrl(asn_bio, BIO_C_SET_EX_ARG, 0, ndef_aux); return sarg.ndef_bio; err: if (asn_bio) BIO_free(asn_bio); if (ndef_aux) OPENSSL_free(ndef_aux); return NULL; } static int ndef_prefix(BIO *b, unsigned char **pbuf, int *plen, void *parg) { NDEF_SUPPORT *ndef_aux; unsigned char *p; int derlen; if (!parg) return 0; ndef_aux = *(NDEF_SUPPORT **)parg; derlen = ASN1_item_ndef_i2d(ndef_aux->val, NULL, ndef_aux->it); p = OPENSSL_malloc(derlen); ndef_aux->derbuf = p; *pbuf = p; derlen = ASN1_item_ndef_i2d(ndef_aux->val, &p, ndef_aux->it); if (!*ndef_aux->boundary) return 0; *plen = *ndef_aux->boundary - *pbuf; return 1; } static int ndef_prefix_free(BIO *b, unsigned char **pbuf, int *plen, void *parg) { NDEF_SUPPORT *ndef_aux; if (!parg) return 0; ndef_aux = *(NDEF_SUPPORT **)parg; if (ndef_aux->derbuf) OPENSSL_free(ndef_aux->derbuf); ndef_aux->derbuf = NULL; *pbuf = NULL; *plen = 0; return 1; } static int ndef_suffix_free(BIO *b, unsigned char **pbuf, int *plen, void *parg) { NDEF_SUPPORT **pndef_aux = (NDEF_SUPPORT **)parg; if (!ndef_prefix_free(b, pbuf, plen, parg)) return 0; OPENSSL_free(*pndef_aux); *pndef_aux = NULL; return 1; } static int ndef_suffix(BIO *b, unsigned char **pbuf, int *plen, void *parg) { NDEF_SUPPORT *ndef_aux; unsigned char *p; int derlen; const ASN1_AUX *aux; ASN1_STREAM_ARG sarg; if (!parg) return 0; ndef_aux = *(NDEF_SUPPORT **)parg; aux = ndef_aux->it->funcs; /* Finalize structures */ sarg.ndef_bio = ndef_aux->ndef_bio; sarg.out = ndef_aux->out; sarg.boundary = ndef_aux->boundary; if (aux->asn1_cb(ASN1_OP_STREAM_POST, &ndef_aux->val, ndef_aux->it, &sarg) <= 0) return 0; derlen = ASN1_item_ndef_i2d(ndef_aux->val, NULL, ndef_aux->it); p = OPENSSL_malloc(derlen); ndef_aux->derbuf = p; *pbuf = p; derlen = ASN1_item_ndef_i2d(ndef_aux->val, &p, ndef_aux->it); if (!*ndef_aux->boundary) return 0; *pbuf = *ndef_aux->boundary; *plen = derlen - (*ndef_aux->boundary - ndef_aux->derbuf); return 1; }
the_stack_data/12636792.c
#include <stdio.h> #include <stdlib.h> extern int our_code_starts_here() asm("our_code_starts_here"); int print(int val) { //if true, print "true", else if false p false, else p number? (bitwise adjustments needed) if(val == 0xffffffff) printf("true\n"); else if (val == 0x7fffffff) printf("false\n"); else { val = val >> 1; printf("%d\n", val); } return val; } //error function? void error(int code, int v) { if(code == 0) { fprintf(stderr, "Error: expected a number but got %#010x\n", v); } else if (code == 1) { fprintf(stderr, "Error: expected a boolean but got %#010x\n", v); } else if (code == 2){ fprintf(stderr, "Error: arithmetic overflow."); } exit(1); } int main(int argc, char** argv) { int result = our_code_starts_here(); print(result); return 0; }
the_stack_data/113817.c
/* * Copyright 2004-2016 The OpenSSL Project Authors. All Rights Reserved. * * Licensed under the OpenSSL license (the "License"). You may not use * this file except in compliance with the License. You can obtain a copy * in the file LICENSE in the source distribution or at * https://www.openssl.org/source/license.html */ #include <stdio.h> #include <string.h> #include <stdlib.h> #include <openssl/sha.h> #include <openssl/evp.h> static const unsigned char app_b1[SHA256_DIGEST_LENGTH] = { 0xba, 0x78, 0x16, 0xbf, 0x8f, 0x01, 0xcf, 0xea, 0x41, 0x41, 0x40, 0xde, 0x5d, 0xae, 0x22, 0x23, 0xb0, 0x03, 0x61, 0xa3, 0x96, 0x17, 0x7a, 0x9c, 0xb4, 0x10, 0xff, 0x61, 0xf2, 0x00, 0x15, 0xad }; static const unsigned char app_b2[SHA256_DIGEST_LENGTH] = { 0x24, 0x8d, 0x6a, 0x61, 0xd2, 0x06, 0x38, 0xb8, 0xe5, 0xc0, 0x26, 0x93, 0x0c, 0x3e, 0x60, 0x39, 0xa3, 0x3c, 0xe4, 0x59, 0x64, 0xff, 0x21, 0x67, 0xf6, 0xec, 0xed, 0xd4, 0x19, 0xdb, 0x06, 0xc1 }; static const unsigned char app_b3[SHA256_DIGEST_LENGTH] = { 0xcd, 0xc7, 0x6e, 0x5c, 0x99, 0x14, 0xfb, 0x92, 0x81, 0xa1, 0xc7, 0xe2, 0x84, 0xd7, 0x3e, 0x67, 0xf1, 0x80, 0x9a, 0x48, 0xa4, 0x97, 0x20, 0x0e, 0x04, 0x6d, 0x39, 0xcc, 0xc7, 0x11, 0x2c, 0xd0 }; static const unsigned char addenum_1[SHA224_DIGEST_LENGTH] = { 0x23, 0x09, 0x7d, 0x22, 0x34, 0x05, 0xd8, 0x22, 0x86, 0x42, 0xa4, 0x77, 0xbd, 0xa2, 0x55, 0xb3, 0x2a, 0xad, 0xbc, 0xe4, 0xbd, 0xa0, 0xb3, 0xf7, 0xe3, 0x6c, 0x9d, 0xa7 }; static const unsigned char addenum_2[SHA224_DIGEST_LENGTH] = { 0x75, 0x38, 0x8b, 0x16, 0x51, 0x27, 0x76, 0xcc, 0x5d, 0xba, 0x5d, 0xa1, 0xfd, 0x89, 0x01, 0x50, 0xb0, 0xc6, 0x45, 0x5c, 0xb4, 0xf5, 0x8b, 0x19, 0x52, 0x52, 0x25, 0x25 }; static const unsigned char addenum_3[SHA224_DIGEST_LENGTH] = { 0x20, 0x79, 0x46, 0x55, 0x98, 0x0c, 0x91, 0xd8, 0xbb, 0xb4, 0xc1, 0xea, 0x97, 0x61, 0x8a, 0x4b, 0xf0, 0x3f, 0x42, 0x58, 0x19, 0x48, 0xb2, 0xee, 0x4e, 0xe7, 0xad, 0x67 }; int main(int argc, char **argv) { unsigned char md[SHA256_DIGEST_LENGTH]; int i; EVP_MD_CTX *evp; fprintf(stdout, "Testing SHA-256 "); if (!EVP_Digest("abc", 3, md, NULL, EVP_sha256(), NULL)) goto err; if (memcmp(md, app_b1, sizeof(app_b1))) { fflush(stdout); fprintf(stderr, "\nTEST 1 of 3 failed.\n"); return 1; } else fprintf(stdout, "."); fflush(stdout); if (!EVP_Digest("abcdbcde" "cdefdefg" "efghfghi" "ghijhijk" "ijkljklm" "klmnlmno" "mnopnopq", 56, md, NULL, EVP_sha256(), NULL)) goto err; if (memcmp(md, app_b2, sizeof(app_b2))) { fflush(stdout); fprintf(stderr, "\nTEST 2 of 3 failed.\n"); return 1; } else fprintf(stdout, "."); fflush(stdout); evp = EVP_MD_CTX_new(); if (evp == NULL) { fflush(stdout); fprintf(stderr, "\nTEST 3 of 3 failed. (malloc failure)\n"); return 1; } if (!EVP_DigestInit_ex(evp, EVP_sha256(), NULL)) goto err; for (i = 0; i < 1000000; i += 288) { if (!EVP_DigestUpdate(evp, "aaaaaaaa" "aaaaaaaa" "aaaaaaaa" "aaaaaaaa" "aaaaaaaa" "aaaaaaaa" "aaaaaaaa" "aaaaaaaa" "aaaaaaaa" "aaaaaaaa" "aaaaaaaa" "aaaaaaaa" "aaaaaaaa" "aaaaaaaa" "aaaaaaaa" "aaaaaaaa" "aaaaaaaa" "aaaaaaaa" "aaaaaaaa" "aaaaaaaa" "aaaaaaaa" "aaaaaaaa" "aaaaaaaa" "aaaaaaaa" "aaaaaaaa" "aaaaaaaa" "aaaaaaaa" "aaaaaaaa" "aaaaaaaa" "aaaaaaaa" "aaaaaaaa" "aaaaaaaa" "aaaaaaaa" "aaaaaaaa" "aaaaaaaa" "aaaaaaaa", (1000000 - i) < 288 ? 1000000 - i : 288)) goto err; } if (!EVP_DigestFinal_ex(evp, md, NULL)) goto err; if (memcmp(md, app_b3, sizeof(app_b3))) { fflush(stdout); fprintf(stderr, "\nTEST 3 of 3 failed.\n"); return 1; } else fprintf(stdout, "."); fflush(stdout); fprintf(stdout, " passed.\n"); fflush(stdout); fprintf(stdout, "Testing SHA-224 "); if (!EVP_Digest("abc", 3, md, NULL, EVP_sha224(), NULL)) goto err; if (memcmp(md, addenum_1, sizeof(addenum_1))) { fflush(stdout); fprintf(stderr, "\nTEST 1 of 3 failed.\n"); return 1; } else fprintf(stdout, "."); fflush(stdout); if (!EVP_Digest("abcdbcde" "cdefdefg" "efghfghi" "ghijhijk" "ijkljklm" "klmnlmno" "mnopnopq", 56, md, NULL, EVP_sha224(), NULL)) goto err; if (memcmp(md, addenum_2, sizeof(addenum_2))) { fflush(stdout); fprintf(stderr, "\nTEST 2 of 3 failed.\n"); return 1; } else fprintf(stdout, "."); fflush(stdout); EVP_MD_CTX_reset(evp); if (!EVP_DigestInit_ex(evp, EVP_sha224(), NULL)) goto err; for (i = 0; i < 1000000; i += 64) { if (!EVP_DigestUpdate(evp, "aaaaaaaa" "aaaaaaaa" "aaaaaaaa" "aaaaaaaa" "aaaaaaaa" "aaaaaaaa" "aaaaaaaa" "aaaaaaaa", (1000000 - i) < 64 ? 1000000 - i : 64)) goto err; } if (!EVP_DigestFinal_ex(evp, md, NULL)) goto err; EVP_MD_CTX_free(evp); if (memcmp(md, addenum_3, sizeof(addenum_3))) { fflush(stdout); fprintf(stderr, "\nTEST 3 of 3 failed.\n"); return 1; } else fprintf(stdout, "."); fflush(stdout); fprintf(stdout, " passed.\n"); fflush(stdout); return 0; err: fprintf(stderr, "Fatal EVP error!\n"); return 1; }
the_stack_data/75138969.c
int main( int argc, char **argv ) { int x[ 3 ] = { 0, 1, 2 }; int y; // we should detect that x[ 4 ] is out of bounds, even if it's legal stack // memory (e.g. &y) y = x[ 4 ]; return 0; }
the_stack_data/653218.c
#include <stdio.h> #define LEN 32 const char * msg[5] = { "Thank you for wonderful evening", "You certianly prove that a", "is a special kind of guy. We must get together", "over a delicious", "and have a fews" }; struct name { char first[LEN]; char family[LEN]; }; struct guy{ struct name fullname; char favfood[LEN]; char job[LEN]; float income; }; int main(int argc, char *argv[]) { struct guy fellow = { {"Jayden", "YU"}, "grilled samon", "programmer", 1e5 }; printf("Full name : %s %s\n", fellow.fullname.first, fellow.fullname.family); printf("Job : %s\n", fellow.job); printf("INCOME :\e[5;31m %f\e[0m", fellow.income); if (fellow.income >= 100000) printf("!!!\n"); else if (fellow.income >= 50000) printf("!!\n"); else printf("!\n"); return 0; }
the_stack_data/1258610.c
// RUN: %clang_asan -O2 %s -o %t // RUN: %env_asan_opts=check_printf=1 not %run %t 2>&1 | FileCheck --check-prefix=CHECK-ON %s // RUN: not %run %t 2>&1 | FileCheck --check-prefix=CHECK-ON %s // FIXME: sprintf is not intercepted on Windows yet. But this test can // pass if sprintf calls memmove, which is intercepted, so we can't XFAIL it. // UNSUPPORTED: win32 #include <stdio.h> int main() { volatile char c = '0'; volatile int x = 12; volatile float f = 1.239; volatile char s[] = "34"; volatile char buf[2]; fputs("before sprintf\n", stderr); sprintf((char *)buf, "%c %d %.3f %s\n", c, x, f, s); fputs("after sprintf", stderr); fputs((const char *)buf, stderr); return 0; // Check that size of output buffer is sanitized. // CHECK-ON: before sprintf // CHECK-ON-NOT: after sprintf // CHECK-ON: stack-buffer-overflow // CHECK-ON-NOT: 0 12 1.239 34 }
the_stack_data/41699.c
// #include <stdio.h> #include <math.h> int main() { float th_1, th_2, th_3, th_4, score; printf("Enter thresholds for A, B, C, D \n in that order, decreasing percentages> "); scanf("%f %f %f %f", &th_1, &th_2, &th_3, &th_4); printf("Thank you. Now enter student score (percent) > "); scanf("%f", &score); if (score >= th_1){ printf("Student has an A grade \n"); } else { if (th_2 <= score < th_1){ printf("Student has an B grade \n"); } else { if (th_3 <= score < th_2){ printf("Student has an C grade \n"); } else {if (th_4 <= score < th_3){ printf("Student has an D \n"); } else { if (score < th_4){ printf("Student has an F grade \n"); } }} return(0); }}}
the_stack_data/173578908.c
/* halt.c * Simple program to test whether running a user program works. * * Just do a "syscall" that shuts down the OS. * * NOTE: for some reason, user programs with global data structures * sometimes haven't worked in the Nachos environment. So be careful * out there! One option is to allocate data structures as * automatics within a procedure, but if you do this, you have to * be careful to allocate a big enough stack to hold the automatics! */ #include "syscall.h" int main () { Halt (); /* not reached */ return 0; }
the_stack_data/646423.c
#include <stdio.h> #include <string.h> int containsChar(char haystack[30], char needle) { for (int i = 0, t = strlen(haystack); i < t; i++) { if (needle == haystack[i]) { return 1; } } return 0; } int main() { int n; scanf("%d", &n); getchar(); while(n--) { char dieta[30], manha[30], almoco[30], missing[30], done[30]; int d = 0, m = 0; fgets(dieta, 30, stdin); fgets(manha, 30, stdin); fgets(almoco, 30, stdin); dieta[strlen(dieta) - 1] = '\0'; manha[strlen(manha) - 1] = '\0'; almoco[strlen(almoco) - 1] = '\0'; for (int i = 0, t = strlen(dieta); i < t; i++) { if (!containsChar(manha, dieta[i]) && !containsChar(almoco, dieta[i])) { missing[m++] = dieta[i]; } } missing[m] = '\0'; int cheater = 0; for (int i = 0; i < m; i++) { if (!containsChar(dieta, missing[i])) { cheater = 1; break; } } puts(cheater ? "CHEATER" : missing); } return 0; }
the_stack_data/149328.c
/* @(#)atoi.c 2.1 */ /* 3.0 SID # 1.2 */ /*LINTLIBRARY*/ #include "ctype.h" #define ATOI #ifdef ATOI typedef int TYPE; #define NAME atoi #else typedef long TYPE; #define NAME atol #endif TYPE NAME(p) register char *p; { register TYPE n; register int c, neg = 0; if (!isdigit(c = *p)) { while (isspace(c)) c = *++p; switch (c) { case '-': neg++; case '+': /* fall-through */ c = *++p; } if (!isdigit(c)) return (0); } for (n = '0' - c; isdigit(c = *++p); ) { n *= 10; /* two steps to avoid unnecessary overflow */ n += '0' - c; /* accum neg to avoid surprises at MAX */ } return (neg ? n : -n); }
the_stack_data/87711.c
#include <stdio.h> #include <string.h> #include <ctype.h> int main (int argc, char **argv) { int length; int ch, new; // loops until end of file while ((ch = getchar()) != EOF) { //finds first alpha character if (isalpha(ch)) { length = 1; //set second alpha character to case of first character if (isalpha(new = getchar())) { if (isupper(ch)) { new = toupper(new); } else { new = tolower(new); } } //put the rest of the alpha characters while (isalpha(new)) { putchar(new); length++; new = getchar(); } //after finding first non-alpha, set ending depending on length if (length < 4) { if (length == 1) { putchar(ch); } else { putchar(tolower(ch)); } putchar('a'); putchar('n'); } else { putchar(tolower(ch)); putchar('o'); } //put last non-alpha character if not end of file if (new != EOF) { putchar(new); } //put non-alpha chars directly } else { putchar(ch); } } return (0); }
the_stack_data/168892357.c
void husExpand(unsigned char* input, unsigned char* output, int compressedSize, int compressionType) { /* TODO: find and analyse some HUS encoded files and DST equivalents */ output = (unsigned char*)malloc(compressedSize + 1); } int husCompress(unsigned char* input, unsigned long _inputSize, unsigned char* output, int compressionType, int outputSize) { /* TODO: find and analyse some HUS encoded files and DST equivalents */ output = (unsigned char*)malloc(outputSize + 1); return 0; }
the_stack_data/700952.c
// Prime Numbers between 2 interval #include<stdio.h> int main() { int a,b, check; int dum = 1; printf("Enter the range of values \n"); printf("The Start : "); scanf("%d", &a); printf("The End : "); scanf("%d", &b); printf("\n The Prime Numbers from %d to %d \n", a, b); for (int i = a; i<=b; i++) { check = 0; if (i <= 1) continue; else if (i == 2) check = 0; else { for (int j = 2; j<=(i/2)+1; j++) { if (i%j == 0) { check = 1; break; } } } if (check == 0) { printf("%d\t", i); dum++; } if (dum%6 == 0) { printf("\n"); dum = 1; } } }
the_stack_data/95448962.c
/* This file was automatically generated by CasADi. The CasADi copyright holders make no ownership claim of its contents. */ #ifdef __cplusplus extern "C" { #endif /* How to prefix internal symbols */ #ifdef CODEGEN_PREFIX #define NAMESPACE_CONCAT(NS, ID) _NAMESPACE_CONCAT(NS, ID) #define _NAMESPACE_CONCAT(NS, ID) NS ## ID #define CASADI_PREFIX(ID) NAMESPACE_CONCAT(CODEGEN_PREFIX, ID) #else #define CASADI_PREFIX(ID) impl_ode_fun_jac_x_xdot_u_ ## ID #endif #include <math.h> #ifndef casadi_real #define casadi_real double #endif #ifndef casadi_int #define casadi_int int #endif /* Add prefix to internal symbols */ #define casadi_c0 CASADI_PREFIX(c0) #define casadi_c1 CASADI_PREFIX(c1) #define casadi_c2 CASADI_PREFIX(c2) #define casadi_c3 CASADI_PREFIX(c3) #define casadi_c4 CASADI_PREFIX(c4) #define casadi_c5 CASADI_PREFIX(c5) #define casadi_copy CASADI_PREFIX(copy) #define casadi_de_boor CASADI_PREFIX(de_boor) #define casadi_f0 CASADI_PREFIX(f0) #define casadi_f1 CASADI_PREFIX(f1) #define casadi_f2 CASADI_PREFIX(f2) #define casadi_f3 CASADI_PREFIX(f3) #define casadi_f4 CASADI_PREFIX(f4) #define casadi_fill CASADI_PREFIX(fill) #define casadi_fill_casadi_int CASADI_PREFIX(fill_casadi_int) #define casadi_low CASADI_PREFIX(low) #define casadi_mtimes CASADI_PREFIX(mtimes) #define casadi_nd_boor_eval CASADI_PREFIX(nd_boor_eval) #define casadi_s0 CASADI_PREFIX(s0) #define casadi_s1 CASADI_PREFIX(s1) #define casadi_s10 CASADI_PREFIX(s10) #define casadi_s11 CASADI_PREFIX(s11) #define casadi_s12 CASADI_PREFIX(s12) #define casadi_s13 CASADI_PREFIX(s13) #define casadi_s14 CASADI_PREFIX(s14) #define casadi_s15 CASADI_PREFIX(s15) #define casadi_s16 CASADI_PREFIX(s16) #define casadi_s17 CASADI_PREFIX(s17) #define casadi_s18 CASADI_PREFIX(s18) #define casadi_s19 CASADI_PREFIX(s19) #define casadi_s2 CASADI_PREFIX(s2) #define casadi_s20 CASADI_PREFIX(s20) #define casadi_s21 CASADI_PREFIX(s21) #define casadi_s3 CASADI_PREFIX(s3) #define casadi_s4 CASADI_PREFIX(s4) #define casadi_s5 CASADI_PREFIX(s5) #define casadi_s6 CASADI_PREFIX(s6) #define casadi_s7 CASADI_PREFIX(s7) #define casadi_s8 CASADI_PREFIX(s8) #define casadi_s9 CASADI_PREFIX(s9) #define casadi_sq CASADI_PREFIX(sq) #define casadi_trans CASADI_PREFIX(trans) /* Symbol visibility in DLLs */ #ifndef CASADI_SYMBOL_EXPORT #if defined(_WIN32) || defined(__WIN32__) || defined(__CYGWIN__) #if defined(STATIC_LINKED) #define CASADI_SYMBOL_EXPORT #else #define CASADI_SYMBOL_EXPORT __declspec(dllexport) #endif #elif defined(__GNUC__) && defined(GCC_HASCLASSVISIBILITY) #define CASADI_SYMBOL_EXPORT __attribute__ ((visibility ("default"))) #else #define CASADI_SYMBOL_EXPORT #endif #endif static const casadi_int casadi_s0[2] = {0, 0}; static const casadi_int casadi_s1[2] = {1, 55}; static const casadi_int casadi_s2[2] = {3, 3}; static const casadi_int casadi_s3[3] = {0, 59, 131}; static const casadi_int casadi_s4[2] = {1, 54}; static const casadi_int casadi_s5[2] = {2, 3}; static const casadi_int casadi_s6[3] = {0, 57, 129}; static const casadi_int casadi_s7[2] = {3, 2}; static const casadi_int casadi_s8[3] = {0, 59, 129}; static const casadi_int casadi_s9[13] = {1, 5, 0, 1, 2, 3, 4, 5, 0, 0, 0, 0, 0}; static const casadi_int casadi_s10[13] = {2, 5, 0, 1, 2, 3, 4, 5, 1, 1, 1, 1, 0}; static const casadi_int casadi_s11[7] = {1, 2, 0, 1, 2, 0, 0}; static const casadi_int casadi_s12[4] = {2, 3, 8, 11}; static const casadi_int casadi_s13[3] = {0, 4, 9}; static const casadi_int casadi_s14[21] = {6, 6, 0, 2, 5, 6, 8, 10, 12, 1, 2, 0, 1, 3, 1, 0, 1, 1, 4, 0, 5}; static const casadi_int casadi_s15[21] = {6, 6, 0, 3, 8, 9, 10, 11, 12, 1, 3, 5, 0, 1, 2, 3, 4, 0, 1, 4, 5}; static const casadi_int casadi_s16[15] = {6, 6, 0, 1, 2, 3, 4, 5, 6, 0, 1, 2, 3, 4, 5}; static const casadi_int casadi_s17[7] = {6, 2, 0, 1, 2, 4, 5}; static const casadi_int casadi_s18[11] = {2, 6, 0, 0, 0, 0, 0, 1, 2, 0, 1}; static const casadi_int casadi_s19[10] = {6, 1, 0, 6, 0, 1, 2, 3, 4, 5}; static const casadi_int casadi_s20[6] = {2, 1, 0, 2, 0, 1}; static const casadi_int casadi_s21[5] = {1, 1, 0, 1, 0}; static const casadi_real casadi_c0[3740] = {1.8184086601773187e-03, 1.0904223423495404e-03, 2.1284991539426783e-03, 2.4183297386224383e-03, 2.9292756796894717e-03, 3.2948060866679267e-03, 3.7315668141347912e-03, 4.1343263986859313e-03, 4.5563053496223867e-03, 4.9713728384279347e-03, 5.3907646264113500e-03, 5.8073290007822527e-03, 6.2231609676950267e-03, 6.6378402735228553e-03, 7.0511163999661258e-03, 7.4616134713547328e-03, 7.8714853236313033e-03, 8.2809581949205308e-03, 8.6874696441523493e-03, 9.0923302948452567e-03, 9.4955165822850594e-03, 9.8936956957241251e-03, 1.0289518246109745e-02, 1.0679678042924228e-02, 1.1071326415580255e-02, 1.1458679274212335e-02, 1.1844285428821743e-02, 1.2225826669718144e-02, 1.2599696779551962e-02, 1.2969225412061020e-02, 1.3335272827729425e-02, 1.3698516866381271e-02, 1.4060708568523475e-02, 1.4413909439722985e-02, 1.4764406279404703e-02, 1.5111627753613547e-02, 1.5449419489704604e-02, 1.5779118407517112e-02, 1.6105920324379467e-02, 1.6435191584132119e-02, 1.6750196790189940e-02, 1.7069047253462508e-02, 1.7362301504420041e-02, 1.7688279675615693e-02, 1.7933284783715350e-02, 1.8382805036747767e-02, 1.8215306098602762e-02, 1.8262857646411765e-02, 1.8232271944510312e-02, 1.8249189624503084e-02, 1.8239674629467205e-02, 1.8251039072585646e-02, 1.8220269373502820e-02, 1.8267428421928512e-02, 1.8132711378110813e-02, 8.3085952623944013e-04, 1.8359830088230124e-03, 1.7956821082281470e-03, 2.5333472147936438e-03, 2.8738841151270508e-03, 3.3237144634793848e-03, 3.7197847610549815e-03, 4.1429966739586748e-03, 4.5553330041380215e-03, 4.9752663564854634e-03, 5.3924894384507057e-03, 5.8102875766167256e-03, 6.2260437237284111e-03, 6.6410016435829479e-03, 7.0541333913303481e-03, 7.4651429546108558e-03, 7.8751585801590685e-03, 8.2840970319735495e-03, 8.6908520800561100e-03, 9.0957081511521803e-03, 9.4980722455570432e-03, 9.8966972647818782e-03, 1.0291164636052709e-02, 1.0682748342503514e-02, 1.1072297530362858e-02, 1.1459981765592023e-02, 1.1844739387864543e-02, 1.2224971523868819e-02, 1.2598762336953444e-02, 1.2967445583110299e-02, 1.3332723435120234e-02, 1.3695559712480985e-02, 1.4055067374954183e-02, 1.4408825736522173e-02, 1.4758153541920109e-02, 1.5103242399836347e-02, 1.5440071090258989e-02, 1.5769308696990020e-02, 1.6096807816507453e-02, 1.6420630908989122e-02, 1.6740894403525112e-02, 1.7049346259408335e-02, 1.7361510283680583e-02, 1.7654267568851918e-02, 1.7989278130116016e-02, 1.8251978448535558e-02, 1.8273132606509819e-02, 1.8228099098711200e-02, 1.8233584900392442e-02, 1.8227120832387450e-02, 1.8232741798215126e-02, 1.8229194641150269e-02, 1.8227725197522422e-02, 1.8232732494755037e-02, 1.8084198674117806e-02, 1.4260148873143791e-03, 1.3774451961144035e-03, 1.9855018454883466e-03, 2.4524310347448326e-03, 2.8948805932027784e-03, 3.2906510565985725e-03, 3.7102710166742412e-03, 4.1189141288687650e-03, 4.5352236439490179e-03, 4.9499870802985017e-03, 5.3664718747950986e-03, 5.7814612134081287e-03, 6.1954938190694952e-03, 6.6082825456011138e-03, 7.0196429130457184e-03, 7.4295474841089794e-03, 7.8389510782056887e-03, 8.2482172620348508e-03, 8.6560965679520711e-03, 9.0625191584863141e-03, 9.4670574687036636e-03, 9.8685636903891403e-03, 1.0267149703944876e-02, 1.0662666896616881e-02, 1.1058688731478802e-02, 1.1452491421781752e-02, 1.1844039222776990e-02, 1.2232051753501713e-02, 1.2614590938931868e-02, 1.2992897781685248e-02, 1.3368214423737451e-02, 1.3741955929623384e-02, 1.4113282307222223e-02, 1.4478985272299010e-02, 1.4841110041514999e-02, 1.5198764441702723e-02, 1.5549019315604143e-02, 1.5891472275106400e-02, 1.6230171757868693e-02, 1.6566644833444413e-02, 1.6893510944815896e-02, 1.7214976220536273e-02, 1.7526518746467882e-02, 1.7843126375422964e-02, 1.8146853800514239e-02, 1.8422984907889736e-02, 1.8429506204680215e-02, 1.8417439573032844e-02, 1.8401886545152606e-02, 1.8402803658265000e-02, 1.8402948942210940e-02, 1.8403358308662472e-02, 1.8415752477090774e-02, 1.8418095689239748e-02, 1.8581211756580639e-02, 1.1890863167041061e-03, 1.5720948087278349e-03, 1.9151102539217656e-03, 2.4917493155122432e-03, 2.8943588825649544e-03, 3.3132153534572721e-03, 3.7244461203582639e-03, 4.1403101187719596e-03, 4.5560982967091492e-03, 4.9740853112396526e-03, 5.3919347025508475e-03, 5.8091894770553407e-03, 6.2250130433831796e-03, 6.6396786864199508e-03, 7.0526497473931624e-03, 7.4636452663832311e-03, 7.8735715667087643e-03, 8.2824707338611282e-03, 8.6893309770602924e-03, 9.0942499521325330e-03, 9.4967104387622455e-03, 9.8954114589935339e-03, 1.0290462245976555e-02, 1.0682192098683076e-02, 1.1072509482788645e-02, 1.1460484708642546e-02, 1.1845658434027045e-02, 1.2226390944019521e-02, 1.2600948119477135e-02, 1.2970593508390020e-02, 1.3336747743493296e-02, 1.3700283716929357e-02, 1.4060713569719998e-02, 1.4415474912679218e-02, 1.4765946732377954e-02, 1.5111712964162447e-02, 1.5449749392942380e-02, 1.5780739497112683e-02, 1.6108818914085159e-02, 1.6434302767421527e-02, 1.6753608194343596e-02, 1.7066572259807424e-02, 1.7375928916857984e-02, 1.7685213906389718e-02, 1.7994365959108315e-02, 1.8261760927701362e-02, 1.8278585036349996e-02, 1.8260218857540894e-02, 1.8249091229132167e-02, 1.8247142416302799e-02, 1.8247686951102432e-02, 1.8249048622869756e-02, 1.8243057244703827e-02, 1.8254356106326187e-02, 1.8220771557418265e-02, 1.2917423945598358e-03, 1.5095105130214245e-03, 1.9510852388274779e-03, 2.4877392763556268e-03, 2.9071413110243961e-03, 3.3191483639899849e-03, 3.7355232633908175e-03, 4.1505847663347644e-03, 4.5685077902003959e-03, 4.9871702362239093e-03, 5.4064140501891870e-03, 5.8247306551549999e-03, 6.2417718448860710e-03, 6.6575390384948051e-03, 7.0715653432949039e-03, 7.4833133376064984e-03, 7.8936892314475197e-03, 8.3025739352116674e-03, 8.7090587335081609e-03, 9.1133543668436810e-03, 9.5149369193859232e-03, 9.9122913360103343e-03, 1.0305772078411872e-02, 1.0695611722214454e-02, 1.1083221060468300e-02, 1.1468274962358541e-02, 1.1850360242752385e-02, 1.2227493058795069e-02, 1.2598030605910571e-02, 1.2963328978634656e-02, 1.3324864536191810e-02, 1.3683182959038509e-02, 1.4038103091063396e-02, 1.4387220399640297e-02, 1.4731747076910889e-02, 1.5071366266783195e-02, 1.5403030227062088e-02, 1.5728176574727328e-02, 1.6050514066639116e-02, 1.6370740527450738e-02, 1.6685356786855818e-02, 1.6995126294834243e-02, 1.7300890146081990e-02, 1.7610154836838289e-02, 1.7916670960234606e-02, 1.8187323442709642e-02, 1.8201853263940377e-02, 1.8185789829218778e-02, 1.8173202523590688e-02, 1.8171531073365971e-02, 1.8171886027759775e-02, 1.8168525477880025e-02, 1.8163967015769399e-02, 1.8102683185725603e-02, 1.8066001072359360e-02, 1.2425869394019681e-03, 1.5325730445849830e-03, 1.9235544607098085e-03, 2.4771719030035710e-03, 2.8860422382735841e-03, 3.2993812193301028e-03, 3.7111932144932780e-03, 4.1247671177941474e-03, 4.5398092902077507e-03, 4.9564272851261295e-03, 5.3733511113113995e-03, 5.7896141343461707e-03, 6.2046488496964904e-03, 6.6186506134176763e-03, 7.0312415203207940e-03, 7.4421782969762065e-03, 7.8525054030219137e-03, 8.2622623634228485e-03, 8.6704441816139281e-03, 9.0771042755716947e-03, 9.4817586190490133e-03, 9.8830894013814900e-03, 1.0281305725069642e-02, 1.0676834704567300e-02, 1.1071497162366353e-02, 1.1464402744525896e-02, 1.1854976632445778e-02, 1.2241540142361234e-02, 1.2622404463562780e-02, 1.2998799244091922e-02, 1.3372213043611473e-02, 1.3743430537548456e-02, 1.4111954188859127e-02, 1.4475091957640383e-02, 1.4834086030291904e-02, 1.5188481803609259e-02, 1.5534958943294061e-02, 1.5874168004316423e-02, 1.6209849585064273e-02, 1.6542182188449012e-02, 1.6867017441704268e-02, 1.7184472837268712e-02, 1.7496106479415068e-02, 1.7807647781488047e-02, 1.8115432350818524e-02, 1.8383903624808118e-02, 1.8398681607861792e-02, 1.8381519204316989e-02, 1.8369371526665158e-02, 1.8367190465370161e-02, 1.8366377702969647e-02, 1.8363592063642992e-02, 1.8360988646817292e-02, 1.8360613916913737e-02, 1.8216704212256615e-02, 1.2282669296476197e-03, 1.4872997150881396e-03, 1.9065758804584936e-03, 2.4444128654649445e-03, 2.8522736022403594e-03, 3.2587026934209644e-03, 3.6668457559830459e-03, 4.0754749880262372e-03, 4.4866029278565565e-03, 4.8991739715189197e-03, 5.3124649029557608e-03, 5.7251749007184109e-03, 6.1369441221706591e-03, 6.5479561322170279e-03, 6.9579194868595647e-03, 7.3672404428532469e-03, 7.7768544965928490e-03, 8.1873593772466020e-03, 8.5973671265676677e-03, 9.0065958702651664e-03, 9.4146003520117795e-03, 9.8206689174303152e-03, 1.0224525725063629e-02, 1.0626282346191590e-02, 1.1030110152503190e-02, 1.1432476352027456e-02, 1.1833136992854876e-02, 1.2231319544984848e-02, 1.2624965277891621e-02, 1.3015186535134247e-02, 1.3403156428088465e-02, 1.3790770204469087e-02, 1.4176614422930531e-02, 1.4557215652880554e-02, 1.4934530360368627e-02, 1.5307368993610043e-02, 1.5672801911175260e-02, 1.6029109166279150e-02, 1.6380727320290351e-02, 1.6728004524298512e-02, 1.7063612057960875e-02, 1.7389132855767396e-02, 1.7705226740628004e-02, 1.8017730848859943e-02, 1.8323125895087066e-02, 1.8586305536984832e-02, 1.8598835946331615e-02, 1.8580578185940312e-02, 1.8567669315557516e-02, 1.8565724923683323e-02, 1.8564590421932821e-02, 1.8567707410792961e-02, 1.8586394084643187e-02, 1.8792224283614253e-02, 1.8944753437773517e-02, 1.2119266560927317e-03, 1.5047211746179155e-03, 1.9238363084110568e-03, 2.4728948519911207e-03, 2.8833177421891043e-03, 3.2953076784660021e-03, 3.7079142091405747e-03, 4.1219359311165001e-03, 4.5381119193306993e-03, 4.9559085453083681e-03, 5.3743477036397235e-03, 5.7922224946934707e-03, 6.2088950357154921e-03, 6.6243013924924612e-03, 7.0375369595456934e-03, 7.4481168815136870e-03, 7.8564064627978502e-03, 8.2624777957852735e-03, 8.6651799004236734e-03, 9.0647597208410712e-03, 9.4606030010681054e-03, 9.8514307868616362e-03, 1.0237223746387128e-02, 1.0617398668452337e-02, 1.0994777685174524e-02, 1.1367771283735348e-02, 1.1736735906798738e-02, 1.2100014275964893e-02, 1.2455814450432716e-02, 1.2805635758676321e-02, 1.3150419401325475e-02, 1.3491527140446788e-02, 1.3828522502096792e-02, 1.4158753250462506e-02, 1.4483968494648570e-02, 1.4803300166904881e-02, 1.5114901291594787e-02, 1.5419104666249428e-02, 1.5720541294821637e-02, 1.6020539824009739e-02, 1.6314994832450094e-02, 1.6605380250889010e-02, 1.6893611748031626e-02, 1.7187525466994508e-02, 1.7484911404577523e-02, 1.7746543339095609e-02, 1.7756422474392086e-02, 1.7735093735471670e-02, 1.7720845607780283e-02, 1.7719403633114465e-02, 1.7720662592150348e-02, 1.7729425455305869e-02, 1.7754714025328598e-02, 1.7970502230074920e-02, 1.8624335254012248e-02, 1.3023863147950446e-03, 1.5929110084396605e-03, 2.0343114034508843e-03, 2.6087480815437133e-03, 3.0401392920669764e-03, 3.4712714815803829e-03, 3.9028789348848195e-03, 4.3344547457094713e-03, 4.7665348129183180e-03, 5.1984203718174748e-03, 5.6294702178170562e-03, 6.0585410062087000e-03, 6.4846681375881491e-03, 6.9073828630842301e-03, 7.3252207662726793e-03, 7.7349762660350345e-03, 8.1373306250337001e-03, 8.5300502036194520e-03, 8.9134293774004343e-03, 9.2893443592322635e-03, 9.6571617619951727e-03, 1.0012922003524882e-02, 1.0357840991346869e-02, 1.0691654221944203e-02, 1.1008228779733349e-02, 1.1316935231250363e-02, 1.1617512329165143e-02, 1.1905165822648231e-02, 1.2180354007892713e-02, 1.2444461400035724e-02, 1.2698269674923291e-02, 1.2939774173428382e-02, 1.3172943531782956e-02, 1.3398209413583719e-02, 1.3614985110986102e-02, 1.3825995308929955e-02, 1.4028584856334346e-02, 1.4232191602114919e-02, 1.4438012975975332e-02, 1.4649337543825284e-02, 1.4876083833069145e-02, 1.5115027929406865e-02, 1.5370880758873920e-02, 1.5657939049477210e-02, 1.5970115898758300e-02, 1.6260869389137116e-02, 1.6273423375169030e-02, 1.6249183076808896e-02, 1.6232829756560877e-02, 1.6230810028726492e-02, 1.6237612742648216e-02, 1.6241469780266537e-02, 1.6230951360564797e-02, 1.5942361100025140e-02, 1.5792991990867006e-02, 1.4180538917131071e-03, 1.7180860005641238e-03, 2.1786525576628695e-03, 2.7897685529608899e-03, 3.2444765877902562e-03, 3.6952095055639276e-03, 4.1415946115584993e-03, 4.5837079750838550e-03, 5.0203173922150563e-03, 5.4515107974211349e-03, 5.8774509753408396e-03, 6.2972473853384718e-03, 6.7107971354271731e-03, 7.1187035474830403e-03, 7.5209118906097465e-03, 7.9166991946869152e-03, 8.3089367982247930e-03, 8.6964514184589090e-03, 9.0789893715712087e-03, 9.4590126601451618e-03, 9.8372236460460595e-03, 1.0210110635581389e-02, 1.0575647443951362e-02, 1.0934812122334256e-02, 1.1283591040471313e-02, 1.1630703812680717e-02, 1.1974104313424565e-02, 1.2310665773362796e-02, 1.2645356663972859e-02, 1.2975535885506559e-02, 1.3294378357561872e-02, 1.3607109457951875e-02, 1.3917527296092498e-02, 1.4223916687815308e-02, 1.4528963083353002e-02, 1.4837564269039342e-02, 1.5146859352894065e-02, 1.5458779904736436e-02, 1.5773195966931778e-02, 1.6093325278169673e-02, 1.6439152850656984e-02, 1.6799544713308388e-02, 1.7178974361309891e-02, 1.7596844300948673e-02, 1.8030767098456007e-02, 1.8420534848264659e-02, 1.8452265538236177e-02, 1.8430138623947698e-02, 1.8411849198328622e-02, 1.8409000460294579e-02, 1.8415774810156289e-02, 1.8418473605647086e-02, 1.8360417426155264e-02, 1.7781529152783408e-02, 1.6395720146299513e-02, 1.4669618551833609e-03, 1.7751320405316783e-03, 2.2655203685333202e-03, 2.9194480539389001e-03, 3.4010295896935001e-03, 3.8710520635108071e-03, 4.3312982346951920e-03, 4.7830473195374281e-03, 5.2241942131977829e-03, 5.6560581257435599e-03, 6.0806821537055548e-03, 6.4975855644801312e-03, 6.9089158950036396e-03, 7.3181985565135173e-03, 7.7284367032145413e-03, 8.1486196510134924e-03, 8.5811987537448859e-03, 9.0321082093089509e-03, 9.4963981821967070e-03, 9.9767578347494355e-03, 1.0476654235795146e-02, 1.1000085596665083e-02, 1.1534525332877158e-02, 1.2082011950962077e-02, 1.2668499802984406e-02, 1.3272966706282835e-02, 1.3889209438536053e-02, 1.4520065653605186e-02, 1.5177383072221877e-02, 1.5852839574517663e-02, 1.6516724689748626e-02, 1.7201789220629555e-02, 1.7900093236384081e-02, 1.8597758830083157e-02, 1.9310861811011808e-02, 2.0038193281537268e-02, 2.0784000504253504e-02, 2.1514404337394183e-02, 2.2234971859882206e-02, 2.2944187805244175e-02, 2.3653223595060235e-02, 2.4351041964644254e-02, 2.5030789132324694e-02, 2.5716241487146907e-02, 2.6353801646642482e-02, 2.6884542050079726e-02, 2.6942639703299211e-02, 2.6935038687647021e-02, 2.6918256305866011e-02, 2.6914011522858518e-02, 2.6916228637326713e-02, 2.6916594973306646e-02, 2.6907791643286074e-02, 2.6741464314398788e-02, 2.6647756238251191e-02, 1.3658539230676332e-03, 1.6615718282394539e-03, 2.2605954188217774e-03, 3.0285271540821564e-03, 3.5938141975989748e-03, 4.1514007076943679e-03, 4.7060045071285915e-03, 5.2618321974679579e-03, 5.8233256699621941e-03, 6.3900301839001717e-03, 6.9648089009768316e-03, 7.5529211750612465e-03, 8.1522821889670003e-03, 8.7675949047644457e-03, 9.4070095690792065e-03, 1.0073075500578423e-02, 1.0757107768656059e-02, 1.1463248140624738e-02, 1.2186055645084157e-02, 1.2935896941828517e-02, 1.3719123565040733e-02, 1.4536938702963811e-02, 1.5377985336106731e-02, 1.6247526896858450e-02, 1.7196259111608641e-02, 1.8183155807882941e-02, 1.9191006754169602e-02, 2.0191638760322945e-02, 2.1223347118324444e-02, 2.2277866240622422e-02, 2.3304419767152220e-02, 2.4343417463348536e-02, 2.5384023551472536e-02, 2.6403508209179759e-02, 2.7417222463598179e-02, 2.8419230310831670e-02, 2.9414792786865037e-02, 3.0377443171901438e-02, 3.1306965114834648e-02, 3.2179800808154489e-02, 3.3009674234101706e-02, 3.3797806069681538e-02, 3.4531216851747974e-02, 3.5215449337989910e-02, 3.5805125819103098e-02, 3.6279187853690276e-02, 3.6345320895770056e-02, 3.6362818616279415e-02, 3.6356053483721854e-02, 3.6352760535180328e-02, 3.6346703404870402e-02, 3.6346334183116745e-02, 3.6381525573196231e-02, 3.6765387194715941e-02, 3.7730421174586248e-02, 1.0087434984848889e-03, 1.5355401205010470e-03, 2.4104930500987473e-03, 3.4610006792987467e-03, 4.2541736435168925e-03, 5.0634421967802323e-03, 5.8971189164786940e-03, 6.7554693746128651e-03, 7.6600480566105531e-03, 8.6008992635640720e-03, 9.5799452363459249e-03, 1.0616413031967229e-02, 1.1690837693851057e-02, 1.2804648622710331e-02, 1.3976852891107184e-02, 1.5175044401354875e-02, 1.6375253266181958e-02, 1.7561233967007372e-02, 1.8734042894310163e-02, 1.9916977173527101e-02, 2.1115217156040929e-02, 2.2298056467923134e-02, 2.3483860281425090e-02, 2.4681518102823395e-02, 2.5926311836217280e-02, 2.7204507099772544e-02, 2.8494221163470612e-02, 2.9677089659710179e-02, 3.0852459852365042e-02, 3.2012057409211959e-02, 3.3106633069392759e-02, 3.4129561335359750e-02, 3.5090173584401300e-02, 3.5971193136393076e-02, 3.6753167598430538e-02, 3.7456119013737403e-02, 3.8046222122737117e-02, 3.8606019178719572e-02, 3.9088517973190247e-02, 3.9459258710753356e-02, 3.9751377231423669e-02, 4.0002988269798680e-02, 4.0192037871232329e-02, 4.0263143293533067e-02, 4.0259414105762503e-02, 4.0237672011263485e-02, 4.0265500902563298e-02, 4.0307620830701649e-02, 4.0323776098776166e-02, 4.0323673867069296e-02, 4.0313689489204774e-02, 4.0306139246369846e-02, 4.0323639667291043e-02, 4.0712799577125924e-02, 4.0928142996292348e-02, 1.3953716510723873e-03, 2.3213364489006487e-03, 3.6092884471297030e-03, 5.2238942660468770e-03, 6.4682025619017093e-03, 7.7693112941337140e-03, 9.1132364869456750e-03, 1.0489732191411012e-02, 1.1913595154280646e-02, 1.3370679822669727e-02, 1.4866055755428306e-02, 1.6424848461315950e-02, 1.8006948007774370e-02, 1.9615248320012584e-02, 2.1273085409359741e-02, 2.2939465443746150e-02, 2.4602282043301837e-02, 2.6239540331096562e-02, 2.7834008350339605e-02, 2.9400878508452456e-02, 3.0930534785717098e-02, 3.2345413953099068e-02, 3.3699840411618359e-02, 3.4999768378426305e-02, 3.6229769250710434e-02, 3.7433070480167183e-02, 3.8607144100178535e-02, 3.9620697603104452e-02, 4.0590728946511626e-02, 4.1504757938432474e-02, 4.2314123083984509e-02, 4.2976478619587886e-02, 4.3504585913212955e-02, 4.3855344737156028e-02, 4.4020535641171782e-02, 4.4060143190908667e-02, 4.3922090919569758e-02, 4.3671448147239660e-02, 4.3296851018665941e-02, 4.2774568940880463e-02, 4.2191114596812102e-02, 4.1570879970585797e-02, 4.0888266326750841e-02, 3.9969966022581759e-02, 3.8941404777045108e-02, 3.8003711969431322e-02, 3.7925859307364869e-02, 3.7988740682824526e-02, 3.8032844858700614e-02, 3.8039977929645398e-02, 3.8030453667692754e-02, 3.8017311411764544e-02, 3.8018545266536932e-02, 3.8171535930902521e-02, 3.8180059571682794e-02, 3.7045073163119594e-03, 4.9583561955433919e-03, 6.8035509740745860e-03, 9.2399071558422283e-03, 1.1141503170500227e-02, 1.3119665441967169e-02, 1.5120821240315272e-02, 1.7123893657704104e-02, 1.9091691203716312e-02, 2.1025886613588708e-02, 2.2943889348515514e-02, 2.4857111713052042e-02, 2.6713548638957387e-02, 2.8529779841110693e-02, 3.0305953328970299e-02, 3.2056146452236145e-02, 3.3814729609827406e-02, 3.5594440050510878e-02, 3.7320125693917378e-02, 3.8974841468478280e-02, 4.0530703830860437e-02, 4.1874677057482310e-02, 4.3073926236833732e-02, 4.4119999274864138e-02, 4.4923056340356704e-02, 4.5591950122551288e-02, 4.6141490717972876e-02, 4.6610451359711355e-02, 4.7025334195150342e-02, 4.7383505561354948e-02, 4.7605258877286477e-02, 4.7693121098920099e-02, 4.7617997647244587e-02, 4.7251666574667617e-02, 4.6694841755925545e-02, 4.6048499534379124e-02, 4.5306928651436450e-02, 4.4238210617503257e-02, 4.2978207625985192e-02, 4.1605300132640195e-02, 4.0172109708502574e-02, 3.8696658769648638e-02, 3.7103225630918973e-02, 3.5151077741478326e-02, 3.3026012112785157e-02, 3.0963704281593049e-02, 3.0800761706203415e-02, 3.0860029502545742e-02, 3.0934815585175184e-02, 3.0945576002055605e-02, 3.0942630656261721e-02, 3.0930670205316989e-02, 3.0945121723808235e-02, 3.1063810635903185e-02, 3.1180100111323644e-02, 8.0942375003881951e-03, 9.8622524407957855e-03, 1.2228165611482756e-02, 1.5481872558265627e-02, 1.7965038138659812e-02, 2.0467494711988495e-02, 2.2937800699000289e-02, 2.5362110352856401e-02, 2.7661055947225576e-02, 2.9862975192984861e-02, 3.1997702677767338e-02, 3.4063304449161301e-02, 3.6015057410878154e-02, 3.7868588334858913e-02, 3.9581287003386180e-02, 4.1194070251655550e-02, 4.2767301199691694e-02, 4.4325045032075870e-02, 4.5777060062717354e-02, 4.7122785513898473e-02, 4.8345113988126090e-02, 4.9367825562183026e-02, 5.0204979792981844e-02, 5.0822895363357538e-02, 5.1078088872829795e-02, 5.1121214316367417e-02, 5.0951847845638248e-02, 5.0661780648542508e-02, 5.0307405664711403e-02, 4.9901566930492254e-02, 4.9310334757132916e-02, 4.8626843902565470e-02, 4.7792924127779274e-02, 4.6606658548044161e-02, 4.5292667866430263e-02, 4.3936129645665171e-02, 4.2620459324842097e-02, 4.0813641724793445e-02, 3.8803732875938600e-02, 3.6576078758004713e-02, 3.4237207114536490e-02, 3.1723018051109296e-02, 2.9083339276986236e-02, 2.6122908161554572e-02, 2.3203141936542708e-02, 2.0627482208033305e-02, 2.0440852674436599e-02, 2.0506021288214240e-02, 2.0590128732435587e-02, 2.0607072754082020e-02, 2.0601768030491945e-02, 2.0612467413164734e-02, 2.0593666164722153e-02, 2.0749201333180253e-02, 2.0990297806968046e-02, 1.4877167359098753e-02, 1.6733215046879042e-02, 1.9492815577270586e-02, 2.3241247517050031e-02, 2.5992731041510144e-02, 2.8597010732117154e-02, 3.1113831223423209e-02, 3.3547243683113917e-02, 3.5841555766171124e-02, 3.8045200830013122e-02, 4.0184290309004216e-02, 4.2249802934638925e-02, 4.4229849968077634e-02, 4.6108754202350527e-02, 4.7811368968590361e-02, 4.9303173966178705e-02, 5.0617452097454156e-02, 5.1702733157925014e-02, 5.2547205791301198e-02, 5.3261386959161244e-02, 5.3860457381250601e-02, 5.4410552047044758e-02, 5.4789551643937590e-02, 5.4956235940311481e-02, 5.4777316636451953e-02, 5.4394622511746808e-02, 5.3779368047151353e-02, 5.2679460935495671e-02, 5.1501418177485797e-02, 5.0242421174516119e-02, 4.8717354124878876e-02, 4.7106824449854430e-02, 4.5366700398375738e-02, 4.3346512056533559e-02, 4.1211467190138691e-02, 3.9069766544844890e-02, 3.6891286866201495e-02, 3.4391936701486131e-02, 3.1583652715330417e-02, 2.8628231170981785e-02, 2.5225505789372819e-02, 2.1671551783652945e-02, 1.7853757200601499e-02, 1.4145776581031822e-02, 1.1230823836340295e-02, 9.2602713757120609e-03, 9.1594352078656384e-03, 9.2352144944411914e-03, 9.3128110578447852e-03, 9.3195995458490929e-03, 9.3324631420855075e-03, 9.3149917946095031e-03, 9.3536045810567823e-03, 8.9596949695477622e-03, 9.0413125458370051e-03, 2.2434492108769400e-02, 2.4222075629071572e-02, 2.7169030098467686e-02, 3.1071537576123669e-02, 3.3852363542404833e-02, 3.6359282077284519e-02, 3.8745858073917901e-02, 4.1038115765271797e-02, 4.3227778733895959e-02, 4.5369832274320072e-02, 4.7455512975934040e-02, 4.9423557634778063e-02, 5.1292590813711125e-02, 5.3054939570915942e-02, 5.4644908955350076e-02, 5.5960315703123709e-02, 5.7012540412723127e-02, 5.7678966677475463e-02, 5.7934365978109879e-02, 5.8019000618800901e-02, 5.7967671457523143e-02, 5.7843907135675929e-02, 5.7540715591266375e-02, 5.7051916304612517e-02, 5.6286921068346485e-02, 5.5383924446491054e-02, 5.4288313038346490e-02, 5.2429725414849006e-02, 5.0459088643765478e-02, 4.8373202817770258e-02, 4.5983706412338357e-02, 4.3505422577757927e-02, 4.0937685769748211e-02, 3.8175125356060310e-02, 3.5346620112422698e-02, 3.2308078407002477e-02, 2.9049468844954653e-02, 2.5539780540796943e-02, 2.2075222877811822e-02, 1.8393944426024055e-02, 1.4836444291482754e-02, 1.1103499301441409e-02, 7.4721939010366769e-03, 4.1504804903980353e-03, 1.9202415230840206e-03, 1.3284489450061127e-03, 1.2888803242727838e-03, 1.4061183199858053e-03, 1.4342902466962140e-03, 1.4504691731703811e-03, 1.4383033360572928e-03, 1.4717939695711147e-03, 1.3428346299969814e-03, 1.1179744071399881e-03, -3.0193847036068559e-04, 2.9083324793687040e-02, 3.0997861335946938e-02, 3.3942114384628748e-02, 3.7779500841157776e-02, 4.0521083415307767e-02, 4.3037576966512475e-02, 4.5439336195880815e-02, 4.7763602650766603e-02, 5.0012054405711610e-02, 5.2221445648094972e-02, 5.4331277429605349e-02, 5.6157180778936597e-02, 5.7712223876391237e-02, 5.9072616973316845e-02, 6.0234828988696927e-02, 6.1151594698259107e-02, 6.1875342336864592e-02, 6.2323694060970672e-02, 6.2217462043073220e-02, 6.1874241143109993e-02, 6.1334882089175209e-02, 6.0296057303730312e-02, 5.9017040033342689e-02, 5.7538134702773649e-02, 5.5807080620396930e-02, 5.4005955259603625e-02, 5.2071611777444855e-02, 4.9565107261403223e-02, 4.6893388363689816e-02, 4.4088209773631176e-02, 4.1070366305725525e-02, 3.7961636192376219e-02, 3.4756831362672026e-02, 3.1466556816752096e-02, 2.7943844450109431e-02, 2.4279273296788053e-02, 1.9919453051670265e-02, 1.5522451671456959e-02, 1.1122205161355071e-02, 7.9856717680884797e-03, 5.3992948673711304e-03, 3.4299088286501573e-03, 1.2902179756261755e-03, -2.1577843266077802e-04, -5.6508473346164893e-04, -4.1621052732359123e-04, -2.1836406202003423e-04, -1.8584882814037961e-04, -1.6192453222248462e-04, -1.7811441150084601e-04, -1.5767305200527242e-04, -1.9684109428007120e-04, -8.4684228336506269e-05, -5.3534704625950939e-04, -2.8973608089161007e-05, 3.4895713808106882e-02, 3.6801240432538990e-02, 3.9743298629226757e-02, 4.3505606509406429e-02, 4.6252537529505082e-02, 4.8906748007476505e-02, 5.1501002455493293e-02, 5.4044710587191111e-02, 5.6475146703838679e-02, 5.8772384378893046e-02, 6.0883399615200520e-02, 6.2572017800530330e-02, 6.3760877027399368e-02, 6.4582553349157135e-02, 6.5057334588607338e-02, 6.5308876117584833e-02, 6.5452183567599437e-02, 6.5464791917216006e-02, 6.4874270078740567e-02, 6.4012449626284829e-02, 6.2912292314665400e-02, 6.0955845450556295e-02, 5.8709047004302663e-02, 5.6243379745591279e-02, 5.3530490334166007e-02, 5.0786136973361373e-02, 4.7966590562096324e-02, 4.4922776825913446e-02, 4.1676888008740663e-02, 3.8313977333385298e-02, 3.4827327462871219e-02, 3.1239077327578458e-02, 2.7477177161222235e-02, 2.3366839286298333e-02, 1.9325195645700399e-02, 1.4994825509169214e-02, 1.0852411272792878e-02, 6.5046323300230954e-03, 3.2947355390252593e-03, 1.2035942919900322e-04, -5.1148180080685284e-04, -9.7249025009558065e-04, -3.0524602790263659e-04, 7.1208669342534818e-06, 1.7435531348676132e-04, 1.2978288986617917e-03, 1.3496380448905813e-03, 1.4264991528793185e-03, 1.3814065887823022e-03, 1.3876082027965701e-03, 1.3669263493281405e-03, 1.4029780836680558e-03, 1.3422761432565025e-03, 1.7937006127085903e-03, 2.0281381374611346e-03, 3.9819954430654975e-02, 4.1797194645922020e-02, 4.4886684879804031e-02, 4.8832155064098048e-02, 5.1740473790565684e-02, 5.4626155076778857e-02, 5.7497093698906009e-02, 6.0292298595276031e-02, 6.2807898883821267e-02, 6.4959553150052043e-02, 6.6826154782930719e-02, 6.8327146445403011e-02, 6.9191871511790001e-02, 6.9517784491618217e-02, 6.9200461694126358e-02, 6.8596354827847206e-02, 6.7833804850272642e-02, 6.6867946628950806e-02, 6.5377773156907515e-02, 6.3652913279714701e-02, 6.1713551813821023e-02, 5.9086465265672440e-02, 5.6187221371625642e-02, 5.3095146415858156e-02, 4.9797165635666718e-02, 4.6462732071605971e-02, 4.3089443289097709e-02, 3.9591146338554345e-02, 3.5928301575232489e-02, 3.2087706227787789e-02, 2.8190967179084505e-02, 2.4066372732624994e-02, 1.9678647638501561e-02, 1.4875938037270596e-02, 9.7193630873781411e-03, 6.0170875571396417e-03, 3.5115017342070404e-03, 1.3995334487824534e-03, -1.0316198027935540e-03, 1.0861302931493577e-05, 1.3991155930992378e-04, 2.7547114813294038e-04, 7.8868693754156598e-05, -8.2618363054884388e-05, 1.3160779706079769e-03, 2.0101826915411144e-03, 2.2728371835150133e-03, 2.2052497899138143e-03, 2.1937349791427371e-03, 2.1698226777017741e-03, 2.1780130140102594e-03, 2.1599082911256092e-03, 2.2241994425461382e-03, 2.2907261540652084e-03, 2.6323119248148280e-03, 4.3953402557334091e-02, 4.6151705031116631e-02, 4.9607732208337009e-02, 5.4173781070783307e-02, 5.7571051026831029e-02, 6.0826982034545438e-02, 6.3931794702092246e-02, 6.6755080820539200e-02, 6.8898138295286973e-02, 7.0423529419261180e-02, 7.1590393507492078e-02, 7.2530101696614363e-02, 7.2895560102807372e-02, 7.2692635190157270e-02, 7.1659022236769482e-02, 7.0215943267637651e-02, 6.8519322639273017e-02, 6.6516273511363952e-02, 6.4071981759832031e-02, 6.1456183976449669e-02, 5.8704869229184421e-02, 5.5614164680318788e-02, 5.2316140574470850e-02, 4.8872451188041774e-02, 4.5284772528722886e-02, 4.1646427511183512e-02, 3.7928275927520308e-02, 3.4048443413880358e-02, 2.9965924872324426e-02, 2.5727341894008500e-02, 2.1113338269668373e-02, 1.6524128275418038e-02, 1.1881148862613202e-02, 6.8534235054311587e-03, 3.1555963791100915e-03, -7.0300695925442562e-04, -8.9556084918617222e-04, -3.8657198203876866e-04, 2.8669633398090079e-04, -1.3739378258486716e-05, -9.2581564910926794e-05, -9.7243076447410228e-05, -8.8331571365795854e-05, 6.1811934936478166e-04, 1.0122978792137867e-03, 2.0227888732309140e-03, 2.0375731515810879e-03, 2.0379677383552670e-03, 1.9816938654960833e-03, 1.9804549814208842e-03, 1.9718765640160643e-03, 1.9798211840043696e-03, 1.9503779310249708e-03, 2.0070364453516989e-03, 1.7573949215246949e-03, 4.7617385624547259e-02, 5.0402511473758606e-02, 5.4402777348478676e-02, 5.9859192941428621e-02, 6.3949900856900901e-02, 6.7538720109797362e-02, 7.0607344320492274e-02, 7.3022194901345427e-02, 7.4157638855232355e-02, 7.4579449962084113e-02, 7.4625315421932473e-02, 7.4492947564983827e-02, 7.4050719948888316e-02, 7.3193492436136542e-02, 7.1647569281631601e-02, 6.9559307092995404e-02, 6.7212146324244756e-02, 6.4643278993212080e-02, 6.1619332239900959e-02, 5.8465381611757246e-02, 5.5247531268926973e-02, 5.1797138194362394e-02, 4.8191517819783390e-02, 4.4453130818895369e-02, 4.0641687946100791e-02, 3.6723196025153178e-02, 3.2695883164325118e-02, 2.8326779120278089e-02, 2.3857206792622005e-02, 1.9014398869753119e-02, 1.3882551680733617e-02, 8.7406553542897867e-03, 4.5850938186864677e-03, 2.2327149832805501e-03, -1.0735899459979636e-03, 2.5315389839554778e-04, 2.3782238487298965e-04, 1.1222603478124992e-04, -1.0493490368364832e-04, 4.7503025138358147e-05, 2.1650518414109623e-04, 1.9386064568110233e-04, 2.7154758016668533e-04, 3.6803816064890228e-04, 1.0961471201867104e-03, 1.7911906559614915e-03, 1.9025240380842283e-03, 1.8418358197472904e-03, 1.8124648055769801e-03, 1.7996146659472344e-03, 1.8045086195579562e-03, 1.7975875686403922e-03, 1.8054145028745222e-03, 1.7286169137242507e-03, 1.7397441650733824e-03, 5.2608107981922933e-02, 5.5999436174418056e-02, 6.0362848655236175e-02, 6.6083422973100520e-02, 7.0122555868523520e-02, 7.3305770763075401e-02, 7.5686174317334889e-02, 7.7205666320705024e-02, 7.7206521086194344e-02, 7.6618021407543063e-02, 7.5717407541262299e-02, 7.4619648420774329e-02, 7.3397168541695076e-02, 7.1918063566213830e-02, 6.9985601126165295e-02, 6.7465562308993074e-02, 6.4726450183033302e-02, 6.1881618423437514e-02, 5.8596530944066527e-02, 5.5193142264664291e-02, 5.1728077455486000e-02, 4.7997596365692473e-02, 4.4121350474521780e-02, 4.0117787292762698e-02, 3.6020308553738993e-02, 3.1789116681495241e-02, 2.7299298883047281e-02, 2.2477798903969642e-02, 1.7258041479753045e-02, 1.2331703009580310e-02, 6.8218780984747058e-03, 3.1993397379852652e-03, -2.8753170901208331e-04, -8.1617485270230386e-04, 3.5298781369430039e-04, -9.6347657522047176e-05, -1.1541290486870951e-04, -3.0972946643098044e-05, 7.6352896901556120e-05, 8.8898187686247296e-05, 3.4971085836255219e-05, 6.1318727531186714e-05, 9.9097787179706703e-05, 4.9007718013142096e-04, 1.0423675449409478e-03, 1.8659221765417776e-03, 1.9147682098499131e-03, 1.8858884038295864e-03, 1.8442486596359916e-03, 1.8405368982459965e-03, 1.8400418298830381e-03, 1.8446145658341786e-03, 1.8366587229818119e-03, 1.8525374252783258e-03, 1.8604748561122340e-03, 6.0730483811722191e-02, 6.3206456856778545e-02, 6.7459514279905278e-02, 7.2132675377848884e-02, 7.4786152946421755e-02, 7.6504652199477149e-02, 7.7508006453249179e-02, 7.7840560862007468e-02, 7.7180734039375282e-02, 7.6202601136484277e-02, 7.5038359087486378e-02, 7.3641403520523938e-02, 7.1998501284721017e-02, 7.0099399521957859e-02, 6.7809287146682107e-02, 6.5025669501687686e-02, 6.2021912441727840e-02, 5.8867035262550542e-02, 5.5428795163616304e-02, 5.1854714636072552e-02, 4.8156002081217550e-02, 4.4192706335117550e-02, 4.0091935219396156e-02, 3.5845965580703833e-02, 3.1417619789076832e-02, 2.6700718901403200e-02, 2.1778158068506158e-02, 1.6259721817597363e-02, 1.0871547610705508e-02, 5.2290018919169262e-03, 2.6837874709602491e-03, -5.5006912290169136e-04, -6.0505525668434070e-06, 2.5664380999077728e-04, -1.2757675171722418e-04, 8.1342465523520456e-05, 2.2795686855935153e-04, 1.1114862387857046e-04, 4.8283337307770452e-05, 4.0956682247553637e-05, 5.4429336928823278e-05, 3.5020309160267584e-05, 1.0727841984376183e-04, 4.3410128840586337e-04, 1.0938491273205144e-03, 1.8748139187070795e-03, 1.9565699084126359e-03, 1.9156232154687043e-03, 1.8821509967073822e-03, 1.8747840591061275e-03, 1.8777018090907439e-03, 1.8784602953050304e-03, 1.8835044640333053e-03, 1.8848613130378331e-03, 1.9091215740505271e-03, 6.7433386632592907e-02, 6.8579470460255490e-02, 7.2159419747161238e-02, 7.5223136867830553e-02, 7.6335483114856550e-02, 7.6645069406082025e-02, 7.6518236422572286e-02, 7.6070026801633092e-02, 7.5317681659827690e-02, 7.4425157374531647e-02, 7.3388495935441944e-02, 7.2025326195785541e-02, 7.0193404018271288e-02, 6.8026592016286136e-02, 6.5456943167811948e-02, 6.2512985198904428e-02, 5.9323349484447355e-02, 5.5874399957793752e-02, 5.2286912785770030e-02, 4.8537164155113929e-02, 4.4586588786099043e-02, 4.0401343026453942e-02, 3.6061568417785447e-02, 3.1578648616828402e-02, 2.6677135873875792e-02, 2.1486928474934580e-02, 1.5815799994412971e-02, 1.0380905613496628e-02, 4.8206184492747030e-03, 1.1625143398337901e-03, -9.7793331213542152e-04, 2.1895095060960900e-04, -1.5876888433094754e-05, -1.0078514601939612e-04, 5.6597641643485720e-05, 9.1406525868604777e-05, 3.2154184178854735e-05, 6.0132188788961101e-05, 5.7042545082310824e-05, 5.4502162264537833e-05, 4.0100905747345234e-05, 5.1482238181874003e-05, 1.0762167431252638e-04, 4.5165435323452123e-04, 1.0677799892103987e-03, 1.8689518923297810e-03, 1.9390712371529473e-03, 1.9051488880305299e-03, 1.8685043242487388e-03, 1.8629897858891903e-03, 1.8641229841945064e-03, 1.8666423037945463e-03, 1.8659162748897976e-03, 1.8695095934832091e-03, 1.8554842981294592e-03, 6.7852153823607111e-02, 6.8969667274845076e-02, 7.1403309586536359e-02, 7.3354573989914504e-02, 7.4027297062926434e-02, 7.4092460638636587e-02, 7.3918472862651144e-02, 7.3599121228103415e-02, 7.3174001210120396e-02, 7.2483390344990295e-02, 7.1511133906783306e-02, 7.0047054378388526e-02, 6.8035593427113572e-02, 6.5668900674530906e-02, 6.2951903865956629e-02, 5.9904801311744110e-02, 5.6600232675139438e-02, 5.2994106852845370e-02, 4.9234861134097314e-02, 4.5286536713750609e-02, 4.1101578574685931e-02, 3.6658286659455579e-02, 3.2051857416444209e-02, 2.7167849251654639e-02, 2.1841190782616347e-02, 1.5902670599198216e-02, 1.0078790056839730e-02, 4.5562734233897837e-03, 1.5278355173613421e-03, -1.0312805910202825e-03, 4.5981701670163346e-04, -1.1322154508007395e-04, 2.0636846363542930e-05, 1.4616578124022474e-04, 4.5473263417457514e-05, 4.4982249387994275e-05, 6.6578953171180275e-05, 5.3565258799131024e-05, 5.2235555627851275e-05, 5.7957067481872609e-05, 5.3364146054986525e-05, 5.9822864929258617e-05, 1.2143997309060813e-04, 4.4396636413411545e-04, 1.0684162314805467e-03, 1.8571341574240734e-03, 1.9323100264037002e-03, 1.8952900735088782e-03, 1.8601542538617215e-03, 1.8535746242126895e-03, 1.8553966348545147e-03, 1.8566063407040000e-03, 1.8578351242153522e-03, 1.8531193670475806e-03, 1.8540201734560616e-03, 6.4327931022366683e-02, 6.5400347771114503e-02, 6.7003706475805447e-02, 6.8590943095732201e-02, 6.9604334846362678e-02, 7.0247615311034017e-02, 7.0714842196772709e-02, 7.1002561821278537e-02, 7.0997251198168090e-02, 7.0459372424878083e-02, 6.9454391868376361e-02, 6.7823248349837939e-02, 6.5670294132336521e-02, 6.3192232528840195e-02, 6.0418572503402018e-02, 5.7298303768491876e-02, 5.3911273551561979e-02, 5.0213767584295715e-02, 4.6254550404295540e-02, 4.2089937210168467e-02, 3.7676434215433270e-02, 3.2969177538547056e-02, 2.7974499212380446e-02, 2.2674804381322192e-02, 1.6602957996214873e-02, 1.0687880412876142e-02, 4.5526493008899056e-03, 1.2996774725842378e-03, -1.0375998560417418e-03, 4.4972721583418464e-04, -1.7837285029271706e-04, 2.8723306088593784e-05, 8.8558515790808530e-05, 3.5316216826421833e-05, 6.1960287350163070e-05, 5.6375749824208144e-05, 4.9064341258267829e-05, 5.2282083161904363e-05, 5.2985331947205809e-05, 5.1256938627592228e-05, 4.4946538392146857e-05, 5.4350684319896301e-05, 1.1525064743559129e-04, 4.4809593293619653e-04, 1.0691285491356826e-03, 1.8628849482062713e-03, 1.9354864759300119e-03, 1.8998079382796125e-03, 1.8638614270931179e-03, 1.8577135403878109e-03, 1.8590950668967094e-03, 1.8609021708466871e-03, 1.8609874779088793e-03, 1.8617167553181071e-03, 1.8633624869058554e-03, 5.9240101154865721e-02, 6.0284120631743071e-02, 6.1897693623136650e-02, 6.3755559673071727e-02, 6.5148845767154781e-02, 6.6452183519357513e-02, 6.7535787434169950e-02, 6.8335417061156103e-02, 6.8558830835188947e-02, 6.8107951208761786e-02, 6.7100611634022977e-02, 6.5440174689407493e-02, 6.3279916078307089e-02, 6.0801876976136565e-02, 5.8003848557121263e-02, 5.4808481001274105e-02, 5.1321538573504022e-02, 4.7502482467257898e-02, 4.3314139849143236e-02, 3.8911459326689858e-02, 3.4281980751170504e-02, 2.9242330761128834e-02, 2.3834938242929198e-02, 1.7892379150351845e-02, 1.1504309516620933e-02, 5.4116131178702249e-03, 1.6611306668538662e-03, -1.0564967700785780e-03, 4.7439477755938949e-04, -1.8560134328914036e-04, 9.2304076720891117e-05, 7.7275731517352980e-05, 3.7310702334837884e-05, 6.5492285019406679e-05, 5.0908857052658994e-05, 6.2101044314414233e-05, 6.0403173065487205e-05, 5.5900036531728865e-05, 5.2383873835260000e-05, 5.0875733661935867e-05, 4.4857282116331179e-05, 5.1806974040954391e-05, 1.1404071512436092e-04, 4.4705737124639956e-04, 1.0718194562040052e-03, 1.8646309118401992e-03, 1.9384435956423883e-03, 1.9021794496978056e-03, 1.8665674723578659e-03, 1.8601976684363163e-03, 1.8617813971124764e-03, 1.8633532738907990e-03, 1.8641548602402350e-03, 1.8640862336733782e-03, 1.8661373194051752e-03, 5.3869908018851553e-02, 5.5202189078640336e-02, 5.7199271790378044e-02, 5.9547948211065890e-02, 6.1212620650411761e-02, 6.2951271299896763e-02, 6.4405863886966522e-02, 6.5504157292660029e-02, 6.5858819796913215e-02, 6.5508661770887433e-02, 6.4589040231995923e-02, 6.3034923334207626e-02, 6.0954453102996464e-02, 5.8514606893189734e-02, 5.5676900288258481e-02, 5.2388763895047902e-02, 4.8775934022611156e-02, 4.4799734234623828e-02, 4.0390356994087315e-02, 3.5762503871527920e-02, 3.0868920837969108e-02, 2.5451177368640266e-02, 1.9412451395211288e-02, 1.3107988521203252e-02, 6.4047125551153043e-03, 2.4277144654836990e-03, -1.1719916795828722e-03, 4.8106505342189991e-04, -1.8824885108503409e-04, 6.9743357688481305e-05, 6.1716090840334593e-05, 4.4206387023144479e-05, 6.3541432391100647e-05, 4.9246753211723301e-05, 5.4190250235131167e-05, 5.2818577752197085e-05, 5.2980109272843504e-05, 5.3098146681066204e-05, 5.2858942984552403e-05, 5.0809952379692709e-05, 4.4492223151656225e-05, 5.3444485900746510e-05, 1.1498499050107945e-04, 4.4732162438413005e-04, 1.0706143801644001e-03, 1.8638203745213492e-03, 1.9372157596978315e-03, 1.9011989867418785e-03, 1.8654384637755840e-03, 1.8591704205084018e-03, 1.8606685372695659e-03, 1.8623524098760329e-03, 1.8628342871268562e-03, 1.8627100501788999e-03, 1.8624387364861263e-03, 4.9535216669018015e-02, 5.0909474747443138e-02, 5.3097248680463602e-02, 5.5784131508176245e-02, 5.7683923956238774e-02, 5.9587635696861874e-02, 6.1191917035033162e-02, 6.2439250960782927e-02, 6.3002796162075020e-02, 6.2840183897736560e-02, 6.2097707941487564e-02, 6.0711878556626735e-02, 5.8712124288775702e-02, 5.6280439934833740e-02, 5.3361630237296370e-02, 4.9964447517922755e-02, 4.6215311176361136e-02, 4.2060432801489897e-02, 3.7481940410608337e-02, 3.2633820773139977e-02, 2.7429564184170308e-02, 2.1469484744920466e-02, 1.4918086546182568e-02, 8.0017617713880832e-03, 3.1186764868375038e-03, -2.9993625311767580e-04, 2.2215528083939444e-04, -1.0543075034140019e-04, 5.1631809981590914e-05, 6.7162090578179267e-05, 4.3049895849769042e-05, 6.2287058733047893e-05, 5.6154370615261812e-05, 5.7808543987413437e-05, 5.2221175851676625e-05, 5.2847029157410926e-05, 5.2889216250521960e-05, 5.2902975069293390e-05, 5.2696217883926692e-05, 5.1519124942597154e-05, 4.5261759796539621e-05, 5.3987459902299793e-05, 1.1564440401746347e-04, 4.4714010014632787e-04, 1.0703176398796290e-03, 1.8630472381919105e-03, 1.9365750969430784e-03, 1.9004380209809079e-03, 1.8647453943590492e-03, 1.8584321890776391e-03, 1.8599760676863682e-03, 1.8615939087620406e-03, 1.8621876888900441e-03, 1.8615970256823597e-03, 1.8622382966736910e-03, 4.5689250858039862e-02, 4.7131266881281476e-02, 4.9372017997089727e-02, 5.2296707926287121e-02, 5.4399446651398710e-02, 5.6280157315148911e-02, 5.7880752061464043e-02, 5.9197152626284305e-02, 6.0020524891930452e-02, 6.0114693744376557e-02, 5.9603064638966030e-02, 5.8394892253607784e-02, 5.6484583649617073e-02, 5.4068987968536590e-02, 5.1071604279080876e-02, 4.7558312618668358e-02, 4.3671666029380288e-02, 3.9345353731472563e-02, 3.4599277740205554e-02, 2.9483865033550313e-02, 2.3893231004640626e-02, 1.7341642447961374e-02, 1.0522182986007326e-02, 3.7097272391973151e-03, 6.8000829832140280e-04, -3.2010325574892905e-04, 5.4538525886331923e-05, -2.1956946681740131e-05, 7.6294825387762869e-05, 4.2137350058108341e-05, 6.2061017616971766e-05, 5.0299430946734333e-05, 5.4188500643247348e-05, 5.2415649834680809e-05, 5.2962236183745405e-05, 5.2580606987222849e-05, 5.2705665794397029e-05, 5.2888365570279146e-05, 5.2768762683947187e-05, 5.0937490127691990e-05, 4.4732506869614136e-05, 5.3603989261699130e-05, 1.1530015950766642e-04, 4.4725087758041340e-04, 1.0704631081353319e-03, 1.8633723418335201e-03, 1.9368173686121716e-03, 1.9007331031643130e-03, 1.8650095105683989e-03, 1.8587195612347431e-03, 1.8602417207748731e-03, 1.8618955496164072e-03, 1.8624329995137888e-03, 1.8621871633587388e-03, 1.8629718942048932e-03, 4.1820710713252614e-02, 4.3408319148066789e-02, 4.5806629497781998e-02, 4.8984839724223905e-02, 5.1265280095748392e-02, 5.3029840785177404e-02, 5.4559581136383768e-02, 5.5902335252985949e-02, 5.6957351046497039e-02, 5.7318120871804462e-02, 5.7054496255638111e-02, 5.6002535269667496e-02, 5.4219010991395110e-02, 5.1871941923359949e-02, 4.8842123003849582e-02, 4.5215987644257258e-02, 4.1188893319078719e-02, 3.6721909936433803e-02, 3.1733258490053533e-02, 2.6296094465095024e-02, 2.0174737746883321e-02, 1.3248278285213435e-02, 6.3711934227910702e-03, 1.2051093100398525e-03, -7.0566133215480464e-04, 2.3204181001824274e-04, -6.7998125956952966e-05, 7.3335474610858184e-05, 4.1334700677131422e-05, 6.4536289355067013e-05, 5.3725701107413782e-05, 5.4570151276219478e-05, 5.2405812854649961e-05, 5.2864055780351496e-05, 5.2604625561988149e-05, 5.3456343452463739e-05, 5.3285736040770368e-05, 5.3161016944513651e-05, 5.2733704676915627e-05, 5.0937054438822479e-05, 4.4702211648424406e-05, 5.3416653651992821e-05, 1.1516519666157029e-04, 4.4723543538056692e-04, 1.0706059809141705e-03, 1.8635270215511983e-03, 1.9370183899096304e-03, 1.9009161745788647e-03, 1.8652070420122166e-03, 1.8589070116175742e-03, 1.8604394015583334e-03, 1.8620803936152455e-03, 1.8626576750414938e-03, 1.8623815926303309e-03, 1.8631506579471285e-03, 3.8003675588820854e-02, 3.9726196421844981e-02, 4.2328325071556407e-02, 4.5737827757547339e-02, 4.8155475668268513e-02, 4.9880676233630773e-02, 5.1377999060753250e-02, 5.2734163977196290e-02, 5.3959965605582361e-02, 5.4553144566294530e-02, 5.4526161448268752e-02, 5.3629228290405652e-02, 5.1974286051094200e-02, 4.9702693739650236e-02, 4.6657197523395540e-02, 4.2927898389066597e-02, 3.8766281230420120e-02, 3.4131172646978833e-02, 2.8879162290248128e-02, 2.3001687804851203e-02, 1.6479760441764687e-02, 9.0481248084097448e-03, 3.4791767604902680e-03, -9.9184150436144370e-04, 3.7106098942591521e-04, -1.1884541938624630e-04, 5.7151133028968424e-05, 5.1153783001115839e-05, 5.6777383755638746e-05, 5.3096824912782689e-05, 5.3522990508956072e-05, 5.2629433779456549e-05, 5.2700381863606091e-05, 5.2661375655929062e-05, 5.2786417166233794e-05, 5.2757183026070316e-05, 5.2851041985704490e-05, 5.2958995261766532e-05, 5.2758092446430365e-05, 5.0920937356361225e-05, 4.4680845670066342e-05, 5.3533634680276993e-05, 1.1524903460382295e-04, 4.4723132734207096e-04, 1.0705414577592558e-03, 1.8634598967900344e-03, 1.9369406339088935e-03, 1.9008465810385147e-03, 1.8651317618483452e-03, 1.8588359471173727e-03, 1.8603635997823428e-03, 1.8620096129501455e-03, 1.8625685892270914e-03, 1.8622745412042972e-03, 1.8628960589343083e-03, 3.4354584802722597e-02, 3.6160554296162363e-02, 3.8937209414941852e-02, 4.2495683257078531e-02, 4.4978832963940334e-02, 4.6857274759042160e-02, 4.8418081754380733e-02, 4.9805320845713354e-02, 5.1132435778180170e-02, 5.1908487834101909e-02, 5.2095014538899476e-02, 5.1376929608937486e-02, 4.9813103181553249e-02, 4.7573642482101039e-02, 4.4490588103573141e-02, 4.0675000586900566e-02, 3.6377715709177430e-02, 3.1527765283519457e-02, 2.5956106406235507e-02, 1.9655624974620881e-02, 1.2647252803443294e-02, 5.4832503486942344e-03, 7.9484453384560309e-04, -1.9473480944564371e-04, 2.7755235275812997e-05, -1.1221457529240641e-05, 7.3166326139345996e-05, 4.7608918070587376e-05, 5.9822906241222755e-05, 5.2358065126158199e-05, 5.3024265607951824e-05, 5.2579340294811304e-05, 5.3203237286948396e-05, 5.2994175582765234e-05, 5.2750424505564315e-05, 5.2780666006076304e-05, 5.2817874880580212e-05, 5.2940320902928753e-05, 5.2746174681282540e-05, 5.0973102026311886e-05, 4.4734026672117730e-05, 5.3573135067942904e-05, 1.1529104972263709e-04, 4.4722851631593996e-04, 1.0705132936755263e-03, 1.8634106977488735e-03, 1.9368928664032792e-03, 1.9007944337088285e-03, 1.8650819715328650e-03, 1.8587840174983643e-03, 1.8603137832664935e-03, 1.8619560580725206e-03, 1.8625201117268421e-03, 1.8621985176105454e-03, 1.8628756896190951e-03, 3.0788491480175723e-02, 3.2678947724648168e-02, 3.5640989818266931e-02, 3.9328433709457752e-02, 4.1847247351092763e-02, 4.3882977444641619e-02, 4.5550808965360373e-02, 4.7010668068468819e-02, 4.8382811650447680e-02, 4.9315692277235236e-02, 4.9716840279937724e-02, 4.9183387150759872e-02, 4.7698151326939733e-02, 4.5475108734761113e-02, 4.2355989116405236e-02, 3.8455281725773942e-02, 3.4022285625060662e-02, 2.8928023796083054e-02, 2.2958751044745124e-02, 1.6129954715071768e-02, 8.6550834759552588e-03, 2.7071080177450148e-03, -8.6949131921294559e-04, 2.3280380311900304e-04, -7.1261240728675079e-05, 6.9693514045922079e-05, 4.5250582250993468e-05, 5.8617004223435232e-05, 5.2275962315226545e-05, 5.3207797875422213e-05, 5.2563010378932846e-05, 5.2756728262873334e-05, 5.2735884370131491e-05, 5.2780091702927274e-05, 5.2774285716758419e-05, 5.2754822728553027e-05, 5.2808455935614905e-05, 5.2938257745328390e-05, 5.2750198844194916e-05, 5.0930824849157566e-05, 4.4696769228170311e-05, 5.3545471142248692e-05, 1.1526872194257996e-04, 4.4723308883371930e-04, 1.0705270965934558e-03, 1.8634319396308512e-03, 1.9369114669714202e-03, 1.9008147841798903e-03, 1.8651010891667795e-03, 1.8588041456408914e-03, 1.8603328211751870e-03, 1.8619770974386603e-03, 1.8625384406072932e-03, 1.8622385084503500e-03, 1.8629307253119590e-03, 2.7214987955934637e-02, 2.9212492284657866e-02, 3.2419330923553334e-02, 3.6287761546394737e-02, 3.8871825237951206e-02, 4.0894091141848783e-02, 4.2656700543543001e-02, 4.4249542261346891e-02, 4.5626028086205611e-02, 4.6707540203828966e-02, 4.7330881348013547e-02, 4.6966268206405606e-02, 4.5582648176832989e-02, 4.3401566333960175e-02, 4.0270034155715013e-02, 3.6274314219303549e-02, 3.1685250219703052e-02, 2.6364763159915618e-02, 1.9883186561510401e-02, 1.2499376241910391e-02, 4.6532587018159053e-03, 6.2541933472598716e-04, -1.2669726388866490e-04, 3.4397427305476928e-05, -3.0278137199602228e-06, 6.5198591694882213e-05, 5.4488618440735557e-05, 5.4810864405356767e-05, 5.2707080237357003e-05, 5.3018812015082981e-05, 5.2867082973790389e-05, 5.2796598064444804e-05, 5.2768394112974074e-05, 5.2768712119231917e-05, 5.2753547721227281e-05, 5.2816381820984366e-05, 5.2846677342528096e-05, 5.2957450811188619e-05, 5.2747932388233117e-05, 5.0931030263162043e-05, 4.4694464421978511e-05, 5.3532191977547400e-05, 1.1525821728598020e-04, 4.4723332125605621e-04, 1.0705359879766045e-03, 1.8634438196531683e-03, 1.9369251898576671e-03, 1.9008280462705751e-03, 1.8651149026371111e-03, 1.8588175372043420e-03, 1.8603467374986031e-03, 1.8619904127511974e-03, 1.8625540136021892e-03, 1.8622534293089191e-03, 1.8629423614949297e-03, 2.3630642246556345e-02, 2.5748043123561208e-02, 2.9182415274958379e-02, 3.3268433010207238e-02, 3.5961125201497732e-02, 3.7970492524705766e-02, 3.9849539810440204e-02, 4.1609968368396963e-02, 4.2999542521044265e-02, 4.4175335829075006e-02, 4.4953508948345836e-02, 4.4753848488348298e-02, 4.3498829575943310e-02, 4.1379163387963679e-02, 3.8222619699366002e-02, 3.4109221979076926e-02, 2.9351475379143361e-02, 2.3722531173120152e-02, 1.6825263938363838e-02, 9.0556049991372348e-03, 1.7358628663038712e-03, -5.9683853620117518e-04, 1.5396631248263255e-04, -5.6779346267236455e-05, 6.9547289933492555e-05, 4.7648025991522785e-05, 5.6700728991044351e-05, 5.2723750521257464e-05, 5.2907401142596245e-05, 5.2636640472289416e-05, 5.2760620481824222e-05, 5.2761344160533072e-05, 5.2762862948316423e-05, 5.2759962832324633e-05, 5.2763434995071298e-05, 5.2764293206990607e-05, 5.2816157932941041e-05, 5.2942978717466564e-05, 5.2749711743014107e-05, 5.0929880929287301e-05, 4.4693007279308497e-05, 5.3540530251209300e-05, 1.1526452673011543e-04, 4.4723246015010583e-04, 1.0705318212053383e-03, 1.8634385672902528e-03, 1.9369197813279419e-03, 1.9008228559514542e-03, 1.8651095276808935e-03, 1.8588123392386611e-03, 1.8603413230645132e-03, 1.8619852294191554e-03, 1.8625478445696213e-03, 1.8622452793244505e-03, 1.8629246845760124e-03, 2.0052873382876063e-02, 2.2274625090535190e-02, 2.5876546694223203e-02, 3.0171922225834129e-02, 3.3026143287628193e-02, 3.5205237404993713e-02, 3.7265545441224728e-02, 3.9184821303877460e-02, 4.0634859256633016e-02, 4.1816722757538713e-02, 4.2624411206091686e-02, 4.2594288248961380e-02, 4.1474346999764267e-02, 3.9424949459052470e-02, 3.6186374935230615e-02, 3.1957366284416304e-02, 2.6952802451584622e-02, 2.0990628928372369e-02, 1.3605686424393438e-02, 6.4543809552081999e-03, -4.5594044403834265e-05, 4.9927432049852063e-05, -1.3623219485823970e-05, 1.7319890799002262e-05, 5.8518664840399366e-05, 5.4012912826779101e-05, 5.4517565159872596e-05, 5.2679181127670813e-05, 5.2967994696895844e-05, 5.2694278495752996e-05, 5.2765812411753932e-05, 5.2758046743519752e-05, 5.2799315383886867e-05, 5.2781110899871455e-05, 5.2759420432781926e-05, 5.2766321167487627e-05, 5.2813533482008729e-05, 5.2941740889181399e-05, 5.2748909085955416e-05, 5.0933649477882745e-05, 4.4696805450734565e-05, 5.3543390062162405e-05, 1.1526741806440266e-04, 4.4723245276737404e-04, 1.0705295838468647e-03, 1.8634351840014795e-03, 1.9369162485214553e-03, 1.9008191735299512e-03, 1.8651059214476184e-03, 1.8588086450717447e-03, 1.8603377286873137e-03, 1.8619814362768254e-03, 1.8625442656282144e-03, 1.8622400664488939e-03, 1.8629229598739598e-03, 1.6444299014758863e-02, 1.8812689747126937e-02, 2.2570048872566521e-02, 2.7103193413506498e-02, 3.0138345255189842e-02, 3.2601500407270688e-02, 3.4855223795559949e-02, 3.6884522659063002e-02, 3.8400240998225116e-02, 3.9572150548897692e-02, 4.0373313804331394e-02, 4.0465231950393227e-02, 3.9452251923694913e-02, 3.7465790755389784e-02, 3.4174930238512084e-02, 2.9796446491839254e-02, 2.4524873958197260e-02, 1.8075213857759575e-02, 1.0432117402210860e-02, 3.8707202865657557e-03, -2.6077804403231168e-04, 6.3128662680312164e-05, -2.8459918129432822e-05, 5.5719401154675463e-05, 5.2016485593647329e-05, 5.5461383633429911e-05, 5.2884832073259175e-05, 5.2858008187491485e-05, 5.2664344827243856e-05, 5.2759459559578259e-05, 5.2754905844412904e-05, 5.2767835202233211e-05, 5.2764140899099156e-05, 5.2764414752369525e-05, 5.2761218283702710e-05, 5.2764338611292642e-05, 5.2813024859925530e-05, 5.2941618214068723e-05, 5.2749202745395192e-05, 5.0930611218844257e-05, 4.4694135788875603e-05, 5.3541391042832482e-05, 1.1526585855862323e-04, 4.4723270280384246e-04, 1.0705306598889979e-03, 1.8634366495194734e-03, 1.9369176335276494e-03, 1.9008206161973786e-03, 1.8651073193175736e-03, 1.8588100864035653e-03, 1.8603391165677948e-03, 1.8619829333296396e-03, 1.8625456392235610e-03, 1.8622428295121435e-03, 1.8629270410138168e-03, 1.2876248122036920e-02, 1.5326759677370717e-02, 1.9378555420750378e-02, 2.4171903204155534e-02, 2.7380120550006753e-02, 3.0116250411609230e-02, 3.2509167802371300e-02, 3.4578842420240959e-02, 3.6131930612612773e-02, 3.7346451171858280e-02, 3.8200645697781685e-02, 3.8331479057278454e-02, 3.7376574272406891e-02, 3.5444752525357365e-02, 3.2185448397999999e-02, 2.7648611011933250e-02, 2.2021988438300871e-02, 1.5197803870814817e-02, 7.1522667375836547e-03, 1.6382485459320358e-03, -5.6504882011109477e-04, 1.5582745254012127e-04, -4.3383189652588530e-05, 7.4091541261184750e-05, 4.9173703109169253e-05, 5.5747355482662200e-05, 5.2543291706740355e-05, 5.2848147626159391e-05, 5.2688291972412774e-05, 5.2781801779690588e-05, 5.2775576686546337e-05, 5.2769301013936578e-05, 5.2765137156563464e-05, 5.2763359475384988e-05, 5.2759679163287100e-05, 5.2768866087193188e-05, 5.2815775879460453e-05, 5.2943005379174161e-05, 5.2749041460321063e-05, 5.0930624657343180e-05, 4.4693967091367607e-05, 5.3540441933625544e-05, 1.1526508782998363e-04, 4.4723275154276356e-04, 1.0705312674858926e-03, 1.8634375317656555e-03, 1.9369186035922039e-03, 1.9008215830571935e-03, 1.8651083064263644e-03, 1.8588110561307577e-03, 1.8603401111402622e-03, 1.8619839002959621e-03, 1.8625467317582552e-03, 1.8622439538834752e-03, 1.8629278126879945e-03, 9.3587214365224401e-03, 1.2065054360087825e-02, 1.6226562587134473e-02, 2.1340779730302142e-02, 2.4732062685539145e-02, 2.7653447319475871e-02, 3.0143563464002106e-02, 3.2267777856104858e-02, 3.3853435510542082e-02, 3.5128346769555827e-02, 3.6051845955633752e-02, 3.6202482663008906e-02, 3.5297426905627718e-02, 3.3417554107802047e-02, 3.0201279325358408e-02, 2.5467400811192979e-02, 1.9531476238454866e-02, 1.2306173719667307e-02, 4.6855912625121902e-03, -3.2209155888084638e-04, 1.2328178195647964e-04, -4.1560284413268492e-05, 4.2557541117190077e-05, 5.4770723135043693e-05, 5.4390178536568240e-05, 5.3460862563253211e-05, 5.2696599902952873e-05, 5.2737134146187356e-05, 5.2732828955216410e-05, 5.2763875628504806e-05, 5.2765360473757554e-05, 5.2765961757691506e-05, 5.2764041802506855e-05, 5.2762742797907066e-05, 5.2760439764399832e-05, 5.2765155364469107e-05, 5.2813598770335069e-05, 5.2941966826742899e-05, 5.2749166470385693e-05, 5.0930541020800570e-05, 4.4693862898143442e-05, 5.3541038695748843e-05, 1.1526554760332040e-04, 4.4723267825265005e-04, 1.0705309820014919e-03, 1.8634371441783721e-03, 1.9369182233728692e-03, 1.9008212055216006e-03, 1.8651079239747964e-03, 1.8588106799928559e-03, 1.8603397253595707e-03, 1.8619835227585474e-03, 1.8625463015521813e-03, 1.8622433406702459e-03, 1.8629265746231498e-03, 6.4141322510607585e-03, 8.9321228821969412e-03, 1.3220128254233411e-02, 1.8482646149513428e-02, 2.2170467615760046e-02, 2.5125601957230698e-02, 2.7738078728830655e-02, 3.0007297391148050e-02, 3.1652908126856283e-02, 3.2960139354450080e-02, 3.3905398256117596e-02, 3.4113082783765729e-02, 3.3282999434211660e-02, 3.1457483197822676e-02, 2.8187145827618460e-02, 2.3236550288755098e-02, 1.6981267018146944e-02, 9.5302434913135444e-03, 3.0510766057878112e-03, -6.0490864307457442e-04, 1.5628584577655696e-04, -5.2249101880281854e-05, 7.5807159947313519e-05, 4.7443663053774205e-05, 5.6447004942634860e-05, 5.2285603315219294e-05, 5.2934480915948928e-05, 5.2663189741896661e-05, 5.2786216264936785e-05, 5.2758884945181945e-05, 5.2767462997127282e-05, 5.2764038851598023e-05, 5.2766774824629373e-05, 5.2764220783568218e-05, 5.2760205380409914e-05, 5.2765310397459594e-05, 5.2813411560974805e-05, 5.2941875812292189e-05, 5.2749108195285392e-05, 5.0930811242631206e-05, 4.4694135294550299e-05, 5.3541244801507598e-05, 1.1526575273414978e-04, 4.4723268236196862e-04, 1.0705308160228592e-03, 1.8634369056156528e-03, 1.9369179661827892e-03, 1.9008209430719538e-03, 1.8651076630577218e-03, 1.8588104158757616e-03, 1.8603394650446238e-03, 1.8619832531586117e-03, 1.8625460362608774e-03, 1.8622429829827144e-03, 1.8629264315256002e-03, 3.5621865794431655e-03, 6.5984118917273701e-03, 1.0280824841520484e-02, 1.5693480505953435e-02, 1.9562920360964586e-02, 2.2623737140062928e-02, 2.5376337213146142e-02, 2.7824871100433027e-02, 2.9589006927442076e-02, 3.0920105557044619e-02, 3.1846560495130398e-02, 3.2109831455504272e-02, 3.1342445879596739e-02, 2.9542757506956861e-02, 2.6143750182106108e-02, 2.0922732612060561e-02, 1.4276216072204461e-02, 6.6608656778629370e-03, 1.8510195918972447e-03, -4.0160776468086182e-04, 1.0510749492450052e-04, -1.0886040530306735e-05, 6.9598085640890125e-05, 5.0275392945029910e-05, 5.4798662690386493e-05, 5.2368563572536421e-05, 5.2831430348099458e-05, 5.2706804631570120e-05, 5.2770201150462008e-05, 5.2763159107990573e-05, 5.2765602966968795e-05, 5.2764422579637439e-05, 5.2764231268321678e-05, 5.2763057609678756e-05, 5.2760354176267412e-05, 5.2765170709441294e-05, 5.2813374483528338e-05, 5.2941866010266923e-05, 5.2749128823902588e-05, 5.0930593050370980e-05, 4.4693943753570180e-05, 5.3541101008860592e-05, 1.1526564173025100e-04, 4.4723269845406524e-04, 1.0705308952937355e-03, 1.8634370088490952e-03, 1.9369180669041822e-03, 1.9008210454204177e-03, 1.8651077642046284e-03, 1.8588105181394522e-03, 1.8603395662262032e-03, 1.8619833577300981e-03, 1.8625461424868935e-03, 1.8622431655831093e-03, 1.8629267426555731e-03, 2.3514368911920786e-03, 4.1142661839193339e-03, 7.9487405360018464e-03, 1.2895832106606619e-02, 1.6905431728487692e-02, 2.0200318784988111e-02, 2.3147829850116756e-02, 2.5698741410456759e-02, 2.7659050794639595e-02, 2.9029639409889563e-02, 2.9933181341264808e-02, 3.0209069073738347e-02, 2.9453806196929232e-02, 2.7617830500819961e-02, 2.4093550625824151e-02, 1.8500081111279671e-02, 1.1527072700577639e-02, 3.6075719219049555e-03, 6.7213420362941575e-04, -1.8092014324151196e-04, 4.4213790690973049e-05, 4.0668901462938013e-05, 6.0168700567404412e-05, 5.3025112169161920e-05, 5.3280782018158215e-05, 5.2609023395609977e-05, 5.2763202836968741e-05, 5.2746844763419359e-05, 5.2766945676425314e-05, 5.2765912512062820e-05, 5.2765868343043954e-05, 5.2764577350369226e-05, 5.2764272656085465e-05, 5.2763021663991764e-05, 5.2760246546339310e-05, 5.2765497291993690e-05, 5.2813570544974977e-05, 5.2941965211560180e-05, 5.2749117148885596e-05, 5.0930594057515726e-05, 4.4693931629215668e-05, 5.3541032994143788e-05, 1.1526558602797810e-04, 4.4723270262555734e-04, 1.0705309380649364e-03, 1.8634370729343312e-03, 1.9369181358554084e-03, 1.9008211154740624e-03, 1.8651078342265149e-03, 1.8588105890860684e-03, 1.8603396352917904e-03, 1.8619834314280927e-03, 1.8625462093546793e-03, 1.8622432703839394e-03, 1.8629267706187444e-03, -3.2600115372295583e-04, 3.0859865393329518e-03, 5.3730983336219207e-03, 1.0391756033021010e-02, 1.4149086283142270e-02, 1.7847250517553721e-02, 2.0967709804752856e-02, 2.3603913700291759e-02, 2.5710603305254983e-02, 2.7157397662398653e-02, 2.8087404859481288e-02, 2.8352249167706050e-02, 2.7566267727520796e-02, 2.5682298385986502e-02, 2.1988718440689843e-02, 1.6147898358690720e-02, 8.8993291877930772e-03, 1.5631715987407054e-03, -5.6870816941074868e-04, 1.5609464409325748e-04, -3.6309431804258522e-05, 9.2414585476419096e-05, 4.8215035336777617e-05, 5.5845498475801548e-05, 5.1840464074166172e-05, 5.2892426980978014e-05, 5.2677811335715602e-05, 5.2783411851776132e-05, 5.2760725688035010e-05, 5.2766515905909175e-05, 5.2764035422020018e-05, 5.2764510505359196e-05, 5.2764162428050615e-05, 5.2763006547304409e-05, 5.2760299523281879e-05, 5.2765231293654152e-05, 5.2813413348528227e-05, 5.2941890560378954e-05, 5.2749126099288305e-05, 5.0930588083918384e-05, 4.4693924170699082e-05, 5.3541075806947689e-05, 1.1526561915318161e-04, 4.4723269713666810e-04, 1.0705309178453970e-03, 1.8634370448003430e-03, 1.9369181089640367e-03, 1.9008210877154144e-03, 1.8651078080108685e-03, 1.8588105597620974e-03, 1.8603396119994480e-03, 1.8619833961917060e-03, 1.8625462007591941e-03, 1.8622431800595456e-03, 1.8629267347091730e-03, 9.1350645308890468e-05, 4.1590821205380837e-04, 3.6719426365278062e-03, 7.8646966191331571e-03, 1.1539872465489803e-02, 1.5449910516954605e-02, 1.8789722849115877e-02, 2.1531083041494731e-02, 2.3662960009186822e-02, 2.5214240428104325e-02, 2.6255886816436633e-02, 2.6492685989032299e-02, 2.5683096291677501e-02, 2.3715593953941894e-02, 1.9897748242363442e-02, 1.3748399719187692e-02, 6.9876030525545278e-03, 4.2743832853209864e-04, -6.3993734944040883e-05, 2.6497473734547991e-06, 4.8138413352444557e-05, 8.3186770502814477e-05, 5.2580869559467686e-05, 5.3749691076648865e-05, 5.2025249165993696e-05, 5.2783768404967326e-05, 5.2728604532747199e-05, 5.2780245980791284e-05, 5.2764964989734962e-05, 5.2765302768973101e-05, 5.2764062626595551e-05, 5.2764356640703723e-05, 5.2764383170459932e-05, 5.2763118494429312e-05, 5.2760283519000503e-05, 5.2765241669758248e-05, 5.2813399619658759e-05, 5.2941883965096495e-05, 5.2749121942838293e-05, 5.0930607497204466e-05, 4.4693943732465019e-05, 5.3541090599345613e-05, 1.1526563389027601e-04, 4.4723269739734700e-04, 1.0705309059690620e-03, 1.8634370277325833e-03, 1.9369180901403300e-03, 1.9008210699044651e-03, 1.8651077869810267e-03, 1.8588105454536974e-03, 1.8603395843709665e-03, 1.8619833935622633e-03, 1.8625461358193149e-03, 1.8622432499497377e-03, 1.8629266149160237e-03, -2.3769360111293381e-05, -1.2652511744191350e-03, 2.1522749050061538e-03, 5.5566013857502152e-03, 9.1144240519332679e-03, 1.3078463353656079e-02, 1.6614393956855496e-02, 1.9554901653094890e-02, 2.1713260348362445e-02, 2.3354074007106946e-02, 2.4490003727703689e-02, 2.4705908468046888e-02, 2.3849154309144478e-02, 2.1787294003132847e-02, 1.7744140324907891e-02, 1.1389523776162742e-02, 5.0194197610703775e-03, 4.6942967316568264e-04, -1.2761300737156150e-04, 1.9809934077933832e-05, 9.4332069833077611e-05, 7.4068725359107722e-05, 5.5406158114280957e-05, 5.1827847765927490e-05, 5.2339409713165638e-05, 5.2668763021634304e-05, 5.2782444976376801e-05, 5.2772573021637771e-05, 5.2766996491915720e-05, 5.2764050379587931e-05, 5.2764146878292472e-05, 5.2764310665246707e-05, 5.2764239005291197e-05, 5.2763031735223576e-05, 5.2760295851373466e-05, 5.2765230657474593e-05, 5.2813396949217702e-05, 5.2941883223201539e-05, 5.2749123446801229e-05, 5.0930591841233237e-05, 4.4693929967835731e-05, 5.3541080323871775e-05, 1.1526562578644633e-04, 4.4723269889804099e-04, 1.0705309112436934e-03, 1.8634370354106244e-03, 1.9369180978042033e-03, 1.9008210753876089e-03, 1.8651077988396476e-03, 1.8588105432407844e-03, 1.8603396102113998e-03, 1.8619833661447217e-03, 1.8625462395280693e-03, 1.8622430625704126e-03, 1.8629268674248477e-03, 6.9095880844109798e-06, -7.4063965346394557e-04, 6.0912396975306479e-04, 3.5937946915799734e-03, 6.9028054906128018e-03, 1.0734371080522418e-02, 1.4398172429012287e-02, 1.7639542337432836e-02, 1.9936729299725363e-02, 2.1621266711033583e-02, 2.2751890023548018e-02, 2.2968192358214842e-02, 2.2045231284567583e-02, 1.9824393275868643e-02, 1.5551775877570140e-02, 8.8696807360748448e-03, 2.9973466449009678e-03, 2.2940430631783761e-04, -3.5056943960912601e-05, 5.8602449550069797e-05, 1.0411358270917113e-04, 7.6193134222308568e-05, 5.3300225022502193e-05, 5.1744904481105381e-05, 5.2194226294149959e-05, 5.2728600085381858e-05, 5.2784951200110385e-05, 5.2777398510279199e-05, 5.2765716224265450e-05, 5.2764019326631873e-05, 5.2764099193360751e-05, 5.2764346084001224e-05, 5.2764249515124686e-05, 5.2763031354739947e-05, 5.2760287559061852e-05, 5.2765253837316144e-05, 5.2813410946677197e-05, 5.2941890352068663e-05, 5.2749122622637582e-05, 5.0930591902376127e-05, 4.4693929141902944e-05, 5.3541075330718857e-05, 1.1526562223037745e-04, 4.4723269833425744e-04, 1.0705309156799942e-03, 1.8634370390692232e-03, 1.9369181023893419e-03, 1.9008210839472745e-03, 1.8651077946203328e-03, 1.8588105680834067e-03, 1.8603395764497730e-03, 1.8619834445812611e-03, 1.8625460425249392e-03, 1.8622434920417673e-03, 1.8629263839489377e-03, 2.7331214967874488e-07, 2.0192086287269419e-05, -2.1787077095657178e-04, 1.9061846087818327e-03, 4.7924713434149583e-03, 8.3017121854689936e-03, 1.1997546295253080e-02, 1.5447018199111697e-02, 1.7913110562711266e-02, 1.9635659583485114e-02, 2.0751966854619310e-02, 2.1003703320238817e-02, 2.0028850655385608e-02, 1.7638782871263654e-02, 1.3153516995650103e-02, 6.4753985929355082e-03, 1.3178822534362876e-03, -1.3138651150929336e-04, 4.9450817206175982e-05, 7.0287389808526915e-05, 1.2409060050508184e-04, 7.0869755821701316e-05, 5.3719170143855661e-05, 5.1037218881354460e-05, 5.2323577339432806e-05, 5.2716885879209671e-05, 5.2802329897231664e-05, 5.2775321219804379e-05, 5.2765863758743926e-05, 5.2763509402447588e-05, 5.2764049273006206e-05, 5.2764332808801634e-05, 5.2764254595856060e-05, 5.2763029153948301e-05, 5.2760291448775456e-05, 5.2765234448221437e-05, 5.2813399691107750e-05, 5.2941885027890790e-05, 5.2749123296027162e-05, 5.0930591543779877e-05, 4.4693928558340652e-05, 5.3541078743298274e-05, 1.1526562381084715e-04, 4.4723270036563570e-04, 1.0705309108111111e-03, 1.8634370401985508e-03, 1.9369181003984516e-03, 1.9008210756142293e-03, 1.8651078114489594e-03, 1.8588105253058637e-03, 1.8603396555145098e-03, 1.8619832889099081e-03, 1.8625464657690831e-03, 1.8622425972135725e-03, 1.8629274058832082e-03, 5.3251831562486276e-06, 2.6518215019901017e-04, -4.7525742258846724e-04, 7.6908620278350634e-04, 2.6784586084535114e-03, 5.9634080815459843e-03, 9.5108165758733751e-03, 1.2950393442033060e-02, 1.5504570211868435e-02, 1.7297694219991111e-02, 1.8477346642551008e-02, 1.8806923003462487e-02, 1.7816693675488562e-02, 1.5327483752132815e-02, 1.0610990918492762e-02, 4.6655947447623251e-03, 3.6579678787058658e-04, -7.9469364798056259e-05, 3.1850854943397837e-05, 1.2500464757788122e-04, 1.2001690419878705e-04, 7.2705626617073377e-05, 5.2057001107275445e-05, 5.1154730098971912e-05, 5.2266544563788164e-05, 5.2758663878183633e-05, 5.2801617488712911e-05, 5.2776735618158588e-05, 5.2765029222053055e-05, 5.2763458504906266e-05, 5.2764013483838556e-05, 5.2764347169229438e-05, 5.2764271254703952e-05, 5.2763038060229287e-05, 5.2760289689528926e-05, 5.2765235091371487e-05, 5.2813398649798093e-05, 5.2941884532601800e-05, 5.2749122998177181e-05, 5.0930592851058978e-05, 4.4693930169107835e-05, 5.3541079150005012e-05, 1.1526562661991397e-04, 4.4723269427552877e-04, 1.0705309188139387e-03, 1.8634370300456983e-03, 1.9369181015882512e-03, 1.9008210855770628e-03, 1.8651077726930807e-03, 1.8588106081386534e-03, 1.8603394856881021e-03, 1.8619836092225862e-03, 1.8625455715935563e-03, 1.8622444717330501e-03, 1.8629252354345550e-03, 1.3615158910612867e-04, 2.8058963459953150e-05, -9.8110807208620808e-06, 6.3269146264529710e-05, 1.3175644516926102e-03, 4.3737388547403742e-03, 7.8073855463542995e-03, 1.1127586337124523e-02, 1.3712021571862864e-02, 1.5564817401103798e-02, 1.6826784500024963e-02, 1.7228500014352863e-02, 1.6246540650133253e-02, 1.3700493823120817e-02, 8.8521069593147511e-03, 3.6471308481739778e-03, 1.2633055804409993e-04, -1.0095021373831257e-05, 5.3840499631806332e-05, 1.5835794535960953e-04, 1.1767981861732323e-04, 7.2981119018859436e-05, 5.1078927222048925e-05, 5.1223445446756758e-05, 5.2247203276143181e-05, 5.2786078059834149e-05, 5.2800338004488177e-05, 5.2777438682398959e-05, 5.2764222084951014e-05, 5.2763468641307235e-05, 5.2763986709954685e-05, 5.2764367567797710e-05, 5.2764259569053492e-05, 5.2763032747030161e-05, 5.2760290111290388e-05, 5.2765234409042301e-05, 5.2813398545223994e-05, 5.2941884621334905e-05, 5.2749123178609632e-05, 5.0930591998080198e-05, 4.4693928652373398e-05, 5.3541079244003538e-05, 1.1526562079694239e-04, 4.4723270683467997e-04, 1.0705308942748364e-03, 1.8634370532158574e-03, 1.9369180900049307e-03, 1.9008210668933984e-03, 1.8651078469112173e-03, 1.8588104358043239e-03, 1.8603398361545325e-03, 1.8619829378311160e-03, 1.8625474443899072e-03, 1.8622405269194185e-03, 1.8629298144775181e-03, 2.1309862210177325e-04, 7.3340824207033636e-05, -1.0443795465811051e-05, 3.0701045528532783e-05, 1.0457045817005644e-03, 4.0824154802626966e-03, 7.4801109291369478e-03, 1.0781265503998407e-02, 1.3362646178040269e-02, 1.5233068614453747e-02, 1.6518124345977329e-02, 1.6939880191718597e-02, 1.5960210175048971e-02, 1.3376150695173998e-02, 8.5238310517141650e-03, 3.4752843395803646e-03, 1.7220730456272770e-04, -9.2140022645489273e-06, 1.0185899328129094e-04, 1.5834604815672166e-04, 1.2070752129241481e-04, 7.0863054916419464e-05, 5.1169912870656959e-05, 5.1081949642904882e-05, 5.2308070134652163e-05, 5.2783804403273720e-05, 5.2804865074196540e-05, 5.2775914355633738e-05, 5.2764240680107766e-05, 5.2763343116302382e-05, 5.2764025612058032e-05, 5.2764367998507336e-05, 5.2764262262770615e-05, 5.2763030469914999e-05, 5.2760288173664757e-05, 5.2765234689573169e-05, 5.2813398283352808e-05, 5.2941883810319235e-05, 5.2749121866410984e-05, 5.0930590114169195e-05, 4.4693927909531391e-05, 5.3541075321773403e-05, 1.1526562339336738e-04, 4.4723267092396497e-04, 1.0705309516072189e-03, 1.8634369878532103e-03, 1.9369181258426875e-03, 1.9008210925261760e-03, 1.8651077012956272e-03, 1.8588107881339442e-03, 1.8603391102788552e-03, 1.8619843393351352e-03, 1.8625435238083853e-03, 1.8622488199928164e-03, 1.8629201614182593e-03, 2.0631554834897906e-04, 1.5540130697500070e-04, -7.3548853570355708e-05, 1.8062565059967316e-04, 1.3482555745856994e-03, 4.4107758850341220e-03, 7.8542201927243975e-03, 1.1182113353279460e-02, 1.3761909113086640e-02, 1.5622070676136010e-02, 1.6894169068627559e-02, 1.7304810322983703e-02, 1.6319661624211047e-02, 1.3720524471862703e-02, 8.8838969754267156e-03, 3.6926915878159640e-03, 2.5870337499224515e-04, 8.3424234956791757e-06, 1.0775161008810631e-04, 1.5934455154797446e-04, 1.1899630043441791e-04, 7.0421265556620959e-05, 5.0997215976883811e-05, 5.1111341487952925e-05, 5.2320859555520294e-05, 5.2790065847770651e-05, 5.2804505119429815e-05, 5.2775562733123854e-05, 5.2764047348413837e-05, 5.2763332272438076e-05, 5.2764031860738750e-05, 5.2764374715886051e-05, 5.2764264479214156e-05, 5.2763032033525398e-05, 5.2760290272188003e-05, 5.2765235274558171e-05, 5.2813399446429036e-05, 5.2941885390228812e-05, 5.2749123370382689e-05, 5.0930592276637560e-05, 4.4693926996285777e-05, 5.3541077446982442e-05, 1.1526562178472489e-04, 4.4723275384495867e-04, 1.0705308049568491e-03, 1.8634371561802442e-03, 1.9369180154716374e-03, 1.9008210661862794e-03, 1.8651079796402231e-03, 1.8588100684415179e-03, 1.8603406085388947e-03, 1.8619814186722494e-03, 1.8625517230520053e-03, 1.8622314068233268e-03, 1.8629405151884236e-03, 2.0023108075173081e-04, 1.6637180300153523e-04, -9.4905481594792013e-05, 2.5597941733080347e-04, 1.4778051290801984e-03, 4.5771415245807311e-03, 8.0358959013343487e-03, 1.1376758734670350e-02, 1.3956335130667815e-02, 1.5811197065465115e-02, 1.7076021243249900e-02, 1.7481595007189342e-02, 1.6493706659765465e-02, 1.3894162013420619e-02, 9.0451001645560115e-03, 3.7961768133754968e-03, 3.0198984045560465e-04, 8.9289173951627962e-06, 1.0835655372328037e-04, 1.5648571787669878e-04, 1.1829836527153153e-04, 7.0078427342618027e-05, 5.1011960411820978e-05, 5.1128531913433617e-05, 5.2333094836231291e-05, 5.2791735179802456e-05, 5.2804150553586584e-05, 5.2775224295525650e-05, 5.2763959163032619e-05, 5.2763331709799896e-05, 5.2764034988345464e-05, 5.2764372448274965e-05, 5.2764260292674565e-05, 5.2763027188090662e-05, 5.2760284870275646e-05, 5.2765230108222360e-05, 5.2813394059423375e-05, 5.2941879501117260e-05, 5.2749117733786979e-05, 5.0930584458407617e-05, 4.4693926442339863e-05, 5.3541091406693454e-05, 1.1526563397311098e-04, 4.4723261304716798e-04, 1.0705312141960775e-03, 1.8634367522833157e-03, 1.9369183442251943e-03, 1.9008210598114410e-03, 1.8651074579541776e-03, 1.8588115265197021e-03, 1.8603375151969473e-03, 1.8619874828233380e-03, 1.8625345925813966e-03, 1.8622679287181700e-03, 1.8628976058279948e-03, 1.9466549882315578e-04, 1.5444295409185237e-04, -8.7146698556321778e-05, 2.3537008427414223e-04, 1.4342510796700888e-03, 4.5322128876275451e-03, 7.9865983624649237e-03, 1.1320894651002861e-02, 1.3900978037067585e-02, 1.5756925056936603e-02, 1.7024176869062609e-02, 1.7432394489867092e-02, 1.6445769589980064e-02, 1.3848193860749983e-02, 8.9887113698740636e-03, 3.7694206789713218e-03, 2.9606095768049394e-04, 7.8987740063329522e-06, 1.0576453856615951e-04, 1.5561569172697510e-04, 1.1781546331450412e-04, 7.0081671362521046e-05, 5.1029109779258467e-05, 5.1148730598635910e-05, 5.2337486103714001e-05, 5.2792038171353223e-05, 5.2803736009684794e-05, 5.2775081476559530e-05, 5.2763984466304426e-05, 5.2763399895895020e-05, 5.2764100852580449e-05, 5.2764433419266539e-05, 5.2764318809236855e-05, 5.2763086086868539e-05, 5.2760344381791418e-05, 5.2765289333700208e-05, 5.2813452773309531e-05, 5.2941938173023792e-05, 5.2749175573307892e-05, 5.0930647241222059e-05, 4.4693989094793950e-05, 5.3541103948892796e-05, 1.1526589397098353e-04, 4.4723309064916927e-04, 1.0705303437382680e-03, 1.8634378938459778e-03, 1.9369175268645865e-03, 1.9008212847339563e-03, 1.8651084472300614e-03, 1.8588086132491255e-03, 1.8603438927163837e-03, 1.8619749113735560e-03, 1.8625702967677898e-03, 1.8621913805655145e-03, 1.8629880132574473e-03, 1.9537204632818155e-04, 1.4790308908609216e-04, -8.1921186502615561e-05, 2.1799590482966688e-04, 1.4038888095982247e-03, 4.4951320184327855e-03, 7.9451385380633621e-03, 1.1276332513874100e-02, 1.3855732183150086e-02, 1.5712651613441726e-02, 1.6981441605358197e-02, 1.7391150348523367e-02, 1.6405787944745343e-02, 1.3808638847571067e-02, 8.9518523149521596e-03, 3.7459022404196943e-03, 2.8600804034936852e-04, 6.5930276491204159e-06, 1.0464028127439970e-04, 1.5544220270695676e-04, 1.1776860112114971e-04, 7.0133575550177952e-05, 5.1048568120548845e-05, 5.1158443691040465e-05, 5.2337864428565319e-05, 5.2791642851391819e-05, 5.2803256851966863e-05, 5.2774911782523750e-05, 5.2763883362294069e-05, 5.2763314506730388e-05, 5.2764008583700968e-05, 5.2764338017969712e-05, 5.2764222685227840e-05, 5.2762990003139249e-05, 5.2760248043990536e-05, 5.2765192404920691e-05, 5.2813354879746626e-05, 5.2941839145751638e-05, 5.2749081673905024e-05, 5.0930563195696204e-05, 4.4693909529584894e-05, 5.3541282489353017e-05, 1.1526518591392340e-04, 4.4723217779127480e-04, 1.0705326609380516e-03, 1.8634351117689134e-03, 1.9369197647807381e-03, 1.9008204501638740e-03, 1.8651067429387752e-03, 1.8588145188517396e-03, 1.8603308976940019e-03, 1.8620009775472681e-03, 1.8624960205930882e-03, 1.8623515723028470e-03, 1.8627975040808968e-03, 1.9628456441416785e-04, 1.5013939056360550e-04, -8.3898729380565523e-05, 2.2089610092934463e-04, 1.4137223379101472e-03, 4.5038708916654560e-03, 7.9549962660120481e-03, 1.1287317970490216e-02, 1.3866444321218745e-02, 1.5722898196163373e-02, 1.6991037618115885e-02, 1.7400187795763900e-02, 1.6414860371094148e-02, 1.3817735038463338e-02, 8.9642366296498500e-03, 3.7509258553851594e-03, 2.8542346346133635e-04, 6.3037318996790706e-06, 1.0453103182820601e-04, 1.5548764093818094e-04, 1.1783607579632478e-04, 7.0163111694987676e-05, 5.1059851567874945e-05, 5.1159827105919700e-05, 5.2337756431267826e-05, 5.2791413824268462e-05, 5.2803384064690332e-05, 5.2775168163011750e-05, 5.2764171952212768e-05, 5.2763597688793311e-05, 5.2764287252769400e-05, 5.2764615443031443e-05, 5.2764500067409497e-05, 5.2763267103777121e-05, 5.2760524055670146e-05, 5.2765466478416435e-05, 5.2813628578728365e-05, 5.2942122416501173e-05, 5.2749383987956509e-05, 5.0930873113348990e-05, 4.4694271338535770e-05, 5.3540517919883330e-05, 1.1526707125953422e-04, 4.4723316973362543e-04, 1.0705261678579589e-03, 1.8634416214446229e-03, 1.9369136438738867e-03, 1.9008229841337579e-03, 1.8651094999164487e-03, 1.8588028237882246e-03, 1.8603576012097272e-03, 1.8619473851588144e-03, 1.8626503252349956e-03, 1.8620168924328555e-03, 1.8631987785806376e-03, 1.9625115107014884e-04, 1.5156254139121135e-04, -8.5130119594981372e-05, 2.2463421146762973e-04, 1.4201123626850966e-03, 4.5118319264165502e-03, 7.9636968535816612e-03, 1.1296723910432523e-02, 1.3875972006098029e-02, 1.5732157531493630e-02, 1.6999928196910024e-02, 1.7408721287572686e-02, 1.6423180794006877e-02, 1.3826186734757866e-02, 8.9722180088903404e-03, 3.7558479910672288e-03, 2.8707806557569854e-04, 6.4169919645957697e-06, 1.0471048303137356e-04, 1.5552006638919297e-04, 1.1787708166468982e-04, 7.0166555429418826e-05, 5.1059514837784343e-05, 5.1155950773334284e-05, 5.2334515740002731e-05, 5.2788539776472749e-05, 5.2800777556973909e-05, 5.2772604941861099e-05, 5.2761608556632589e-05, 5.2761024070279378e-05, 5.2761710552233241e-05, 5.2762038227833436e-05, 5.2761922769552988e-05, 5.2760688509558133e-05, 5.2757942881146271e-05, 5.2762884853908265e-05, 5.2811055013295195e-05, 5.2939567985073466e-05, 5.2746847439457793e-05, 5.0928490818046970e-05, 4.4691496586062834e-05, 5.3540751024712281e-05, 1.1525468869921089e-04, 4.4722711986667352e-04, 1.0705389659023221e-03, 1.8634233088402291e-03, 1.9369282480450670e-03, 1.9008146146979237e-03, 1.8651047547292620e-03, 1.8588254223509014e-03, 1.8603031471337273e-03, 1.8620577716116223e-03, 1.8623311534076996e-03, 1.8627153298827383e-03, 1.8623542610319605e-03, 1.9611550732548272e-04, 1.5107566516646786e-04, -8.4570005158461845e-05, 2.2371275756758645e-04, 1.4170926744066731e-03, 4.5091145659180085e-03, 7.9604844286351832e-03, 1.1293327064522529e-02, 1.3872559294719138e-02, 1.5728974842161774e-02, 1.6996868186409955e-02, 1.7405864280444883e-02, 1.6420305479934613e-02, 1.3823252779814960e-02, 8.9686462820687401e-03, 3.7539938323407282e-03, 2.8731330395008524e-04, 6.3926402253905399e-06, 1.0481010087430904e-04, 1.5555601057755137e-04, 1.1790083948938788e-04, 7.0173898757218720e-05, 5.1061375485392105e-05, 5.1158680118191800e-05, 5.2338069327497945e-05, 5.2792656989905416e-05, 5.2805060386584757e-05, 5.2776921608626875e-05, 5.2765910945846296e-05, 5.2765317255649364e-05, 5.2766000670176624e-05, 5.2766328110932300e-05, 5.2766211551856188e-05, 5.2764974043510154e-05, 5.2762226293800546e-05, 5.2767177570961114e-05, 5.2815390070647042e-05, 5.2943983257378185e-05, 5.2751380355121670e-05, 5.0932310464500225e-05, 4.4696215259885465e-05, 5.3534698339883051e-05, 1.1528346749835803e-04, 4.4723339564110137e-04, 1.0705018220245807e-03, 1.8634671681241107e-03, 1.9368908582460822e-03, 1.9008375554042222e-03, 1.8651093328970472e-03, 1.8587792478137054e-03, 1.8604118190256322e-03, 1.8618308240938703e-03, 1.8629898541439904e-03, 1.8612625682059157e-03, 1.8641322272451215e-03, 1.9610707531240366e-04, 1.5058303615274850e-04, -8.4067805266670301e-05, 2.2253933029472327e-04, 1.4157128282870698e-03, 4.5067593056803525e-03, 7.9584800031851245e-03, 1.1290755614007731e-02, 1.3870284400722965e-02, 1.5726576390553602e-02, 1.6994758154556786e-02, 1.7403718618363873e-02, 1.6418238653312097e-02, 1.3821252798971411e-02, 8.9662603993714701e-03, 3.7532717416709585e-03, 2.8626606446908130e-04, 6.6789975678500104e-06, 1.0467277193721873e-04, 1.5558959024970838e-04, 1.1787730092738426e-04, 7.0172369458947951e-05, 5.1053107050268051e-05, 5.1146166710383875e-05, 5.2324228223123846e-05, 5.2779136233167973e-05, 5.2791869346012627e-05, 5.2763826031508889e-05, 5.2752819008624882e-05, 5.2752212048235293e-05, 5.2752889633130895e-05, 5.2753215396933892e-05, 5.2753095901527958e-05, 5.2751855567218394e-05, 5.2749118450079395e-05, 5.2754124185948719e-05, 5.2802437237716438e-05, 5.2931065886866348e-05, 5.2737805954207534e-05, 5.0919566820754495e-05, 4.4678384860871587e-05, 5.3551166603920285e-05, 1.1520149231418367e-04, 4.4723416472041853e-04, 1.0706051904259364e-03, 1.8633673473945165e-03, 1.9369946467446752e-03, 1.9007816585855247e-03, 1.8651092052186491e-03, 1.8588640388256918e-03, 1.8601868669473063e-03, 1.8622897626809499e-03, 1.8616349791235659e-03, 1.8642765051889094e-03, 1.8603976150981395e-03, 1.9624322970958357e-04, 1.5121509639586444e-04, -8.4721907411234820e-05, 2.2355749813669806e-04, 1.4158595464564010e-03, 4.5083739142886348e-03, 7.9588537805281925e-03, 1.1292225407059965e-02, 1.3871099733433784e-02, 1.5727927902791747e-02, 1.6995682992643930e-02, 1.7404883348270551e-02, 1.6419153731365977e-02, 1.3821838073186758e-02, 8.9680842033749639e-03, 3.7525706655277178e-03, 2.8802195232347123e-04, 5.9208135099351827e-06, 1.0502135100411906e-04, 1.5564162894928941e-04, 1.1812720785273671e-04, 7.0320907287401463e-05, 5.1166818287595348e-05, 5.1251584864584600e-05, 5.2428122420170443e-05, 5.2882854872602638e-05, 5.2895746564733219e-05, 5.2867909431307287e-05, 5.2856927645051340e-05, 5.2856309595311420e-05, 5.2856975105361097e-05, 5.2857295823136697e-05, 5.2857172509930534e-05, 5.2855936014257674e-05, 5.2853244613128293e-05, 5.2858382413562094e-05, 5.2906925420373678e-05, 5.3035421722203006e-05, 5.2842095083087176e-05, 5.1013809138885845e-05, 4.4781861610246038e-05, 5.3569359972599507e-05, 1.1558363770647684e-04, 4.4732803042613609e-04, 1.0704106764419445e-03, 1.8636478789978816e-03, 1.9367526162861965e-03, 1.9009539390940065e-03, 1.8651052474931225e-03, 1.8587049664626550e-03, 1.8606288187216404e-03, 1.8613481310944448e-03, 1.8644011478630813e-03, 1.8580504260927327e-03, 1.8682311716762099e-03, 1.9577367064361253e-04, 1.5007320059376425e-04, -8.3715583851212528e-05, 2.2246846088224472e-04, 1.4186558008384953e-03, 4.5073914144638039e-03, 7.9608868930535343e-03, 1.1291872153452467e-02, 1.3872469086173997e-02, 1.5728227687356950e-02, 1.6996882884507840e-02, 1.7404975578750835e-02, 1.6419505821311093e-02, 1.3822675591997614e-02, 8.9671678852767805e-03, 3.7565972788827884e-03, 2.8463684611570685e-04, 8.0314789168827407e-06, 1.0407067294076454e-04, 1.5550485183893323e-04, 1.1760734069329081e-04, 7.0159994299975041e-05, 5.1039120245453477e-05, 5.1112998018413227e-05, 5.2269300480828408e-05, 5.2720211724489208e-05, 5.2733388089249117e-05, 5.2706082235617194e-05, 5.2695286288027142e-05, 5.2694650275828783e-05, 5.2695289052735797e-05, 5.2695596242445949e-05, 5.2695471274043034e-05, 5.2694270028503058e-05, 5.2691719540277961e-05, 5.2697103050948600e-05, 5.2745335032541217e-05, 5.2872436432448399e-05, 5.2671382557614545e-05, 5.0861660286712825e-05, 4.4592293840664463e-05, 5.3643868330416462e-05, 1.1483042652833558e-04, 4.4734912830160262e-04, 1.0710440390515258e-03, 1.8629156405211992e-03, 1.9373208288020870e-03, 1.9005332288359101e-03, 1.8652294811978146e-03, 1.8590467052944928e-03, 1.8597561933999692e-03, 1.8632376676476648e-03, 1.8587814055436274e-03, 1.8708264804527571e-03, 1.8518746940862792e-03, 1.9703743469857743e-04, 1.5391516727099073e-04, -8.6928981693821535e-05, 2.2749185499742057e-04, 1.4147299679886888e-03, 4.5120985619730245e-03, 7.9568901218600822e-03, 1.1293037822380385e-02, 1.3870045653160622e-02, 1.5728901156734997e-02, 1.6995055064417935e-02, 1.7404440035685361e-02, 1.6416376840201523e-02, 1.3819403999342351e-02, 8.9700360618342866e-03, 3.7510308377225196e-03, 2.9736470622287488e-04, 3.7232577762038628e-06, 1.0628507818845596e-04, 1.5447672036298009e-04, 1.1820929704809061e-04, 7.0460193717259356e-05, 5.1505454366100722e-05, 5.1598115485828118e-05, 5.2764155482800590e-05, 5.3205740825419730e-05, 5.3217368626375602e-05, 5.3190734524828457e-05, 5.3180310272645842e-05, 5.3179745548062367e-05, 5.3180346756555147e-05, 5.3180633885761917e-05, 5.3180516104464865e-05, 5.3179395293292125e-05, 5.3177035080441952e-05, 5.3182352591529636e-05, 5.3229714583286845e-05, 5.3350810631864330e-05, 5.3156018604730052e-05, 5.1292304931319354e-05, 4.5172619075345661e-05, 5.3556875587384186e-05, 1.1707535465051319e-04, 4.4755039417781307e-04, 1.0693216134612677e-03, 1.8642905554100623e-03, 1.9354142541229420e-03, 1.9015407985447656e-03, 1.8650452422018199e-03, 1.8586247707123862e-03, 1.8615671278678623e-03, 1.8594707142496176e-03, 1.8700877875612695e-03, 1.8448926003095047e-03, 1.8857642269393758e-03, 1.9188804163353923e-04, 1.4306946401739683e-04, -8.1205287607640346e-05, 2.1685633001839195e-04, 1.4266739172027357e-03, 4.5018813439188761e-03, 7.9652001319269264e-03, 1.1287016283397013e-02, 1.3872420799327944e-02, 1.5724579928094805e-02, 1.6995564088640176e-02, 1.7398101046751331e-02, 1.6415568300793847e-02, 1.3819441733730621e-02, 8.9639373418017500e-03, 3.7669314883747615e-03, 2.7447238816255521e-04, 1.5149150089701472e-05, 9.9721476653303880e-05, 1.5090306163229064e-04, 1.1067868235150748e-04, 6.5952820793956275e-05, 4.7902349142068158e-05, 4.8153588035569319e-05, 4.9206320033902837e-05, 4.9622607426933317e-05, 4.9631707088836125e-05, 4.9608427746471879e-05, 4.9599336753756286e-05, 4.9598921660961718e-05, 4.9599447690851822e-05, 4.9599690391576696e-05, 4.9599591490273580e-05, 4.9598676543681986e-05, 4.9596564296812746e-05, 4.9601614757236363e-05, 4.9640676165722513e-05, 4.9751539003275205e-05, 4.9514879252767139e-05, 4.7898452774396719e-05, 4.1730155139124382e-05, 5.1709058978545723e-05, 1.0879258207222810e-04, 4.4546838873662961e-04, 1.0727548824916991e-03, 1.8596343455541502e-03, 1.9391675641376208e-03, 1.8982773194423520e-03, 1.8658599054137196e-03, 1.8597745517944251e-03, 1.8583289245480130e-03, 1.8669743264165906e-03, 1.8476561370842283e-03, 1.8967543650224056e-03, 1.8166886857155877e-03, 2.1742067349690160e-04, 1.6711142629718048e-04, -9.9301176013844061e-05, 2.4275836154964676e-04, 1.3788147168192313e-03, 4.5360467165383774e-03, 7.9447730645893291e-03, 1.1309546741329932e-02, 1.3862732594325423e-02, 1.5730395536483793e-02, 1.6982811153783684e-02, 1.7407751056816009e-02, 1.6409785310140017e-02, 1.3837190761710631e-02, 8.9848564926752542e-03, 3.7106164973131645e-03, 3.2005689915016354e-04, -1.1762862343107751e-05, 1.2387637068527800e-04, 1.5162318296586892e-04, 1.1924726511060740e-04, 6.9735149215390527e-05, 5.2513789151763810e-05, 5.2505081597446159e-05, 5.3829208190670530e-05, 5.4184664316397866e-05, 5.4197338333152025e-05, 5.4171798720878560e-05, 5.4165014712169201e-05, 5.4164855184991539e-05, 5.4165424947554312e-05, 5.4165600563286975e-05, 5.4165603674824010e-05, 5.4164653923223112e-05, 5.4163290890551748e-05, 5.4163537426693889e-05, 5.4205904862127338e-05, 5.4266083895239136e-05, 5.4170698302366375e-05, 5.2044797351721106e-05, 4.7533599990288261e-05, 5.3279645985170171e-05, 1.2355694582788041e-04, 4.4439349044291025e-04, 1.0566345089074332e-03, 1.8807181402187105e-03, 1.9259865025535797e-03, 1.9053506673771879e-03, 1.8614146664119274e-03, 1.8580889611362872e-03, 1.8671653089793465e-03, 1.8478428853693368e-03, 1.9048999582283563e-03, 1.7627304172439801e-03, 1.9982757146222289e-03, 1.3808548940662225e-04, 1.1889197488242184e-04, -1.3567593910239986e-06, 1.0570149155238674e-04, 1.3811013124063059e-03, 4.4131643786810022e-03, 8.0698133157557621e-03, 1.1304822143497407e-02, 1.3916550061472552e-02, 1.5679469050270182e-02, 1.6998024518489582e-02, 1.7379199925778032e-02, 1.6534144336195992e-02, 1.3975520200079194e-02, 9.0386974994914396e-03, 3.6269101933658547e-03, -5.0560803478998216e-05, 7.6819181082594934e-05, 1.6404575298761636e-04, 1.8020044480094417e-04, 1.0204299851629968e-04, 5.8403540211684606e-05, 4.0774896755148416e-05, 4.2594018045917048e-05, 4.3257441755387427e-05, 4.3498483806038684e-05, 4.3440476284975202e-05, 4.3423123494165219e-05, 4.3418464069983149e-05, 4.3419511600935483e-05, 4.3419911970858801e-05, 4.3420077745129563e-05, 4.3419989113551608e-05, 4.3419966908692983e-05, 4.3416395620321394e-05, 4.3420305121574092e-05, 4.3419548113501281e-05, 4.3597251996345750e-05, 4.3395814012748863e-05, 4.3601637981375463e-05, 3.6805589906743039e-05, 5.5506970632529267e-05, 7.8082982079777136e-05, 3.9547712965752970e-04, 1.1007128604764817e-03, 1.8820906361242803e-03, 1.9869342085540205e-03, 1.8559641234666209e-03, 1.8670084980000120e-03, 1.8592493260250682e-03, 1.8476353205674721e-03, 1.8951862240662260e-03, 1.7641968394625774e-03, 2.0824381648996940e-03, 1.5588916170893128e-03, 6.9587131646531070e-04, 2.6326630672536755e-04, -2.4933992602606605e-05, 4.1623822535381279e-04, 6.8103339204867125e-04, 4.8736123319618229e-03, 7.8361209751231491e-03, 1.1529210160859891e-02, 1.3864069894643637e-02, 1.5668359181618338e-02, 1.6895052633848478e-02, 1.7548942494628603e-02, 1.6294333874716314e-02, 1.4505991099787584e-02, 9.0051153825949377e-03, 3.5072316073699759e-03, -5.6739795462399680e-04, 4.8661510935222668e-04, 2.3689225387805310e-04, 2.7321810728572505e-04, 1.9539659214778556e-04, 1.5584424506735081e-04, 1.3533083854941030e-04, 1.3900988180806534e-04, 1.3924655062716177e-04, 1.3937053162467987e-04, 1.3929820502113822e-04, 1.3928477260582422e-04, 1.3928258219787383e-04, 1.3928392579334642e-04, 1.3928423606520939e-04, 1.3928433385494742e-04, 1.3928432378418839e-04, 1.3928438010658549e-04, 1.3928165757548931e-04, 1.3928145430925948e-04, 1.3927801542673482e-04, 1.3941672548600640e-04, 1.3941032950292963e-04, 1.4008195470501845e-04, 1.3371982406971183e-04, 1.5494609264068423e-04, 1.8600506633100595e-04, 4.3145516751200272e-04, 8.4315012019652621e-04, 2.2826371041625962e-03, 1.7704628202846915e-03, 1.9217844160657224e-03, 1.8316369379314970e-03, 1.8616806018752939e-03, 1.8794531227876192e-03, 1.8196718222934500e-03, 1.9956284473911742e-03, 1.5607165638406521e-03, 2.2535623208596572e-03}; static const casadi_real casadi_c1[131] = {-5.6818181818181817e+00, -5.6818181818181817e+00, -5.6818181818181817e+00, -5.6818181818181817e+00, -4.3181818181818183e+00, -3.6363636363636367e+00, -2.9545454545454550e+00, -2.2727272727272734e+00, -1.5909090909090917e+00, -9.0909090909091006e-01, -2.2727272727272840e-01, 4.5454545454545325e-01, 1.1363636363636349e+00, 1.8181818181818166e+00, 2.4999999999999982e+00, 3.1818181818181799e+00, 3.8636363636363615e+00, 4.5454545454545432e+00, 5.2272727272727249e+00, 5.9090909090909065e+00, 6.5909090909090882e+00, 7.2727272727272698e+00, 7.9545454545454515e+00, 8.6363636363636331e+00, 9.3181818181818148e+00, 9.9999999999999964e+00, 1.0681818181818178e+01, 1.1363636363636358e+01, 1.2045454545454541e+01, 1.2727272727272727e+01, 1.3409090909090910e+01, 1.4090909090909093e+01, 1.4772727272727273e+01, 1.5454545454545455e+01, 1.6136363636363637e+01, 1.6818181818181820e+01, 1.7500000000000000e+01, 1.8181818181818180e+01, 1.8863636363636363e+01, 1.9545454545454547e+01, 2.0227272727272727e+01, 2.0909090909090907e+01, 2.1590909090909090e+01, 2.2272727272727273e+01, 2.2954545454545453e+01, 2.3636363636363633e+01, 2.4318181818181817e+01, 25., 2.5681818181818180e+01, 2.6363636363636360e+01, 2.7045454545454543e+01, 2.7727272727272727e+01, 2.8409090909090907e+01, 2.9090909090909086e+01, 2.9772727272727270e+01, 3.1136363636363633e+01, 3.1136363636363633e+01, 3.1136363636363633e+01, 3.1136363636363633e+01, -2.3747727272727275e+00, -2.3747727272727275e+00, -2.3747727272727275e+00, -2.3747727272727275e+00, -1.6934090909090913e+00, -1.3527272727272732e+00, -1.0120454545454551e+00, -6.7136363636363705e-01, -3.3068181818181897e-01, 9.9999999999988987e-03, 3.5068181818181721e-01, 6.9136363636363551e-01, 1.0320454545454534e+00, 1.3727272727272712e+00, 1.7134090909090895e+00, 2.0540909090909079e+00, 2.3947727272727253e+00, 2.7354545454545436e+00, 3.0761363636363619e+00, 3.4168181818181802e+00, 3.7574999999999985e+00, 4.0981818181818159e+00, 4.4388636363636342e+00, 4.7795454545454525e+00, 5.1202272727272700e+00, 5.4609090909090883e+00, 5.8015909090909066e+00, 6.1422727272727240e+00, 6.4829545454545432e+00, 6.8236363636363606e+00, 7.1643181818181780e+00, 7.5049999999999972e+00, 7.8456818181818146e+00, 8.1863636363636338e+00, 8.5270454545454513e+00, 8.8677272727272687e+00, 9.2084090909090932e+00, 9.5490909090909106e+00, 9.8897727272727280e+00, 1.0230454545454547e+01, 1.0571136363636365e+01, 1.0911818181818184e+01, 1.1252500000000001e+01, 1.1593181818181819e+01, 1.1933863636363638e+01, 1.2274545454545455e+01, 1.2615227272727275e+01, 1.2955909090909092e+01, 1.3296590909090909e+01, 1.3637272727272727e+01, 1.3977954545454546e+01, 1.4318636363636363e+01, 1.4659318181818183e+01, 15., 1.5340681818181817e+01, 1.5681363636363637e+01, 1.6022045454545456e+01, 1.6362727272727273e+01, 1.6703409090909091e+01, 1.7044090909090908e+01, 1.7384772727272725e+01, 1.7725454545454546e+01, 1.8066136363636364e+01, 1.8406818181818181e+01, 1.8747499999999999e+01, 1.9088181818181816e+01, 1.9428863636363634e+01, 1.9769545454545455e+01, 2.0450909090909089e+01, 2.0450909090909089e+01, 2.0450909090909089e+01, 2.0450909090909089e+01}; static const casadi_real casadi_c2[3672] = {-1.6015698992211127e-03, 1.5225126570032692e-03, 3.1881364314773628e-04, 7.4938738023164891e-04, 5.3611126356840118e-04, 6.4058240028473483e-04, 5.9071405734167221e-04, 6.1890246137346824e-04, 6.0876565024813728e-04, 6.1510795570900948e-04, 6.1096108241065657e-04, 6.0988688480540301e-04, 6.0819631521414827e-04, 6.0613831878346403e-04, 6.0206237136995605e-04, 6.0114538333897079e-04, 6.0056021122419957e-04, 5.9621679220666843e-04, 5.9379562101626385e-04, 5.9133988824504498e-04, 5.8399603304396322e-04, 5.8053974056557385e-04, 5.7223436866124348e-04, 5.7441761322883991e-04, 5.6811752599371726e-04, 5.6555569342713052e-04, 5.5959381998138547e-04, 5.4834282775626311e-04, 5.4197532767995271e-04, 5.3686954298032621e-04, 5.3275792335604269e-04, 5.3121449647523453e-04, 5.1802794442594793e-04, 5.1406203153318494e-04, 5.0925816217297498e-04, 4.9542787960021525e-04, 4.8355841279167783e-04, 4.7930947806478982e-04, 4.8293118097055693e-04, 4.6200763555146948e-04, 4.6764734613310294e-04, 4.3010623473771492e-04, 4.7810131775362363e-04, 3.5934082521283175e-04, 6.5929637111420900e-04, -2.4566510927933813e-04, 6.9742270119868555e-05, -4.4859029455463634e-05, 2.4812597322732000e-05, -1.3955326052621925e-05, 1.6667849907045507e-05, -3.3846668991109607e-05, 6.9166604357684403e-05, -2.9637749639893629e-04, 2.2112716616838595e-03, -5.9107987539136052e-05, 8.1143161722204652e-04, 4.9945412048899712e-04, 6.5975117758342375e-04, 5.8090310311087467e-04, 6.2071080559208350e-04, 6.0475995092970896e-04, 6.1590225010958125e-04, 6.1192718688235590e-04, 6.1277060264349620e-04, 6.0977568243047141e-04, 6.0860494911998790e-04, 6.0592656336285432e-04, 6.0281402614474448e-04, 6.0135625080404501e-04, 5.9977639599457198e-04, 5.9657407052108972e-04, 5.9378890427423670e-04, 5.9013400512713220e-04, 5.8465002819642516e-04, 5.7855214453055200e-04, 5.7432276946118091e-04, 5.7133880886037214e-04, 5.6860354500277641e-04, 5.6431117933302896e-04, 5.5767379947293735e-04, 5.4822652585744674e-04, 5.4073542769671884e-04, 5.3574084961457297e-04, 5.3215987346243512e-04, 5.2727790496069279e-04, 5.1884559696638646e-04, 5.1234744791697415e-04, 5.0613032494381885e-04, 4.9401541261987272e-04, 4.8288182320551515e-04, 4.8033204195890161e-04, 4.7494053563977914e-04, 4.6971979198611596e-04, 4.5239605529539401e-04, 4.5784056893263120e-04, 4.2937735158462761e-04, 4.9134882318734377e-04, 3.8529380034866070e-04, 3.1026098362248872e-05, -6.6049144771308105e-05, 8.0458424658209904e-06, -9.4806330739882760e-06, 8.2440832139228648e-06, -5.2024970284558769e-06, -1.6163879906321010e-06, 7.3440359411695855e-06, -3.2677440540190839e-04, -1.0685332063994609e-04, 8.9181641908178330e-04, 5.1362210818213473e-04, 6.4892601907165373e-04, 5.8046334631383159e-04, 6.1544260811098074e-04, 5.9934323121863583e-04, 6.1058728878437066e-04, 6.0831970664590972e-04, 6.1084436526167522e-04, 6.0865102996577811e-04, 6.0724782163667015e-04, 6.0542346557970750e-04, 6.0332853891875357e-04, 6.0119337089278337e-04, 6.0045860467517441e-04, 6.0025706961610442e-04, 5.9822298201192212e-04, 5.9608646611689076e-04, 5.9332285498544558e-04, 5.8887579180536692e-04, 5.8459281988174593e-04, 5.8009188258560836e-04, 5.8083202446414933e-04, 5.7757727911099399e-04, 5.7427010812634641e-04, 5.6908504506292604e-04, 5.6105747196422487e-04, 5.5485003603828950e-04, 5.5046440834323127e-04, 5.4815420863270348e-04, 5.4461202047829602e-04, 5.3636434877928768e-04, 5.3111632818345425e-04, 5.2455978694199504e-04, 5.1370714838874787e-04, 5.0226434060331171e-04, 4.9675924138469635e-04, 4.9349384417772535e-04, 4.7940363001150801e-04, 4.7148240438988839e-04, 4.5692903803302640e-04, 4.6435785580078645e-04, 4.4546689013386792e-04, 4.0499229081739432e-04, 9.5645686260387164e-06, -1.7697726416146531e-05, -2.2811107557682564e-05, 1.3450992315117150e-06, 2.1308312071408042e-07, 6.0040412891079753e-07, 1.3633585271132648e-05, 3.4367111518308902e-06, 3.5885534814995845e-04, 8.4261868245220396e-04, 5.0308931961776495e-04, 6.3430296774952570e-04, 5.9049403167730965e-04, 6.1432282397539967e-04, 6.0313845812145529e-04, 6.0993386434008649e-04, 6.0982266097454538e-04, 6.1304762131140535e-04, 6.1284577392308609e-04, 6.1197366927325664e-04, 6.0987456394749617e-04, 6.0817627645393287e-04, 6.0569088942737624e-04, 6.0279342785210174e-04, 6.0122524047744735e-04, 5.9971877849013429e-04, 5.9672835669210764e-04, 5.9388116343928737e-04, 5.9027538039024482e-04, 5.8476149633922281e-04, 5.7940782090843204e-04, 5.7453711730289653e-04, 5.7246549668817093e-04, 5.6903033125238825e-04, 5.6492146389726383e-04, 5.5840768132229754e-04, 5.4935052400450005e-04, 5.4214657040556335e-04, 5.3702621148480484e-04, 5.3318609437289291e-04, 5.2863045075960541e-04, 5.2031663634018871e-04, 5.1402533555814506e-04, 5.0712380661725731e-04, 4.9578676221057050e-04, 4.8545215278310988e-04, 4.8118314489296529e-04, 4.7737631822667229e-04, 4.6831462615236699e-04, 4.5901396268028041e-04, 4.5372309700748847e-04, 4.5361798464654476e-04, 4.5342301065394094e-04, 3.9217928726980114e-04, 2.4675359351328252e-05, -2.6937062253349492e-05, -1.6320521666134125e-05, -2.8582588164072220e-06, 7.9865103946169524e-07, 1.9971185920737711e-06, -6.5905159825213611e-06, 1.6571663712796475e-05, -7.3886007597431802e-05, 4.7908986061549535e-04, 6.4764293118221199e-04, 5.9031944128096377e-04, 6.1512298418086144e-04, 6.0427701101619692e-04, 6.1068318578788843e-04, 6.0875687098445579e-04, 6.1295376833625948e-04, 6.1403825416781951e-04, 6.1489092714907354e-04, 6.1353102061652634e-04, 6.1166041160557079e-04, 6.0979188395947695e-04, 6.0723858037347797e-04, 6.0389705832367309e-04, 6.0188464430016402e-04, 5.9969756552074975e-04, 5.9617770416819059e-04, 5.9296692889209725e-04, 5.8898774372862124e-04, 5.8278647771580275e-04, 5.7710508885558919e-04, 5.7176481091045402e-04, 5.6849369610564165e-04, 5.6474572277235083e-04, 5.6039174457763949e-04, 5.5312813019593385e-04, 5.4345506910273567e-04, 5.3577094666198977e-04, 5.3025215108382442e-04, 5.2553368684182464e-04, 5.2054952696983445e-04, 5.1203871924612385e-04, 5.0530579333020464e-04, 4.9810814514604854e-04, 4.8644047507570912e-04, 4.7688130990902050e-04, 4.7276165480395621e-04, 4.6966547585704579e-04, 4.6143718046078377e-04, 4.5432861170168967e-04, 4.4845364849669528e-04, 4.5358821310923989e-04, 4.4955698098126523e-04, 3.9695697429671661e-04, 2.1310404471744371e-05, -2.3559704258345471e-05, -1.8461381587866338e-05, -2.4514603295840154e-06, 5.2059977758214804e-07, -4.9288064903028894e-06, -5.0143083216852569e-06, -8.9882950730903188e-05, -8.0700649405733571e-05, 6.3796943140263318e-04, 5.7343941031641086e-04, 6.0897918652313889e-04, 5.9967649172935292e-04, 6.0623050554956068e-04, 6.0399092623932352e-04, 6.0657505817460905e-04, 6.0872851953995121e-04, 6.1103972588028976e-04, 6.1148827840506320e-04, 6.1051910045099682e-04, 6.0871758251380276e-04, 6.0720258679107172e-04, 6.0513333012457426e-04, 6.0270727242793705e-04, 6.0181308886703838e-04, 6.0097687525470511e-04, 5.9866666668025037e-04, 5.9643480447139040e-04, 5.9349303710006657e-04, 5.8861848075430004e-04, 5.8405060807595680e-04, 5.8010916992989880e-04, 5.7883827143860936e-04, 5.7626152050066493e-04, 5.7284170228249012e-04, 5.6695981454266825e-04, 5.5860100442893176e-04, 5.5204567810940644e-04, 5.4767357262867564e-04, 5.4445232444090899e-04, 5.4050135525565007e-04, 5.3260206087917678e-04, 5.2652463988889925e-04, 5.1978046753212159e-04, 5.0816647153770905e-04, 4.9750662283279748e-04, 4.9233298509684595e-04, 4.8742115163095262e-04, 4.7642503810770703e-04, 4.6560124682785281e-04, 4.5706267514798726e-04, 4.5692724304037188e-04, 4.5141736835136587e-04, 3.9375786851807149e-04, 2.1674375145389752e-05, -2.5171525199044892e-05, -1.7816593889351251e-05, -3.1988898993307036e-06, -1.1920515207534954e-06, -4.0856043457618285e-06, -2.8637585082688655e-06, -5.4960385854549432e-07, -3.1660135024567243e-04, 5.6987212796914388e-04, 6.1493837587651935e-04, 5.9162068350709614e-04, 5.9819574727060839e-04, 5.9609600039822134e-04, 5.9860982509105272e-04, 5.9932287366334762e-04, 6.0298764508446862e-04, 6.0510419737146593e-04, 6.0616003277403317e-04, 6.0530799671855429e-04, 6.0392819146329671e-04, 6.0281761473467491e-04, 6.0127958680905418e-04, 6.0033740212406782e-04, 6.0076727881808352e-04, 6.0207382495883720e-04, 6.0134469900422968e-04, 6.0020215742299758e-04, 5.9840657322836679e-04, 5.9556722928051989e-04, 5.9232331786219193e-04, 5.8924304432101011e-04, 5.9228078259034554e-04, 5.9013709263559117e-04, 5.8763560654688171e-04, 5.8400107645728908e-04, 5.7734707492993267e-04, 5.7232451062251902e-04, 5.6902250966618662e-04, 5.6850020535824733e-04, 5.6590485374345342e-04, 5.5821513726003399e-04, 5.5339490431584315e-04, 5.4682999542074451e-04, 5.3596827909565062e-04, 5.2258397415237343e-04, 5.1570662588309654e-04, 5.0933989921196979e-04, 4.9222438270479785e-04, 4.7743050344956420e-04, 4.6360436446222369e-04, 4.5833935874017850e-04, 4.4791273446644769e-04, 3.8599680811672241e-04, 1.8377933708617344e-05, -2.6778048573913860e-05, -1.8933009894767788e-05, -2.8517747488153444e-06, -1.6639359007343535e-06, 4.5715836615375927e-06, 2.0555341235246882e-05, 3.0188429182423024e-04, 3.3556413915038219e-04, 6.4414794075540443e-04, 6.1470219622994111e-04, 6.0396439793807075e-04, 6.0195357229037580e-04, 6.0425190653945037e-04, 6.0515624498937333e-04, 6.0723185889802449e-04, 6.1039144938082514e-04, 6.1276838476724809e-04, 6.1371076555265421e-04, 6.1288302687883059e-04, 6.1111972683229772e-04, 6.0926265660622182e-04, 6.0607883167807311e-04, 6.0218388555305716e-04, 5.9882471921677248e-04, 5.9557128838155435e-04, 5.9062975346965349e-04, 5.8605040327885070e-04, 5.8057014433298380e-04, 5.7321408583051181e-04, 5.6582967397072158e-04, 5.5758988569564079e-04, 5.5348922452587435e-04, 5.4705727788920827e-04, 5.4114811382630426e-04, 5.3280827477702325e-04, 5.2184025588614125e-04, 5.1307125209061957e-04, 5.0568267588542784e-04, 5.0029135071125858e-04, 4.9425986375334005e-04, 4.8433843093638115e-04, 4.7698235813956394e-04, 4.6835311930925466e-04, 4.5701498287852721e-04, 4.4616494949347232e-04, 4.4210705523924088e-04, 4.3999784280921578e-04, 4.3186734571252008e-04, 4.2589861371040982e-04, 4.2273952914250248e-04, 4.3107345447889606e-04, 4.3616604178842514e-04, 3.8372683729319054e-04, 1.4489398434829742e-05, -3.1282150416606785e-05, -2.0897253947365496e-05, -2.1148961765332652e-06, 1.8464732526278504e-06, 1.2852199294765415e-05, 2.7817427025001590e-05, 3.1648936696127006e-04, 1.4384326526621152e-03, 6.3915432601815503e-04, 6.4738724601646211e-04, 6.3188034590211254e-04, 6.3270710876745309e-04, 6.3232721128632981e-04, 6.3302426484650696e-04, 6.3297785587615625e-04, 6.3371743190630825e-04, 6.3343215305209678e-04, 6.3220644079938545e-04, 6.2930382297441204e-04, 6.2498645935652603e-04, 6.1998159739425074e-04, 6.1282892467639377e-04, 6.0097473298478636e-04, 5.9011972653137679e-04, 5.7598871525910318e-04, 5.6228945487877408e-04, 5.5134197335334964e-04, 5.3946552405226625e-04, 5.2178168757690754e-04, 5.0588118213891475e-04, 4.8959273820942291e-04, 4.6430935142408383e-04, 4.5276946222495493e-04, 4.4084641027501009e-04, 4.2189179044186190e-04, 4.0360933835857302e-04, 3.8735750847641512e-04, 3.7225213650176475e-04, 3.5420659780746599e-04, 3.4198172558670692e-04, 3.3038995997445100e-04, 3.1793768952349463e-04, 3.0948162365098536e-04, 2.9713133619310370e-04, 2.9862322714484246e-04, 3.0187134832860424e-04, 3.0994269951326384e-04, 3.3256122422432866e-04, 3.5045134129532349e-04, 3.7525081655168102e-04, 4.2101882621815509e-04, 4.5785937894560202e-04, 4.2643845255559490e-04, 1.8412512846809059e-05, -3.5552437594864317e-05, -2.3984869697093320e-05, -2.9622674904347668e-06, 9.9773137518625876e-06, 5.6569885068698256e-06, -1.1570261671915716e-05, -4.2326571545816399e-04, -3.2861204014789785e-04, 6.6007063947223690e-04, 6.7549761707816043e-04, 6.7222759482782248e-04, 6.6690511774973767e-04, 6.6107494606805137e-04, 6.5469815545870537e-04, 6.4843293317052176e-04, 6.4036047845909567e-04, 6.3241699430224840e-04, 6.2471226094890087e-04, 6.1570140132986145e-04, 6.0653963346342724e-04, 5.9826273768193855e-04, 5.8990556991916909e-04, 5.8048804597984893e-04, 5.7528181852222089e-04, 5.6835477634336988e-04, 5.6105566456470662e-04, 5.5736748990846408e-04, 5.5470944598798311e-04, 5.4690091798515091e-04, 5.3612065227595998e-04, 5.2677486162824340e-04, 5.1154241326768421e-04, 5.0909873257379279e-04, 5.0365406775764246e-04, 4.9362347457607147e-04, 4.9087997289475743e-04, 4.8426285824942558e-04, 4.6763562568112593e-04, 4.5867228057200338e-04, 4.5527949593958048e-04, 4.4937110786012063e-04, 4.4740138012195133e-04, 4.5261507233996384e-04, 4.5363278965359494e-04, 4.5748347603547651e-04, 4.6114355788650155e-04, 4.6952298981558019e-04, 5.0721377298138665e-04, 5.2857473188872711e-04, 5.5649681706887444e-04, 6.1287591147021411e-04, 6.3642010301075830e-04, 5.7165936638602088e-04, 4.6538345291561450e-05, -3.2452807623102597e-05, -2.6824490907979143e-05, -4.1781491165980567e-06, 9.9357131305086166e-06, 3.9582333865029184e-06, -6.3861797441003981e-05, -8.4903613427872102e-04, -3.0487798142645739e-03, 6.7797440776629862e-04, 7.1923621440240842e-04, 7.1932045394613835e-04, 7.0631958577341367e-04, 6.8936629493205042e-04, 6.7502771773709797e-04, 6.6256532443527937e-04, 6.4701544403518788e-04, 6.3340040506713879e-04, 6.2278190767759388e-04, 6.1145833580271078e-04, 6.0328448476781350e-04, 6.0028123688115297e-04, 6.0168261516150255e-04, 6.1626832343846145e-04, 6.3444935067271183e-04, 6.6133386816062852e-04, 6.8095862690204130e-04, 7.0452749041066860e-04, 7.3318138820037577e-04, 7.6769932927591052e-04, 7.8384494644437655e-04, 8.0298037319121232e-04, 8.6018218296608426e-04, 8.8655145817102821e-04, 9.0382267397138422e-04, 9.2525578210139389e-04, 9.6406554730447611e-04, 9.9066953670048918e-04, 9.7369816900541237e-04, 1.0047613119586983e-03, 1.0241792231066409e-03, 1.0232428707586463e-03, 1.0458843720286895e-03, 1.0667528234373433e-03, 1.0938505933171458e-03, 1.0712589552729947e-03, 1.0568323663157700e-03, 1.0401833865308907e-03, 1.0399191583968861e-03, 1.0234669420565584e-03, 9.9696251259798196e-04, 1.0053301204059131e-03, 9.3508823392684376e-04, 7.7841925837462272e-04, 8.5209891388576819e-05, -1.1148156289879363e-05, -2.4614159945479663e-05, -6.2256817443262502e-06, 3.2517678866805788e-06, 5.3729277057351643e-07, -9.6836630226262987e-06, -2.4394674903468333e-04, -2.0615776752470893e-04, 6.5057939137800605e-04, 8.7856793285407461e-04, 8.4472490878641747e-04, 8.2908766382466716e-04, 8.1779354813991002e-04, 8.1341890583686190e-04, 8.1521394583107098e-04, 8.2352375965821355e-04, 8.3116662044236712e-04, 8.4300878504576723e-04, 8.6256466865714324e-04, 8.7906282039510591e-04, 9.0245864983625260e-04, 9.3780817432831572e-04, 9.7689669953218532e-04, 1.0032473265138651e-03, 1.0356725455540651e-03, 1.0601176732071456e-03, 1.0997672352250631e-03, 1.1487323807112503e-03, 1.1994622022871819e-03, 1.2335350619429482e-03, 1.2753276224358560e-03, 1.3914739149669467e-03, 1.4474484878689714e-03, 1.4781813878870995e-03, 1.4675936090248996e-03, 1.5131722584021921e-03, 1.5466280460370331e-03, 1.5056118389103756e-03, 1.5238632877545982e-03, 1.5262222625818667e-03, 1.4952441646372619e-03, 1.4867809064803492e-03, 1.4696115092757908e-03, 1.4601582981822667e-03, 1.4118872313867228e-03, 1.3632988496353748e-03, 1.2801590168690993e-03, 1.2171476913892462e-03, 1.1559266921837563e-03, 1.0756691470307708e-03, 1.0035409798215059e-03, 8.6485883896601085e-04, 6.9529098406119483e-04, 9.6995128383681184e-05, 2.5663323413728512e-05, -9.9221944177552146e-06, -4.8296578609025032e-06, -8.8837911212252818e-06, -5.4152523869255287e-07, 3.8710529087430945e-05, 5.6299704489557595e-04, 2.1230747557146740e-03, 1.1589525684355482e-03, 1.2832642967432941e-03, 1.1555583921199998e-03, 1.1633203475199475e-03, 1.1869272114528994e-03, 1.2227258555577427e-03, 1.2589140052634527e-03, 1.3267154002632748e-03, 1.3799151035318279e-03, 1.4359340934133862e-03, 1.5201527669112449e-03, 1.5758228374296163e-03, 1.6335893623269336e-03, 1.7192329269820547e-03, 1.7573475483632778e-03, 1.7603063350797241e-03, 1.7394383612106060e-03, 1.7201197600440962e-03, 1.7349702761848412e-03, 1.7574186410202822e-03, 1.7348309907605670e-03, 1.7391789264695340e-03, 1.7565648047175170e-03, 1.8256974756443653e-03, 1.8746863865477179e-03, 1.8915806267571639e-03, 1.7348737944846912e-03, 1.7238762825604603e-03, 1.7007430833754777e-03, 1.6053776349318413e-03, 1.5002947900849203e-03, 1.4088979652609399e-03, 1.2921620095879341e-03, 1.1468958776549437e-03, 1.0309954091167403e-03, 8.6548455986624334e-04, 8.2103568210760425e-04, 7.0766489855698944e-04, 5.4375308175923232e-04, 4.2844049698312348e-04, 3.6902952295001651e-04, 2.7727274876935409e-04, 1.0428795270774754e-04, -5.4694753968270726e-06, -3.1888405265224906e-05, 4.0815707239724719e-05, 6.1775894602912607e-05, 2.3694393175961725e-05, -1.4993983674799205e-07, -1.4643754201300319e-05, -1.1073689491228333e-05, 1.9250463013320562e-05, 5.7076786775782373e-04, 4.7375552216612216e-04, 2.0371225552221757e-03, 1.8889962640692803e-03, 1.7760664008088910e-03, 1.8249855005870869e-03, 1.9082928072736080e-03, 1.9710902827908758e-03, 2.0188603665491616e-03, 2.0883323455421314e-03, 2.1370575136373179e-03, 2.1932180347125838e-03, 2.2862293019685447e-03, 2.3204126681390172e-03, 2.3588404579493807e-03, 2.4314943977091635e-03, 2.4440240504334000e-03, 2.4387976793483410e-03, 2.4013121554322669e-03, 2.3385530948897976e-03, 2.2980762318988435e-03, 2.2434958733214758e-03, 2.0751561121602272e-03, 1.9864921391616261e-03, 1.9065610179849896e-03, 1.8040012793500634e-03, 1.7648418032032293e-03, 1.7219746426833174e-03, 1.4865451376246674e-03, 1.4227126369971838e-03, 1.3405758548172414e-03, 1.1870688801429857e-03, 9.7145478555162035e-04, 7.7455736398343578e-04, 5.1444627511650076e-04, 2.4227999255645172e-04, 5.8091072947422107e-05, -2.0247666463039937e-04, -3.6760939941747617e-04, -5.4940912190812319e-04, -7.6601371408537011e-04, -8.5573303796693256e-04, -9.0967745179858228e-04, -1.0011666776246070e-03, -1.3468404461146541e-03, -1.5085564934537513e-03, -1.3752827845002202e-03, -1.1418390436412906e-04, 9.2226017340830968e-05, 6.4686124618261454e-05, 1.0461837385684902e-05, -1.3968917530547686e-05, -1.9275308694707838e-05, 1.3572402496261904e-06, 2.2438630773619767e-04, 1.8752009716599405e-05, 2.7584675343091530e-03, 2.7062856751790846e-03, 2.6799917999444063e-03, 2.7890074881650653e-03, 2.9013046648181801e-03, 2.9350285042438889e-03, 2.9378395455036191e-03, 2.8861030674845710e-03, 2.8368199344795154e-03, 2.8130706778926491e-03, 2.8060594679869127e-03, 2.7227741579945036e-03, 2.6638057631581807e-03, 2.6050544488607566e-03, 2.5669499141232413e-03, 2.5792552978005159e-03, 2.6102419796690951e-03, 2.5310056103295328e-03, 2.4269164693559928e-03, 2.2819314648271638e-03, 1.9711607323787475e-03, 1.7588987963820871e-03, 1.5342404557779216e-03, 1.1778170293890861e-03, 9.8104421388539587e-04, 8.0599287328499136e-04, 6.8780894121643621e-04, 6.0849482531051546e-04, 5.2531800376676152e-04, 3.2523819669956489e-04, 1.2886459172931075e-04, -1.1018106245742898e-04, -5.3728557311288894e-04, -8.1667640082171145e-04, -9.4796859160141411e-04, -1.0876372949825963e-03, -1.5674531164353439e-03, -1.8480043875598318e-03, -2.0135976569060007e-03, -2.1020126220685081e-03, -2.1639947103191046e-03, -2.3370352701368446e-03, -2.8631502378462861e-03, -3.1167629220833076e-03, -3.0247181524150901e-03, -2.3898244390480050e-04, 8.6926101302078895e-05, 1.0968625452318498e-04, 1.5781944757951860e-05, -4.3198404977018434e-06, -1.7541994718935083e-05, 1.5896670340367902e-05, 1.7407707107259390e-04, 2.5583684592500600e-04, 3.8896328688966982e-03, 3.4700059836742236e-03, 3.5790776414611584e-03, 3.6419761845781357e-03, 3.6702696408820699e-03, 3.6231154476172971e-03, 3.5556541589889662e-03, 3.3717868717414584e-03, 3.2294815604469521e-03, 3.1309336443476332e-03, 3.0295492647111483e-03, 2.8625710105180530e-03, 2.7185120218384470e-03, 2.5119580471733224e-03, 2.3654154307950759e-03, 2.3074053904530087e-03, 2.2846909541634625e-03, 2.1296220449408404e-03, 1.9737306617323147e-03, 1.7927484288671747e-03, 1.4999769752835068e-03, 1.2278262051715894e-03, 9.0627616988435411e-04, 3.7428381389265075e-04, 6.3250650521845531e-05, -2.4840415706944841e-04, -4.2543188907374907e-04, -5.1974997628562170e-04, -5.9523014352141912e-04, -8.6714052092703997e-04, -1.0024532533655928e-03, -1.2230823363530846e-03, -1.7398561836115128e-03, -1.9271863330337230e-03, -1.9895893904554734e-03, -1.9296498038738480e-03, -2.6499991467380177e-03, -2.9478663116537726e-03, -3.2672260396363756e-03, -3.4303450770867203e-03, -3.6874772930265490e-03, -3.8715288687138291e-03, -4.3419656359664424e-03, -4.2823237966840635e-03, -3.7776342684804586e-03, -2.7372331594183522e-04, 9.5580633540540832e-05, 1.2335758485797557e-04, 2.4851231748099223e-05, -7.7802612654422065e-06, 1.5692427920089430e-05, -2.0681373286840499e-05, 2.2811824707187969e-04, 5.3041224233314754e-04, 4.0833049131166338e-03, 4.0474141112409323e-03, 4.1232751337573932e-03, 4.0355091692081610e-03, 3.8196102128902829e-03, 3.6913367205822153e-03, 3.5690049408797081e-03, 3.3649910551505693e-03, 3.2320127603015988e-03, 3.1373312358536076e-03, 3.0294185175975749e-03, 2.9040689823767729e-03, 2.7557262102669150e-03, 2.4971683238184106e-03, 2.1879806631295851e-03, 1.9276079258706558e-03, 1.5917455553572518e-03, 1.2385598622850769e-03, 1.0474657128614062e-03, 8.7863661906438517e-04, 8.0680550983143473e-04, 5.5586607544282074e-04, 2.4447030134837344e-04, -2.6241497899397170e-04, -5.6128471623420606e-04, -9.0237321473998766e-04, -1.6131970970949955e-03, -1.7277960450811369e-03, -1.8465289376888711e-03, -2.2367650061346223e-03, -2.3621101900358626e-03, -2.5521819421687464e-03, -2.9629429013685316e-03, -3.1313991373791428e-03, -3.1411609464309098e-03, -3.1951035286769749e-03, -3.6657135749158659e-03, -4.1188165130283880e-03, -4.3346182650446652e-03, -4.9906638930264785e-03, -5.2124658750558120e-03, -5.5994320551421249e-03, -5.4383715753688645e-03, -4.2752640255475718e-03, -2.8901436089214076e-03, -1.4789304617475463e-04, 1.1114295364414613e-04, 1.1380829299193623e-04, 9.9564490729855959e-06, 1.8866607813408307e-05, -2.5624642964806529e-05, 4.2474065092007116e-05, -5.7773409687989635e-04, 1.7955866783633465e-04, 3.9326837446647805e-03, 4.3221998884476337e-03, 4.2927582254215814e-03, 4.0785447505457054e-03, 3.6768138511568751e-03, 3.5003114617289596e-03, 3.3619779473190448e-03, 3.2115056873154371e-03, 3.1416785259553714e-03, 3.0589983623671574e-03, 2.8864654996378913e-03, 2.7412486624351640e-03, 2.5847781772337375e-03, 2.3319550971700603e-03, 1.9292632300679929e-03, 1.5432629074124821e-03, 9.7742518830341851e-04, 3.7458564093048596e-04, 1.2413080634682272e-04, -7.5282769874035482e-05, -1.8152100537591198e-04, -4.4468093180068113e-04, -7.1690562042565908e-04, -1.1219930131901729e-03, -1.3243950453879633e-03, -1.6068967319453481e-03, -2.7259285144629608e-03, -2.8902672642558414e-03, -3.0592992114596568e-03, -3.5045947279667838e-03, -3.6348162907179626e-03, -3.7660139850809182e-03, -4.0517552734089246e-03, -4.1484743573351746e-03, -4.4565278346163292e-03, -4.7792940243368068e-03, -5.1475428460979675e-03, -5.0813512390448512e-03, -5.3992083959553995e-03, -5.2176668639939069e-03, -5.4749859853939695e-03, -5.3259145872602796e-03, -4.8718463356033463e-03, -3.2710171520605531e-03, -8.6796244784759788e-04, -5.8033977075549244e-05, 1.7194906037909844e-04, 4.1318825841932857e-05, 2.3729092162111387e-05, -1.7843227765863053e-05, 4.9119595820272272e-05, -1.4185527353154678e-04, -3.2979499352359001e-04, -3.1238083305014830e-03, 4.2119803929717842e-03, 4.3182378047333173e-03, 4.2211251021819288e-03, 4.0209877754199888e-03, 3.6908572084335747e-03, 3.5225802030735692e-03, 3.4089241338324805e-03, 3.2977292405860226e-03, 3.2404404888289190e-03, 3.0944199462152322e-03, 2.6779915790191566e-03, 2.2807298762668043e-03, 1.9952432088242295e-03, 1.7045776225574488e-03, 1.3445897073578739e-03, 1.0614965366213674e-03, 6.5758252868892975e-04, -1.5580695958293533e-04, -5.0339065327939525e-04, -7.9105994577102767e-04, -1.5236096853191716e-03, -1.8758919965685128e-03, -2.1690611515012698e-03, -2.5388793208191984e-03, -2.6416505291635139e-03, -2.8370371071661793e-03, -3.6762066235277169e-03, -3.9185210499796536e-03, -4.1142619320859997e-03, -4.4261704195949630e-03, -4.5594708329123185e-03, -4.7003804168994842e-03, -4.8257360006825692e-03, -5.1666448044092456e-03, -5.3747043582046961e-03, -6.3944030261727548e-03, -6.4489353576461794e-03, -6.4536948814827751e-03, -4.6002489767910069e-03, -3.7933527877187772e-03, -2.8884328567907588e-03, -3.1382132511018437e-03, -2.2087947321542010e-03, -5.1231590784127704e-04, 2.1834883566915111e-04, 2.9017481577855059e-04, 4.7689009690160197e-05, 3.5088967346245953e-05, -2.3745156274930019e-05, 2.9980660593507963e-05, -5.7446462003038289e-05, 1.2337255253792146e-04, -6.6097213295373755e-04, 1.1140215639747666e-03, 4.1921585737506317e-03, 4.3150186884753916e-03, 4.1385386681976402e-03, 4.0288321628113577e-03, 3.8928420343580794e-03, 3.8049065237579643e-03, 3.7307719264901285e-03, 3.5646396377497641e-03, 3.3692819234130700e-03, 3.0961556799176393e-03, 2.4766400051503823e-03, 1.7436601994079287e-03, 1.2051252719113836e-03, 6.9634581786030825e-04, 3.6892757583364966e-04, 2.1018426002142321e-04, 1.8492246104298560e-05, -8.6609869643064497e-04, -1.2640033302684095e-03, -1.6135640570418275e-03, -2.8694554006933604e-03, -3.2953043878386629e-03, -3.6163119794433568e-03, -3.9789044700904025e-03, -4.0250515958468042e-03, -4.1353347365220561e-03, -4.4642601464015413e-03, -4.7606369318534056e-03, -4.9322689905211964e-03, -5.1137531434206490e-03, -5.2627668650960524e-03, -5.5174535773224592e-03, -6.0284955498883935e-03, -5.9277440062103087e-03, -6.3512095335790768e-03, -6.0755408800186213e-03, -6.3767424493956781e-03, -4.7078486267968320e-03, -4.6557516277451810e-03, -9.2670047067525509e-04, -6.7614572562346698e-04, 9.7862485921631896e-04, 4.5813811242743929e-04, 2.4527718827701135e-04, 1.6477612582567103e-03, 7.5986747802224766e-05, 1.1272962505014814e-04, -6.6135760675623771e-05, 9.0957005542593311e-06, -3.0333385087029981e-05, 5.2875877031875913e-05, -6.6772134452708614e-05, 6.6208922186306160e-04, 5.1576255445559722e-04, 4.3499284735875055e-03, 4.5312523430269536e-03, 4.3400172027234230e-03, 4.2655341321525403e-03, 4.2323325531126443e-03, 4.2107099791198338e-03, 4.0996338480093625e-03, 3.6895470898663518e-03, 3.1557595904718044e-03, 2.7376823948887241e-03, 2.2014544382926854e-03, 1.2682634307009250e-03, 4.7800570374804952e-04, -4.6540676965473038e-04, -8.8602340387608503e-04, -1.1184066337760340e-03, -1.4165920579386898e-03, -2.1855877589968264e-03, -2.5297944865494554e-03, -2.8443968166440708e-03, -3.8530602706179223e-03, -4.2522243779352931e-03, -4.5350432684589798e-03, -4.8370384776141168e-03, -4.8905025606224284e-03, -4.9474902143454430e-03, -5.1308355274635800e-03, -5.3721723195387025e-03, -5.6328731762522247e-03, -5.7152172714314831e-03, -6.0494051881406219e-03, -6.4353301380476943e-03, -7.0439740818054181e-03, -7.5629765931756101e-03, -5.4300041110164725e-03, -3.6748592069678135e-03, -3.0975534852893927e-03, -3.5656914356448147e-03, 1.5289722883967381e-03, 1.8927370935503088e-04, 1.9882073027375756e-04, -2.8835026642221658e-04, -2.3684768331992705e-04, 2.0514212893721954e-03, 1.0180202573686012e-03, 3.8522658822838550e-04, -9.9128177281758694e-05, -1.6888389130913315e-05, -3.5071375446745542e-05, 1.2012493252445012e-05, -2.6553593564153464e-05, 7.0720266562581714e-05, 9.7572510227969447e-05, 7.5148869564916308e-04, 4.8362654423215884e-03, 5.0688398599232215e-03, 5.0226537486909306e-03, 4.9826626022033277e-03, 4.7753654779811444e-03, 4.5537252457353156e-03, 4.1408196403888708e-03, 3.1431509629634008e-03, 2.2372403151621617e-03, 1.7114006627386574e-03, 1.3782386773793509e-03, 5.3600566241640557e-04, -2.9762320522014329e-04, -1.5159656649687547e-03, -2.1165158213933555e-03, -2.4883769216014623e-03, -2.9378053875999677e-03, -3.5849612355801502e-03, -3.8365034156274680e-03, -4.0352616293223564e-03, -4.5330333383362675e-03, -4.8371020219103028e-03, -5.0507444334293161e-03, -5.2619287003343868e-03, -5.3362393590577484e-03, -5.4532889893726885e-03, -5.6904210200052416e-03, -5.9876938609486757e-03, -6.2165883681966905e-03, -6.7672053156988508e-03, -6.7308413249005002e-03, -6.8097031387804249e-03, -7.3739971905336654e-03, -5.4234797852709040e-03, -5.6592848962679649e-03, -2.8241237189989489e-04, 7.4651700514952494e-04, 9.8746019682884956e-04, -4.4063904461776884e-04, -1.1563520709024537e-04, -6.8368835868423650e-06, 1.3070207453034415e-05, 1.0361280170715149e-03, 5.7812851044520706e-04, 1.4820534578917860e-03, 2.1683608246921785e-05, 5.7872726879617739e-07, -8.2535013526802408e-05, -1.8170299769587270e-06, -1.2581678860402578e-05, 1.1652109316181124e-05, -3.2387578277338815e-05, 8.3099154345868224e-05, -5.4921135241940873e-04, 6.1272768682649609e-03, 5.8670566162560972e-03, 6.0020571522449440e-03, 5.9997049426926824e-03, 5.2636015709148082e-03, 4.5006488423525448e-03, 3.5417808519179611e-03, 1.6653177990341578e-03, 6.1865629004924372e-04, 6.7269341110925973e-05, -1.9413952352467789e-04, -6.4860050360675270e-04, -1.2572670187026014e-03, -2.2673539599405712e-03, -3.0627845433330997e-03, -3.4425024608342736e-03, -3.7676720855145951e-03, -4.4351219048563151e-03, -4.6257942546107794e-03, -4.7195138361510736e-03, -5.0605765093613836e-03, -5.2882432160492043e-03, -5.4829676013024298e-03, -5.5901162134320559e-03, -5.7471214840565041e-03, -5.9067255292144794e-03, -6.4080192646022924e-03, -6.5553727472289006e-03, -7.1027849535410317e-03, -7.5267092105619354e-03, -7.5414479454509586e-03, -6.0948235855515310e-03, -3.4501556252620131e-03, -4.8492472296084920e-03, 1.9458909717771521e-03, -2.2486219833085276e-05, -1.8420798013455149e-04, -3.1850270974851779e-04, 2.2357562893894308e-04, 2.4786983320401572e-04, -3.3211989741324384e-05, 1.1394083724552186e-04, 1.4151951804058498e-04, 1.0678931406554516e-03, 1.0193971858030117e-03, 1.6328896044668067e-04, -8.9009386894175254e-05, -4.3077487449788305e-05, -1.8846871456960727e-05, 7.1777986290584225e-06, -1.0150874679093914e-05, 8.6096276575428274e-06, -1.1263646408706451e-04, 2.4479952968089851e-05, 7.4609220234892748e-03, 6.3996716385332358e-03, 6.2926317496507789e-03, 5.9240615799537322e-03, 4.6687151786760916e-03, 3.4912585462472528e-03, 2.2285882716095301e-03, 1.2536560509979200e-06, -8.6313286202187312e-04, -1.3209003372117861e-03, -1.6100467100490234e-03, -1.7929704893162451e-03, -2.1693539640391529e-03, -2.8342782454045257e-03, -3.6960569318525843e-03, -4.0173644514076706e-03, -4.1724199140738272e-03, -4.8181283030774430e-03, -4.9916367297899444e-03, -5.0820950534614939e-03, -5.4713722650305135e-03, -5.6851606403836852e-03, -5.8718926665799892e-03, -6.0096354839014390e-03, -6.2057480792908418e-03, -6.5850661043903302e-03, -7.0715333026471761e-03, -7.6556442221843192e-03, -7.2252964229200071e-03, -8.0810765362882217e-03, -5.3130562620511855e-03, -5.1140781222627748e-03, -7.7534327741232375e-04, 1.7147719107150215e-03, -6.5902535778397729e-04, -2.7962362775104744e-05, 1.2384527206423009e-04, 1.5741123719882630e-04, 1.8399759817547067e-05, -7.9093082713321662e-05, 3.8643207819232840e-05, 5.5409287484496032e-05, 5.7343644299584821e-04, 8.1002586838730556e-04, 1.2078801263478833e-03, 7.1640848851932306e-05, -4.2357048829812834e-05, -6.1071624817272355e-05, -5.4439167053261725e-06, -7.2610026567200558e-07, 6.7066793950059517e-06, -8.7514271376034833e-06, 2.3288763368220413e-05, 1.7462347834598137e-05, 5.4471406991239701e-03, 6.2378175539192088e-03, 5.1404772077379701e-03, 3.8917671005735399e-03, 2.5204655711479201e-03, 1.4715862388656326e-03, 4.8774646617882889e-04, -9.6774600652720089e-04, -1.4345949242401401e-03, -1.7075550051969257e-03, -2.0488681648782453e-03, -2.4095899458442815e-03, -2.7853492520526352e-03, -3.3588314837377647e-03, -4.0826392126584871e-03, -4.4055103546077751e-03, -4.6271531961267071e-03, -5.0427521451035517e-03, -5.2419847737308345e-03, -5.4247784137873428e-03, -5.8128337609466701e-03, -6.0144643030580411e-03, -6.2274221367487406e-03, -6.4949071610529430e-03, -6.9181213019213275e-03, -7.2197558882489826e-03, -8.0937065013328702e-03, -7.9026555034413630e-03, -8.2757337208899159e-03, -3.7329811507364604e-03, -4.7429896709975184e-03, 7.9789390315777658e-04, 3.8528506508451045e-04, -5.6352349050506941e-04, 3.0641485195309246e-04, 2.1503445778588544e-04, -1.7131875886514545e-04, -9.2202420303840122e-05, -1.0745760754984676e-05, 1.9759893532528795e-05, -2.8466574060548339e-05, 1.0597856233579170e-04, 4.7934020722441615e-04, 9.6763016374148763e-04, 1.1454150273669614e-03, 1.1990878490148295e-04, -6.0055149651099936e-05, -4.9092587516605824e-05, -1.0804841815173234e-05, 4.2793666441042280e-06, 1.1124464476203536e-06, 5.5485856011025167e-06, 1.9900452066408392e-06, 5.3372574227926808e-05, 2.5213844208576974e-03, 5.2505922874617611e-03, 3.3700888327362483e-03, 1.6314411623047920e-03, 4.5405989379736222e-04, -1.8602170914761018e-04, -6.5737411071081775e-04, -1.1034395413146020e-03, -1.3090356184341928e-03, -1.5204367773315602e-03, -1.9993156181627308e-03, -2.6868191936875729e-03, -3.1779909362448927e-03, -3.7688183110954759e-03, -4.3178050210643526e-03, -4.6781323812037090e-03, -5.0584593057586280e-03, -5.2616478523014598e-03, -5.4996313249622841e-03, -5.7941772078884957e-03, -6.1383604474794795e-03, -6.3650027593804628e-03, -6.5749490414036688e-03, -7.1888853563304989e-03, -7.6123041851137857e-03, -8.3176551047650163e-03, -7.9711784253439447e-03, -8.1550878408587959e-03, -5.3652193605133363e-03, -3.1393232228881778e-03, 1.7554302520260468e-03, -3.4441416392929866e-04, -1.2453211112657540e-04, 2.3082808857222695e-04, 5.1053030196841352e-05, -8.6903434478300008e-05, 4.1034406761489312e-05, -4.5314774364204100e-06, -3.7258947994003964e-06, -2.1121842891882461e-05, 1.6692620903975514e-05, 8.2337839658290239e-05, 5.0458126241892636e-04, 9.0365093276461987e-04, 1.1750521245750935e-03, 1.0284170574064409e-04, -4.9752778712879031e-05, -5.3745360213293663e-05, -8.0879895940047693e-06, 1.6620241811301194e-06, 3.6950020800585216e-06, -7.9863179522354777e-07, 5.2702006036703213e-06, -3.0855649778250074e-05, 2.4585295927235240e-03, 3.5693420571472206e-03, 2.1463908437159562e-03, 9.8666050708416664e-04, 9.5573244374883015e-05, -2.5518207144531457e-04, -4.6838239733666687e-04, -6.2350935970842403e-04, -1.0128959355241440e-03, -1.4259761093702583e-03, -2.1473166416456774e-03, -2.9501427285365950e-03, -3.4711493704545765e-03, -3.9849286525756172e-03, -4.4690837461783539e-03, -4.8467006670201845e-03, -5.2889845393646329e-03, -5.5135603874971600e-03, -5.7908758165085006e-03, -6.1379386039615291e-03, -6.5168281423378521e-03, -6.7560962230833396e-03, -7.1632119750247095e-03, -7.8124324212561699e-03, -8.7098296023465915e-03, -8.5416914621257688e-03, -8.0996910623932286e-03, -4.4417089288417005e-03, -3.7533702922930472e-03, 2.1869431579921439e-03, -8.4045655727983844e-04, 1.9632564078397134e-04, 1.8410910448580001e-04, -1.4768235947339208e-04, -7.2015390987942253e-07, 3.1675165548672790e-05, -1.9086751745672222e-05, -1.9502313178769692e-06, 8.3915507192313077e-06, -6.7362847594329097e-06, 9.4727876822657195e-06, 9.0371758636646063e-05, 4.7303870686381125e-04, 9.1585980544143196e-04, 1.1567862913838389e-03, 1.1025794117011959e-04, -5.4295930912405966e-05, -5.1532535482496852e-05, -9.6501234852467040e-06, 2.6722822746771610e-06, 1.7742352459116859e-06, 1.3516618624872558e-06, -6.9164438460649763e-06, 1.9817740986582955e-06, 2.3593168472452186e-03, 2.3515927668800590e-03, 1.7459602819194231e-03, 1.4863079009246882e-03, 9.4347801485129834e-04, 6.8526609908342584e-04, 4.2198878260854555e-04, -7.7889138953290971e-06, -7.8888886749201026e-04, -1.4739714828691935e-03, -2.3923438271896830e-03, -3.1576661856687477e-03, -3.6344903517946114e-03, -4.0680347039759868e-03, -4.5763941445348816e-03, -4.9676443181638497e-03, -5.4230087519905185e-03, -5.8068518640002620e-03, -6.1080993513863771e-03, -6.4731377256116232e-03, -6.9039764594331157e-03, -7.3255282117110285e-03, -7.7728857522187736e-03, -8.9053746981574110e-03, -8.6754471222301420e-03, -8.9983389642464690e-03, -4.7710253481816310e-03, -3.4280067486514255e-03, 2.1814130387513577e-03, -9.2121343031945600e-04, 3.0374102935925624e-04, 8.7758307563248262e-05, -7.8088705147767165e-05, 3.9077970101487190e-05, -8.1906550380672323e-06, -1.0723399230045790e-05, 4.7193547920002427e-06, 1.0314315517754457e-06, -2.5349768687665824e-06, -9.2552536786532030e-06, 1.3792747360699171e-05, 8.9319945903019407e-05, 4.8817308540088824e-04, 9.1084783709257917e-04, 1.1641760519701962e-03, 1.0648224066148659e-04, -5.2328521887252521e-05, -5.2721549740192102e-05, -9.0169005011169617e-06, 2.0262388797181140e-06, 2.6504191266338815e-06, 9.3837768411556000e-08, 1.0696068668677658e-06, 3.6206094930456290e-06, 2.2968428491301762e-03, 2.3665737207105852e-03, 2.0436526549285905e-03, 2.0434862713218094e-03, 1.9115620365640074e-03, 1.5892857417249134e-03, 1.1727901195796864e-03, 3.2767353524817966e-04, -6.6129011875984411e-04, -1.4774313762835750e-03, -2.4353075187693862e-03, -3.1683792962805962e-03, -3.6344573498501009e-03, -4.1037750145557772e-03, -4.6865390819091635e-03, -5.1141822273961246e-03, -5.6012822891609859e-03, -6.1429025065681681e-03, -6.4572647662649515e-03, -6.7899019107617239e-03, -7.3914866520611161e-03, -7.9308423600261344e-03, -8.7157533357801222e-03, -9.3691687961386834e-03, -8.9359547181677070e-03, -5.5007075948239840e-03, -3.9858535741675721e-03, 2.2453076032023450e-03, -9.6799431057784330e-04, 4.0759461601471293e-04, -2.2041572965189306e-05, -5.8615376134355440e-05, 4.1332987937367571e-05, -2.1389027684563295e-05, 1.6415207983907709e-05, -2.4902111650929780e-06, -6.6046002495122243e-06, -5.1570386214876726e-06, -2.2119389208753981e-06, -8.8270622668868798e-06, 1.0192881489447380e-05, 9.1276153588996351e-05, 4.8842442897899057e-04, 9.1631772460448778e-04, 1.1627901349330839e-03, 1.0825860290987737e-04, -5.3187414052054474e-05, -5.2230900098578035e-05, -9.3423790849395116e-06, 2.3228020583679863e-06, 2.3054192748732556e-06, 8.8174498437919302e-07, -1.0065229805655482e-07, 4.5123886099531635e-06, 2.9310183315353205e-03, 2.9290546438819759e-03, 2.5835440627566403e-03, 2.4415195777072740e-03, 2.5500209525780027e-03, 2.1334024610356467e-03, 1.6108303283504793e-03, 5.2017167290467625e-04, -5.1356510483781259e-04, -1.3487782570408835e-03, -2.2793714500895096e-03, -3.0513563391097037e-03, -3.5784411077165318e-03, -4.1619696872325085e-03, -4.8226000433755217e-03, -5.2988171462405587e-03, -5.8317596890480744e-03, -6.4670866194535617e-03, -6.7875179130871127e-03, -7.1772551158862594e-03, -7.9460237550156368e-03, -8.8567980943625030e-03, -9.2465455485451209e-03, -9.8314714169290014e-03, -5.8329305314596888e-03, -5.2795690127642970e-03, 2.4244832084069912e-03, -9.8166039327683349e-04, 3.7838857286782242e-04, -1.1773324710615178e-05, -2.5680898931878856e-05, 2.8358066539669027e-05, -2.0965529463086777e-05, 7.2504623009982100e-06, -2.0117863083033181e-06, 2.3691289694808778e-07, 1.7312153205995538e-07, -3.5083208822024765e-07, -3.0051862204608884e-06, -9.2660028677868345e-06, 1.3129985365332409e-05, 9.0259406747155086e-05, 4.8742706302847482e-04, 9.1416270847772879e-04, 1.1633687917235248e-03, 1.0764656492550729e-04, -5.2824600335397640e-05, -5.2448767017231925e-05, -9.1931301252003335e-06, 2.1972379163738912e-06, 2.4696798228184338e-06, 5.3006497590562043e-07, -1.8221419033608716e-07, -5.9689012410144016e-07, 3.0233677725352848e-03, 3.2087351017633381e-03, 2.9555711104839039e-03, 2.7863622571583785e-03, 2.7921105529138818e-03, 2.3529459626512178e-03, 1.8294230910996523e-03, 8.2653296189506842e-04, -2.3849798769640107e-04, -1.0889647358318655e-03, -2.0325497644625434e-03, -2.9329729261815124e-03, -3.5664703857815477e-03, -4.2809208897214845e-03, -4.9825346550813054e-03, -5.4987333009570427e-03, -6.0938216164778125e-03, -6.7151221732929534e-03, -7.1105754682869310e-03, -7.6329096638221849e-03, -8.7414498442331054e-03, -9.6087173581489160e-03, -1.0143943003031916e-02, -7.1618584173408590e-03, -5.0139653519342652e-03, 7.6573424980370193e-04, -4.8045951239849725e-04, 2.3035842180705286e-04, 2.2777744874996240e-05, -3.5364552268335009e-05, 2.8214505562142346e-05, -8.9946092394195765e-06, 2.4261209458223746e-06, -8.1948065990806687e-06, 9.1791818174364063e-07, 6.1874403229508442e-08, 2.0179600864768908e-08, -3.0324387187115678e-07, -1.7264029806166666e-06, -9.1774688808843790e-06, 1.2797693488448246e-05, 9.0430184702240142e-05, 4.8619368765566830e-04, 9.1399372494217464e-04, 1.1626700775246787e-03, 1.0784085950171296e-04, -5.3001044744516689e-05, -5.2349185712059158e-05, -9.2593677460681492e-06, 2.2643552928026424e-06, 2.3728335776527013e-06, 6.5315814080403600e-07, -8.6630603793715413e-07, 1.4107961809296451e-06, 3.1724352511315612e-03, 3.2864349698521061e-03, 3.2171589221171304e-03, 3.0840167968303328e-03, 2.7583756401669546e-03, 2.3475389612621911e-03, 1.9307208284030514e-03, 1.2076126562810263e-03, 1.3811431692094256e-04, -7.5038935460210177e-04, -1.7719861651920993e-03, -2.8017859525197031e-03, -3.5428736655847143e-03, -4.3961627445350399e-03, -5.1528277686050256e-03, -5.7004149976225132e-03, -6.3452580369313324e-03, -6.9609114538582775e-03, -7.5026053030943576e-03, -8.1995965757342068e-03, -9.6089965497962414e-03, -1.0001873877532604e-02, -9.9916017619880188e-03, -4.4435877799513437e-03, -1.4668302793031537e-03, 5.4947461306504870e-04, -1.1219335976650531e-04, 1.4410259903527062e-04, -5.0097630483493272e-05, 2.9221379086333027e-05, -1.7250327116348249e-05, 5.7039688882190814e-06, -2.6001811858975931e-06, 8.0165997862807130e-07, -5.5972282156641474e-07, 1.8341958385546114e-07, 2.6795967129376939e-07, -1.7541756662020137e-07, -2.6858664158409604e-06, -9.1006421118475163e-06, 1.3011507508391325e-05, 9.0487716360752133e-05, 4.8686105317336285e-04, 9.1404460481388000e-04, 1.1629335427573422e-03, 1.0771937260868917e-04, -5.2923589323526036e-05, -5.2394602474007193e-05, -9.2252590226950780e-06, 2.2325006588572692e-06, 2.4256156342500855e-06, 5.9119488711976975e-07, -3.6055969407323626e-07, 1.7264078615393183e-06, 3.4927385565911850e-03, 3.5175218462489832e-03, 3.4960312490861026e-03, 3.3446458782359217e-03, 2.5880223444958855e-03, 2.2436191817693379e-03, 1.9693727043498671e-03, 1.5473564971495990e-03, 5.2912907711755164e-04, -3.8664943704398713e-04, -1.5428761127568996e-03, -2.6158356081328327e-03, -3.4423679664515733e-03, -4.4437344152818692e-03, -5.3183318607354091e-03, -5.9064050102618643e-03, -6.5515756278792109e-03, -7.3166887880243975e-03, -7.9745072366058101e-03, -8.9779898533771697e-03, -1.0158807210449167e-02, -1.0086391131552805e-02, -7.5769233653684544e-03, -2.8024636085521668e-03, 1.3752979418538030e-03, -4.4005857276361974e-04, 2.0728928083278903e-04, -4.6934468436132435e-05, 3.4028996727638854e-05, -1.5855529429891410e-05, 1.2385269142483620e-06, -3.1743630183019494e-06, 6.7208962436224925e-07, -3.8049765359956958e-07, 1.2491862393641958e-06, -2.5022420381693572e-07, -1.8292134117652145e-07, -6.2672465914377119e-07, -2.6350870158699507e-06, -9.1444360925838303e-06, 1.2781181605233671e-05, 9.0564529747380384e-05, 4.8703635012119564e-04, 9.1427680011595147e-04, 1.1629508596009736e-03, 1.0778734025903344e-04, -5.2949915818456279e-05, -5.2373394431083804e-05, -9.2400445788087295e-06, 2.2475052464466030e-06, 2.4067883501377105e-06, 6.3500956887273599e-07, -4.0492086970543226e-07, 1.6919436969546273e-06, 3.7895458326530768e-03, 3.8164553529100934e-03, 3.7504529545900264e-03, 3.5458836023910534e-03, 2.5302941625313102e-03, 2.1960734797796394e-03, 1.9890418774497903e-03, 1.7978423882995670e-03, 8.6999580904452423e-04, -3.9575239771147408e-05, -1.3155019648658783e-03, -2.4272486176567937e-03, -3.3316687234511561e-03, -4.4667277838402186e-03, -5.4696387303491134e-03, -6.1037051660148348e-03, -6.7981592557138926e-03, -7.7029485232050360e-03, -8.6202959119154876e-03, -9.5654934658602267e-03, -1.0899732262253919e-02, -8.1677904702819014e-03, -6.5574934551158454e-03, 1.9989236575547954e-03, -7.1852939959117035e-04, 2.5812827687564789e-04, -8.7961133741837544e-06, 8.2479477733002349e-06, -5.3981529695222265e-06, 6.2504287438762201e-07, -1.3105498699326400e-06, 1.0405719008599790e-07, -5.7209104592978173e-08, 1.8339421511360458e-07, -4.2876738906433829e-08, 1.3765980746345574e-07, 1.5833147155766124e-07, -2.9465746249303837e-07, -2.6944941321014183e-06, -9.1521344732324860e-06, 1.2984090548308946e-05, 9.0515919887867508e-05, 4.8690736268276432e-04, 9.1418819127853730e-04, 1.1629470439118079e-03, 1.0777174777432683e-04, -5.2937944209888958e-05, -5.2381734812248591e-05, -9.2338616054263127e-06, 2.2405572419562786e-06, 2.4141526461106573e-06, 6.1487390464040267e-07, -4.3127043343124671e-07, 1.3673390060241555e-06, 3.9731328855674847e-03, 4.0724275075432539e-03, 3.9143212263503466e-03, 3.6419529033973053e-03, 2.7550479661493515e-03, 2.2891835931632409e-03, 2.0346173339545054e-03, 1.9464352342846714e-03, 1.1382096820185400e-03, 2.7357250036977310e-04, -1.0531912306109142e-03, -2.2936120934968912e-03, -3.2845423591965767e-03, -4.5218130885075758e-03, -5.5961950244531183e-03, -6.3026844873272647e-03, -7.1132606242983593e-03, -8.1717663533497978e-03, -9.2407060997014533e-03, -1.0278945851060463e-02, -1.0507203600298625e-02, -6.8763285284446606e-03, -1.4513830368271623e-03, 3.2631873225813686e-04, -5.7165816114078687e-05, 1.2376874938059356e-04, -3.7484198500845842e-05, 1.7913849316931823e-05, -1.0948433635428012e-05, 9.7709403996398153e-07, -6.5255712593943716e-07, 9.1504892180105900e-07, -3.0662383280197821e-07, -3.5750157989468054e-07, 4.4354200750925028e-08, 5.4573015939070194e-08, 1.7958749944453265e-07, -2.8474779174778042e-07, -2.6005065606236297e-06, -9.1506438528180851e-06, 1.2964025647210247e-05, 9.0519608160218262e-05, 4.8684161767017809e-04, 9.1415100679405955e-04, 1.1629161926409084e-03, 1.0777384735979499e-04, -5.2944367951860902e-05, -5.2378277858079920e-05, -9.2369992506008067e-06, 2.2436564599227424e-06, 2.4086697155063265e-06, 6.2045901975341794e-07, -4.7167137056866593e-07, 1.4897784188097965e-06, 4.1590037378393813e-03, 4.3443284039741820e-03, 4.0561882803099025e-03, 3.6942600077313481e-03, 2.9857374705383188e-03, 2.4461528970541740e-03, 2.1411266845590554e-03, 2.0124772535689978e-03, 1.3682249192884105e-03, 5.8835040396365557e-04, -7.8239792279417852e-04, -2.1783458749362050e-03, -3.2604624685286521e-03, -4.5747087735886136e-03, -5.7210375062592342e-03, -6.5017276143794767e-03, -7.4715840158338306e-03, -8.7549333686289671e-03, -1.0015567950187588e-02, -1.0963144484037551e-02, -8.7236973387083590e-03, -5.2456790275383428e-03, 1.6166995127535251e-03, -4.4596206430992842e-04, 2.0673364033607587e-04, -3.5849633299228585e-05, 1.9604085559581200e-05, -9.3001947987060514e-06, 1.3666921549536457e-06, -9.4568832818440682e-07, 2.8411956311271921e-07, -3.0571042688027879e-08, 6.4837421433823917e-08, -8.5154463809889846e-09, -2.8545716034583560e-08, 7.8662037024087098e-08, 1.9037598757977133e-07, -2.7581972166243549e-07, -2.6684151927214398e-06, -9.1432815774479802e-06, 1.2978096140648296e-05, 9.0527434507152639e-05, 4.8688107144033833e-04, 9.1416454471427973e-04, 1.1629271031215129e-03, 1.0776997343283452e-04, -5.2941801427577005e-05, -5.2380086019228941e-05, -9.2355171713025437e-06, 2.2420574503001153e-06, 2.4116051864277871e-06, 6.1747748549651968e-07, -4.3990049685034560e-07, 1.5228770955397555e-06, 4.3945095231911063e-03, 4.7033633370466912e-03, 4.2552736851255435e-03, 3.7899600809494852e-03, 2.9659899923831154e-03, 2.5851604558181848e-03, 2.3361678527790419e-03, 2.0188458764594519e-03, 1.5862177725142618e-03, 9.1423367813737999e-04, -5.3476594102497277e-04, -2.0293093767065062e-03, -3.1989200362134707e-03, -4.5929138614262330e-03, -5.8603892400701449e-03, -6.7306271994140646e-03, -7.8033810210215715e-03, -9.5063123443276561e-03, -1.0829588468746685e-02, -1.1507639058805249e-02, -5.9074977383985474e-03, -1.1031043446348232e-03, 2.3627221375140808e-04, -5.4890353503974545e-05, 1.0006539460843559e-04, -1.5707960772748405e-05, 4.7262741477777028e-07, -3.0855501130663078e-06, 4.5720660733143507e-07, -2.2253592722913467e-07, -1.0337786704019765e-07, -4.1365795490409894e-08, 4.6640917817915122e-10, -2.2241117073472003e-08, 9.2156679643731298e-08, 4.4433431597472252e-08, 1.6246775403543166e-07, -3.0729368700140361e-07, -2.6647897834375833e-06, -9.1469632337358393e-06, 1.2962000414834361e-05, 9.0531503785701528e-05, 4.8689681915611209e-04, 9.1417724452347022e-04, 1.1629314864589596e-03, 1.0777267629993176e-04, -5.2942477261068606e-05, -5.2379277329080674e-05, -9.2361359680611689e-06, 2.2428270982496543e-06, 2.4107237038047818e-06, 6.1996093609099565e-07, -4.4085696346285452e-07, 1.5156508092238966e-06, 4.6582819294107014e-03, 5.0370791553825192e-03, 4.4946195087737437e-03, 3.9492818805593882e-03, 2.9470720740384510e-03, 2.7559360190771778e-03, 2.5819618850032450e-03, 2.0380420905493773e-03, 1.7244968517784176e-03, 1.1413205749305488e-03, -2.9283534132971967e-04, -1.8406944048606488e-03, -3.1088437423701237e-03, -4.6295974099432591e-03, -6.0329833230906502e-03, -6.9780283465692289e-03, -8.2557848355007055e-03, -1.0115991944309264e-02, -1.1395499777532354e-02, -1.0735621794822268e-02, -3.4212953903407358e-03, 1.1011804447362517e-03, -3.0909363283314128e-04, 1.8527906642773609e-04, -3.2118920448222341e-05, 1.3277297732631614e-05, -5.8329017556874090e-06, 2.6935424463020517e-07, -3.9711564978334570e-07, 1.8183734731772180e-07, 1.0613954396377495e-09, 2.2275554155821694e-09, -4.2535034546192091e-09, 5.0925053617800363e-09, 1.2587108149801933e-09, 7.6068264727316773e-08, 1.8600381730409941e-07, -2.8345822919693421e-07, -2.6690851934659812e-06, -9.1474146866355745e-06, 1.2976367025454509e-05, 9.0528528169062425e-05, 4.8688630234931980e-04, 9.1417239621434040e-04, 1.1629298942578740e-03, 1.0777244725527742e-04, -5.2942157218848884e-05, -5.2379548130155381e-05, -9.2358763819407746e-06, 2.2425096112498565e-06, 2.4110626534751961e-06, 6.1887666551272563e-07, -4.4376235958359239e-07, 1.4946915534363656e-06, 4.8878537568500802e-03, 5.2828183520757521e-03, 4.7249130847720200e-03, 4.1861908906312972e-03, 3.1960047054694282e-03, 3.0217851198054840e-03, 2.8149379318906792e-03, 2.1267223307081459e-03, 1.7333998013283614e-03, 1.1846097245443651e-03, -4.4180337124458124e-05, -1.6425804988224324e-03, -3.0057830597106372e-03, -4.7499093016053831e-03, -6.2025460211943273e-03, -7.3400269548197991e-03, -8.7445211673779742e-03, -1.0831249005835770e-02, -1.0488581354805017e-02, -9.5332966660976529e-03, 1.4009816546540663e-04, -9.3207622252324866e-05, 4.5383228417745150e-05, 6.0424868594049147e-05, -6.6084362866430452e-06, 7.4015675520378433e-07, -2.6962965805626152e-06, 4.2359323486337928e-07, -4.0145042834284299e-07, 1.0491641013470499e-07, -1.1389646743456419e-08, 6.0527339205108878e-08, -2.6699909889271603e-08, -3.1812685064629902e-08, 1.0121077568349185e-08, 6.9244727964282052e-08, 1.8803753051991657e-07, -2.8281997806477209e-07, -2.6623807585065884e-06, -9.1473712398173286e-06, 1.2974990763427492e-05, 9.0528574403285811e-05, 4.8688205089769199e-04, 9.1416912558325261e-04, 1.1629282135601012e-03, 1.0777222796263131e-04, -5.2942376654205921e-05, -5.2379436387421392e-05, -9.2360053512811902e-06, 2.2426559695013296e-06, 2.4107711312838266e-06, 6.1911228652804587e-07, -4.4615879633662370e-07, 1.5023655351451351e-06, 5.2104596112097640e-03, 5.5107933839780576e-03, 4.9864589950339745e-03, 4.4515560344689023e-03, 3.6126275563852436e-03, 3.3054609694909212e-03, 2.9763049998044744e-03, 2.2230535641044324e-03, 1.7188006743197801e-03, 1.1750394413027679e-03, 1.3481328089068323e-04, -1.4857040391575288e-03, -2.9134763801808503e-03, -4.8265954247539641e-03, -6.4217761617868171e-03, -7.7316397160082581e-03, -9.4595014806419450e-03, -1.1209874801471450e-02, -9.6233824362794880e-03, -6.0595308848771668e-03, 4.7506316984518172e-04, -1.3432991852095936e-04, 1.2346300161669217e-04, -5.4309428228412635e-06, 5.0525171250144458e-06, -3.7789422882504012e-06, -3.9341699125948243e-08, -2.8403959502986374e-07, 1.3950160742378975e-07, -6.6787822425171594e-09, 1.8963058136451695e-08, -5.4183112632841170e-09, 4.0165146321456246e-10, -4.6881540446616632e-09, 4.5764804652338471e-09, 7.1406497994898669e-08, 1.8860358607667371e-07, -2.8220935405451363e-07, -2.6672675722747008e-06, -9.1468306306206784e-06, 1.2975974372470082e-05, 9.0529219023159879e-05, 4.8688470489298874e-04, 9.1417033705822753e-04, 1.1629287847913633e-03, 1.0777210987865816e-04, -5.2942292084397300e-05, -5.2379502090380524e-05, -9.2359416072121392e-06, 2.2425775742032639e-06, 2.4109312507054545e-06, 6.1897648331345201e-07, -4.4412091007887608e-07, 1.5052653036815369e-06, 5.3911254217343524e-03, 5.9426337569568367e-03, 5.2726825617456750e-03, 4.7053854405817858e-03, 4.0129904636836342e-03, 3.5096121731177030e-03, 3.0355227728754985e-03, 2.2778626821453318e-03, 1.7812968202267424e-03, 1.2528186380209930e-03, 1.9188892726192813e-04, -1.4005270178116258e-03, -2.8333385623393048e-03, -4.7803127201241358e-03, -6.6540281662312364e-03, -8.2523797746608257e-03, -1.0008804032312878e-02, -1.1800121128739042e-02, -8.0872266810890422e-03, -3.2315028035299256e-03, 1.0572851998884504e-03, -2.9217560854930777e-04, 1.7229627200686750e-04, -3.6546162622956102e-05, 9.6413568144563297e-06, -4.6992935380187111e-06, 4.4712201514792186e-07, -2.3445495882836722e-07, 1.3714771734078942e-07, -9.1301366115760984e-09, -9.2043198276510864e-09, -6.1069908138995394e-09, -2.6072657284298851e-09, -5.3977910769039371e-09, 1.3474155062260639e-08, 6.8801028658659600e-08, 1.8660326624677270e-07, -2.8448041431787779e-07, -2.6670113110342423e-06, -9.1470977634308269e-06, 1.2974829768644963e-05, 9.0529480647991961e-05, 4.8688590677874448e-04, 9.1417115671658868e-04, 1.1629291876103184e-03, 1.0777223867893763e-04, -5.2942296784682166e-05, -5.2379472391882523e-05, -9.2359671002230533e-06, 2.2426140139399087e-06, 2.4108907616931380e-06, 6.1911460852220532e-07, -4.4407421634362620e-07, 1.5044893699424008e-06, 5.9539324318438475e-03, 6.1035453996684183e-03, 5.6256388574844364e-03, 4.9738816676809378e-03, 4.2846974631071955e-03, 3.6521703453051488e-03, 3.1155144417506983e-03, 2.3256312265079321e-03, 1.8698698465534902e-03, 1.3544654729142902e-03, 2.2093383748356121e-04, -1.3274151108257429e-03, -2.7571467701443184e-03, -4.7172030142506732e-03, -6.9430218207759617e-03, -8.7060227066825674e-03, -1.0597110360888423e-02, -1.1176854270494172e-02, -7.3446014713764553e-03, 6.5321423322807829e-04, -2.4176836400896398e-04, 1.2337281077800594e-04, 1.7912666959518634e-05, -5.5813207776399915e-07, -1.3629967608620318e-06, -1.1209185684404980e-06, 5.9450223410575909e-08, -6.3142800907210099e-09, 4.5535120822982455e-08, 2.1777730373570168e-09, 8.8188310313716024e-10, -2.8159342708224686e-09, -1.9052067463541569e-09, -3.3777824772775709e-09, 6.9162134349269990e-09, 7.1050328603406224e-08, 1.8827314939815236e-07, -2.8277385599056754e-07, -2.6673173260581914e-06, -9.1471279132304489e-06, 1.2975857836487910e-05, 9.0529279731105060e-05, 4.8688512495235066e-04, 9.1417084549830089e-04, 1.1629290378594235e-03, 1.0777224948526265e-04, -5.2942292848527379e-05, -5.2379479601979625e-05, -9.2359578401793666e-06, 2.2425998711817635e-06, 2.4109028518323576e-06, 6.1905667299733819e-07, -4.4434262683841139e-07, 1.5031146963885925e-06, 5.5395793884996051e-03, 6.2890745456534898e-03, 5.7887696848080202e-03, 5.4088048171617061e-03, 4.3341970341569599e-03, 3.8316325983466029e-03, 3.3281873713988455e-03, 2.4135624123720750e-03, 1.9172724671375693e-03, 1.3863797224456936e-03, 3.0460397388392541e-04, -1.2174555793459663e-03, -2.6774238133705081e-03, -4.7964948096328522e-03, -7.2608734569995989e-03, -9.1744154635586307e-03, -1.0928167839355655e-02, -9.5027780987710780e-03, -5.3621116983314995e-03, 1.1164185836483264e-03, -3.0585125656336365e-04, 1.8781585068047325e-04, -4.1599795443857666e-05, 1.3204901436995637e-05, -6.1033890535428328e-06, 9.5168714773679393e-07, -3.9789372194332410e-07, 1.8043890045885223e-07, -4.0085935640432461e-08, 1.2581142853158780e-08, -5.0220801095751492e-09, 4.0127604459747057e-09, -3.7459268896933469e-09, -5.8892579655198465e-09, 7.4873583395319073e-09, 7.0548373155645302e-08, 1.8841423526549299e-07, -2.8272583827663057e-07, -2.6668355305594716e-06, -9.1471247238520000e-06, 1.2975760610204029e-05, 9.0529278301208630e-05, 4.8688483012080156e-04, 9.1417059603597238e-04, 1.1629289314027632e-03, 1.0777222216513341e-04, -5.2942300562558615e-05, -5.2379477354206911e-05, -9.2359625335413850e-06, 2.2426054476646154e-06, 2.4108892338488806e-06, 6.1906141249259278e-07, -4.4447814130568059e-07, 1.5035867943491432e-06, 6.6796956870252520e-03, 5.4008723263632361e-03, 5.9539212308762478e-03, 5.6751784540163587e-03, 4.4891979426775683e-03, 4.0371467738553810e-03, 3.5911830346874313e-03, 2.5873992129466089e-03, 1.9522779900837256e-03, 1.3588005758591454e-03, 3.8613074188167951e-04, -1.1254988446643757e-03, -2.6395429465384881e-03, -4.9852107431144418e-03, -7.6574924360668026e-03, -9.7482242584556178e-03, -1.1169180578367570e-02, -7.0544409260830179e-03, -3.3038534563145571e-03, 7.4318238075453164e-04, -1.7012385200038403e-04, 1.1804338505108876e-04, -2.8339949287261660e-05, 6.6341289598563209e-06, -3.5641453728467714e-06, 6.7887127082578655e-07, -1.8278438424302928e-07, 9.2981561041442914e-08, -1.0328328958105208e-08, 3.5843265013896708e-09, -1.7312347526556157e-09, -2.8058992977665013e-10, -1.7213660096122591e-09, -3.9650356699664178e-09, 7.0642486550226641e-09, 7.0698868660998824e-08, 1.8845423921659955e-07, -2.8268120666768862e-07, -2.6671858011796922e-06, -9.1470856353078445e-06, 1.2975830641092601e-05, 9.0529326391372697e-05, 4.8688501652826150e-04, 9.1417068869818253e-04, 1.1629289665478603e-03, 1.0777221848079412e-04, -5.2942298176188000e-05, -5.2379479116490806e-05, -9.2359608955916266e-06, 2.2426038605682756e-06, 2.4108942057125132e-06, 6.1906323247469183e-07, -4.4436612555006846e-07, 1.5038695594200499e-06, 3.8782244439999622e-03, 5.6238957163876856e-03, 5.4418007276652511e-03, 5.8807461120922444e-03, 4.8325010162006132e-03, 4.3230162288553503e-03, 3.7413369551653336e-03, 2.8751204301348254e-03, 2.0101966356999568e-03, 1.3251948326836946e-03, 4.0463534096119025e-04, -1.1077188859867013e-03, -2.6927643542936017e-03, -5.1689438166605192e-03, -8.2037552879985730e-03, -1.0227079002362985e-02, -1.1615267808719937e-02, -4.3053086534707930e-03, -1.2511463754106944e-03, 3.3019643643431143e-04, -5.1991708677847265e-06, 2.8599705353217391e-05, -1.0477262984088988e-05, 3.7498244519456724e-07, -9.8524597973741114e-07, 2.2612984732619048e-07, -2.3991841205760873e-08, 2.9481339075405053e-08, -1.5153077316683826e-09, -6.4781227677632690e-11, -1.8934559229360050e-09, -4.4688494950980567e-10, -1.8347884040949758e-09, -4.0701725569287136e-09, 7.7010936264202421e-09, 7.0507437705886111e-08, 1.8831217765829535e-07, -2.8284382525605649e-07, -2.6671672006758240e-06, -9.1471048948400731e-06, 1.2975748668561231e-05, 9.0529344449623745e-05, 4.8688510434311677e-04, 9.1417074531108874e-04, 1.1629289978084452e-03, 1.0777222561758008e-04, -5.2942296559307760e-05, -5.2379479163069433e-05, -9.2359595393214956e-06, 2.2426011017256421e-06, 2.4109009999100962e-06, 6.1905571924507005e-07, -4.4431049041858406e-07, 1.5037005165708869e-06, 7.5063729247229986e-03, 3.3544306316238212e-03, 5.5205234693389994e-03, 5.5107510335111846e-03, 5.4239742104701290e-03, 4.5766736212253974e-03, 3.8664323801237271e-03, 3.0898114206127300e-03, 2.1219650571440499e-03, 1.3640105557211971e-03, 3.8843831872965168e-04, -1.1527727789383754e-03, -2.7631550342502934e-03, -5.4172505864351073e-03, -8.5665361202653806e-03, -1.0631234783983212e-02, -1.0759697797276814e-02, -3.1267569932888002e-03, 1.0630441264725427e-03, -2.8219264464969019e-04, 1.8879522534499387e-04, -6.4826006871474180e-05, 1.1191345937235097e-05, -5.8740504557318964e-06, 1.5428789299906984e-06, -3.1476961305153489e-07, 1.5488075688877988e-07, -3.3273040153642243e-08, 8.4923195487797160e-09, -3.6380430374239204e-09, 6.9678889746830133e-10, -5.1051338591896148e-10, -1.6952917610983708e-09, -3.9703018997065730e-09, 7.2332632126617799e-09, 7.0667013815306164e-08, 1.8843324404773927e-07, -2.8272120959961804e-07, -2.6671890892092224e-06, -9.1471070727216326e-06, 1.2975822399831276e-05, 9.0529330241143188e-05, 4.8688504770911411e-04, 9.1417072370613512e-04, 1.1629289862005870e-03, 1.0777222744008446e-04, -5.2942297831312830e-05, -5.2379476900000794e-05, -9.2359640981973419e-06, 2.2426099481145413e-06, 2.4108834819781128e-06, 6.1908502423709683e-07, -4.4443035948421236e-07, 1.5038202291805039e-06, 7.1402664683881958e-04, 4.7755171558951986e-03, 4.6120293808658884e-03, 5.3902579079897484e-03, 5.7347224754817107e-03, 4.8983914205032002e-03, 4.0206616154889845e-03, 3.1267528859484015e-03, 2.2752112810790065e-03, 1.5277480362207163e-03, 3.4730545314030914e-04, -1.1873982227870311e-03, -2.8856700953455577e-03, -5.5995070436484010e-03, -9.0190445006577691e-03, -9.9158351110619752e-03, -9.6215749285662316e-03, -7.2076702643167139e-04, 9.7743774065660354e-05, 6.6716710102518320e-05, 5.1404257153875896e-05, -4.4888654716908626e-05, 1.7142715585323926e-06, -2.5291814689609135e-06, 1.1124948838279943e-06, -8.0907012589518800e-08, 7.5740790464657627e-08, -2.2412120215945029e-08, 4.9540954926699174e-10, -1.8188754870741147e-09, 4.3122069199393216e-10, 3.8910309111024610e-11, -1.8548581782388933e-09, -4.1579639622454966e-09, 7.2719544446834357e-09, 7.0631659854078965e-08, 1.8844370664201763e-07, -2.8271763264536062e-07, -2.6671545202629519e-06, -9.1471068549511830e-06, 1.2975815404758204e-05, 9.0529330160031354e-05, 4.8688502647703806e-04, 9.1417070590518160e-04, 1.1629289785864973e-03, 1.0777222486469534e-04, -5.2942296345935471e-05, -5.2379481621042927e-05, -9.2359542400830170e-06, 2.2425904119948575e-06, 2.4109201472353146e-06, 6.1901648275644594e-07, -4.4423260871315901e-07, 1.5034029258289075e-06, -2.7312599914772525e-03, 5.0123715831570919e-03, 3.7447591288184688e-03, 5.2181399104018113e-03, 5.8139243091934554e-03, 5.1860315513591465e-03, 4.3127446211511135e-03, 3.1655927530590787e-03, 2.4065266994919357e-03, 1.6660302568752283e-03, 3.1666028583669098e-04, -1.2565727663901988e-03, -3.0240617821503946e-03, -5.9299587280632719e-03, -9.3201042714928864e-03, -9.3428192221354719e-03, -6.6733187955935547e-03, -8.7566259812129157e-04, 2.1622031412592654e-04, 1.0929913244087756e-04, -2.9719571895155843e-05, -2.7371765292412591e-05, -5.2481885109184243e-06, 7.5029085594928826e-07, 4.8305151908737873e-07, 1.6673353362233715e-07, -1.4478866950572373e-08, -8.1789102590075621e-09, -4.3209647474239153e-09, 1.4153143332871002e-10, 2.4022086621592557e-10, -1.0510126807489889e-10, -1.7706627658509947e-09, -4.0126296468352826e-09, 7.2377156149893568e-09, 7.0643894556560779e-08, 1.8844653517629943e-07, -2.8271433872045402e-07, -2.6671796881663849e-06, -9.1471040809830076e-06, 1.2975820522186197e-05, 9.0529333345109450e-05, 4.8688504056367270e-04, 9.1417071144028977e-04, 1.1629289821114984e-03, 1.0777222484391596e-04, -5.2942299544338385e-05, -5.2379472270343459e-05, -9.2359748783323731e-06, 2.2426315569026509e-06, 2.4108420355389501e-06, 6.1916072168237066e-07, -4.4465953789657106e-07, 1.5043706797571166e-06, -1.6446083314063849e-03, 1.9796533140516159e-03, 3.2831377940096005e-03, 4.8532158385814830e-03, 5.6196295318674365e-03, 5.3735753111184767e-03, 4.7540091990168065e-03, 3.3692075446957077e-03, 2.4706548699187231e-03, 1.6582475250211740e-03, 3.1724342417800699e-04, -1.3536762413493136e-03, -3.2572290794251127e-03, -6.2665055175044719e-03, -9.8004062075264364e-03, -8.6127566670550215e-03, -4.0596487632552592e-03, -3.8787650040883373e-04, 1.3736711048277422e-04, 6.6749661966681957e-05, -4.0949991114065090e-05, -3.3576266826382690e-05, -2.2811367940486505e-06, 6.5900532579871618e-07, 7.8374822714011316e-07, 8.2648301601845331e-08, -1.1077278419080287e-08, -1.7134019486829714e-08, -2.4887831959153825e-09, 1.1713786902533153e-10, 3.6210627270098772e-10, -1.4163435226347779e-10, -1.7866352309550085e-09, -4.0242336612019737e-09, 7.2838747729604128e-09, 7.0630427062879655e-08, 1.8843646124081209e-07, -2.8272600316557996e-07, -2.6671783897168100e-06, -9.1471053820273222e-06, 1.2975814410263325e-05, 9.0529335452832721e-05, 4.8688504495235786e-04, 9.1417071877374664e-04, 1.1629289809708687e-03, 1.0777222620284065e-04, -5.2942293715032163e-05, -5.2379491012847536e-05, -9.2359322541582176e-06, 2.2425456040037726e-06, 2.4110065928494365e-06, 6.1885773804592689e-07, -4.4374070865211071e-07, 1.5023621957755556e-06, 4.3821303102699494e-05, -3.4915885729096719e-04, 2.3364609177122454e-03, 4.2332205441285853e-03, 5.1468865683459196e-03, 5.4205566943499942e-03, 5.0592254589926396e-03, 3.6169354666127015e-03, 2.5264052304683135e-03, 1.6372506643301532e-03, 3.6921348290860911e-04, -1.4297839084513736e-03, -3.5054327500455319e-03, -6.5783899508998767e-03, -9.7945736573147417e-03, -7.5643572979321918e-03, -2.1255941885868525e-03, 2.6522808211602178e-04, 3.0560306483448042e-05, 7.8911375688280592e-05, -7.8057238868958130e-05, -2.5154192327506972e-05, -3.9335285183350990e-06, 1.8866590718482463e-06, 5.7685252500606389e-07, 1.2531789309891894e-07, -3.9612726893356555e-08, -1.3870942888665285e-08, -3.4530559013003486e-09, 7.9181015264189868e-10, 4.1585249996409657e-10, -1.1471232018206608e-10, -1.7973147980489528e-09, -4.0153009201804920e-09, 7.2497325207839100e-09, 7.0642356233259029e-08, 1.8844516061512220e-07, -2.8271720673332874e-07, -2.6671799032960161e-06, -9.1471057119775278e-06, 1.2975820271271172e-05, 9.0529332765738454e-05, 4.8688504561369050e-04, 9.1417070865336349e-04, 1.1629289897682441e-03, 1.0777222162652129e-04, -5.2942303016859267e-05, -5.2379454109062386e-05, -9.2360196765404849e-06, 2.2427243060139934e-06, 2.4106623132511169e-06, 6.1949454509269142e-07, -4.4567388141547246e-07, 1.5065790731991907e-06, 5.7168532749407553e-04, -1.0859780400883003e-03, 1.3687779879091714e-03, 2.8004128616493417e-03, 4.8179258938689604e-03, 5.2028657916801755e-03, 5.0447127370342060e-03, 3.7461259290918827e-03, 2.6299152119132578e-03, 1.7301568864211830e-03, 4.8337866267017179e-04, -1.4523363476950900e-03, -3.6508412209217654e-03, -6.9175228226720786e-03, -8.7199143881379754e-03, -6.3063703367745513e-03, -6.5305702391400963e-04, 1.6326965562079939e-04, 1.3662556253057567e-04, -7.3153569560048006e-06, -6.9389873786513396e-05, -3.0284650747703645e-05, -1.3233308121785140e-06, 1.6306612150638315e-06, 7.2177499444669145e-07, 6.2998628776284277e-08, -3.6493410146329190e-08, -1.7169380954788153e-08, -2.3037184819686305e-09, 8.1396910068534060e-10, 4.8940523996680169e-10, -1.1134130404222460e-10, -1.8086852295008064e-09, -4.0309436938643995e-09, 7.2532560357597932e-09, 7.0639885692356640e-08, 1.8844596144544439e-07, -2.8271691715610152e-07, -2.6671775491067035e-06, -9.1471052668616734e-06, 1.2975818505315856e-05, 9.0529336289199924e-05, 4.8688503256156894e-04, 9.1417072932300060e-04, 1.1629289631399134e-03, 1.0777223826241101e-04, -5.2942290149743040e-05, -5.2379525563173678e-05, -9.2358413464931413e-06, 2.2423537391915403e-06, 2.4113811839098637e-06, 6.1815860806675726e-07, -4.4161312874255176e-07, 1.4976801433102052e-06, -2.3780377642158623e-04, -5.5542731465195683e-05, 8.0388249683930991e-05, 1.8396331146278517e-03, 4.4823891244700547e-03, 5.0360151477004253e-03, 4.8696278264629949e-03, 3.7905050109495672e-03, 2.7174338828867030e-03, 1.8508850784177099e-03, 5.8918275434758846e-04, -1.4402070675220945e-03, -3.7342020129515728e-03, -7.1109674002489010e-03, -7.6339649630064689e-03, -5.1638404255238222e-03, -2.0009084981296581e-04, 9.3772097474935156e-05, 1.5329225373411138e-04, -5.9661252555353228e-05, -6.5558092744413588e-05, -3.2123214635322093e-05, 2.1196006290482856e-07, 1.5015114831000805e-06, 7.9034968274675895e-07, 2.0914585492575019e-08, -3.3585672397519863e-08, -1.9384342923658439e-08, -1.1050506775503151e-09, 7.5983401626286869e-10, 5.5859150310355425e-10, -1.5839815818306704e-10, -1.7993389675501287e-09, -4.0225324183227641e-09, 7.2516367027961742e-09, 7.0640733066475213e-08, 1.8844624496267264e-07, -2.8271678266373582e-07, -2.6671790647765089e-06, -9.1471062403699753e-06, 1.2975820867724207e-05, 9.0529327610977084e-05, 4.8688505952201573e-04, 9.1417067491222893e-04, 1.1629290331134970e-03, 1.0777218729064123e-04, -5.2942300563580801e-05, -5.2379389307198859e-05, -9.2362029567769587e-06, 2.2431205136392955e-06, 2.4098824589892202e-06, 6.2095721467016196e-07, -4.5014562338350703e-07, 1.5164326278190032e-06, -3.0746715536842729e-04, -1.2288410885350558e-04, 4.5259325093778233e-05, 1.4886718530523135e-03, 4.4538426512244619e-03, 4.9832866583489031e-03, 4.8416933764634743e-03, 3.7860249885947328e-03, 2.7432862400731013e-03, 1.8847484062345862e-03, 6.1857524042052692e-04, -1.4368493577821204e-03, -3.7899539038166244e-03, -7.1167354770744241e-03, -7.4045351777962433e-03, -4.8445129846925354e-03, -2.6608458334667244e-04, 1.6290706013389852e-04, 8.2847680483965063e-05, -5.5203172734316711e-05, -7.3105217351459854e-05, -2.8883275000451692e-05, -1.2901273403637136e-07, 1.7983100545626845e-06, 6.9774359397828595e-07, 3.0888984020130427e-08, -4.2461053892110432e-08, -1.7121390771427736e-08, -1.3164269145664277e-09, 1.0009937749565559e-09, 5.0216679232039600e-10, -1.5507908051790552e-10, -1.8066295215748724e-09, -4.0220345003452989e-09, 7.2548899990017377e-09, 7.0639937543471730e-08, 1.8844543955076956e-07, -2.8271751773210050e-07, -2.6671799032879659e-06, -9.1471045668021020e-06, 1.2975816204621607e-05, 9.0529337171671266e-05, 4.8688500304487701e-04, 9.1417081166877186e-04, 1.1629288531607867e-03, 1.0777233571790000e-04, -5.2942315530883806e-05, -5.2379640471471398e-05, -9.2354726371349574e-06, 2.2415391458694908e-06, 2.4130026158777212e-06, 6.1510292057509117e-07, -4.3223226283426244e-07, 1.4769511359749229e-06, -1.1201133102275247e-04, -3.3579356879985615e-04, 2.7959195458703186e-04, 1.7125238885128387e-03, 4.4916964553243545e-03, 5.0503849846124061e-03, 4.8809099688140907e-03, 3.7837004477172011e-03, 2.7282369591390757e-03, 1.8657443089876054e-03, 6.0227383972234413e-04, -1.4448847581998957e-03, -3.8120678234442387e-03, -7.0937203281061165e-03, -7.6137679018291040e-03, -5.0365160454747884e-03, -3.6719606219496351e-04, 1.4580014033555984e-04, 7.5669647474473284e-05, -5.9177434966549615e-05, -7.1243384487435551e-05, -2.8488606050281156e-05, 1.6738408290137513e-07, 1.7739598324321336e-06, 6.8816922863386377e-07, 2.1177598433442168e-08, -4.2448833248749239e-08, -1.6889230908018367e-08, -1.0487780977740590e-09, 1.0260628409880556e-09, 5.0285421604402605e-10, -1.6168045212112264e-10, -1.8075870101663238e-09, -4.0212499615159981e-09, 7.2526701429075470e-09, 7.0640785410604136e-08, 1.8844605090634022e-07, -2.8271762910764958e-07, -2.6671789374928544e-06, -9.1471090778492774e-06, 1.2975820661021768e-05, 9.0529331695355685e-05, 4.8688512702167676e-04, 9.1417047496410555e-04, 1.1629293151276456e-03, 1.0777192696071001e-04, -5.2942192285191508e-05, -5.2379193600882688e-05, -9.2369364247672954e-06, 2.2447921428194254e-06, 2.4065215289202462e-06, 6.2733481773127181e-07, -4.6979713539535561e-07, 1.5600384032131778e-06, -7.4490411050430266e-05, -3.8320668407461339e-04, 3.8597338881815515e-04, 1.7920110438991127e-03, 4.5456933800674497e-03, 5.0728397525719735e-03, 4.8999321555594690e-03, 3.7833787141296170e-03, 2.7204641710360418e-03, 1.8550754607510184e-03, 5.9484152044451261e-04, -1.4489029095550200e-03, -3.8126654813057728e-03, -7.1119573783347597e-03, -7.6984209150647567e-03, -5.1248075602825099e-03, -4.2982268715531481e-04, 1.4582719994790579e-04, 7.0589440758347027e-05, -5.6008117154245313e-05, -7.0722575629073153e-05, -2.7964151498502347e-05, 1.7097153569853654e-07, 1.7666922867699256e-06, 6.7267250390436715e-07, 1.8209214883385758e-08, -4.2425178489377807e-08, -1.6522194323109621e-08, -9.2026474133688300e-10, 1.0314752001610921e-09, 4.9494122994107274e-10, -1.6449488058028865e-10, -1.8085533897170330e-09, -4.0220661286910746e-09, 7.2530156551819372e-09, 7.0640461761496947e-08, 1.8844531448436268e-07, -2.8271725875107215e-07, -2.6671821372230758e-06, -9.1470984235660356e-06, 1.2975841947718592e-05, 9.0529329097412462e-05, 4.8688490264195086e-04, 9.1417128168506685e-04, 1.1629281225279486e-03, 1.0777300151475514e-04, -5.2942683806838243e-05, -5.2379949390652866e-05, -9.2340327705639318e-06, 2.2381167266260875e-06, 2.4199525187063031e-06, 6.0182073386436455e-07, -3.9110699939911772e-07, 1.3852896416149604e-06, -8.8489598408867515e-05, -3.5433149055065548e-04, 3.5476846111351048e-04, 1.7583587932473886e-03, 4.5436773183376040e-03, 5.0664320297614902e-03, 4.8903012231889739e-03, 3.7841222995615952e-03, 2.7220556291412297e-03, 1.8586359911181398e-03, 5.9871917717991066e-04, -1.4470498531676430e-03, -3.8097777362041188e-03, -7.1272409866180164e-03, -7.6549596799906890e-03, -5.0942609245598824e-03, -4.2263786938876959e-04, 1.4353645468774564e-04, 7.3115024635862883e-05, -5.5440335004957448e-05, -7.0009561529575185e-05, -2.7943756988785132e-05, 1.7544386842025406e-07, 1.7435080741145322e-06, 6.6667636587085959e-07, 1.7156829552962181e-08, -4.2026648583713992e-08, -1.6275615040821389e-08, -8.5736993379718646e-10, 1.0280698052849563e-09, 4.8776447292254391e-10, -1.6809471020250589e-10, -1.8079928068597722e-09, -4.0211674464394123e-09, 7.2525961328820084e-09, 7.0639711427010021e-08, 1.8844525291424248e-07, -2.8271847958331821e-07, -2.6671748870592276e-06, -9.1470986147612263e-06, 1.2975768452678298e-05, 9.0529692032399850e-05, 4.8688522179467296e-04, 9.1416930453067753e-04, 1.1629310734913071e-03, 1.0777012842729276e-04, -5.2941155124924550e-05, -5.2378828339045853e-05, -9.2397565053725303e-06, 2.2517432186454703e-06, 2.3921606971859591e-06, 6.5492393365711860e-07, -5.5574376333711664e-07, 1.7525919222523625e-06, -1.0443170593259666e-04, -3.3707560419677138e-04, 3.2990880046551078e-04, 1.7393095936605518e-03, 4.5338233729573570e-03, 5.0600095621248474e-03, 4.8857511645224172e-03, 3.7831195149381144e-03, 2.7234818310944049e-03, 1.8608919881441567e-03, 6.0090615664224953e-04, -1.4451981922077688e-03, -3.8091520091889375e-03, -7.1232869145077329e-03, -7.6353934426476181e-03, -5.0745114934364786e-03, -4.0980868529369734e-04, 1.4380263865040966e-04, 7.4509484767750357e-05, -5.5254615659183678e-05, -6.9864704170758603e-05, -2.7991344230122702e-05, 1.6115083672104378e-07, 1.7298170817031292e-06, 6.6554168681219410e-07, 1.7033867510057128e-08, -4.1572768516570722e-08, -1.6175016336866647e-08, -8.3432149340298412e-10, 1.0179795568510727e-09, 4.8317026081327614e-10, -1.6915468808650913e-10, -1.8079337299437784e-09, -4.0215400847880842e-09, 7.2517293642297134e-09, 7.0638296411363048e-08, 1.8844359014068594e-07, -2.8271095870837704e-07, -2.6671604347062712e-06, -9.1470920436299190e-06, 1.2976147007659917e-05, 9.0528391689369996e-05, 4.8688492142011602e-04, 9.1417404194860563e-04, 1.1629235945519300e-03, 1.0777749108400927e-04, -5.2945661438067500e-05, -5.2380103930144747e-05, -9.2285953276522066e-06, 2.2240223019848009e-06, 2.4494504514572385e-06, 5.4454735040187358e-07, -2.1185749235399370e-07, 9.8104991170990669e-07, -1.0151938247123725e-04, -3.4325590925145092e-04, 3.3527431334090128e-04, 1.7494784809051775e-03, 4.5322178788411204e-03, 5.0616505490416706e-03, 4.8874051665679791e-03, 3.7827186477351754e-03, 2.7227990165854567e-03, 1.8599378188636842e-03, 6.0008692721709098e-04, -1.4451468895156361e-03, -3.8091171545251920e-03, -7.1184643329264500e-03, -7.6461891355882137e-03, -5.0827368414882749e-03, -4.0937560629043075e-04, 1.4406670656183954e-04, 7.4736360027963250e-05, -5.5222295541389058e-05, -6.9920347348627760e-05, -2.8018114853098686e-05, 1.4663078913230759e-07, 1.7276296771772537e-06, 6.6536417640093042e-07, 1.7556352618742859e-08, -4.1383322461915439e-08, -1.6127775838501845e-08, -8.4225301520246109e-10, 1.0113604982647925e-09, 4.8134571766541689e-10, -1.6921757885982741e-10, -1.8083466608230471e-09, -4.0231372235640262e-09, 7.2488866945672262e-09, 7.0637747124171254e-08, 1.8845762873344329e-07, -2.8268302853217948e-07, -2.6671492827576982e-06, -9.1470159363927209e-06, 1.2974494985976416e-05, 9.0532278231488067e-05, 4.8688361109533430e-04, 9.1416306391568867e-04, 1.1629426652604400e-03, 1.0775896622958712e-04, -5.2932967618855593e-05, -5.2379776852053139e-05, -9.2497916547289866e-06, 2.2803402182037733e-06, 2.3316831253279539e-06, 7.7323408379913888e-07, -9.2903477647184041e-07, 2.6001495251207554e-06, -9.8314941293662489e-05, -3.4714923611308275e-04, 3.4074076416887230e-04, 1.7533679551189521e-03, 4.5345220268061329e-03, 5.0627352265088296e-03, 4.8884396833812661e-03, 3.7828972069760755e-03, 2.7224054372468817e-03, 1.8593969759440471e-03, 5.9956319963857044e-04, -1.4454593905631891e-03, -3.8089246202318815e-03, -7.1191541312723740e-03, -7.6506760261405649e-03, -5.0875292240542451e-03, -4.1163624129628417e-04, 1.4416378689794079e-04, 7.4520722258135147e-05, -5.5209710929271310e-05, -6.9975438478397464e-05, -2.8023659534397256e-05, 1.4143937213991896e-07, 1.7285619511137290e-06, 6.6590192015602689e-07, 1.7948744735033243e-08, -4.1319835498792278e-08, -1.6128031668486320e-08, -8.5724665137721506e-10, 1.0068401990094436e-09, 4.8059088028358076e-10, -1.6933881132454118e-10, -1.8102479924542473e-09, -4.0269216707255985e-09, 7.2482267175842229e-09, 7.0649567100822892e-08, 1.8848569194146426e-07, -2.8265680023633135e-07, -2.6669230447358649e-06, -9.1475915402433827e-06, 1.2978906510019173e-05, 9.0513775255931410e-05, 4.8689289904561242e-04, 9.1419070751895071e-04, 1.1628970363089296e-03, 1.0780724416709552e-04, -5.2966662242476779e-05, -5.2374461287370278e-05, -9.2096874882625392e-06, 2.1673296814778316e-06, 2.5734492342462285e-06, 3.0071997568492659e-07, 5.6345883005714734e-07, -7.9435147171211945e-07, -9.9087652749832683e-05, -3.4561364980989701e-04, 3.3911103899865322e-04, 1.7502905446973274e-03, 4.5349654408832927e-03, 5.0620091319851911e-03, 4.8881691993014394e-03, 3.7828739376216947e-03, 2.7227428029158694e-03, 1.8595769048973324e-03, 5.9986093791789333e-04, -1.4454862407483962e-03, -3.8090106268421596e-03, -7.1200895300277903e-03, -7.6481569262677514e-03, -5.0844647749729447e-03, -4.1201697346288568e-04, 1.4434560895174717e-04, 7.4427334231422091e-05, -5.5227584262639793e-05, -6.9999513073848115e-05, -2.8031700798679033e-05, 1.4271346143954482e-07, 1.7297708403156875e-06, 6.6672857153095614e-07, 1.8191648463035089e-08, -4.1270207671567486e-08, -1.6148972078184449e-08, -8.7074562217146455e-10, 1.0023413066483642e-09, 4.8024644165394446e-10, -1.7095331163315911e-10, -1.8150122408440352e-09, -4.0300329074306057e-09, 7.2618731688356810e-09, 7.0711666206032067e-08, 1.8860334053900690e-07, -2.8248425664289113e-07, -2.6679691729114601e-06, -9.1462729667683126e-06, 1.2963108517329797e-05, 9.0564861432430077e-05, 4.8685989460935743e-04, 9.1412702536243604e-04, 1.1630158409459766e-03, 1.0768807884555800e-04, -5.2878177501394785e-05, -5.2401393010523527e-05, -9.2841247889010291e-06, 2.3944377774928229e-06, 2.0812074334156279e-06, 1.2749330551321825e-06, -2.5333527091759775e-06, 6.3132498862522937e-06, -1.0015288615124136e-04, -3.4415456741514764e-04, 3.3726784911753305e-04, 1.7499877970554418e-03, 4.5335348335101486e-03, 5.0625236896736673e-03, 4.8873375625398240e-03, 3.7833088871823441e-03, 2.7225615850849337e-03, 1.8599999205380045e-03, 5.9980868025039449e-04, -1.4453706154092735e-03, -3.8089125863663385e-03, -7.1206555194132486e-03, -7.6457166979607520e-03, -5.0849416598960882e-03, -4.1006103145513930e-04, 1.4372420240840749e-04, 7.4678000191651496e-05, -5.5311357672742064e-05, -6.9967232820373253e-05, -2.8041584866063862e-05, 1.3648750150320932e-07, 1.7278235520186192e-06, 6.6719841473139401e-07, 1.8675232172163121e-08, -4.1130194605471394e-08, -1.6143633563221781e-08, -8.9020857139520803e-10, 9.9379118022118688e-10, 4.7778691106856262e-10, -1.7525992870783425e-10, -1.8191569873610624e-09, -4.0144384705288663e-09, 7.3417459416736741e-09, 7.0859142592657781e-08, 1.8865535208654159e-07, -2.8344790123293207e-07, -2.6667507290644490e-06, -9.1537335411615950e-06, 1.3013413223138086e-05, 9.0420477708386390e-05, 4.8698125286247840e-04, 9.1427750436809223e-04, 1.1627178302205834e-03, 1.0798670571356616e-04, -5.3112382633420732e-05, -5.2319598271417540e-05, -9.1595773763371822e-06, 1.9401479117013044e-06, 3.0842470760106787e-06, -7.2026191312276125e-07, 3.8742382291703965e-06, -8.5335581996937374e-06, -9.9061893290182119e-05, -3.4604093891707900e-04, 3.3910734610272624e-04, 1.7487096708688980e-03, 4.5356877394872770e-03, 5.0607038038180197e-03, 4.8889450522465999e-03, 3.7823490120149350e-03, 2.7233479817250147e-03, 1.8593741317832028e-03, 6.0016052158570754e-04, -1.4457367714600412e-03, -3.8093962986628545e-03, -7.1188390090573001e-03, -7.6494198555092955e-03, -5.0813381126995627e-03, -4.1374833692651964e-04, 1.4534745499146973e-04, 7.4243074319583216e-05, -5.5021150941610651e-05, -7.0115907495825044e-05, -2.8092663866382305e-05, 1.2432431291755936e-07, 1.7255884148592376e-06, 6.6694093023388480e-07, 1.8907815124843356e-08, -4.0827795691361656e-08, -1.6106619842059296e-08, -9.0647295188973648e-10, 9.7608140619848561e-10, 4.7038607088752647e-10, -1.8085936903926986e-10, -1.8135269868533839e-09, -3.9473883230850808e-09, 7.5354406362345598e-09, 7.1196409990315610e-08, 1.8846124268300987e-07, -2.8354573736988332e-07, -2.6814860514952864e-06, -9.1401897086717154e-06, 1.2888330931451746e-05, 9.0954274009686858e-05, 4.8655844265550079e-04, 9.1385454748985182e-04, 1.1634145637487072e-03, 1.0722028135619560e-04, -5.2504726548545377e-05, -5.2578081014630074e-05, -9.3870788446855785e-06, 2.8216499798451936e-06, 1.0549914801131870e-06, 3.3583184455001844e-06, -9.3143919298443317e-06, 2.2397640283649406e-05, -1.0054103410966621e-04, -3.4289021718596603e-04, 3.3680244920680308e-04, 1.7544080986025014e-03, 4.5301455666504533e-03, 5.0651267019316054e-03, 4.8854450485851034e-03, 3.7848755013249122e-03, 2.7217792817349970e-03, 1.8606942891546373e-03, 5.9853595155639344e-04, -1.4453556442449549e-03, -3.8086843363264351e-03, -7.1214113031905588e-03, -7.6421702227111900e-03, -5.0922086347250537e-03, -4.0568787189160883e-04, 1.4085748456836003e-04, 7.5436795717314102e-05, -5.5583016346942246e-05, -6.9589441376863146e-05, -2.8043948613298294e-05, 1.0835406700762586e-07, 1.6959102782089329e-06, 6.6133649070251551e-07, 1.9325334981205259e-08, -4.0048585326821727e-08, -1.5834056465405429e-08, -9.3281789093741484e-10, 9.3687279695232537e-10, 4.5054490822556744e-10, -1.8328699094485174e-10, -1.7618267919740490e-09, -3.7407160634838049e-09, 7.8958156502715584e-09, 7.0740239669167017e-08, 1.8641538653053923e-07, -2.9487901642298499e-07, -2.6542593306558591e-06, -9.1950707875375977e-06, 1.3275642584969593e-05, 8.9740285356948145e-05, 4.8769409593412555e-04, 9.1475253576655353e-04, 1.1614116821555202e-03, 1.0912760947863562e-04, -5.3955146617059701e-05, -5.1778829869206493e-05, -9.0680713248718868e-06, 1.0405825546988198e-06, 5.1061622299533767e-06, -4.9018883144409664e-06, 1.7666109866723741e-05, -4.1693930006251462e-05, -9.4868988340690769e-05, -3.5323808514839140e-04, 3.4586292036036643e-04, 1.7412825657205271e-03, 4.5428072711770264e-03, 5.0523609545010187e-03, 4.8930166274297783e-03, 3.7796114851443505e-03, 2.7263214052424163e-03, 1.8570257312683081e-03, 6.0043129119222508e-04, -1.4491593533762955e-03, -3.8088934999267847e-03, -7.1124063083451636e-03, -7.6545409953639272e-03, -5.0653769928661468e-03, -4.3067412438845096e-04, 1.5042400327130309e-04, 7.0681075189302087e-05, -5.3192220861837908e-05, -7.0032018218552531e-05, -2.7800284381699340e-05, 1.3590297560018736e-07, 1.7101919955596237e-06, 6.4765850250806496e-07, 1.7054108068608170e-08, -3.9063348935815343e-08, -1.5288903201172619e-08, -8.2826272243216072e-10, 8.8177245607706962e-10, 4.2112283659431846e-10, -1.7274590234010821e-10, -1.6438563866789761e-09, -3.4616455135846012e-09, 7.7990162619288265e-09, 6.9464254577234386e-08, 1.7760753791364904e-07, -2.8569497313027446e-07, -2.7334467210023686e-06, -8.9755392554280732e-06, 1.2296909550989828e-05, 9.3160435959255996e-05, 4.8469672464004042e-04, 9.1193112161573294e-04, 1.1659544481915649e-03, 1.0431475811222392e-04, -4.9681068181325373e-05, -5.3526815969653745e-05, -9.4166915178359872e-06, 4.3154571613651486e-06, -3.0747399734254617e-06, 1.1678780642817091e-05, -3.6952941302588645e-05, 8.9917578585715918e-05, -1.0740087075551333e-04, -3.2893630238338796e-04, 3.2786777938863563e-04, 1.7743991278703713e-03, 4.5103042258503399e-03, 5.0795342224118079e-03, 4.8719970221561288e-03, 3.7919266233653673e-03, 2.7165000555247273e-03, 1.8641101021332138e-03, 5.9038753856302875e-04, -1.4410480274043118e-03, -3.8076522983593979e-03, -7.1214064414956806e-03, -7.6222752516929186e-03, -5.1222733469779031e-03, -3.8034074917351886e-04, 1.2403941229328358e-04, 7.5066324635847246e-05, -5.8995756278481978e-05, -6.5597930284408442e-05, -2.6474025089435918e-05, 3.6848371046837485e-07, 1.5440069308891554e-06, 6.1055484311137924e-07, 1.3346170790778022e-08, -3.4143035467550922e-08, -1.3333455982865970e-08, -6.0880276536202926e-10, 7.7151050547903232e-10, 3.5596106315630930e-10, -1.4505524457638936e-10, -1.3419216676714089e-09, -3.0979620748870697e-09, 7.4073419546429519e-09, 5.7290065779680411e-08, 1.6259882841062159e-07, -3.4710096741182852e-07, -2.3707588349432929e-06, -9.0468365317327673e-06, 1.4635725631151301e-05, 8.3722500537400911e-05, 4.9379118310778950e-04, 9.2002019084076790e-04, 1.1540898791582612e-03, 1.1664872058909058e-04, -5.9972358886394277e-05, -4.7545540575327522e-05, -8.9251853082985590e-06, -2.1202532947376014e-06, 1.2679922740580375e-05, -2.1250008265598710e-05, 7.2010734309326408e-05, -1.7614449447499961e-04, -1.1068034383938648e-04, -3.9073848338950275e-04, 3.7626549131983999e-04, 1.6662159877287243e-03, 4.6306069329214153e-03, 4.9994653104747308e-03, 4.9350013925528857e-03, 3.7446725843933888e-03, 2.7392389818322732e-03, 1.8368762387065106e-03, 6.2324519111407739e-04, -1.4636830951247903e-03, -3.7731386710297687e-03, -7.1167569279185529e-03, -7.7355519931977335e-03, -4.9728207439724021e-03, -4.8666898352346471e-04, 1.9893754177496581e-04, 4.0695324678200032e-05, -4.7484679521050250e-05, -7.2617769979651422e-05, -2.5257994759985870e-05, -1.2771079665883011e-08, 1.9420523367290831e-06, 5.2133565106675915e-07, 1.8588557906105041e-08, -3.7458098001087910e-08, -9.9498794403960313e-09, -2.3397319390099092e-10, 8.3565175872796216e-10, 2.5756974123805534e-10, 4.5635876533885872e-12, -1.3929690146442580e-09, -1.9991145846739219e-09, 3.6158634181444882e-10, 6.2138905302394783e-08, 8.8262581897296057e-08, -1.3989886954671334e-07, -3.1179880609463924e-06, -6.6164227967681691e-06, 8.4275341258267984e-06, 1.0307337310264179e-04, 4.7056026543537764e-04, 8.9795349374796661e-04, 1.2086559925898728e-03, 6.6393598091141811e-05, -3.0265891592041322e-05, -6.4439468082382219e-05, -4.8777010709386351e-06, 1.3311976836486925e-05, -2.8339554628014144e-05, 6.2762780144921815e-05, -2.0851532677708482e-04, 5.1819965423214763e-04, -4.2225731953240921e-05, -1.7636481026772060e-04, 1.1776407603775185e-04, 1.8705864039190818e-03, 4.4470258305362225e-03, 5.3630851077096494e-03, 4.7446796140210822e-03, 3.8305342796968768e-03, 2.5856145169031904e-03, 1.9338813533884558e-03, 5.5905726402305858e-04, -1.2394148647203243e-03, -3.7526487329713025e-03, -7.2406732941953759e-03, -7.9372880489841941e-03, -5.3936241287057853e-03, 1.8682397735700332e-04, 1.2793230546069811e-04, 2.3693547992880787e-05, -1.1463092121747861e-04, -6.4004538846768792e-05, -2.5855343736253080e-05, 2.6680445597939944e-06, 9.7302144055655708e-07, 3.5352834095517531e-07, -8.5077697559767787e-08, -2.5450759854640792e-08, -6.8338221336937312e-09, 1.5363787300893975e-09, 5.8720922086396773e-10, 2.4313559711830902e-10, -1.2999298099264974e-10, -3.2567125970821287e-11, -5.2378896116662922e-09, 5.7339351706243774e-09, -1.1102785067875322e-09, 2.6063236150521499e-07, -2.9544237594209444e-07, 3.0187515398567995e-07, -9.9675371761275488e-06, 2.7428691731153120e-05, 3.3111483455963578e-05, 4.6551141644737089e-04, 1.0343457385344622e-03, 1.1460207376167708e-03, 1.5377057289695266e-04, -1.9208945812818632e-04, 1.6198415982306581e-05, -1.1380118896584055e-05, -1.7033874671140703e-05, 6.9741325131505820e-05, -1.4408832306401337e-04, 4.6675394397443755e-04, -1.1518024051828391e-03, -9.5173102142787525e-04, -4.2269377234769554e-04, 4.8528943975206145e-04, 3.8836624448579252e-04, 6.1491157785392905e-03, 4.3450126766366136e-03, 5.4165308057472217e-03, 3.4244609428828281e-03, 2.6462909542295625e-03, 1.7991503966042072e-03, 9.5903846247751695e-04, -1.8400926425380243e-03, -2.6229027365621410e-03, -8.0679510518825472e-03, -8.0635628703299468e-03, -5.9761233575911614e-03, 1.5458858271651282e-03, -3.6626018802878805e-04, 5.3277918331252200e-05, -1.1413822220231125e-04, -5.8010109051304332e-05, -3.0086329559646089e-05, 5.3959301126940565e-06, 3.4711426800810284e-07, 1.8183879635987488e-07, -1.0607901852776637e-07, -1.9700875793845097e-08, -3.2125983272549789e-09, 1.9706066931241342e-09, 4.5506539901878258e-10, 1.4342494910907916e-10, -1.4770446557467107e-11, 8.2606182419571461e-11, -3.9930456077329635e-09, -2.9812380374690667e-10, -5.0436943694904396e-09, 2.0344142026497598e-07, -9.3807751792699713e-09, 9.8505029639693511e-07, -9.3311249317830542e-06, 3.1131860570759507e-05, 4.5553161412471892e-05, 3.5999348173212903e-04, 6.0381926393730085e-04, 2.1112475764835680e-03, -7.5118894968759448e-04, 2.2193834047884572e-04, -1.3221630126353029e-04, 4.4064040450901652e-05, 2.6066364004743818e-05, -8.7679240724781483e-05, 1.9355228760749646e-04, -6.3787076254076536e-04, 1.5242606654418114e-03}; static const casadi_real casadi_c3[129] = {-5.6818181818181817e+00, -5.6818181818181817e+00, -5.6818181818181817e+00, -4.3181818181818183e+00, -3.6363636363636367e+00, -2.9545454545454550e+00, -2.2727272727272734e+00, -1.5909090909090917e+00, -9.0909090909091006e-01, -2.2727272727272840e-01, 4.5454545454545325e-01, 1.1363636363636349e+00, 1.8181818181818166e+00, 2.4999999999999982e+00, 3.1818181818181799e+00, 3.8636363636363615e+00, 4.5454545454545432e+00, 5.2272727272727249e+00, 5.9090909090909065e+00, 6.5909090909090882e+00, 7.2727272727272698e+00, 7.9545454545454515e+00, 8.6363636363636331e+00, 9.3181818181818148e+00, 9.9999999999999964e+00, 1.0681818181818178e+01, 1.1363636363636358e+01, 1.2045454545454541e+01, 1.2727272727272727e+01, 1.3409090909090910e+01, 1.4090909090909093e+01, 1.4772727272727273e+01, 1.5454545454545455e+01, 1.6136363636363637e+01, 1.6818181818181820e+01, 1.7500000000000000e+01, 1.8181818181818180e+01, 1.8863636363636363e+01, 1.9545454545454547e+01, 2.0227272727272727e+01, 2.0909090909090907e+01, 2.1590909090909090e+01, 2.2272727272727273e+01, 2.2954545454545453e+01, 2.3636363636363633e+01, 2.4318181818181817e+01, 25., 2.5681818181818180e+01, 2.6363636363636360e+01, 2.7045454545454543e+01, 2.7727272727272727e+01, 2.8409090909090907e+01, 2.9090909090909086e+01, 2.9772727272727270e+01, 3.1136363636363633e+01, 3.1136363636363633e+01, 3.1136363636363633e+01, -2.3747727272727275e+00, -2.3747727272727275e+00, -2.3747727272727275e+00, -2.3747727272727275e+00, -1.6934090909090913e+00, -1.3527272727272732e+00, -1.0120454545454551e+00, -6.7136363636363705e-01, -3.3068181818181897e-01, 9.9999999999988987e-03, 3.5068181818181721e-01, 6.9136363636363551e-01, 1.0320454545454534e+00, 1.3727272727272712e+00, 1.7134090909090895e+00, 2.0540909090909079e+00, 2.3947727272727253e+00, 2.7354545454545436e+00, 3.0761363636363619e+00, 3.4168181818181802e+00, 3.7574999999999985e+00, 4.0981818181818159e+00, 4.4388636363636342e+00, 4.7795454545454525e+00, 5.1202272727272700e+00, 5.4609090909090883e+00, 5.8015909090909066e+00, 6.1422727272727240e+00, 6.4829545454545432e+00, 6.8236363636363606e+00, 7.1643181818181780e+00, 7.5049999999999972e+00, 7.8456818181818146e+00, 8.1863636363636338e+00, 8.5270454545454513e+00, 8.8677272727272687e+00, 9.2084090909090932e+00, 9.5490909090909106e+00, 9.8897727272727280e+00, 1.0230454545454547e+01, 1.0571136363636365e+01, 1.0911818181818184e+01, 1.1252500000000001e+01, 1.1593181818181819e+01, 1.1933863636363638e+01, 1.2274545454545455e+01, 1.2615227272727275e+01, 1.2955909090909092e+01, 1.3296590909090909e+01, 1.3637272727272727e+01, 1.3977954545454546e+01, 1.4318636363636363e+01, 1.4659318181818183e+01, 15., 1.5340681818181817e+01, 1.5681363636363637e+01, 1.6022045454545456e+01, 1.6362727272727273e+01, 1.6703409090909091e+01, 1.7044090909090908e+01, 1.7384772727272725e+01, 1.7725454545454546e+01, 1.8066136363636364e+01, 1.8406818181818181e+01, 1.8747499999999999e+01, 1.9088181818181816e+01, 1.9428863636363634e+01, 1.9769545454545455e+01, 2.0450909090909089e+01, 2.0450909090909089e+01, 2.0450909090909089e+01, 2.0450909090909089e+01}; static const casadi_real casadi_c4[3685] = {-4.3481149326150765e-03, 3.2826553693962078e-03, -1.4653719157544411e-03, 5.0641450482318690e-04, -2.4388547439091121e-04, 1.2728171244537866e-04, -5.1875617296026633e-05, 3.8174660974051727e-05, -4.2811742473718162e-06, 1.7142908058501161e-05, 7.5942357970308627e-06, 1.3026417950316033e-05, 1.2692588272404659e-05, 1.3919307802943981e-05, 1.3283617747741200e-05, 1.5540086384525920e-05, 1.6173110796033341e-05, 1.3820096430902651e-05, 1.4892646407485555e-05, 1.4872482738959025e-05, 1.1252420010064712e-05, 1.3215714330327977e-05, 7.2489483812984701e-06, 1.3518330369104159e-05, 4.2757555471506503e-06, 5.7347852608011229e-06, 1.9987522898445853e-06, -3.7651518382531002e-06, -4.1142902936774917e-06, -7.8364716976364601e-06, -1.1224810687569808e-05, -1.3020157266105392e-05, -2.4837810245044445e-05, -2.2383216227717107e-05, -2.7530398531233624e-05, -3.6920170066401248e-05, -4.1160397825923400e-05, -4.3191520666313599e-05, -4.0121782491867042e-05, -6.4109710436147105e-05, -4.0957806529601237e-05, -8.6742201973008526e-05, -3.4836937160970249e-06, -1.4975310516406048e-04, 2.4653508088351428e-04, -5.7602100213513530e-04, 2.5460637237262329e-04, -1.5303963630668160e-04, 5.7808597879044354e-06, -9.7167463617861549e-05, -3.0524807380735708e-05, -9.6179618061034700e-05, 3.2827510693389517e-05, -1.5276392217807022e-04, -2.1359829643352590e-04, 1.7469536949497877e-03, -1.3459415449752366e-03, 5.5717601330545607e-04, -2.3751246978970676e-04, 6.1630756192929473e-05, -9.7050693979701397e-05, -2.7925600583894941e-05, -7.0689258436026567e-05, -5.9026807759583397e-05, -7.4202011489414230e-05, -7.6369099456085471e-05, -8.4613741239376178e-05, -8.9672835556522251e-05, -9.6040047445008353e-05, -1.0123956267669640e-04, -1.0448303549583440e-04, -1.0627952541352251e-04, -1.0531753684474635e-04, -1.0201751384774499e-04, -9.7419324703008903e-05, -9.1037370350148528e-05, -8.2580205022046715e-05, -7.0490794712788074e-05, -5.8944871181576541e-05, -3.9945773909172422e-05, -2.1986332731947777e-05, -2.0551877152955034e-06, 2.0782528608889739e-05, 4.6461540163487969e-05, 7.4709588879097455e-05, 1.0417635084439963e-04, 1.3618636119182986e-04, 1.7087771979944905e-04, 2.0593859734361480e-04, 2.4350139974484153e-04, 2.8038491274987032e-04, 3.1979465745075181e-04, 3.5858555284327964e-04, 3.9146186923912779e-04, 4.2859324056256087e-04, 4.4797383701097870e-04, 4.8617200064238197e-04, 4.8434772265784631e-04, 5.5435540287698121e-04, 4.6253032004815731e-04, 5.0195358316103278e-04, 4.5900188922598506e-04, 5.5576923750182139e-04, 4.9401416740808834e-04, 5.1568007595811927e-04, 4.9960736062813760e-04, 5.1122090530600350e-04, 5.5191462982037698e-04, 5.4409476699981973e-04, 1.4588776269756284e-03, -5.2159058239753227e-04, 4.2851482429908218e-04, -1.5496481132069168e-04, 8.6557922970283661e-05, -1.1485290892726888e-06, 4.9674569468785047e-05, 3.1206032126267561e-05, 4.7102579506699827e-05, 4.5954872654057483e-05, 5.3051475721011335e-05, 5.6055591456952159e-05, 6.1042875274048419e-05, 6.4985617234928142e-05, 6.9117588193568988e-05, 7.2663477882964692e-05, 7.5065164446320304e-05, 7.6215885296965213e-05, 7.5407909957782293e-05, 7.3164476355656871e-05, 6.9854315565394398e-05, 6.5280054164989360e-05, 5.9104493925616480e-05, 5.1321807007700254e-05, 4.2984100612705051e-05, 3.0425936839547502e-05, 1.7596962402013916e-05, 3.5646411775738795e-06, -1.2462088920105197e-05, -3.0034225617488197e-05, -4.9102136006836522e-05, -6.9272878456112102e-05, -9.1740027945489550e-05, -1.1572837475472969e-04, -1.3981600183143178e-04, -1.6546959316360993e-04, -1.9164101126278171e-04, -2.1853952287112510e-04, -2.4377462800484473e-04, -2.6715435922992914e-04, -2.9134677643464363e-04, -3.0799137862481257e-04, -3.2670651794877020e-04, -3.3151863756682165e-04, -3.4763919133402876e-04, -3.3569704912578269e-04, -3.5492937599842372e-04, -3.3224806903917742e-04, -3.4611631829448153e-04, -3.3637394454132802e-04, -3.4268318777536111e-04, -3.4180424993867503e-04, -3.3970778059770612e-04, -3.8018296656232992e-04, -3.6046739400583810e-04, -7.9349743644819420e-04, 3.0132537862922635e-04, -1.8370306945177193e-04, 1.0559702040369243e-04, -1.1770628611815735e-05, 3.7520136905633619e-05, 1.7415107634380367e-05, 3.2514629315033225e-05, 3.0159072232381623e-05, 3.6425464550690970e-05, 3.8408051988477951e-05, 4.2501087130549647e-05, 4.5617867670780243e-05, 4.9191945705618495e-05, 5.2425316297101399e-05, 5.5522763153879190e-05, 5.7731496585975567e-05, 5.9051184023030390e-05, 5.9008729781435953e-05, 5.7906690040441383e-05, 5.6077001153471279e-05, 5.3500009836011941e-05, 4.9547337474264291e-05, 4.4938801010935975e-05, 3.9390489351608104e-05, 3.1441588919600694e-05, 2.2866655337142050e-05, 1.3801173043025139e-05, 3.2350266927355653e-06, -8.5637489612294670e-06, -2.1323502951038631e-05, -3.4880661858929796e-05, -5.0195686937780370e-05, -6.6368316270208616e-05, -8.2935195044195331e-05, -1.0038591331226754e-04, -1.1842926515590740e-04, -1.3713430945515998e-04, -1.5428743061745437e-04, -1.7114164693968204e-04, -1.8657361966075564e-04, -2.0033768708887373e-04, -2.0971464034823251e-04, -2.2026056798824661e-04, -2.2032015078471412e-04, -2.2805736827506001e-04, -2.1849561972219628e-04, -2.2523001908093809e-04, -2.1847079694283650e-04, -2.2275537317045790e-04, -2.2194123343698829e-04, -2.2249770694308946e-04, -2.3635879783510255e-04, -2.3215277338991397e-04, -4.4520403645267881e-04, -4.5429628703080871e-04, -1.4428552548006535e-04, 6.7695222734928152e-05, -8.0810823027182600e-05, -3.1018307370944513e-05, -6.1931901336605491e-05, -5.8022305872901248e-05, -7.1415753935405446e-05, -7.5782290579529121e-05, -8.4238425595489774e-05, -9.0239482875403496e-05, -9.7049320255015309e-05, -1.0307717915867057e-04, -1.0896676373192693e-04, -1.1414881276809036e-04, -1.1836212213881675e-04, -1.2074328136977078e-04, -1.2088648770691365e-04, -1.1832616135477175e-04, -1.1334491550008333e-04, -1.0640453742277386e-04, -9.7387939614678593e-05, -8.5716152346173441e-05, -7.1815847035232999e-05, -5.5115995762161640e-05, -3.4413043127796972e-05, -1.1366083031108531e-05, 1.3550443396216638e-05, 4.1232266638512038e-05, 7.1544345343371729e-05, 1.0411552235622262e-04, 1.3898160950401306e-04, 1.7684412638009628e-04, 2.1677440313623564e-04, 2.5792852248190251e-04, 3.0039452626849650e-04, 3.4376808674761727e-04, 3.8724906699177941e-04, 4.2852721160241414e-04, 4.6769598470359358e-04, 5.0323102627913147e-04, 5.3322673871459420e-04, 5.5578704917388921e-04, 5.7301658883625317e-04, 5.7969910370842676e-04, 5.8342236061990904e-04, 5.7701988074269212e-04, 5.7774830770795926e-04, 5.7452251529828413e-04, 5.7581295098577123e-04, 5.7431709460870062e-04, 5.7088950695359519e-04, 5.7257703626221318e-04, 5.7831566151482494e-04, 7.5710154584909123e-04, 4.4235744866439469e-04, -4.2033384202223335e-05, -1.3289036009747277e-04, -4.9837060110596680e-05, -9.6157281634394118e-05, -9.9120746194921242e-05, -1.1940327818559665e-04, -1.3017266007006069e-04, -1.4468670512261805e-04, -1.5617611363926212e-04, -1.6805508997446567e-04, -1.7871869030340951e-04, -1.8914785054179040e-04, -1.9873302275761132e-04, -2.0750881740016699e-04, -2.1522144578346031e-04, -2.1996434832623202e-04, -2.2205736376777058e-04, -2.1986200078417950e-04, -2.1450236304439152e-04, -2.0696263065292028e-04, -1.9712900264431260e-04, -1.8322223441305518e-04, -1.6666577720244116e-04, -1.4838584179661246e-04, -1.2148288418806913e-04, -9.3713226813299522e-05, -6.4105679919927716e-05, -3.0000419250234001e-05, 7.5167331867256881e-06, 4.8101454693950940e-05, 9.0827813007850200e-05, 1.3895566007390142e-04, 1.8979655097677017e-04, 2.4105687728936259e-04, 2.9483325706310126e-04, 3.4896840293759113e-04, 4.0460911185942472e-04, 4.5479727327284863e-04, 5.0157574049015247e-04, 5.4544248014529173e-04, 5.7706224918550181e-04, 6.0073654529300274e-04, 6.1382865199260950e-04, 6.1665476746920744e-04, 6.0964082373687889e-04, 5.9410834795033118e-04, 5.8751106688940263e-04, 5.8429587667953309e-04, 5.8206155512099261e-04, 5.8275624855097519e-04, 5.8181185019210574e-04, 5.9913777682446545e-04, 6.6163037120342549e-04, 1.2669016767726943e-03, 2.1370357520175895e-03, -4.7963444724154463e-05, 5.1137039313552124e-05, 5.0664364904121420e-05, 8.3602895740610486e-05, 9.1123559556021555e-05, 1.0744625363453240e-04, 1.2054782781396010e-04, 1.3637635063185917e-04, 1.5119383754918538e-04, 1.6653243807443138e-04, 1.8164397799161867e-04, 1.9680414509023678e-04, 2.1119681093880252e-04, 2.2409549380380742e-04, 2.3370038680384578e-04, 2.3739581728214609e-04, 2.3350810627218582e-04, 2.2049435728496020e-04, 1.9905017009100995e-04, 1.7072778020946200e-04, 1.3503112464832365e-04, 9.0295013674322744e-05, 3.7272377467242879e-05, -2.6076172149908788e-05, -1.0371104486066318e-04, -1.8992815242513394e-04, -2.8296516253969312e-04, -3.8541906850420721e-04, -4.9650676505615804e-04, -6.1509233916936384e-04, -7.4185651618222798e-04, -8.7836523128626692e-04, -1.0217508016467300e-03, -1.1696027822811275e-03, -1.3225298259961632e-03, -1.4795882838577190e-03, -1.6376002175811089e-03, -1.7905402269051199e-03, -1.9378375664191733e-03, -2.0766141969783825e-03, -2.1974088006987552e-03, -2.3005413352000653e-03, -2.3823255286351333e-03, -2.4368937159492399e-03, -2.4604027740106685e-03, -2.4649457443045933e-03, -2.4727280030246365e-03, -2.4817422161854744e-03, -2.4856733250298996e-03, -2.4841985847251363e-03, -2.4771730827504237e-03, -2.4606008032976648e-03, -2.4412223222042700e-03, -2.4119926855057164e-03, -9.4052035260145522e-04, 2.6552534909284661e-04, 2.5886275438003880e-04, 3.2427646309222177e-04, 3.9876865245590861e-04, 4.6031675748007747e-04, 5.1650482568597368e-04, 5.7227804754815016e-04, 6.2380439240098187e-04, 6.7048747951002109e-04, 7.1184258615081437e-04, 7.4885861399617490e-04, 7.8172211518813192e-04, 8.0947408154749198e-04, 8.3092626457890659e-04, 8.4443545670362732e-04, 8.4201553828814474e-04, 8.2459393851750523e-04, 7.8540266475676107e-04, 7.2868425530203326e-04, 6.5922108667194543e-04, 5.7695700338832381e-04, 4.7402358460192293e-04, 3.5404661629277051e-04, 2.1796159797478690e-04, 3.9482865949853896e-05, -1.4921856633350744e-04, -3.4995579825738282e-04, -5.7193675423169305e-04, -8.0855633567445545e-04, -1.0601515530477834e-03, -1.3271906578849954e-03, -1.6195550733028585e-03, -1.9243145226023259e-03, -2.2324168660885005e-03, -2.5507184043461403e-03, -2.8686733656368771e-03, -3.1886539794169014e-03, -3.4839342776463236e-03, -3.7645927971472620e-03, -4.0248766062785934e-03, -4.2236213457479480e-03, -4.3746165540503243e-03, -4.4696573397557740e-03, -4.4897800113916642e-03, -4.4463643933319447e-03, -4.3608841759955816e-03, -4.3530327128628726e-03, -4.3615789847339589e-03, -4.3677583358007893e-03, -4.3694542090107272e-03, -4.3531816796593611e-03, -4.3675817012495469e-03, -4.4726856070451820e-03, -5.9531827699926820e-03, -8.3108141146358006e-03, 3.3951790422913570e-04, 3.6742492684965853e-04, 4.2368317447147134e-04, 5.3134761456676265e-04, 5.9978926029515163e-04, 6.5732308574222541e-04, 7.0069978476597176e-04, 7.3163055987143961e-04, 7.4492551628128727e-04, 7.4289384433362526e-04, 7.2789548572691626e-04, 7.0067249377651561e-04, 6.6375422981434715e-04, 6.2028753259157215e-04, 5.7441023821420967e-04, 5.3340953039911557e-04, 5.0371391730540810e-04, 4.8843585409847484e-04, 4.8596662731914889e-04, 4.9802569981104508e-04, 5.2853388247091695e-04, 5.7880585793771214e-04, 6.3932514440278101e-04, 7.1373900047781019e-04, 8.0826814359375582e-04, 9.2100184008909319e-04, 1.0467009544639500e-03, 1.1902600287819129e-03, 1.3649177363259796e-03, 1.5588577292005787e-03, 1.7497519703867648e-03, 1.9588227164131916e-03, 2.1855694215890537e-03, 2.4236904647224750e-03, 2.6827905793291307e-03, 2.9692484486199475e-03, 3.2824601633507436e-03, 3.6003926161005118e-03, 3.9191495398321341e-03, 4.2385230361009427e-03, 4.5880611590303488e-03, 4.9445455965088023e-03, 5.3072794200922438e-03, 5.6912495706967561e-03, 6.0486092586190185e-03, 6.3392448433363530e-03, 6.3955340343532022e-03, 6.4017374298937432e-03, 6.3960543987845730e-03, 6.3936210132752372e-03, 6.3935377565280324e-03, 6.3901379797694571e-03, 6.2506008596384666e-03, 5.3984919493905159e-03, 1.7691820439646663e-03, 1.4355906555644886e-04, 1.6744668169262154e-04, 2.5498223337557229e-04, 3.8064696751383999e-04, 4.5952849124367839e-04, 5.1614893593480288e-04, 5.5683518465740427e-04, 5.8511882294577829e-04, 5.9843763330486889e-04, 6.0040576692373115e-04, 5.9654248485973768e-04, 5.8805069261060744e-04, 5.8153605212572096e-04, 5.8557574365183246e-04, 6.0914554733896079e-04, 6.8075384111870862e-04, 7.9916784809100014e-04, 9.8525008655115515e-04, 1.2252159884937920e-03, 1.5197323337283568e-03, 1.8769143394903147e-03, 2.3188057563497330e-03, 2.8145848640917306e-03, 3.3673644069128830e-03, 4.0651091094447075e-03, 4.8205181666773275e-03, 5.6213892931891579e-03, 6.4852298019122886e-03, 7.4322322857209369e-03, 8.4457213019672184e-03, 9.4585215888070215e-03, 1.0551428256025217e-02, 1.1689986749354883e-02, 1.2838495947950994e-02, 1.4036260441426793e-02, 1.5265355340220742e-02, 1.6546645140748190e-02, 1.7775015012471050e-02, 1.8967187410928552e-02, 2.0109269592480196e-02, 2.1175391110990205e-02, 2.2165835827803744e-02, 2.3047354898242264e-02, 2.3832786937473142e-02, 2.4430521689139770e-02, 2.4844317336882138e-02, 2.4921712025535274e-02, 2.4964349753353592e-02, 2.4968773364352582e-02, 2.4964675567232392e-02, 2.4951298758872503e-02, 2.4944452313343607e-02, 2.5089023719396648e-02, 2.6300009813947756e-02, 3.0092701003727421e-02, -2.9678112162054814e-04, -3.3333217750886393e-04, -1.4456156591586417e-05, 3.2017881296219318e-04, 5.6587876903541751e-04, 8.2290462602246060e-04, 1.0998716469025737e-03, 1.4053725569675331e-03, 1.7586246896353630e-03, 2.1544209845824475e-03, 2.5951685710431105e-03, 3.0977162685503074e-03, 3.6496408895522262e-03, 4.2543988874610347e-03, 4.9270984721844734e-03, 5.6488363829791180e-03, 6.3869243933350021e-03, 7.1361011993258672e-03, 7.8949251745862453e-03, 8.6859320021000393e-03, 9.5175884247368850e-03, 1.0381690238635367e-02, 1.1281670456444383e-02, 1.2226995171410307e-02, 1.3290287496962400e-02, 1.4412829917972297e-02, 1.5562313668303955e-02, 1.6647712921653200e-02, 1.7746658974550571e-02, 1.8859317765751137e-02, 1.9923854796915164e-02, 2.0962751346206496e-02, 2.1967507262434439e-02, 2.2912139605086770e-02, 2.3794520928205498e-02, 2.4600775803132344e-02, 2.5333879948959817e-02, 2.6015590975204755e-02, 2.6628932836418123e-02, 2.7109204278055646e-02, 2.7463897806392593e-02, 2.7728994037467702e-02, 2.7886512318520643e-02, 2.7882931650239653e-02, 2.7742379158656919e-02, 2.7576011698389871e-02, 2.7599597896512160e-02, 2.7673269970635461e-02, 2.7702673504046510e-02, 2.7705467414420273e-02, 2.7681180104864742e-02, 2.7679021029462611e-02, 2.7808158299936436e-02, 2.9423122530617407e-02, 3.2530837705052884e-02, -1.0482227272608905e-03, -3.6993963578985361e-04, 4.3999304711051825e-04, 1.2694352975003310e-03, 1.9383466057630670e-03, 2.6771064389444991e-03, 3.4962664450570047e-03, 4.3842585586641690e-03, 5.3913132096416148e-03, 6.4895423285664840e-03, 7.6761840397758553e-03, 8.9922376053277672e-03, 1.0386687272508237e-02, 1.1849924188767107e-02, 1.3413816288807941e-02, 1.4975759281798791e-02, 1.6490887384332187e-02, 1.7899357996053099e-02, 1.9220242759569330e-02, 2.0491496343878431e-02, 2.1709680987592302e-02, 2.2781132865791212e-02, 2.3793095236424804e-02, 2.4756211678616254e-02, 2.5625238150952648e-02, 2.6480283978862075e-02, 2.7307634023298492e-02, 2.7842551005539583e-02, 2.8264240179972408e-02, 2.8572675878448278e-02, 2.8772340580292433e-02, 2.8725172139325780e-02, 2.8490367007929659e-02, 2.8083931740986390e-02, 2.7403708200975568e-02, 2.6525890789049517e-02, 2.5335749885148195e-02, 2.4153258458972496e-02, 2.2841115795039779e-02, 2.1367321395220157e-02, 1.9788854695274596e-02, 1.8214010460650715e-02, 1.6616152425437736e-02, 1.4816446567304811e-02, 1.3074628726685383e-02, 1.1619299728700544e-02, 1.1506865930547214e-02, 1.1579139255141979e-02, 1.1646417282347554e-02, 1.1655782962182420e-02, 1.1644255350948124e-02, 1.1623176970189220e-02, 1.1571248841906065e-02, 1.1586800855639706e-02, 9.3862415046743475e-03, 1.1348658248065335e-03, 2.3065402568100387e-03, 3.5188123728727202e-03, 5.1746042572993842e-03, 6.4988173721769165e-03, 7.9425110262543869e-03, 9.4402383656135604e-03, 1.0961145025958539e-02, 1.2485395083221097e-02, 1.4000690100110003e-02, 1.5516268368220475e-02, 1.7049443555126338e-02, 1.8539616665285245e-02, 1.9991086503088673e-02, 2.1416559760047540e-02, 2.2790828943643517e-02, 2.4148716890812195e-02, 2.5473347566372546e-02, 2.6711039363928997e-02, 2.7838002584170497e-02, 2.8810805584106182e-02, 2.9491909896447052e-02, 2.9986866292762107e-02, 3.0287058847666998e-02, 3.0243637507518281e-02, 3.0023801783680068e-02, 2.9684363523358820e-02, 2.9187374883879125e-02, 2.8584645773345546e-02, 2.7863830772895448e-02, 2.7026655146233300e-02, 2.5968269546767050e-02, 2.4698741992509196e-02, 2.3142272877489670e-02, 2.1331834148139758e-02, 1.9384727404638813e-02, 1.7247380057414025e-02, 1.4868503976976921e-02, 1.2352678719208185e-02, 9.7313976067773672e-03, 7.1613371632482381e-03, 4.6022171337313650e-03, 2.0436325578929021e-03, -8.6056036836941463e-04, -3.8687398574760168e-03, -6.5573210033765955e-03, -6.8675270306024633e-03, -6.8065861578781445e-03, -6.7245480028902127e-03, -6.7033102899700797e-03, -6.7019597162460975e-03, -6.7183738974405105e-03, -6.7661209895384100e-03, -7.4593462597618287e-03, -8.0664223270727475e-03, 6.7779832735517815e-03, 7.7404182022869084e-03, 9.3760874706854524e-03, 1.1788163252234526e-02, 1.3717493447520674e-02, 1.5704842061685931e-02, 1.7634004612959463e-02, 1.9473189093855654e-02, 2.1069794941639054e-02, 2.2470253422310557e-02, 2.3710785730209294e-02, 2.4751139631513562e-02, 2.5556399451104272e-02, 2.6166736953189926e-02, 2.6514088623273160e-02, 2.6760104361144760e-02, 2.7041206999808221e-02, 2.7459345407220156e-02, 2.7844507212636566e-02, 2.8102359589135192e-02, 2.8179282053789667e-02, 2.7971152541218333e-02, 2.7515662195428739e-02, 2.6770524312425950e-02, 2.5517320343191194e-02, 2.3948679403929335e-02, 2.2115493741357656e-02, 2.0516955656484592e-02, 1.8887433685130336e-02, 1.7255830247404208e-02, 1.5531019006356672e-02, 1.3844714415651604e-02, 1.2074057124575849e-02, 9.9691901834896568e-03, 7.8498645129529976e-03, 5.8364028760974074e-03, 4.0649006138848975e-03, 1.6636123209872178e-03, -9.3531082574738189e-04, -3.4321432663490109e-03, -5.9263652492074215e-03, -8.4366733049523052e-03, -1.1110192836331037e-02, -1.4144835514913343e-02, -1.7363394077881109e-02, -2.0664465528010947e-02, -2.0914229116151040e-02, -2.0924836019497448e-02, -2.0834775719487594e-02, -2.0824128406534428e-02, -2.0804817378450011e-02, -2.0801348437871417e-02, -2.0762550759176976e-02, -2.0863236356235548e-02, -2.0546912358625935e-02, 1.2885131961264475e-02, 1.4394358558445992e-02, 1.5922818148496300e-02, 1.8321979833664421e-02, 2.0029055276785980e-02, 2.1568011199528919e-02, 2.2945103147574447e-02, 2.4181556676898010e-02, 2.5153572295824406e-02, 2.5939419445859292e-02, 2.6575569478791222e-02, 2.7022847257425445e-02, 2.7302627482622674e-02, 2.7412112990321674e-02, 2.7225795975603664e-02, 2.6822458117041620e-02, 2.6278395593997916e-02, 2.5626859185380921e-02, 2.4823556519492945e-02, 2.3916580253401501e-02, 2.2937561502314116e-02, 2.1994565324004775e-02, 2.0931711572416078e-02, 1.9674945156351542e-02, 1.8066806633009747e-02, 1.6229994965170774e-02, 1.4119794103887695e-02, 1.1891827131992716e-02, 9.6338321988450049e-03, 7.3912408433650101e-03, 5.0048925092223695e-03, 2.7407473889523859e-03, 5.1345998289034633e-04, -1.8932857352523258e-03, -4.1157872673643903e-03, -6.2004186193071464e-03, -7.8855670693896984e-03, -1.0052103487607197e-02, -1.2253294796667785e-02, -1.4762224181718561e-02, -1.7420661383222666e-02, -2.0469659213857974e-02, -2.3540693767380966e-02, -2.6500297632864933e-02, -2.8832974499977848e-02, -3.0339811289968578e-02, -3.0409339386106744e-02, -3.0392018774555447e-02, -3.0364657873285017e-02, -3.0346507198855094e-02, -3.0353432657362928e-02, -3.0286919469959941e-02, -3.0384525990646290e-02, -3.0276371535677742e-02, -2.9910026777294624e-02, 1.9909867497215773e-02, 2.0168269157282401e-02, 2.1323855803513307e-02, 2.2776017223916853e-02, 2.3563608253863548e-02, 2.3862488651478379e-02, 2.3999022219787086e-02, 2.4025741596486364e-02, 2.4012140896171041e-02, 2.4017206673064936e-02, 2.4030010391889414e-02, 2.4029748723216504e-02, 2.4112800034474788e-02, 2.4187278063350970e-02, 2.4157678883854825e-02, 2.3802572611008571e-02, 2.3042470947401472e-02, 2.1655655606228313e-02, 1.9872342365422874e-02, 1.8018576623853366e-02, 1.6189133375415499e-02, 1.4801865599327307e-02, 1.3457048795333743e-02, 1.2132554061772743e-02, 1.0858306977943627e-02, 9.6084029750962696e-03, 8.2995923193179832e-03, 5.9224771598358206e-03, 3.5047732196179793e-03, 1.0005061198832543e-03, -1.7405702347683405e-03, -4.4616981934146593e-03, -7.1216707200637552e-03, -9.5694760257816203e-03, -1.1979508322670390e-02, -1.4284187887664612e-02, -1.6816783734502086e-02, -1.8849567780221593e-02, -2.1193030491444956e-02, -2.3329239081321465e-02, -2.6451958526164193e-02, -2.9503970364781806e-02, -3.2962082145492219e-02, -3.5156356874116126e-02, -3.5142227912535427e-02, -3.3366062483131058e-02, -3.3114234057980127e-02, -3.3083088654170381e-02, -3.3102199978785531e-02, -3.3132009417094641e-02, -3.3078680126076260e-02, -3.3161369394024684e-02, -3.2992842540445377e-02, -3.4605622414931918e-02, -3.5073739258823594e-02, 2.2182941226518232e-02, 2.1981979027116155e-02, 2.2531917206982811e-02, 2.2984173622364240e-02, 2.3070302204093798e-02, 2.2784518958463243e-02, 2.2402213570498083e-02, 2.1987883363238606e-02, 2.1680707843888772e-02, 2.1499918849199842e-02, 2.1343148588719968e-02, 2.1057051821622555e-02, 2.0731193943153675e-02, 2.0389069794321424e-02, 2.0058422909768336e-02, 1.9540642856943319e-02, 1.8771440018134411e-02, 1.7541979643777156e-02, 1.5812878466950092e-02, 1.3964976719422595e-02, 1.2055865200533145e-02, 1.0077893522332987e-02, 8.0754645552012227e-03, 6.1514300219643325e-03, 4.4311270849472506e-03, 2.9038882674280730e-03, 1.4939012416668451e-03, -7.3304622471334624e-04, -3.0595396586854118e-03, -5.4866983119958579e-03, -8.0240493230008536e-03, -1.0571159597881657e-02, -1.3000443206111476e-02, -1.5179520668500535e-02, -1.7215028113375816e-02, -1.9847516882259247e-02, -2.3018011536681843e-02, -2.5983647169467924e-02, -2.7910000857292727e-02, -3.0040601519555704e-02, -3.0494910334033544e-02, -3.1020300815030523e-02, -3.0472900946020811e-02, -2.9339094595589491e-02, -2.7329260959524745e-02, -2.3282200597135531e-02, -2.3102362566916976e-02, -2.2980669224552160e-02, -2.3125744875953105e-02, -2.3098181214000212e-02, -2.3171649864258927e-02, -2.3022061661220079e-02, -2.3513934479428358e-02, -2.3017725466707266e-02, -2.7425153082901818e-02, 1.9516253378010426e-02, 1.9888897338393344e-02, 1.9880967884662232e-02, 1.9689818789960026e-02, 1.9574628045879200e-02, 1.9602733497400285e-02, 1.9647300691552266e-02, 1.9741255701252278e-02, 1.9913817849225385e-02, 2.0111473545436659e-02, 2.0182363973418105e-02, 1.9765137981519382e-02, 1.8843485974511326e-02, 1.7663629466687120e-02, 1.6408037456121544e-02, 1.5237910325947818e-02, 1.4273734800682086e-02, 1.3633622740079343e-02, 1.2572129877143901e-02, 1.1316249704442977e-02, 9.8837403464103468e-03, 7.1977723411869865e-03, 4.3334406571953199e-03, 1.4271920960033102e-03, -1.4084709612929014e-03, -4.0447394411639026e-03, -6.5066614729601124e-03, -8.4084855738235098e-03, -1.0466365064931898e-02, -1.2577698061515652e-02, -1.4422079032085700e-02, -1.6272621811660795e-02, -1.8142601328309013e-02, -1.9691595445601173e-02, -2.1729294805989577e-02, -2.3566872905232489e-02, -2.6799245824183665e-02, -2.9403767194860535e-02, -3.2150285491934438e-02, -3.0551300663720179e-02, -2.7700772158833327e-02, -2.2524214863429971e-02, -1.8145893310077529e-02, -1.2816236998971839e-02, -7.2951537883928956e-03, -5.1210818400605077e-03, -4.4241996662364256e-03, -4.6728855582089503e-03, -4.6853535872196641e-03, -4.7803654253191471e-03, -4.6846538408774445e-03, -4.8979281393897404e-03, -4.1901821058487982e-03, -4.8529782488043972e-03, 8.0123108338539604e-04, 1.7061048474614621e-02, 1.7034601751170803e-02, 1.7028159223636596e-02, 1.6807781814739214e-02, 1.6823481055682585e-02, 1.7227720200294699e-02, 1.7792749527881874e-02, 1.8436874529865144e-02, 1.8971051442134179e-02, 1.9228906214484004e-02, 1.9232379997744353e-02, 1.8829408202143044e-02, 1.7754552277809060e-02, 1.6173262210605249e-02, 1.4155453395334083e-02, 1.2202827381609854e-02, 1.0499066988147648e-02, 9.2200337341424299e-03, 7.7985025730062385e-03, 6.2762623922410221e-03, 4.6301567659485232e-03, 1.9366696771409841e-03, -9.0404891779594099e-04, -3.8004815287541183e-03, -6.6824531417051802e-03, -9.4511010403375006e-03, -1.2049428517367261e-02, -1.3626587002104756e-02, -1.5311942336074899e-02, -1.6949047856625668e-02, -1.8325130692834521e-02, -1.9732661110813982e-02, -2.1367897589312276e-02, -2.3775021436955687e-02, -2.5298235316477492e-02, -2.7252548542710406e-02, -2.6614398817251847e-02, -2.6469916679325564e-02, -2.2975894822048822e-02, -2.3086974176860380e-02, -1.7349844789848658e-02, -1.2922318843549869e-02, -4.6831498435802379e-03, 6.5427412823091335e-04, 2.1704711184609782e-03, 5.0312031183026608e-03, 4.6025412077429695e-03, 4.7327092171358743e-03, 4.5301247047505435e-03, 4.5958502354293751e-03, 4.4751416716924744e-03, 4.6959335443440709e-03, 4.1885427851962916e-03, 6.8364307534754124e-03, 6.0382199335699159e-03, 1.4454075209614156e-02, 1.4664575409529923e-02, 1.5097331222508337e-02, 1.5634965737587159e-02, 1.6108685489437391e-02, 1.6788119482942204e-02, 1.7600267825894550e-02, 1.8338483812924383e-02, 1.8588465371529944e-02, 1.8161135819279278e-02, 1.7443710965985904e-02, 1.6892972673408807e-02, 1.5941544850779726e-02, 1.4486335574935810e-02, 1.2161280363097882e-02, 9.6497040194492845e-03, 6.9907495955718046e-03, 4.1186662652655803e-03, 1.4779276477215053e-03, -1.0553435122805654e-03, -3.5186512366345846e-03, -5.4871733245423493e-03, -7.4022900492187460e-03, -9.2409784194968370e-03, -1.0958391376515608e-02, -1.2690448010489491e-02, -1.4315842562504288e-02, -1.5649882684709848e-02, -1.6873769384547016e-02, -1.8275912518098111e-02, -1.9479643261281890e-02, -2.1053969458168953e-02, -2.2890947231468298e-02, -2.4923259169927985e-02, -2.8195906108484291e-02, -2.6352266170066800e-02, -2.1547699779704940e-02, -1.4984946682761064e-02, -1.2699108408274040e-02, -3.2140877623551876e-04, 1.9120285420372372e-03, 3.6631288540396895e-03, 1.1274881756436895e-03, -2.6341068175597519e-04, 3.3512873191016350e-03, 2.0909651025143574e-03, 2.7098573782171464e-03, 2.2858591080398821e-03, 2.3844195580960074e-03, 2.2960264773735153e-03, 2.3807747328894761e-03, 2.2218098150855476e-03, 2.5887008117907936e-03, 1.4589141974443763e-03, 1.7734253931662794e-03, 1.2132869751426356e-02, 1.2781751630991517e-02, 1.3857643926314278e-02, 1.5679222434566459e-02, 1.7114436183834236e-02, 1.8201226560488948e-02, 1.8887714752514662e-02, 1.8970141288297493e-02, 1.7876620020312955e-02, 1.6038355960320355e-02, 1.3984423207518359e-02, 1.2336893332441617e-02, 1.0871400800851527e-02, 9.3191081211286275e-03, 7.2165886508537280e-03, 4.7539620647618075e-03, 2.0121936434967513e-03, -1.0322626533570134e-03, -3.8328766825431182e-03, -6.4480379815651523e-03, -8.8313564859246740e-03, -1.0192209856941997e-02, -1.1362745501988736e-02, -1.2394835892189510e-02, -1.3245183235859131e-02, -1.4137251544935850e-02, -1.5149523943255888e-02, -1.6269441540070415e-02, -1.7501305865774169e-02, -1.8669515055789773e-02, -2.0774894730774519e-02, -2.2138676191935033e-02, -2.2887921690399458e-02, -2.3548408232217172e-02, -1.9266560050953591e-02, -1.9725427533111347e-02, -1.2936007583008767e-02, -5.2427377555793065e-03, 3.8696404281571739e-03, -7.2210138249441857e-05, -6.8243478757287724e-04, -1.0940244083746120e-03, -4.9078129855089465e-04, 2.0568685354546579e-03, -8.9168272323845088e-04, 3.7002801491072684e-05, -6.9056820581005467e-04, -4.9102136548206075e-04, -6.2240220149784985e-04, -5.5584914185184513e-04, -6.0507030018309461e-04, -5.2860791950197061e-04, -8.0374559752711006e-04, -8.3271161997294351e-04, -2.5681352998509592e-03, 1.0754853566202760e-02, 1.2477350465393389e-02, 1.4074848977066956e-02, 1.6688333709699410e-02, 1.8723775351772831e-02, 1.9700898953374596e-02, 1.9594675330860650e-02, 1.8395798502700095e-02, 1.5438160416117203e-02, 1.2198832814156707e-02, 8.9083765333807519e-03, 5.7615222287028811e-03, 3.3907293680828232e-03, 1.4701613624475141e-03, -3.3617746902386836e-05, -1.9274177240999890e-03, -3.8369418186286475e-03, -5.4977824415398391e-03, -7.1992380838536985e-03, -8.7788728516655368e-03, -1.0148290210228644e-02, -1.1204080412413719e-02, -1.2106964723565594e-02, -1.2971987741323687e-02, -1.3628800642786681e-02, -1.4451113101089721e-02, -1.5358591166149987e-02, -1.6794745091294194e-02, -1.7930860273976432e-02, -1.9704435828368040e-02, -2.1224456965518973e-02, -2.2846751736467195e-02, -2.1416038821399367e-02, -1.3563120411916402e-02, -1.2413889146414578e-02, 2.8066095888324783e-03, 3.3268086923684552e-03, 1.4641169272902486e-03, -1.1495513313702580e-03, 1.7976422611482156e-04, 9.0725930342154884e-04, 8.5447390084419992e-04, 1.0563497443248286e-03, -7.3406086080711800e-04, 2.4612185475708127e-04, -6.7980797597428939e-04, -3.9640833848311047e-04, -5.7570409731494149e-04, -4.9673640002938918e-04, -5.3081880459243495e-04, -4.9127348606782962e-04, -5.3490854409706575e-04, -4.2550972906068955e-04, -8.1724212085441776e-04, -5.1810092318729274e-05, 1.4649218393897934e-02, 1.6428598187392673e-02, 1.7494538859061382e-02, 1.8269921373820108e-02, 1.8118533723241848e-02, 1.6927967227767432e-02, 1.4907839883994356e-02, 1.2279702631876055e-02, 8.9493541135642063e-03, 5.9837987725279429e-03, 3.2056072882263031e-03, 3.7190377950513387e-04, -1.9183630364578153e-03, -3.7437538543428628e-03, -4.8783588285868928e-03, -6.1457485320949023e-03, -7.2962395072250774e-03, -8.1062751881308404e-03, -8.8727990004479618e-03, -9.6049720661834648e-03, -1.0330618264936836e-02, -1.1152757869344665e-02, -1.1947122294296925e-02, -1.2725491337547523e-02, -1.3565089610668393e-02, -1.4482954711204088e-02, -1.5840540919027687e-02, -1.7168454270685238e-02, -1.9370465227900889e-02, -1.9615651624256422e-02, -2.0725125925242976e-02, -1.6265369387418214e-02, -1.4302569927867667e-02, -8.9493764365073808e-03, 4.1874197082361333e-03, -1.0258884896847354e-03, -1.0368480819636270e-03, -4.2033056588868000e-04, 5.3213230325210132e-04, 1.2150681468359732e-04, -5.3285525853322266e-04, -3.8904899256813133e-04, -5.0619018621928381e-04, 3.5821993710679289e-04, -1.5785865982745556e-04, 2.1935869950184123e-04, 3.5940197310882840e-05, 1.2930711805343720e-04, 9.3294835129854002e-05, 1.2011862716114312e-04, 1.0430028380944718e-04, 1.3803788369090141e-04, 9.1710852883305702e-05, 3.6374266233350945e-04, 3.5437961345626944e-04, 2.3841530120825044e-02, 2.1154697133012768e-02, 2.0830773014372278e-02, 1.7756311261436175e-02, 1.3689010769014159e-02, 9.3896453103186617e-03, 5.3476060026836914e-03, 1.8635997209678345e-03, -7.5692465646343132e-05, -1.2193790478043087e-03, -1.9932042672542172e-03, -2.8714326625094710e-03, -4.1054942833127772e-03, -5.3383067343070467e-03, -6.3881130818719267e-03, -7.1617934303827291e-03, -7.9386031099026311e-03, -8.8486763895281317e-03, -9.2982237718352290e-03, -9.7992538797889717e-03, -1.0485077816398375e-02, -1.1168456393949061e-02, -1.1827503083757671e-02, -1.2539036379625765e-02, -1.3510227194471994e-02, -1.4935924104339554e-02, -1.6206150489647062e-02, -1.8251860693821245e-02, -1.8746212824422397e-02, -2.0848488937771113e-02, -1.2146496838601478e-02, -1.1005603060642173e-02, 8.2622887815814281e-04, 3.1490340999663505e-03, -1.4105964561779245e-03, 5.2157207565076580e-04, 1.0078899286747626e-03, 4.1716805223171558e-04, -8.2392303010444948e-05, -1.4072223077401749e-04, 5.7115613613942289e-05, -7.7193489547727962e-05, 2.4012530835118497e-05, -1.6430548605233727e-04, 1.5111338390266403e-04, 2.6099843580605457e-05, 1.2270011586122762e-04, 8.7280301008751254e-05, 1.1125435831495570e-04, 1.0052535542666875e-04, 1.1054296765437323e-04, 9.9347037806369644e-05, 1.3750584431392304e-04, 9.4879990755058694e-05, 1.4279223410839856e-04, 1.9674964917832660e-02, 1.5771354139625465e-02, 1.3795586428236306e-02, 9.0714013048161235e-03, 4.5477336498419840e-03, 4.1216524954065803e-04, -2.9052622648287618e-03, -5.1970312646078820e-03, -5.4685993795926535e-03, -5.2173132438903258e-03, -4.8428271307508208e-03, -4.7436559231814057e-03, -5.2984843044554808e-03, -6.0842915443332646e-03, -6.9048122128276823e-03, -7.3754575932263866e-03, -7.9210653849460522e-03, -8.7842530626616733e-03, -9.2223365327042117e-03, -9.7379733930740009e-03, -1.0477263841575352e-02, -1.1128751539773094e-02, -1.1830296148823957e-02, -1.2525813636458896e-02, -1.3914695948555419e-02, -1.5303987909580999e-02, -1.7501251184796535e-02, -1.7256031553064197e-02, -1.7761233028882942e-02, -1.1936321033466172e-02, -1.0748213105817842e-02, 2.2572970803533825e-03, -2.8843147305874524e-05, -1.0491577094361325e-03, 5.4060529071856120e-04, 2.9540937637338911e-05, -5.7473769931566752e-04, -1.4974804162393667e-04, 2.5710816683107151e-05, 3.9759914659593369e-05, -4.2058103534692033e-05, 4.8320538822593882e-05, 1.0075514760267087e-06, 5.1523339056767621e-05, -7.6520485446636942e-05, -1.7206748539101008e-05, -5.1363678147184691e-05, -3.0745190612386543e-05, -4.0056943841248333e-05, -3.4619614512690355e-05, -3.9857791556667348e-05, -3.4689234587144922e-05, -5.1626439113698457e-05, -4.5061751861471405e-05, -1.5744097001514287e-04, 1.2292032291277566e-03, 1.1453408833850542e-03, -2.2194027396594262e-03, -5.4847742914146957e-03, -6.7751958829169734e-03, -7.4926474828284906e-03, -7.6310604827571904e-03, -7.2528248989530419e-03, -6.2923242019427006e-03, -5.6996497198011642e-03, -5.5106023523001924e-03, -5.8068018656083076e-03, -6.3338002675743521e-03, -6.9205082746651159e-03, -7.3530172969735741e-03, -7.6557765867280858e-03, -7.9931380660138995e-03, -8.4544961052520906e-03, -8.9586572830953615e-03, -9.5415348512332132e-03, -1.0229516297676919e-02, -1.0986956647626958e-02, -1.1769665380854874e-02, -1.2946976121924331e-02, -1.4194902202496043e-02, -1.6391417380413616e-02, -1.6839789009554552e-02, -1.7096985748145513e-02, -9.6652734492453599e-03, -6.4394247470032848e-03, 4.2202144408826185e-03, -9.7502266913582756e-04, 1.0717840767525408e-04, 7.2487263505158922e-04, -3.2653278315226253e-05, -1.3626872349211891e-04, 1.0104668683537854e-04, -1.9275845200301776e-05, -1.4109909005751852e-05, 1.0141149403784534e-05, 3.8931459208553490e-05, 2.4482159898927500e-05, 4.0560716893635578e-05, -2.2566479013866238e-05, 1.8675556962312323e-06, -3.4688481377660556e-05, -1.9846115608197074e-05, -2.8938481584568285e-05, -2.4509879721731909e-05, -2.7636231738894720e-05, -2.5614367642403692e-05, -2.9458464041630210e-05, -2.3720522326591345e-05, -4.8110070925127396e-05, -4.2976307958299612e-06, -1.0344616628057302e-02, -1.0476988536634119e-02, -1.2914111866054734e-02, -1.3982639048967405e-02, -1.2982677620333893e-02, -1.1285736785491218e-02, -9.4035856770280923e-03, -7.6216553635953810e-03, -6.3893929637025559e-03, -5.9410799522973401e-03, -6.0371347358176009e-03, -6.5275160277669109e-03, -6.9428398245623968e-03, -7.2697397205064296e-03, -7.4360627052970640e-03, -7.6508266779918843e-03, -7.8928753460579260e-03, -8.1611025894719746e-03, -8.7480768586576385e-03, -9.3829471752911592e-03, -1.0053792648907087e-02, -1.0828605825215151e-02, -1.1968229551621454e-02, -1.3188390546672951e-02, -1.5375733328996992e-02, -1.5306922494874670e-02, -1.6220826768631912e-02, -9.5590541584685846e-03, -7.5302972935113906e-03, 4.3471876919010388e-03, -1.8732724581555327e-03, 4.1664932964785746e-04, 1.9936981019344149e-04, -3.2537563937340424e-04, 4.8394199669049033e-05, 3.3443230099627094e-05, -5.1410468590270045e-05, -3.7664928644411447e-06, 2.2008110774916268e-06, -1.9666822520903056e-05, -2.4708121225146452e-05, -1.6062438079515815e-05, -1.8167466899315628e-05, 1.2121482807976461e-05, 2.0908590277505731e-06, 1.6880239787638897e-05, 9.3238011446110380e-06, 1.3261244156925235e-05, 1.0881629231583416e-05, 1.2148920060396813e-05, 1.0855971304640603e-05, 1.2609508090608880e-05, 9.2530728829347958e-06, 2.5235829479864323e-05, 2.7422401053430953e-05, -1.4934257116080207e-02, -1.5017611349722682e-02, -1.4987629454131207e-02, -1.4193253542165524e-02, -1.3078153401277354e-02, -1.1140693718063116e-02, -9.3314482691475298e-03, -7.8288438589317610e-03, -7.1574713789915034e-03, -6.9021036363653976e-03, -6.9090280394628889e-03, -6.9950127457598099e-03, -7.0164532606601104e-03, -7.0163872127391447e-03, -7.0879155194365218e-03, -7.3083523520734994e-03, -7.6016236847598617e-03, -7.9584086157214184e-03, -8.6309582672916274e-03, -9.3297549615115882e-03, -9.9637059658146537e-03, -1.0939376798292322e-02, -1.2150812718869586e-02, -1.4037805881433989e-02, -1.4966012882063603e-02, -1.5487375649116775e-02, -8.4874462906995192e-03, -6.9160551485766466e-03, 4.4381430205770386e-03, -1.8648736892212350e-03, 7.9451532945955738e-04, 1.4251545822984693e-04, -1.5042720427369644e-04, 8.8575517044118334e-05, -3.2439154975995977e-05, 1.6805400771785739e-05, 3.3282761809049556e-05, 1.0619743046849759e-05, -1.7654540977729007e-06, -1.1189471973902497e-06, -2.6199307110672801e-07, -7.4665278367874613e-06, -3.5515024479076821e-06, -3.0484799433665860e-06, 7.8985931291656805e-06, 5.1249099328109712e-06, 8.6800044926315864e-06, 6.9610742095063682e-06, 7.9430281286797799e-06, 7.2916367000819618e-06, 7.8851587387426467e-06, 7.1946987285475411e-06, 9.2971862961747920e-06, 6.9551065798485745e-06, 8.1449386237532340e-06, -1.5763075249141001e-02, -1.4916943851669140e-02, -1.3791231530445563e-02, -1.2350560662325344e-02, -1.1553962984435839e-02, -1.0276193305955500e-02, -9.1872338943929932e-03, -8.3105690336108817e-03, -7.9253159228907244e-03, -7.6296687969627519e-03, -7.3721909065503910e-03, -7.0601107157300946e-03, -6.8259086666889457e-03, -6.7138014442735539e-03, -6.8302684342869957e-03, -7.1025718928587889e-03, -7.4720880746688423e-03, -7.9333503826483631e-03, -8.5821511422588814e-03, -9.2430980671864837e-03, -1.0018321292919380e-02, -1.1128135374883052e-02, -1.2981282274822419e-02, -1.4043574895432835e-02, -1.4968796951717663e-02, -8.7586084526355707e-03, -8.3160362403746860e-03, 4.5131901423629793e-03, -1.9450513449202568e-03, 7.4951079673217871e-04, -8.9784614992961131e-05, -9.7068122598077021e-05, 7.6994804701505153e-05, -4.7685350202673042e-05, 9.6318412294046473e-06, -2.7246733071217800e-05, -2.1788846355992196e-05, -8.2243598018116708e-06, 1.3944658151344785e-06, -1.9308715268172164e-07, -1.0715539990458877e-06, 4.8065725037260340e-06, 2.7717222532098670e-06, 7.7565964377184805e-07, -3.5372478814294298e-06, -2.3791622434559193e-06, -3.6040548072376749e-06, -2.8779432995860998e-06, -3.3139678199062619e-06, -3.0152707690619951e-06, -3.2665665835934429e-06, -2.9378263275321725e-06, -3.8762653094505037e-06, -4.0394979157467800e-06, -1.0856414171991034e-05, -1.2723577010852277e-02, -1.2600362279698213e-02, -1.2040628207887594e-02, -1.1047894257981611e-02, -1.0357748802108824e-02, -9.8732465999689933e-03, -9.4338666767890267e-03, -8.9963894998393856e-03, -8.3832581676371309e-03, -7.8327569325309099e-03, -7.3127832409851656e-03, -6.8188105546070077e-03, -6.5818857789001761e-03, -6.5579283634198682e-03, -6.7959894758060635e-03, -7.1160720876254913e-03, -7.5161711297532241e-03, -8.0406446336152571e-03, -8.5370466759889796e-03, -9.1835928171493802e-03, -1.0095509857714943e-02, -1.1687423311785919e-02, -1.3192265067195695e-02, -1.4988257304327360e-02, -9.6454694465792565e-03, -8.0064464055010238e-03, 4.0922259011727594e-03, -1.7215353812932068e-03, 7.0411935203011926e-04, -7.5767680355763502e-06, -5.4790699105062261e-05, 5.3072018361290796e-05, -2.1683169989119964e-05, 2.5131340502359260e-05, -5.7798047279519456e-06, 8.3513130714411420e-08, -2.6679739707459937e-07, -5.7288531807897264e-07, -4.7764539209680973e-07, 2.0816272693659481e-06, 2.2588133672361030e-06, 1.5937862620643366e-06, 1.9355700280785054e-06, -5.3282631509656182e-07, -8.7101884789367659e-07, -2.2693794860103797e-06, -1.8805311013435702e-06, -2.2336553357369879e-06, -2.0343598617425518e-06, -2.1669234792232733e-06, -2.0325991768313165e-06, -2.2264208816317674e-06, -1.8979534636247297e-06, -3.2670498897775790e-06, -5.8834901582073551e-07, -1.1289025729355501e-02, -1.1090136498406483e-02, -1.0934633093292234e-02, -1.0236600240368349e-02, -9.6408940235465646e-03, -9.7084088589306505e-03, -9.7192300758533190e-03, -9.5164994474942755e-03, -8.7538316134997129e-03, -8.0001045195357001e-03, -7.3225020220778758e-03, -6.8010271736380079e-03, -6.5384781936611014e-03, -6.4912532699849534e-03, -6.7218907379240633e-03, -7.0627041739288465e-03, -7.4663366555808575e-03, -7.9695449686966596e-03, -8.4614514674931640e-03, -9.2460341922578487e-03, -1.0380164102688869e-02, -1.2116415014422954e-02, -1.2903252611588444e-02, -1.2598366872341152e-02, -7.1581988188598056e-03, -5.9196005055046300e-05, -4.9200381707369947e-04, 2.4501983729319839e-04, 7.2393107262946378e-05, -7.3454875442503082e-05, 5.5803159289988014e-05, -3.5187166284042498e-05, -5.7703988504760780e-06, -1.5829709320896318e-05, 2.1752271254854235e-06, -7.8202638347399877e-07, -5.3877385386904707e-07, -4.2883119187923056e-08, 2.1294004008684596e-07, -1.7072669683673779e-06, -1.5535109262656004e-06, -1.1255976108358312e-06, -1.0104575337605178e-06, 3.2516391592816128e-07, 4.2699154442467704e-07, 9.5427353107545299e-07, 7.1113765444299343e-07, 8.6615183921435329e-07, 7.7525771923891290e-07, 8.4352067462184488e-07, 7.7976890555143952e-07, 8.8540344176952362e-07, 7.2005786822936652e-07, 1.7322253342685542e-06, 2.1533216392859156e-06, -1.1355287950009271e-02, -1.0927931972077809e-02, -1.0465449897901269e-02, -9.7212942555557902e-03, -9.1996883554779085e-03, -9.5406222360738258e-03, -9.7486004472002730e-03, -9.6712451250919040e-03, -8.9913041493709378e-03, -8.2087529281635874e-03, -7.4807877829505265e-03, -7.0222619942209852e-03, -6.6501132062552482e-03, -6.4489677109921539e-03, -6.5441745236942406e-03, -6.8754035272907410e-03, -7.2876583891440389e-03, -7.7005688446768056e-03, -8.4125981992454191e-03, -9.3570316885945859e-03, -1.0914856793950732e-02, -1.2015211685184081e-02, -1.2184358958073072e-02, -7.3517804458257778e-03, -4.0673424777153532e-03, 1.6207059969149812e-03, -3.5968063249529938e-04, 2.7971090973144281e-04, -1.0261811122533584e-04, 6.5747386862320342e-05, -2.4466572809910052e-05, 1.2535803502157863e-05, -5.2327059838749098e-06, 1.3162015750173511e-06, -1.0496909511220382e-06, 2.5705406584789218e-06, 1.7026745056989258e-06, 8.0031090502456379e-07, -1.0290542424207152e-07, -1.2788732660752936e-09, -8.8925265666984837e-08, -5.4988437805722078e-07, -3.9615511862768757e-07, -4.5327337774674070e-08, 4.1937306663767868e-07, 4.5402985842865617e-07, 5.9005584310788117e-07, 5.3736772783700287e-07, 5.7981210993800908e-07, 5.5022127048477698e-07, 5.8025046512782952e-07, 5.4257077711054869e-07, 6.5948787318376861e-07, 5.7070633422643541e-07, 5.2472345953014088e-07, -1.1204105768845674e-02, -1.0808098729403526e-02, -1.0209832872176472e-02, -9.5309223838404566e-03, -9.1281784395673138e-03, -9.2437118257539252e-03, -9.3388666662936604e-03, -9.2995020770343106e-03, -8.7981960907435042e-03, -8.1160078347188858e-03, -7.4213963658606441e-03, -6.9663447023028957e-03, -6.5889191042854955e-03, -6.3673729208290064e-03, -6.4133903362226519e-03, -6.7162059525275875e-03, -7.1110695064027923e-03, -7.6045657595742583e-03, -8.3776005864868025e-03, -9.6700395630905517e-03, -1.0845830648780461e-02, -1.2328669311498435e-02, -8.4889081481810992e-03, -6.4486881810311251e-03, 3.1604924716178420e-03, -1.0299558434821510e-03, 3.6734939262044798e-04, -6.5109701856481560e-05, 4.5328756201088669e-05, -3.3578147795897790e-05, -5.9501443176377105e-07, -5.6965690365289100e-06, 8.6464552328683946e-07, -5.9492498162688474e-07, 5.3361111319600706e-07, -2.0522387432495351e-06, -1.2759531969912176e-06, -5.9299226423437145e-07, 7.1585180697037289e-08, -4.7308314095724719e-08, -6.2715346748145901e-08, 3.4337326514365411e-07, 2.4608868973423782e-07, -1.2058285111735123e-08, -1.8939418387244056e-07, -1.9703065318350810e-07, -2.2823642644581588e-07, -2.0427723651777335e-07, -2.2096912677405101e-07, -2.0859493054473793e-07, -2.2250020971243539e-07, -2.0776179215486329e-07, -2.6149271739259183e-07, -3.1422700103207746e-07, -7.4732198559589874e-07, -1.0711140399487840e-02, -1.0466194364912237e-02, -9.9539085317571496e-03, -9.5166349580137893e-03, -9.3243681781480514e-03, -8.8745606992594039e-03, -8.6882162428545961e-03, -8.5970045220312430e-03, -8.2996205740957785e-03, -7.7628349710790467e-03, -7.1361216819378070e-03, -6.6111502324615878e-03, -6.3436988832422381e-03, -6.2493832776627234e-03, -6.3596273830677230e-03, -6.6129088255707097e-03, -7.0111329509458253e-03, -7.6417561035498349e-03, -8.5800172712845041e-03, -9.8216654122837560e-03, -1.1249522087134124e-02, -1.0463941042527132e-02, -7.8792940608648897e-03, 2.3397394647294884e-03, -1.0077020135159723e-03, 3.1590755982042877e-04, 4.7009239283296204e-05, -1.0405207267728594e-05, 8.9394922859036550e-06, -2.1684743570031778e-06, -1.4639023111532267e-06, -1.4703891423555981e-07, 1.4760265928659953e-06, 9.7686436162716661e-07, -1.0564890389971621e-07, 6.8929360924846559e-08, -9.7355078416819837e-08, -5.4814662365734344e-08, -3.4982099166388668e-08, 1.5311844415137480e-07, 1.5610167379992998e-07, 1.1594510055369330e-07, 1.2332656623232014e-07, -8.2511774357474366e-09, -8.2669758779026215e-08, -1.4441346304731872e-07, -1.4021149079626594e-07, -1.5306754544332918e-07, -1.4614902475815900e-07, -1.5242850142597325e-07, -1.4622593044483906e-07, -1.5719910710469687e-07, -1.4229553108556503e-07, -2.2315130921140430e-07, -5.9789851193300936e-08, -1.0467518758643199e-02, -1.0219525626859488e-02, -9.6753610576181398e-03, -9.2967965373791650e-03, -9.1921125393790853e-03, -8.7304257394011375e-03, -8.4162776995927446e-03, -8.2031168911780583e-03, -8.0709447378405075e-03, -7.6106073717233658e-03, -6.9806315806748842e-03, -6.4386836664319103e-03, -6.2079974384919578e-03, -6.1598055292165776e-03, -6.2656674740084878e-03, -6.5155190053082790e-03, -6.9138708272940136e-03, -7.6309956936091577e-03, -8.7981077989043588e-03, -1.0348865338236174e-02, -1.1718175477616593e-02, -8.1487833596907994e-03, -4.8853087081104606e-03, 1.2549498967874828e-03, -2.9064209100716841e-04, 2.3750892256885542e-04, -8.1940809278686157e-05, 3.2311927333242404e-05, -2.2152470496586516e-05, 2.4942122059784229e-06, -1.3539179504226228e-06, 5.2068516309068040e-07, -1.3718164336186389e-06, -6.2839831306671476e-07, 7.0039579222187613e-08, -7.5857519080986665e-08, -2.7647336789442473e-08, -6.0559662719132136e-09, 1.1812085933584618e-08, -1.2409578350835006e-07, -1.0936140985233055e-07, -8.1201649802868344e-08, -6.5538513843482922e-08, 1.3421666597134702e-08, 4.0515569639694438e-08, 6.2351087860498811e-08, 5.4598065257240036e-08, 5.9734538140551741e-08, 5.6115803351297622e-08, 5.9081939372124248e-08, 5.5881786691948376e-08, 6.1756645106797459e-08, 5.3800583045895967e-08, 1.1738471990610511e-07, 1.6154572955381918e-07, -1.0489269851007857e-02, -1.0175052659077602e-02, -9.4565037603334540e-03, -8.9252551817727011e-03, -8.7337273501153084e-03, -8.7732486539616322e-03, -8.4950480693772035e-03, -8.1047055045607164e-03, -8.0919597616178063e-03, -7.6556832041277945e-03, -7.0034818548808386e-03, -6.5078874951025878e-03, -6.2096156507469580e-03, -6.0864486747992941e-03, -6.1228831401180656e-03, -6.4017725340024950e-03, -6.8598771071204101e-03, -7.5239138086302393e-03, -9.0276742669998522e-03, -1.0656801388865954e-02, -1.1746517015485765e-02, -6.1103603771072226e-03, 2.1803161063554612e-03, -5.8238028924584068e-04, 2.0028490916500699e-04, -1.3193901497381865e-05, 2.7116317034599869e-05, -1.1172124882952118e-05, 1.2654562090553916e-06, -5.5472834255677981e-07, 8.9254130578600649e-07, 1.1702943756802353e-07, 9.5425529357822010e-08, -3.3402380426644698e-08, -6.0872034914625020e-08, 1.8069380033216924e-07, 1.1219092089262243e-07, 5.6337218001990428e-08, -6.6527059585763226e-09, 6.0294971294429234e-10, -6.7652750126165687e-09, -3.8978201925062451e-08, -3.0834215502975690e-08, 6.8222700622469490e-10, 2.6098789762587365e-08, 3.4871313005571669e-08, 4.0280653426476298e-08, 3.8928084731409962e-08, 4.0546544002525997e-08, 3.9308124871392791e-08, 4.0848447652175324e-08, 3.9084306313087736e-08, 4.5711259201441923e-08, 4.3797049835772595e-08, 3.4155573763391955e-08, -1.0521094810716808e-02, -1.0169163648315743e-02, -9.5012867603854606e-03, -8.8626054431120704e-03, -8.5437492731122722e-03, -8.5816103505198665e-03, -8.2398313713491211e-03, -7.7479153628950553e-03, -7.7094973226884134e-03, -7.4327546690576840e-03, -6.9782778909525944e-03, -6.4940939022362643e-03, -6.1166123041458131e-03, -5.9363395346127973e-03, -6.0097555756742221e-03, -6.3551740206785473e-03, -6.8503064032439248e-03, -7.7557176396931687e-03, -8.9758902880886504e-03, -1.0108467957439551e-02, -8.5634033864262563e-03, -3.5876815424146207e-03, 8.2382904338472939e-04, -2.6763028933951907e-04, 2.1302899004349058e-04, -5.1516003398786880e-05, 6.4931864051759292e-06, -6.1262849166357372e-06, 5.8799998869422617e-07, -1.1217843817823230e-06, -3.1249830863985481e-07, -1.0348043843338983e-07, -1.6235573378032631e-08, -2.5681696058746937e-08, 2.9022017954431420e-08, -1.5289519784692971e-07, -8.9583323671150496e-08, -4.2479794781200052e-08, 5.2229226393297763e-09, -3.3736284515484879e-09, -4.2771365897544943e-09, 2.4475252910185130e-08, 1.8520049496371579e-08, -2.5275958515872526e-09, -1.2230682835869672e-08, -1.5417209358117856e-08, -1.5875604263484999e-08, -1.5235092816652529e-08, -1.5777056276006229e-08, -1.5257537689002121e-08, -1.5892935287253884e-08, -1.5214583712688801e-08, -1.8107900800340415e-08, -2.3922569487855316e-08, -5.1886886748980787e-08, -1.0501789860035513e-02, -1.0195489890136397e-02, -9.7036836259071085e-03, -9.0891577393206469e-03, -8.6150236297704852e-03, -8.1168262353122217e-03, -7.5847733319199945e-03, -7.1185103961879936e-03, -6.9410315966707548e-03, -6.9232138190524900e-03, -6.8365777624538049e-03, -6.3389359928635314e-03, -5.9424438526936435e-03, -5.7361849814605154e-03, -5.9769692876555647e-03, -6.3163209182833385e-03, -7.0408011215866845e-03, -8.0189258685058259e-03, -9.4503943038490648e-03, -7.6353474271432555e-03, -5.2290930000759798e-03, 1.8984458040723926e-03, -4.9192390971394785e-04, 2.1750276390356901e-04, -3.2372215083128738e-05, 1.8682789910025175e-05, -6.4082193843600541e-06, -1.3082410392346281e-07, 1.7785966572263614e-07, 1.6918432504318915e-07, 1.5239821007825534e-08, -9.6788758229676957e-09, 1.0699847665776086e-07, 6.2075715280887882e-08, -1.1783905319031566e-08, 5.9526525596459001e-09, -7.7035250848158689e-09, -3.6333852266386309e-09, -2.3560313930923518e-09, 1.1061783735798626e-08, 1.1148735339999933e-08, 8.3943750458213319e-09, 8.4869051792790112e-09, -2.1670460348052756e-11, -6.5672963868272649e-09, -9.9309343578463105e-09, -1.0369812235462572e-08, -1.0808975725758174e-08, -1.0585341167837492e-08, -1.0843451921961622e-08, -1.0550540145530529e-08, -1.1133973483630488e-08, -1.0505231615165478e-08, -1.5301302501088965e-08, -5.0625010216895361e-09, -1.0592212955113860e-02, -1.0161784863906814e-02, -9.7055306306133432e-03, -9.0076095892205471e-03, -8.4765252453160439e-03, -7.6427236757713873e-03, -7.0749934896097572e-03, -6.7520440541585097e-03, -6.5592530600365323e-03, -6.5884707925420172e-03, -6.6076241279154763e-03, -6.2493980745162714e-03, -5.9354358470348062e-03, -5.7506993302974124e-03, -5.9041738929696691e-03, -6.3429266760100106e-03, -7.1266746970676392e-03, -8.5575892666419628e-03, -9.3153460290882895e-03, -7.5837938239004393e-03, -6.3162748389946699e-04, 3.8749442811223783e-05, -4.3550016031940615e-05, 1.1271370618076194e-04, -1.9085782979125394e-05, 4.2516821542785499e-06, -4.7925454176778366e-06, 5.2490931501730982e-07, -8.9130048463561596e-07, 1.9132533744573000e-07, -3.2013940160456871e-08, 2.8731966870721446e-08, -1.0324732025744957e-07, -4.9008038031000999e-08, 5.2772141770666362e-09, -5.8193777571291863e-09, -1.4929534129955440e-09, -3.6008705522547202e-10, 8.6197567380802594e-10, -8.9181719608699261e-09, -7.8362322744813303e-09, -5.8677018356461351e-09, -4.5776020210172054e-09, 7.3392959374848910e-10, 3.1584959214042696e-09, 4.3017205951859094e-09, 4.0653950995547805e-09, 4.2346475527532679e-09, 4.1031539711050558e-09, 4.2307271583622019e-09, 4.0738319662114719e-09, 4.3942844450001184e-09, 4.0319009502604031e-09, 8.1103924600561816e-09, 1.1979329800695937e-08, -1.0473264795181160e-02, -1.0232216348850812e-02, -9.3679594316151069e-03, -8.6041874056999590e-03, -8.0961899284893862e-03, -7.2949299405673240e-03, -6.8863551501201214e-03, -6.7678405942741826e-03, -6.6581492306166251e-03, -6.5330735550189617e-03, -6.3774113868036858e-03, -6.2631839424316244e-03, -6.0927162546146052e-03, -5.9323336972265939e-03, -5.8397065365264761e-03, -6.3045204213385136e-03, -7.3466953219106790e-03, -8.4460333172494614e-03, -9.6273134919010704e-03, -6.5529524074638907e-03, -8.9312302518121834e-04, 2.7209784882132107e-04, -4.3804132556294272e-05, 5.3927562687552315e-05, -8.3443915488349131e-06, 8.3941036465781920e-07, -1.0025200885142220e-06, -2.8943608980131104e-08, 7.0291820375743353e-08, 6.5580899595915751e-08, 6.0674920204870780e-08, 4.3025827183571560e-09, 2.9243047651363735e-09, -3.0975441841216752e-09, -4.5177650624954498e-09, 1.3289455612027802e-08, 8.0750406628829659e-09, 4.0717321307150167e-09, -4.7341849646227729e-10, 3.9445894115105670e-11, -4.9517614089515140e-10, -2.7859109476529708e-09, -2.2623122176057726e-09, 1.4306287708307219e-10, 1.7834732063577718e-09, 2.5896485667670222e-09, 2.8474209734855038e-09, 2.8380141327277730e-09, 2.8974507532836258e-09, 2.8464307187323068e-09, 2.9193588102494061e-09, 2.8383267637252518e-09, 3.2069063741341219e-09, 3.3003561437580653e-09, 2.2650876460930669e-09, -1.0324961585232637e-02, -9.5740516317843471e-03, -9.2520136543762371e-03, -8.3101689692828135e-03, -7.7728182812925178e-03, -7.2290417647676991e-03, -6.9437352160269944e-03, -6.7836451515669444e-03, -6.6880443289600022e-03, -6.5107801001539622e-03, -6.3073508108411613e-03, -6.2492222380160223e-03, -6.1029008764698911e-03, -5.9504156352524346e-03, -5.8241120210960617e-03, -6.4024849121128713e-03, -7.3103760369062284e-03, -8.4877736257832209e-03, -7.2404083324312547e-03, -5.7541670855081294e-03, 2.0204500661089586e-03, -5.7939028858900289e-04, 2.5226098424751566e-04, -5.6712207975330691e-05, 1.5311869166481331e-05, -6.7115202437621974e-06, 4.5000404492000884e-07, -3.2585677910403825e-07, 1.3072896886992774e-07, -5.2618455782143300e-08, -2.9987549213244960e-08, -9.8016861096203271e-09, -3.2151820207409164e-09, -1.8101273534546977e-09, 2.2325849873526277e-09, -1.0892048022656574e-08, -6.3904470658324858e-09, -3.0484527668839505e-09, 3.6694081678874911e-10, -2.4549752335178976e-10, -3.0583734909840274e-10, 1.7516700083432171e-09, 1.3495681665839747e-09, -2.1512775133340767e-10, -8.3797956160897025e-10, -1.1376811524105301e-09, -1.1160540842186650e-09, -1.1081765236356511e-09, -1.1226063368827144e-09, -1.1040738948087103e-09, -1.1323782805536253e-09, -1.1081818709207658e-09, -1.2627796698930216e-09, -1.7999587783798510e-09, -3.6340795971437356e-09, -8.6432237598608429e-03, -9.1960630438424895e-03, -8.8247572146528883e-03, -8.3894514712944263e-03, -7.5190248879439953e-03, -7.4199597023874436e-03, -7.0607957536720362e-03, -6.6351661413008300e-03, -6.4591864497781926e-03, -6.3643179629521707e-03, -6.3004468831695110e-03, -6.1329949757638336e-03, -5.9129292022886276e-03, -5.7533769205531937e-03, -5.9120663042400157e-03, -6.5481936615921776e-03, -7.4856041156470057e-03, -8.1481607770223889e-03, -4.7977748429534825e-03, -8.3015021377745427e-04, 9.6876504875477172e-05, -3.1374781090632970e-05, 9.7597280088421092e-05, -2.1507047603459460e-05, 6.0373823793816812e-06, -3.4497269455298547e-06, 6.9824980465819984e-07, -2.1704828477589152e-07, 1.5670724667755345e-07, -1.4649103816273545e-08, 6.1715162286959859e-09, -5.6442873991454593e-09, 8.0222130347602956e-09, 4.3383168172510343e-09, -6.8798502712939108e-10, 4.5506681664022816e-10, -5.4951379931849134e-10, -2.6715382464288610e-10, -1.7105433042230445e-10, 7.9317948953674944e-10, 7.9956250176533086e-10, 6.0498021249208965e-10, 6.0211851189663143e-10, 1.2062042554009111e-11, -4.8719545281752930e-10, -7.0025081046198867e-10, -7.5492751980266171e-10, -7.7036587439044402e-10, -7.6586733049194278e-10, -7.7526031688063268e-10, -7.6409991094789076e-10, -7.9135404739555382e-10, -7.7870696262721806e-10, -1.0499167039240698e-09, -4.2003283490243959e-10, -8.3712881621863869e-03, -6.8501189847005317e-03, -8.6277084829465417e-03, -8.1870105614836250e-03, -7.6539078859906712e-03, -7.3436992632009146e-03, -6.9323967104815559e-03, -6.4060544890901239e-03, -6.0581489509156095e-03, -5.9880911998559244e-03, -6.0432862897556172e-03, -5.8801239788861953e-03, -5.6960878187495984e-03, -5.6202755435687535e-03, -5.9979591996359854e-03, -6.7917263358611979e-03, -7.9401095144409004e-03, -8.4224565571598790e-03, -3.5225155844686371e-03, 5.9674707467133716e-04, -1.5022331137361445e-04, 1.2141258835216164e-04, -1.8225434922123349e-05, 8.3119489803369618e-06, -4.8383628484942082e-06, 2.4351242975005822e-07, -3.0248332123929784e-07, 1.2802235794745292e-07, -4.7009008464989109e-08, 1.2545908177440243e-08, -5.4597282837321251e-09, 1.1263531510480665e-09, -7.4660758864913447e-09, -3.4142529110197956e-09, 4.3675902133767826e-10, -4.1002487025771327e-10, -1.0883306501017001e-10, -2.8771788662500242e-11, 6.0550977778886864e-11, -6.4045760172050728e-10, -5.6222836057454907e-10, -4.2207314664252822e-10, -3.2582865550599693e-10, 4.7234973311188755e-11, 2.3268302562495791e-10, 3.0302011073957136e-10, 2.9564651681662779e-10, 3.0042244213157598e-10, 2.9689552292350152e-10, 3.0017360819201144e-10, 2.9699729741511360e-10, 3.0694765913025224e-10, 3.1180418316734126e-10, 5.3598514775793360e-10, 9.1325675841136267e-10, -3.5539016866609633e-03, -7.2916885352604169e-03, -6.8453441923162182e-03, -8.2119099113582353e-03, -7.8005003221469846e-03, -7.1134361323076656e-03, -6.5413158087587048e-03, -6.2408076290163955e-03, -5.6649813104275581e-03, -5.5490667428167023e-03, -5.6163230667168884e-03, -5.5792891792995902e-03, -5.5437055395176904e-03, -5.6502193642443965e-03, -6.0179306521952192e-03, -7.1111851924188924e-03, -8.0695335791581210e-03, -8.9623032196231630e-03, -3.4603707193985654e-03, 6.4778221102944626e-04, -1.7874069288026747e-04, 1.5132871565728953e-04, -2.7677981536582493e-05, 8.0712238733694796e-06, -4.4554202520376209e-06, 7.0581936058948243e-07, -2.0026754434632850e-07, 1.1752940636200948e-07, -9.5557610149872053e-09, 8.0820399719200558e-09, 7.7895579098314141e-10, 4.5429701125108968e-10, 1.2148509715564915e-10, -1.0551102252640519e-10, -3.1592507247963676e-10, 9.5861456340701375e-10, 5.7549724165849303e-10, 2.9118458328130509e-10, -3.4269562881883431e-11, 2.9562621068571909e-12, -3.5588498917575248e-11, -1.9964293125574947e-10, -1.6350233536868708e-10, 1.2244539800490561e-11, 1.2554588662075372e-10, 1.8810876467600934e-10, 2.0239185848092145e-10, 2.0562777695853907e-10, 2.0553455725574876e-10, 2.0824890683418529e-10, 2.0272754135131077e-10, 2.1632500131485433e-10, 1.9627635627905704e-10, 3.0762084893276587e-10, 8.2080022466290981e-11, -7.8590576368419984e-03, -3.0182991568913162e-03, -7.5602572985134613e-03, -7.3501899424794417e-03, -8.0906737555169195e-03, -6.9069382099475191e-03, -6.3992849897272636e-03, -6.1489272346404306e-03, -5.7192588080669099e-03, -5.4955728412008076e-03, -5.4178896063025173e-03, -5.4503052612022013e-03, -5.5404731590374540e-03, -5.6813484358020222e-03, -6.1782932719085665e-03, -6.9043389669055238e-03, -7.7131897640107215e-03, -6.0009082200952000e-03, -3.6422324492172953e-03, 9.8923620031553445e-04, -2.3635902533623686e-04, 1.5188859883877038e-04, -3.5087476327390208e-05, 8.2786522676546741e-06, -4.2277511364676530e-06, 8.3187176492285604e-07, -2.5064883623336382e-07, 1.0733501585710107e-07, -1.8257470925505878e-08, 1.7711360399943945e-09, -5.3801551069354667e-09, -1.9620950242153767e-10, -3.2355126973362784e-10, -4.4371864147373097e-11, 1.5550269999073905e-10, -7.8078231754334995e-10, -4.6141718861004120e-10, -2.1912288018679886e-10, 2.6272029311161932e-11, -1.7534241690975866e-11, -2.1892910580115568e-11, 1.2566800345562706e-10, 9.7232085013651548e-11, -1.6111482590772108e-11, -5.9350215714237819e-11, -8.2581420000893413e-11, -7.8933980011963722e-11, -8.1479687580321425e-11, -7.6950530149277885e-11, -8.6074364649690871e-11, -6.8369784660127220e-11, -1.0342902055648917e-10, -2.5230243241858297e-11, -2.6512830732933201e-10, -1.0540501197559005e-10, 1.2250486429220332e-03, -7.8374547298387318e-03, -4.9933856352329005e-03, -7.4176527158816390e-03, -7.6587997316016621e-03, -7.0368885941535231e-03, -6.3930237523700667e-03, -6.0843595054749511e-03, -6.0104272866577241e-03, -5.7037303741794970e-03, -5.3760369508982636e-03, -5.4583575624846808e-03, -5.5276546482391636e-03, -5.7728482328194136e-03, -6.1376043179694403e-03, -7.0432248257594060e-03, -5.6114709773513217e-03, -3.3337067304322083e-03, 1.4814833299890053e-03, -4.5040530057847451e-04, 2.4787893174749458e-04, -2.7086314799106383e-05, 1.2814990380144339e-05, -6.1518029061186281e-06, 5.4239786793938249e-07, -3.1894445259975134e-07, 1.4909277314145188e-07, -9.2927500555943943e-09, 1.2443580706995730e-08, -3.5609089517655255e-09, 7.9853323796006889e-11, -4.5163741434314959e-10, 6.4794302936281925e-10, 3.2859729791768350e-10, -4.6977210153582166e-11, 3.0456876604079142e-11, -4.0298215936082626e-11, -1.9359067924022352e-11, -1.2200386968058696e-11, 5.6983628238119546e-11, 5.7419459703438036e-11, 4.3419980555892829e-11, 4.3257648656667980e-11, 7.6516809381643736e-13, -3.4860489495081026e-11, -5.0098827863997997e-11, -5.5253041725267238e-11, -5.2280305085083967e-11, -6.1728688133255716e-11, -4.1999305942785892e-11, -8.1097611265290581e-11, -7.7181767921263855e-12, -1.9061739079534457e-10, 2.0514799581317078e-10, -3.5162765667923201e-10, -3.3791062298119351e-04, -4.9346906607611431e-03, -4.4606657896566204e-03, -6.7749293041260497e-03, -7.1193949430612136e-03, -6.9608856027441740e-03, -6.3852215650071278e-03, -5.8006658498727867e-03, -5.7229342946145817e-03, -5.4601282537614926e-03, -5.1833793131587369e-03, -5.2447105352473739e-03, -5.3831519167080177e-03, -5.6601199356636489e-03, -6.3214642006700628e-03, -6.9239854231552891e-03, -5.7771891144297975e-03, 1.2325678211325521e-04, -1.8674102647170840e-04, 5.0370127751639610e-05, 1.3559178686776884e-04, -2.6764108493869084e-05, 8.2930417886446848e-06, -5.6411678233315890e-06, 9.2215237328655735e-07, -3.3757417389277799e-07, 1.5803732619762813e-07, -2.2522361758144788e-08, 5.9630484291681163e-09, -3.6761262806885801e-09, 2.4730317975201442e-10, -1.3495130813073568e-10, -4.2316660603131800e-10, -2.5466344576738700e-10, 3.6199093418967654e-11, -3.2324248204311512e-11, -7.8385194656697271e-12, -2.1776769840511911e-12, 4.4145676426476238e-12, -4.5954818807735984e-11, -4.0403181370213606e-11, -3.0161497594199255e-11, -2.3787091762463020e-11, 4.4049724805261814e-12, 1.5482573990227566e-11, 2.2537279334433613e-11, 2.2495691941182283e-11, 1.6094618693340834e-11, 3.4808493760973835e-11, -6.4955419515344559e-12, 7.5849169826891494e-11, -8.0478440751818869e-11, 3.0441528985070132e-10, -5.5001269597815261e-10, 7.4118667453548781e-10, 9.0051615784589209e-05, 1.5398870528371142e-03, -4.5295958072805835e-03, -5.7614072410600847e-03, -6.4917422747231869e-03, -6.8805910619000113e-03, -6.5052533172182264e-03, -5.6221354162195036e-03, -5.2146341654457362e-03, -5.0862922633240909e-03, -5.1018681109305936e-03, -5.1007010562114791e-03, -5.2950375638014247e-03, -5.7616832554786557e-03, -6.4352258627659170e-03, -7.3964705646342582e-03, -5.9353713883558406e-03, -7.0454410549067282e-04, 2.7167890527475340e-04, 1.1386729024509562e-04, 2.8711578822422613e-05, 6.2357565030578667e-06, -6.1815247523859811e-06, -2.4346261055189361e-07, -4.2615546609004666e-07, 1.7563914642376548e-07, 7.3564939478075984e-09, 1.4164209487834952e-08, -3.7579570788212092e-09, -9.1149437390219967e-11, -1.3996911244515235e-10, 1.0396432280064365e-10, 3.0849411160370835e-11, -1.1168298816137401e-12, -2.4340340967808974e-11, 6.8039561587933048e-11, 4.1086605607554630e-11, 2.0925293751439603e-11, -2.4191594636801400e-12, 1.7947213268483531e-13, -2.4243524126155852e-12, -1.4656352791565103e-11, -1.0438094128189385e-11, -1.6548685165262977e-12, 1.3021829708276256e-11, 1.0739049406682799e-11, 1.3458713310487980e-11, 2.5125102519341080e-11, -1.2384913407326170e-11, 7.2920305210777414e-11, -9.9100171645216673e-11, 2.3023400460425725e-10, -5.7826135633348708e-10, 1.2606230564635168e-09, -1.4191420972392566e-09, -1.9479395672329419e-05, 2.2332619445666058e-03, -2.4274695524498973e-03, -4.9536253264254896e-03, -6.1944431271984644e-03, -7.1405597986891646e-03, -7.0465343485927243e-03, -6.4356946021434241e-03, -5.9399082340640535e-03, -5.8283331295618801e-03, -5.8703548654344961e-03, -5.7663454083352259e-03, -5.9186622871251968e-03, -6.4154007873662017e-03, -7.0395857774837589e-03, -7.0279128951388041e-03, -4.9297153585354126e-03, -1.0590257494592224e-03, 2.4805480262520967e-04, 3.4298690551842070e-05, 5.8638344430958652e-05, -1.5625660415391495e-05, 1.2297255063076977e-06, -2.0772626010033752e-06, 3.7968285473283236e-07, -3.4384594501394227e-08, 5.1011519235262537e-08, -6.0974503597252538e-09, 4.3305650786282929e-10, -1.4967754575372950e-09, -1.4653072714075101e-10, -3.8966563184689509e-11, 1.4913420975579128e-11, -6.4599621496259224e-12, 1.1417438202558985e-11, -5.6912619555244889e-11, -3.3038362600183377e-11, -1.5628007080711187e-11, 1.9765938289329626e-12, -1.0525840724202873e-12, -1.7129246697271394e-12, 1.0016910911847532e-11, 4.6391372189071023e-12, 5.9626847730143151e-12, -1.4291584408965274e-11, 3.3149039069257924e-12, -5.8438410360794890e-12, -2.4459905455243014e-11, 4.9396902367104811e-11, -1.2556450237205530e-10, 2.3207794627028155e-10, -4.5694059560424938e-10, 1.2423443853520899e-09, -2.6265804253799985e-09, 2.9996736422913117e-09, 1.4828707424221144e-05, 7.1911693209583704e-04, -7.5550451446320245e-04, -3.3377138001285112e-03, -6.2052408497867730e-03, -6.8636011055778837e-03, -7.2992733590865264e-03, -7.3283181662081448e-03, -7.0697648723872311e-03, -6.8626068041184873e-03, -6.6766704023352511e-03, -6.4481877210245814e-03, -6.4933226894909948e-03, -6.7843336385428263e-03, -7.4630518609021396e-03, -5.3122994876330966e-03, -2.7946471304129998e-03, 1.5239189161403823e-04, -5.1660996635239401e-05, 1.6061103014353503e-04, -1.1957480819010740e-05, 5.3888135421194640e-06, -4.8789484729506137e-06, 3.4492952469429832e-07, -1.6740774705565654e-07, 1.2263055069075914e-07, -2.0911257388222040e-09, 4.1516696187675339e-09, -2.4496073647978494e-09, -1.4939905391910153e-10, -1.0505159285870147e-10, 4.2152022920304705e-11, 4.8898552850069887e-11, 2.6142519220359248e-11, -5.1638990663811085e-12, 1.8878320402152676e-12, -3.0565460102174868e-12, -1.4538169116912886e-12, -8.7427612892321260e-13, 3.8372435383262488e-12, 4.7280691189456603e-12, 1.1938022998533165e-12, 8.2454263143801054e-12, -1.7876231094351991e-11, 2.3490621340466200e-11, -2.9801568331155881e-11, 3.4924068845199052e-12, 2.9243807896095486e-11, -1.1375975075139655e-10, 2.4313827513833264e-10, -4.9848978850991488e-10, 9.4021066279759147e-10, -2.6246646548863661e-09, 5.5022586400305107e-09, -6.3708966470399364e-09, 3.8401346643060198e-04, -6.9602536467768591e-04, 1.3662200828668870e-03, -2.0717778843785846e-03, -3.9946192726804317e-03, -4.6661404922913180e-03, -5.0000643961867486e-03, -5.3504678196114527e-03, -5.2616504443125517e-03, -5.0864963329580945e-03, -4.8448788706568352e-03, -4.6331295210689447e-03, -4.6088547775606156e-03, -4.7756875834908535e-03, -5.1628348368133771e-03, -2.9894870880511869e-03, -7.0290287607507776e-04, 2.0363382993101410e-04, 6.4545988411606007e-05, 9.7901607898335304e-05, -6.8600243885528892e-06, 8.0865014533601487e-07, -2.8709306837869863e-06, 2.0169948649321643e-07, -5.6772291953248758e-08, 8.0468578560541478e-08, -3.7556574975601206e-09, 2.0636975701178364e-09, -2.3691816204186866e-09, 2.9753278372969191e-11, -7.8589118746768064e-11, 5.9875717394169276e-11, -3.4300775192180541e-11, -1.5595781285328292e-11, 1.2379922662095894e-12, -2.0028341778024344e-12, -3.0695533463111213e-13, 2.6045742711026942e-13, 5.2962162108184663e-13, -2.5037402435600792e-12, -4.4520557216948947e-12, 2.7591297302453910e-13, -1.7092111417611050e-11, 3.6864753220552937e-11, -7.2029386361666115e-11, 6.8011140989809871e-11, -3.4000406656797821e-11, -5.4841977313591084e-11, 2.1785176874261625e-10, -5.0585126712410222e-10, 1.0287206754847067e-09, -1.9707287980327837e-09, 5.4972007631701181e-09, -1.1579172768186319e-08, 1.3440819904980694e-08, 2.2586187136813634e-04, 1.3291540179263123e-04, -1.8572013861077201e-06, -9.5596826710064417e-05, -7.9798761038359046e-04, -8.5511864423067421e-04, -9.6064597448722311e-04, -1.0165521452667886e-03, -1.0255181673244976e-03, -9.7377896014691490e-04, -9.0600712328858801e-04, -8.4718293501719749e-04, -8.4046303560430385e-04, -9.5204120277918997e-04, -9.6358505232993844e-04, -5.0441937145557017e-04, 1.3466156416408421e-04, 2.5860467517293210e-06, 1.4094821351416436e-04, -3.4921742966397430e-08, 8.8871859709159246e-06, -6.2171327890166107e-06, 2.6706928210498519e-07, -4.1533124546248488e-07, 1.7866189288827405e-07, -6.6738418051214953e-09, 1.3288263320075785e-08, -4.4743414055726204e-09, 5.4582181276911085e-11, -3.6845231577678668e-10, 1.1418896245772060e-10, 1.2642577685694628e-12, 7.9068414684559107e-12, -6.6839937989775222e-12, -5.6874934991658910e-12, 8.2343948825357172e-13, -7.6866792553427488e-13, -2.3805663386736176e-12, -3.8516838373262030e-12, -5.5298255124264228e-12, -2.1804568784214440e-12, -1.1512883663989185e-11, 7.6212608272896443e-12, -1.0540836953287780e-10, 1.6828718019806788e-10, -1.9185833737694891e-10, 1.0519421531768325e-10, 7.5239640906499261e-11, -4.2742401371725913e-10, 1.0341896792068206e-09, -2.1306557568614992e-09, 4.1138210034666334e-09, -1.1508044493908909e-08, 2.4342577019213774e-08, -2.8334530178739104e-08, -1.9910289868108294e-05, 2.4087133033959618e-04, -1.8523165821213888e-04, 4.4007222302402721e-04, 8.8807496243801989e-04, 9.6383307604687787e-04, 1.0981192526916470e-03, 1.1766047610651323e-03, 1.1719525778545944e-03, 1.1418339368925653e-03, 1.1038003866984739e-03, 1.0711758356013804e-03, 1.0550943137512536e-03, 1.0108369695999292e-03, 1.0568979748733949e-03, 6.3815336373358039e-04, 2.5389106730478741e-04, 5.1533204366246537e-05, 1.7296540326876319e-05, 2.9308972124831830e-06, -5.0229298033264351e-06, -1.2967799753925370e-06, -5.0691549873373241e-07, 8.6273594537296773e-08, 3.7540661654294908e-08, 1.8379156628767690e-08, -1.0565716968328163e-09, -1.0321141050650094e-09, -5.6748462526345911e-10, -3.1829888551271335e-11, 1.8341691230064350e-11, 1.9717455858152266e-11, 6.5059049998445612e-12, 4.5896502744169343e-12, 6.1597747031110622e-12, 1.7171007454450105e-12, 3.4139662668034032e-12, 4.6374930805226366e-12, 4.4145933924492203e-12, 6.3474721897875674e-12, -2.6806408926372677e-12, 6.2381052743070570e-12, -4.7218324627888719e-12, 2.4339717958135609e-10, -4.3046139265937033e-10, 4.9408869270267664e-10, -3.2397106178305712e-10, -7.7315240147590725e-11, 8.1702216259832428e-10, -2.1125061214211094e-09, 4.3978280010736892e-09, -8.5729931270303594e-09, 2.4067159392140991e-08, -5.1112705640003753e-08, 5.9744221963739519e-08, -1.7859678070642013e-05, 3.2201589404104013e-05, -6.2687900805550098e-05, 2.2118517252633289e-04, 3.8026553687511323e-04, 4.8833143029024771e-04, 5.3327092587310276e-04, 5.7134067919940162e-04, 5.7069678275994962e-04, 5.5514083592266006e-04, 5.3378890482874697e-04, 5.1891434990314345e-04, 5.1087268608368541e-04, 5.0967657295185320e-04, 4.7317814020607016e-04, 3.0375916775313150e-04, 1.2705833758424386e-04, 1.7215297916797403e-06, 1.7756851199238221e-06, -8.3915064400353159e-06, -2.0486422392929343e-06, -1.0063296475069201e-06, 4.3279195279199946e-08, 5.0458887334924691e-08, 3.5914099485241831e-08, 4.8999739425735576e-09, -1.0407536425824804e-09, -9.9341256309384493e-10, -2.5884968468800271e-10, -1.6515063242742573e-12, 9.1804333232636814e-12, -6.6560965723480581e-12, -1.2288708597799416e-11, -1.4222757059546495e-11, -1.5856180355256627e-11, -1.5164694857922739e-11, -1.5812424910026032e-11, -1.7286251369121736e-11, -1.6545044116212174e-11, -2.2948773686481266e-11, -1.6259920113895904e-12, 4.0975802828926988e-11, 3.5776450107560115e-11, -4.1328237425190817e-10, 1.2012358941750068e-09, -1.1855546934794181e-09, 9.6498709196979338e-10, -1.8712000698917208e-11, -1.5312999332092736e-09, 4.2798825958950681e-09, -9.0798562835114893e-09, 1.7800043222368500e-08, -5.0282902386983297e-08, 1.0720235978003284e-07, -1.2595142487477340e-07, -1.6336598055857266e-05, -3.5014633223885640e-05, 2.2774279766023372e-05, -6.0494373215016421e-05, -1.2784377411906821e-04, -1.3187858745431456e-04, -1.4470258240525252e-04, -1.6397729695594165e-04, -1.6248913398333314e-04, -1.5930409441324705e-04, -1.5217828313814769e-04, -1.4441779600927324e-04, -1.4070921084440718e-04, -1.3492986774569365e-04, -1.6551747605108094e-04, -7.8537018931535210e-05, -1.7402991467970028e-05, -3.0237697870922728e-06, -7.6083166720025165e-06, -2.5537792253396631e-06, -1.4174573788663112e-06, 9.5221398087449657e-09, 5.0338370063360846e-08, 5.9289002595110238e-08, 1.2889644378862204e-08, 8.8936812767310448e-10, -1.2168066496618443e-09, -4.1921511067751806e-10, 7.4272445588522903e-11, 2.0014597634397321e-10, 1.9333064305276232e-10, 1.7896755366737793e-10, 1.7176309143442439e-10, 1.7288500511291986e-10, 1.7468356866253212e-10, 1.7384396431619799e-10, 1.7234229424427025e-10, 1.7221907187554668e-10, 1.6977577850518788e-10, 1.8428577956176861e-10, 1.8390313409480732e-10, 3.6814994710523616e-11, 7.6316920561954674e-10, 1.4019004709268229e-09, -2.5550462722130629e-09, 3.3508176875557405e-09, -2.3991905771097999e-09, 6.6021285313744293e-10, 2.9038118003893443e-09, -8.5512945544041763e-09, 1.8719870259822913e-08, -3.6900853261911948e-08, 1.0480214818545108e-07, -2.2469104181670890e-07, 2.6537204108733475e-07, 2.0739219627174390e-06, -1.9196401617975283e-05, 1.5338394287062955e-05, -5.0998258542823017e-05, -8.9122073593197147e-05, -1.0884311171243700e-04, -1.2169661598857365e-04, -1.3080280411377487e-04, -1.3280971129886465e-04, -1.2995540452132026e-04, -1.2544040046658794e-04, -1.2106352362400291e-04, -1.1735773117596549e-04, -1.1610544228635167e-04, -1.0819202245255372e-04, -6.9033442046138871e-05, -2.9508229657739795e-05, -3.8327444774750966e-06, -3.3000214034310284e-06, -5.0924061913322494e-07, -1.3755413659732830e-07, 1.5235385302894461e-07, 5.7115878370676918e-08, 2.8510744883296791e-08, 1.1104932260211364e-09, -1.1603788059816409e-09, -1.4064669505539813e-09, -4.9810123910133848e-10, -2.9676961013419198e-10, -2.5064197757746799e-10, -2.7083593709203123e-10, -2.8003049101017925e-10, -2.8215186101149953e-10, -2.8203362833090911e-10, -2.8277940218915908e-10, -2.8451409598510141e-10, -2.8734601520028977e-10, -2.9067378086206248e-10, -2.7562199641758059e-10, -2.4669800783357759e-10, -2.3354697789947955e-10, 5.2406806203149879e-10, -2.0783529449861469e-09, -2.6795028257829701e-09, 6.8016538013783434e-09, -8.1662035241597541e-09, 6.5689333339155609e-09, -2.4497053786529110e-09, -5.0025894997654530e-09, 1.7334657440373769e-08, -3.8144161760601814e-08, 7.6511784078553413e-08, -2.1802212720953285e-07, 4.7020923566593043e-07, -5.5919971769357452e-07, 2.6785053891526097e-06, 6.5641937965701816e-06, -5.8046622167977693e-06, 8.5129171705017803e-06, 2.8864259221120236e-05, 2.5651128901767531e-05, 2.8935292177595384e-05, 3.2245503075990778e-05, 3.1443233823952310e-05, 3.0076693779350350e-05, 2.8167082143981670e-05, 2.6527530259064236e-05, 2.6630204092562004e-05, 2.6699959923943972e-05, 3.6351557484881614e-05, 1.4745767743859842e-05, -1.7159028067655503e-06, -8.4916697634551227e-07, -3.2067882805355283e-07, 1.3337439452062831e-07, 1.9805775234844978e-07, 8.6697156212667747e-08, 3.3120192284759060e-08, 4.0607241285066809e-09, -3.1700340825100738e-10, -6.7226106924061710e-10, 3.7340625966167211e-10, 7.5255113222310634e-10, 8.4709515828706658e-10, 8.3122153225149292e-10, 8.1797458379145177e-10, 8.1432306310949033e-10, 8.1419719764560562e-10, 8.1337078494973444e-10, 8.1017437642558546e-10, 8.0448524434457123e-10, 8.0338593704031361e-10, 8.3148185320465473e-10, 8.8737947065843474e-10, 9.0969824698854986e-10, 1.0620142654291405e-09, -2.2442332665904927e-09, 5.5340364827033243e-09, 2.9116386543546341e-09, -1.9059074321797070e-08, 1.9107787272570897e-08, -1.7966637856289824e-08, 7.4379369512447835e-09, 8.0925295293035604e-09, -3.4328405247759097e-08, 7.8382567839097028e-08, -1.5730921227273542e-07, 4.5292890219622572e-07, -9.8238254033541222e-07, 1.1778571039761099e-06, -9.8077861029714775e-08, 4.1773606680892096e-06, -3.6144876207003110e-06, 1.0972439205106355e-05, 1.8756577057890168e-05, 2.3367947234698497e-05, 2.5538749370446201e-05, 2.7609163272948600e-05, 2.7966519992560224e-05, 2.7178836192881528e-05, 2.6096428748637046e-05, 2.5048274822317418e-05, 2.4422855781185138e-05, 2.4808181251452510e-05, 2.3427664214911714e-05, 1.4447896598469845e-05, 4.8567373603694000e-06, 3.3245115786088993e-07, 5.2674135686271413e-07, 9.5178108374218470e-08, 1.2036412328631082e-07, 1.0108359904648610e-08, -9.8840053280651805e-10, -1.1378161024586282e-08, -9.5123692904746510e-09, -8.4361643102801292e-09, -7.6508565391843024e-09, -7.5237979071766936e-09, -7.5243099084524884e-09, -7.5543171856602264e-09, -7.5633638152894540e-09, -7.5648744971414193e-09, -7.5651171238338109e-09, -7.5689223239124546e-09, -7.5764962675548518e-09, -7.5778171020285476e-09, -7.5541613782186250e-09, -7.4979975196070355e-09, -7.4455059335238293e-09, -6.9927280379436692e-09, -8.1447037230883423e-09, 6.8423031848144529e-10, -3.6346407886992012e-08, -1.7758115135714861e-08, 3.7565974114837225e-08, -5.3752808093499027e-08, 4.2867480449897133e-08, -2.4566722929379725e-08, -1.3928501415606809e-08, 6.6333339411583925e-08, -1.5983851527588688e-07, 3.2401627241863962e-07, -9.3686193469114804e-07, 2.0501165973879631e-06, -2.4789040788389047e-06, -3.9815375352302094e-07, -1.4291230079194997e-06, 1.6440984127324716e-06, -2.7047345965246347e-06, -8.8636613909702164e-06, -7.9762416234710476e-06, -9.4293994426335181e-06, -9.9707284883093772e-06, -1.0017298243569783e-05, -9.3421167846330366e-06, -8.9820188127406886e-06, -8.3861450048891562e-06, -8.4398811994387812e-06, -8.6120091719738001e-06, -1.0484054713169599e-05, -5.4424939270204115e-06, 6.9049289346326259e-07, -7.1479421282861431e-08, 2.9240727746239611e-07, 1.0550662360035755e-07, 6.9736109854225906e-08, 2.1554798078387465e-08, 5.4615406765786030e-09, 8.0114191948444605e-09, 1.0430810526299364e-08, 1.2085216213289680e-08, 1.2571347757000997e-08, 1.2670669626008288e-08, 1.2628760867453882e-08, 1.2601744915234419e-08, 1.2592741128016668e-08, 1.2592051791191199e-08, 1.2588820636481087e-08, 1.2579285783105489e-08, 1.2573059158637722e-08, 1.2600370268527191e-08, 1.2724651332970830e-08, 1.2960105497518502e-08, 1.3305422895946474e-08, 1.1211770776733574e-08, 1.3850676997689826e-08, -1.7766386423368136e-08, 8.4474126916189111e-08, 1.8421219134508518e-08, -1.0902806008147511e-07, 1.2873972586938121e-07, -1.0974991029606002e-07, 6.7337630228758716e-08, 1.3438251003292101e-08, -1.3553566621891250e-07, 3.1898353861341960e-07, -6.6615682328859116e-07, 1.9334778116608664e-06, -4.2642771034152177e-06, 5.2188467897984134e-06, -2.4750405302077089e-08, -1.4460091129854307e-06, 1.4741024175335534e-06, -3.4443495667764749e-06, -4.0502487833587314e-06, -6.9133722786426932e-06, -5.8835703670816197e-06, -7.5479534790562353e-06, -6.6774740381317366e-06, -7.0401514849563473e-06, -6.1935558064996066e-06, -6.2981408648771220e-06, -6.0667359166599599e-06, -5.8705241571810340e-06, -7.0032580840456715e-06, -2.1195456617658509e-06, -3.0739517787974069e-06, 8.4054189914721040e-07, -4.0310028231977735e-07, 9.8566082382166645e-08, -6.9092510217479142e-08, -4.4889342170695637e-09, -2.4270256534922926e-08, -3.6730483225392652e-08, -4.0627657935967103e-08, -3.9687344659613839e-08, -3.8719532032943085e-08, -3.8439319092147374e-08, -3.8428634939447447e-08, -3.8467586805810902e-08, -3.8484698466450780e-08, -3.8489620809203364e-08, -3.8498239789353178e-08, -3.8506534812360414e-08, -3.8475325132120933e-08, -3.8315473018370270e-08, -3.8020323478768882e-08, -3.7916230988716037e-08, -3.9844805885366937e-08, -3.7406292515839053e-08, -5.2337395370951863e-08, 4.8339133931844238e-08, -2.4062095421424710e-07, 2.2574709775124990e-09, 3.0341625481327891e-07, -2.9300280868227446e-07, 3.0464936211400950e-07, -1.6407338376822622e-07, -3.7477314914630133e-10, 2.4888622597758758e-07, -6.6029962950912152e-07, 1.3471179340562509e-06, -3.9769513608192697e-06, 8.8467796698944723e-06, -1.0962170411420863e-05, 3.9965266683886225e-07, 1.8552802332956497e-06, -1.9199796104629177e-06, 2.9886180818473060e-06, 4.3066040364067582e-07, 4.7393448141721389e-06, 1.0971449696459135e-06, 4.3142691326381044e-06, 2.3932381104721512e-06, 3.9670806189703867e-06, 2.7146681677303608e-06, 3.4188202731044726e-06, 2.6860196378070134e-06, 1.7179496647964920e-06, 5.3533940062543139e-06, -2.0578619281241134e-06, 5.1540403998103944e-06, -2.2254902300368591e-06, 1.0231807167187775e-06, 1.5274868456075300e-07, 7.3354934726531720e-07, 4.3600163121776479e-07, 3.3377547981326998e-07, 3.0943287423828517e-07, 3.0495961774850691e-07, 3.0444430521183287e-07, 3.0490978143469312e-07, 3.0551498273045517e-07, 3.0558905955732174e-07, 3.0555650909605330e-07, 3.0552106591920391e-07, 3.0550625436447055e-07, 3.0549504801289577e-07, 3.0550631552556193e-07, 3.0564050528027469e-07, 3.0602815310131707e-07, 3.0670313788650448e-07, 3.0631466009425207e-07, 3.0611885728511852e-07, 2.7662855222010093e-07, 3.0373428769019518e-07, 5.3402816670177801e-08, 1.1217076224749709e-06, 2.7552308549515930e-07, -5.7095498970241923e-07, 8.2344166431411875e-07, -7.1042963129160086e-07, 5.0569328707145145e-07, -1.1617072926892180e-08, -4.6692354727269347e-07, 1.2972567091859566e-06, -2.7639619617223291e-06, 8.1195079745617280e-06, -1.8275348914727728e-05, 2.2993761803541922e-05, -1.3782921215961313e-06, -3.3517955498604877e-06, 2.9538516771835137e-06, -3.1966403733120095e-06, 8.2078180661873668e-06, -2.8839221009047122e-06, 5.9677752578431165e-06, -1.0369018498893046e-06, 4.0194476697424930e-06, 8.7995469438828522e-07, 3.5220308213512741e-06, 2.7072322431737073e-07, 1.0334861631142167e-06, 2.4583607523415152e-06, -2.6896595276895696e-06, 1.1819278694003357e-05, -9.9362690554792793e-06, 6.1954154706933147e-06, -2.7905159965042783e-06, -4.0148051071858815e-07, -1.5259609750246494e-06, -4.7232631399349062e-07, -3.7483081082335663e-07, -4.0679261050969207e-07, -4.6618848105733218e-07, -4.7740483769117756e-07, -4.7656924091399517e-07, -4.7500978054464474e-07, -4.7446429013106323e-07, -4.7451701515918276e-07, -4.7459548469067385e-07, -4.7463519348852853e-07, -4.7464005197131237e-07, -4.7453658260195519e-07, -4.7412296233585228e-07, -4.7340173148726250e-07, -4.7431468076241409e-07, -4.7840912269532109e-07, -5.0109080192099601e-07, -4.4660103373003052e-07, -5.5643641504933452e-07, 2.1870365203108212e-07, -2.2108933848042256e-06, 6.1928386959958157e-08, 1.8591030568095024e-06, -2.1493324198814528e-06, 1.6678686256960118e-06, -1.2349066948790302e-06, 3.6466197507988019e-07, 1.0031026418189440e-06, -2.5614085492680835e-06, 5.5463381148550608e-06, -1.6495574520078264e-05, 3.7501427074120540e-05, -4.8011008269309430e-05, 3.7095142373887429e-06, 1.1277287111271898e-05, -9.4322551751031890e-06, 1.4745119484171941e-05, -1.1523458665209374e-05, 1.3816843922995550e-05, -1.1731683289654959e-05, 3.4215765729386782e-06, -7.1134791586741075e-06, 1.9768280609816502e-06, -5.3651823853084757e-06, -1.5719743082648341e-06, -9.1844675664531916e-06, -9.6030738379951353e-06, 8.4189305223636435e-06, -1.6339120150222000e-05, 3.7359962956330607e-05, -1.2645879265501738e-05, 6.4999220079001293e-06, -3.0178642389552097e-06, 1.7669165851361829e-06, 8.8117240563774708e-07, 1.3688259712127220e-06, 1.4239605447802066e-06, 1.4525430344747129e-06, 1.4251688086019108e-06, 1.4206233244540062e-06, 1.4225951117608968e-06, 1.4236861456452820e-06, 1.4238953954821680e-06, 1.4237851212842731e-06, 1.4237262378854381e-06, 1.4237473341268097e-06, 1.4239834323361792e-06, 1.4245419457782171e-06, 1.4243482178496070e-06, 1.4217945452173382e-06, 1.4041670963509860e-06, 1.4225474364964986e-06, 1.2640670021806118e-06, 1.7034229703784558e-06, -2.5534894552501210e-07, 6.5895155020557431e-06, 5.9077375271898019e-07, -5.0558189440530997e-06, 4.0357741901255254e-06, -5.5963499587981247e-06, 2.9575094856329823e-06, -5.4079491819663400e-07, -1.2385004411396769e-06, 5.3156181846090653e-06, -1.1057101368517827e-05, 3.3187512259923342e-05, -7.6123464062915688e-05, 9.9475613444713340e-05, -1.5114962966089455e-05, -3.1835286401476397e-05, 1.6800703121545824e-05, -3.1218352173266093e-05, 3.5058956999203979e-05, -2.9990499958807565e-05, 2.4392291056780924e-05, -1.7674964327439591e-05, 6.9717432529814438e-06, -1.2684060051261492e-05, 1.4941338077750776e-06, -1.8606772054528820e-05, -2.3732977943793920e-06, 1.1076137984566969e-07, -1.7901513104177924e-05, 4.6673023929194243e-05, -6.7195596708076325e-05, 3.3538309659365861e-05, -1.9266075219926033e-05, -1.0489725426973727e-05, -2.2104539469623599e-05, -1.3230447540049054e-05, -1.0576159430115582e-05, -1.0110687645856350e-05, -1.0443279503102122e-05, -1.0517536326444418e-05, -1.0524957148214592e-05, -1.0515109956483619e-05, -1.0511196453044717e-05, -1.0510757240322102e-05, -1.0510977911337282e-05, -1.0511108321824514e-05, -1.0511052903563469e-05, -1.0510448631277262e-05, -1.0509720779165103e-05, -1.0510504650360487e-05, -1.0534869271036071e-05, -1.0564906715004744e-05, -1.0687800632846426e-05, -9.9619409542759036e-06, -1.0104630633337987e-05, -5.4238779712403114e-06, -2.4312341123718757e-05, -6.1112901542409621e-06, 1.0077640916542757e-05, -1.3667327128761772e-05, 1.1017054079111299e-05, -9.5792582058837686e-06, 2.3912729368641070e-06, 3.3749411347365477e-06, -9.5050664491906980e-06, 2.2025279209260049e-05, -6.5843403668433206e-05, 1.5222932937742750e-04, -2.0275675876228576e-04, 5.6209262941358076e-05, 5.2927602083579692e-05, -3.9837512835538526e-05, 5.7022484358332736e-05, -1.0536048116448638e-04, 7.5213962404506104e-05, -4.4969527827933009e-05, 4.9600074168532765e-05, -2.1328269852113890e-05, 1.2802873704906292e-05, -2.8075173466590719e-05, 2.1244184932246724e-05, -1.2731066816304426e-05, 3.9073910829908604e-05, 4.6052833810917432e-05, -1.2397563075601699e-04, 1.0035282605677610e-04, -5.9245924635270449e-05, 5.3176217682131130e-05, 1.5853238164165173e-06, 1.8863457708492132e-05, 8.3266736429172877e-06, 1.0151935978649530e-05, 9.5796722843185985e-06, 1.0177138704024931e-05, 1.0043220637246847e-05, 1.0051089463804179e-05, 1.0046113552729846e-05, 1.0051192303377326e-05, 1.0051754922814151e-05, 1.0051851198878054e-05, 1.0051703513438236e-05, 1.0051928091405217e-05, 1.0051851469303338e-05, 1.0053500840119222e-05, 1.0042925156244036e-05, 1.0050203267602349e-05, 9.9386245119953117e-06, 1.0249634999117730e-05, 9.1280434324019194e-06, 1.2776096069940483e-05, 3.4575964788930428e-06, 3.2503269108507393e-05, -2.3663538153929561e-06, -3.5488480872633132e-05, 4.6415291789892767e-05, -2.9017680605294451e-05, 1.5571746621052991e-05, -9.7860498371677221e-06, -3.7107732967682841e-06, 1.9453014425217102e-05, -4.2117248469604636e-05, 1.2602042013050169e-04, -2.9504938470233718e-04, 3.9975796890721459e-04, -2.3287178785672365e-04, -1.4153808287187307e-04, 2.8749528561735005e-04, -4.0230168644959528e-04, 6.7118216031548245e-06, -3.6069532126247437e-04, 3.6702942303689506e-04, -1.3868065685859743e-05, 1.5796988355395308e-04, -1.4948401557030727e-04, 4.4655640230789606e-05, -8.3805854948035274e-05, 3.6502982965062186e-04, 4.0603704391039414e-04, 1.5803897931368494e-04, -2.4570229310751264e-04, -1.0878705080509072e-03, 2.6001400338431711e-04, 1.1790879394949204e-04, 8.3882556420501004e-05, -5.0499515019982518e-05, -3.3261560784727146e-05, -3.4457055733894387e-05, -2.9091847649585068e-05, -3.1031202345060434e-05, -3.1367040857625307e-05, -3.1574511682440267e-05, -3.1550480985682877e-05, -3.1544244713554726e-05, -3.1540701647662835e-05, -3.1541198864216274e-05, -3.1541227751762872e-05, -3.1541497044428621e-05, -3.1538774425572046e-05, -3.1545256296873573e-05, -3.1534504431305564e-05, -3.1661087187428034e-05, -3.1316117648519571e-05, -3.1627412191005341e-05, -2.4783122901614948e-05, -3.1489822793594999e-05, 6.5378441950500281e-06, -1.3347927984766787e-04, -1.4358371411319162e-04, 1.2938275310461203e-04, 4.0286737721861518e-06, 1.7889920373711805e-04, -1.4496383802968266e-04, 1.6419519004383896e-05, 3.4060076788758331e-06, -5.7326183463807419e-05, 1.3896643780274276e-04, -4.1300448470275256e-04, 9.3843501646773825e-04, -1.2897198326516533e-03, 2.4558949023264524e-03, 6.3567084066940894e-04, -1.0380903215239863e-04, 1.3672731441557147e-03, -3.0823537520749829e-03, 2.0273225427974786e-03, -1.0289322536192469e-03, 9.8796592034182396e-04, -2.3106677856626900e-04, -4.8916032756626815e-05, -4.5337854478405548e-04, 7.4736554664027455e-04, -1.0558699438064506e-03, 2.3356290447467537e-03, -1.4785988760301211e-04, -5.2693706976171019e-04, -2.2756005320593718e-03, 1.8043049543559546e-03, 3.2073842953761413e-04, 4.0955074876554713e-04, 4.1102983186644973e-04, 4.2902511811033909e-04, 4.1632369302343548e-04, 4.2451280909284865e-04, 4.2263383492575858e-04, 4.2211842268381132e-04, 4.2205537669024498e-04, 4.2207263784986712e-04, 4.2208350876856565e-04, 4.2208481232149005e-04, 4.2208441562556059e-04, 4.2208411629406220e-04, 4.2208446219226426e-04, 4.2208480794268984e-04, 4.2208854496605046e-04, 4.2207043671696129e-04, 4.2205862859729336e-04, 4.2188694131538469e-04, 4.2274569862254472e-04, 4.2479659131157118e-04, 4.2670710171820907e-04, 4.3782401951555986e-04, 4.7517395334096852e-04, 1.5840897254137585e-04, -1.1340320786175518e-03, 1.7635801794882531e-03, -9.5310951472820250e-04, 2.8980248909544343e-04, -1.5573869009486221e-04, 1.0704750241152458e-05, 1.4009172425148188e-04, -3.3248502448320234e-04, 1.0189783938150390e-03, -2.2971064489590957e-03, 3.0585901566939850e-03}; static const casadi_real casadi_c5[129] = {-5.6818181818181817e+00, -5.6818181818181817e+00, -5.6818181818181817e+00, -5.6818181818181817e+00, -4.3181818181818183e+00, -3.6363636363636367e+00, -2.9545454545454550e+00, -2.2727272727272734e+00, -1.5909090909090917e+00, -9.0909090909091006e-01, -2.2727272727272840e-01, 4.5454545454545325e-01, 1.1363636363636349e+00, 1.8181818181818166e+00, 2.4999999999999982e+00, 3.1818181818181799e+00, 3.8636363636363615e+00, 4.5454545454545432e+00, 5.2272727272727249e+00, 5.9090909090909065e+00, 6.5909090909090882e+00, 7.2727272727272698e+00, 7.9545454545454515e+00, 8.6363636363636331e+00, 9.3181818181818148e+00, 9.9999999999999964e+00, 1.0681818181818178e+01, 1.1363636363636358e+01, 1.2045454545454541e+01, 1.2727272727272727e+01, 1.3409090909090910e+01, 1.4090909090909093e+01, 1.4772727272727273e+01, 1.5454545454545455e+01, 1.6136363636363637e+01, 1.6818181818181820e+01, 1.7500000000000000e+01, 1.8181818181818180e+01, 1.8863636363636363e+01, 1.9545454545454547e+01, 2.0227272727272727e+01, 2.0909090909090907e+01, 2.1590909090909090e+01, 2.2272727272727273e+01, 2.2954545454545453e+01, 2.3636363636363633e+01, 2.4318181818181817e+01, 25., 2.5681818181818180e+01, 2.6363636363636360e+01, 2.7045454545454543e+01, 2.7727272727272727e+01, 2.8409090909090907e+01, 2.9090909090909086e+01, 2.9772727272727270e+01, 3.1136363636363633e+01, 3.1136363636363633e+01, 3.1136363636363633e+01, 3.1136363636363633e+01, -2.3747727272727275e+00, -2.3747727272727275e+00, -2.3747727272727275e+00, -1.6934090909090913e+00, -1.3527272727272732e+00, -1.0120454545454551e+00, -6.7136363636363705e-01, -3.3068181818181897e-01, 9.9999999999988987e-03, 3.5068181818181721e-01, 6.9136363636363551e-01, 1.0320454545454534e+00, 1.3727272727272712e+00, 1.7134090909090895e+00, 2.0540909090909079e+00, 2.3947727272727253e+00, 2.7354545454545436e+00, 3.0761363636363619e+00, 3.4168181818181802e+00, 3.7574999999999985e+00, 4.0981818181818159e+00, 4.4388636363636342e+00, 4.7795454545454525e+00, 5.1202272727272700e+00, 5.4609090909090883e+00, 5.8015909090909066e+00, 6.1422727272727240e+00, 6.4829545454545432e+00, 6.8236363636363606e+00, 7.1643181818181780e+00, 7.5049999999999972e+00, 7.8456818181818146e+00, 8.1863636363636338e+00, 8.5270454545454513e+00, 8.8677272727272687e+00, 9.2084090909090932e+00, 9.5490909090909106e+00, 9.8897727272727280e+00, 1.0230454545454547e+01, 1.0571136363636365e+01, 1.0911818181818184e+01, 1.1252500000000001e+01, 1.1593181818181819e+01, 1.1933863636363638e+01, 1.2274545454545455e+01, 1.2615227272727275e+01, 1.2955909090909092e+01, 1.3296590909090909e+01, 1.3637272727272727e+01, 1.3977954545454546e+01, 1.4318636363636363e+01, 1.4659318181818183e+01, 15., 1.5340681818181817e+01, 1.5681363636363637e+01, 1.6022045454545456e+01, 1.6362727272727273e+01, 1.6703409090909091e+01, 1.7044090909090908e+01, 1.7384772727272725e+01, 1.7725454545454546e+01, 1.8066136363636364e+01, 1.8406818181818181e+01, 1.8747499999999999e+01, 1.9088181818181816e+01, 1.9428863636363634e+01, 1.9769545454545455e+01, 2.0450909090909089e+01, 2.0450909090909089e+01, 2.0450909090909089e+01}; void casadi_de_boor(casadi_real x, const casadi_real* knots, casadi_int n_knots, casadi_int degree, casadi_real* boor) { casadi_int d, i; for (d=1;d<degree+1;++d) { for (i=0;i<n_knots-d-1;++i) { casadi_real b, bottom; b = 0; bottom = knots[i + d] - knots[i]; if (bottom) b = (x - knots[i]) * boor[i] / bottom; bottom = knots[i + d + 1] - knots[i + 1]; if (bottom) b += (knots[i + d + 1] - x) * boor[i + 1] / bottom; boor[i] = b; } } } void casadi_fill(casadi_real* x, casadi_int n, casadi_real alpha) { casadi_int i; if (x) { for (i=0; i<n; ++i) *x++ = alpha; } } void casadi_fill_casadi_int(casadi_int* x, casadi_int n, casadi_int alpha) { casadi_int i; if (x) { for (i=0; i<n; ++i) *x++ = alpha; } } casadi_int casadi_low(casadi_real x, const double* grid, casadi_int ng, casadi_int lookup_mode) { switch (lookup_mode) { case 1: { double g0, dg; casadi_int ret; g0 = grid[0]; dg = grid[ng-1]-g0; ret = (casadi_int) ((x-g0)*(ng-1)/dg); if (ret<0) ret=0; if (ret>ng-2) ret=ng-2; return ret; } case 2: { casadi_int start, stop, pivot; if (ng<2 || x<grid[1]) return 0; if (x>grid[ng-1]) return ng-2; start = 0; stop = ng-1; while (1) { pivot = (stop+start)/2; if (x < grid[pivot]) { if (pivot==stop) return pivot; stop = pivot; } else { if (pivot==start) return pivot; start = pivot; } } } default: { casadi_int i; for (i=0; i<ng-2; ++i) { if (x < grid[i+1]) break; } return i; } } } void casadi_nd_boor_eval(casadi_real* ret, casadi_int n_dims, const casadi_real* all_knots, const casadi_int* offset, const casadi_int* all_degree, const casadi_int* strides, const casadi_real* c, casadi_int m, const casadi_real* all_x, const casadi_int* lookup_mode, casadi_int reverse, casadi_int* iw, casadi_real* w) { casadi_int n_iter, k, i, pivot; casadi_int *boor_offset, *starts, *index, *coeff_offset; casadi_real *cumprod, *all_boor; boor_offset = iw; iw+=n_dims+1; starts = iw; iw+=n_dims; index = iw; iw+=n_dims; coeff_offset = iw; cumprod = w; w+= n_dims+1; all_boor = w; boor_offset[0] = 0; cumprod[n_dims] = 1; coeff_offset[n_dims] = 0; n_iter = 1; for (k=0;k<n_dims;++k) { casadi_real *boor; const casadi_real* knots; casadi_real x; casadi_int degree, n_knots, n_b, L, start; boor = all_boor+boor_offset[k]; degree = all_degree[k]; knots = all_knots + offset[k]; n_knots = offset[k+1]-offset[k]; n_b = n_knots-degree-1; x = all_x[k]; L = casadi_low(x, knots+degree, n_knots-2*degree, lookup_mode[k]); start = L; if (start>n_b-degree-1) start = n_b-degree-1; starts[k] = start; casadi_fill(boor, 2*degree+1, 0.0); if (x>=knots[0] && x<=knots[n_knots-1]) { if (x==knots[1]) { casadi_fill(boor, degree+1, 1.0); } else if (x==knots[n_knots-1]) { boor[degree] = 1; } else if (knots[L+degree]==x) { boor[degree-1] = 1; } else { boor[degree] = 1; } } casadi_de_boor(x, knots+start, 2*degree+2, degree, boor); boor+= degree+1; n_iter*= degree+1; boor_offset[k+1] = boor_offset[k] + degree+1; } casadi_fill_casadi_int(index, n_dims, 0); for (pivot=n_dims-1;pivot>=0;--pivot) { cumprod[pivot] = (*(all_boor+boor_offset[pivot]))*cumprod[pivot+1]; coeff_offset[pivot] = starts[pivot]*strides[pivot]+coeff_offset[pivot+1]; } for (k=0;k<n_iter;++k) { casadi_int pivot = 0; for (i=0;i<m;++i) { if (reverse) { ret[coeff_offset[0]+i] += c[i]*cumprod[0]; } else { ret[i] += c[coeff_offset[0]+i]*cumprod[0]; } } index[0]++; { while (index[pivot]==boor_offset[pivot+1]-boor_offset[pivot]) { index[pivot] = 0; if (pivot==n_dims-1) break; index[++pivot]++; } while (pivot>0) { cumprod[pivot] = (*(all_boor+boor_offset[pivot]+index[pivot]))*cumprod[pivot+1]; coeff_offset[pivot] = (starts[pivot]+index[pivot])*strides[pivot]+coeff_offset[pivot+1]; pivot--; } } cumprod[0] = (*(all_boor+index[0]))*cumprod[1]; coeff_offset[0] = (starts[0]+index[0])*m+coeff_offset[1]; } } void casadi_copy(const casadi_real* x, casadi_int n, casadi_real* y) { casadi_int i; if (y) { if (x) { for (i=0; i<n; ++i) *y++ = *x++; } else { for (i=0; i<n; ++i) *y++ = 0.; } } } casadi_real casadi_sq(casadi_real x) { return x*x;} void casadi_mtimes(const casadi_real* x, const casadi_int* sp_x, const casadi_real* y, const casadi_int* sp_y, casadi_real* z, const casadi_int* sp_z, casadi_real* w, casadi_int tr) { casadi_int ncol_x, ncol_y, ncol_z, cc; const casadi_int *colind_x, *row_x, *colind_y, *row_y, *colind_z, *row_z; ncol_x = sp_x[1]; colind_x = sp_x+2; row_x = sp_x + 2 + ncol_x+1; ncol_y = sp_y[1]; colind_y = sp_y+2; row_y = sp_y + 2 + ncol_y+1; ncol_z = sp_z[1]; colind_z = sp_z+2; row_z = sp_z + 2 + ncol_z+1; if (tr) { for (cc=0; cc<ncol_z; ++cc) { casadi_int kk; for (kk=colind_y[cc]; kk<colind_y[cc+1]; ++kk) { w[row_y[kk]] = y[kk]; } for (kk=colind_z[cc]; kk<colind_z[cc+1]; ++kk) { casadi_int kk1; casadi_int rr = row_z[kk]; for (kk1=colind_x[rr]; kk1<colind_x[rr+1]; ++kk1) { z[kk] += x[kk1] * w[row_x[kk1]]; } } } } else { for (cc=0; cc<ncol_y; ++cc) { casadi_int kk; for (kk=colind_z[cc]; kk<colind_z[cc+1]; ++kk) { w[row_z[kk]] = z[kk]; } for (kk=colind_y[cc]; kk<colind_y[cc+1]; ++kk) { casadi_int kk1; casadi_int rr = row_y[kk]; for (kk1=colind_x[rr]; kk1<colind_x[rr+1]; ++kk1) { w[row_x[kk1]] += x[kk1]*y[kk]; } } for (kk=colind_z[cc]; kk<colind_z[cc+1]; ++kk) { z[kk] = w[row_z[kk]]; } } } } void casadi_trans(const casadi_real* x, const casadi_int* sp_x, casadi_real* y, const casadi_int* sp_y, casadi_int* tmp) { casadi_int ncol_x, nnz_x, ncol_y, k; const casadi_int* row_x, *colind_y; ncol_x = sp_x[1]; nnz_x = sp_x[2 + ncol_x]; row_x = sp_x + 2 + ncol_x+1; ncol_y = sp_y[1]; colind_y = sp_y+2; for (k=0; k<ncol_y; ++k) tmp[k] = colind_y[k]; for (k=0; k<nnz_x; ++k) { y[tmp[row_x[k]]++] = x[k]; } } /* Spline:(x[2])->(f) */ static int casadi_f1(const casadi_real** arg, casadi_real** res, casadi_int* iw, casadi_real* w, void* mem) { if (res[0]) casadi_fill(res[0], 1, 0.0); if (res[0]) CASADI_PREFIX(nd_boor_eval)(res[0],2,casadi_c1,casadi_s3,casadi_s2,casadi_s1,casadi_c0,1,arg[0],casadi_s0, 0, iw, w); return 0; } /* jac_helper:(i0[2])->(o0) */ static int casadi_f3(const casadi_real** arg, casadi_real** res, casadi_int* iw, casadi_real* w, void* mem) { if (res[0]) casadi_fill(res[0], 1, 0.0); if (res[0]) CASADI_PREFIX(nd_boor_eval)(res[0],2,casadi_c3,casadi_s6,casadi_s5,casadi_s4,casadi_c2,1,arg[0],casadi_s0, 0, iw, w); return 0; } /* jac_helper:(i0[2])->(o0) */ static int casadi_f4(const casadi_real** arg, casadi_real** res, casadi_int* iw, casadi_real* w, void* mem) { if (res[0]) casadi_fill(res[0], 1, 0.0); if (res[0]) CASADI_PREFIX(nd_boor_eval)(res[0],2,casadi_c5,casadi_s8,casadi_s7,casadi_s1,casadi_c4,1,arg[0],casadi_s0, 0, iw, w); return 0; } /* jac_Spline:(i0[2],i1[1x1,0nz])->(o0[1x2]) */ static int casadi_f2(const casadi_real** arg, casadi_real** res, casadi_int* iw, casadi_real* w, void* mem) { casadi_real **res1=res+1; const casadi_real **arg1=arg+2; casadi_real *w0=w+13, w1; /* #0: @0 = input[0][0] */ casadi_copy(arg[0], 2, w0); /* #1: @1 = jac_helper(@0) */ arg1[0]=w0; res1[0]=(&w1); if (casadi_f3(arg1, res1, iw, w, 0)) return 1; /* #2: output[0][0] = @1 */ if (res[0]) res[0][0] = w1; /* #3: @1 = jac_helper(@0) */ arg1[0]=w0; res1[0]=(&w1); if (casadi_f4(arg1, res1, iw, w, 0)) return 1; /* #4: output[0][1] = @1 */ if (res[0]) res[0][1] = w1; return 0; } /* casadi_impl_ode_fun_jac_x_xdot_u:(i0[6],i1[6],i2[2],i3)->(o0[6],o1[6x6,12nz],o2[6x6,6nz],o3[6x2,2nz]) */ static int casadi_f0(const casadi_real** arg, casadi_real** res, casadi_int* iw, casadi_real* w, void* mem) { casadi_int i; casadi_real **res1=res+4, *rr, *ss; const casadi_int *cii; const casadi_real **arg1=arg+4, *cs; casadi_real *w0=w+16, w1, *w2=w+23, w3, w4, w5, w6, w7, w8, w9, w10, w11, w12, w13, w14, w15, w16, w17, w18, w19, *w20=w+46, w21, w22, w23, w24, w25, w26, w27, w28, w29, w30, w31, *w32=w+59, w33, w34, w35, w36, w37, w38, w39, w40, w41, *w42=w+70, w43, *w44=w+73, *w45=w+75, *w46=w+87, *w52=w+92, w53, w54, *w55=w+99, *w56=w+103, *w57=w+107, *w58=w+110, *w59=w+113; /* #0: @0 = input[1][0] */ casadi_copy(arg[1], 6, w0); /* #1: @1 = 867637000 */ w1 = 867637000.; /* #2: @2 = input[0][0] */ casadi_copy(arg[0], 6, w2); /* #3: @3 = @2[3] */ for (rr=(&w3), ss=w2+3; ss!=w2+4; ss+=1) *rr++ = *ss; /* #4: @1 = (@1*@3) */ w1 *= w3; /* #5: @4 = 62150000 */ w4 = 62150000.; /* #6: @5 = @2[1] */ for (rr=(&w5), ss=w2+1; ss!=w2+2; ss+=1) *rr++ = *ss; /* #7: @4 = (@4*@5) */ w4 *= w5; /* #8: @1 = (@1+@4) */ w1 += w4; /* #9: @4 = 970000 */ w4 = 970000.; /* #10: @6 = @2[5] */ for (rr=(&w6), ss=w2+5; ss!=w2+6; ss+=1) *rr++ = *ss; /* #11: @4 = (@4*@6) */ w4 *= w6; /* #12: @1 = (@1-@4) */ w1 -= w4; /* #13: @4 = 40589300 */ w4 = 40589300.; /* #14: @1 = (@1/@4) */ w1 /= w4; /* #15: @4 = 31.5 */ w4 = 3.1500000000000000e+01; /* #16: @7 = 5091.5 */ w7 = 5.0915000000000000e+03; /* #17: @8 = 1 */ w8 = 1.; /* #18: @9 = 0.35 */ w9 = 3.4999999999999998e-01; /* #19: @10 = 2.0944 */ w10 = 2.0943999999999998e+00; /* #20: @10 = (@10+@3) */ w10 += w3; /* #21: @11 = @2[2] */ for (rr=(&w11), ss=w2+2; ss!=w2+3; ss+=1) *rr++ = *ss; /* #22: @10 = (@10+@11) */ w10 += w11; /* #23: @12 = cos(@10) */ w12 = cos( w10 ); /* #24: @12 = (@9*@12) */ w12 = (w9*w12); /* #25: @8 = (@8+@12) */ w8 += w12; /* #26: @12 = 0.2 */ w12 = 2.0000000000000001e-01; /* #27: @13 = pow(@8,@12) */ w13 = pow(w8,w12); /* #28: @14 = input[3][0] */ w14 = arg[3] ? arg[3][0] : 0; /* #29: @13 = (@13*@14) */ w13 *= w14; /* #30: @15 = sq(@13) */ w15 = casadi_sq( w13 ); /* #31: @15 = (@7*@15) */ w15 = (w7*w15); /* #32: @16 = @2[4] */ for (rr=(&w16), ss=w2+4; ss!=w2+5; ss+=1) *rr++ = *ss; /* #33: @17 = 63 */ w17 = 63.; /* #34: @18 = @2[0] */ for (rr=(&w18), ss=w2+0; ss!=w2+1; ss+=1) *rr++ = *ss; /* #35: @19 = (@5+@18) */ w19 = (w5+w18); /* #36: @17 = (@17*@19) */ w17 *= w19; /* #37: @17 = (@17/@13) */ w17 /= w13; /* #38: @20 = horzcat(@16, @17) */ rr=w20; *rr++ = w16; *rr++ = w17; /* #39: @20 = @20' */ /* #40: @19 = Spline(@20) */ arg1[0]=w20; res1[0]=(&w19); if (casadi_f1(arg1, res1, iw, w, 0)) return 1; /* #41: @21 = (@15*@19) */ w21 = (w15*w19); /* #42: @21 = (@4*@21) */ w21 = (w4*w21); /* #43: @21 = (-@21) */ w21 = (- w21 ); /* #44: @22 = 31.5 */ w22 = 3.1500000000000000e+01; /* #45: @23 = 5091.5 */ w23 = 5.0915000000000000e+03; /* #46: @24 = 1 */ w24 = 1.; /* #47: @25 = 0.35 */ w25 = 3.4999999999999998e-01; /* #48: @26 = (@3+@11) */ w26 = (w3+w11); /* #49: @27 = cos(@26) */ w27 = cos( w26 ); /* #50: @27 = (@25*@27) */ w27 = (w25*w27); /* #51: @24 = (@24+@27) */ w24 += w27; /* #52: @27 = 0.2 */ w27 = 2.0000000000000001e-01; /* #53: @28 = pow(@24,@27) */ w28 = pow(w24,w27); /* #54: @28 = (@28*@14) */ w28 *= w14; /* #55: @29 = sq(@28) */ w29 = casadi_sq( w28 ); /* #56: @29 = (@23*@29) */ w29 = (w23*w29); /* #57: @30 = 63 */ w30 = 63.; /* #58: @31 = (@5+@18) */ w31 = (w5+w18); /* #59: @30 = (@30*@31) */ w30 *= w31; /* #60: @30 = (@30/@28) */ w30 /= w28; /* #61: @32 = horzcat(@16, @30) */ rr=w32; *rr++ = w16; *rr++ = w30; /* #62: @32 = @32' */ /* #63: @31 = Spline(@32) */ arg1[0]=w32; res1[0]=(&w31); if (casadi_f1(arg1, res1, iw, w, 0)) return 1; /* #64: @33 = (@29*@31) */ w33 = (w29*w31); /* #65: @33 = (@22*@33) */ w33 = (w22*w33); /* #66: @21 = (@21-@33) */ w21 -= w33; /* #67: @33 = 31.5 */ w33 = 3.1500000000000000e+01; /* #68: @34 = 5091.5 */ w34 = 5.0915000000000000e+03; /* #69: @35 = 1 */ w35 = 1.; /* #70: @36 = 0.35 */ w36 = 3.4999999999999998e-01; /* #71: @37 = 4.1888 */ w37 = 4.1887999999999996e+00; /* #72: @37 = (@37+@3) */ w37 += w3; /* #73: @37 = (@37+@11) */ w37 += w11; /* #74: @11 = cos(@37) */ w11 = cos( w37 ); /* #75: @11 = (@36*@11) */ w11 = (w36*w11); /* #76: @35 = (@35+@11) */ w35 += w11; /* #77: @11 = 0.2 */ w11 = 2.0000000000000001e-01; /* #78: @38 = pow(@35,@11) */ w38 = pow(w35,w11); /* #79: @38 = (@38*@14) */ w38 *= w14; /* #80: @39 = sq(@38) */ w39 = casadi_sq( w38 ); /* #81: @39 = (@34*@39) */ w39 = (w34*w39); /* #82: @40 = 63 */ w40 = 63.; /* #83: @41 = (@5+@18) */ w41 = (w5+w18); /* #84: @40 = (@40*@41) */ w40 *= w41; /* #85: @40 = (@40/@38) */ w40 /= w38; /* #86: @42 = horzcat(@16, @40) */ rr=w42; *rr++ = w16; *rr++ = w40; /* #87: @42 = @42' */ /* #88: @41 = Spline(@42) */ arg1[0]=w42; res1[0]=(&w41); if (casadi_f1(arg1, res1, iw, w, 0)) return 1; /* #89: @43 = (@39*@41) */ w43 = (w39*w41); /* #90: @43 = (@33*@43) */ w43 = (w33*w43); /* #91: @21 = (@21-@43) */ w21 -= w43; /* #92: @43 = 867637000 */ w43 = 867637000.; /* #93: @43 = (@43*@3) */ w43 *= w3; /* #94: @21 = (@21+@43) */ w21 += w43; /* #95: @43 = 62150000 */ w43 = 62150000.; /* #96: @43 = (@43*@5) */ w43 *= w5; /* #97: @21 = (@21+@43) */ w21 += w43; /* #98: @43 = 35563800 */ w43 = 35563800.; /* #99: @21 = (@21/@43) */ w21 /= w43; /* #100: @21 = (-@21) */ w21 = (- w21 ); /* #101: @43 = 2.5 */ w43 = 2.5000000000000000e+00; /* #102: @44 = input[2][0] */ casadi_copy(arg[2], 2, w44); /* #103: @3 = @44[0] */ for (rr=(&w3), ss=w44+0; ss!=w44+1; ss+=1) *rr++ = *ss; /* #104: @3 = (@3-@16) */ w3 -= w16; /* #105: @43 = (@43*@3) */ w43 *= w3; /* #106: @3 = 50 */ w3 = 50.; /* #107: @16 = @44[1] */ for (rr=(&w16), ss=w44+1; ss!=w44+2; ss+=1) *rr++ = *ss; /* #108: @16 = (@16-@6) */ w16 -= w6; /* #109: @3 = (@3*@16) */ w3 *= w16; /* #110: @2 = vertcat(@1, @21, @18, @5, @43, @3) */ rr=w2; *rr++ = w1; *rr++ = w21; *rr++ = w18; *rr++ = w5; *rr++ = w43; *rr++ = w3; /* #111: @0 = (@0-@2) */ for (i=0, rr=w0, cs=w2; i<6; ++i) (*rr++) -= (*cs++); /* #112: output[0][0] = @0 */ casadi_copy(w0, 6, res[0]); /* #113: @45 = zeros(6x6,12nz) */ casadi_fill(w45, 12, 0.); /* #114: @1 = -0.0238979 */ w1 = -2.3897923837070362e-02; /* #115: @21 = 2.81185e-08 */ w21 = 2.8118480027443637e-08; /* #116: @46 = zeros(1x5) */ casadi_fill(w46, 5, 0.); /* #117: @47 = 00 */ /* #118: @44 = jac_Spline(@32, @47) */ arg1[0]=w32; arg1[1]=0; res1[0]=w44; if (casadi_f2(arg1, res1, iw, w, 0)) return 1; /* #119: @47 = 00 */ /* #120: @18 = 63 */ w18 = 63.; /* #121: @18 = (@18/@28) */ w18 /= w28; /* #122: @5 = horzcat(@47, @18) */ rr=(&w5); *rr++ = w18; /* #123: @5 = @5' */ /* #124: @48 = 00 */ /* #125: @18 = 63 */ w18 = 63.; /* #126: @18 = (@18/@28) */ w18 /= w28; /* #127: @43 = horzcat(@48, @18) */ rr=(&w43); *rr++ = w18; /* #128: @43 = @43' */ /* #129: @49 = 00 */ /* #130: @30 = (@30/@28) */ w30 /= w28; /* #131: @18 = -0.8 */ w18 = -8.0000000000000004e-01; /* #132: @24 = pow(@24,@18) */ w24 = pow(w24,w18); /* #133: @27 = (@27*@24) */ w27 *= w24; /* #134: @26 = sin(@26) */ w26 = sin( w26 ); /* #135: @24 = (@25*@26) */ w24 = (w25*w26); /* #136: @24 = (@27*@24) */ w24 = (w27*w24); /* #137: @24 = (@14*@24) */ w24 = (w14*w24); /* #138: @18 = (@30*@24) */ w18 = (w30*w24); /* #139: @3 = horzcat(@49, @18) */ rr=(&w3); *rr++ = w18; /* #140: @3 = @3' */ /* #141: @50 = 00 */ /* #142: @25 = (@25*@26) */ w25 *= w26; /* #143: @27 = (@27*@25) */ w27 *= w25; /* #144: @27 = (@14*@27) */ w27 = (w14*w27); /* #145: @30 = (@30*@27) */ w30 *= w27; /* #146: @25 = horzcat(@50, @30) */ rr=(&w25); *rr++ = w30; /* #147: @25 = @25' */ /* #148: @30 = 1 */ w30 = 1.; /* #149: @51 = 00 */ /* #150: @26 = horzcat(@30, @51) */ rr=(&w26); *rr++ = w30; /* #151: @26 = @26' */ /* #152: @52 = horzcat(@5, @43, @3, @25, @26) */ rr=w52; *rr++ = w5; *rr++ = w43; *rr++ = w3; *rr++ = w25; *rr++ = w26; /* #153: @46 = mac(@44,@52,@46) */ casadi_mtimes(w44, casadi_s11, w52, casadi_s10, w46, casadi_s9, w, 0); /* #154: {@5, @43, @3, @25, @26} = horzsplit(@46) */ w5 = w46[0]; w43 = w46[1]; w3 = w46[2]; w25 = w46[3]; w26 = w46[4]; /* #155: @5 = (@29*@5) */ w5 = (w29*w5); /* #156: @5 = (@22*@5) */ w5 = (w22*w5); /* #157: @5 = (-@5) */ w5 = (- w5 ); /* #158: @46 = zeros(1x5) */ casadi_fill(w46, 5, 0.); /* #159: @51 = 00 */ /* #160: @44 = jac_Spline(@20, @51) */ arg1[0]=w20; arg1[1]=0; res1[0]=w44; if (casadi_f2(arg1, res1, iw, w, 0)) return 1; /* #161: @18 = 63 */ w18 = 63.; /* #162: @18 = (@18/@13) */ w18 /= w13; /* #163: @16 = horzcat(@47, @18) */ rr=(&w16); *rr++ = w18; /* #164: @16 = @16' */ /* #165: @18 = 63 */ w18 = 63.; /* #166: @18 = (@18/@13) */ w18 /= w13; /* #167: @6 = horzcat(@48, @18) */ rr=(&w6); *rr++ = w18; /* #168: @6 = @6' */ /* #169: @17 = (@17/@13) */ w17 /= w13; /* #170: @18 = -0.8 */ w18 = -8.0000000000000004e-01; /* #171: @8 = pow(@8,@18) */ w8 = pow(w8,w18); /* #172: @12 = (@12*@8) */ w12 *= w8; /* #173: @10 = sin(@10) */ w10 = sin( w10 ); /* #174: @8 = (@9*@10) */ w8 = (w9*w10); /* #175: @8 = (@12*@8) */ w8 = (w12*w8); /* #176: @8 = (@14*@8) */ w8 = (w14*w8); /* #177: @18 = (@17*@8) */ w18 = (w17*w8); /* #178: @53 = horzcat(@49, @18) */ rr=(&w53); *rr++ = w18; /* #179: @53 = @53' */ /* #180: @9 = (@9*@10) */ w9 *= w10; /* #181: @12 = (@12*@9) */ w12 *= w9; /* #182: @12 = (@14*@12) */ w12 = (w14*w12); /* #183: @17 = (@17*@12) */ w17 *= w12; /* #184: @9 = horzcat(@50, @17) */ rr=(&w9); *rr++ = w17; /* #185: @9 = @9' */ /* #186: @51 = 00 */ /* #187: @17 = horzcat(@30, @51) */ rr=(&w17); *rr++ = w30; /* #188: @17 = @17' */ /* #189: @52 = horzcat(@16, @6, @53, @9, @17) */ rr=w52; *rr++ = w16; *rr++ = w6; *rr++ = w53; *rr++ = w9; *rr++ = w17; /* #190: @46 = mac(@44,@52,@46) */ casadi_mtimes(w44, casadi_s11, w52, casadi_s10, w46, casadi_s9, w, 0); /* #191: {@16, @6, @53, @9, @17} = horzsplit(@46) */ w16 = w46[0]; w6 = w46[1]; w53 = w46[2]; w9 = w46[3]; w17 = w46[4]; /* #192: @16 = (@15*@16) */ w16 = (w15*w16); /* #193: @16 = (@4*@16) */ w16 = (w4*w16); /* #194: @5 = (@5-@16) */ w5 -= w16; /* #195: @46 = zeros(1x5) */ casadi_fill(w46, 5, 0.); /* #196: @51 = 00 */ /* #197: @44 = jac_Spline(@42, @51) */ arg1[0]=w42; arg1[1]=0; res1[0]=w44; if (casadi_f2(arg1, res1, iw, w, 0)) return 1; /* #198: @16 = 63 */ w16 = 63.; /* #199: @16 = (@16/@38) */ w16 /= w38; /* #200: @10 = horzcat(@47, @16) */ rr=(&w10); *rr++ = w16; /* #201: @10 = @10' */ /* #202: @16 = 63 */ w16 = 63.; /* #203: @16 = (@16/@38) */ w16 /= w38; /* #204: @18 = horzcat(@48, @16) */ rr=(&w18); *rr++ = w16; /* #205: @18 = @18' */ /* #206: @40 = (@40/@38) */ w40 /= w38; /* #207: @16 = -0.8 */ w16 = -8.0000000000000004e-01; /* #208: @35 = pow(@35,@16) */ w35 = pow(w35,w16); /* #209: @11 = (@11*@35) */ w11 *= w35; /* #210: @37 = sin(@37) */ w37 = sin( w37 ); /* #211: @35 = (@36*@37) */ w35 = (w36*w37); /* #212: @35 = (@11*@35) */ w35 = (w11*w35); /* #213: @35 = (@14*@35) */ w35 = (w14*w35); /* #214: @16 = (@40*@35) */ w16 = (w40*w35); /* #215: @54 = horzcat(@49, @16) */ rr=(&w54); *rr++ = w16; /* #216: @54 = @54' */ /* #217: @36 = (@36*@37) */ w36 *= w37; /* #218: @11 = (@11*@36) */ w11 *= w36; /* #219: @14 = (@14*@11) */ w14 *= w11; /* #220: @40 = (@40*@14) */ w40 *= w14; /* #221: @11 = horzcat(@50, @40) */ rr=(&w11); *rr++ = w40; /* #222: @11 = @11' */ /* #223: @50 = 00 */ /* #224: @40 = horzcat(@30, @50) */ rr=(&w40); *rr++ = w30; /* #225: @40 = @40' */ /* #226: @52 = horzcat(@10, @18, @54, @11, @40) */ rr=w52; *rr++ = w10; *rr++ = w18; *rr++ = w54; *rr++ = w11; *rr++ = w40; /* #227: @46 = mac(@44,@52,@46) */ casadi_mtimes(w44, casadi_s11, w52, casadi_s10, w46, casadi_s9, w, 0); /* #228: {@10, @18, @54, @11, @40} = horzsplit(@46) */ w10 = w46[0]; w18 = w46[1]; w54 = w46[2]; w11 = w46[3]; w40 = w46[4]; /* #229: @10 = (@39*@10) */ w10 = (w39*w10); /* #230: @10 = (@33*@10) */ w10 = (w33*w10); /* #231: @5 = (@5-@10) */ w5 -= w10; /* #232: @5 = (@21*@5) */ w5 = (w21*w5); /* #233: @5 = (-@5) */ w5 = (- w5 ); /* #234: @10 = 1 */ w10 = 1.; /* #235: @50 = 00 */ /* #236: @49 = 00 */ /* #237: @30 = -50 */ w30 = -50.; /* #238: @55 = vertcat(@1, @5, @10, @50, @49, @30) */ rr=w55; *rr++ = w1; *rr++ = w5; *rr++ = w10; *rr++ = w30; /* #239: @55 = (-@55) */ for (i=0, rr=w55, cs=w55; i<4; ++i) *rr++ = (- *cs++ ); /* #240: @56 = @55[:4] */ for (rr=w56, ss=w55+0; ss!=w55+4; ss+=1) *rr++ = *ss; /* #241: (@45[2, 3, 8, 11] = @56) */ for (cii=casadi_s12, rr=w45, ss=w56; cii!=casadi_s12+4; ++cii, ++ss) if (*cii>=0) rr[*cii] = *ss; /* #242: @1 = 1.53119 */ w1 = 1.5311917180143535e+00; /* #243: @5 = 62150000 */ w5 = 62150000.; /* #244: @43 = (@29*@43) */ w43 = (w29*w43); /* #245: @43 = (@22*@43) */ w43 = (w22*w43); /* #246: @43 = (-@43) */ w43 = (- w43 ); /* #247: @6 = (@15*@6) */ w6 = (w15*w6); /* #248: @6 = (@4*@6) */ w6 = (w4*w6); /* #249: @43 = (@43-@6) */ w43 -= w6; /* #250: @18 = (@39*@18) */ w18 = (w39*w18); /* #251: @18 = (@33*@18) */ w18 = (w33*w18); /* #252: @43 = (@43-@18) */ w43 -= w18; /* #253: @5 = (@5+@43) */ w5 += w43; /* #254: @5 = (@21*@5) */ w5 = (w21*w5); /* #255: @5 = (-@5) */ w5 = (- w5 ); /* #256: @50 = 00 */ /* #257: @43 = 1 */ w43 = 1.; /* #258: @49 = 00 */ /* #259: @48 = 00 */ /* #260: @57 = vertcat(@1, @5, @50, @43, @49, @48) */ rr=w57; *rr++ = w1; *rr++ = w5; *rr++ = w43; /* #261: @57 = (-@57) */ for (i=0, rr=w57, cs=w57; i<3; ++i) *rr++ = (- *cs++ ); /* #262: @58 = @57[:3] */ for (rr=w58, ss=w57+0; ss!=w57+3; ss+=1) *rr++ = *ss; /* #263: (@45[0, 4, 9] = @58) */ for (cii=casadi_s13, rr=w45, ss=w58; cii!=casadi_s13+3; ++cii, ++ss) if (*cii>=0) rr[*cii] = *ss; /* #264: @50 = 00 */ /* #265: @3 = (@29*@3) */ w3 = (w29*w3); /* #266: @28 = (2.*@28) */ w28 = (2.* w28 ); /* #267: @24 = (@28*@24) */ w24 = (w28*w24); /* #268: @24 = (@23*@24) */ w24 = (w23*w24); /* #269: @24 = (@31*@24) */ w24 = (w31*w24); /* #270: @3 = (@3-@24) */ w3 -= w24; /* #271: @3 = (@22*@3) */ w3 = (w22*w3); /* #272: @3 = (-@3) */ w3 = (- w3 ); /* #273: @53 = (@15*@53) */ w53 = (w15*w53); /* #274: @13 = (2.*@13) */ w13 = (2.* w13 ); /* #275: @8 = (@13*@8) */ w8 = (w13*w8); /* #276: @8 = (@7*@8) */ w8 = (w7*w8); /* #277: @8 = (@19*@8) */ w8 = (w19*w8); /* #278: @53 = (@53-@8) */ w53 -= w8; /* #279: @53 = (@4*@53) */ w53 = (w4*w53); /* #280: @3 = (@3-@53) */ w3 -= w53; /* #281: @54 = (@39*@54) */ w54 = (w39*w54); /* #282: @38 = (2.*@38) */ w38 = (2.* w38 ); /* #283: @35 = (@38*@35) */ w35 = (w38*w35); /* #284: @35 = (@34*@35) */ w35 = (w34*w35); /* #285: @35 = (@41*@35) */ w35 = (w41*w35); /* #286: @54 = (@54-@35) */ w54 -= w35; /* #287: @54 = (@33*@54) */ w54 = (w33*w54); /* #288: @3 = (@3-@54) */ w3 -= w54; /* #289: @3 = (@21*@3) */ w3 = (w21*w3); /* #290: @3 = (-@3) */ w3 = (- w3 ); /* #291: @49 = 00 */ /* #292: @48 = 00 */ /* #293: @47 = 00 */ /* #294: @51 = 00 */ /* #295: @54 = vertcat(@50, @3, @49, @48, @47, @51) */ rr=(&w54); *rr++ = w3; /* #296: @54 = (-@54) */ w54 = (- w54 ); /* #297: @3 = @54[0] */ for (rr=(&w3), ss=(&w54)+0; ss!=(&w54)+1; ss+=1) *rr++ = *ss; /* #298: (@45[5] = @3) */ for (rr=w45+5, ss=(&w3); rr!=w45+6; rr+=1) *rr = *ss++; /* #299: @3 = 21.376 */ w3 = 2.1376003035282700e+01; /* #300: @54 = 867637000 */ w54 = 867637000.; /* #301: @25 = (@29*@25) */ w25 = (w29*w25); /* #302: @28 = (@28*@27) */ w28 *= w27; /* #303: @23 = (@23*@28) */ w23 *= w28; /* #304: @31 = (@31*@23) */ w31 *= w23; /* #305: @25 = (@25-@31) */ w25 -= w31; /* #306: @25 = (@22*@25) */ w25 = (w22*w25); /* #307: @25 = (-@25) */ w25 = (- w25 ); /* #308: @9 = (@15*@9) */ w9 = (w15*w9); /* #309: @13 = (@13*@12) */ w13 *= w12; /* #310: @7 = (@7*@13) */ w7 *= w13; /* #311: @19 = (@19*@7) */ w19 *= w7; /* #312: @9 = (@9-@19) */ w9 -= w19; /* #313: @9 = (@4*@9) */ w9 = (w4*w9); /* #314: @25 = (@25-@9) */ w25 -= w9; /* #315: @11 = (@39*@11) */ w11 = (w39*w11); /* #316: @38 = (@38*@14) */ w38 *= w14; /* #317: @34 = (@34*@38) */ w34 *= w38; /* #318: @41 = (@41*@34) */ w41 *= w34; /* #319: @11 = (@11-@41) */ w11 -= w41; /* #320: @11 = (@33*@11) */ w11 = (w33*w11); /* #321: @25 = (@25-@11) */ w25 -= w11; /* #322: @54 = (@54+@25) */ w54 += w25; /* #323: @54 = (@21*@54) */ w54 = (w21*w54); /* #324: @54 = (-@54) */ w54 = (- w54 ); /* #325: @50 = 00 */ /* #326: @49 = 00 */ /* #327: @48 = 00 */ /* #328: @47 = 00 */ /* #329: @44 = vertcat(@3, @54, @50, @49, @48, @47) */ rr=w44; *rr++ = w3; *rr++ = w54; /* #330: @44 = (-@44) */ for (i=0, rr=w44, cs=w44; i<2; ++i) *rr++ = (- *cs++ ); /* #331: @42 = @44[:2] */ for (rr=w42, ss=w44+0; ss!=w44+2; ss+=1) *rr++ = *ss; /* #332: (@45[1:11:5] = @42) */ for (rr=w45+1, ss=w42; rr!=w45+11; rr+=5) *rr = *ss++; /* #333: @50 = 00 */ /* #334: @29 = (@29*@26) */ w29 *= w26; /* #335: @22 = (@22*@29) */ w22 *= w29; /* #336: @22 = (-@22) */ w22 = (- w22 ); /* #337: @15 = (@15*@17) */ w15 *= w17; /* #338: @4 = (@4*@15) */ w4 *= w15; /* #339: @22 = (@22-@4) */ w22 -= w4; /* #340: @39 = (@39*@40) */ w39 *= w40; /* #341: @33 = (@33*@39) */ w33 *= w39; /* #342: @22 = (@22-@33) */ w22 -= w33; /* #343: @21 = (@21*@22) */ w21 *= w22; /* #344: @21 = (-@21) */ w21 = (- w21 ); /* #345: @49 = 00 */ /* #346: @48 = 00 */ /* #347: @22 = -2.5 */ w22 = -2.5000000000000000e+00; /* #348: @47 = 00 */ /* #349: @42 = vertcat(@50, @21, @49, @48, @22, @47) */ rr=w42; *rr++ = w21; *rr++ = w22; /* #350: @42 = (-@42) */ for (i=0, rr=w42, cs=w42; i<2; ++i) *rr++ = (- *cs++ ); /* #351: @44 = @42[:2] */ for (rr=w44, ss=w42+0; ss!=w42+2; ss+=1) *rr++ = *ss; /* #352: (@45[7:13:3] = @44) */ for (rr=w45+7, ss=w44; rr!=w45+13; rr+=3) *rr = *ss++; /* #353: @59 = @45' */ casadi_trans(w45,casadi_s15, w59, casadi_s14, iw); /* #354: output[1][0] = @59 */ casadi_copy(w59, 12, res[1]); /* #355: @0 = zeros(6x6,6nz) */ casadi_fill(w0, 6, 0.); /* #356: @2 = ones(6x1) */ casadi_fill(w2, 6, 1.); /* #357: (@0[:6] = @2) */ for (rr=w0+0, ss=w2; rr!=w0+6; rr+=1) *rr = *ss++; /* #358: @2 = @0' */ casadi_trans(w0,casadi_s16, w2, casadi_s16, iw); /* #359: output[2][0] = @2 */ casadi_copy(w2, 6, res[2]); /* #360: @44 = zeros(2x6,2nz) */ casadi_fill(w44, 2, 0.); /* #361: @50 = 00 */ /* #362: @49 = 00 */ /* #363: @48 = 00 */ /* #364: @47 = 00 */ /* #365: @21 = 2.5 */ w21 = 2.5000000000000000e+00; /* #366: @22 = 50 */ w22 = 50.; /* #367: @42 = vertcat(@50, @49, @48, @47, @21, @22) */ rr=w42; *rr++ = w21; *rr++ = w22; /* #368: @42 = (-@42) */ for (i=0, rr=w42, cs=w42; i<2; ++i) *rr++ = (- *cs++ ); /* #369: @20 = @42[:2] */ for (rr=w20, ss=w42+0; ss!=w42+2; ss+=1) *rr++ = *ss; /* #370: (@44[:2] = @20) */ for (rr=w44+0, ss=w20; rr!=w44+2; rr+=1) *rr = *ss++; /* #371: @20 = @44' */ casadi_trans(w44,casadi_s18, w20, casadi_s17, iw); /* #372: output[3][0] = @20 */ casadi_copy(w20, 2, res[3]); return 0; } CASADI_SYMBOL_EXPORT int casadi_impl_ode_fun_jac_x_xdot_u(const casadi_real** arg, casadi_real** res, casadi_int* iw, casadi_real* w, void* mem){ return casadi_f0(arg, res, iw, w, mem); } CASADI_SYMBOL_EXPORT void casadi_impl_ode_fun_jac_x_xdot_u_incref(void) { } CASADI_SYMBOL_EXPORT void casadi_impl_ode_fun_jac_x_xdot_u_decref(void) { } CASADI_SYMBOL_EXPORT casadi_int casadi_impl_ode_fun_jac_x_xdot_u_n_in(void) { return 4;} CASADI_SYMBOL_EXPORT casadi_int casadi_impl_ode_fun_jac_x_xdot_u_n_out(void) { return 4;} CASADI_SYMBOL_EXPORT const char* casadi_impl_ode_fun_jac_x_xdot_u_name_in(casadi_int i){ switch (i) { case 0: return "i0"; case 1: return "i1"; case 2: return "i2"; case 3: return "i3"; default: return 0; } } CASADI_SYMBOL_EXPORT const char* casadi_impl_ode_fun_jac_x_xdot_u_name_out(casadi_int i){ switch (i) { case 0: return "o0"; case 1: return "o1"; case 2: return "o2"; case 3: return "o3"; default: return 0; } } CASADI_SYMBOL_EXPORT const casadi_int* casadi_impl_ode_fun_jac_x_xdot_u_sparsity_in(casadi_int i) { switch (i) { case 0: return casadi_s19; case 1: return casadi_s19; case 2: return casadi_s20; case 3: return casadi_s21; default: return 0; } } CASADI_SYMBOL_EXPORT const casadi_int* casadi_impl_ode_fun_jac_x_xdot_u_sparsity_out(casadi_int i) { switch (i) { case 0: return casadi_s19; case 1: return casadi_s14; case 2: return casadi_s16; case 3: return casadi_s17; default: return 0; } } CASADI_SYMBOL_EXPORT int casadi_impl_ode_fun_jac_x_xdot_u_work(casadi_int *sz_arg, casadi_int* sz_res, casadi_int *sz_iw, casadi_int *sz_w) { if (sz_arg) *sz_arg = 10; if (sz_res) *sz_res = 9; if (sz_iw) *sz_iw = 14; if (sz_w) *sz_w = 125; return 0; } #ifdef __cplusplus } /* extern "C" */ #endif
the_stack_data/86499.c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_getcol.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: mgalliou <[email protected]> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2018/02/16 11:37:04 by mgalliou #+# #+# */ /* Updated: 2018/02/16 11:37:24 by mgalliou ### ########.fr */ /* */ /* ************************************************************************** */ #include <sys/ioctl.h> int ft_getcol(void) { struct winsize w; ioctl(0, TIOCGWINSZ, &w); return (w.ws_col); }
the_stack_data/67257.c
extern const unsigned char ImagePickerVersionString[]; extern const double ImagePickerVersionNumber; const unsigned char ImagePickerVersionString[] __attribute__ ((used)) = "@(#)PROGRAM:ImagePicker PROJECT:Pods-1" "\n"; const double ImagePickerVersionNumber __attribute__ ((used)) = (double)1.;
the_stack_data/40511.c
// RUN: %crabllvm --inline --lower-select --lower-unsigned-icmp --do-not-print-invariants --crab-dom=boxes --crab-check=assert %opts "%s" 2>&1 | OutputCheck -l debug %s // CHECK: ^1 Number of total safe checks$ // CHECK: ^0 Number of total error checks$ // CHECK: ^0 Number of total warning checks$ extern void __VERIFIER_error() __attribute__ ((__noreturn__)); extern char __VERIFIER_nondet_char(void); extern int __VERIFIER_nondet_int(void); extern long __VERIFIER_nondet_long(void); extern void *__VERIFIER_nondet_pointer(void); extern int __VERIFIER_nondet_int(); /* Generated by CIL v. 1.3.6 */ /* print_CIL_Input is true */ int ssl3_accept(int initial_state ) { int s__info_callback = __VERIFIER_nondet_int() ; int s__in_handshake = __VERIFIER_nondet_int() ; int s__state ; int s__new_session ; int s__server ; int s__version = __VERIFIER_nondet_int() ; int s__type ; int s__init_num ; int s__hit = __VERIFIER_nondet_int() ; int s__rwstate ; int s__init_buf___0 ; int s__debug = __VERIFIER_nondet_int() ; int s__shutdown ; int s__cert = __VERIFIER_nondet_int() ; int s__options = __VERIFIER_nondet_int() ; int s__verify_mode = __VERIFIER_nondet_int() ; int s__session__peer = __VERIFIER_nondet_int() ; int s__cert__pkeys__AT0__privatekey = __VERIFIER_nondet_int() ; int s__ctx__info_callback = __VERIFIER_nondet_int() ; int s__ctx__stats__sess_accept_renegotiate = __VERIFIER_nondet_int() ; int s__ctx__stats__sess_accept = __VERIFIER_nondet_int() ; int s__ctx__stats__sess_accept_good = __VERIFIER_nondet_int() ; int s__s3__tmp__cert_request ; int s__s3__tmp__reuse_message = __VERIFIER_nondet_int() ; int s__s3__tmp__use_rsa_tmp ; int s__s3__tmp__new_cipher = __VERIFIER_nondet_int() ; int s__s3__tmp__new_cipher__algorithms = __VERIFIER_nondet_int() ; int s__s3__tmp__next_state___0 ; int s__s3__tmp__new_cipher__algo_strength = __VERIFIER_nondet_int() ; int s__session__cipher ; int buf ; unsigned long l ; unsigned long Time ; unsigned long tmp ; int cb ; long num1 ; int ret ; int new_state ; int state ; int skip ; int got_new_session ; int tmp___1 = __VERIFIER_nondet_int() ; int tmp___2 = __VERIFIER_nondet_int() ; int tmp___3 = __VERIFIER_nondet_int() ; int tmp___4 = __VERIFIER_nondet_int() ; int tmp___5 = __VERIFIER_nondet_int() ; int tmp___6 = __VERIFIER_nondet_int() ; int tmp___7 ; long tmp___8 = __VERIFIER_nondet_long() ; int tmp___9 = __VERIFIER_nondet_int() ; int tmp___10 = __VERIFIER_nondet_int() ; int blastFlag ; int __cil_tmp55 ; unsigned long __cil_tmp56 ; unsigned long __cil_tmp57 ; unsigned long __cil_tmp58 ; unsigned long __cil_tmp59 ; int __cil_tmp60 ; unsigned long __cil_tmp61 ; { ; s__state = initial_state; blastFlag = 0; tmp = __VERIFIER_nondet_int(); Time = tmp; cb = 0; ret = -1; skip = 0; got_new_session = 0; if (s__info_callback != 0) { cb = s__info_callback; } else { if (s__ctx__info_callback != 0) { cb = s__ctx__info_callback; } } s__in_handshake ++; if (tmp___1 + 12288) { if (tmp___2 + 16384) { } } if (s__cert == 0) { return (-1); } { while (1) { while_0_continue: /* CIL Label */ ; state = s__state; if (s__state == 12292) { goto switch_1_12292; } else { if (s__state == 16384) { goto switch_1_16384; } else { if (s__state == 8192) { goto switch_1_8192; } else { if (s__state == 24576) { goto switch_1_24576; } else { if (s__state == 8195) { goto switch_1_8195; } else { if (s__state == 8480) { goto switch_1_8480; } else { if (s__state == 8481) { goto switch_1_8481; } else { if (s__state == 8482) { goto switch_1_8482; } else { if (s__state == 8464) { goto switch_1_8464; } else { if (s__state == 8465) { goto switch_1_8465; } else { if (s__state == 8466) { goto switch_1_8466; } else { if (s__state == 8496) { goto switch_1_8496; } else { if (s__state == 8497) { goto switch_1_8497; } else { if (s__state == 8512) { goto switch_1_8512; } else { if (s__state == 8513) { goto switch_1_8513; } else { if (s__state == 8528) { goto switch_1_8528; } else { if (s__state == 8529) { goto switch_1_8529; } else { if (s__state == 8544) { goto switch_1_8544; } else { if (s__state == 8545) { goto switch_1_8545; } else { if (s__state == 8560) { goto switch_1_8560; } else { if (s__state == 8561) { goto switch_1_8561; } else { if (s__state == 8448) { goto switch_1_8448; } else { if (s__state == 8576) { goto switch_1_8576; } else { if (s__state == 8577) { goto switch_1_8577; } else { if (s__state == 8592) { goto switch_1_8592; } else { if (s__state == 8593) { goto switch_1_8593; } else { if (s__state == 8608) { goto switch_1_8608; } else { if (s__state == 8609) { goto switch_1_8609; } else { if (s__state == 8640) { goto switch_1_8640; } else { if (s__state == 8641) { goto switch_1_8641; } else { if (s__state == 8656) { goto switch_1_8656; } else { if (s__state == 8657) { goto switch_1_8657; } else { if (s__state == 8672) { goto switch_1_8672; } else { if (s__state == 8673) { goto switch_1_8673; } else { if (s__state == 3) { goto switch_1_3; } else { goto switch_1_default; if (0) { switch_1_12292: s__new_session = 1; switch_1_16384: ; switch_1_8192: ; switch_1_24576: ; switch_1_8195: s__server = 1; if (cb != 0) { } { __cil_tmp55 = s__version * 8; if (__cil_tmp55 != 3) { return (-1); } } s__type = 8192; if (s__init_buf___0 == 0) { buf = __VERIFIER_nondet_int(); if (buf == 0) { ret = -1; goto end; } if (! tmp___3) { ret = -1; goto end; } s__init_buf___0 = buf; } if (! tmp___4) { ret = -1; goto end; } s__init_num = 0; if (s__state != 12292) { if (! tmp___5) { ret = -1; goto end; } s__state = 8464; s__ctx__stats__sess_accept ++; } else { s__ctx__stats__sess_accept_renegotiate ++; s__state = 8480; } goto switch_1_break; switch_1_8480: ; switch_1_8481: s__shutdown = 0; ret = __VERIFIER_nondet_int(); if (ret <= 0) { goto end; } s__s3__tmp__next_state___0 = 8482; s__state = 8448; s__init_num = 0; goto switch_1_break; switch_1_8482: s__state = 3; goto switch_1_break; switch_1_8464: ; switch_1_8465: ; switch_1_8466: s__shutdown = 0; ret = __VERIFIER_nondet_int(); if (blastFlag == 0) { blastFlag = 1; } if (ret <= 0) { goto end; } got_new_session = 1; s__state = 8496; s__init_num = 0; goto switch_1_break; switch_1_8496: ; switch_1_8497: ret = __VERIFIER_nondet_int(); if (blastFlag == 1) { blastFlag = 2; } if (ret <= 0) { goto end; } if (s__hit) { s__state = 8656; } else { s__state = 8512; } s__init_num = 0; goto switch_1_break; switch_1_8512: ; switch_1_8513: ; { __cil_tmp56 = (unsigned long )s__s3__tmp__new_cipher__algorithms; if (__cil_tmp56 + 256UL) { skip = 1; } else { ret = __VERIFIER_nondet_int(); if (ret <= 0) { goto end; } } } s__state = 8528; s__init_num = 0; goto switch_1_break; switch_1_8528: ; switch_1_8529: l = (unsigned long )s__s3__tmp__new_cipher__algorithms; { __cil_tmp57 = (unsigned long )s__options; if (__cil_tmp57 + 2097152UL) { s__s3__tmp__use_rsa_tmp = 1; } else { s__s3__tmp__use_rsa_tmp = 0; } } if (s__s3__tmp__use_rsa_tmp) { goto _L___0; } else { if (l + 30UL) { goto _L___0; } else { if (l + 1UL) { if (s__cert__pkeys__AT0__privatekey == 0) { goto _L___0; } else { { __cil_tmp58 = (unsigned long )s__s3__tmp__new_cipher__algo_strength; if (__cil_tmp58 + 2UL) { { __cil_tmp59 = (unsigned long )s__s3__tmp__new_cipher__algo_strength; if (__cil_tmp59 + 4UL) { tmp___7 = 512; } else { tmp___7 = 1024; } } { __cil_tmp60 = tmp___6 * 8; if (__cil_tmp60 > tmp___7) { _L___0: ret = __VERIFIER_nondet_int(); if (ret <= 0) { goto end; } } else { skip = 1; } } } else { skip = 1; } } } } else { skip = 1; } } } s__state = 8544; s__init_num = 0; goto switch_1_break; switch_1_8544: ; switch_1_8545: ; if (s__verify_mode + 1) { if (s__session__peer != 0) { if (s__verify_mode + 4) { skip = 1; s__s3__tmp__cert_request = 0; s__state = 8560; } else { goto _L___2; } } else { _L___2: { __cil_tmp61 = (unsigned long )s__s3__tmp__new_cipher__algorithms; if (__cil_tmp61 + 256UL) { if (s__verify_mode + 2) { goto _L___1; } else { skip = 1; s__s3__tmp__cert_request = 0; s__state = 8560; } } else { _L___1: s__s3__tmp__cert_request = 1; ret = __VERIFIER_nondet_int(); if (ret <= 0) { goto end; } s__state = 8448; s__s3__tmp__next_state___0 = 8576; s__init_num = 0; } } } } else { skip = 1; s__s3__tmp__cert_request = 0; s__state = 8560; } goto switch_1_break; switch_1_8560: ; switch_1_8561: ret = __VERIFIER_nondet_int(); if (ret <= 0) { goto end; } s__s3__tmp__next_state___0 = 8576; s__state = 8448; s__init_num = 0; goto switch_1_break; switch_1_8448: if (num1 > 0L) { s__rwstate = 2; num1 = tmp___8; if (num1 <= 0L) { ret = -1; goto end; } s__rwstate = 1; } s__state = s__s3__tmp__next_state___0; goto switch_1_break; switch_1_8576: ; switch_1_8577: ret = __VERIFIER_nondet_int(); if (ret <= 0) { goto end; } if (ret == 2) { s__state = 8466; } else { ret = __VERIFIER_nondet_int(); if (ret <= 0) { goto end; } s__init_num = 0; s__state = 8592; } goto switch_1_break; switch_1_8592: ; switch_1_8593: ret = __VERIFIER_nondet_int(); if (ret <= 0) { goto end; } s__state = 8608; s__init_num = 0; goto switch_1_break; switch_1_8608: ; switch_1_8609: ret = __VERIFIER_nondet_int(); if (ret <= 0) { goto end; } s__state = 8640; s__init_num = 0; goto switch_1_break; switch_1_8640: ; switch_1_8641: ret = __VERIFIER_nondet_int(); if (ret <= 0) { goto end; } if (s__hit) { s__state = 3; } else { s__state = 8656; } s__init_num = 0; goto switch_1_break; switch_1_8656: ; switch_1_8657: s__session__cipher = s__s3__tmp__new_cipher; if (! tmp___9) { ret = -1; goto end; } ret = __VERIFIER_nondet_int(); if (blastFlag == 2) { blastFlag = 3; } else { if (blastFlag == 3) { blastFlag = 4; } } if (ret <= 0) { goto end; } s__state = 8672; s__init_num = 0; if (! tmp___10) { ret = -1; goto end; } goto switch_1_break; switch_1_8672: ; switch_1_8673: ret = __VERIFIER_nondet_int(); if (blastFlag == 4) { goto ERROR; } if (ret <= 0) { goto end; } s__state = 8448; if (s__hit) { s__s3__tmp__next_state___0 = 8640; } else { s__s3__tmp__next_state___0 = 3; } s__init_num = 0; goto switch_1_break; switch_1_3: s__init_buf___0 = 0; s__init_num = 0; if (got_new_session) { s__new_session = 0; s__ctx__stats__sess_accept_good ++; if (cb != 0) { } } ret = 1; goto end; switch_1_default: ret = -1; goto end; } else { switch_1_break: ; } } } } } } } } } } } } } } } } } } } } } } } } } } } } } } } } } } } } if (! s__s3__tmp__reuse_message) { if (! skip) { if (s__debug) { ret = __VERIFIER_nondet_int(); if (ret <= 0) { goto end; } } if (cb != 0) { if (s__state != state) { new_state = s__state; s__state = state; s__state = new_state; } } } } skip = 0; } while_0_break: /* CIL Label */ ; } end: s__in_handshake --; if (cb != 0) { } return (ret); ERROR: __VERIFIER_error(); return (-1); } } int main(void) { int s ; int tmp ; { { s = 8464; tmp = ssl3_accept(s); } return (tmp); } }
the_stack_data/238705.c
/* * "Optimize" a list of dependencies as spit out by gcc -MD * for the kernel build * =========================================================================== * * Author Kai Germaschewski * Copyright 2002 by Kai Germaschewski <[email protected]> * * This software may be used and distributed according to the terms * of the GNU General Public License, incorporated herein by reference. * * * Introduction: * * gcc produces a very nice and correct list of dependencies which * tells make when to remake a file. * * To use this list as-is however has the drawback that virtually * every file in the kernel includes autoconf.h. * * If the user re-runs make *config, autoconf.h will be * regenerated. make notices that and will rebuild every file which * includes autoconf.h, i.e. basically all files. This is extremely * annoying if the user just changed CONFIG_HIS_DRIVER from n to m. * * So we play the same trick that "mkdep" played before. We replace * the dependency on autoconf.h by a dependency on every config * option which is mentioned in any of the listed prequisites. * * kconfig populates a tree in include/config/ with an empty file * for each config symbol and when the configuration is updated * the files representing changed config options are touched * which then let make pick up the changes and the files that use * the config symbols are rebuilt. * * So if the user changes his CONFIG_HIS_DRIVER option, only the objects * which depend on "include/linux/config/his/driver.h" will be rebuilt, * so most likely only his driver ;-) * * The idea above dates, by the way, back to Michael E Chastain, AFAIK. * * So to get dependencies right, there are two issues: * o if any of the files the compiler read changed, we need to rebuild * o if the command line given to the compile the file changed, we * better rebuild as well. * * The former is handled by using the -MD output, the later by saving * the command line used to compile the old object and comparing it * to the one we would now use. * * Again, also this idea is pretty old and has been discussed on * kbuild-devel a long time ago. I don't have a sensibly working * internet connection right now, so I rather don't mention names * without double checking. * * This code here has been based partially based on mkdep.c, which * says the following about its history: * * Copyright abandoned, Michael Chastain, <mailto:[email protected]>. * This is a C version of syncdep.pl by Werner Almesberger. * * * It is invoked as * * fixdep <depfile> <target> <cmdline> * * and will read the dependency file <depfile> * * The transformed dependency snipped is written to stdout. * * It first generates a line * * cmd_<target> = <cmdline> * * and then basically copies the .<target>.d file to stdout, in the * process filtering out the dependency on autoconf.h and adding * dependencies on include/config/my/option.h for every * CONFIG_MY_OPTION encountered in any of the prequisites. * * It will also filter out all the dependencies on *.ver. We need * to make sure that the generated version checksum are globally up * to date before even starting the recursive build, so it's too late * at this point anyway. * * The algorithm to grep for "CONFIG_..." is bit unusual, but should * be fast ;-) We don't even try to really parse the header files, but * merely grep, i.e. if CONFIG_FOO is mentioned in a comment, it will * be picked up as well. It's not a problem with respect to * correctness, since that can only give too many dependencies, thus * we cannot miss a rebuild. Since people tend to not mention totally * unrelated CONFIG_ options all over the place, it's not an * efficiency problem either. * * (Note: it'd be easy to port over the complete mkdep state machine, * but I don't think the added complexity is worth it) */ /* * Note 2: if somebody writes HELLO_CONFIG_BOOM in a file, it will depend onto * CONFIG_BOOM. This could seem a bug (not too hard to fix), but please do not * fix it! Some UserModeLinux files (look at arch/um/) call CONFIG_BOOM as * UML_CONFIG_BOOM, to avoid conflicts with /usr/include/linux/autoconf.h, * through arch/um/include/uml-config.h; this fixdep "bug" makes sure that * those files will have correct dependencies. */ #include <sys/types.h> #include <sys/stat.h> #include <sys/mman.h> #include <unistd.h> #include <fcntl.h> #include <string.h> #include <stdlib.h> #include <stdio.h> #include <limits.h> #include <ctype.h> #include <arpa/inet.h> #define INT_CONF ntohl(0x434f4e46) #define INT_ONFI ntohl(0x4f4e4649) #define INT_NFIG ntohl(0x4e464947) #define INT_FIG_ ntohl(0x4649475f) char *target; char *depfile; char *cmdline; int is_spl_build = 0; /* hack for U-Boot */ static void usage(void) { fprintf(stderr, "Usage: fixdep <depfile> <target> <cmdline>\n"); exit(1); } /* * Print out the commandline prefixed with cmd_<target filename> := */ static void print_cmdline(void) { printf("cmd_%s := %s\n\n", target, cmdline); } struct item { struct item *next; unsigned int len; unsigned int hash; char name[0]; }; #define HASHSZ 256 static struct item *hashtab[HASHSZ]; static unsigned int strhash(const char *str, unsigned int sz) { /* fnv32 hash */ unsigned int i, hash = 2166136261U; for (i = 0; i < sz; i++) hash = (hash ^ str[i]) * 0x01000193; return hash; } /* * Lookup a value in the configuration string. */ static int is_defined_config(const char *name, int len, unsigned int hash) { struct item *aux; for (aux = hashtab[hash % HASHSZ]; aux; aux = aux->next) { if (aux->hash == hash && aux->len == len && memcmp(aux->name, name, len) == 0) return 1; } return 0; } /* * Add a new value to the configuration string. */ static void define_config(const char *name, int len, unsigned int hash) { struct item *aux = malloc(sizeof(*aux) + len); if (!aux) { perror("fixdep:malloc"); exit(1); } memcpy(aux->name, name, len); aux->len = len; aux->hash = hash; aux->next = hashtab[hash % HASHSZ]; hashtab[hash % HASHSZ] = aux; } /* * Record the use of a CONFIG_* word. */ static void use_config(const char *m, int slen) { unsigned int hash = strhash(m, slen); int c, i; if (is_defined_config(m, slen, hash)) return; define_config(m, slen, hash); printf(" $(wildcard include/config/"); for (i = 0; i < slen; i++) { c = m[i]; if (c == '_') c = '/'; else c = tolower(c); putchar(c); } printf(".h) \\\n"); } static void parse_config_file(const char *map, size_t len) { const int *end = (const int *) (map + len); /* start at +1, so that p can never be < map */ const int *m = (const int *) map + 1; const char *p, *q; char tmp_buf[256] = "SPL_"; /* hack for U-Boot */ for (; m < end; m++) { if (*m == INT_CONF) { p = (char *) m ; goto conf; } if (*m == INT_ONFI) { p = (char *) m-1; goto conf; } if (*m == INT_NFIG) { p = (char *) m-2; goto conf; } if (*m == INT_FIG_) { p = (char *) m-3; goto conf; } continue; conf: if (p > map + len - 7) continue; if (memcmp(p, "CONFIG_", 7)) continue; p += 7; for (q = p; q < map + len; q++) { if (!(isalnum(*q) || *q == '_')) goto found; } continue; found: if (!memcmp(q - 7, "_MODULE", 7)) q -= 7; if (q - p < 0) continue; /* U-Boot also handles CONFIG_IS_{ENABLED/BUILTIN/MODULE} */ if ((q - p == 10 && !memcmp(p, "IS_ENABLED(", 11)) || (q - p == 10 && !memcmp(p, "IS_BUILTIN(", 11)) || (q - p == 9 && !memcmp(p, "IS_MODULE(", 10))) { p = q + 1; for (q = p; q < map + len; q++) if (*q == ')') goto found2; continue; found2: if (is_spl_build) { memcpy(tmp_buf + 4, p, q - p); q = tmp_buf + 4 + (q - p); p = tmp_buf; } } /* end U-Boot hack */ use_config(p, q - p); } } /* test is s ends in sub */ static int strrcmp(char *s, char *sub) { int slen = strlen(s); int sublen = strlen(sub); if (sublen > slen) return 1; return memcmp(s + slen - sublen, sub, sublen); } static void do_config_file(const char *filename) { struct stat st; int fd; void *map; fd = open(filename, O_RDONLY); if (fd < 0) { fprintf(stderr, "fixdep: error opening config file: "); perror(filename); exit(2); } if (fstat(fd, &st) < 0) { fprintf(stderr, "fixdep: error fstat'ing config file: "); perror(filename); exit(2); } if (st.st_size == 0) { close(fd); return; } map = mmap(NULL, st.st_size, PROT_READ, MAP_PRIVATE, fd, 0); if ((long) map == -1) { perror("fixdep: mmap"); close(fd); return; } parse_config_file(map, st.st_size); munmap(map, st.st_size); close(fd); } /* * Important: The below generated source_foo.o and deps_foo.o variable * assignments are parsed not only by make, but also by the rather simple * parser in scripts/mod/sumversion.c. */ static void parse_dep_file(void *map, size_t len) { char *m = map; char *end = m + len; char *p; char s[PATH_MAX]; int is_target; int saw_any_target = 0; int is_first_dep = 0; while (m < end) { /* Skip any "white space" */ while (m < end && (*m == ' ' || *m == '\\' || *m == '\n')) m++; /* Find next "white space" */ p = m; while (p < end && *p != ' ' && *p != '\\' && *p != '\n') p++; /* Is the token we found a target name? */ is_target = (*(p-1) == ':'); /* Don't write any target names into the dependency file */ if (is_target) { /* The /next/ file is the first dependency */ is_first_dep = 1; } else { /* Save this token/filename */ memcpy(s, m, p-m); s[p - m] = 0; /* Ignore certain dependencies */ if (strrcmp(s, "include/generated/autoconf.h") && strrcmp(s, "arch/um/include/uml-config.h") && strrcmp(s, "include/linux/kconfig.h") && strrcmp(s, ".ver")) { /* * Do not list the source file as dependency, * so that kbuild is not confused if a .c file * is rewritten into .S or vice versa. Storing * it in source_* is needed for modpost to * compute srcversions. */ if (is_first_dep) { /* * If processing the concatenation of * multiple dependency files, only * process the first target name, which * will be the original source name, * and ignore any other target names, * which will be intermediate temporary * files. */ if (!saw_any_target) { saw_any_target = 1; printf("source_%s := %s\n\n", target, s); printf("deps_%s := \\\n", target); } is_first_dep = 0; } else printf(" %s \\\n", s); do_config_file(s); } } /* * Start searching for next token immediately after the first * "whitespace" character that follows this token. */ m = p + 1; } if (!saw_any_target) { fprintf(stderr, "fixdep: parse error; no targets found\n"); exit(1); } printf("\n%s: $(deps_%s)\n\n", target, target); printf("$(deps_%s):\n", target); } static void print_deps(void) { struct stat st; int fd; void *map; fd = open(depfile, O_RDONLY); if (fd < 0) { fprintf(stderr, "fixdep: error opening depfile: "); perror(depfile); exit(2); } if (fstat(fd, &st) < 0) { fprintf(stderr, "fixdep: error fstat'ing depfile: "); perror(depfile); exit(2); } if (st.st_size == 0) { fprintf(stderr,"fixdep: %s is empty\n",depfile); close(fd); return; } map = mmap(NULL, st.st_size, PROT_READ, MAP_PRIVATE, fd, 0); if ((long) map == -1) { perror("fixdep: mmap"); close(fd); return; } parse_dep_file(map, st.st_size); munmap(map, st.st_size); close(fd); } static void traps(void) { static char test[] __attribute__((aligned(sizeof(int)))) = "CONF"; int *p = (int *)test; if (*p != INT_CONF) { fprintf(stderr, "fixdep: sizeof(int) != 4 or wrong endianness? %#x\n", *p); exit(2); } } int main(int argc, char *argv[]) { traps(); if (argc != 4) usage(); depfile = argv[1]; target = argv[2]; cmdline = argv[3]; /* hack for U-Boot */ if (!strncmp(target, "spl/", 4) || !strncmp(target, "tpl/", 4)) is_spl_build = 1; print_cmdline(); print_deps(); return 0; }
the_stack_data/171522.c
/* * @build: gcc -o bin/md5 unittest/md5_test.c utils/md5.c -I. -Iutils * */ #include <stdio.h> #include <stdlib.h> #include <string.h> #include <assert.h> #include "md5.h" int main(int argc, char* argv[]) { if (argc < 2) { printf("Usage: md5 file\n"); printf(" md5 -s string\n"); return -10; } unsigned char ch = '1'; char md5[33]; hv_md5_hex(&ch, 1, md5, sizeof(md5)); assert(strcmp(md5, "c4ca4238a0b923820dcc509a6f75849b") == 0); if (argc == 2) { const char* filepath = argv[1]; FILE* fp = fopen(filepath, "r"); if (fp == NULL) { printf("Open file '%s' failed!\n", filepath); return -20; } fseek(fp, 0, SEEK_END); long filesize = ftell(fp); // printf("filesize=%ld\n", filesize); fseek(fp, 0, SEEK_SET); unsigned char* buf = (unsigned char*)malloc(filesize); size_t nread = fread(buf, 1, filesize, fp); assert(nread == filesize); hv_md5_hex(buf, filesize, md5, sizeof(md5)); } else if (argc == 3) { const char* flags = argv[1]; if (flags[0] == '-' && flags[1] == 's') { hv_md5_hex((unsigned char*)argv[2], strlen(argv[2]), md5, sizeof(md5)); } else { printf("Unrecognized flags '%s'\n", flags); return -40; } } puts(md5); return 0; }
the_stack_data/79093.c
#include <regex.h> /* * Various messages and responses */ static const char CLIENT_ERR[] = "-CLIENT_ERR Client Error: "; static const int CLIENT_ERR_LEN = sizeof(CLIENT_ERR) - 1; static const char CMD_NOT_SUP[] = "Command not supported"; static const int CMD_NOT_SUP_LEN = sizeof(CMD_NOT_SUP) - 1; static const char BAD_ARGS[] = "Bad arguments"; static const int BAD_ARGS_LEN= sizeof(BAD_ARGS) - 1; static const char UNEXPECTED_ARGS[] = "Unexpected arguments"; static const int UNEXPECTED_ARGS_LEN = sizeof(UNEXPECTED_ARGS) - 1; static const char SET_KEY_NEEDED[] = "Must provide set name and key"; static const int SET_KEY_NEEDED_LEN = sizeof(SET_KEY_NEEDED) - 1; static const char SET_NEEDED[] = "Must provide set name"; static const int SET_NEEDED_LEN = sizeof(SET_NEEDED) - 1; static const char WINDOW_NEEDED[] = "Must provide a window size"; static const int WINDOW_NEEDED_LEN = sizeof(WINDOW_NEEDED) - 1; static const char BAD_SET_NAME[] = "Bad set name"; static const int BAD_SET_NAME_LEN = sizeof(BAD_SET_NAME) - 1; static const char INTERNAL_ERR[] = "-INTERNAL_ERROR\r\n"; static const int INTERNAL_ERR_LEN = sizeof(INTERNAL_ERR) - 1; static const char SET_NOT_EXIST[] = "-SET_NOT_EXIST\r\n"; static const int SET_NOT_EXIST_LEN = sizeof(SET_NOT_EXIST) - 1; static const char SET_IS_DENSE[] = "-SET_IS_DENSE\r\n"; static const int SET_IS_DENSE_LEN = sizeof(SET_IS_DENSE) - 1; static const char SET_NOT_PROXIED[] = "-NOT_PROXIED Close the set first\r\n"; static const int SET_NOT_PROXIED_LEN = sizeof(SET_NOT_PROXIED) - 1; static const char DELETE_IN_PROGRESS[] = "+DELETE_IN_PROGRESS\r\n"; static const int DELETE_IN_PROGRESS_LEN = sizeof(DELETE_IN_PROGRESS) - 1; static const char DONE_RESP[] = "+OK\r\n"; static const int DONE_RESP_LEN = sizeof(DONE_RESP) - 1; static const char EXISTS_RESP[] = "-EXISTS\r\n"; static const int EXISTS_RESP_LEN = sizeof(EXISTS_RESP) - 1; static const char NEW_LINE[] = "\r\n"; static const int NEW_LINE_LEN = sizeof(NEW_LINE) - 1; static const char START_RESP[] = "START\r\n"; static const int START_RESP_LEN = sizeof(START_RESP) - 1; static const char END_RESP[] = "END\r\n"; static const int END_RESP_LEN = sizeof(END_RESP) - 1; typedef enum { UNKNOWN = 0, // Unrecognized command SET_MULTI, // Set multiple space-seperated keys LIST, // List sets INFO, // Info about server STATS, // Human readable server stats ECHO, DETAIL, // Details about a set GET_HASHES, // Fetches all the hashes for the set // DEPRECATED: SIZE, // Size of set SET, DROP, // Drop a set CLOSE, // Close a set CLEAR, // Clears a set from the internals FLUSH, // Force flush a set } conn_cmd_type; /* Static regexes */ static regex_t VALID_SET_NAMES_RE; static const char *VALID_SET_NAMES_PATTERN = "^[^ \t\n\r]{1,200}$";
the_stack_data/10959.c
/* Generated by CIL v. 1.7.0 */ /* print_CIL_Input is false */ struct _IO_FILE; struct timeval; extern float strtof(char const *str , char const *endptr ) ; extern void signal(int sig , void *func ) ; typedef struct _IO_FILE FILE; extern int atoi(char const *s ) ; extern double strtod(char const *str , char const *endptr ) ; extern int fclose(void *stream ) ; extern void *fopen(char const *filename , char const *mode ) ; extern void abort() ; extern void exit(int status ) ; extern int raise(int sig ) ; extern int fprintf(struct _IO_FILE *stream , char const *format , ...) ; extern int strcmp(char const *a , char const *b ) ; extern int rand() ; extern unsigned long strtoul(char const *str , char const *endptr , int base ) ; void RandomFunc(unsigned int input[1] , unsigned int output[1] ) ; extern int strncmp(char const *s1 , char const *s2 , unsigned long maxlen ) ; extern int gettimeofday(struct timeval *tv , void *tz , ...) ; extern int printf(char const *format , ...) ; int main(int argc , char *argv[] ) ; void megaInit(void) ; extern unsigned long strlen(char const *s ) ; extern long strtol(char const *str , char const *endptr , int base ) ; extern unsigned long strnlen(char const *s , unsigned long maxlen ) ; extern void *memcpy(void *s1 , void const *s2 , unsigned long size ) ; struct timeval { long tv_sec ; long tv_usec ; }; extern void *malloc(unsigned long size ) ; extern int scanf(char const *format , ...) ; void RandomFunc(unsigned int input[1] , unsigned int output[1] ) { unsigned int state[1] ; unsigned int local1 ; unsigned short copy12 ; unsigned short copy13 ; char copy14 ; { state[0UL] = input[0UL] + 4284877637U; local1 = 0UL; while (local1 < 1UL) { if (state[0UL] > local1) { state[local1] = state[0UL] * state[0UL]; } else { state[local1] += state[0UL]; copy12 = *((unsigned short *)(& state[local1]) + 1); *((unsigned short *)(& state[local1]) + 1) = *((unsigned short *)(& state[local1]) + 0); *((unsigned short *)(& state[local1]) + 0) = copy12; } if (state[0UL] > local1) { copy13 = *((unsigned short *)(& state[local1]) + 1); *((unsigned short *)(& state[local1]) + 1) = *((unsigned short *)(& state[local1]) + 0); *((unsigned short *)(& state[local1]) + 0) = copy13; copy13 = *((unsigned short *)(& state[local1]) + 0); *((unsigned short *)(& state[local1]) + 0) = *((unsigned short *)(& state[local1]) + 1); *((unsigned short *)(& state[local1]) + 1) = copy13; state[0UL] += state[0UL]; } else { state[local1] += state[local1]; copy14 = *((char *)(& state[local1]) + 1); *((char *)(& state[local1]) + 1) = *((char *)(& state[local1]) + 3); *((char *)(& state[local1]) + 3) = copy14; } local1 += 2UL; } output[0UL] = state[0UL] + 398645492UL; } } int main(int argc , char *argv[] ) { unsigned int input[1] ; unsigned int output[1] ; int randomFuns_i5 ; unsigned int randomFuns_value6 ; int randomFuns_main_i7 ; { megaInit(); if (argc != 2) { printf("Call this program with %i arguments\n", 1); exit(-1); } else { } randomFuns_i5 = 0; while (randomFuns_i5 < 1) { randomFuns_value6 = (unsigned int )strtoul(argv[randomFuns_i5 + 1], 0, 10); input[randomFuns_i5] = randomFuns_value6; randomFuns_i5 ++; } RandomFunc(input, output); if (output[0] == 4242424242U) { printf("You win!\n"); } else { } randomFuns_main_i7 = 0; while (randomFuns_main_i7 < 1) { printf("%u\n", output[randomFuns_main_i7]); randomFuns_main_i7 ++; } } } void megaInit(void) { { } }
the_stack_data/154828047.c
// Karatsuba method for multiplication of two n-digit numbers. // [ DIVIDE & CONQUER] #include <stdio.h> #include <math.h> // Calculate digits of a given num. int digits(int n) { int i = 0; while (n != 0){ n = n/10; i++; } return i; } int kat_mult(int x, int y) { int n, a, b, c, d, ac, bd, mult; //If num is of single digit we directly multiply. if ((digits(x) == 1) || (digits(y) == 1)) return x*y; n = digits(x)/2; // Division of the number from middle // x -> a & b, y -> c & d b = x%(int)pow(10,(n)); a = x/(int)pow(10,(n)); d = y%(int)pow(10,(n)); c = y/(int)pow(10,(n)); // 3 recursive calls ac = kat_mult(a, c); bd = kat_mult(b, d); mult = kat_mult((a+b), (c+d)); // (a+b)(c+d) = ac+bc+ad+bd, To find ad+bc we use Gauss Method return ((int)pow(10,n*2)*ac) + ((int)pow(10,(n))*(mult-ac-bd)) + bd; } void main() { int a, b; scanf("%d%d", &a, &b); printf("%d\n", kat_mult(a, b)); printf("%d\n", a*b); }
the_stack_data/243893169.c
#include "stdio.h" /* * @ar_size array size * @ar array pointer */ void quicksort(int ar_size, int * ar) { int piv; piv = ar[ar_size-1]; // chose last element as pivot int i, temp, c = 0; int prevmax, prevind = -1; // stores last number >= pivot for (i=0; i<ar_size-1; i++){ if (ar[i] < piv){ if ((prevind > -1) && (ar[i] < prevmax)){ // swap current and previous large element // current element is less than prevmax so move it to the left side // and prevmax to the right side temp = ar[i]; ar[i] = prevmax; ar[prevind] = temp; // prevind now has a less than pivot element, no need for it now // therefore increment it for the next number prevind = prevind + 1; prevmax = ar[prevind]; } c++; // pivot's final location (depends on count of items smaller than pivot) } else if (prevind < 0) { // init first larger than pivot element // it may be swapped out later (above block) prevmax = ar[i]; prevind = i; } } if (prevind > -1){ // if some swaps were done ar[ar_size-1] = ar[c]; ar[c] = piv; // swap pivot to its correct position } if (ar_size > 2){ if (c != 0) quicksort(c, &ar[0]); // recursively quicksort left partition if (ar_size-c-1 != 0) quicksort(ar_size-c-1, &ar[c+1]); // right partition } } int main() { int ar_size = 4, i; int a[4] = {2, 3, 0, 4}; quicksort(ar_size, a); for (i=0; i<ar_size; i++){ printf("%d\n", a[i]); } return 0; }
the_stack_data/62638326.c
/* print_stream.c -- 打印字符流 */ #include <stdio.h> int main(void) { char ch; int count = 0; while ((ch = getchar()) != EOF) { if (ch >= 32) { // 打印字符 printf("%c %d; ", ch, ch); } else { // 非打印字符 if (ch == '\n') printf("\\n %d; ", ch); else if (ch == '\t') printf("\\t %d; ", ch); else printf("^%c %d; ", ch + 64, ch); } } printf("count is %d\n", count); printf("\n---------------------------------------------\n"); return 0; }
the_stack_data/72011786.c
#include <stdio.h> #include <stdlib.h> struct node { int data; struct node *next; }; typedef struct node *node; struct queue { node head; node tail; }; node Create_Node (int k) { node x; x = (node) malloc (sizeof (struct node)); x -> data = k; x -> next = NULL; return x; } void Enqueue (struct queue *Q, node x) { if (Q -> head == NULL) { Q -> head = Q -> tail = x; } else { Q -> tail -> next = x; Q -> tail = x; } } void Dequeue (struct queue *Q) { if (Q -> head == NULL) printf ("-1\n"); else { node x = Q -> head; Q -> head = Q -> head -> next; printf ("%d\n", x -> data); free(x); } } void Queue_Empty (struct queue *Q) { if (Q -> head == NULL) printf ("-1\n"); else printf ("1\n"); } void main () { struct queue *Q; Q = (struct queue *) malloc (sizeof (struct queue)); Q -> head = Q -> tail = NULL; char ch; int k; node x; while (1) { scanf ("%c", &ch); switch (ch) { case 'i': scanf ("%d", &k); x = Create_Node (k); Enqueue (Q, x); break; case 'd': Dequeue (Q); break; case 'e': Queue_Empty (Q); break; case 't': free (Q); exit(0); } } }
the_stack_data/6387559.c
#include <stdio.h> int main(int argc, char **argv) { printf("hello\x20world\n"); return 0; }
the_stack_data/87638729.c
#include <stdlib.h> #include <math.h> #if defined(_WIN32) || defined(__WIN32__) #define EXPORTIT __declspec(dllexport) #else #define EXPORTIT #endif EXPORTIT double integral_ff_c0c1(double c0, double c1, int i, int j, double x1t, double x1r, double x2t, double x2r, double y1t, double y1r, double y2t, double y2r) { switch(i) { case 0: switch(j) { case 0: return 0.00714285714285714*x1t*y1t*(35.0*pow(c0, 3) - 42.0*pow(c0, 2)*c1 + 35.0*c0*(pow(c1, 2) - 3.0) - 8.0*pow(c1, 3) + 42.0*c1 + 70.0); case 1: return 0.00119047619047619*x1t*y1r*(105.0*pow(c0, 3) - 21.0*pow(c0, 2)*(6.0*c1 + 5.0) + 21.0*c0*(5.0*pow(c1, 2) + 4.0*c1 - 5.0) - 24.0*pow(c1, 3) - 35.0*pow(c1, 2) + 42.0*c1 + 105.0); case 2: return 0.00714285714285714*x1t*y2t*(-35.0*pow(c0, 3) + 42.0*pow(c0, 2)*c1 - 35.0*c0*(pow(c1, 2) - 3.0) + 8.0*pow(c1, 3) - 42.0*c1 + 70.0); case 3: return 0.00119047619047619*x1t*y2r*(105.0*pow(c0, 3) - 21.0*pow(c0, 2)*(6.0*c1 - 5.0) + 21.0*c0*(5.0*pow(c1, 2) - 4.0*c1 - 5.0) - 24.0*pow(c1, 3) + 35.0*pow(c1, 2) + 42.0*c1 - 105.0); case 4: return 0.00119047619047619*x1t*(105.0*pow(c0, 4) - 168.0*pow(c0, 3)*c1 + 210.0*pow(c0, 2)*(pow(c1, 2) - 1.0) - 24.0*c0*c1*(4.0*pow(c1, 2) - 7.0) + 21.0*pow(c1, 4) - 70.0*pow(c1, 2) + 105.0); case 5: return 0.000396825396825397*x1t*(315.0*pow(c0, 5) - 630.0*pow(c0, 4)*c1 + 210.0*pow(c0, 3)*(5.0*pow(c1, 2) - 3.0) + pow(c0, 2)*(-720.0*pow(c1, 3) + 756.0*c1) + 315.0*c0*pow(pow(c1, 2) - 1.0, 2) - 2.0*c1*(25.0*pow(c1, 4) - 72.0*pow(c1, 2) + 63.0)); case 6: return 0.00520833333333333*x1t*(28.0*pow(c0, 6) - 67.2*pow(c0, 5)*c1 + 20.0*pow(c0, 4)*(7.0*pow(c1, 2) - 3.0) - 32.0*pow(c0, 3)*c1*(4.0*pow(c1, 2) - 3.0) + 12.0*pow(c0, 2)*(7.0*pow(c1, 4) - 10.0*pow(c1, 2) + 3.0) + c0*(-26.6666666666667*pow(c1, 5) + 54.8571428571429*pow(c1, 3) - 28.8*c1) + 4.0*pow(pow(c1, 2) - 1.0, 3)); case 7: return 0.1875*pow(c0, 7)*x1t - 0.525*pow(c0, 6)*c1*x1t + 0.4375*pow(c0, 5)*x1t*(3.0*pow(c1, 2) - 1.0) - 0.125*pow(c0, 4)*c1*x1t*(12.0*pow(c1, 2) - 7.0) + 0.0208333333333333*pow(c0, 3)*x1t*(63.0*pow(c1, 4) - 70.0*pow(c1, 2) + 15.0) - 0.125*pow(c0, 2)*c1*x1t*(5.0*pow(c1, 4) - 8.0*pow(c1, 2) + 3.0) + 0.0625*c0*x1t*pow(pow(c1, 2) - 1.0, 2)*(3.0*pow(c1, 2) - 1.0) - 0.0227272727272727*pow(c1, 7)*x1t + 0.0694444444444444*pow(c1, 5)*x1t - 0.0714285714285714*pow(c1, 3)*x1t + 0.025*c1*x1t; case 8: return 0.000520833333333333*x1t*(495.0*pow(c0, 8) - 1584.0*pow(c0, 7)*c1 + 420.0*pow(c0, 6)*(11.0*pow(c1, 2) - 3.0) - 144.0*pow(c0, 5)*c1*(44.0*pow(c1, 2) - 21.0) + 210.0*pow(c0, 4)*(33.0*pow(c1, 4) - 30.0*pow(c1, 2) + 5.0) - 80.0*pow(c0, 3)*c1*(55.0*pow(c1, 4) - 72.0*pow(c1, 2) + 21.0) + 60.0*pow(c0, 2)*(33.0*pow(c1, 6) - 63.0*pow(c1, 4) + 35.0*pow(c1, 2) - 5.0) - 240.0*c0*c1*pow(pow(c1, 2) - 1.0, 2)*(2.0*pow(c1, 2) - 1.0) + 5.0*pow(pow(c1, 2) - 1.0, 3)*(11.0*pow(c1, 2) - 3.0)); case 9: return 0.000520833333333333*x1t*(715.0*pow(c0, 9) - 2574.0*pow(c0, 8)*c1 + 660.0*pow(c0, 7)*(13.0*pow(c1, 2) - 3.0) - 264.0*pow(c0, 6)*c1*(52.0*pow(c1, 2) - 21.0) + 126.0*pow(c0, 5)*(143.0*pow(c1, 4) - 110.0*pow(c1, 2) + 15.0) - 20.0*pow(c0, 4)*c1*(715.0*pow(c1, 4) - 792.0*pow(c1, 2) + 189.0) + 20.0*pow(c0, 3)*(429.0*pow(c1, 6) - 693.0*pow(c1, 4) + 315.0*pow(c1, 2) - 35.0) - 120.0*pow(c0, 2)*c1*(26.0*pow(c1, 6) - 55.0*pow(c1, 4) + 36.0*pow(c1, 2) - 7.0) + 5.0*c0*pow(pow(c1, 2) - 1.0, 2)*(143.0*pow(c1, 4) - 110.0*pow(c1, 2) + 15.0) - 10.0*c1*pow(pow(c1, 2) - 1.0, 3)*(7.0*pow(c1, 2) - 3.0)); case 10: return 0.0009765625*x1t*(572.0*pow(c0, 10) - 2288.0*pow(c0, 9)*c1 + 1716.0*pow(c0, 8)*(5.0*pow(c1, 2) - 1.0) - 784.457142857143*pow(c0, 7)*c1*(20.0*pow(c1, 2) - 7.0) + 616.0*pow(c0, 6)*(39.0*pow(c1, 4) - 26.0*pow(c1, 2) + 3.0) - 70.4*pow(c0, 5)*c1*(325.0*pow(c1, 4) - 312.0*pow(c1, 2) + 63.0) + 24.0*pow(c0, 4)*(715.0*pow(c1, 6) - 1001.0*pow(c1, 4) + 385.0*pow(c1, 2) - 35.0) - 21.3333333333333*pow(c0, 3)*c1*(390.0*pow(c1, 6) - 715.0*pow(c1, 4) + 396.0*pow(c1, 2) - 63.0) + 4.0*pow(c0, 2)*(715.0*pow(c1, 8) - 1716.0*pow(c1, 6) + 1386.0*pow(c1, 4) - 420.0*pow(c1, 2) + 35.0) - 16.0*c0*c1*pow(pow(c1, 2) - 1.0, 2)*(35.0*pow(c1, 4) - 34.0*pow(c1, 2) + 7.0) + 1.33333333333333*pow(pow(c1, 2) - 1.0, 3)*(39.0*pow(c1, 4) - 26.0*pow(c1, 2) + 3.0)); case 11: return 3.7202380952381e-5*x1t*(23205.0*pow(c0, 11) - 102102.0*pow(c0, 10)*c1 + 25025.0*pow(c0, 9)*(17.0*pow(c1, 2) - 3.0) - 12870.0*pow(c0, 8)*c1*(68.0*pow(c1, 2) - 21.0) + 90090.0*pow(c0, 7)*(17.0*pow(c1, 4) - 10.0*pow(c1, 2) + 1.0) - 4004.0*pow(c0, 6)*c1*(425.0*pow(c1, 4) - 360.0*pow(c1, 2) + 63.0) + 6930.0*pow(c0, 5)*(221.0*pow(c1, 6) - 273.0*pow(c1, 4) + 91.0*pow(c1, 2) - 7.0) - 420.0*pow(c0, 4)*c1*(2210.0*pow(c1, 6) - 3575.0*pow(c1, 4) + 1716.0*pow(c1, 2) - 231.0) + 35.0*pow(c0, 3)*(11.0*pow(c1, 2)*(13.0*pow(c1, 2)*(85.0*pow(c1, 4) - 180.0*pow(c1, 2) + 126.0) - 420.0) + 315.0) - 210.0*pow(c0, 2)*c1*(c1 - 1.0)*(c1 + 1.0)*(595.0*pow(c1, 6) - 965.0*pow(c1, 4) + 465.0*pow(c1, 2) - 63.0) + 105.0*c0*pow(pow(c1, 2) - 1.0, 2)*(221.0*pow(c1, 6) - 273.0*pow(c1, 4) + 91.0*pow(c1, 2) - 7.0) - 14.0*c1*pow(pow(c1, 2) - 1.0, 3)*(136.0*pow(c1, 4) - 117.0*pow(c1, 2) + 21.0)); case 12: return 8.13802083333333e-5*x1t*(16796.0*pow(c0, 12) - 80620.8*pow(c0, 11)*c1 + 19448.0*pow(c0, 10)*(19.0*pow(c1, 2) - 3.0) - 11113.1428571429*pow(c0, 9)*c1*(76.0*pow(c1, 2) - 21.0) + 5148.0*pow(c0, 8)*(323.0*pow(c1, 4) - 170.0*pow(c1, 2) + 15.0) - 1307.42857142857*pow(c0, 7)*c1*(1615.0*pow(c1, 4) - 1224.0*pow(c1, 2) + 189.0) + 6864.0*pow(c0, 6)*(323.0*pow(c1, 6) - 357.0*pow(c1, 4) + 105.0*pow(c1, 2) - 7.0) - 499.2*pow(c0, 5)*c1*(3230.0*pow(c1, 6) - 4675.0*pow(c1, 4) + 1980.0*pow(c1, 2) - 231.0) + 220.0*pow(c0, 4)*(4199.0*pow(c1, 8) - 7956.0*pow(c1, 6) + 4914.0*pow(c1, 4) - 1092.0*pow(c1, 2) + 63.0) - 32.0*pow(c0, 3)*c1*(11305.0*pow(c1, 8) - 26520.0*pow(c1, 6) + 21450.0*pow(c1, 4) - 6864.0*pow(c1, 2) + 693.0) + 24.0*pow(c0, 2)*(4199.0*pow(c1, 10) - 12155.0*pow(c1, 8) + 12870.0*pow(c1, 6) - 6006.0*pow(c1, 4) + 1155.0*pow(c1, 2) - 63.0) - 6.4*c0*c1*pow(pow(c1, 2) - 1.0, 2)*(2584.0*pow(c1, 6) - 3757.0*pow(c1, 4) + 1602.0*pow(c1, 2) - 189.0) + 4.0*pow(pow(c1, 2) - 1.0, 3)*(323.0*pow(c1, 6) - 357.0*pow(c1, 4) + 105.0*pow(c1, 2) - 7.0)); case 13: return 9.30059523809524e-6*x1t*(237405.0*pow(c0, 13) - 1234506.0*pow(c0, 12)*c1 + 881790.0*pow(c0, 11)*(7.0*pow(c1, 2) - 1.0) - 3879876.0*pow(c0, 10)*c1*(4.0*pow(c1, 2) - 1.0) + 85085.0*pow(c0, 9)*(399.0*pow(c1, 4) - 190.0*pow(c1, 2) + 15.0) - 72930.0*pow(c0, 8)*c1*(665.0*pow(c1, 4) - 456.0*pow(c1, 2) + 63.0) + 180180.0*pow(c0, 7)*(323.0*pow(c1, 6) - 323.0*pow(c1, 4) + 85.0*pow(c1, 2) - 5.0) - 3640.0*pow(c0, 6)*c1*(17.0*pow(c1, 2)*(798.0*pow(c1, 4) - 1045.0*pow(c1, 2) + 396.0) - 693.0) + 15015.0*pow(c0, 5)*(2261.0*pow(c1, 8) - 3876.0*pow(c1, 6) + 2142.0*pow(c1, 4) - 420.0*pow(c1, 2) + 21.0) - 210.0*pow(c0, 4)*c1*(5.0*pow(c1, 2)*(17.0*pow(c1, 2)*(931.0*pow(c1, 4) - 1976.0*pow(c1, 2) + 1430.0) - 6864.0) + 3003.0) + 70.0*pow(c0, 3)*(13.0*pow(c1, 2)*(6783.0*pow(c1, 8) - 17765.0*pow(c1, 6) + 16830.0*pow(c1, 4) - 6930.0*pow(c1, 2) + 1155.0) - 693.0) - 84.0*pow(c0, 2)*c1*(c1 - 1.0)*(c1 + 1.0)*(18088.0*pow(c1, 8) - 38437.0*pow(c1, 6) + 27863.0*pow(c1, 4) - 7887.0*pow(c1, 2) + 693.0) + 105.0*c0*pow(pow(c1, 2) - 1.0, 2)*(2261.0*pow(c1, 8) - 3876.0*pow(c1, 6) + 2142.0*pow(c1, 4) - 420.0*pow(c1, 2) + 21.0) - 14.0*c1*pow(pow(c1, 2) - 1.0, 3)*(7.0*pow(c1, 2) - 3.0)*(19.0*pow(c1, 2)*(9.0*pow(c1, 2) - 8.0) + 21.0)); case 14: return 0.0001220703125*x1t*(29716.0*pow(c0, 14) - 166409.6*pow(c0, 13)*c1 + 39190.6666666667*pow(c0, 12)*(23.0*pow(c1, 2) - 3.0) - 26873.6*pow(c0, 11)*c1*(92.0*pow(c1, 2) - 21.0) + 36951.2*pow(c0, 10)*(161.0*pow(c1, 4) - 70.0*pow(c1, 2) + 5.0) - 82113.7777777778*pow(c0, 9)*c1*(115.0*pow(c1, 4) - 72.0*pow(c1, 2) + 9.0) + 29172.0*pow(c0, 8)*(437.0*pow(c1, 6) - 399.0*pow(c1, 4) + 95.0*pow(c1, 2) - 5.0) - 2020.57142857143*pow(c0, 7)*c1*(6118.0*pow(c1, 6) - 7315.0*pow(c1, 4) + 2508.0*pow(c1, 2) - 231.0) + 1334.66666666667*pow(c0, 6)*(7429.0*pow(c1, 8) - 11628.0*pow(c1, 6) + 5814.0*pow(c1, 4) - 1020.0*pow(c1, 2) + 45.0) - 16.0*pow(c0, 5)*c1*(364021.0*pow(c1, 8) - 705432.0*pow(c1, 6) + 461890.0*pow(c1, 4) - 116688.0*pow(c1, 2) + 9009.0) + 52.0*pow(c0, 4)*(52003.0*pow(c1, 10) - 124355.0*pow(c1, 8) + 106590.0*pow(c1, 6) - 39270.0*pow(c1, 4) + 5775.0*pow(c1, 2) - 231.0) - 2.13333333333333*pow(c0, 3)*c1*(416024.0*pow(c1, 10) - 1187025.0*pow(c1, 8) + 1259700.0*pow(c1, 6) - 607750.0*pow(c1, 4) + 128700.0*pow(c1, 2) - 9009.0) + 4.0*pow(c0, 2)*(52003.0*pow(c1, 12) - 176358.0*pow(c1, 10) + 230945.0*pow(c1, 8) - 145860.0*pow(c1, 6) + 45045.0*pow(c1, 4) - 6006.0*pow(c1, 2) + 231.0) - 3.2*c0*c1*pow(pow(c1, 2) - 1.0, 2)*(9177.0*pow(c1, 8) - 17822.0*pow(c1, 6) + 11704.0*pow(c1, 4) - 2970.0*pow(c1, 2) + 231.0) + 0.266666666666667*pow(pow(c1, 2) - 1.0, 3)*(7429.0*pow(c1, 8) - 11628.0*pow(c1, 6) + 5814.0*pow(c1, 4) - 1020.0*pow(c1, 2) + 45.0)); case 15: return 1.08506944444444e-5*x1t*(557175.0*pow(c0, 15) - 3343050.0*pow(c0, 14)*c1 + 780045.0*pow(c0, 13)*(25.0*pow(c1, 2) - 3.0) - 579462.0*pow(c0, 12)*c1*(100.0*pow(c1, 2) - 21.0) + 1322685.0*pow(c0, 11)*(115.0*pow(c1, 4) - 46.0*pow(c1, 2) + 3.0) - 92378.0*pow(c0, 10)*c1*(2875.0*pow(c1, 4) - 1656.0*pow(c1, 2) + 189.0) + 692835.0*pow(c0, 9)*(575.0*pow(c1, 6) - 483.0*pow(c1, 4) + 105.0*pow(c1, 2) - 5.0) - 377910.0*pow(c0, 8)*c1*(1150.0*pow(c1, 6) - 1265.0*pow(c1, 4) + 396.0*pow(c1, 2) - 33.0) + 36465.0*pow(c0, 7)*(10925.0*pow(c1, 8) - 15732.0*pow(c1, 6) + 7182.0*pow(c1, 4) - 1140.0*pow(c1, 2) + 45.0) - 510.0*pow(c0, 6)*c1*(535325.0*pow(c1, 8) - 954408.0*pow(c1, 6) + 570570.0*pow(c1, 4) - 130416.0*pow(c1, 2) + 9009.0) + 4095.0*pow(c0, 5)*(37145.0*pow(c1, 10) - 81719.0*pow(c1, 8) + 63954.0*pow(c1, 6) - 21318.0*pow(c1, 4) + 2805.0*pow(c1, 2) - 99.0) - 30.0*pow(c0, 4)*c1*(2080120.0*pow(c1, 10) - 5460315.0*pow(c1, 8) + 5290740.0*pow(c1, 6) - 2309450.0*pow(c1, 4) + 437580.0*pow(c1, 2) - 27027.0) + 15.0*pow(c0, 3)*(1300075.0*pow(c1, 12) - 4056234.0*pow(c1, 10) + 4849845.0*pow(c1, 8) - 2771340.0*pow(c1, 6) + 765765.0*pow(c1, 4) - 90090.0*pow(c1, 2) + 3003.0) - 18.0*pow(c0, 2)*c1*(229425.0*pow(c1, 12) - 832048.0*pow(c1, 10) + 1187025.0*pow(c1, 8) - 839800.0*pow(c1, 6) + 303875.0*pow(c1, 4) - 51480.0*pow(c1, 2) + 3003.0) + 15.0*c0*pow(pow(c1, 2) - 1.0, 2)*(37145.0*pow(c1, 10) - 81719.0*pow(c1, 8) + 63954.0*pow(c1, 6) - 21318.0*pow(c1, 4) + 2805.0*pow(c1, 2) - 99.0) - 6.0*c1*pow(pow(c1, 2) - 1.0, 3)*(5750.0*pow(c1, 8) - 10281.0*pow(c1, 6) + 6171.0*pow(c1, 4) - 1419.0*pow(c1, 2) + 99.0)); case 16: return 6.78168402777778e-7*x1t*(15043725.0*pow(c0, 16) - 96279840.0*pow(c0, 15)*c1 + 66861000.0*pow(c0, 14)*(9.0*pow(c1, 2) - 1.0) - 53488800.0*pow(c0, 13)*c1*(36.0*pow(c1, 2) - 7.0) + 40562340.0*pow(c0, 12)*(135.0*pow(c1, 4) - 50.0*pow(c1, 2) + 3.0) - 27814176.0*pow(c0, 11)*c1*(375.0*pow(c1, 4) - 200.0*pow(c1, 2) + 21.0) + 16628040.0*pow(c0, 10)*(1035.0*pow(c1, 6) - 805.0*pow(c1, 4) + 161.0*pow(c1, 2) - 7.0) - 671840.0*pow(c0, 9)*c1*(31050.0*pow(c1, 6) - 31625.0*pow(c1, 4) + 9108.0*pow(c1, 2) - 693.0) + 12471030.0*pow(c0, 8)*(1725.0*pow(c1, 8) - 2300.0*pow(c1, 6) + 966.0*pow(c1, 4) - 140.0*pow(c1, 2) + 5.0) - 465120.0*pow(c0, 7)*c1*(36225.0*pow(c1, 8) - 59800.0*pow(c1, 6) + 32890.0*pow(c1, 4) - 6864.0*pow(c1, 2) + 429.0) + 185640.0*pow(c0, 6)*(58995.0*pow(c1, 10) - 120175.0*pow(c1, 8) + 86526.0*pow(c1, 6) - 26334.0*pow(c1, 4) + 3135.0*pow(c1, 2) - 99.0) - 4896.0*pow(c0, 5)*c1*(1101240.0*pow(c1, 10) - 2676625.0*pow(c1, 8) + 2386020.0*pow(c1, 6) - 950950.0*pow(c1, 4) + 163020.0*pow(c1, 2) - 9009.0) + 6300.0*pow(c0, 4)*(334305.0*pow(c1, 12) - 965770.0*pow(c1, 10) + 1062347.0*pow(c1, 8) - 554268.0*pow(c1, 6) + 138567.0*pow(c1, 4) - 14586.0*pow(c1, 2) + 429.0) - 480.0*pow(c0, 3)*c1*(1238895.0*pow(c1, 12) - 4160240.0*pow(c1, 10) + 5460315.0*pow(c1, 8) - 3527160.0*pow(c1, 6) + 1154725.0*pow(c1, 4) - 175032.0*pow(c1, 2) + 9009.0) + 360.0*pow(c0, 2)*(334305.0*pow(c1, 14) - 1300075.0*pow(c1, 12) + 2028117.0*pow(c1, 10) - 1616615.0*pow(c1, 8) + 692835.0*pow(c1, 6) - 153153.0*pow(c1, 4) + 15015.0*pow(c1, 2) - 429.0) - 288.0*c0*c1*pow(pow(c1, 2) - 1.0, 2)*(51750.0*pow(c1, 10) - 125925.0*pow(c1, 8) + 112424.0*pow(c1, 6) - 44902.0*pow(c1, 4) + 7722.0*pow(c1, 2) - 429.0) + 15.0*pow(pow(c1, 2) - 1.0, 3)*(58995.0*pow(c1, 10) - 120175.0*pow(c1, 8) + 86526.0*pow(c1, 6) - 26334.0*pow(c1, 4) + 3135.0*pow(c1, 2) - 99.0)); case 17: return 7.62939453125e-6*x1t*(2281140.0*pow(c0, 17) - 15511752.0*pow(c0, 16)*c1 + 3565920.0*pow(c0, 15)*(29.0*pow(c1, 2) - 3.0) - 3056502.85714286*pow(c0, 14)*c1*(116.0*pow(c1, 2) - 21.0) + 4160240.0*pow(c0, 13)*(261.0*pow(c1, 4) - 90.0*pow(c1, 2) + 5.0) - 15452320.0*pow(c0, 12)*c1*(145.0*pow(c1, 4) - 72.0*pow(c1, 2) + 7.0) + 3090464.0*pow(c0, 11)*(1305.0*pow(c1, 6) - 945.0*pow(c1, 4) + 175.0*pow(c1, 2) - 7.0) - 1236185.6*pow(c0, 10)*c1*(4350.0*pow(c1, 6) - 4125.0*pow(c1, 4) + 1100.0*pow(c1, 2) - 77.0) + 615853.333333333*pow(c0, 9)*(10005.0*pow(c1, 8) - 12420.0*pow(c1, 6) + 4830.0*pow(c1, 4) - 644.0*pow(c1, 2) + 21.0) - 5168.0*pow(c0, 8)*c1*(1050525.0*pow(c1, 8) - 1614600.0*pow(c1, 6) + 822250.0*pow(c1, 4) - 157872.0*pow(c1, 2) + 9009.0) + 403104.0*pow(c0, 7)*(10005.0*pow(c1, 10) - 18975.0*pow(c1, 8) + 12650.0*pow(c1, 6) - 3542.0*pow(c1, 4) + 385.0*pow(c1, 2) - 11.0) - 9646.93333333333*pow(c0, 6)*c1*(240120.0*pow(c1, 10) - 543375.0*pow(c1, 8) + 448500.0*pow(c1, 6) - 164450.0*pow(c1, 4) + 25740.0*pow(c1, 2) - 1287.0) + 1904.0*pow(c0, 5)*(570285.0*pow(c1, 12) - 1533870.0*pow(c1, 10) + 1562275.0*pow(c1, 8) - 749892.0*pow(c1, 6) + 171171.0*pow(c1, 4) - 16302.0*pow(c1, 2) + 429.0) - 32.0*pow(c0, 4)*c1*(11975985.0*pow(c1, 12) - 37442160.0*pow(c1, 10) + 45502625.0*pow(c1, 8) - 27041560.0*pow(c1, 6) + 8083075.0*pow(c1, 4) - 1108536.0*pow(c1, 2) + 51051.0) + 10.6666666666667*pow(c0, 3)*(9694845.0*pow(c1, 14) - 35102025.0*pow(c1, 12) + 50702925.0*pow(c1, 10) - 37182145.0*pow(c1, 8) + 14549535.0*pow(c1, 6) - 2909907.0*pow(c1, 4) + 255255.0*pow(c1, 2) - 6435.0) - 64.0*pow(c0, 2)*c1*(300150.0*pow(c1, 14) - 1238895.0*pow(c1, 12) + 2080120.0*pow(c1, 10) - 1820105.0*pow(c1, 8) + 881790.0*pow(c1, 6) - 230945.0*pow(c1, 4) + 29172.0*pow(c1, 2) - 1287.0) + 4.0*c0*pow(pow(c1, 2) - 1.0, 2)*(570285.0*pow(c1, 12) - 1533870.0*pow(c1, 10) + 1562275.0*pow(c1, 8) - 749892.0*pow(c1, 6) + 171171.0*pow(c1, 4) - 16302.0*pow(c1, 2) + 429.0) - 0.0761904761904762*c1*pow(pow(c1, 2) - 1.0, 3)*(1650825.0*pow(c1, 10) - 3741525.0*pow(c1, 8) + 3094650.0*pow(c1, 6) - 1137994.0*pow(c1, 4) + 178893.0*pow(c1, 2) - 9009.0)); case 18: return 1.27156575520833e-6*x1t*(23571780.0*pow(c0, 18) - 169716816.0*pow(c0, 17)*c1 + 38779380.0*pow(c0, 16)*(31.0*pow(c1, 2) - 3.0) - 35455433.1428571*pow(c0, 15)*c1*(124.0*pow(c1, 2) - 21.0) + 16046640.0*pow(c0, 14)*(899.0*pow(c1, 4) - 290.0*pow(c1, 2) + 15.0) - 7131840.0*pow(c0, 13)*c1*(4495.0*pow(c1, 4) - 2088.0*pow(c1, 2) + 189.0) + 7726160.0*pow(c0, 12)*(8091.0*pow(c1, 6) - 5481.0*pow(c1, 4) + 945.0*pow(c1, 2) - 35.0) - 16857076.3636364*pow(c0, 11)*c1*(5394.0*pow(c1, 6) - 4785.0*pow(c1, 4) + 1188.0*pow(c1, 2) - 77.0) + 8498776.0*pow(c0, 10)*(13485.0*pow(c1, 8) - 15660.0*pow(c1, 6) + 5670.0*pow(c1, 4) - 700.0*pow(c1, 2) + 21.0) - 237728.0*pow(c0, 9)*c1*(471975.0*pow(c1, 8) - 678600.0*pow(c1, 6) + 321750.0*pow(c1, 4) - 57200.0*pow(c1, 2) + 3003.0) + 302328.0*pow(c0, 8)*(310155.0*pow(c1, 10) - 550275.0*pow(c1, 8) + 341550.0*pow(c1, 6) - 88550.0*pow(c1, 4) + 8855.0*pow(c1, 2) - 231.0) - 8268.8*pow(c0, 7)*c1*(7443720.0*pow(c1, 10) - 15757875.0*pow(c1, 8) + 12109500.0*pow(c1, 6) - 4111250.0*pow(c1, 4) + 592020.0*pow(c1, 2) - 27027.0) + 108528.0*pow(c0, 6)*(310155.0*pow(c1, 12) - 780390.0*pow(c1, 10) + 740025.0*pow(c1, 8) - 328900.0*pow(c1, 6) + 69069.0*pow(c1, 4) - 6006.0*pow(c1, 2) + 143.0) - 5107.2*pow(c0, 5)*c1*(2791395.0*pow(c1, 12) - 8164080.0*pow(c1, 10) + 9237375.0*pow(c1, 8) - 5083000.0*pow(c1, 6) + 1397825.0*pow(c1, 4) - 175032.0*pow(c1, 2) + 7293.0) + 272.0*pow(c0, 4)*(17678835.0*pow(c1, 14) - 59879925.0*pow(c1, 12) + 80528175.0*pow(c1, 10) - 54679625.0*pow(c1, 8) + 19684665.0*pow(c1, 6) - 3594591.0*pow(c1, 4) + 285285.0*pow(c1, 2) - 6435.0) - 128.0*pow(c0, 3)*c1*(9304650.0*pow(c1, 14) - 35927955.0*pow(c1, 12) + 56163240.0*pow(c1, 10) - 45502625.0*pow(c1, 8) + 20281170.0*pow(c1, 6) - 4849845.0*pow(c1, 4) + 554268.0*pow(c1, 2) - 21879.0) + 12.0*pow(c0, 2)*(17678835.0*pow(c1, 16) - 77558760.0*pow(c1, 14) + 140408100.0*pow(c1, 12) - 135207800.0*pow(c1, 10) + 74364290.0*pow(c1, 8) - 23279256.0*pow(c1, 6) + 3879876.0*pow(c1, 4) - 291720.0*pow(c1, 2) + 6435.0) - 2.28571428571429*c0*c1*pow(pow(c1, 2) - 1.0, 2)*(10235115.0*pow(c1, 12) - 29954970.0*pow(c1, 10) + 33922125.0*pow(c1, 8) - 18687500.0*pow(c1, 6) + 5147285.0*pow(c1, 4) - 646074.0*pow(c1, 2) + 27027.0) + 4.0*pow(pow(c1, 2) - 1.0, 3)*(310155.0*pow(c1, 12) - 780390.0*pow(c1, 10) + 740025.0*pow(c1, 8) - 328900.0*pow(c1, 6) + 69069.0*pow(c1, 4) - 6006.0*pow(c1, 2) + 143.0)); case 19: return 3.814697265625e-6*x1t*(13646820.0*pow(c0, 19) - 103715832.0*pow(c0, 18)*c1 + 70715340.0*pow(c0, 17)*(11.0*pow(c1, 2) - 1.0) - 68694901.7142857*pow(c0, 16)*c1*(44.0*pow(c1, 2) - 7.0) + 10341168.0*pow(c0, 15)*(1023.0*pow(c1, 4) - 310.0*pow(c1, 2) + 15.0) - 14773097.1428571*pow(c0, 14)*c1*(1705.0*pow(c1, 4) - 744.0*pow(c1, 2) + 63.0) + 5348880.0*pow(c0, 13)*(9889.0*pow(c1, 6) - 6293.0*pow(c1, 4) + 1015.0*pow(c1, 2) - 35.0) - 15452320.0*pow(c0, 12)*c1*(5394.0*pow(c1, 6) - 4495.0*pow(c1, 4) + 1044.0*pow(c1, 2) - 63.0) + 3863080.0*pow(c0, 11)*(29667.0*pow(c1, 8) - 32364.0*pow(c1, 6) + 10962.0*pow(c1, 4) - 1260.0*pow(c1, 2) + 35.0) - 594320.0*pow(c0, 10)*c1*(207669.0*pow(c1, 8) - 280488.0*pow(c1, 6) + 124410.0*pow(c1, 4) - 20592.0*pow(c1, 2) + 1001.0) + 2832925.33333333*pow(c0, 9)*(40455.0*pow(c1, 10) - 67425.0*pow(c1, 8) + 39150.0*pow(c1, 6) - 9450.0*pow(c1, 4) + 875.0*pow(c1, 2) - 21.0) - 71318.4*pow(c0, 8)*c1*(1186680.0*pow(c1, 10) - 2359875.0*pow(c1, 8) + 1696500.0*pow(c1, 6) - 536250.0*pow(c1, 4) + 71500.0*pow(c1, 2) - 3003.0) + 15504.0*pow(c0, 7)*(3411705.0*pow(c1, 12) - 8064030.0*pow(c1, 10) + 7153575.0*pow(c1, 8) - 2960100.0*pow(c1, 6) + 575575.0*pow(c1, 4) - 46046.0*pow(c1, 2) + 1001.0) - 283.733333333333*pow(c0, 6)*c1*(92116035.0*pow(c1, 12) - 253086480.0*pow(c1, 10) + 267883875.0*pow(c1, 8) - 137241000.0*pow(c1, 6) + 34945625.0*pow(c1, 4) - 4025736.0*pow(c1, 2) + 153153.0) + 3100.8*pow(c0, 5)*(3411705.0*pow(c1, 14) - 10855425.0*pow(c1, 12) + 13656825.0*pow(c1, 10) - 8633625.0*pow(c1, 8) + 2877875.0*pow(c1, 6) - 483483.0*pow(c1, 4) + 35035.0*pow(c1, 2) - 715.0) - 32.0*pow(c0, 4)*c1*(102351150.0*pow(c1, 14) - 371255535.0*pow(c1, 12) + 542911320.0*pow(c1, 10) - 409523625.0*pow(c1, 8) + 169009750.0*pow(c1, 6) - 37182145.0*pow(c1, 4) + 3879876.0*pow(c1, 2) - 138567.0) + 1.33333333333333*pow(c0, 3)*(583401555.0*pow(c1, 16) - 2404321560.0*pow(c1, 14) + 4071834900.0*pow(c1, 12) - 3650610600.0*pow(c1, 10) + 1859107250.0*pow(c1, 8) - 535422888.0*pow(c1, 6) + 81477396.0*pow(c1, 4) - 5542680.0*pow(c1, 2) + 109395.0) - 1.14285714285714*pow(c0, 2)*c1*(112586265.0*pow(c1, 16) - 521060400.0*pow(c1, 14) + 1005982740.0*pow(c1, 12) - 1048380480.0*pow(c1, 10) + 637036750.0*pow(c1, 8) - 227149104.0*pow(c1, 6) + 45265220.0*pow(c1, 4) - 4434144.0*pow(c1, 2) + 153153.0) + 4.0*c0*pow(pow(c1, 2) - 1.0, 2)*(3411705.0*pow(c1, 14) - 10855425.0*pow(c1, 12) + 13656825.0*pow(c1, 10) - 8633625.0*pow(c1, 8) + 2877875.0*pow(c1, 6) - 483483.0*pow(c1, 4) + 35035.0*pow(c1, 2) - 715.0) - 0.380952380952381*c1*pow(pow(c1, 2) - 1.0, 3)*(1780020.0*pow(c1, 12) - 4895055.0*pow(c1, 10) + 5187375.0*pow(c1, 8) - 2661750.0*pow(c1, 6) + 679250.0*pow(c1, 4) - 78507.0*pow(c1, 2) + 3003.0)); case 20: return 9.5367431640625e-7*x1t*(95527740.0*pow(c0, 20) - 764221920.0*pow(c0, 19)*c1 + 172859720.0*pow(c0, 18)*(35.0*pow(c1, 2) - 3.0) - 1244589984.0*pow(c0, 17)*c1*(20.0*pow(c1, 2) - 3.0) + 1202160780.0*pow(c0, 16)*(77.0*pow(c1, 4) - 22.0*pow(c1, 2) + 1.0) - 122124269.714286*pow(c0, 15)*c1*(1925.0*pow(c1, 4) - 792.0*pow(c1, 2) + 63.0) + 310235040.0*pow(c0, 14)*(1705.0*pow(c1, 6) - 1023.0*pow(c1, 4) + 155.0*pow(c1, 2) - 5.0) - 413646720.0*pow(c0, 13)*c1*(2170.0*pow(c1, 6) - 1705.0*pow(c1, 4) + 372.0*pow(c1, 2) - 21.0) + 3863080.0*pow(c0, 12)*(346115.0*pow(c1, 8) - 356004.0*pow(c1, 6) + 113274.0*pow(c1, 4) - 12180.0*pow(c1, 2) + 315.0) - 7131840.0*pow(c0, 11)*c1*(220255.0*pow(c1, 8) - 280488.0*pow(c1, 6) + 116870.0*pow(c1, 4) - 18096.0*pow(c1, 2) + 819.0) + 84987760.0*pow(c0, 10)*(18879.0*pow(c1, 10) - 29667.0*pow(c1, 8) + 16182.0*pow(c1, 6) - 3654.0*pow(c1, 4) + 315.0*pow(c1, 2) - 7.0) - 2377280.0*pow(c0, 9)*c1*(553784.0*pow(c1, 10) - 1038345.0*pow(c1, 8) + 701220.0*pow(c1, 6) - 207350.0*pow(c1, 4) + 25740.0*pow(c1, 2) - 1001.0) + 1961256.0*pow(c0, 8)*(471975.0*pow(c1, 12) - 1051830.0*pow(c1, 10) + 876525.0*pow(c1, 8) - 339300.0*pow(c1, 6) + 61425.0*pow(c1, 4) - 4550.0*pow(c1, 2) + 91.0) - 33561.6*pow(c0, 7)*c1*(15575175.0*pow(c1, 12) - 40347120.0*pow(c1, 10) + 40117875.0*pow(c1, 8) - 19227000.0*pow(c1, 6) + 4558125.0*pow(c1, 4) - 486200.0*pow(c1, 2) + 17017.0) + 72352.0*pow(c0, 6)*(3411705.0*pow(c1, 14) - 10235115.0*pow(c1, 12) + 12096045.0*pow(c1, 10) - 7153575.0*pow(c1, 8) + 2220075.0*pow(c1, 6) - 345345.0*pow(c1, 4) + 23023.0*pow(c1, 2) - 429.0) - 179.2*pow(c0, 5)*c1*(511755750.0*pow(c1, 14) - 1750204665.0*pow(c1, 12) + 2404321560.0*pow(c1, 10) - 1696597875.0*pow(c1, 8) + 651894750.0*pow(c1, 6) - 132793375.0*pow(c1, 4) + 12748164.0*pow(c1, 2) - 415701.0) + 228.0*pow(c0, 4)*(119409675.0*pow(c1, 16) - 463991880.0*pow(c1, 14) + 738168900.0*pow(c1, 12) - 619109400.0*pow(c1, 10) + 293543250.0*pow(c1, 8) - 78278200.0*pow(c1, 6) + 10958948.0*pow(c1, 4) - 680680.0*pow(c1, 2) + 12155.0) - 10.6666666666667*pow(c0, 3)*c1*(562931325.0*pow(c1, 16) - 2456427600.0*pow(c1, 14) + 4455066420.0*pow(c1, 12) - 4343290560.0*pow(c1, 10) + 2457141750.0*pow(c1, 8) - 811246800.0*pow(c1, 6) + 148728580.0*pow(c1, 4) - 13302432.0*pow(c1, 2) + 415701.0) + 8.0*pow(c0, 2)*(119409675.0*pow(c1, 18) - 583401555.0*pow(c1, 16) + 1202160780.0*pow(c1, 14) - 1357278300.0*pow(c1, 12) + 912652650.0*pow(c1, 10) - 371821450.0*pow(c1, 8) + 89237148.0*pow(c1, 6) - 11639628.0*pow(c1, 4) + 692835.0*pow(c1, 2) - 12155.0) - 4.57142857142857*c0*c1*pow(pow(c1, 2) - 1.0, 2)*(20766900.0*pow(c1, 14) - 71052465.0*pow(c1, 12) + 97658370.0*pow(c1, 10) - 68958375.0*pow(c1, 8) + 26520000.0*pow(c1, 6) - 5408975.0*pow(c1, 4) + 520234.0*pow(c1, 2) - 17017.0) + 1.33333333333333*pow(pow(c1, 2) - 1.0, 3)*(3411705.0*pow(c1, 14) - 10235115.0*pow(c1, 12) + 12096045.0*pow(c1, 10) - 7153575.0*pow(c1, 8) + 2220075.0*pow(c1, 6) - 345345.0*pow(c1, 4) + 23023.0*pow(c1, 2) - 429.0)); case 21: return 3.17891438802083e-7*x1t*(504932340.0*pow(c0, 21) - 4241431656.0*pow(c0, 20)*c1 + 955277400.0*pow(c0, 19)*(37.0*pow(c1, 2) - 3.0) - 1037158320.0*pow(c0, 18)*c1*(148.0*pow(c1, 2) - 21.0) + 2333606220.0*pow(c0, 17)*(259.0*pow(c1, 4) - 70.0*pow(c1, 2) + 3.0) - 1763169144.0*pow(c0, 16)*c1*(925.0*pow(c1, 4) - 360.0*pow(c1, 2) + 27.0) + 9617286240.0*pow(c0, 15)*(407.0*pow(c1, 6) - 231.0*pow(c1, 4) + 33.0*pow(c1, 2) - 1.0) - 2747796068.57143*pow(c0, 14)*c1*(2590.0*pow(c1, 6) - 1925.0*pow(c1, 4) + 396.0*pow(c1, 2) - 21.0) + 180970440.0*pow(c0, 13)*(63085.0*pow(c1, 8) - 61380.0*pow(c1, 6) + 18414.0*pow(c1, 4) - 1860.0*pow(c1, 2) + 45.0) - 51705840.0*pow(c0, 12)*c1*(281015.0*pow(c1, 8) - 338520.0*pow(c1, 6) + 132990.0*pow(c1, 4) - 19344.0*pow(c1, 2) + 819.0) + 69535440.0*pow(c0, 11)*(232841.0*pow(c1, 10) - 346115.0*pow(c1, 8) + 178002.0*pow(c1, 6) - 37758.0*pow(c1, 4) + 3045.0*pow(c1, 2) - 63.0) - 7845024.0*pow(c0, 10)*c1*(1862728.0*pow(c1, 10) - 3303825.0*pow(c1, 8) + 2103660.0*pow(c1, 6) - 584350.0*pow(c1, 4) + 67860.0*pow(c1, 2) - 2457.0) + 16343800.0*pow(c0, 9)*(698523.0*pow(c1, 12) - 1472562.0*pow(c1, 10) + 1157013.0*pow(c1, 8) - 420732.0*pow(c1, 6) + 71253.0*pow(c1, 4) - 4914.0*pow(c1, 2) + 91.0) - 314640.0*pow(c0, 8)*c1*(23051259.0*pow(c1, 12) - 56485968.0*pow(c1, 10) + 52955595.0*pow(c1, 8) - 23841480.0*pow(c1, 6) + 5287425.0*pow(c1, 4) - 525096.0*pow(c1, 2) + 17017.0) + 7845024.0*pow(c0, 7)*(498945.0*pow(c1, 14) - 1415925.0*pow(c1, 12) + 1577745.0*pow(c1, 10) - 876525.0*pow(c1, 8) + 254475.0*pow(c1, 6) - 36855.0*pow(c1, 4) + 2275.0*pow(c1, 2) - 39.0) - 6182.4*pow(c0, 6)*c1*(274419750.0*pow(c1, 14) - 887784975.0*pow(c1, 12) + 1149892920.0*pow(c1, 10) - 762239625.0*pow(c1, 8) + 273984750.0*pow(c1, 6) - 51962625.0*pow(c1, 4) + 4618900.0*pow(c1, 2) - 138567.0) + 4788.0*pow(c0, 5)*(126233085.0*pow(c1, 16) - 463991880.0*pow(c1, 14) + 695987820.0*pow(c1, 12) - 548354040.0*pow(c1, 10) + 243221550.0*pow(c1, 8) - 60386040.0*pow(c1, 6) + 7827820.0*pow(c1, 4) - 447304.0*pow(c1, 2) + 7293.0) - 8.0*pow(c0, 4)*c1*(20828459025.0*pow(c1, 16) - 85974966000.0*pow(c1, 14) + 147017191860.0*pow(c1, 12) - 134642007360.0*pow(c1, 10) + 71257110750.0*pow(c1, 8) - 21903663600.0*pow(c1, 6) + 3718214500.0*pow(c1, 4) - 305955936.0*pow(c1, 2) + 8729721.0) + 8.0*pow(c0, 3)*(4418157975.0*pow(c1, 18) - 20419054425.0*pow(c1, 16) + 39671305740.0*pow(c1, 14) - 42075627300.0*pow(c1, 12) + 26466926850.0*pow(c1, 10) - 10039179150.0*pow(c1, 8) + 2230928700.0*pow(c1, 6) - 267711444.0*pow(c1, 4) + 14549535.0*pow(c1, 2) - 230945.0) - 48.0*pow(c0, 2)*c1*(109767900.0*pow(c1, 18) - 562931325.0*pow(c1, 16) + 1228213800.0*pow(c1, 14) - 1485022140.0*pow(c1, 12) + 1085822640.0*pow(c1, 10) - 491428350.0*pow(c1, 8) + 135207800.0*pow(c1, 6) - 21246940.0*pow(c1, 4) + 1662804.0*pow(c1, 2) - 46189.0) + 4.0*c0*pow(pow(c1, 2) - 1.0, 2)*(126233085.0*pow(c1, 16) - 463991880.0*pow(c1, 14) + 695987820.0*pow(c1, 12) - 548354040.0*pow(c1, 10) + 243221550.0*pow(c1, 8) - 60386040.0*pow(c1, 6) + 7827820.0*pow(c1, 4) - 447304.0*pow(c1, 2) + 7293.0) - 0.228571428571429*c1*pow(pow(c1, 2) - 1.0, 3)*(99888789.0*pow(c1, 14) - 323340633.0*pow(c1, 12) + 419105709.0*pow(c1, 10) - 278074185.0*pow(c1, 8) + 100076535.0*pow(c1, 6) - 19012851.0*pow(c1, 4) + 1694407.0*pow(c1, 2) - 51051.0)); case 22: return 4.76837158203125e-7*x1t*(596738220.0*pow(c0, 22) - 5251296336.0*pow(c0, 21)*c1 + 3534526380.0*pow(c0, 20)*(13.0*pow(c1, 2) - 1.0) - 4039458720.0*pow(c0, 19)*c1*(52.0*pow(c1, 2) - 7.0) + 605009020.0*pow(c0, 18)*(1443.0*pow(c1, 4) - 370.0*pow(c1, 2) + 15.0) - 1037158320.0*pow(c0, 17)*c1*(2405.0*pow(c1, 4) - 888.0*pow(c1, 2) + 63.0) + 13223768580.0*pow(c0, 16)*(481.0*pow(c1, 6) - 259.0*pow(c1, 4) + 35.0*pow(c1, 2) - 1.0) - 854869888.0*pow(c0, 15)*c1*(14430.0*pow(c1, 6) - 10175.0*pow(c1, 4) + 1980.0*pow(c1, 2) - 99.0) + 4007202600.0*pow(c0, 14)*(5291.0*pow(c1, 8) - 4884.0*pow(c1, 6) + 1386.0*pow(c1, 4) - 132.0*pow(c1, 2) + 3.0) - 3205762080.0*pow(c0, 13)*c1*(9065.0*pow(c1, 8) - 10360.0*pow(c1, 6) + 3850.0*pow(c1, 4) - 528.0*pow(c1, 2) + 21.0) + 784205240.0*pow(c0, 12)*(44733.0*pow(c1, 10) - 63085.0*pow(c1, 8) + 30690.0*pow(c1, 6) - 6138.0*pow(c1, 4) + 465.0*pow(c1, 2) - 9.0) - 41364672.0*pow(c0, 11)*c1*(835016.0*pow(c1, 10) - 1405075.0*pow(c1, 8) + 846300.0*pow(c1, 6) - 221650.0*pow(c1, 4) + 24180.0*pow(c1, 2) - 819.0) + 127481640.0*pow(c0, 10)*(232841.0*pow(c1, 12) - 465682.0*pow(c1, 10) + 346115.0*pow(c1, 8) - 118668.0*pow(c1, 6) + 18879.0*pow(c1, 4) - 1218.0*pow(c1, 2) + 21.0) - 769120.0*pow(c0, 9)*c1*(27242397.0*pow(c1, 12) - 63332752.0*pow(c1, 10) + 56165025.0*pow(c1, 8) - 23841480.0*pow(c1, 6) + 4966975.0*pow(c1, 4) - 461448.0*pow(c1, 2) + 13923.0) + 9806280.0*pow(c0, 8)*(1297257.0*pow(c1, 14) - 3492615.0*pow(c1, 12) + 3681405.0*pow(c1, 10) - 1928355.0*pow(c1, 8) + 525915.0*pow(c1, 6) - 71253.0*pow(c1, 4) + 4095.0*pow(c1, 2) - 65.0) - 44160.0*pow(c0, 7)*c1*(142698270.0*pow(c1, 14) - 437973921.0*pow(c1, 12) + 536616696.0*pow(c1, 10) - 335385435.0*pow(c1, 8) + 113247030.0*pow(c1, 6) - 20092215.0*pow(c1, 4) + 1662804.0*pow(c1, 2) - 46189.0) + 134596.0*pow(c0, 6)*(19458855.0*pow(c1, 16) - 67856520.0*pow(c1, 14) + 96282900.0*pow(c1, 12) - 71524440.0*pow(c1, 10) + 29801850.0*pow(c1, 8) - 6921720.0*pow(c1, 6) + 835380.0*pow(c1, 4) - 44200.0*pow(c1, 2) + 663.0) - 220.8*pow(c0, 5)*c1*(3924202425.0*pow(c1, 16) - 15367506000.0*pow(c1, 14) + 24857979300.0*pow(c1, 12) - 21464667840.0*pow(c1, 10) + 10671354750.0*pow(c1, 8) - 3068629200.0*pow(c1, 6) + 484984500.0*pow(c1, 4) - 36951200.0*pow(c1, 2) + 969969.0) + 140.0*pow(c0, 4)*(1641030105.0*pow(c1, 18) - 7195285845.0*pow(c1, 16) + 13223768580.0*pow(c1, 14) - 13223768580.0*pow(c1, 12) + 7814045070.0*pow(c1, 10) - 2772725670.0*pow(c1, 8) + 573667380.0*pow(c1, 6) - 63740820.0*pow(c1, 4) + 3187041.0*pow(c1, 2) - 46189.0) - 10.6666666666667*pow(c0, 3)*c1*(4280948100.0*pow(c1, 18) - 20828459025.0*pow(c1, 16) + 42987483000.0*pow(c1, 14) - 49005730620.0*pow(c1, 12) + 33660501840.0*pow(c1, 10) - 14251422150.0*pow(c1, 8) + 3650610600.0*pow(c1, 6) - 531173500.0*pow(c1, 4) + 38244492.0*pow(c1, 2) - 969969.0) + 4.0*pow(c0, 2)*(1641030105.0*pow(c1, 20) - 8836315950.0*pow(c1, 18) + 20419054425.0*pow(c1, 16) - 26447537160.0*pow(c1, 14) + 21037813650.0*pow(c1, 12) - 10586770740.0*pow(c1, 10) + 3346393050.0*pow(c1, 8) - 637408200.0*pow(c1, 6) + 66927861.0*pow(c1, 4) - 3233230.0*pow(c1, 2) + 46189.0) - 3.2*c0*c1*pow(pow(c1, 2) - 1.0, 2)*(185507751.0*pow(c1, 16) - 726663498.0*pow(c1, 14) + 1175821878.0*pow(c1, 12) - 1015738746.0*pow(c1, 10) + 505255980.0*pow(c1, 8) - 145394574.0*pow(c1, 6) + 23002122.0*pow(c1, 4) - 1755182.0*pow(c1, 2) + 46189.0) + 1.33333333333333*pow(pow(c1, 2) - 1.0, 3)*(19458855.0*pow(c1, 16) - 67856520.0*pow(c1, 14) + 96282900.0*pow(c1, 12) - 71524440.0*pow(c1, 10) + 29801850.0*pow(c1, 8) - 6921720.0*pow(c1, 6) + 835380.0*pow(c1, 4) - 44200.0*pow(c1, 2) + 663.0)); case 23: return 4.76837158203125e-7*x1t*(1063750740.0*pow(c0, 23) - 9786506808.0*pow(c0, 22)*c1 + 2188040140.0*pow(c0, 21)*(41.0*pow(c1, 2) - 3.0) - 2625648168.0*pow(c0, 20)*c1*(164.0*pow(c1, 2) - 21.0) + 3534526380.0*pow(c0, 19)*(533.0*pow(c1, 4) - 130.0*pow(c1, 2) + 5.0) - 2131936546.66667*pow(c0, 18)*c1*(2665.0*pow(c1, 4) - 936.0*pow(c1, 2) + 63.0) + 777868740.0*pow(c0, 17)*(19721.0*pow(c1, 6) - 10101.0*pow(c1, 4) + 1295.0*pow(c1, 2) - 35.0) - 801440520.0*pow(c0, 16)*c1*(39442.0*pow(c1, 6) - 26455.0*pow(c1, 4) + 4884.0*pow(c1, 2) - 231.0) + 2938615240.0*pow(c0, 15)*(19721.0*pow(c1, 8) - 17316.0*pow(c1, 6) + 4662.0*pow(c1, 4) - 420.0*pow(c1, 2) + 9.0) - 1602881040.0*pow(c0, 14)*c1*(53095.0*pow(c1, 8) - 57720.0*pow(c1, 6) + 20350.0*pow(c1, 4) - 2640.0*pow(c1, 2) + 99.0) + 5610083640.0*pow(c0, 13)*(19721.0*pow(c1, 10) - 26455.0*pow(c1, 8) + 12210.0*pow(c1, 6) - 2310.0*pow(c1, 4) + 165.0*pow(c1, 2) - 3.0) - 1389163568.0*pow(c0, 12)*c1*(84952.0*pow(c1, 10) - 135975.0*pow(c1, 8) + 77700.0*pow(c1, 6) - 19250.0*pow(c1, 4) + 1980.0*pow(c1, 2) - 63.0) + 2352615720.0*pow(c0, 11)*(47027.0*pow(c1, 12) - 89466.0*pow(c1, 10) + 63085.0*pow(c1, 8) - 20460.0*pow(c1, 6) + 3069.0*pow(c1, 4) - 186.0*pow(c1, 2) + 3.0) - 6691344.0*pow(c0, 10)*c1*(12838371.0*pow(c1, 12) - 28390544.0*pow(c1, 10) + 23886275.0*pow(c1, 8) - 9591400.0*pow(c1, 6) + 1884025.0*pow(c1, 4) - 164424.0*pow(c1, 2) + 4641.0) + 42493880.0*pow(c0, 9)*(1363783.0*pow(c1, 14) - 3492615.0*pow(c1, 12) + 3492615.0*pow(c1, 10) - 1730575.0*pow(c1, 8) + 445005.0*pow(c1, 6) - 56637.0*pow(c1, 4) + 3045.0*pow(c1, 2) - 45.0) - 182160.0*pow(c0, 8)*c1*(177291790.0*pow(c1, 14) - 517605543.0*pow(c1, 12) + 601661144.0*pow(c1, 10) - 355711825.0*pow(c1, 8) + 113247030.0*pow(c1, 6) - 18874505.0*pow(c1, 4) + 1461252.0*pow(c1, 2) - 37791.0) + 288420.0*pow(c0, 7)*(53187537.0*pow(c1, 16) - 176426952.0*pow(c1, 14) + 237497820.0*pow(c1, 12) - 166890360.0*pow(c1, 10) + 65564070.0*pow(c1, 8) - 14304888.0*pow(c1, 6) + 1615068.0*pow(c1, 4) - 79560.0*pow(c1, 2) + 1105.0) - 2760.0*pow(c0, 6)*c1*(2145230659.0*pow(c1, 16) - 7991103120.0*pow(c1, 14) + 12263269788.0*pow(c1, 12) - 10016844992.0*pow(c1, 10) + 4695396090.0*pow(c1, 8) - 1268366736.0*pow(c1, 6) + 187527340.0*pow(c1, 4) - 13302432.0*pow(c1, 2) + 323323.0) + 7084.0*pow(c0, 5)*(265937685.0*pow(c1, 18) - 1109154735.0*pow(c1, 16) + 1933910820.0*pow(c1, 14) - 1829375100.0*pow(c1, 12) + 1019223270.0*pow(c1, 10) - 339741090.0*pow(c1, 8) + 65756340.0*pow(c1, 6) - 6802380.0*pow(c1, 4) + 314925.0*pow(c1, 2) - 4199.0) - 8.0*pow(c0, 4)*c1*(58506290700.0*pow(c1, 18) - 270769967325.0*pow(c1, 16) + 530178957000.0*pow(c1, 14) - 571733523900.0*pow(c1, 12) + 370265520240.0*pow(c1, 10) - 147264695550.0*pow(c1, 8) + 35289235800.0*pow(c1, 6) - 4780561500.0*pow(c1, 4) + 318704100.0*pow(c1, 2) - 7436429.0) + 1.33333333333333*pow(c0, 3)*(67282234305.0*pow(c1, 20) - 344616322050.0*pow(c1, 18) + 755505013725.0*pow(c1, 16) - 925663800600.0*pow(c1, 14) + 694247850450.0*pow(c1, 12) - 328189892940.0*pow(c1, 10) + 97045398450.0*pow(c1, 8) - 17210021400.0*pow(c1, 6) + 1673196525.0*pow(c1, 4) - 74364290.0*pow(c1, 2) + 969969.0) - 1.6*pow(c0, 2)*c1*(7605817791.0*pow(c1, 20) - 42809481000.0*pow(c1, 18) + 104142295125.0*pow(c1, 16) - 143291610000.0*pow(c1, 14) + 122514326550.0*pow(c1, 12) - 67321003680.0*pow(c1, 10) + 23752370250.0*pow(c1, 8) - 5215158000.0*pow(c1, 6) + 663966875.0*pow(c1, 4) - 42493880.0*pow(c1, 2) + 969969.0) + 4.0*c0*pow(pow(c1, 2) - 1.0, 2)*(265937685.0*pow(c1, 18) - 1109154735.0*pow(c1, 16) + 1933910820.0*pow(c1, 14) - 1829375100.0*pow(c1, 12) + 1019223270.0*pow(c1, 10) - 339741090.0*pow(c1, 8) + 65756340.0*pow(c1, 6) - 6802380.0*pow(c1, 4) + 314925.0*pow(c1, 2) - 4199.0) - 0.177777777777778*c1*pow(pow(c1, 2) - 1.0, 3)*(248208506.0*pow(c1, 16) - 924944241.0*pow(c1, 14) + 1420097259.0*pow(c1, 12) - 1160636869.0*pow(c1, 10) + 544456875.0*pow(c1, 8) - 147221139.0*pow(c1, 6) + 21797009.0*pow(c1, 4) - 1549431.0*pow(c1, 2) + 37791.0)); case 24: return 1.98682149251302e-8*x1t*(45741281820.0*pow(c0, 24) - 439116305472.0*pow(c0, 23)*c1 + 97865068080.0*pow(c0, 22)*(43.0*pow(c1, 2) - 3.0) - 123030371300.571*pow(c0, 21)*c1*(172.0*pow(c1, 2) - 21.0) + 55138611528.0*pow(c0, 20)*(1763.0*pow(c1, 4) - 410.0*pow(c1, 2) + 15.0) - 35008642240.0*pow(c0, 19)*c1*(8815.0*pow(c1, 4) - 2952.0*pow(c1, 2) + 189.0) + 38374857840.0*pow(c0, 18)*(22919.0*pow(c1, 6) - 11193.0*pow(c1, 4) + 1365.0*pow(c1, 2) - 35.0) - 41863481280.0*pow(c0, 17)*c1*(45838.0*pow(c1, 6) - 29315.0*pow(c1, 4) + 5148.0*pow(c1, 2) - 231.0) + 4407922860.0*pow(c0, 16)*(848003.0*pow(c1, 8) - 709956.0*pow(c1, 6) + 181818.0*pow(c1, 4) - 15540.0*pow(c1, 2) + 315.0) - 12823048320.0*pow(c0, 15)*c1*(456617.0*pow(c1, 8) - 473304.0*pow(c1, 6) + 158730.0*pow(c1, 4) - 19536.0*pow(c1, 2) + 693.0) + 9617286240.0*pow(c0, 14)*(848003.0*pow(c1, 10) - 1084655.0*pow(c1, 8) + 476190.0*pow(c1, 6) - 85470.0*pow(c1, 4) + 5775.0*pow(c1, 2) - 99.0) - 17952267648.0*pow(c0, 13)*c1*(521848.0*pow(c1, 10) - 796425.0*pow(c1, 8) + 432900.0*pow(c1, 6) - 101750.0*pow(c1, 4) + 9900.0*pow(c1, 2) - 297.0) + 145862174640.0*pow(c0, 12)*(65231.0*pow(c1, 12) - 118326.0*pow(c1, 10) + 79365.0*pow(c1, 8) - 24420.0*pow(c1, 6) + 3465.0*pow(c1, 4) - 198.0*pow(c1, 2) + 3.0) - 5883516288.0*pow(c0, 11)*c1*(1369851.0*pow(c1, 12) - 2888368.0*pow(c1, 10) + 2311575.0*pow(c1, 8) - 880600.0*pow(c1, 6) + 163625.0*pow(c1, 4) - 13464.0*pow(c1, 2) + 357.0) + 2957574048.0*pow(c0, 10)*(2022161.0*pow(c1, 14) - 4937835.0*pow(c1, 12) + 4696965.0*pow(c1, 10) - 2207975.0*pow(c1, 8) + 537075.0*pow(c1, 6) - 64449.0*pow(c1, 4) + 3255.0*pow(c1, 2) - 45.0) - 14087040.0*pow(c0, 9)*c1*(262880930.0*pow(c1, 14) - 731787147.0*pow(c1, 12) + 809130504.0*pow(c1, 10) - 453839225.0*pow(c1, 8) + 136677450.0*pow(c1, 6) - 21477885.0*pow(c1, 4) + 1562028.0*pow(c1, 2) - 37791.0) + 33745140.0*pow(c0, 8)*(58642669.0*pow(c1, 16) - 185474488.0*pow(c1, 14) + 237497820.0*pow(c1, 12) - 158331880.0*pow(c1, 10) + 58839550.0*pow(c1, 8) - 12104136.0*pow(c1, 6) + 1283772.0*pow(c1, 4) - 59160.0*pow(c1, 2) + 765.0) - 104091.428571429*pow(c0, 7)*c1*(8385901667.0*pow(c1, 16) - 29785020720.0*pow(c1, 14) + 43478865612.0*pow(c1, 12) - 33693024064.0*pow(c1, 10) + 14939896650.0*pow(c1, 8) - 3805100208.0*pow(c1, 6) + 528486140.0*pow(c1, 4) - 35070048.0*pow(c1, 2) + 793611.0) + 141680.0*pow(c0, 6)*(2287064091.0*pow(c1, 18) - 9095068827.0*pow(c1, 16) + 15084504396.0*pow(c1, 14) - 13537375740.0*pow(c1, 12) + 7134562890.0*pow(c1, 10) - 2242291194.0*pow(c1, 8) + 407689308.0*pow(c1, 6) - 39453804.0*pow(c1, 4) + 1700595.0*pow(c1, 2) - 20995.0) - 960.0*pow(c0, 5)*c1*(100630820004.0*pow(c1, 18) - 444062746413.0*pow(c1, 16) + 827079172920.0*pow(c1, 14) - 846165615372.0*pow(c1, 12) + 518371728336.0*pow(c1, 10) - 194389398126.0*pow(c1, 8) + 43758652392.0*pow(c1, 6) - 5545451340.0*pow(c1, 4) + 344200428.0*pow(c1, 2) - 7436429.0) + 2024.0*pow(c0, 4)*(11435320455.0*pow(c1, 20) - 55846913850.0*pow(c1, 18) + 116461247175.0*pow(c1, 16) - 135373757400.0*pow(c1, 14) + 96042192750.0*pow(c1, 12) - 42807377340.0*pow(c1, 10) + 11890938150.0*pow(c1, 8) - 1972690200.0*pow(c1, 6) + 178562475.0*pow(c1, 4) - 7348250.0*pow(c1, 2) + 88179.0) - 12.8*pow(c0, 3)*c1*(327050165013.0*pow(c1, 20) - 1755188721000.0*pow(c1, 18) + 4061549509875.0*pow(c1, 16) - 5301789570000.0*pow(c1, 14) + 4288001429250.0*pow(c1, 12) - 2221593121440.0*pow(c1, 10) + 736323477750.0*pow(c1, 8) - 151239582000.0*pow(c1, 6) + 17927105625.0*pow(c1, 4) - 1062347000.0*pow(c1, 2) + 22309287.0) + 48.0*pow(c0, 2)*(11435320455.0*pow(c1, 22) - 67282234305.0*pow(c1, 20) + 172308161025.0*pow(c1, 18) - 251835004575.0*pow(c1, 16) + 231415950150.0*pow(c1, 14) - 138849570090.0*pow(c1, 12) + 54698315490.0*pow(c1, 10) - 13863628350.0*pow(c1, 8) + 2151252675.0*pow(c1, 6) - 185910725.0*pow(c1, 4) + 7436429.0*pow(c1, 2) - 88179.0) - 4.26666666666667*c0*c1*pow(pow(c1, 2) - 1.0, 2)*(10672965758.0*pow(c1, 18) - 47106428603.0*pow(c1, 16) + 87756841536.0*pow(c1, 14) - 89806773700.0*pow(c1, 12) + 55035733564.0*pow(c1, 10) - 20647546962.0*pow(c1, 8) + 4650678032.0*pow(c1, 6) - 589858724.0*pow(c1, 4) + 36657270.0*pow(c1, 2) - 793611.0) + 0.8*pow(pow(c1, 2) - 1.0, 3)*(2287064091.0*pow(c1, 18) - 9095068827.0*pow(c1, 16) + 15084504396.0*pow(c1, 14) - 13537375740.0*pow(c1, 12) + 7134562890.0*pow(c1, 10) - 2242291194.0*pow(c1, 8) + 407689308.0*pow(c1, 6) - 39453804.0*pow(c1, 4) + 1700595.0*pow(c1, 2) - 20995.0)); case 25: return 5.96046447753906e-8*x1t*(27444769092.0*pow(c0, 25) - 274447690920.0*pow(c0, 24)*c1 + 182965127280.0*pow(c0, 23)*(15.0*pow(c1, 2) - 1.0) - 240468452996.571*pow(c0, 22)*c1*(60.0*pow(c1, 2) - 7.0) + 179419291480.0*pow(c0, 21)*(387.0*pow(c1, 4) - 86.0*pow(c1, 2) + 3.0) - 215303149776.0*pow(c0, 20)*c1*(1075.0*pow(c1, 4) - 344.0*pow(c1, 2) + 21.0) + 26256481680.0*pow(c0, 19)*(26445.0*pow(c1, 6) - 12341.0*pow(c1, 4) + 1435.0*pow(c1, 2) - 35.0) - 10078245493.3333*pow(c0, 18)*c1*(158670.0*pow(c1, 6) - 96965.0*pow(c1, 4) + 16236.0*pow(c1, 2) - 693.0) + 28781143380.0*pow(c0, 17)*(114595.0*pow(c1, 8) - 91676.0*pow(c1, 6) + 22386.0*pow(c1, 4) - 1820.0*pow(c1, 2) + 35.0) - 29653299240.0*pow(c0, 16)*c1*(185115.0*pow(c1, 8) - 183352.0*pow(c1, 6) + 58630.0*pow(c1, 4) - 6864.0*pow(c1, 2) + 231.0) + 1068587360.0*pow(c0, 15)*(7632027.0*pow(c1, 10) - 9328033.0*pow(c1, 8) + 3904758.0*pow(c1, 6) - 666666.0*pow(c1, 4) + 42735.0*pow(c1, 2) - 693.0) - 6411524160.0*pow(c0, 14)*c1*(1565544.0*pow(c1, 10) - 2283085.0*pow(c1, 8) + 1183260.0*pow(c1, 6) - 264550.0*pow(c1, 4) + 24420.0*pow(c1, 2) - 693.0) + 11220167280.0*pow(c0, 13)*(978465.0*pow(c1, 12) - 1696006.0*pow(c1, 10) + 1084655.0*pow(c1, 8) - 317460.0*pow(c1, 6) + 42735.0*pow(c1, 4) - 2310.0*pow(c1, 2) + 33.0) - 1144017056.0*pow(c0, 12)*c1*(8806185.0*pow(c1, 12) - 17742832.0*pow(c1, 10) + 13539225.0*pow(c1, 8) - 4906200.0*pow(c1, 6) + 864875.0*pow(c1, 4) - 67320.0*pow(c1, 2) + 1683.0) + 41674907040.0*pow(c0, 11)*(195693.0*pow(c1, 14) - 456617.0*pow(c1, 12) + 414141.0*pow(c1, 10) - 185185.0*pow(c1, 8) + 42735.0*pow(c1, 6) - 4851.0*pow(c1, 4) + 231.0*pow(c1, 2) - 3.0) - 567707712.0*pow(c0, 10)*c1*(9784650.0*pow(c1, 14) - 26027169.0*pow(c1, 12) + 27439496.0*pow(c1, 10) - 14639975.0*pow(c1, 8) + 4182850.0*pow(c1, 6) - 621775.0*pow(c1, 4) + 42636.0*pow(c1, 2) - 969.0) + 36244780.0*pow(c0, 9)*(90997245.0*pow(c1, 16) - 275013896.0*pow(c1, 14) + 335772780.0*pow(c1, 12) - 212929080.0*pow(c1, 10) + 75071150.0*pow(c1, 8) - 14608440.0*pow(c1, 6) + 1460844.0*pow(c1, 4) - 63240.0*pow(c1, 2) + 765.0) - 377331.428571429*pow(c0, 8)*c1*(4337535345.0*pow(c1, 16) - 14721332080.0*pow(c1, 14) + 20490040116.0*pow(c1, 12) - 15103769408.0*pow(c1, 10) + 6353749150.0*pow(c1, 8) - 1530787440.0*pow(c1, 6) + 200460260.0*pow(c1, 4) - 12496224.0*pow(c1, 2) + 264537.0) + 2368080.0*pow(c0, 7)*(293213345.0*pow(c1, 18) - 1114210711.0*pow(c1, 16) + 1762007636.0*pow(c1, 14) - 1504152860.0*pow(c1, 12) + 752076430.0*pow(c1, 10) - 223590290.0*pow(c1, 8) + 38329764.0*pow(c1, 6) - 3484524.0*pow(c1, 4) + 140505.0*pow(c1, 2) - 1615.0) - 5280.0*pow(c0, 6)*c1*(45741281820.0*pow(c1, 18) - 192875738341.0*pow(c1, 16) + 342527738280.0*pow(c1, 14) - 333337969692.0*pow(c1, 12) + 193734888368.0*pow(c1, 10) - 68723524590.0*pow(c1, 8) + 14586217464.0*pow(c1, 6) - 1736454460.0*pow(c1, 4) + 100826388.0*pow(c1, 2) - 2028117.0) + 10120.0*pow(c0, 5)*(6861192273.0*pow(c1, 20) - 32018897274.0*pow(c1, 18) + 63665481789.0*pow(c1, 16) - 70394353848.0*pow(c1, 14) + 47380815090.0*pow(c1, 12) - 19976776092.0*pow(c1, 10) + 5232012786.0*pow(c1, 8) - 815378616.0*pow(c1, 6) + 69044157.0*pow(c1, 4) - 2645370.0*pow(c1, 2) + 29393.0) - 16.0*pow(c0, 4)*c1*(981150495039.0*pow(c1, 20) - 5031541000200.0*pow(c1, 18) + 11101568660325.0*pow(c1, 16) - 13784652882000.0*pow(c1, 14) + 10577070192150.0*pow(c1, 12) - 5183717283360.0*pow(c1, 10) + 1619911651050.0*pow(c1, 8) - 312561802800.0*pow(c1, 6) + 34659070875.0*pow(c1, 4) - 1912224600.0*pow(c1, 2) + 37182145.0) + 5.33333333333333*pow(c0, 3)*(514589420475.0*pow(c1, 22) - 2893136075115.0*pow(c1, 20) + 7064634602025.0*pow(c1, 18) - 9821565178425.0*pow(c1, 16) + 8562390155550.0*pow(c1, 14) - 4859734953150.0*pow(c1, 12) + 1805044411170.0*pow(c1, 10) - 429772478850.0*pow(c1, 8) + 62386327575.0*pow(c1, 6) - 5019589575.0*pow(c1, 4) + 185910725.0*pow(c1, 2) - 2028117.0) - 6.4*pow(c0, 2)*c1*(53364828790.0*pow(c1, 22) - 327050165013.0*pow(c1, 20) + 877594360500.0*pow(c1, 18) - 1353849836625.0*pow(c1, 16) + 1325447392500.0*pow(c1, 14) - 857600285850.0*pow(c1, 12) + 370265520240.0*pow(c1, 10) - 105189068250.0*pow(c1, 8) + 18904947750.0*pow(c1, 6) - 1991900625.0*pow(c1, 4) + 106234700.0*pow(c1, 2) - 2028117.0) + 4.0*c0*pow(pow(c1, 2) - 1.0, 2)*(6861192273.0*pow(c1, 20) - 32018897274.0*pow(c1, 18) + 63665481789.0*pow(c1, 16) - 70394353848.0*pow(c1, 14) + 47380815090.0*pow(c1, 12) - 19976776092.0*pow(c1, 10) + 5232012786.0*pow(c1, 8) - 815378616.0*pow(c1, 6) + 69044157.0*pow(c1, 4) - 2645370.0*pow(c1, 2) + 29393.0) - 0.177777777777778*c1*pow(pow(c1, 2) - 1.0, 3)*(5914820925.0*pow(c1, 18) - 24947400257.0*pow(c1, 16) + 44318056692.0*pow(c1, 14) - 43145694228.0*pow(c1, 12) + 25088232358.0*pow(c1, 10) - 8905061550.0*pow(c1, 8) + 1891615908.0*pow(c1, 6) - 225452708.0*pow(c1, 4) + 13113477.0*pow(c1, 2) - 264537.0)); case 26: return 2.98023223876953e-8*x1t*(99223395948.0*pow(c0, 26) - 1031923317859.2*pow(c0, 25)*c1 + 228706409100.0*pow(c0, 24)*(47.0*pow(c1, 2) - 3.0) - 313654503908.571*pow(c0, 23)*c1*(188.0*pow(c1, 2) - 21.0) + 2104098963720.0*pow(c0, 22)*(141.0*pow(c1, 4) - 30.0*pow(c1, 2) + 1.0) - 881717660987.428*pow(c0, 21)*c1*(1175.0*pow(c1, 4) - 360.0*pow(c1, 2) + 21.0) + 538257874440.0*pow(c0, 20)*(6063.0*pow(c1, 6) - 2709.0*pow(c1, 4) + 301.0*pow(c1, 2) - 7.0) - 391460272320.0*pow(c0, 19)*c1*(20210.0*pow(c1, 6) - 11825.0*pow(c1, 4) + 1892.0*pow(c1, 2) - 77.0) + 41572762660.0*pow(c0, 18)*(414305.0*pow(c1, 8) - 317340.0*pow(c1, 6) + 74046.0*pow(c1, 4) - 5740.0*pow(c1, 2) + 105.0) - 3488623440.0*pow(c0, 17)*c1*(8700405.0*pow(c1, 8) - 8250840.0*pow(c1, 6) + 2521090.0*pow(c1, 4) - 281424.0*pow(c1, 2) + 9009.0) + 44479948860.0*pow(c0, 16)*(1077193.0*pow(c1, 10) - 1260545.0*pow(c1, 8) + 504218.0*pow(c1, 6) - 82082.0*pow(c1, 4) + 5005.0*pow(c1, 2) - 77.0) - 31630185856.0*pow(c0, 15)*c1*(1988664.0*pow(c1, 10) - 2776725.0*pow(c1, 8) + 1375140.0*pow(c1, 6) - 293150.0*pow(c1, 4) + 25740.0*pow(c1, 2) - 693.0) + 8014405200.0*pow(c0, 14)*(9197571.0*pow(c1, 12) - 15264054.0*pow(c1, 10) + 9328033.0*pow(c1, 8) - 2603172.0*pow(c1, 6) + 333333.0*pow(c1, 4) - 17094.0*pow(c1, 2) + 231.0) - 2640039360.0*pow(c0, 13)*c1*(27592713.0*pow(c1, 12) - 53228496.0*pow(c1, 10) + 38812445.0*pow(c1, 8) - 13410280.0*pow(c1, 6) + 2248675.0*pow(c1, 4) - 166056.0*pow(c1, 2) + 3927.0) + 6945817840.0*pow(c0, 12)*(9197571.0*pow(c1, 14) - 20547765.0*pow(c1, 12) + 17808063.0*pow(c1, 10) - 7592585.0*pow(c1, 8) + 1666665.0*pow(c1, 6) - 179487.0*pow(c1, 4) + 8085.0*pow(c1, 2) - 99.0) - 103219584.0*pow(c0, 11)*c1*(459878550.0*pow(c1, 14) - 1171222605.0*pow(c1, 12) + 1179898328.0*pow(c1, 10) - 600238975.0*pow(c1, 8) + 163131150.0*pow(c1, 6) - 23005675.0*pow(c1, 4) + 1492260.0*pow(c1, 2) - 31977.0) + 3370764540.0*pow(c0, 10)*(9197571.0*pow(c1, 16) - 26614248.0*pow(c1, 14) + 31049956.0*pow(c1, 12) - 18774392.0*pow(c1, 10) + 6296290.0*pow(c1, 8) - 1162392.0*pow(c1, 6) + 109956.0*pow(c1, 4) - 4488.0*pow(c1, 2) + 51.0) - 33792125.7142857*pow(c0, 9)*c1*(505866405.0*pow(c1, 16) - 1643821200.0*pow(c1, 14) + 2186282196.0*pow(c1, 12) - 1536611776.0*pow(c1, 10) + 614878950.0*pow(c1, 8) - 140543760.0*pow(c1, 6) + 17409700.0*pow(c1, 4) - 1023264.0*pow(c1, 2) + 20349.0) + 17168580.0*pow(c0, 8)*(475207835.0*pow(c1, 18) - 1728947655.0*pow(c1, 16) + 2612632012.0*pow(c1, 14) - 2126560940.0*pow(c1, 12) + 1011413130.0*pow(c1, 10) - 285270370.0*pow(c1, 8) + 46260060.0*pow(c1, 6) - 3965148.0*pow(c1, 4) + 150195.0*pow(c1, 2) - 1615.0) - 131245.714285714*pow(c0, 7)*c1*(24710807420.0*pow(c1, 18) - 99763312935.0*pow(c1, 16) + 169295318920.0*pow(c1, 14) - 157090307556.0*pow(c1, 12) + 86846674096.0*pow(c1, 10) - 29227246090.0*pow(c1, 8) + 5868018520.0*pow(c1, 6) - 658655140.0*pow(c1, 4) + 35926644.0*pow(c1, 2) - 676039.0) + 394680.0*pow(c0, 6)*(2756205443.0*pow(c1, 20) - 12314960490.0*pow(c1, 18) + 23398424931.0*pow(c1, 16) - 24668106904.0*pow(c1, 14) + 15793605030.0*pow(c1, 12) - 6317442012.0*pow(c1, 10) + 1565132030.0*pow(c1, 8) - 229978584.0*pow(c1, 6) + 18293751.0*pow(c1, 4) - 655690.0*pow(c1, 2) + 6783.0) - 633.6*pow(c0, 5)*c1*(465798719867.0*pow(c1, 20) - 2287064091000.0*pow(c1, 18) + 4821893458525.0*pow(c1, 16) - 5708795638000.0*pow(c1, 14) + 4166724621150.0*pow(c1, 12) - 1937348883680.0*pow(c1, 10) + 572696038250.0*pow(c1, 8) - 104187267600.0*pow(c1, 6) + 10852840375.0*pow(c1, 4) - 560146600.0*pow(c1, 2) + 10140585.0) + 200.0*pow(c0, 4)*(322476036831.0*pow(c1, 22) - 1735881645069.0*pow(c1, 20) + 4050390505161.0*pow(c1, 18) - 5369122297539.0*pow(c1, 16) + 4452442880886.0*pow(c1, 14) - 2397469243554.0*pow(c1, 12) + 842354058546.0*pow(c1, 10) - 189099890694.0*pow(c1, 8) + 25786348731.0*pow(c1, 6) - 1940907969.0*pow(c1, 4) + 66927861.0*pow(c1, 2) - 676039.0) - 21.3333333333333*pow(c0, 3)*c1*(501629390626.0*pow(c1, 22) - 2943451485117.0*pow(c1, 20) + 7547311500300.0*pow(c1, 18) - 11101568660325.0*pow(c1, 16) + 10338489661500.0*pow(c1, 14) - 6346242115290.0*pow(c1, 12) + 2591858641680.0*pow(c1, 10) - 694247850450.0*pow(c1, 8) + 117210676050.0*pow(c1, 6) - 11553023625.0*pow(c1, 4) + 573667380.0*pow(c1, 2) - 10140585.0) + 4.0*pow(c0, 2)*(322476036831.0*pow(c1, 24) - 2058357681900.0*pow(c1, 22) + 5786272150230.0*pow(c1, 20) - 9419512802700.0*pow(c1, 18) + 9821565178425.0*pow(c1, 16) - 6849912124440.0*pow(c1, 14) + 3239823302100.0*pow(c1, 12) - 1031453949240.0*pow(c1, 10) + 214886239425.0*pow(c1, 8) - 27727256700.0*pow(c1, 6) + 2007835830.0*pow(c1, 4) - 67603900.0*pow(c1, 2) + 676039.0) - 3.2*c0*c1*pow(pow(c1, 2) - 1.0, 2)*(30888509275.0*pow(c1, 20) - 151682296610.0*pow(c1, 18) + 319847227531.0*pow(c1, 16) - 378749062328.0*pow(c1, 14) + 276504484438.0*pow(c1, 12) - 128599882796.0*pow(c1, 10) + 38029273870.0*pow(c1, 8) - 6921866744.0*pow(c1, 6) + 721526767.0*pow(c1, 4) - 37278722.0*pow(c1, 2) + 676039.0) + 1.33333333333333*pow(pow(c1, 2) - 1.0, 3)*(2756205443.0*pow(c1, 20) - 12314960490.0*pow(c1, 18) + 23398424931.0*pow(c1, 16) - 24668106904.0*pow(c1, 14) + 15793605030.0*pow(c1, 12) - 6317442012.0*pow(c1, 10) + 1565132030.0*pow(c1, 8) - 229978584.0*pow(c1, 6) + 18293751.0*pow(c1, 4) - 655690.0*pow(c1, 2) + 6783.0)); case 27: return 9.9341074625651e-9*x1t*(540216266828.0*pow(c0, 27) - 5834335681742.4*pow(c0, 26)*c1 + 1289904147324.0*pow(c0, 25)*(49.0*pow(c1, 2) - 3.0) - 12899041473240.0*pow(c0, 24)*c1*(28.0*pow(c1, 2) - 3.0) + 823343072760.0*pow(c0, 23)*(2303.0*pow(c1, 4) - 470.0*pow(c1, 2) + 15.0) - 601171132491.429*pow(c0, 22)*c1*(11515.0*pow(c1, 4) - 3384.0*pow(c1, 2) + 189.0) + 23145088600920.0*pow(c0, 21)*(987.0*pow(c1, 6) - 423.0*pow(c1, 4) + 45.0*pow(c1, 2) - 1.0) - 2524918756464.0*pow(c0, 20)*c1*(23030.0*pow(c1, 6) - 12925.0*pow(c1, 4) + 1980.0*pow(c1, 2) - 77.0) + 1345644686100.0*pow(c0, 19)*(99029.0*pow(c1, 8) - 72756.0*pow(c1, 6) + 16254.0*pow(c1, 4) - 1204.0*pow(c1, 2) + 21.0) - 71516780520.0*pow(c0, 18)*c1*(3466015.0*pow(c1, 8) - 3152760.0*pow(c1, 6) + 922350.0*pow(c1, 4) - 98384.0*pow(c1, 2) + 3003.0) + 102042235620.0*pow(c0, 17)*(4060189.0*pow(c1, 10) - 4557355.0*pow(c1, 8) + 1745370.0*pow(c1, 6) - 271502.0*pow(c1, 4) + 15785.0*pow(c1, 2) - 231.0) - 5930659848.0*pow(c0, 16)*c1*(97444536.0*pow(c1, 10) - 130506075.0*pow(c1, 8) + 61881300.0*pow(c1, 6) - 12605450.0*pow(c1, 4) + 1055340.0*pow(c1, 2) - 27027.0) + 177919795440.0*pow(c0, 15)*(4060189.0*pow(c1, 12) - 6463158.0*pow(c1, 10) + 3781635.0*pow(c1, 8) - 1008436.0*pow(c1, 6) + 123123.0*pow(c1, 4) - 6006.0*pow(c1, 2) + 77.0) - 20931740640.0*pow(c0, 14)*c1*(36541701.0*pow(c1, 12) - 67614576.0*pow(c1, 10) + 47204325.0*pow(c1, 8) - 15584920.0*pow(c1, 6) + 2491775.0*pow(c1, 4) - 175032.0*pow(c1, 2) + 3927.0) + 11220167280.0*pow(c0, 13)*(64382997.0*pow(c1, 14) - 137963565.0*pow(c1, 12) + 114480405.0*pow(c1, 10) - 46640165.0*pow(c1, 8) + 9761895.0*pow(c1, 6) - 999999.0*pow(c1, 4) + 42735.0*pow(c1, 2) - 495.0) - 903171360.0*pow(c0, 12)*c1*(643829970.0*pow(c1, 14) - 1572784641.0*pow(c1, 12) + 1517012136.0*pow(c1, 10) - 737436455.0*pow(c1, 8) + 191096490.0*pow(c1, 6) - 25634895.0*pow(c1, 4) + 1577532.0*pow(c1, 2) - 31977.0) + 919299420.0*pow(c0, 11)*(450680979.0*pow(c1, 16) - 1250869656.0*pow(c1, 14) + 1397248020.0*pow(c1, 12) - 807298856.0*pow(c1, 10) + 258147890.0*pow(c1, 8) - 45333288.0*pow(c1, 6) + 4068372.0*pow(c1, 4) - 157080.0*pow(c1, 2) + 1683.0) - 70963464.0*pow(c0, 10)*c1*(3541064835.0*pow(c1, 16) - 11037085200.0*pow(c1, 14) + 14054671260.0*pow(c1, 12) - 9439186624.0*pow(c1, 10) + 3601433850.0*pow(c1, 8) - 783029520.0*pow(c1, 6) + 92022700.0*pow(c1, 4) - 5116320.0*pow(c1, 2) + 95931.0) + 887043300.0*pow(c0, 9)*(150226993.0*pow(c1, 18) - 524261547.0*pow(c1, 16) + 758506068.0*pow(c1, 14) - 589949164.0*pow(c1, 12) + 267535086.0*pow(c1, 10) - 71777706.0*pow(c1, 8) + 11042724.0*pow(c1, 6) - 895356.0*pow(c1, 4) + 31977.0*pow(c1, 2) - 323.0) - 19834508.5714286*pow(c0, 8)*c1*(3004539860.0*pow(c1, 18) - 11634927315.0*pow(c1, 16) + 18903943800.0*pow(c1, 14) - 16761496836.0*pow(c1, 12) + 8835517712.0*pow(c1, 10) - 2828443170.0*pow(c1, 8) + 538751080.0*pow(c1, 6) - 57203300.0*pow(c1, 4) + 2941884.0*pow(c1, 2) - 52003.0) + 34337160.0*pow(c0, 7)*(665290969.0*pow(c1, 20) - 2851247010.0*pow(c1, 18) + 5186842965.0*pow(c1, 16) - 5225264024.0*pow(c1, 14) + 3189841410.0*pow(c1, 12) - 1213695756.0*pow(c1, 10) + 285270370.0*pow(c1, 8) - 39651480.0*pow(c1, 6) + 2973861.0*pow(c1, 4) - 100130.0*pow(c1, 2) + 969.0) - 9187.2*pow(c0, 6)*c1*(787039216327.0*pow(c1, 20) - 3706621113000.0*pow(c1, 18) + 7482248470125.0*pow(c1, 16) - 8464765946000.0*pow(c1, 14) + 5890886533350.0*pow(c1, 12) - 2605400222880.0*pow(c1, 10) + 730681152250.0*pow(c1, 8) - 125743254000.0*pow(c1, 6) + 12349783875.0*pow(c1, 4) - 598777400.0*pow(c1, 2) + 10140585.0) + 14040.0*pow(c0, 5)*(135054066707.0*pow(c1, 22) - 697319977079.0*pow(c1, 20) + 1557842501985.0*pow(c1, 18) - 1973267169181.0*pow(c1, 16) + 1560257761678.0*pow(c1, 14) - 799156414518.0*pow(c1, 12) + 266385471506.0*pow(c1, 10) - 56568343370.0*pow(c1, 8) + 7273072719.0*pow(c1, 6) - 514257667.0*pow(c1, 4) + 16588957.0*pow(c1, 2) - 156009.0) - 16.0*pow(c0, 4)*c1*(24579840140674.0*pow(c1, 22) - 138342219800499.0*pow(c1, 20) + 339629017513500.0*pow(c1, 18) - 477367452393975.0*pow(c1, 16) + 423878076121500.0*pow(c1, 14) - 247503442496310.0*pow(c1, 12) + 95898769742160.0*pow(c1, 10) - 24298674765750.0*pow(c1, 8) + 3867952309650.0*pow(c1, 6) - 358143732375.0*pow(c1, 4) + 16636354020.0*pow(c1, 2) - 273795795.0) + 4.0*pow(c0, 3)*(15801325804719.0*pow(c1, 24) - 96742811049300.0*pow(c1, 22) + 260382246760350.0*pow(c1, 20) - 405039050516100.0*pow(c1, 18) + 402684172315425.0*pow(c1, 16) - 267146572853160.0*pow(c1, 14) + 119873462177700.0*pow(c1, 12) - 36100888223400.0*pow(c1, 10) + 7091245901025.0*pow(c1, 8) - 859544957700.0*pow(c1, 6) + 58227239070.0*pow(c1, 4) - 1825305300.0*pow(c1, 2) + 16900975.0) - 24.0*pow(c0, 2)*c1*(302707390895.0*pow(c1, 24) - 2006517562504.0*pow(c1, 22) + 5886902970234.0*pow(c1, 20) - 10063082000400.0*pow(c1, 18) + 11101568660325.0*pow(c1, 16) - 8270791729200.0*pow(c1, 14) + 4230828076860.0*pow(c1, 12) - 1481062080960.0*pow(c1, 10) + 347123925225.0*pow(c1, 8) - 52093633800.0*pow(c1, 6) + 4621209450.0*pow(c1, 4) - 208606320.0*pow(c1, 2) + 3380195.0) + 4.0*c0*pow(pow(c1, 2) - 1.0, 2)*(135054066707.0*pow(c1, 22) - 697319977079.0*pow(c1, 20) + 1557842501985.0*pow(c1, 18) - 1973267169181.0*pow(c1, 16) + 1560257761678.0*pow(c1, 14) - 799156414518.0*pow(c1, 12) + 266385471506.0*pow(c1, 10) - 56568343370.0*pow(c1, 8) + 7273072719.0*pow(c1, 6) - 514257667.0*pow(c1, 4) + 16588957.0*pow(c1, 2) - 156009.0) - 1.6*c1*pow(pow(c1, 2) - 1.0, 3)*(12018159440.0*pow(c1, 20) - 56611049505.0*pow(c1, 18) + 114301345905.0*pow(c1, 16) - 129344984356.0*pow(c1, 14) + 90044320212.0*pow(c1, 12) - 39840642366.0*pow(c1, 10) + 11179084910.0*pow(c1, 8) - 1925151060.0*pow(c1, 6) + 189261204.0*pow(c1, 4) - 9189673.0*pow(c1, 2) + 156009.0)); case 28: return 7.45058059692383e-9*x1t*(1311953790868.0*pow(c0, 28) - 14693882457721.6*pow(c0, 27)*c1 + 9723892802904.0*pow(c0, 26)*(17.0*pow(c1, 2) - 1.0) - 14446926450028.8*pow(c0, 25)*c1*(68.0*pow(c1, 2) - 7.0) + 2149840245540.0*pow(c0, 24)*(2499.0*pow(c1, 4) - 490.0*pow(c1, 2) + 15.0) - 34397443928640.0*pow(c0, 23)*c1*(595.0*pow(c1, 4) - 168.0*pow(c1, 2) + 9.0) + 12624593782320.0*pow(c0, 22)*(5593.0*pow(c1, 6) - 2303.0*pow(c1, 4) + 235.0*pow(c1, 2) - 5.0) - 801561509988.571*pow(c0, 21)*c1*(234906.0*pow(c1, 6) - 126665.0*pow(c1, 4) + 18612.0*pow(c1, 2) - 693.0) + 81007810103220.0*pow(c0, 20)*(5593.0*pow(c1, 8) - 3948.0*pow(c1, 6) + 846.0*pow(c1, 4) - 60.0*pow(c1, 2) + 1.0) - 647415065760.0*pow(c0, 19)*c1*(1370285.0*pow(c1, 8) - 1197560.0*pow(c1, 6) + 336050.0*pow(c1, 4) - 34320.0*pow(c1, 2) + 1001.0) + 309906048920.0*pow(c0, 18)*(5050479.0*pow(c1, 10) - 5446595.0*pow(c1, 8) + 2000790.0*pow(c1, 6) - 297990.0*pow(c1, 4) + 16555.0*pow(c1, 2) - 231.0) - 171640273248.0*pow(c0, 17)*c1*(13467944.0*pow(c1, 10) - 17330075.0*pow(c1, 8) + 7881900.0*pow(c1, 6) - 1537250.0*pow(c1, 4) + 122980.0*pow(c1, 2) - 3003.0) + 44479948860.0*pow(c0, 16)*(69023213.0*pow(c1, 12) - 105564914.0*pow(c1, 10) + 59245615.0*pow(c1, 8) - 15126540.0*pow(c1, 6) + 1764763.0*pow(c1, 4) - 82082.0*pow(c1, 2) + 1001.0) - 31630185856.0*pow(c0, 15)*c1*(109625103.0*pow(c1, 12) - 194889072.0*pow(c1, 10) + 130506075.0*pow(c1, 8) - 41254200.0*pow(c1, 6) + 6302725.0*pow(c1, 4) - 422136.0*pow(c1, 2) + 9009.0) + 355839590880.0*pow(c0, 14)*(9860459.0*pow(c1, 14) - 20300945.0*pow(c1, 12) + 16157895.0*pow(c1, 10) - 6302725.0*pow(c1, 8) + 1260545.0*pow(c1, 6) - 123123.0*pow(c1, 4) + 5005.0*pow(c1, 2) - 55.0) - 10282258560.0*pow(c0, 13)*c1*(295813770.0*pow(c1, 14) - 694292319.0*pow(c1, 12) + 642338472.0*pow(c1, 10) - 298960725.0*pow(c1, 8) + 74028370.0*pow(c1, 6) - 9468745.0*pow(c1, 4) + 554268.0*pow(c1, 2) - 10659.0) + 12155181220.0*pow(c0, 12)*(193148991.0*pow(c1, 16) - 515063976.0*pow(c1, 14) + 551854260.0*pow(c1, 12) - 305281080.0*pow(c1, 10) + 93280330.0*pow(c1, 8) - 15619032.0*pow(c1, 6) + 1333332.0*pow(c1, 4) - 48840.0*pow(c1, 2) + 495.0) - 129024480.0*pow(c0, 11)*c1*(12039620439.0*pow(c1, 16) - 36054478320.0*pow(c1, 14) + 44037969948.0*pow(c1, 12) - 28317559872.0*pow(c1, 10) + 10324110370.0*pow(c1, 8) - 2140280688.0*pow(c1, 6) + 239259020.0*pow(c1, 4) - 12620256.0*pow(c1, 2) + 223839.0) + 354817320.0*pow(c0, 10)*(2553858881.0*pow(c1, 18) - 8562938601.0*pow(c1, 16) + 11883261732.0*pow(c1, 14) - 8849237460.0*pow(c1, 12) + 3834669566.0*pow(c1, 10) - 980961982.0*pow(c1, 8) + 143555412.0*pow(c1, 6) - 11042724.0*pow(c1, 4) + 373065.0*pow(c1, 2) - 3553.0) - 20569120.0*pow(c0, 9)*c1*(21890218980.0*pow(c1, 18) - 81444491205.0*pow(c1, 16) + 126926479800.0*pow(c1, 14) - 107752479660.0*pow(c1, 12) + 54275323088.0*pow(c1, 10) - 16566595710.0*pow(c1, 8) + 3001613160.0*pow(c1, 6) - 302360300.0*pow(c1, 4) + 14709420.0*pow(c1, 2) - 245157.0) + 532225980.0*pow(c0, 8)*(364836983.0*pow(c1, 20) - 1502269930.0*pow(c1, 18) + 2621307735.0*pow(c1, 16) - 2528353560.0*pow(c1, 14) + 1474872910.0*pow(c1, 12) - 535070172.0*pow(c1, 10) + 119629510.0*pow(c1, 8) - 15775320.0*pow(c1, 6) + 1119195.0*pow(c1, 4) - 35530.0*pow(c1, 2) + 323.0) - 2115680.91428571*pow(c0, 7)*c1*(33200165453.0*pow(c1, 20) - 150226993000.0*pow(c1, 18) + 290873182875.0*pow(c1, 16) - 315065730000.0*pow(c1, 14) + 209518710450.0*pow(c1, 12) - 88355177120.0*pow(c1, 10) + 23570359750.0*pow(c1, 8) - 3848222000.0*pow(c1, 6) + 357520625.0*pow(c1, 4) - 16343800.0*pow(c1, 2) + 260015.0) + 633360.0*pow(c0, 6)*(33929839419.0*pow(c1, 22) - 168318615157.0*pow(c1, 20) + 360682746765.0*pow(c1, 18) - 437423756715.0*pow(c1, 16) + 330497949518.0*pow(c1, 14) - 161405975346.0*pow(c1, 12) + 51177504378.0*pow(c1, 10) - 10310486230.0*pow(c1, 8) + 1253978055.0*pow(c1, 6) - 83598537.0*pow(c1, 4) + 2533289.0*pow(c1, 2) - 22287.0) - 371.2*pow(c0, 5)*c1*(14408871806602.0*pow(c1, 22) - 77916882416373.0*pow(c1, 20) + 183477745093500.0*pow(c1, 18) - 246914199514125.0*pow(c1, 16) + 209502957163500.0*pow(c1, 14) - 116639553360330.0*pow(c1, 12) + 42989103677520.0*pow(c1, 10) - 10333919153250.0*pow(c1, 8) + 1556072768250.0*pow(c1, 6) - 135847622625.0*pow(c1, 4) + 5927896260.0*pow(c1, 2) - 91265265.0) + 468.0*pow(c0, 4)*(2295919134019.0*pow(c1, 24) - 13505406670700.0*pow(c1, 22) + 34865998853950.0*pow(c1, 20) - 51928083399500.0*pow(c1, 18) + 49331679229525.0*pow(c1, 16) - 31205155233560.0*pow(c1, 14) + 13319273575300.0*pow(c1, 12) - 3805506735800.0*pow(c1, 10) + 707104292125.0*pow(c1, 8) - 80811919100.0*pow(c1, 6) + 5142576670.0*pow(c1, 4) - 150808700.0*pow(c1, 2) + 1300075.0) - 10.6666666666667*pow(c0, 3)*c1*(15438076935645.0*pow(c1, 24) - 98319360562696.0*pow(c1, 22) + 276684439600998.0*pow(c1, 20) - 452838690018000.0*pow(c1, 18) + 477367452393975.0*pow(c1, 16) - 339102460897200.0*pow(c1, 14) + 165002294997540.0*pow(c1, 12) - 54799296995520.0*pow(c1, 10) + 12149337382875.0*pow(c1, 8) - 1719089915400.0*pow(c1, 6) + 143257492950.0*pow(c1, 4) - 6049583280.0*pow(c1, 2) + 91265265.0) + 8.0*pow(c0, 2)*(2295919134019.0*pow(c1, 26) - 15801325804719.0*pow(c1, 24) + 48371405524650.0*pow(c1, 22) - 86794082253450.0*pow(c1, 20) + 101259762629025.0*pow(c1, 18) - 80536834463085.0*pow(c1, 16) + 44524428808860.0*pow(c1, 14) - 17124780311100.0*pow(c1, 12) + 4512611027925.0*pow(c1, 10) - 787916211225.0*pow(c1, 8) + 85954495770.0*pow(c1, 6) - 5293385370.0*pow(c1, 4) + 152108775.0*pow(c1, 2) - 1300075.0) - 32.0*c0*c1*pow(pow(c1, 2) - 1.0, 2)*(40861742096.0*pow(c1, 22) - 220983906703.0*pow(c1, 20) + 520429225750.0*pow(c1, 18) - 700458631875.0*pow(c1, 16) + 594424010600.0*pow(c1, 14) - 331007078990.0*pow(c1, 12) + 122027119620.0*pow(c1, 10) - 29342692750.0*pow(c1, 8) + 4420255000.0*pow(c1, 6) - 386122275.0*pow(c1, 4) + 16863830.0*pow(c1, 2) - 260015.0) + 1.33333333333333*pow(pow(c1, 2) - 1.0, 3)*(33929839419.0*pow(c1, 22) - 168318615157.0*pow(c1, 20) + 360682746765.0*pow(c1, 18) - 437423756715.0*pow(c1, 16) + 330497949518.0*pow(c1, 14) - 161405975346.0*pow(c1, 12) + 51177504378.0*pow(c1, 10) - 10310486230.0*pow(c1, 8) + 1253978055.0*pow(c1, 6) - 83598537.0*pow(c1, 4) + 2533289.0*pow(c1, 2) - 22287.0)); case 29: return 7.45058059692383e-9*x1t*(2397708652276.0*pow(c0, 29) - 27813420366401.6*pow(c0, 28)*c1 + 6122451024050.67*pow(c0, 27)*(53.0*pow(c1, 2) - 3.0) - 9446067294249.6*pow(c0, 26)*c1*(212.0*pow(c1, 2) - 21.0) + 12641060643775.2*pow(c0, 25)*(901.0*pow(c1, 4) - 170.0*pow(c1, 2) + 5.0) - 10032587812520.0*pow(c0, 24)*c1*(4505.0*pow(c1, 4) - 1224.0*pow(c1, 2) + 63.0) + 25798082946480.0*pow(c0, 23)*(6307.0*pow(c1, 6) - 2499.0*pow(c1, 4) + 245.0*pow(c1, 2) - 5.0) - 35960964107214.5*pow(c0, 22)*c1*(12614.0*pow(c1, 6) - 6545.0*pow(c1, 4) + 924.0*pow(c1, 2) - 33.0) + 3857514766820.0*pow(c0, 21)*(296429.0*pow(c1, 8) - 201348.0*pow(c1, 6) + 41454.0*pow(c1, 4) - 2820.0*pow(c1, 2) + 45.0) - 161853766440.0*pow(c0, 20)*c1*(14525021.0*pow(c1, 8) - 12215112.0*pow(c1, 6) + 3293290.0*pow(c1, 4) - 322608.0*pow(c1, 2) + 9009.0) + 14728692746040.0*pow(c0, 19)*(296429.0*pow(c1, 10) - 307615.0*pow(c1, 8) + 108570.0*pow(c1, 6) - 15510.0*pow(c1, 4) + 825.0*pow(c1, 2) - 11.0) - 410029541648.0*pow(c0, 18)*c1*(16600024.0*pow(c1, 10) - 20554275.0*pow(c1, 8) + 8981700.0*pow(c1, 6) - 1680250.0*pow(c1, 4) + 128700.0*pow(c1, 2) - 3003.0) + 107275170780.0*pow(c0, 17)*(89225129.0*pow(c1, 12) - 131312454.0*pow(c1, 10) + 70805735.0*pow(c1, 8) - 17340180.0*pow(c1, 6) + 1936935.0*pow(c1, 4) - 86086.0*pow(c1, 2) + 1001.0) - 729471161304.0*pow(c0, 16)*c1*(15745611.0*pow(c1, 12) - 26935888.0*pow(c1, 10) + 17330075.0*pow(c1, 8) - 5254600.0*pow(c1, 6) + 768625.0*pow(c1, 4) - 49192.0*pow(c1, 2) + 1001.0) + 23722639392.0*pow(c0, 15)*(522604327.0*pow(c1, 14) - 1035348195.0*pow(c1, 12) + 791736855.0*pow(c1, 10) - 296228075.0*pow(c1, 8) + 56724525.0*pow(c1, 6) - 5294289.0*pow(c1, 4) + 205205.0*pow(c1, 2) - 2145.0) - 12485599680.0*pow(c0, 14)*c1*(922242930.0*pow(c1, 14) - 2082876957.0*pow(c1, 12) + 1851446184.0*pow(c1, 10) - 826538475.0*pow(c1, 8) + 195957450.0*pow(c1, 6) - 23950355.0*pow(c1, 4) + 1336764.0*pow(c1, 2) - 24453.0) + 311359642020.0*pow(c0, 13)*(30741431.0*pow(c1, 16) - 78883672.0*pow(c1, 14) + 81203780.0*pow(c1, 12) - 43087720.0*pow(c1, 10) + 12605450.0*pow(c1, 8) - 2016872.0*pow(c1, 6) + 164164.0*pow(c1, 4) - 5720.0*pow(c1, 2) + 55.0) - 397825480.0*pow(c0, 12)*c1*(17245942791.0*pow(c1, 16) - 49696713360.0*pow(c1, 14) + 58320554796.0*pow(c1, 12) - 35970954432.0*pow(c1, 10) + 12556350450.0*pow(c1, 8) - 2487353232.0*pow(c1, 6) + 265124860.0*pow(c1, 4) - 13302432.0*pow(c1, 2) + 223839.0) + 3838478280.0*pow(c0, 11)*(1137432947.0*pow(c1, 18) - 3669830829.0*pow(c1, 16) + 4893107772.0*pow(c1, 14) - 3495076980.0*pow(c1, 12) + 1450085130.0*pow(c1, 10) - 354465254.0*pow(c1, 8) + 49460268.0*pow(c1, 6) - 3619044.0*pow(c1, 4) + 115995.0*pow(c1, 2) - 1045.0) - 30853680.0*pow(c0, 10)*c1*(77345440396.0*pow(c1, 18) - 276911270097.0*pow(c1, 16) + 414626500680.0*pow(c1, 14) - 337624436268.0*pow(c1, 12) + 162825969264.0*pow(c1, 10) - 47490907702.0*pow(c1, 8) + 8204409304.0*pow(c1, 6) - 786136780.0*pow(c1, 4) + 36283236.0*pow(c1, 2) - 572033.0) + 59136220.0*pow(c0, 9)*(19336360099.0*pow(c1, 20) - 76615766430.0*pow(c1, 18) + 128444079015.0*pow(c1, 16) - 118832617320.0*pow(c1, 14) + 66369280950.0*pow(c1, 12) - 23008017396.0*pow(c1, 10) + 4904809910.0*pow(c1, 8) - 615237480.0*pow(c1, 6) + 41410215.0*pow(c1, 4) - 1243550.0*pow(c1, 2) + 10659.0) - 1851220.8*pow(c0, 8)*c1*(251372681287.0*pow(c1, 20) - 1094510949000.0*pow(c1, 18) + 2036112280125.0*pow(c1, 16) - 2115441330000.0*pow(c1, 14) + 1346905995750.0*pow(c1, 12) - 542753230880.0*pow(c1, 10) + 138054964250.0*pow(c1, 8) - 21440094000.0*pow(c1, 6) + 1889751875.0*pow(c1, 4) - 81719000.0*pow(c1, 2) + 1225785.0) + 8414640.0*pow(c0, 7)*(19336360099.0*pow(c1, 22) - 92303756699.0*pow(c1, 20) + 190037146145.0*pow(c1, 18) - 221063618985.0*pow(c1, 16) + 159918362670.0*pow(c1, 14) - 74628569246.0*pow(c1, 12) + 22562125586.0*pow(c1, 10) - 4323752290.0*pow(c1, 8) + 498894495.0*pow(c1, 6) - 31461815.0*pow(c1, 4) + 898909.0*pow(c1, 2) - 7429.0) - 24932.2666666667*pow(c0, 6)*c1*(1894963289702.0*pow(c1, 22) - 9860449139541.0*pow(c1, 20) + 22308708460500.0*pow(c1, 18) - 28796445104625.0*pow(c1, 16) + 23393630452500.0*pow(c1, 14) - 12445411400730.0*pow(c1, 12) + 4373581267440.0*pow(c1, 10) - 1000056692250.0*pow(c1, 8) + 142865241750.0*pow(c1, 6) - 11798180625.0*pow(c1, 4) + 485410860.0*pow(c1, 2) - 7020405.0) + 19000.8*pow(c0, 5)*(599427163069.0*pow(c1, 24) - 3392983941900.0*pow(c1, 22) + 8415930757850.0*pow(c1, 20) - 12022758225500.0*pow(c1, 18) + 10935593917875.0*pow(c1, 16) - 6609958990360.0*pow(c1, 14) + 2690099589100.0*pow(c1, 12) - 731107205400.0*pow(c1, 10) + 128881077875.0*pow(c1, 8) - 13933089500.0*pow(c1, 6) + 835985370.0*pow(c1, 4) - 23029900.0*pow(c1, 2) + 185725.0) - 8.0*pow(c0, 4)*c1*(272739359196395.0*pow(c1, 24) - 1.67142912956583e+15*pow(c1, 22) + 4.51917918014963e+15*pow(c1, 20) - 7.094472810282e+15*pow(c1, 18) + 7.16051178590963e+15*pow(c1, 16) - 4.8604686061932e+15*pow(c1, 14) + 2.25503136496638e+15*pow(c1, 12) - 712390860941760.0*pow(c1, 10) + 149841827722125.0*pow(c1, 8) - 20056049013000.0*pow(c1, 6) + 1575832422450.0*pow(c1, 4) - 62512360560.0*pow(c1, 2) + 882230895.0) + 2.66666666666667*pow(c0, 3)*(121683714103007.0*pow(c1, 26) - 805867616040669.0*pow(c1, 24) + 2.37019887070785e+15*pow(c1, 22) - 4.07932186591215e+15*pow(c1, 20) + 4.55668931830613e+15*pow(c1, 18) - 3.46308388191266e+15*pow(c1, 16) + 1.82550158116326e+15*pow(c1, 14) - 667866432132900.0*pow(c1, 12) + 166966608033225.0*pow(c1, 10) - 27577067392875.0*pow(c1, 8) + 2836498360410.0*pow(c1, 6) - 164094946470.0*pow(c1, 4) + 4411154475.0*pow(c1, 2) - 35102025.0) - 16.0*pow(c0, 2)*c1*(2165672331088.0*pow(c1, 26) - 15438076935645.0*pow(c1, 24) + 49159680281348.0*pow(c1, 22) - 92228146533666.0*pow(c1, 20) + 113209672504500.0*pow(c1, 18) - 95473490478795.0*pow(c1, 16) + 56517076816200.0*pow(c1, 14) - 23571756428220.0*pow(c1, 12) + 6849912124440.0*pow(c1, 10) - 1349926375875.0*pow(c1, 8) + 171908991540.0*pow(c1, 6) - 13023408450.0*pow(c1, 4) + 504131940.0*pow(c1, 2) - 7020405.0) + 4.0*c0*pow(pow(c1, 2) - 1.0, 2)*(599427163069.0*pow(c1, 24) - 3392983941900.0*pow(c1, 22) + 8415930757850.0*pow(c1, 20) - 12022758225500.0*pow(c1, 18) + 10935593917875.0*pow(c1, 16) - 6609958990360.0*pow(c1, 14) + 2690099589100.0*pow(c1, 12) - 731107205400.0*pow(c1, 10) + 128881077875.0*pow(c1, 8) - 13933089500.0*pow(c1, 6) + 835985370.0*pow(c1, 4) - 23029900.0*pow(c1, 2) + 185725.0) - 0.242424242424242*c1*pow(pow(c1, 2) - 1.0, 3)*(328718121683.0*pow(c1, 22) - 1710720613287.0*pow(c1, 20) + 3871027694625.0*pow(c1, 18) - 4997730142125.0*pow(c1, 16) + 4060972212750.0*pow(c1, 14) - 2161035842070.0*pow(c1, 12) + 759696746130.0*pow(c1, 10) - 173788454250.0*pow(c1, 8) + 24841647375.0*pow(c1, 6) - 2053189875.0*pow(c1, 4) + 84579165.0*pow(c1, 2) - 1225785.0)); default: return 0.; } case 1: switch(j) { case 0: return 0.00119047619047619*x1r*y1t*(35.0*pow(c0, 3) - 21.0*pow(c0, 2)*c1 + 21.0*c0*(pow(c1, 2) - 5.0) - 3.0*pow(c1, 3) + 21.0*c1 + 70.0); case 1: return 0.000595238095238095*x1r*y1r*(-3.0*pow(c1, 3) + pow(c1, 2)*(21.0*c0 - 7.0) + c1*(7.0*c0*(-3.0*c0 + 2.0) + 7.0) + 35.0*pow(c0 - 1.0, 2)*(c0 + 1.0)); case 2: return -0.00119047619047619*x1r*y2t*(35.0*pow(c0, 3) - 21.0*pow(c0, 2)*c1 + 21.0*c0*(pow(c1, 2) - 5.0) - 3.0*pow(c1, 3) + 21.0*c1 - 70.0); case 3: return 0.000595238095238095*x1r*y2r*(-3.0*pow(c1, 3) + pow(c1, 2)*(21.0*c0 + 7.0) - c1*(3.0*c0 - 1.0)*(7.0*c0 + 7.0) + pow(c0 + 1.0, 2)*(35.0*c0 - 35.0)); case 4: return 0.000595238095238095*x1r*(35.0*pow(c0, 4) - 28.0*pow(c0, 3)*c1 + 14.0*pow(c0, 2)*(3.0*pow(c1, 2) - 5.0) - 4.0*c0*c1*(3.0*pow(c1, 2) - 7.0) + 3.0*pow(c1, 4) - 14.0*pow(c1, 2) + 35.0); case 5: return 0.000198412698412698*x1r*(105.0*pow(c0, 5) - 105.0*pow(c0, 4)*c1 + 210.0*pow(c0, 3)*(pow(c1, 2) - 1.0) - 18.0*pow(c0, 2)*c1*(5.0*pow(c1, 2) - 7.0) + 3.0*c0*(15.0*pow(c1, 4) - 42.0*pow(c1, 2) + 35.0) - 5.0*pow(c1, 5) + 18.0*pow(c1, 3) - 21.0*c1); case 6: return 3.30687830687831e-5*x1r*(735.0*pow(c0, 6) - 882.0*pow(c0, 5)*c1 + 315.0*pow(c0, 4)*(7.0*pow(c1, 2) - 5.0) - 1260.0*pow(c0, 3)*c1*(pow(c1, 2) - 1.0) + 945.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2) - 6.0*c0*c1*(35.0*pow(c1, 4) - 90.0*pow(c1, 2) + 63.0) + 35.0*pow(c1, 6) - 135.0*pow(c1, 4) + 189.0*pow(c1, 2) - 105.0); case 7: return 0.0078125*x1r*(4.0*pow(c0, 7) - 5.6*pow(c0, 6)*c1 + 1.86666666666667*pow(c0, 5)*(9.0*pow(c1, 2) - 5.0) - 1.33333333333333*pow(c0, 4)*c1*(9.0*pow(c1, 2) - 7.0) + 1.33333333333333*pow(c0, 3)*(9.0*pow(c1, 4) - 14.0*pow(c1, 2) + 5.0) - 4.0*pow(c0, 2)*c1*pow(pow(c1, 2) - 1.0, 2) + 1.33333333333333*c0*pow(pow(c1, 2) - 1.0, 3) - 0.121212121212121*pow(c1, 7) + 0.444444444444444*pow(c1, 5) - 0.571428571428571*pow(c1, 3) + 0.266666666666667*c1); case 8: return 0.000260416666666667*x1r*(165.0*pow(c0, 8) - 264.0*pow(c0, 7)*c1 + 84.0*pow(c0, 6)*(11.0*pow(c1, 2) - 5.0) - 72.0*pow(c0, 5)*c1*(11.0*pow(c1, 2) - 7.0) + 10.0*pow(c0, 4)*(99.0*pow(c1, 4) - 126.0*pow(c1, 2) + 35.0) - 40.0*pow(c0, 3)*c1*(11.0*pow(c1, 4) - 18.0*pow(c1, 2) + 7.0) + 20.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2)*(11.0*pow(c1, 2) - 5.0) - 40.0*c0*c1*pow(pow(c1, 2) - 1.0, 3) + 5.0*pow(pow(c1, 2) - 1.0, 4)); case 9: return 8.68055555555556e-5*x1r*(715.0*pow(c0, 9) - 1287.0*pow(c0, 8)*c1 + 396.0*pow(c0, 7)*(13.0*pow(c1, 2) - 5.0) - 396.0*pow(c0, 6)*c1*(13.0*pow(c1, 2) - 7.0) + 54.0*pow(c0, 5)*(143.0*pow(c1, 4) - 154.0*pow(c1, 2) + 35.0) - 30.0*pow(c0, 4)*c1*(143.0*pow(c1, 4) - 198.0*pow(c1, 2) + 63.0) + 20.0*pow(c0, 3)*(143.0*pow(c1, 6) - 297.0*pow(c1, 4) + 189.0*pow(c1, 2) - 35.0) - 60.0*pow(c0, 2)*c1*pow(pow(c1, 2) - 1.0, 2)*(13.0*pow(c1, 2) - 7.0) + 15.0*c0*pow(pow(c1, 2) - 1.0, 3)*(13.0*pow(c1, 2) - 5.0) - 15.0*c1*pow(pow(c1, 2) - 1.0, 4)); case 10: return 1.86011904761905e-5*x1r*(5005.0*pow(c0, 10) - 10010.0*pow(c0, 9)*c1 + 15015.0*pow(c0, 8)*(3.0*pow(c1, 2) - 1.0) - 3432.0*pow(c0, 7)*c1*(15.0*pow(c1, 2) - 7.0) + 462.0*pow(c0, 6)*(195.0*pow(c1, 4) - 182.0*pow(c1, 2) + 35.0) - 924.0*pow(c0, 5)*c1*(65.0*pow(c1, 4) - 78.0*pow(c1, 2) + 21.0) + 70.0*pow(c0, 4)*(715.0*pow(c1, 6) - 1287.0*pow(c1, 4) + 693.0*pow(c1, 2) - 105.0) - 280.0*pow(c0, 3)*c1*(65.0*pow(c1, 6) - 143.0*pow(c1, 4) + 99.0*pow(c1, 2) - 21.0) + 35.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2)*(195.0*pow(c1, 4) - 182.0*pow(c1, 2) + 35.0) - 70.0*c0*c1*pow(pow(c1, 2) - 1.0, 3)*(15.0*pow(c1, 2) - 7.0) + 35.0*pow(pow(c1, 2) - 1.0, 4)*(3.0*pow(c1, 2) - 1.0)); case 11: return 1.86011904761905e-5*x1r*(7735.0*pow(c0, 11) - 17017.0*pow(c0, 10)*c1 + 5005.0*pow(c0, 9)*(17.0*pow(c1, 2) - 5.0) - 6435.0*pow(c0, 8)*c1*(17.0*pow(c1, 2) - 7.0) + 4290.0*pow(c0, 7)*(51.0*pow(c1, 4) - 42.0*pow(c1, 2) + 7.0) - 2002.0*pow(c0, 6)*c1*(85.0*pow(c1, 4) - 90.0*pow(c1, 2) + 21.0) + 154.0*pow(c0, 5)*(1105.0*pow(c1, 6) - 1755.0*pow(c1, 4) + 819.0*pow(c1, 2) - 105.0) - 70.0*pow(c0, 4)*c1*(1105.0*pow(c1, 6) - 2145.0*pow(c1, 4) + 1287.0*pow(c1, 2) - 231.0) + 35.0*pow(c0, 3)*(1105.0*pow(c1, 8) - 2860.0*pow(c1, 6) + 2574.0*pow(c1, 4) - 924.0*pow(c1, 2) + 105.0) - 105.0*pow(c0, 2)*c1*pow(pow(c1, 2) - 1.0, 2)*(85.0*pow(c1, 4) - 90.0*pow(c1, 2) + 21.0) + 35.0*c0*pow(pow(c1, 2) - 1.0, 3)*(51.0*pow(c1, 4) - 42.0*pow(c1, 2) + 7.0) - 7.0*c1*pow(pow(c1, 2) - 1.0, 4)*(17.0*pow(c1, 2) - 7.0)); case 12: return 1.55009920634921e-6*x1r*(146965.0*pow(c0, 12) - 352716.0*pow(c0, 11)*c1 + 102102.0*pow(c0, 10)*(19.0*pow(c1, 2) - 5.0) - 145860.0*pow(c0, 9)*c1*(19.0*pow(c1, 2) - 7.0) + 19305.0*pow(c0, 8)*(323.0*pow(c1, 4) - 238.0*pow(c1, 2) + 35.0) - 17160.0*pow(c0, 7)*c1*(323.0*pow(c1, 4) - 306.0*pow(c1, 2) + 63.0) + 20020.0*pow(c0, 6)*(323.0*pow(c1, 6) - 459.0*pow(c1, 4) + 189.0*pow(c1, 2) - 21.0) - 2184.0*pow(c0, 5)*c1*(1615.0*pow(c1, 6) - 2805.0*pow(c1, 4) + 1485.0*pow(c1, 2) - 231.0) + 105.0*pow(c0, 4)*(20995.0*pow(c1, 8) - 48620.0*pow(c1, 6) + 38610.0*pow(c1, 4) - 12012.0*pow(c1, 2) + 1155.0) - 420.0*pow(c0, 3)*c1*(1615.0*pow(c1, 8) - 4420.0*pow(c1, 6) + 4290.0*pow(c1, 4) - 1716.0*pow(c1, 2) + 231.0) + 630.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2)*(323.0*pow(c1, 6) - 459.0*pow(c1, 4) + 189.0*pow(c1, 2) - 21.0) - 84.0*c0*c1*pow(pow(c1, 2) - 1.0, 3)*(323.0*pow(c1, 4) - 306.0*pow(c1, 2) + 63.0) + 7.0*pow(pow(c1, 2) - 1.0, 4)*(323.0*pow(c1, 4) - 238.0*pow(c1, 2) + 35.0)); case 13: return 4.65029761904762e-6*x1r*(79135.0*pow(c0, 13) - 205751.0*pow(c0, 12)*c1 + 58786.0*pow(c0, 11)*(21.0*pow(c1, 2) - 5.0) - 646646.0*pow(c0, 10)*c1*(3.0*pow(c1, 2) - 1.0) + 85085.0*pow(c0, 9)*(57.0*pow(c1, 4) - 38.0*pow(c1, 2) + 5.0) - 36465.0*pow(c0, 8)*c1*(133.0*pow(c1, 4) - 114.0*pow(c1, 2) + 21.0) + 2860.0*pow(c0, 7)*(2261.0*pow(c1, 6) - 2907.0*pow(c1, 4) + 1071.0*pow(c1, 2) - 105.0) - 1820.0*pow(c0, 6)*c1*(2261.0*pow(c1, 6) - 3553.0*pow(c1, 4) + 1683.0*pow(c1, 2) - 231.0) + 455.0*pow(c0, 5)*(6783.0*pow(c1, 8) - 14212.0*pow(c1, 6) + 10098.0*pow(c1, 4) - 2772.0*pow(c1, 2) + 231.0) - 35.0*pow(c0, 4)*c1*(33915.0*pow(c1, 8) - 83980.0*pow(c1, 6) + 72930.0*pow(c1, 4) - 25740.0*pow(c1, 2) + 3003.0) + 70.0*pow(c0, 3)*(6783.0*pow(c1, 10) - 20995.0*pow(c1, 8) + 24310.0*pow(c1, 6) - 12870.0*pow(c1, 4) + 3003.0*pow(c1, 2) - 231.0) - 42.0*pow(c0, 2)*c1*pow(pow(c1, 2) - 1.0, 2)*(2261.0*pow(c1, 6) - 3553.0*pow(c1, 4) + 1683.0*pow(c1, 2) - 231.0) + 7.0*c0*pow(pow(c1, 2) - 1.0, 3)*(2261.0*pow(c1, 6) - 2907.0*pow(c1, 4) + 1071.0*pow(c1, 2) - 105.0) - 7.0*c1*pow(pow(c1, 2) - 1.0, 4)*(133.0*pow(c1, 4) - 114.0*pow(c1, 2) + 21.0)); case 14: return 7.75049603174603e-7*x1r*(780045.0*pow(c0, 14) - 2184126.0*pow(c0, 13)*c1 + 617253.0*pow(c0, 12)*(23.0*pow(c1, 2) - 5.0) - 1058148.0*pow(c0, 11)*c1*(23.0*pow(c1, 2) - 7.0) + 969969.0*pow(c0, 10)*(69.0*pow(c1, 4) - 42.0*pow(c1, 2) + 5.0) - 3233230.0*pow(c0, 9)*c1*(23.0*pow(c1, 4) - 18.0*pow(c1, 2) + 3.0) + 255255.0*pow(c0, 8)*(437.0*pow(c1, 6) - 513.0*pow(c1, 4) + 171.0*pow(c1, 2) - 15.0) - 26520.0*pow(c0, 7)*c1*(3059.0*pow(c1, 6) - 4389.0*pow(c1, 4) + 1881.0*pow(c1, 2) - 231.0) + 1365.0*pow(c0, 6)*(52003.0*pow(c1, 8) - 99484.0*pow(c1, 6) + 63954.0*pow(c1, 4) - 15708.0*pow(c1, 2) + 1155.0) - 630.0*pow(c0, 5)*c1*(52003.0*pow(c1, 8) - 117572.0*pow(c1, 6) + 92378.0*pow(c1, 4) - 29172.0*pow(c1, 2) + 3003.0) + 105.0*pow(c0, 4)*(156009.0*pow(c1, 10) - 440895.0*pow(c1, 8) + 461890.0*pow(c1, 6) - 218790.0*pow(c1, 4) + 45045.0*pow(c1, 2) - 3003.0) - 84.0*pow(c0, 3)*c1*(52003.0*pow(c1, 10) - 169575.0*pow(c1, 8) + 209950.0*pow(c1, 6) - 121550.0*pow(c1, 4) + 32175.0*pow(c1, 2) - 3003.0) + 21.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2)*(52003.0*pow(c1, 8) - 99484.0*pow(c1, 6) + 63954.0*pow(c1, 4) - 15708.0*pow(c1, 2) + 1155.0) - 42.0*c0*c1*pow(pow(c1, 2) - 1.0, 3)*(3059.0*pow(c1, 6) - 4389.0*pow(c1, 4) + 1881.0*pow(c1, 2) - 231.0) + 21.0*pow(pow(c1, 2) - 1.0, 4)*(437.0*pow(c1, 6) - 513.0*pow(c1, 4) + 171.0*pow(c1, 2) - 15.0)); case 15: return 1.80844907407407e-6*x1r*(557175.0*pow(c0, 15) - 1671525.0*pow(c0, 14)*c1 + 2340135.0*pow(c0, 13)*(5.0*pow(c1, 2) - 1.0) - 869193.0*pow(c0, 12)*c1*(25.0*pow(c1, 2) - 7.0) + 113373.0*pow(c0, 11)*(575.0*pow(c1, 4) - 322.0*pow(c1, 2) + 35.0) - 138567.0*pow(c0, 10)*c1*(575.0*pow(c1, 4) - 414.0*pow(c1, 2) + 63.0) + 230945.0*pow(c0, 9)*(575.0*pow(c1, 6) - 621.0*pow(c1, 4) + 189.0*pow(c1, 2) - 15.0) - 188955.0*pow(c0, 8)*c1*(575.0*pow(c1, 6) - 759.0*pow(c1, 4) + 297.0*pow(c1, 2) - 33.0) + 9945.0*pow(c0, 7)*(10925.0*pow(c1, 8) - 19228.0*pow(c1, 6) + 11286.0*pow(c1, 4) - 2508.0*pow(c1, 2) + 165.0) - 765.0*pow(c0, 6)*c1*(76475.0*pow(c1, 8) - 159068.0*pow(c1, 6) + 114114.0*pow(c1, 4) - 32604.0*pow(c1, 2) + 3003.0) + 135.0*pow(c0, 5)*(260015.0*pow(c1, 10) - 676039.0*pow(c1, 8) + 646646.0*pow(c1, 6) - 277134.0*pow(c1, 4) + 51051.0*pow(c1, 2) - 3003.0) - 45.0*pow(c0, 4)*c1*(260015.0*pow(c1, 10) - 780045.0*pow(c1, 8) + 881790.0*pow(c1, 6) - 461890.0*pow(c1, 4) + 109395.0*pow(c1, 2) - 9009.0) + 15.0*pow(c0, 3)*(260015.0*pow(c1, 12) - 936054.0*pow(c1, 10) + 1322685.0*pow(c1, 8) - 923780.0*pow(c1, 6) + 328185.0*pow(c1, 4) - 54054.0*pow(c1, 2) + 3003.0) - 9.0*pow(c0, 2)*c1*pow(pow(c1, 2) - 1.0, 2)*(76475.0*pow(c1, 8) - 159068.0*pow(c1, 6) + 114114.0*pow(c1, 4) - 32604.0*pow(c1, 2) + 3003.0) + 9.0*c0*pow(pow(c1, 2) - 1.0, 3)*(10925.0*pow(c1, 8) - 19228.0*pow(c1, 6) + 11286.0*pow(c1, 4) - 2508.0*pow(c1, 2) + 165.0) - 9.0*c1*pow(pow(c1, 2) - 1.0, 4)*(575.0*pow(c1, 6) - 759.0*pow(c1, 4) + 297.0*pow(c1, 2) - 33.0)); case 16: return 3.39084201388889e-7*x1r*(5014575.0*pow(c0, 16) - 16046640.0*pow(c0, 15)*c1 + 4457400.0*pow(c0, 14)*(27.0*pow(c1, 2) - 5.0) - 8914800.0*pow(c0, 13)*c1*(27.0*pow(c1, 2) - 7.0) + 5794620.0*pow(c0, 12)*(135.0*pow(c1, 4) - 70.0*pow(c1, 2) + 7.0) - 13907088.0*pow(c0, 11)*c1*(75.0*pow(c1, 4) - 50.0*pow(c1, 2) + 7.0) + 1108536.0*pow(c0, 10)*(1725.0*pow(c1, 6) - 1725.0*pow(c1, 4) + 483.0*pow(c1, 2) - 35.0) - 335920.0*pow(c0, 9)*c1*(5175.0*pow(c1, 6) - 6325.0*pow(c1, 4) + 2277.0*pow(c1, 2) - 231.0) + 125970.0*pow(c0, 8)*(15525.0*pow(c1, 8) - 25300.0*pow(c1, 6) + 13662.0*pow(c1, 4) - 2772.0*pow(c1, 2) + 165.0) - 77520.0*pow(c0, 7)*c1*(15525.0*pow(c1, 8) - 29900.0*pow(c1, 6) + 19734.0*pow(c1, 4) - 5148.0*pow(c1, 2) + 429.0) + 14280.0*pow(c0, 6)*(58995.0*pow(c1, 10) - 142025.0*pow(c1, 8) + 124982.0*pow(c1, 6) - 48906.0*pow(c1, 4) + 8151.0*pow(c1, 2) - 429.0) - 2448.0*pow(c0, 5)*c1*(137655.0*pow(c1, 10) - 382375.0*pow(c1, 8) + 397670.0*pow(c1, 6) - 190190.0*pow(c1, 4) + 40755.0*pow(c1, 2) - 3003.0) + 60.0*pow(c0, 4)*(2340135.0*pow(c1, 12) - 7800450.0*pow(c1, 10) + 10140585.0*pow(c1, 8) - 6466460.0*pow(c1, 6) + 2078505.0*pow(c1, 4) - 306306.0*pow(c1, 2) + 15015.0) - 240.0*pow(c0, 3)*c1*(137655.0*pow(c1, 12) - 520030.0*pow(c1, 10) + 780045.0*pow(c1, 8) - 587860.0*pow(c1, 6) + 230945.0*pow(c1, 4) - 43758.0*pow(c1, 2) + 3003.0) + 120.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2)*(58995.0*pow(c1, 10) - 142025.0*pow(c1, 8) + 124982.0*pow(c1, 6) - 48906.0*pow(c1, 4) + 8151.0*pow(c1, 2) - 429.0) - 48.0*c0*c1*pow(pow(c1, 2) - 1.0, 3)*(15525.0*pow(c1, 8) - 29900.0*pow(c1, 6) + 19734.0*pow(c1, 4) - 5148.0*pow(c1, 2) + 429.0) + 3.0*pow(pow(c1, 2) - 1.0, 4)*(15525.0*pow(c1, 8) - 25300.0*pow(c1, 6) + 13662.0*pow(c1, 4) - 2772.0*pow(c1, 2) + 165.0)); case 17: return 1.45321800595238e-7*x1r*(19959975.0*pow(c0, 17) - 67863915.0*pow(c0, 16)*c1 + 18721080.0*pow(c0, 15)*(29.0*pow(c1, 2) - 5.0) - 40116600.0*pow(c0, 14)*c1*(29.0*pow(c1, 2) - 7.0) + 5200300.0*pow(c0, 13)*(783.0*pow(c1, 4) - 378.0*pow(c1, 2) + 35.0) - 67603900.0*pow(c0, 12)*c1*(87.0*pow(c1, 4) - 54.0*pow(c1, 2) + 7.0) + 27041560.0*pow(c0, 11)*(435.0*pow(c1, 6) - 405.0*pow(c1, 4) + 105.0*pow(c1, 2) - 7.0) - 5408312.0*pow(c0, 10)*c1*(2175.0*pow(c1, 6) - 2475.0*pow(c1, 4) + 825.0*pow(c1, 2) - 77.0) + 293930.0*pow(c0, 9)*(50025.0*pow(c1, 8) - 75900.0*pow(c1, 6) + 37950.0*pow(c1, 4) - 7084.0*pow(c1, 2) + 385.0) - 67830.0*pow(c0, 8)*c1*(150075.0*pow(c1, 8) - 269100.0*pow(c1, 6) + 164450.0*pow(c1, 4) - 39468.0*pow(c1, 2) + 3003.0) + 90440.0*pow(c0, 7)*(90045.0*pow(c1, 10) - 201825.0*pow(c1, 8) + 164450.0*pow(c1, 6) - 59202.0*pow(c1, 4) + 9009.0*pow(c1, 2) - 429.0) - 126616.0*pow(c0, 6)*c1*(30015.0*pow(c1, 10) - 77625.0*pow(c1, 8) + 74750.0*pow(c1, 6) - 32890.0*pow(c1, 4) + 6435.0*pow(c1, 2) - 429.0) + 3332.0*pow(c0, 5)*(570285.0*pow(c1, 12) - 1769850.0*pow(c1, 10) + 2130375.0*pow(c1, 8) - 1249820.0*pow(c1, 6) + 366795.0*pow(c1, 4) - 48906.0*pow(c1, 2) + 2145.0) - 140.0*pow(c0, 4)*c1*(3991995.0*pow(c1, 12) - 14040810.0*pow(c1, 10) + 19501125.0*pow(c1, 8) - 13520780.0*pow(c1, 6) + 4849845.0*pow(c1, 4) - 831402.0*pow(c1, 2) + 51051.0) + 280.0*pow(c0, 3)*(570285.0*pow(c1, 14) - 2340135.0*pow(c1, 12) + 3900225.0*pow(c1, 10) - 3380195.0*pow(c1, 8) + 1616615.0*pow(c1, 6) - 415701.0*pow(c1, 4) + 51051.0*pow(c1, 2) - 2145.0) - 840.0*pow(c0, 2)*c1*pow(pow(c1, 2) - 1.0, 2)*(30015.0*pow(c1, 10) - 77625.0*pow(c1, 8) + 74750.0*pow(c1, 6) - 32890.0*pow(c1, 4) + 6435.0*pow(c1, 2) - 429.0) + 35.0*c0*pow(pow(c1, 2) - 1.0, 3)*(90045.0*pow(c1, 10) - 201825.0*pow(c1, 8) + 164450.0*pow(c1, 6) - 59202.0*pow(c1, 4) + 9009.0*pow(c1, 2) - 429.0) - c1*pow(pow(c1, 2) - 1.0, 4)*(150075.0*pow(c1, 8) - 269100.0*pow(c1, 6) + 164450.0*pow(c1, 4) - 39468.0*pow(c1, 2) + 3003.0)); case 18: return 6.35782877604167e-7*x1r*(7857260.0*pow(c0, 18) - 28286136.0*pow(c0, 17)*c1 + 7755876.0*pow(c0, 16)*(31.0*pow(c1, 2) - 5.0) - 17727716.5714286*pow(c0, 15)*c1*(31.0*pow(c1, 2) - 7.0) + 2292377.14285714*pow(c0, 14)*(899.0*pow(c1, 4) - 406.0*pow(c1, 2) + 35.0) - 3565920.0*pow(c0, 13)*c1*(899.0*pow(c1, 4) - 522.0*pow(c1, 2) + 63.0) + 2575386.66666667*pow(c0, 12)*(2697.0*pow(c1, 6) - 2349.0*pow(c1, 4) + 567.0*pow(c1, 2) - 35.0) - 2809512.72727273*pow(c0, 11)*c1*(2697.0*pow(c1, 6) - 2871.0*pow(c1, 4) + 891.0*pow(c1, 2) - 77.0) + 772616.0*pow(c0, 10)*(13485.0*pow(c1, 8) - 19140.0*pow(c1, 6) + 8910.0*pow(c1, 4) - 1540.0*pow(c1, 2) + 77.0) - 118864.0*pow(c0, 9)*c1*(67425.0*pow(c1, 8) - 113100.0*pow(c1, 6) + 64350.0*pow(c1, 4) - 14300.0*pow(c1, 2) + 1001.0) + 23256.0*pow(c0, 8)*(310155.0*pow(c1, 10) - 650325.0*pow(c1, 8) + 493350.0*pow(c1, 6) - 164450.0*pow(c1, 4) + 23023.0*pow(c1, 2) - 1001.0) - 4134.4*pow(c0, 7)*c1*(930465.0*pow(c1, 10) - 2251125.0*pow(c1, 8) + 2018250.0*pow(c1, 6) - 822250.0*pow(c1, 4) + 148005.0*pow(c1, 2) - 9009.0) + 2411.73333333333*pow(c0, 6)*(930465.0*pow(c1, 12) - 2701350.0*pow(c1, 10) + 3027375.0*pow(c1, 8) - 1644500.0*pow(c1, 6) + 444015.0*pow(c1, 4) - 54054.0*pow(c1, 2) + 2145.0) - 851.2*pow(c0, 5)*c1*(930465.0*pow(c1, 12) - 3061530.0*pow(c1, 10) + 3958875.0*pow(c1, 8) - 2541500.0*pow(c1, 6) + 838695.0*pow(c1, 4) - 131274.0*pow(c1, 2) + 7293.0) + 16.0*pow(c0, 4)*(17678835.0*pow(c1, 14) - 67863915.0*pow(c1, 12) + 105306075.0*pow(c1, 10) - 84504875.0*pow(c1, 8) + 37182145.0*pow(c1, 6) - 8729721.0*pow(c1, 4) + 969969.0*pow(c1, 2) - 36465.0) - 64.0*pow(c0, 3)*c1*(930465.0*pow(c1, 14) - 3991995.0*pow(c1, 12) + 7020405.0*pow(c1, 10) - 6500375.0*pow(c1, 8) + 3380195.0*pow(c1, 6) - 969969.0*pow(c1, 4) + 138567.0*pow(c1, 2) - 7293.0) + 12.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2)*(930465.0*pow(c1, 12) - 2701350.0*pow(c1, 10) + 3027375.0*pow(c1, 8) - 1644500.0*pow(c1, 6) + 444015.0*pow(c1, 4) - 54054.0*pow(c1, 2) + 2145.0) - 1.14285714285714*c0*c1*pow(pow(c1, 2) - 1.0, 3)*(930465.0*pow(c1, 10) - 2251125.0*pow(c1, 8) + 2018250.0*pow(c1, 6) - 822250.0*pow(c1, 4) + 148005.0*pow(c1, 2) - 9009.0) + 0.19047619047619*pow(pow(c1, 2) - 1.0, 4)*(310155.0*pow(c1, 10) - 650325.0*pow(c1, 8) + 493350.0*pow(c1, 6) - 164450.0*pow(c1, 4) + 23023.0*pow(c1, 2) - 1001.0)); case 19: return 7.26609002976191e-8*x1r*(119409675.0*pow(c0, 19) - 453756765.0*pow(c0, 18)*c1 + 123751845.0*pow(c0, 17)*(33.0*pow(c1, 2) - 5.0) - 300540195.0*pow(c0, 16)*c1*(33.0*pow(c1, 2) - 7.0) + 38779380.0*pow(c0, 15)*(1023.0*pow(c1, 4) - 434.0*pow(c1, 2) + 35.0) - 193896900.0*pow(c0, 14)*c1*(341.0*pow(c1, 4) - 186.0*pow(c1, 2) + 21.0) + 15600900.0*pow(c0, 13)*(9889.0*pow(c1, 6) - 8091.0*pow(c1, 4) + 1827.0*pow(c1, 2) - 105.0) - 202811700.0*pow(c0, 12)*c1*(899.0*pow(c1, 6) - 899.0*pow(c1, 4) + 261.0*pow(c1, 2) - 21.0) + 33801950.0*pow(c0, 11)*(8091.0*pow(c1, 8) - 10788.0*pow(c1, 6) + 4698.0*pow(c1, 4) - 756.0*pow(c1, 2) + 35.0) - 2600150.0*pow(c0, 10)*c1*(89001.0*pow(c1, 8) - 140244.0*pow(c1, 6) + 74646.0*pow(c1, 4) - 15444.0*pow(c1, 2) + 1001.0) + 520030.0*pow(c0, 9)*(445005.0*pow(c1, 10) - 876525.0*pow(c1, 8) + 622050.0*pow(c1, 6) - 193050.0*pow(c1, 4) + 25025.0*pow(c1, 2) - 1001.0) - 936054.0*pow(c0, 8)*c1*(148335.0*pow(c1, 10) - 337125.0*pow(c1, 8) + 282750.0*pow(c1, 6) - 107250.0*pow(c1, 4) + 17875.0*pow(c1, 2) - 1001.0) + 27132.0*pow(c0, 7)*(3411705.0*pow(c1, 12) - 9304650.0*pow(c1, 10) + 9754875.0*pow(c1, 8) - 4933500.0*pow(c1, 6) + 1233375.0*pow(c1, 4) - 138138.0*pow(c1, 2) + 5005.0) - 3724.0*pow(c0, 6)*c1*(10235115.0*pow(c1, 12) - 31635810.0*pow(c1, 10) + 38269125.0*pow(c1, 8) - 22873500.0*pow(c1, 6) + 6989125.0*pow(c1, 4) - 1006434.0*pow(c1, 2) + 51051.0) + 532.0*pow(c0, 5)*(30705345.0*pow(c1, 14) - 110725335.0*pow(c1, 12) + 160730325.0*pow(c1, 10) - 120085875.0*pow(c1, 8) + 48923875.0*pow(c1, 6) - 10567557.0*pow(c1, 4) + 1072071.0*pow(c1, 2) - 36465.0) - 140.0*pow(c0, 4)*c1*(30705345.0*pow(c1, 14) - 123751845.0*pow(c1, 12) + 203591745.0*pow(c1, 10) - 175510125.0*pow(c1, 8) + 84504875.0*pow(c1, 6) - 22309287.0*pow(c1, 4) + 2909907.0*pow(c1, 2) - 138567.0) + 35.0*pow(c0, 3)*(30705345.0*pow(c1, 16) - 141430680.0*pow(c1, 14) + 271455660.0*pow(c1, 12) - 280816200.0*pow(c1, 10) + 169009750.0*pow(c1, 8) - 59491432.0*pow(c1, 6) + 11639628.0*pow(c1, 4) - 1108536.0*pow(c1, 2) + 36465.0) - 15.0*pow(c0, 2)*c1*pow(pow(c1, 2) - 1.0, 2)*(10235115.0*pow(c1, 12) - 31635810.0*pow(c1, 10) + 38269125.0*pow(c1, 8) - 22873500.0*pow(c1, 6) + 6989125.0*pow(c1, 4) - 1006434.0*pow(c1, 2) + 51051.0) + 5.0*c0*pow(pow(c1, 2) - 1.0, 3)*(3411705.0*pow(c1, 12) - 9304650.0*pow(c1, 10) + 9754875.0*pow(c1, 8) - 4933500.0*pow(c1, 6) + 1233375.0*pow(c1, 4) - 138138.0*pow(c1, 2) + 5005.0) - 5.0*c1*pow(pow(c1, 2) - 1.0, 4)*(148335.0*pow(c1, 10) - 337125.0*pow(c1, 8) + 282750.0*pow(c1, 6) - 107250.0*pow(c1, 4) + 17875.0*pow(c1, 2) - 1001.0)); case 20: return 1.81652250744048e-8*x1r*(835867725.0*pow(c0, 20) - 3343470900.0*pow(c0, 19)*c1 + 4537567650.0*pow(c0, 18)*(7.0*pow(c1, 2) - 1.0) - 16335243540.0*pow(c0, 17)*c1*(5.0*pow(c1, 2) - 1.0) + 2103781365.0*pow(c0, 16)*(165.0*pow(c1, 4) - 66.0*pow(c1, 2) + 5.0) - 1602881040.0*pow(c0, 15)*c1*(385.0*pow(c1, 4) - 198.0*pow(c1, 2) + 21.0) + 129264600.0*pow(c0, 14)*(11935.0*pow(c1, 6) - 9207.0*pow(c1, 4) + 1953.0*pow(c1, 2) - 105.0) - 1809704400.0*pow(c0, 13)*c1*(1085.0*pow(c1, 6) - 1023.0*pow(c1, 4) + 279.0*pow(c1, 2) - 21.0) + 101405850.0*pow(c0, 12)*(31465.0*pow(c1, 8) - 39556.0*pow(c1, 6) + 16182.0*pow(c1, 4) - 2436.0*pow(c1, 2) + 105.0) - 93605400.0*pow(c0, 11)*c1*(31465.0*pow(c1, 8) - 46748.0*pow(c1, 6) + 23374.0*pow(c1, 4) - 4524.0*pow(c1, 2) + 273.0) + 57203300.0*pow(c0, 10)*(56637.0*pow(c1, 10) - 105183.0*pow(c1, 8) + 70122.0*pow(c1, 6) - 20358.0*pow(c1, 4) + 2457.0*pow(c1, 2) - 91.0) - 10400600.0*pow(c0, 9)*c1*(207669.0*pow(c1, 10) - 445005.0*pow(c1, 8) + 350610.0*pow(c1, 6) - 124410.0*pow(c1, 4) + 19305.0*pow(c1, 2) - 1001.0) + 1560090.0*pow(c0, 8)*(1038345.0*pow(c1, 12) - 2670030.0*pow(c1, 10) + 2629575.0*pow(c1, 8) - 1244100.0*pow(c1, 6) + 289575.0*pow(c1, 4) - 30030.0*pow(c1, 2) + 1001.0) - 146832.0*pow(c0, 7)*c1*(5191725.0*pow(c1, 12) - 15130170.0*pow(c1, 10) + 17193375.0*pow(c1, 8) - 9613500.0*pow(c1, 6) + 2734875.0*pow(c1, 4) - 364650.0*pow(c1, 2) + 17017.0) + 22344.0*pow(c0, 6)*(17058525.0*pow(c1, 14) - 57998985.0*pow(c1, 12) + 79089525.0*pow(c1, 10) - 55277625.0*pow(c1, 8) + 20967375.0*pow(c1, 6) - 4193475.0*pow(c1, 4) + 391391.0*pow(c1, 2) - 12155.0) - 2352.0*pow(c0, 5)*c1*(51175575.0*pow(c1, 14) - 194467185.0*pow(c1, 12) + 300540195.0*pow(c1, 10) - 242371125.0*pow(c1, 8) + 108649125.0*pow(c1, 6) - 26558675.0*pow(c1, 4) + 3187041.0*pow(c1, 2) - 138567.0) + 35.0*pow(c0, 4)*(1074687075.0*pow(c1, 16) - 4667212440.0*pow(c1, 14) + 8415125460.0*pow(c1, 12) - 8143669800.0*pow(c1, 10) + 4563263250.0*pow(c1, 8) - 1487285800.0*pow(c1, 6) + 267711444.0*pow(c1, 4) - 23279256.0*pow(c1, 2) + 692835.0) - 140.0*pow(c0, 3)*c1*(51175575.0*pow(c1, 16) - 245642760.0*pow(c1, 14) + 495007380.0*pow(c1, 12) - 542911320.0*pow(c1, 10) + 351020250.0*pow(c1, 8) - 135207800.0*pow(c1, 6) + 29745716.0*pow(c1, 4) - 3325608.0*pow(c1, 2) + 138567.0) + 70.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2)*(17058525.0*pow(c1, 14) - 57998985.0*pow(c1, 12) + 79089525.0*pow(c1, 10) - 55277625.0*pow(c1, 8) + 20967375.0*pow(c1, 6) - 4193475.0*pow(c1, 4) + 391391.0*pow(c1, 2) - 12155.0) - 20.0*c0*c1*pow(pow(c1, 2) - 1.0, 3)*(5191725.0*pow(c1, 12) - 15130170.0*pow(c1, 10) + 17193375.0*pow(c1, 8) - 9613500.0*pow(c1, 6) + 2734875.0*pow(c1, 4) - 364650.0*pow(c1, 2) + 17017.0) + 5.0*pow(pow(c1, 2) - 1.0, 4)*(1038345.0*pow(c1, 12) - 2670030.0*pow(c1, 10) + 2629575.0*pow(c1, 8) - 1244100.0*pow(c1, 6) + 289575.0*pow(c1, 4) - 30030.0*pow(c1, 2) + 1001.0)); case 21: return 1.58945719401042e-7*x1r*(168310780.0*pow(c0, 21) - 706905276.0*pow(c0, 20)*c1 + 191055480.0*pow(c0, 19)*(37.0*pow(c1, 2) - 5.0) - 518579160.0*pow(c0, 18)*c1*(37.0*pow(c1, 2) - 7.0) + 2333606220.0*pow(c0, 17)*(37.0*pow(c1, 4) - 14.0*pow(c1, 2) + 1.0) - 881584572.0*pow(c0, 16)*c1*(185.0*pow(c1, 4) - 90.0*pow(c1, 2) + 9.0) + 213717472.0*pow(c0, 15)*(2035.0*pow(c1, 6) - 1485.0*pow(c1, 4) + 297.0*pow(c1, 2) - 15.0) - 457966011.428571*pow(c0, 14)*c1*(1295.0*pow(c1, 6) - 1155.0*pow(c1, 4) + 297.0*pow(c1, 2) - 21.0) + 25852920.0*pow(c0, 13)*(40145.0*pow(c1, 8) - 47740.0*pow(c1, 6) + 18414.0*pow(c1, 4) - 2604.0*pow(c1, 2) + 105.0) - 25852920.0*pow(c0, 12)*c1*(40145.0*pow(c1, 8) - 56420.0*pow(c1, 6) + 26598.0*pow(c1, 4) - 4836.0*pow(c1, 2) + 273.0) + 5348880.0*pow(c0, 11)*(232841.0*pow(c1, 10) - 409045.0*pow(c1, 8) + 257114.0*pow(c1, 6) - 70122.0*pow(c1, 4) + 7917.0*pow(c1, 2) - 273.0) - 3922512.0*pow(c0, 10)*c1*(232841.0*pow(c1, 10) - 471975.0*pow(c1, 8) + 350610.0*pow(c1, 6) - 116870.0*pow(c1, 4) + 16965.0*pow(c1, 2) - 819.0) + 1089586.66666667*pow(c0, 9)*(698523.0*pow(c1, 12) - 1699110.0*pow(c1, 10) + 1577745.0*pow(c1, 8) - 701220.0*pow(c1, 6) + 152685.0*pow(c1, 4) - 14742.0*pow(c1, 2) + 455.0) - 52440.0*pow(c0, 8)*c1*(7683753.0*pow(c1, 12) - 21182238.0*pow(c1, 10) + 22695255.0*pow(c1, 8) - 11920740.0*pow(c1, 6) + 3172455.0*pow(c1, 4) - 393822.0*pow(c1, 2) + 17017.0) + 41952.0*pow(c0, 7)*(5488395.0*pow(c1, 14) - 17651865.0*pow(c1, 12) + 22695255.0*pow(c1, 10) - 14900925.0*pow(c1, 8) + 5287425.0*pow(c1, 6) - 984555.0*pow(c1, 4) + 85085.0*pow(c1, 2) - 2431.0) - 3091.2*pow(c0, 6)*c1*(27441975.0*pow(c1, 14) - 98642775.0*pow(c1, 12) + 143736615.0*pow(c1, 10) - 108891375.0*pow(c1, 8) + 45664125.0*pow(c1, 6) - 10392525.0*pow(c1, 4) + 1154725.0*pow(c1, 2) - 46189.0) + 50.4*pow(c0, 5)*(631165425.0*pow(c1, 16) - 2592895800.0*pow(c1, 14) + 4407922860.0*pow(c1, 12) - 4007202600.0*pow(c1, 10) + 2100549750.0*pow(c1, 8) - 637408200.0*pow(c1, 6) + 106234700.0*pow(c1, 4) - 8498776.0*pow(c1, 2) + 230945.0) - 4.0*pow(c0, 4)*c1*(1893496275.0*pow(c1, 16) - 8597496600.0*pow(c1, 14) + 16335243540.0*pow(c1, 12) - 16830250920.0*pow(c1, 10) + 10179587250.0*pow(c1, 8) - 3650610600.0*pow(c1, 6) + 743642900.0*pow(c1, 4) - 76488984.0*pow(c1, 2) + 2909907.0) + 2.66666666666667*pow(c0, 3)*(631165425.0*pow(c1, 18) - 3224061225.0*pow(c1, 16) + 7000818660.0*pow(c1, 14) - 8415125460.0*pow(c1, 12) + 6107752350.0*pow(c1, 10) - 2737957950.0*pow(c1, 8) + 743642900.0*pow(c1, 6) - 114733476.0*pow(c1, 4) + 8729721.0*pow(c1, 2) - 230945.0) - 8.0*pow(c0, 2)*c1*pow(pow(c1, 2) - 1.0, 2)*(27441975.0*pow(c1, 14) - 98642775.0*pow(c1, 12) + 143736615.0*pow(c1, 10) - 108891375.0*pow(c1, 8) + 45664125.0*pow(c1, 6) - 10392525.0*pow(c1, 4) + 1154725.0*pow(c1, 2) - 46189.0) + 4.0*c0*pow(pow(c1, 2) - 1.0, 3)*(5488395.0*pow(c1, 14) - 17651865.0*pow(c1, 12) + 22695255.0*pow(c1, 10) - 14900925.0*pow(c1, 8) + 5287425.0*pow(c1, 6) - 984555.0*pow(c1, 4) + 85085.0*pow(c1, 2) - 2431.0) - 0.114285714285714*c1*pow(pow(c1, 2) - 1.0, 4)*(7683753.0*pow(c1, 12) - 21182238.0*pow(c1, 10) + 22695255.0*pow(c1, 8) - 11920740.0*pow(c1, 6) + 3172455.0*pow(c1, 4) - 393822.0*pow(c1, 2) + 17017.0)); case 22: return 6.35782877604167e-8*x1r*(745922775.0*pow(c0, 22) - 3282060210.0*pow(c0, 21)*c1 + 883631595.0*pow(c0, 20)*(39.0*pow(c1, 2) - 5.0) - 2524661700.0*pow(c0, 19)*c1*(39.0*pow(c1, 2) - 7.0) + 324111975.0*pow(c0, 18)*(1443.0*pow(c1, 4) - 518.0*pow(c1, 2) + 35.0) - 1944671850.0*pow(c0, 17)*c1*(481.0*pow(c1, 4) - 222.0*pow(c1, 2) + 21.0) + 5509903575.0*pow(c0, 16)*(481.0*pow(c1, 6) - 333.0*pow(c1, 4) + 63.0*pow(c1, 2) - 3.0) - 1602881040.0*pow(c0, 15)*c1*(2405.0*pow(c1, 6) - 2035.0*pow(c1, 4) + 495.0*pow(c1, 2) - 33.0) + 1001800650.0*pow(c0, 14)*(7215.0*pow(c1, 8) - 8140.0*pow(c1, 6) + 2970.0*pow(c1, 4) - 396.0*pow(c1, 2) + 15.0) - 2003601300.0*pow(c0, 13)*c1*(3885.0*pow(c1, 8) - 5180.0*pow(c1, 6) + 2310.0*pow(c1, 4) - 396.0*pow(c1, 2) + 21.0) + 420109950.0*pow(c0, 12)*(24087.0*pow(c1, 10) - 40145.0*pow(c1, 8) + 23870.0*pow(c1, 6) - 6138.0*pow(c1, 4) + 651.0*pow(c1, 2) - 21.0) - 77558760.0*pow(c0, 11)*c1*(104377.0*pow(c1, 10) - 200725.0*pow(c1, 8) + 141050.0*pow(c1, 6) - 44330.0*pow(c1, 4) + 6045.0*pow(c1, 2) - 273.0) + 2451570.0*pow(c0, 10)*(3026933.0*pow(c1, 12) - 6985230.0*pow(c1, 10) + 6135675.0*pow(c1, 8) - 2571140.0*pow(c1, 6) + 525915.0*pow(c1, 4) - 47502.0*pow(c1, 2) + 1365.0) - 1442100.0*pow(c0, 9)*c1*(3026933.0*pow(c1, 12) - 7916594.0*pow(c1, 10) + 8023575.0*pow(c1, 8) - 3973580.0*pow(c1, 6) + 993395.0*pow(c1, 4) - 115362.0*pow(c1, 2) + 4641.0) + 721050.0*pow(c0, 8)*(3891771.0*pow(c1, 14) - 11874891.0*pow(c1, 12) + 14442435.0*pow(c1, 10) - 8940555.0*pow(c1, 8) + 2980185.0*pow(c1, 6) - 519129.0*pow(c1, 4) + 41769.0*pow(c1, 2) - 1105.0) - 27600.0*pow(c0, 7)*c1*(42809481.0*pow(c1, 14) - 145991307.0*pow(c1, 12) + 201231261.0*pow(c1, 10) - 143736615.0*pow(c1, 8) + 56623515.0*pow(c1, 6) - 12055329.0*pow(c1, 4) + 1247103.0*pow(c1, 2) - 46189.0) + 2415.0*pow(c0, 6)*(214047405.0*pow(c1, 16) - 834236040.0*pow(c1, 14) + 1341541740.0*pow(c1, 12) - 1149892920.0*pow(c1, 10) + 566235150.0*pow(c1, 8) - 160737720.0*pow(c1, 6) + 24942060.0*pow(c1, 4) - 1847560.0*pow(c1, 2) + 46189.0) - 414.0*pow(c0, 5)*c1*(356745675.0*pow(c1, 16) - 1536750600.0*pow(c1, 14) + 2761997700.0*pow(c1, 12) - 2683083480.0*pow(c1, 10) + 1524479250.0*pow(c1, 8) - 511438200.0*pow(c1, 6) + 96996900.0*pow(c1, 4) - 9237800.0*pow(c1, 2) + 323323.0) + 5.0*pow(c0, 4)*(8205150525.0*pow(c1, 18) - 39763421775.0*pow(c1, 16) + 81676217700.0*pow(c1, 14) - 92566380060.0*pow(c1, 12) + 63113440950.0*pow(c1, 10) - 26466926850.0*pow(c1, 8) + 6692786100.0*pow(c1, 6) - 956112300.0*pow(c1, 4) + 66927861.0*pow(c1, 2) - 1616615.0) - 20.0*pow(c0, 3)*c1*(356745675.0*pow(c1, 18) - 1893496275.0*pow(c1, 16) + 4298748300.0*pow(c1, 14) - 5445081180.0*pow(c1, 12) + 4207562730.0*pow(c1, 10) - 2035917450.0*pow(c1, 8) + 608435100.0*pow(c1, 6) - 106234700.0*pow(c1, 4) + 9561123.0*pow(c1, 2) - 323323.0) + 5.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2)*(214047405.0*pow(c1, 16) - 834236040.0*pow(c1, 14) + 1341541740.0*pow(c1, 12) - 1149892920.0*pow(c1, 10) + 566235150.0*pow(c1, 8) - 160737720.0*pow(c1, 6) + 24942060.0*pow(c1, 4) - 1847560.0*pow(c1, 2) + 46189.0) - 2.0*c0*c1*pow(pow(c1, 2) - 1.0, 3)*(42809481.0*pow(c1, 14) - 145991307.0*pow(c1, 12) + 201231261.0*pow(c1, 10) - 143736615.0*pow(c1, 8) + 56623515.0*pow(c1, 6) - 12055329.0*pow(c1, 4) + 1247103.0*pow(c1, 2) - 46189.0) + pow(pow(c1, 2) - 1.0, 4)*(3891771.0*pow(c1, 14) - 11874891.0*pow(c1, 12) + 14442435.0*pow(c1, 10) - 8940555.0*pow(c1, 8) + 2980185.0*pow(c1, 6) - 519129.0*pow(c1, 4) + 41769.0*pow(c1, 2) - 1105.0)); case 23: return 2.38418579101563e-7*x1r*(354583580.0*pow(c0, 23) - 1631084468.0*pow(c0, 22)*c1 + 437608028.0*pow(c0, 21)*(41.0*pow(c1, 2) - 5.0) - 1312824084.0*pow(c0, 20)*c1*(41.0*pow(c1, 2) - 7.0) + 168310780.0*pow(c0, 19)*(1599.0*pow(c1, 4) - 546.0*pow(c1, 2) + 35.0) - 1065968273.33333*pow(c0, 18)*c1*(533.0*pow(c1, 4) - 234.0*pow(c1, 2) + 21.0) + 86429860.0*pow(c0, 17)*(19721.0*pow(c1, 6) - 12987.0*pow(c1, 4) + 2331.0*pow(c1, 2) - 105.0) - 133573420.0*pow(c0, 16)*c1*(19721.0*pow(c1, 6) - 15873.0*pow(c1, 4) + 3663.0*pow(c1, 2) - 231.0) + 267146840.0*pow(c0, 15)*(19721.0*pow(c1, 8) - 21164.0*pow(c1, 6) + 7326.0*pow(c1, 4) - 924.0*pow(c1, 2) + 33.0) - 801440520.0*pow(c0, 14)*c1*(7585.0*pow(c1, 8) - 9620.0*pow(c1, 6) + 4070.0*pow(c1, 4) - 660.0*pow(c1, 2) + 33.0) + 1870027880.0*pow(c0, 13)*(4551.0*pow(c1, 10) - 7215.0*pow(c1, 8) + 4070.0*pow(c1, 6) - 990.0*pow(c1, 4) + 99.0*pow(c1, 2) - 3.0) - 694581784.0*pow(c0, 12)*c1*(10619.0*pow(c1, 10) - 19425.0*pow(c1, 8) + 12950.0*pow(c1, 6) - 3850.0*pow(c1, 4) + 495.0*pow(c1, 2) - 21.0) + 22405864.0*pow(c0, 11)*(329189.0*pow(c1, 12) - 722610.0*pow(c1, 10) + 602175.0*pow(c1, 8) - 238700.0*pow(c1, 6) + 46035.0*pow(c1, 4) - 3906.0*pow(c1, 2) + 105.0) - 1115224.0*pow(c0, 10)*c1*(4279457.0*pow(c1, 12) - 10646454.0*pow(c1, 10) + 10236975.0*pow(c1, 8) - 4795700.0*pow(c1, 6) + 1130415.0*pow(c1, 4) - 123318.0*pow(c1, 2) + 4641.0) + 192280.0*pow(c0, 9)*(17729179.0*pow(c1, 14) - 51457861.0*pow(c1, 12) + 59374455.0*pow(c1, 10) - 34768825.0*pow(c1, 8) + 10927345.0*pow(c1, 6) - 1788111.0*pow(c1, 4) + 134589.0*pow(c1, 2) - 3315.0) - 91080.0*pow(c0, 8)*c1*(17729179.0*pow(c1, 14) - 57511727.0*pow(c1, 12) + 75207643.0*pow(c1, 10) - 50815975.0*pow(c1, 8) + 18874505.0*pow(c1, 6) - 3774901.0*pow(c1, 4) + 365313.0*pow(c1, 2) - 12597.0) + 5060.0*pow(c0, 7)*(159562611.0*pow(c1, 16) - 591549192.0*pow(c1, 14) + 902491716.0*pow(c1, 12) - 731750040.0*pow(c1, 10) + 339741090.0*pow(c1, 8) - 90597624.0*pow(c1, 6) + 13151268.0*pow(c1, 4) - 906984.0*pow(c1, 2) + 20995.0) - 460.0*pow(c0, 6)*c1*(585062907.0*pow(c1, 16) - 2397330936.0*pow(c1, 14) + 4087756596.0*pow(c1, 12) - 3756316872.0*pow(c1, 10) + 2012312610.0*pow(c1, 8) - 634183368.0*pow(c1, 6) + 112516404.0*pow(c1, 4) - 9976824.0*pow(c1, 2) + 323323.0) + 30.6666666666667*pow(c0, 5)*(2925314535.0*pow(c1, 18) - 13484986515.0*pow(c1, 16) + 26278435260.0*pow(c1, 14) - 28172376540.0*pow(c1, 12) + 18110813490.0*pow(c1, 10) - 7134562890.0*pow(c1, 8) + 1687746060.0*pow(c1, 6) - 224478540.0*pow(c1, 4) + 14549535.0*pow(c1, 2) - 323323.0) + pow(c0, 4)*(-19502096900.0*pow(c1, 19) + 98461806300.0*pow(c1, 17) - 212071582800.0*pow(c1, 15) + 254103788400.0*pow(c1, 13) - 185132760120.0*pow(c1, 11) + 84151254600.0*pow(c1, 9) - 23526157200.0*pow(c1, 7) + 3824449200.0*pow(c1, 5) - 318704100.0*pow(c1, 3) + 9915238.66666667*c1) + 1.33333333333333*pow(c0, 3)*(2925314535.0*pow(c1, 20) - 16410301050.0*pow(c1, 18) + 39763421775.0*pow(c1, 16) - 54450811800.0*pow(c1, 14) + 46283190030.0*pow(c1, 12) - 25245376380.0*pow(c1, 10) + 8822308950.0*pow(c1, 8) - 1912224600.0*pow(c1, 6) + 239028075.0*pow(c1, 4) - 14872858.0*pow(c1, 2) + 323323.0) - 0.8*pow(c0, 2)*c1*pow(pow(c1, 2) - 1.0, 2)*(585062907.0*pow(c1, 16) - 2397330936.0*pow(c1, 14) + 4087756596.0*pow(c1, 12) - 3756316872.0*pow(c1, 10) + 2012312610.0*pow(c1, 8) - 634183368.0*pow(c1, 6) + 112516404.0*pow(c1, 4) - 9976824.0*pow(c1, 2) + 323323.0) + 0.266666666666667*c0*pow(pow(c1, 2) - 1.0, 3)*(159562611.0*pow(c1, 16) - 591549192.0*pow(c1, 14) + 902491716.0*pow(c1, 12) - 731750040.0*pow(c1, 10) + 339741090.0*pow(c1, 8) - 90597624.0*pow(c1, 6) + 13151268.0*pow(c1, 4) - 906984.0*pow(c1, 2) + 20995.0) - 0.0888888888888889*c1*pow(pow(c1, 2) - 1.0, 4)*(17729179.0*pow(c1, 14) - 57511727.0*pow(c1, 12) + 75207643.0*pow(c1, 10) - 50815975.0*pow(c1, 8) + 18874505.0*pow(c1, 6) - 3774901.0*pow(c1, 4) + 365313.0*pow(c1, 2) - 12597.0)); case 24: return 9.9341074625651e-9*x1r*(15247093940.0*pow(c0, 24) - 73186050912.0*pow(c0, 23)*c1 + 19573013616.0*pow(c0, 22)*(43.0*pow(c1, 2) - 5.0) - 61515185650.2857*pow(c0, 21)*c1*(43.0*pow(c1, 2) - 7.0) + 7876944504.0*pow(c0, 20)*(1763.0*pow(c1, 4) - 574.0*pow(c1, 2) + 35.0) - 17504321120.0*pow(c0, 19)*c1*(1763.0*pow(c1, 4) - 738.0*pow(c1, 2) + 63.0) + 4263873093.33333*pow(c0, 18)*(22919.0*pow(c1, 6) - 14391.0*pow(c1, 4) + 2457.0*pow(c1, 2) - 105.0) - 6977246880.0*pow(c0, 17)*c1*(22919.0*pow(c1, 6) - 17589.0*pow(c1, 4) + 3861.0*pow(c1, 2) - 231.0) + 400720260.0*pow(c0, 16)*(848003.0*pow(c1, 8) - 867724.0*pow(c1, 6) + 285714.0*pow(c1, 4) - 34188.0*pow(c1, 2) + 1155.0) - 6411524160.0*pow(c0, 15)*c1*(65231.0*pow(c1, 8) - 78884.0*pow(c1, 6) + 31746.0*pow(c1, 4) - 4884.0*pow(c1, 2) + 231.0) + 9617286240.0*pow(c0, 14)*(65231.0*pow(c1, 10) - 98605.0*pow(c1, 8) + 52910.0*pow(c1, 6) - 12210.0*pow(c1, 4) + 1155.0*pow(c1, 2) - 33.0) - 8976133824.0*pow(c0, 13)*c1*(65231.0*pow(c1, 10) - 113775.0*pow(c1, 8) + 72150.0*pow(c1, 6) - 20350.0*pow(c1, 4) + 2475.0*pow(c1, 2) - 99.0) + 9724144976.0*pow(c0, 12)*(65231.0*pow(c1, 12) - 136530.0*pow(c1, 10) + 108225.0*pow(c1, 8) - 40700.0*pow(c1, 6) + 7425.0*pow(c1, 4) - 594.0*pow(c1, 2) + 15.0) - 980586048.0*pow(c0, 11)*c1*(456617.0*pow(c1, 12) - 1083138.0*pow(c1, 10) + 990675.0*pow(c1, 8) - 440300.0*pow(c1, 6) + 98175.0*pow(c1, 4) - 10098.0*pow(c1, 2) + 357.0) + 173974944.0*pow(c0, 10)*(2022161.0*pow(c1, 14) - 5596213.0*pow(c1, 12) + 6142185.0*pow(c1, 10) - 3412325.0*pow(c1, 8) + 1014475.0*pow(c1, 6) - 156519.0*pow(c1, 4) + 11067.0*pow(c1, 2) - 255.0) - 7043520.0*pow(c0, 9)*c1*(26288093.0*pow(c1, 14) - 81309683.0*pow(c1, 12) + 101141313.0*pow(c1, 10) - 64834175.0*pow(c1, 8) + 22779575.0*pow(c1, 6) - 4295577.0*pow(c1, 4) + 390507.0*pow(c1, 2) - 12597.0) + 136620.0*pow(c0, 8)*(762354697.0*pow(c1, 16) - 2694835208.0*pow(c1, 14) + 3910797436.0*pow(c1, 12) - 3008305720.0*pow(c1, 10) + 1321215350.0*pow(c1, 8) - 332191288.0*pow(c1, 6) + 45298812.0*pow(c1, 4) - 2922504.0*pow(c1, 2) + 62985.0) - 52045.7142857143*pow(c0, 7)*c1*(762354697.0*pow(c1, 16) - 2978502072.0*pow(c1, 14) + 4830985068.0*pow(c1, 12) - 4211628008.0*pow(c1, 10) + 2134270950.0*pow(c1, 8) - 634183368.0*pow(c1, 6) + 105697228.0*pow(c1, 4) - 8767512.0*pow(c1, 2) + 264537.0) + 6746.66666666667*pow(c0, 6)*(2287064091.0*pow(c1, 18) - 10052444493.0*pow(c1, 16) + 18633799548.0*pow(c1, 14) - 18952326036.0*pow(c1, 12) + 11525063130.0*pow(c1, 10) - 4280737734.0*pow(c1, 8) + 951275052.0*pow(c1, 6) - 118361412.0*pow(c1, 4) + 7142499.0*pow(c1, 2) - 146965.0) - 160.0*pow(c0, 5)*c1*(25157705001.0*pow(c1, 18) - 121108021749.0*pow(c1, 16) + 248123751876.0*pow(c1, 14) - 282055205124.0*pow(c1, 12) + 194389398126.0*pow(c1, 10) - 83309742054.0*pow(c1, 8) + 21879326196.0*pow(c1, 6) - 3327270804.0*pow(c1, 4) + 258150321.0*pow(c1, 2) - 7436429.0) + 8.0*pow(c0, 4)*(125788525005.0*pow(c1, 20) - 672822343050.0*pow(c1, 18) + 1550773449225.0*pow(c1, 16) - 2014680036600.0*pow(c1, 14) + 1619911651050.0*pow(c1, 12) - 833097420540.0*pow(c1, 10) + 273491577450.0*pow(c1, 8) - 55454513400.0*pow(c1, 6) + 6453758025.0*pow(c1, 4) - 371821450.0*pow(c1, 2) + 7436429.0) - 6.4*pow(c0, 3)*c1*(25157705001.0*pow(c1, 20) - 146265726750.0*pow(c1, 18) + 369231773625.0*pow(c1, 16) - 530178957000.0*pow(c1, 14) + 476444603250.0*pow(c1, 12) - 277699140180.0*pow(c1, 10) + 105189068250.0*pow(c1, 8) - 25206597000.0*pow(c1, 6) + 3585421125.0*pow(c1, 4) - 265586750.0*pow(c1, 2) + 7436429.0) + 9.6*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2)*(2287064091.0*pow(c1, 18) - 10052444493.0*pow(c1, 16) + 18633799548.0*pow(c1, 14) - 18952326036.0*pow(c1, 12) + 11525063130.0*pow(c1, 10) - 4280737734.0*pow(c1, 8) + 951275052.0*pow(c1, 6) - 118361412.0*pow(c1, 4) + 7142499.0*pow(c1, 2) - 146965.0) - 2.13333333333333*c0*c1*pow(pow(c1, 2) - 1.0, 3)*(762354697.0*pow(c1, 16) - 2978502072.0*pow(c1, 14) + 4830985068.0*pow(c1, 12) - 4211628008.0*pow(c1, 10) + 2134270950.0*pow(c1, 8) - 634183368.0*pow(c1, 6) + 105697228.0*pow(c1, 4) - 8767512.0*pow(c1, 2) + 264537.0) + 0.0888888888888889*pow(pow(c1, 2) - 1.0, 4)*(762354697.0*pow(c1, 16) - 2694835208.0*pow(c1, 14) + 3910797436.0*pow(c1, 12) - 3008305720.0*pow(c1, 10) + 1321215350.0*pow(c1, 8) - 332191288.0*pow(c1, 6) + 45298812.0*pow(c1, 4) - 2922504.0*pow(c1, 2) + 62985.0)); case 25: return 2.98023223876953e-8*x1r*(9148256364.0*pow(c0, 25) - 45741281820.0*pow(c0, 24)*c1 + 60988375760.0*pow(c0, 23)*(9.0*pow(c1, 2) - 1.0) - 40078075499.4286*pow(c0, 22)*c1*(45.0*pow(c1, 2) - 7.0) + 5126265470.85714*pow(c0, 21)*(1935.0*pow(c1, 4) - 602.0*pow(c1, 2) + 35.0) - 107651574888.0*pow(c0, 20)*c1*(215.0*pow(c1, 4) - 86.0*pow(c1, 2) + 7.0) + 8752160560.0*pow(c0, 19)*(8815.0*pow(c1, 6) - 5289.0*pow(c1, 4) + 861.0*pow(c1, 2) - 35.0) - 5039122746.66667*pow(c0, 18)*c1*(26445.0*pow(c1, 6) - 19393.0*pow(c1, 4) + 4059.0*pow(c1, 2) - 231.0) + 290718620.0*pow(c0, 17)*(1031355.0*pow(c1, 8) - 1008436.0*pow(c1, 6) + 316602.0*pow(c1, 4) - 36036.0*pow(c1, 2) + 1155.0) - 4942216540.0*pow(c0, 16)*c1*(79335.0*pow(c1, 8) - 91676.0*pow(c1, 6) + 35178.0*pow(c1, 4) - 5148.0*pow(c1, 2) + 231.0) + 1068587360.0*pow(c0, 15)*(587079.0*pow(c1, 10) - 848003.0*pow(c1, 8) + 433862.0*pow(c1, 6) - 95238.0*pow(c1, 4) + 8547.0*pow(c1, 2) - 231.0) - 3205762080.0*pow(c0, 14)*c1*(195693.0*pow(c1, 10) - 326155.0*pow(c1, 8) + 197210.0*pow(c1, 6) - 52910.0*pow(c1, 4) + 6105.0*pow(c1, 2) - 231.0) + 3740055760.0*pow(c0, 13)*(195693.0*pow(c1, 12) - 391386.0*pow(c1, 10) + 295815.0*pow(c1, 8) - 105820.0*pow(c1, 6) + 18315.0*pow(c1, 4) - 1386.0*pow(c1, 2) + 33.0) - 572008528.0*pow(c0, 12)*c1*(978465.0*pow(c1, 12) - 2217854.0*pow(c1, 10) + 1934175.0*pow(c1, 8) - 817700.0*pow(c1, 6) + 172975.0*pow(c1, 4) - 16830.0*pow(c1, 2) + 561.0) + 163431008.0*pow(c0, 11)*(2935395.0*pow(c1, 14) - 7762489.0*pow(c1, 12) + 8123535.0*pow(c1, 10) - 4292925.0*pow(c1, 8) + 1210825.0*pow(c1, 6) - 176715.0*pow(c1, 4) + 11781.0*pow(c1, 2) - 255.0) - 94617952.0*pow(c0, 10)*c1*(2935395.0*pow(c1, 14) - 8675723.0*pow(c1, 12) + 10289811.0*pow(c1, 10) - 6274275.0*pow(c1, 8) + 2091425.0*pow(c1, 6) - 373065.0*pow(c1, 4) + 31977.0*pow(c1, 2) - 969.0) + 1907620.0*pow(c0, 9)*(90997245.0*pow(c1, 16) - 307368472.0*pow(c1, 14) + 425312188.0*pow(c1, 12) - 311204040.0*pow(c1, 10) + 129668350.0*pow(c1, 8) - 30840040.0*pow(c1, 6) + 3965148.0*pow(c1, 4) - 240312.0*pow(c1, 2) + 4845.0) - 188665.714285714*pow(c0, 8)*c1*(394321395.0*pow(c1, 16) - 1472133208.0*pow(c1, 14) + 2276671124.0*pow(c1, 12) - 1887971176.0*pow(c1, 10) + 907678450.0*pow(c1, 8) - 255131240.0*pow(c1, 6) + 40092052.0*pow(c1, 4) - 3124056.0*pow(c1, 2) + 88179.0) + 8674.28571428571*pow(c0, 7)*(3811773485.0*pow(c1, 18) - 16009448637.0*pow(c1, 16) + 28295769684.0*pow(c1, 14) - 27375582052.0*pow(c1, 12) + 15793605030.0*pow(c1, 10) - 5549104470.0*pow(c1, 8) + 1162669508.0*pow(c1, 6) - 135896436.0*pow(c1, 4) + 7671573.0*pow(c1, 2) - 146965.0) - 2640.0*pow(c0, 6)*c1*(3811773485.0*pow(c1, 18) - 17534158031.0*pow(c1, 16) + 34252773828.0*pow(c1, 14) - 37037552188.0*pow(c1, 12) + 24216861046.0*pow(c1, 10) - 9817646370.0*pow(c1, 8) + 2431036244.0*pow(c1, 6) - 347290892.0*pow(c1, 4) + 25206597.0*pow(c1, 2) - 676039.0) + 146.666666666667*pow(c0, 5)*(20583576819.0*pow(c1, 20) - 105204948186.0*pow(c1, 18) + 231206223339.0*pow(c1, 16) - 285718259736.0*pow(c1, 14) + 217951749414.0*pow(c1, 12) - 106030580796.0*pow(c1, 10) + 32818989294.0*pow(c1, 8) - 6251236056.0*pow(c1, 6) + 680578119.0*pow(c1, 4) - 36506106.0*pow(c1, 2) + 676039.0) - 2.66666666666667*pow(c0, 4)*c1*(226419345009.0*pow(c1, 20) - 1257885250050.0*pow(c1, 18) + 3027700543725.0*pow(c1, 16) - 4135395864600.0*pow(c1, 14) + 3525690064050.0*pow(c1, 12) - 1943893981260.0*pow(c1, 10) + 694247850450.0*pow(c1, 8) - 156280901400.0*pow(c1, 6) + 20795442525.0*pow(c1, 4) - 1434168450.0*pow(c1, 2) + 37182145.0) + 5.33333333333333*pow(c0, 3)*(20583576819.0*pow(c1, 22) - 125788525005.0*pow(c1, 20) + 336411171525.0*pow(c1, 18) - 516924483075.0*pow(c1, 16) + 503670009150.0*pow(c1, 14) - 323982330210.0*pow(c1, 12) + 138849570090.0*pow(c1, 10) - 39070225350.0*pow(c1, 8) + 6931814175.0*pow(c1, 6) - 717084225.0*pow(c1, 4) + 37182145.0*pow(c1, 2) - 676039.0) - 3.2*pow(c0, 2)*c1*pow(pow(c1, 2) - 1.0, 2)*(3811773485.0*pow(c1, 18) - 17534158031.0*pow(c1, 16) + 34252773828.0*pow(c1, 14) - 37037552188.0*pow(c1, 12) + 24216861046.0*pow(c1, 10) - 9817646370.0*pow(c1, 8) + 2431036244.0*pow(c1, 6) - 347290892.0*pow(c1, 4) + 25206597.0*pow(c1, 2) - 676039.0) + 0.266666666666667*c0*pow(pow(c1, 2) - 1.0, 3)*(3811773485.0*pow(c1, 18) - 16009448637.0*pow(c1, 16) + 28295769684.0*pow(c1, 14) - 27375582052.0*pow(c1, 12) + 15793605030.0*pow(c1, 10) - 5549104470.0*pow(c1, 8) + 1162669508.0*pow(c1, 6) - 135896436.0*pow(c1, 4) + 7671573.0*pow(c1, 2) - 146965.0) - 0.0888888888888889*c1*pow(pow(c1, 2) - 1.0, 4)*(394321395.0*pow(c1, 16) - 1472133208.0*pow(c1, 14) + 2276671124.0*pow(c1, 12) - 1887971176.0*pow(c1, 10) + 907678450.0*pow(c1, 8) - 255131240.0*pow(c1, 6) + 40092052.0*pow(c1, 4) - 3124056.0*pow(c1, 2) + 88179.0)); case 26: return 1.49011611938477e-8*x1r*(33074465316.0*pow(c0, 26) - 171987219643.2*pow(c0, 25)*c1 + 45741281820.0*pow(c0, 24)*(47.0*pow(c1, 2) - 5.0) - 156827251954.286*pow(c0, 23)*c1*(47.0*pow(c1, 2) - 7.0) + 100195188748.571*pow(c0, 22)*(423.0*pow(c1, 4) - 126.0*pow(c1, 2) + 7.0) - 440858830493.714*pow(c0, 21)*c1*(235.0*pow(c1, 4) - 90.0*pow(c1, 2) + 7.0) + 35883858296.0*pow(c0, 20)*(10105.0*pow(c1, 6) - 5805.0*pow(c1, 4) + 903.0*pow(c1, 2) - 35.0) - 65243378720.0*pow(c0, 19)*c1*(10105.0*pow(c1, 6) - 7095.0*pow(c1, 4) + 1419.0*pow(c1, 2) - 77.0) + 3779342060.0*pow(c0, 18)*(414305.0*pow(c1, 8) - 387860.0*pow(c1, 6) + 116358.0*pow(c1, 4) - 12628.0*pow(c1, 2) + 385.0) - 1744311720.0*pow(c0, 17)*c1*(1242915.0*pow(c1, 8) - 1375140.0*pow(c1, 6) + 504218.0*pow(c1, 4) - 70356.0*pow(c1, 2) + 3003.0) + 4942216540.0*pow(c0, 16)*(745749.0*pow(c1, 10) - 1031355.0*pow(c1, 8) + 504218.0*pow(c1, 6) - 105534.0*pow(c1, 4) + 9009.0*pow(c1, 2) - 231.0) - 15815092928.0*pow(c0, 15)*c1*(248583.0*pow(c1, 10) - 396675.0*pow(c1, 8) + 229190.0*pow(c1, 6) - 58630.0*pow(c1, 4) + 6435.0*pow(c1, 2) - 231.0) + 534293680.0*pow(c0, 14)*(9197571.0*pow(c1, 12) - 17612370.0*pow(c1, 10) + 12720045.0*pow(c1, 8) - 4338620.0*pow(c1, 6) + 714285.0*pow(c1, 4) - 51282.0*pow(c1, 2) + 1155.0) - 440006560.0*pow(c0, 13)*c1*(9197571.0*pow(c1, 12) - 19960686.0*pow(c1, 10) + 16633905.0*pow(c1, 8) - 6705140.0*pow(c1, 6) + 1349205.0*pow(c1, 4) - 124542.0*pow(c1, 2) + 3927.0) + 408577520.0*pow(c0, 12)*(9197571.0*pow(c1, 14) - 23287467.0*pow(c1, 12) + 23287467.0*pow(c1, 10) - 11733995.0*pow(c1, 8) + 3148145.0*pow(c1, 6) - 435897.0*pow(c1, 4) + 27489.0*pow(c1, 2) - 561.0) - 51609792.0*pow(c0, 11)*c1*(45987855.0*pow(c1, 14) - 130135845.0*pow(c1, 12) + 147487291.0*pow(c1, 10) - 85748425.0*pow(c1, 8) + 27188525.0*pow(c1, 6) - 4601135.0*pow(c1, 4) + 373065.0*pow(c1, 2) - 10659.0) + 11827244.0*pow(c0, 10)*(137963565.0*pow(c1, 16) - 446180040.0*pow(c1, 14) + 589949164.0*pow(c1, 12) - 411592440.0*pow(c1, 10) + 163131150.0*pow(c1, 8) - 36809080.0*pow(c1, 6) + 4476780.0*pow(c1, 4) - 255816.0*pow(c1, 2) + 4845.0) - 16896062.8571429*pow(c0, 9)*c1*(45987855.0*pow(c1, 16) - 164382120.0*pow(c1, 14) + 242920244.0*pow(c1, 12) - 192076472.0*pow(c1, 10) + 87839850.0*pow(c1, 8) - 23423960.0*pow(c1, 6) + 3481940.0*pow(c1, 4) - 255816.0*pow(c1, 2) + 6783.0) + 817551.428571429*pow(c0, 8)*(475207835.0*pow(c1, 18) - 1910942145.0*pow(c1, 16) + 3227368956.0*pow(c1, 14) - 2977185316.0*pow(c1, 12) + 1633821210.0*pow(c1, 10) - 544607070.0*pow(c1, 8) + 107940140.0*pow(c1, 6) - 11895444.0*pow(c1, 4) + 630819.0*pow(c1, 2) - 11305.0) - 21874.2857142857*pow(c0, 7)*c1*(6177701855.0*pow(c1, 18) - 27208176255.0*pow(c1, 16) + 50788595676.0*pow(c1, 14) - 52363435852.0*pow(c1, 12) + 32567502786.0*pow(c1, 10) - 12525962610.0*pow(c1, 8) + 2934009260.0*pow(c1, 6) - 395193084.0*pow(c1, 4) + 26944983.0*pow(c1, 2) - 676039.0) + 1320.0*pow(c0, 6)*(35830670759.0*pow(c1, 20) - 175341580310.0*pow(c1, 18) + 368217318651.0*pow(c1, 16) - 433868468488.0*pow(c1, 14) + 314819193598.0*pow(c1, 12) - 145301166276.0*pow(c1, 10) + 42543134270.0*pow(c1, 8) - 7640399624.0*pow(c1, 6) + 781404507.0*pow(c1, 4) - 39210262.0*pow(c1, 2) + 676039.0) - 316.8*pow(c0, 5)*c1*(35830670759.0*pow(c1, 20) - 190588674250.0*pow(c1, 18) + 438353950775.0*pow(c1, 16) - 570879563800.0*pow(c1, 14) + 462969402350.0*pow(c1, 12) - 242168610460.0*pow(c1, 10) + 81813719750.0*pow(c1, 8) - 17364544600.0*pow(c1, 6) + 2170568075.0*pow(c1, 4) - 140036650.0*pow(c1, 2) + 3380195.0) + 2.66666666666667*pow(c0, 4)*(967428110493.0*pow(c1, 22) - 5660483625225.0*pow(c1, 20) + 14465680375575.0*pow(c1, 18) - 21193903806075.0*pow(c1, 16) + 19643130356850.0*pow(c1, 14) - 11987346217770.0*pow(c1, 12) + 4859734953150.0*pow(c1, 10) - 1289317436550.0*pow(c1, 8) + 214886239425.0*pow(c1, 6) - 20795442525.0*pow(c1, 4) + 1003917915.0*pow(c1, 2) - 16900975.0) - 10.6666666666667*pow(c0, 3)*c1*(35830670759.0*pow(c1, 22) - 226419345009.0*pow(c1, 20) + 628942625025.0*pow(c1, 18) - 1009233514575.0*pow(c1, 16) + 1033848966150.0*pow(c1, 14) - 705138012810.0*pow(c1, 12) + 323982330210.0*pow(c1, 10) - 99178264350.0*pow(c1, 8) + 19535112675.0*pow(c1, 6) - 2310604725.0*pow(c1, 4) + 143416845.0*pow(c1, 2) - 3380195.0) + 1.33333333333333*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2)*(35830670759.0*pow(c1, 20) - 175341580310.0*pow(c1, 18) + 368217318651.0*pow(c1, 16) - 433868468488.0*pow(c1, 14) + 314819193598.0*pow(c1, 12) - 145301166276.0*pow(c1, 10) + 42543134270.0*pow(c1, 8) - 7640399624.0*pow(c1, 6) + 781404507.0*pow(c1, 4) - 39210262.0*pow(c1, 2) + 676039.0) - 0.533333333333333*c0*c1*pow(pow(c1, 2) - 1.0, 3)*(6177701855.0*pow(c1, 18) - 27208176255.0*pow(c1, 16) + 50788595676.0*pow(c1, 14) - 52363435852.0*pow(c1, 12) + 32567502786.0*pow(c1, 10) - 12525962610.0*pow(c1, 8) + 2934009260.0*pow(c1, 6) - 395193084.0*pow(c1, 4) + 26944983.0*pow(c1, 2) - 676039.0) + 0.266666666666667*pow(pow(c1, 2) - 1.0, 4)*(475207835.0*pow(c1, 18) - 1910942145.0*pow(c1, 16) + 3227368956.0*pow(c1, 14) - 2977185316.0*pow(c1, 12) + 1633821210.0*pow(c1, 10) - 544607070.0*pow(c1, 8) + 107940140.0*pow(c1, 6) - 11895444.0*pow(c1, 4) + 630819.0*pow(c1, 2) - 11305.0)); case 27: return 4.96705373128255e-9*x1r*(180072088942.667*pow(c0, 27) - 972389280290.4*pow(c0, 26)*c1 + 257980829464.8*pow(c0, 25)*(49.0*pow(c1, 2) - 5.0) - 6449520736620.0*pow(c0, 24)*c1*(7.0*pow(c1, 2) - 1.0) + 823343072760.0*pow(c0, 23)*(329.0*pow(c1, 4) - 94.0*pow(c1, 2) + 5.0) - 300585566245.714*pow(c0, 22)*c1*(2303.0*pow(c1, 4) - 846.0*pow(c1, 2) + 63.0) + 1102147076234.29*pow(c0, 21)*(2303.0*pow(c1, 6) - 1269.0*pow(c1, 4) + 189.0*pow(c1, 2) - 7.0) - 420819792744.0*pow(c0, 20)*c1*(11515.0*pow(c1, 6) - 7755.0*pow(c1, 4) + 1485.0*pow(c1, 2) - 77.0) + 24466267020.0*pow(c0, 19)*(495145.0*pow(c1, 8) - 444620.0*pow(c1, 6) + 127710.0*pow(c1, 4) - 13244.0*pow(c1, 2) + 385.0) - 35758390260.0*pow(c0, 18)*c1*(495145.0*pow(c1, 8) - 525460.0*pow(c1, 6) + 184470.0*pow(c1, 4) - 24596.0*pow(c1, 2) + 1001.0) + 7849402740.0*pow(c0, 17)*(4060189.0*pow(c1, 10) - 5385965.0*pow(c1, 8) + 2521090.0*pow(c1, 6) - 504218.0*pow(c1, 4) + 41041.0*pow(c1, 2) - 1001.0) - 2965329924.0*pow(c0, 16)*c1*(12180567.0*pow(c1, 10) - 18643725.0*pow(c1, 8) + 10313550.0*pow(c1, 6) - 2521090.0*pow(c1, 4) + 263835.0*pow(c1, 2) - 9009.0) + 3953773232.0*pow(c0, 15)*(12180567.0*pow(c1, 12) - 22372470.0*pow(c1, 10) + 15470325.0*pow(c1, 8) - 5042180.0*pow(c1, 6) + 791505.0*pow(c1, 4) - 54054.0*pow(c1, 2) + 1155.0) - 3488623440.0*pow(c0, 14)*c1*(12180567.0*pow(c1, 12) - 25355466.0*pow(c1, 10) + 20230425.0*pow(c1, 8) - 7792460.0*pow(c1, 6) + 1495065.0*pow(c1, 4) - 131274.0*pow(c1, 2) + 3927.0) + 660009840.0*pow(c0, 13)*(64382997.0*pow(c1, 14) - 156358707.0*pow(c1, 12) + 149705145.0*pow(c1, 10) - 72080255.0*pow(c1, 8) + 18439135.0*pow(c1, 6) - 2428569.0*pow(c1, 4) + 145299.0*pow(c1, 2) - 2805.0) - 451585680.0*pow(c0, 12)*c1*(64382997.0*pow(c1, 14) - 174753849.0*pow(c1, 12) + 189626517.0*pow(c1, 10) - 105348065.0*pow(c1, 8) + 31849415.0*pow(c1, 6) - 5126979.0*pow(c1, 4) + 394383.0*pow(c1, 2) - 10659.0) + 48384180.0*pow(c0, 11)*(450680979.0*pow(c1, 16) - 1398030792.0*pow(c1, 14) + 1769847492.0*pow(c1, 12) - 1179898328.0*pow(c1, 10) + 445891810.0*pow(c1, 8) - 95703608.0*pow(c1, 6) + 11042724.0*pow(c1, 4) - 596904.0*pow(c1, 2) + 10659.0) - 35481732.0*pow(c0, 10)*c1*(321914985.0*pow(c1, 16) - 1103708520.0*pow(c1, 14) + 1561630140.0*pow(c1, 12) - 1179898328.0*pow(c1, 10) + 514490550.0*pow(c1, 8) - 130504920.0*pow(c1, 6) + 18404540.0*pow(c1, 4) - 1279080.0*pow(c1, 2) + 31977.0) + 59136220.0*pow(c0, 9)*(107304995.0*pow(c1, 18) - 413890695.0*pow(c1, 16) + 669270060.0*pow(c1, 14) - 589949164.0*pow(c1, 12) + 308694330.0*pow(c1, 10) - 97878690.0*pow(c1, 8) + 18404540.0*pow(c1, 6) - 1918620.0*pow(c1, 4) + 95931.0*pow(c1, 2) - 1615.0) - 3305751.42857143*pow(c0, 8)*c1*(751134965.0*pow(c1, 18) - 3173161995.0*pow(c1, 16) + 5671183140.0*pow(c1, 14) - 5587165612.0*pow(c1, 12) + 3313319142.0*pow(c1, 10) - 1212189930.0*pow(c1, 8) + 269375540.0*pow(c1, 6) - 34321980.0*pow(c1, 4) + 2206413.0*pow(c1, 2) - 52003.0) + 213274.285714286*pow(c0, 7)*(4657036783.0*pow(c1, 20) - 21859560410.0*pow(c1, 18) + 43951669335.0*pow(c1, 16) - 49486323992.0*pow(c1, 14) + 34237631134.0*pow(c1, 12) - 15031155132.0*pow(c1, 10) + 4175320870.0*pow(c1, 8) - 709320920.0*pow(c1, 6) + 68398803.0*pow(c1, 4) - 3224186.0*pow(c1, 2) + 52003.0) - 4593.6*pow(c0, 6)*c1*(60541478179.0*pow(c1, 20) - 308885092750.0*pow(c1, 18) + 680204406375.0*pow(c1, 16) - 846476594600.0*pow(c1, 14) + 654542948150.0*pow(c1, 12) - 325675027860.0*pow(c1, 10) + 104383021750.0*pow(c1, 8) - 20957209000.0*pow(c1, 6) + 2469956775.0*pow(c1, 4) - 149694350.0*pow(c1, 2) + 3380195.0) + 43.2*pow(c0, 5)*(1755702867191.0*pow(c1, 22) - 9853434458725.0*pow(c1, 20) + 24109467292625.0*pow(c1, 18) - 33753254209675.0*pow(c1, 16) + 29828457208550.0*pow(c1, 14) - 17315055647890.0*pow(c1, 12) + 6659636787650.0*pow(c1, 10) - 1671337417750.0*pow(c1, 8) + 262638737075.0*pow(c1, 6) - 23876248825.0*pow(c1, 4) + 1078282205.0*pow(c1, 2) - 16900975.0) - 8.0*pow(c0, 4)*c1*(1755702867191.0*pow(c1, 22) - 10641709215423.0*pow(c1, 20) + 28302418126125.0*pow(c1, 18) - 43397041126725.0*pow(c1, 16) + 42387807612150.0*pow(c1, 14) - 27500382499590.0*pow(c1, 12) + 11987346217770.0*pow(c1, 10) - 3471239252250.0*pow(c1, 8) + 644658718275.0*pow(c1, 6) - 71628746475.0*pow(c1, 4) + 4159088505.0*pow(c1, 2) - 91265265.0) + 1.33333333333333*pow(c0, 3)*(1755702867191.0*pow(c1, 24) - 11609137325916.0*pow(c1, 22) + 33962901751350.0*pow(c1, 20) - 57862721502300.0*pow(c1, 18) + 63581711418225.0*pow(c1, 16) - 47143512856440.0*pow(c1, 14) + 23974692435540.0*pow(c1, 12) - 8330974205400.0*pow(c1, 10) + 1933976154825.0*pow(c1, 8) - 286514985900.0*pow(c1, 6) + 24954531030.0*pow(c1, 4) - 1095183180.0*pow(c1, 2) + 16900975.0) - 4.0*pow(c0, 2)*c1*pow(pow(c1, 2) - 1.0, 2)*(60541478179.0*pow(c1, 20) - 308885092750.0*pow(c1, 18) + 680204406375.0*pow(c1, 16) - 846476594600.0*pow(c1, 14) + 654542948150.0*pow(c1, 12) - 325675027860.0*pow(c1, 10) + 104383021750.0*pow(c1, 8) - 20957209000.0*pow(c1, 6) + 2469956775.0*pow(c1, 4) - 149694350.0*pow(c1, 2) + 3380195.0) + 4.0*c0*pow(pow(c1, 2) - 1.0, 3)*(4657036783.0*pow(c1, 20) - 21859560410.0*pow(c1, 18) + 43951669335.0*pow(c1, 16) - 49486323992.0*pow(c1, 14) + 34237631134.0*pow(c1, 12) - 15031155132.0*pow(c1, 10) + 4175320870.0*pow(c1, 8) - 709320920.0*pow(c1, 6) + 68398803.0*pow(c1, 4) - 3224186.0*pow(c1, 2) + 52003.0) - 0.8*c1*pow(pow(c1, 2) - 1.0, 4)*(751134965.0*pow(c1, 18) - 3173161995.0*pow(c1, 16) + 5671183140.0*pow(c1, 14) - 5587165612.0*pow(c1, 12) + 3313319142.0*pow(c1, 10) - 1212189930.0*pow(c1, 8) + 269375540.0*pow(c1, 6) - 34321980.0*pow(c1, 4) + 2206413.0*pow(c1, 2) - 52003.0)); case 28: return 3.72529029846191e-9*x1r*(437317930289.333*pow(c0, 28) - 2448980409620.27*pow(c0, 27)*c1 + 648259520193.6*pow(c0, 26)*(51.0*pow(c1, 2) - 5.0) - 2407821075004.8*pow(c0, 25)*c1*(51.0*pow(c1, 2) - 7.0) + 2149840245540.0*pow(c0, 24)*(357.0*pow(c1, 4) - 98.0*pow(c1, 2) + 5.0) - 17198721964320.0*pow(c0, 23)*c1*(119.0*pow(c1, 4) - 42.0*pow(c1, 2) + 3.0) + 1402732642480.0*pow(c0, 22)*(5593.0*pow(c1, 6) - 2961.0*pow(c1, 4) + 423.0*pow(c1, 2) - 15.0) - 400780754994.286*pow(c0, 21)*c1*(39151.0*pow(c1, 6) - 25333.0*pow(c1, 4) + 4653.0*pow(c1, 2) - 231.0) + 350683160620.0*pow(c0, 20)*(117453.0*pow(c1, 8) - 101332.0*pow(c1, 6) + 27918.0*pow(c1, 4) - 2772.0*pow(c1, 2) + 77.0) - 107902510960.0*pow(c0, 19)*c1*(587265.0*pow(c1, 8) - 598780.0*pow(c1, 6) + 201630.0*pow(c1, 4) - 25740.0*pow(c1, 2) + 1001.0) + 23838926840.0*pow(c0, 18)*(5050479.0*pow(c1, 10) - 6436885.0*pow(c1, 8) + 2890030.0*pow(c1, 6) - 553410.0*pow(c1, 4) + 43043.0*pow(c1, 2) - 1001.0) - 85820136624.0*pow(c0, 17)*c1*(1683493.0*pow(c1, 10) - 2475725.0*pow(c1, 8) + 1313650.0*pow(c1, 6) - 307450.0*pow(c1, 4) + 30745.0*pow(c1, 2) - 1001.0) + 2965329924.0*pow(c0, 16)*(69023213.0*pow(c1, 12) - 121805670.0*pow(c1, 10) + 80789475.0*pow(c1, 8) - 25210900.0*pow(c1, 6) + 3781635.0*pow(c1, 4) - 246246.0*pow(c1, 2) + 5005.0) - 15815092928.0*pow(c0, 15)*c1*(12180567.0*pow(c1, 12) - 24361134.0*pow(c1, 10) + 18643725.0*pow(c1, 8) - 6875700.0*pow(c1, 6) + 1260545.0*pow(c1, 4) - 105534.0*pow(c1, 2) + 3003.0) + 39537732320.0*pow(c0, 14)*(5220243.0*pow(c1, 14) - 12180567.0*pow(c1, 12) + 11186235.0*pow(c1, 10) - 5156775.0*pow(c1, 8) + 1260545.0*pow(c1, 6) - 158301.0*pow(c1, 4) + 9009.0*pow(c1, 2) - 165.0) - 1713709760.0*pow(c0, 13)*c1*(88744131.0*pow(c1, 14) - 231430773.0*pow(c1, 12) + 240876927.0*pow(c1, 10) - 128126025.0*pow(c1, 8) + 37014185.0*pow(c1, 6) - 5681247.0*pow(c1, 4) + 415701.0*pow(c1, 2) - 10659.0) + 37632140.0*pow(c0, 12)*(3283532847.0*pow(c1, 16) - 9786215544.0*pow(c1, 14) + 11883261732.0*pow(c1, 12) - 7585060680.0*pow(c1, 10) + 2739049690.0*pow(c1, 8) - 560549704.0*pow(c1, 6) + 61523748.0*pow(c1, 4) - 3155064.0*pow(c1, 2) + 53295.0) - 64512240.0*pow(c0, 11)*c1*(1094510949.0*pow(c1, 16) - 3605447832.0*pow(c1, 14) + 4893107772.0*pow(c1, 12) - 3539694984.0*pow(c1, 10) + 1474872910.0*pow(c1, 8) - 356713448.0*pow(c1, 6) + 47851804.0*pow(c1, 4) - 3155064.0*pow(c1, 2) + 74613.0) + 118272440.0*pow(c0, 10)*(364836983.0*pow(c1, 18) - 1352042937.0*pow(c1, 16) + 2097046188.0*pow(c1, 14) - 1769847492.0*pow(c1, 12) + 884923746.0*pow(c1, 10) - 267535086.0*pow(c1, 8) + 47851804.0*pow(c1, 6) - 4732596.0*pow(c1, 4) + 223839.0*pow(c1, 2) - 3553.0) - 10284560.0*pow(c0, 9)*c1*(1824184915.0*pow(c1, 18) - 7404044655.0*pow(c1, 16) + 12692647980.0*pow(c1, 14) - 11972497740.0*pow(c1, 12) + 6784415386.0*pow(c1, 10) - 2366656530.0*pow(c1, 8) + 500268860.0*pow(c1, 6) - 60472060.0*pow(c1, 4) + 3677355.0*pow(c1, 2) - 81719.0) + 7713420.0*pow(c0, 8)*(1094510949.0*pow(c1, 20) - 4936029770.0*pow(c1, 18) + 9519485985.0*pow(c1, 16) - 10262140920.0*pow(c1, 14) + 6784415386.0*pow(c1, 12) - 2839987836.0*pow(c1, 10) + 750403290.0*pow(c1, 8) - 120944120.0*pow(c1, 6) + 11032065.0*pow(c1, 4) - 490314.0*pow(c1, 2) + 7429.0) - 352613.485714286*pow(c0, 7)*c1*(7661576643.0*pow(c1, 20) - 37556748250.0*pow(c1, 18) + 79329049875.0*pow(c1, 16) - 94519719000.0*pow(c1, 14) + 69839570150.0*pow(c1, 12) - 33133191420.0*pow(c1, 10) + 10101582750.0*pow(c1, 8) - 1924111000.0*pow(c1, 6) + 214512375.0*pow(c1, 4) - 12257850.0*pow(c1, 2) + 260015.0) + 3619.2*pow(c0, 6)*(237508875933.0*pow(c1, 22) - 1280685115325.0*pow(c1, 20) + 3005689556375.0*pow(c1, 18) - 4028903022375.0*pow(c1, 16) + 3402184774450.0*pow(c1, 14) - 1883069712370.0*pow(c1, 12) + 688927943550.0*pow(c1, 10) - 164030462750.0*pow(c1, 8) + 24382906625.0*pow(c1, 6) - 2089963425.0*pow(c1, 4) + 88665115.0*pow(c1, 2) - 1300075.0) - 185.6*pow(c0, 5)*c1*(1029205129043.0*pow(c1, 22) - 5993606339721.0*pow(c1, 20) + 15289812091125.0*pow(c1, 18) - 22446745410375.0*pow(c1, 16) + 20950295716350.0*pow(c1, 14) - 12959950373370.0*pow(c1, 12) + 5373637959690.0*pow(c1, 10) - 1476274164750.0*pow(c1, 8) + 259345461375.0*pow(c1, 6) - 27169524525.0*pow(c1, 4) + 1481974065.0*pow(c1, 2) - 30421755.0) + 1.33333333333333*pow(c0, 4)*(29846948742247.0*pow(c1, 24) - 189615909656628.0*pow(c1, 22) + 532085460771150.0*pow(c1, 20) - 867940822534500.0*pow(c1, 18) + 911337863661225.0*pow(c1, 16) - 644294675704680.0*pow(c1, 14) + 311671001662020.0*pow(c1, 12) - 102748681866600.0*pow(c1, 10) + 22563055139625.0*pow(c1, 8) - 3151664844900.0*pow(c1, 6) + 257863487310.0*pow(c1, 4) - 10586770740.0*pow(c1, 2) + 152108775.0) - 5.33333333333333*pow(c0, 3)*c1*(1029205129043.0*pow(c1, 24) - 7022811468764.0*pow(c1, 22) + 21283418430846.0*pow(c1, 20) - 37736557501500.0*pow(c1, 18) + 43397041126725.0*pow(c1, 16) - 33910246089720.0*pow(c1, 14) + 18333588333060.0*pow(c1, 12) - 6849912124440.0*pow(c1, 10) + 1735619626125.0*pow(c1, 8) - 286514985900.0*pow(c1, 6) + 28651498590.0*pow(c1, 4) - 1512395820.0*pow(c1, 2) + 30421755.0) + 2.66666666666667*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2)*(237508875933.0*pow(c1, 22) - 1280685115325.0*pow(c1, 20) + 3005689556375.0*pow(c1, 18) - 4028903022375.0*pow(c1, 16) + 3402184774450.0*pow(c1, 14) - 1883069712370.0*pow(c1, 12) + 688927943550.0*pow(c1, 10) - 164030462750.0*pow(c1, 8) + 24382906625.0*pow(c1, 6) - 2089963425.0*pow(c1, 4) + 88665115.0*pow(c1, 2) - 1300075.0) - 5.33333333333333*c0*c1*pow(pow(c1, 2) - 1.0, 3)*(7661576643.0*pow(c1, 20) - 37556748250.0*pow(c1, 18) + 79329049875.0*pow(c1, 16) - 94519719000.0*pow(c1, 14) + 69839570150.0*pow(c1, 12) - 33133191420.0*pow(c1, 10) + 10101582750.0*pow(c1, 8) - 1924111000.0*pow(c1, 6) + 214512375.0*pow(c1, 4) - 12257850.0*pow(c1, 2) + 260015.0) + 1.33333333333333*pow(pow(c1, 2) - 1.0, 4)*(1094510949.0*pow(c1, 20) - 4936029770.0*pow(c1, 18) + 9519485985.0*pow(c1, 16) - 10262140920.0*pow(c1, 14) + 6784415386.0*pow(c1, 12) - 2839987836.0*pow(c1, 10) + 750403290.0*pow(c1, 8) - 120944120.0*pow(c1, 6) + 11032065.0*pow(c1, 4) - 490314.0*pow(c1, 2) + 7429.0)); case 29: return 3.72529029846191e-9*x1r*(799236217425.333*pow(c0, 29) - 4635570061066.93*pow(c0, 28)*c1 + 1224490204810.13*pow(c0, 27)*(53.0*pow(c1, 2) - 5.0) - 4723033647124.8*pow(c0, 26)*c1*(53.0*pow(c1, 2) - 7.0) + 601955268751.2*pow(c0, 25)*(2703.0*pow(c1, 4) - 714.0*pow(c1, 2) + 35.0) - 5016293906260.0*pow(c0, 24)*c1*(901.0*pow(c1, 4) - 306.0*pow(c1, 2) + 21.0) + 2866453660720.0*pow(c0, 23)*(6307.0*pow(c1, 6) - 3213.0*pow(c1, 4) + 441.0*pow(c1, 2) - 15.0) - 5993494017869.09*pow(c0, 22)*c1*(6307.0*pow(c1, 6) - 3927.0*pow(c1, 4) + 693.0*pow(c1, 2) - 33.0) + 350683160620.0*pow(c0, 21)*(296429.0*pow(c1, 8) - 246092.0*pow(c1, 6) + 65142.0*pow(c1, 4) - 6204.0*pow(c1, 2) + 165.0) - 80926883220.0*pow(c0, 20)*c1*(2075003.0*pow(c1, 8) - 2035852.0*pow(c1, 6) + 658658.0*pow(c1, 4) - 80652.0*pow(c1, 2) + 3003.0) + 53951255480.0*pow(c0, 19)*(6225009.0*pow(c1, 10) - 7634445.0*pow(c1, 8) + 3293290.0*pow(c1, 6) - 604890.0*pow(c1, 4) + 45045.0*pow(c1, 2) - 1001.0) - 205014770824.0*pow(c0, 18)*c1*(2075003.0*pow(c1, 10) - 2936325.0*pow(c1, 8) + 1496950.0*pow(c1, 6) - 336050.0*pow(c1, 4) + 32175.0*pow(c1, 2) - 1001.0) + 7151678052.0*pow(c0, 17)*(89225129.0*pow(c1, 12) - 151514370.0*pow(c1, 10) + 96553275.0*pow(c1, 8) - 28900300.0*pow(c1, 6) + 4150575.0*pow(c1, 4) - 258258.0*pow(c1, 2) + 5005.0) - 121578526884.0*pow(c0, 16)*c1*(5248537.0*pow(c1, 12) - 10100958.0*pow(c1, 10) + 7427175.0*pow(c1, 8) - 2627300.0*pow(c1, 6) + 461175.0*pow(c1, 4) - 36894.0*pow(c1, 2) + 1001.0) + 23722639392.0*pow(c0, 15)*(30741431.0*pow(c1, 14) - 69023213.0*pow(c1, 12) + 60902835.0*pow(c1, 10) - 26929825.0*pow(c1, 8) + 6302725.0*pow(c1, 6) - 756327.0*pow(c1, 4) + 41041.0*pow(c1, 2) - 715.0) - 6242799840.0*pow(c0, 14)*c1*(92224293.0*pow(c1, 14) - 231430773.0*pow(c1, 12) + 231430773.0*pow(c1, 10) - 118076925.0*pow(c1, 8) + 32659575.0*pow(c1, 6) - 4790071.0*pow(c1, 4) + 334191.0*pow(c1, 2) - 8151.0) + 1820816620.0*pow(c0, 13)*(276672879.0*pow(c1, 16) - 793476936.0*pow(c1, 14) + 925723092.0*pow(c1, 12) - 566769240.0*pow(c1, 10) + 195957450.0*pow(c1, 8) - 38320568.0*pow(c1, 6) + 4010292.0*pow(c1, 4) - 195624.0*pow(c1, 2) + 3135.0) - 198912740.0*pow(c0, 12)*c1*(1567812981.0*pow(c1, 16) - 4969671336.0*pow(c1, 14) + 6480061644.0*pow(c1, 12) - 4496369304.0*pow(c1, 10) + 1793764350.0*pow(c1, 8) - 414558872.0*pow(c1, 6) + 53024972.0*pow(c1, 4) - 3325608.0*pow(c1, 2) + 74613.0) + 10752040.0*pow(c0, 11)*(19336360099.0*pow(c1, 18) - 68954189787.0*pow(c1, 16) + 102755263212.0*pow(c1, 14) - 83182832124.0*pow(c1, 12) + 39821568570.0*pow(c1, 10) - 11504008698.0*pow(c1, 8) + 1961923964.0*pow(c1, 6) - 184571244.0*pow(c1, 4) + 8282043.0*pow(c1, 2) - 124355.0) - 5142280.0*pow(c0, 10)*c1*(19336360099.0*pow(c1, 18) - 75521255481.0*pow(c1, 16) + 124387950204.0*pow(c1, 14) - 112541478756.0*pow(c1, 12) + 61059738474.0*pow(c1, 10) - 20353246158.0*pow(c1, 8) + 4102204652.0*pow(c1, 6) - 471682068.0*pow(c1, 4) + 27212427.0*pow(c1, 2) - 572033.0) + 2571140.0*pow(c0, 9)*(19336360099.0*pow(c1, 20) - 83912506090.0*pow(c1, 18) + 155484937755.0*pow(c1, 16) - 160773541080.0*pow(c1, 14) + 101766230790.0*pow(c1, 12) - 40706492316.0*pow(c1, 10) + 10255511630.0*pow(c1, 8) - 1572273560.0*pow(c1, 6) + 136062135.0*pow(c1, 4) - 5720330.0*pow(c1, 2) + 81719.0) - 925610.4*pow(c0, 8)*c1*(19336360099.0*pow(c1, 20) - 91209245750.0*pow(c1, 18) + 185101116375.0*pow(c1, 16) - 211544133000.0*pow(c1, 14) + 149656221750.0*pow(c1, 12) - 67844153860.0*pow(c1, 10) + 19722137750.0*pow(c1, 8) - 3573349000.0*pow(c1, 6) + 377950375.0*pow(c1, 4) - 20429750.0*pow(c1, 2) + 408595.0) + 112195.2*pow(c0, 7)*(58009080297.0*pow(c1, 22) - 300990510975.0*pow(c1, 20) + 678704093375.0*pow(c1, 18) - 872619548625.0*pow(c1, 16) + 705522188250.0*pow(c1, 14) - 373142846230.0*pow(c1, 12) + 130166109150.0*pow(c1, 10) - 29480129250.0*pow(c1, 8) + 4157454125.0*pow(c1, 6) - 337090875.0*pow(c1, 4) + 13483635.0*pow(c1, 2) - 185725.0) - 12466.1333333333*pow(c0, 6)*c1*(135354520693.0*pow(c1, 22) - 758496087657.0*pow(c1, 20) + 1859059038375.0*pow(c1, 18) - 2617858645875.0*pow(c1, 16) + 2339363045250.0*pow(c1, 14) - 1382823488970.0*pow(c1, 12) + 546697658430.0*pow(c1, 10) - 142865241750.0*pow(c1, 8) + 23810873625.0*pow(c1, 6) - 2359636125.0*pow(c1, 4) + 121352715.0*pow(c1, 2) - 2340135.0) + 100.533333333333*pow(c0, 5)*(4195990141483.0*pow(c1, 24) - 25650958600764.0*pow(c1, 22) + 69156996227550.0*pow(c1, 20) - 108204824029500.0*pow(c1, 18) + 108780381604125.0*pow(c1, 16) - 73487191128120.0*pow(c1, 14) + 33895254822660.0*pow(c1, 12) - 10629173986200.0*pow(c1, 10) + 2214411247125.0*pow(c1, 8) - 292594879500.0*pow(c1, 6) + 22571604990.0*pow(c1, 4) - 870530220.0*pow(c1, 2) + 11700675.0) - 1.33333333333333*pow(c0, 4)*c1*(54547871839279.0*pow(c1, 24) - 358163384906964.0*pow(c1, 22) + 1.04288750311145e+15*pow(c1, 20) - 1.7736182025705e+15*pow(c1, 18) + 1.95286685070263e+15*pow(c1, 16) - 1.45814058185796e+15*pow(c1, 14) + 751677121655460.0*pow(c1, 12) - 267146572853160.0*pow(c1, 10) + 64217926166625.0*pow(c1, 8) - 10028024506500.0*pow(c1, 6) + 945499453470.0*pow(c1, 4) - 46884270420.0*pow(c1, 2) + 882230895.0) + 2.66666666666667*pow(c0, 3)*(4195990141483.0*pow(c1, 26) - 29846948742247.0*pow(c1, 24) + 94807954828314.0*pow(c1, 22) - 177361820257050.0*pow(c1, 20) + 216985205633625.0*pow(c1, 18) - 182267572732245.0*pow(c1, 16) + 107382445950780.0*pow(c1, 14) - 44524428808860.0*pow(c1, 12) + 12843585233325.0*pow(c1, 10) - 2507006126625.0*pow(c1, 8) + 315166484490.0*pow(c1, 6) - 23442135210.0*pow(c1, 4) + 882230895.0*pow(c1, 2) - 11700675.0) - 8.0*pow(c0, 2)*c1*pow(pow(c1, 2) - 1.0, 2)*(135354520693.0*pow(c1, 22) - 758496087657.0*pow(c1, 20) + 1859059038375.0*pow(c1, 18) - 2617858645875.0*pow(c1, 16) + 2339363045250.0*pow(c1, 14) - 1382823488970.0*pow(c1, 12) + 546697658430.0*pow(c1, 10) - 142865241750.0*pow(c1, 8) + 23810873625.0*pow(c1, 6) - 2359636125.0*pow(c1, 4) + 121352715.0*pow(c1, 2) - 2340135.0) + 1.33333333333333*c0*pow(pow(c1, 2) - 1.0, 3)*(58009080297.0*pow(c1, 22) - 300990510975.0*pow(c1, 20) + 678704093375.0*pow(c1, 18) - 872619548625.0*pow(c1, 16) + 705522188250.0*pow(c1, 14) - 373142846230.0*pow(c1, 12) + 130166109150.0*pow(c1, 10) - 29480129250.0*pow(c1, 8) + 4157454125.0*pow(c1, 6) - 337090875.0*pow(c1, 4) + 13483635.0*pow(c1, 2) - 185725.0) - 0.121212121212121*c1*pow(pow(c1, 2) - 1.0, 4)*(19336360099.0*pow(c1, 20) - 91209245750.0*pow(c1, 18) + 185101116375.0*pow(c1, 16) - 211544133000.0*pow(c1, 14) + 149656221750.0*pow(c1, 12) - 67844153860.0*pow(c1, 10) + 19722137750.0*pow(c1, 8) - 3573349000.0*pow(c1, 6) + 377950375.0*pow(c1, 4) - 20429750.0*pow(c1, 2) + 408595.0)); default: return 0.; } case 2: switch(j) { case 0: return 0.00714285714285714*x2t*y1t*(35.0*pow(c0, 3) + 42.0*pow(c0, 2)*c1 + 35.0*c0*(pow(c1, 2) - 3.0) + 8.0*pow(c1, 3) - 42.0*c1 + 70.0); case 1: return 0.00119047619047619*x2t*y1r*(105.0*pow(c0, 3) + 21.0*pow(c0, 2)*(6.0*c1 - 5.0) + 21.0*c0*(5.0*pow(c1, 2) - 4.0*c1 - 5.0) + 24.0*pow(c1, 3) - 35.0*pow(c1, 2) - 42.0*c1 + 105.0); case 2: return -0.00714285714285714*x2t*y2t*(35.0*pow(c0, 3) + 42.0*pow(c0, 2)*c1 + 35.0*c0*(pow(c1, 2) - 3.0) + 8.0*pow(c1, 3) - 42.0*c1 - 70.0); case 3: return 0.00119047619047619*x2t*y2r*(105.0*pow(c0, 3) + 21.0*pow(c0, 2)*(6.0*c1 + 5.0) + 21.0*c0*(5.0*pow(c1, 2) + 4.0*c1 - 5.0) + 24.0*pow(c1, 3) + 35.0*pow(c1, 2) - 42.0*c1 - 105.0); case 4: return 0.00119047619047619*x2t*(105.0*pow(c0, 4) + 168.0*pow(c0, 3)*c1 + 210.0*pow(c0, 2)*(pow(c1, 2) - 1.0) + 24.0*c0*c1*(4.0*pow(c1, 2) - 7.0) + 21.0*pow(c1, 4) - 70.0*pow(c1, 2) + 105.0); case 5: return 0.000396825396825397*x2t*(315.0*pow(c0, 5) + 630.0*pow(c0, 4)*c1 + 210.0*pow(c0, 3)*(5.0*pow(c1, 2) - 3.0) + 36.0*pow(c0, 2)*c1*(20.0*pow(c1, 2) - 21.0) + 315.0*c0*pow(pow(c1, 2) - 1.0, 2) + 2.0*c1*(25.0*pow(c1, 4) - 72.0*pow(c1, 2) + 63.0)); case 6: return 0.00520833333333333*x2t*(28.0*pow(c0, 6) + 67.2*pow(c0, 5)*c1 + 20.0*pow(c0, 4)*(7.0*pow(c1, 2) - 3.0) + 32.0*pow(c0, 3)*c1*(4.0*pow(c1, 2) - 3.0) + 12.0*pow(c0, 2)*(7.0*pow(c1, 4) - 10.0*pow(c1, 2) + 3.0) + c0*(26.6666666666667*pow(c1, 5) - 54.8571428571429*pow(c1, 3) + 28.8*c1) + 4.0*pow(pow(c1, 2) - 1.0, 3)); case 7: return 0.1875*pow(c0, 7)*x2t + 0.525*pow(c0, 6)*c1*x2t + 0.4375*pow(c0, 5)*x2t*(3.0*pow(c1, 2) - 1.0) + 0.125*pow(c0, 4)*c1*x2t*(12.0*pow(c1, 2) - 7.0) + 0.0208333333333333*pow(c0, 3)*x2t*(63.0*pow(c1, 4) - 70.0*pow(c1, 2) + 15.0) + 0.125*pow(c0, 2)*c1*x2t*(5.0*pow(c1, 4) - 8.0*pow(c1, 2) + 3.0) + 0.0625*c0*x2t*pow(pow(c1, 2) - 1.0, 2)*(3.0*pow(c1, 2) - 1.0) + 0.0227272727272727*pow(c1, 7)*x2t - 0.0694444444444444*pow(c1, 5)*x2t + 0.0714285714285714*pow(c1, 3)*x2t - 0.025*c1*x2t; case 8: return 0.000520833333333333*x2t*(495.0*pow(c0, 8) + 1584.0*pow(c0, 7)*c1 + 420.0*pow(c0, 6)*(11.0*pow(c1, 2) - 3.0) + 144.0*pow(c0, 5)*c1*(44.0*pow(c1, 2) - 21.0) + 210.0*pow(c0, 4)*(33.0*pow(c1, 4) - 30.0*pow(c1, 2) + 5.0) + 80.0*pow(c0, 3)*c1*(55.0*pow(c1, 4) - 72.0*pow(c1, 2) + 21.0) + 60.0*pow(c0, 2)*(33.0*pow(c1, 6) - 63.0*pow(c1, 4) + 35.0*pow(c1, 2) - 5.0) + 240.0*c0*c1*pow(pow(c1, 2) - 1.0, 2)*(2.0*pow(c1, 2) - 1.0) + 5.0*pow(pow(c1, 2) - 1.0, 3)*(11.0*pow(c1, 2) - 3.0)); case 9: return 0.000520833333333333*x2t*(715.0*pow(c0, 9) + 2574.0*pow(c0, 8)*c1 + 660.0*pow(c0, 7)*(13.0*pow(c1, 2) - 3.0) + 264.0*pow(c0, 6)*c1*(52.0*pow(c1, 2) - 21.0) + 126.0*pow(c0, 5)*(143.0*pow(c1, 4) - 110.0*pow(c1, 2) + 15.0) + 20.0*pow(c0, 4)*c1*(715.0*pow(c1, 4) - 792.0*pow(c1, 2) + 189.0) + 20.0*pow(c0, 3)*(429.0*pow(c1, 6) - 693.0*pow(c1, 4) + 315.0*pow(c1, 2) - 35.0) + 120.0*pow(c0, 2)*c1*(26.0*pow(c1, 6) - 55.0*pow(c1, 4) + 36.0*pow(c1, 2) - 7.0) + 5.0*c0*pow(pow(c1, 2) - 1.0, 2)*(143.0*pow(c1, 4) - 110.0*pow(c1, 2) + 15.0) + 10.0*c1*pow(pow(c1, 2) - 1.0, 3)*(7.0*pow(c1, 2) - 3.0)); case 10: return 0.0009765625*x2t*(572.0*pow(c0, 10) + 2288.0*pow(c0, 9)*c1 + 1716.0*pow(c0, 8)*(5.0*pow(c1, 2) - 1.0) + 784.457142857143*pow(c0, 7)*c1*(20.0*pow(c1, 2) - 7.0) + 616.0*pow(c0, 6)*(39.0*pow(c1, 4) - 26.0*pow(c1, 2) + 3.0) + 70.4*pow(c0, 5)*c1*(325.0*pow(c1, 4) - 312.0*pow(c1, 2) + 63.0) + 24.0*pow(c0, 4)*(715.0*pow(c1, 6) - 1001.0*pow(c1, 4) + 385.0*pow(c1, 2) - 35.0) + 21.3333333333333*pow(c0, 3)*c1*(390.0*pow(c1, 6) - 715.0*pow(c1, 4) + 396.0*pow(c1, 2) - 63.0) + 4.0*pow(c0, 2)*(715.0*pow(c1, 8) - 1716.0*pow(c1, 6) + 1386.0*pow(c1, 4) - 420.0*pow(c1, 2) + 35.0) + 16.0*c0*c1*pow(pow(c1, 2) - 1.0, 2)*(35.0*pow(c1, 4) - 34.0*pow(c1, 2) + 7.0) + 1.33333333333333*pow(pow(c1, 2) - 1.0, 3)*(39.0*pow(c1, 4) - 26.0*pow(c1, 2) + 3.0)); case 11: return 3.7202380952381e-5*x2t*(23205.0*pow(c0, 11) + 102102.0*pow(c0, 10)*c1 + 25025.0*pow(c0, 9)*(17.0*pow(c1, 2) - 3.0) + 12870.0*pow(c0, 8)*c1*(68.0*pow(c1, 2) - 21.0) + 90090.0*pow(c0, 7)*(17.0*pow(c1, 4) - 10.0*pow(c1, 2) + 1.0) + 4004.0*pow(c0, 6)*c1*(425.0*pow(c1, 4) - 360.0*pow(c1, 2) + 63.0) + 6930.0*pow(c0, 5)*(221.0*pow(c1, 6) - 273.0*pow(c1, 4) + 91.0*pow(c1, 2) - 7.0) + 420.0*pow(c0, 4)*c1*(2210.0*pow(c1, 6) - 3575.0*pow(c1, 4) + 1716.0*pow(c1, 2) - 231.0) + 35.0*pow(c0, 3)*(11.0*pow(c1, 2)*(13.0*pow(c1, 2)*(85.0*pow(c1, 4) - 180.0*pow(c1, 2) + 126.0) - 420.0) + 315.0) + 210.0*pow(c0, 2)*c1*(c1 - 1.0)*(c1 + 1.0)*(595.0*pow(c1, 6) - 965.0*pow(c1, 4) + 465.0*pow(c1, 2) - 63.0) + 105.0*c0*pow(pow(c1, 2) - 1.0, 2)*(221.0*pow(c1, 6) - 273.0*pow(c1, 4) + 91.0*pow(c1, 2) - 7.0) + 14.0*c1*pow(pow(c1, 2) - 1.0, 3)*(136.0*pow(c1, 4) - 117.0*pow(c1, 2) + 21.0)); case 12: return 8.13802083333333e-5*x2t*(16796.0*pow(c0, 12) + 80620.8*pow(c0, 11)*c1 + 19448.0*pow(c0, 10)*(19.0*pow(c1, 2) - 3.0) + 11113.1428571429*pow(c0, 9)*c1*(76.0*pow(c1, 2) - 21.0) + 5148.0*pow(c0, 8)*(323.0*pow(c1, 4) - 170.0*pow(c1, 2) + 15.0) + 1307.42857142857*pow(c0, 7)*c1*(1615.0*pow(c1, 4) - 1224.0*pow(c1, 2) + 189.0) + 6864.0*pow(c0, 6)*(323.0*pow(c1, 6) - 357.0*pow(c1, 4) + 105.0*pow(c1, 2) - 7.0) + 499.2*pow(c0, 5)*c1*(3230.0*pow(c1, 6) - 4675.0*pow(c1, 4) + 1980.0*pow(c1, 2) - 231.0) + 220.0*pow(c0, 4)*(4199.0*pow(c1, 8) - 7956.0*pow(c1, 6) + 4914.0*pow(c1, 4) - 1092.0*pow(c1, 2) + 63.0) + 32.0*pow(c0, 3)*c1*(11305.0*pow(c1, 8) - 26520.0*pow(c1, 6) + 21450.0*pow(c1, 4) - 6864.0*pow(c1, 2) + 693.0) + 24.0*pow(c0, 2)*(4199.0*pow(c1, 10) - 12155.0*pow(c1, 8) + 12870.0*pow(c1, 6) - 6006.0*pow(c1, 4) + 1155.0*pow(c1, 2) - 63.0) + 6.4*c0*c1*pow(pow(c1, 2) - 1.0, 2)*(2584.0*pow(c1, 6) - 3757.0*pow(c1, 4) + 1602.0*pow(c1, 2) - 189.0) + 4.0*pow(pow(c1, 2) - 1.0, 3)*(323.0*pow(c1, 6) - 357.0*pow(c1, 4) + 105.0*pow(c1, 2) - 7.0)); case 13: return 9.30059523809524e-6*x2t*(237405.0*pow(c0, 13) + 1234506.0*pow(c0, 12)*c1 + 881790.0*pow(c0, 11)*(7.0*pow(c1, 2) - 1.0) + 3879876.0*pow(c0, 10)*c1*(4.0*pow(c1, 2) - 1.0) + 85085.0*pow(c0, 9)*(399.0*pow(c1, 4) - 190.0*pow(c1, 2) + 15.0) + 72930.0*pow(c0, 8)*c1*(665.0*pow(c1, 4) - 456.0*pow(c1, 2) + 63.0) + 180180.0*pow(c0, 7)*(323.0*pow(c1, 6) - 323.0*pow(c1, 4) + 85.0*pow(c1, 2) - 5.0) + 3640.0*pow(c0, 6)*c1*(17.0*pow(c1, 2)*(798.0*pow(c1, 4) - 1045.0*pow(c1, 2) + 396.0) - 693.0) + 15015.0*pow(c0, 5)*(2261.0*pow(c1, 8) - 3876.0*pow(c1, 6) + 2142.0*pow(c1, 4) - 420.0*pow(c1, 2) + 21.0) + 210.0*pow(c0, 4)*c1*(5.0*pow(c1, 2)*(17.0*pow(c1, 2)*(931.0*pow(c1, 4) - 1976.0*pow(c1, 2) + 1430.0) - 6864.0) + 3003.0) + 70.0*pow(c0, 3)*(13.0*pow(c1, 2)*(6783.0*pow(c1, 8) - 17765.0*pow(c1, 6) + 16830.0*pow(c1, 4) - 6930.0*pow(c1, 2) + 1155.0) - 693.0) + 84.0*pow(c0, 2)*c1*(c1 - 1.0)*(c1 + 1.0)*(18088.0*pow(c1, 8) - 38437.0*pow(c1, 6) + 27863.0*pow(c1, 4) - 7887.0*pow(c1, 2) + 693.0) + 105.0*c0*pow(pow(c1, 2) - 1.0, 2)*(2261.0*pow(c1, 8) - 3876.0*pow(c1, 6) + 2142.0*pow(c1, 4) - 420.0*pow(c1, 2) + 21.0) + 14.0*c1*pow(pow(c1, 2) - 1.0, 3)*(7.0*pow(c1, 2) - 3.0)*(19.0*pow(c1, 2)*(9.0*pow(c1, 2) - 8.0) + 21.0)); case 14: return 0.0001220703125*x2t*(29716.0*pow(c0, 14) + 166409.6*pow(c0, 13)*c1 + 39190.6666666667*pow(c0, 12)*(23.0*pow(c1, 2) - 3.0) + 26873.6*pow(c0, 11)*c1*(92.0*pow(c1, 2) - 21.0) + 36951.2*pow(c0, 10)*(161.0*pow(c1, 4) - 70.0*pow(c1, 2) + 5.0) + 82113.7777777778*pow(c0, 9)*c1*(115.0*pow(c1, 4) - 72.0*pow(c1, 2) + 9.0) + 29172.0*pow(c0, 8)*(437.0*pow(c1, 6) - 399.0*pow(c1, 4) + 95.0*pow(c1, 2) - 5.0) + 2020.57142857143*pow(c0, 7)*c1*(6118.0*pow(c1, 6) - 7315.0*pow(c1, 4) + 2508.0*pow(c1, 2) - 231.0) + 1334.66666666667*pow(c0, 6)*(7429.0*pow(c1, 8) - 11628.0*pow(c1, 6) + 5814.0*pow(c1, 4) - 1020.0*pow(c1, 2) + 45.0) + 16.0*pow(c0, 5)*c1*(364021.0*pow(c1, 8) - 705432.0*pow(c1, 6) + 461890.0*pow(c1, 4) - 116688.0*pow(c1, 2) + 9009.0) + 52.0*pow(c0, 4)*(52003.0*pow(c1, 10) - 124355.0*pow(c1, 8) + 106590.0*pow(c1, 6) - 39270.0*pow(c1, 4) + 5775.0*pow(c1, 2) - 231.0) + 2.13333333333333*pow(c0, 3)*c1*(416024.0*pow(c1, 10) - 1187025.0*pow(c1, 8) + 1259700.0*pow(c1, 6) - 607750.0*pow(c1, 4) + 128700.0*pow(c1, 2) - 9009.0) + 4.0*pow(c0, 2)*(52003.0*pow(c1, 12) - 176358.0*pow(c1, 10) + 230945.0*pow(c1, 8) - 145860.0*pow(c1, 6) + 45045.0*pow(c1, 4) - 6006.0*pow(c1, 2) + 231.0) + 3.2*c0*c1*pow(pow(c1, 2) - 1.0, 2)*(9177.0*pow(c1, 8) - 17822.0*pow(c1, 6) + 11704.0*pow(c1, 4) - 2970.0*pow(c1, 2) + 231.0) + 0.266666666666667*pow(pow(c1, 2) - 1.0, 3)*(7429.0*pow(c1, 8) - 11628.0*pow(c1, 6) + 5814.0*pow(c1, 4) - 1020.0*pow(c1, 2) + 45.0)); case 15: return 1.08506944444444e-5*x2t*(557175.0*pow(c0, 15) + 3343050.0*pow(c0, 14)*c1 + 780045.0*pow(c0, 13)*(25.0*pow(c1, 2) - 3.0) + 579462.0*pow(c0, 12)*c1*(100.0*pow(c1, 2) - 21.0) + 1322685.0*pow(c0, 11)*(115.0*pow(c1, 4) - 46.0*pow(c1, 2) + 3.0) + 92378.0*pow(c0, 10)*c1*(2875.0*pow(c1, 4) - 1656.0*pow(c1, 2) + 189.0) + 692835.0*pow(c0, 9)*(575.0*pow(c1, 6) - 483.0*pow(c1, 4) + 105.0*pow(c1, 2) - 5.0) + 377910.0*pow(c0, 8)*c1*(1150.0*pow(c1, 6) - 1265.0*pow(c1, 4) + 396.0*pow(c1, 2) - 33.0) + 36465.0*pow(c0, 7)*(10925.0*pow(c1, 8) - 15732.0*pow(c1, 6) + 7182.0*pow(c1, 4) - 1140.0*pow(c1, 2) + 45.0) + 510.0*pow(c0, 6)*c1*(535325.0*pow(c1, 8) - 954408.0*pow(c1, 6) + 570570.0*pow(c1, 4) - 130416.0*pow(c1, 2) + 9009.0) + 4095.0*pow(c0, 5)*(37145.0*pow(c1, 10) - 81719.0*pow(c1, 8) + 63954.0*pow(c1, 6) - 21318.0*pow(c1, 4) + 2805.0*pow(c1, 2) - 99.0) + 30.0*pow(c0, 4)*c1*(2080120.0*pow(c1, 10) - 5460315.0*pow(c1, 8) + 5290740.0*pow(c1, 6) - 2309450.0*pow(c1, 4) + 437580.0*pow(c1, 2) - 27027.0) + 15.0*pow(c0, 3)*(1300075.0*pow(c1, 12) - 4056234.0*pow(c1, 10) + 4849845.0*pow(c1, 8) - 2771340.0*pow(c1, 6) + 765765.0*pow(c1, 4) - 90090.0*pow(c1, 2) + 3003.0) + 18.0*pow(c0, 2)*c1*(229425.0*pow(c1, 12) - 832048.0*pow(c1, 10) + 1187025.0*pow(c1, 8) - 839800.0*pow(c1, 6) + 303875.0*pow(c1, 4) - 51480.0*pow(c1, 2) + 3003.0) + 15.0*c0*pow(pow(c1, 2) - 1.0, 2)*(37145.0*pow(c1, 10) - 81719.0*pow(c1, 8) + 63954.0*pow(c1, 6) - 21318.0*pow(c1, 4) + 2805.0*pow(c1, 2) - 99.0) + 6.0*c1*pow(pow(c1, 2) - 1.0, 3)*(5750.0*pow(c1, 8) - 10281.0*pow(c1, 6) + 6171.0*pow(c1, 4) - 1419.0*pow(c1, 2) + 99.0)); case 16: return 6.78168402777778e-7*x2t*(15043725.0*pow(c0, 16) + 96279840.0*pow(c0, 15)*c1 + 66861000.0*pow(c0, 14)*(9.0*pow(c1, 2) - 1.0) + 53488800.0*pow(c0, 13)*c1*(36.0*pow(c1, 2) - 7.0) + 40562340.0*pow(c0, 12)*(135.0*pow(c1, 4) - 50.0*pow(c1, 2) + 3.0) + 27814176.0*pow(c0, 11)*c1*(375.0*pow(c1, 4) - 200.0*pow(c1, 2) + 21.0) + 16628040.0*pow(c0, 10)*(1035.0*pow(c1, 6) - 805.0*pow(c1, 4) + 161.0*pow(c1, 2) - 7.0) + 671840.0*pow(c0, 9)*c1*(31050.0*pow(c1, 6) - 31625.0*pow(c1, 4) + 9108.0*pow(c1, 2) - 693.0) + 12471030.0*pow(c0, 8)*(1725.0*pow(c1, 8) - 2300.0*pow(c1, 6) + 966.0*pow(c1, 4) - 140.0*pow(c1, 2) + 5.0) + 465120.0*pow(c0, 7)*c1*(36225.0*pow(c1, 8) - 59800.0*pow(c1, 6) + 32890.0*pow(c1, 4) - 6864.0*pow(c1, 2) + 429.0) + 185640.0*pow(c0, 6)*(58995.0*pow(c1, 10) - 120175.0*pow(c1, 8) + 86526.0*pow(c1, 6) - 26334.0*pow(c1, 4) + 3135.0*pow(c1, 2) - 99.0) + 4896.0*pow(c0, 5)*c1*(1101240.0*pow(c1, 10) - 2676625.0*pow(c1, 8) + 2386020.0*pow(c1, 6) - 950950.0*pow(c1, 4) + 163020.0*pow(c1, 2) - 9009.0) + 6300.0*pow(c0, 4)*(334305.0*pow(c1, 12) - 965770.0*pow(c1, 10) + 1062347.0*pow(c1, 8) - 554268.0*pow(c1, 6) + 138567.0*pow(c1, 4) - 14586.0*pow(c1, 2) + 429.0) + 480.0*pow(c0, 3)*c1*(1238895.0*pow(c1, 12) - 4160240.0*pow(c1, 10) + 5460315.0*pow(c1, 8) - 3527160.0*pow(c1, 6) + 1154725.0*pow(c1, 4) - 175032.0*pow(c1, 2) + 9009.0) + 360.0*pow(c0, 2)*(334305.0*pow(c1, 14) - 1300075.0*pow(c1, 12) + 2028117.0*pow(c1, 10) - 1616615.0*pow(c1, 8) + 692835.0*pow(c1, 6) - 153153.0*pow(c1, 4) + 15015.0*pow(c1, 2) - 429.0) + 288.0*c0*c1*pow(pow(c1, 2) - 1.0, 2)*(51750.0*pow(c1, 10) - 125925.0*pow(c1, 8) + 112424.0*pow(c1, 6) - 44902.0*pow(c1, 4) + 7722.0*pow(c1, 2) - 429.0) + 15.0*pow(pow(c1, 2) - 1.0, 3)*(58995.0*pow(c1, 10) - 120175.0*pow(c1, 8) + 86526.0*pow(c1, 6) - 26334.0*pow(c1, 4) + 3135.0*pow(c1, 2) - 99.0)); case 17: return 7.62939453125e-6*x2t*(2281140.0*pow(c0, 17) + 15511752.0*pow(c0, 16)*c1 + 3565920.0*pow(c0, 15)*(29.0*pow(c1, 2) - 3.0) + 3056502.85714286*pow(c0, 14)*c1*(116.0*pow(c1, 2) - 21.0) + 4160240.0*pow(c0, 13)*(261.0*pow(c1, 4) - 90.0*pow(c1, 2) + 5.0) + 15452320.0*pow(c0, 12)*c1*(145.0*pow(c1, 4) - 72.0*pow(c1, 2) + 7.0) + 3090464.0*pow(c0, 11)*(1305.0*pow(c1, 6) - 945.0*pow(c1, 4) + 175.0*pow(c1, 2) - 7.0) + 1236185.6*pow(c0, 10)*c1*(4350.0*pow(c1, 6) - 4125.0*pow(c1, 4) + 1100.0*pow(c1, 2) - 77.0) + 615853.333333333*pow(c0, 9)*(10005.0*pow(c1, 8) - 12420.0*pow(c1, 6) + 4830.0*pow(c1, 4) - 644.0*pow(c1, 2) + 21.0) + 5168.0*pow(c0, 8)*c1*(1050525.0*pow(c1, 8) - 1614600.0*pow(c1, 6) + 822250.0*pow(c1, 4) - 157872.0*pow(c1, 2) + 9009.0) + 403104.0*pow(c0, 7)*(10005.0*pow(c1, 10) - 18975.0*pow(c1, 8) + 12650.0*pow(c1, 6) - 3542.0*pow(c1, 4) + 385.0*pow(c1, 2) - 11.0) + 9646.93333333333*pow(c0, 6)*c1*(240120.0*pow(c1, 10) - 543375.0*pow(c1, 8) + 448500.0*pow(c1, 6) - 164450.0*pow(c1, 4) + 25740.0*pow(c1, 2) - 1287.0) + 1904.0*pow(c0, 5)*(570285.0*pow(c1, 12) - 1533870.0*pow(c1, 10) + 1562275.0*pow(c1, 8) - 749892.0*pow(c1, 6) + 171171.0*pow(c1, 4) - 16302.0*pow(c1, 2) + 429.0) + 32.0*pow(c0, 4)*c1*(11975985.0*pow(c1, 12) - 37442160.0*pow(c1, 10) + 45502625.0*pow(c1, 8) - 27041560.0*pow(c1, 6) + 8083075.0*pow(c1, 4) - 1108536.0*pow(c1, 2) + 51051.0) + 10.6666666666667*pow(c0, 3)*(9694845.0*pow(c1, 14) - 35102025.0*pow(c1, 12) + 50702925.0*pow(c1, 10) - 37182145.0*pow(c1, 8) + 14549535.0*pow(c1, 6) - 2909907.0*pow(c1, 4) + 255255.0*pow(c1, 2) - 6435.0) + 64.0*pow(c0, 2)*c1*(300150.0*pow(c1, 14) - 1238895.0*pow(c1, 12) + 2080120.0*pow(c1, 10) - 1820105.0*pow(c1, 8) + 881790.0*pow(c1, 6) - 230945.0*pow(c1, 4) + 29172.0*pow(c1, 2) - 1287.0) + 4.0*c0*pow(pow(c1, 2) - 1.0, 2)*(570285.0*pow(c1, 12) - 1533870.0*pow(c1, 10) + 1562275.0*pow(c1, 8) - 749892.0*pow(c1, 6) + 171171.0*pow(c1, 4) - 16302.0*pow(c1, 2) + 429.0) + 0.0761904761904762*c1*pow(pow(c1, 2) - 1.0, 3)*(1650825.0*pow(c1, 10) - 3741525.0*pow(c1, 8) + 3094650.0*pow(c1, 6) - 1137994.0*pow(c1, 4) + 178893.0*pow(c1, 2) - 9009.0)); case 18: return 1.27156575520833e-6*x2t*(23571780.0*pow(c0, 18) + 169716816.0*pow(c0, 17)*c1 + 38779380.0*pow(c0, 16)*(31.0*pow(c1, 2) - 3.0) + 35455433.1428571*pow(c0, 15)*c1*(124.0*pow(c1, 2) - 21.0) + 16046640.0*pow(c0, 14)*(899.0*pow(c1, 4) - 290.0*pow(c1, 2) + 15.0) + 7131840.0*pow(c0, 13)*c1*(4495.0*pow(c1, 4) - 2088.0*pow(c1, 2) + 189.0) + 7726160.0*pow(c0, 12)*(8091.0*pow(c1, 6) - 5481.0*pow(c1, 4) + 945.0*pow(c1, 2) - 35.0) + 16857076.3636364*pow(c0, 11)*c1*(5394.0*pow(c1, 6) - 4785.0*pow(c1, 4) + 1188.0*pow(c1, 2) - 77.0) + 8498776.0*pow(c0, 10)*(13485.0*pow(c1, 8) - 15660.0*pow(c1, 6) + 5670.0*pow(c1, 4) - 700.0*pow(c1, 2) + 21.0) + 237728.0*pow(c0, 9)*c1*(471975.0*pow(c1, 8) - 678600.0*pow(c1, 6) + 321750.0*pow(c1, 4) - 57200.0*pow(c1, 2) + 3003.0) + 302328.0*pow(c0, 8)*(310155.0*pow(c1, 10) - 550275.0*pow(c1, 8) + 341550.0*pow(c1, 6) - 88550.0*pow(c1, 4) + 8855.0*pow(c1, 2) - 231.0) + 8268.8*pow(c0, 7)*c1*(7443720.0*pow(c1, 10) - 15757875.0*pow(c1, 8) + 12109500.0*pow(c1, 6) - 4111250.0*pow(c1, 4) + 592020.0*pow(c1, 2) - 27027.0) + 108528.0*pow(c0, 6)*(310155.0*pow(c1, 12) - 780390.0*pow(c1, 10) + 740025.0*pow(c1, 8) - 328900.0*pow(c1, 6) + 69069.0*pow(c1, 4) - 6006.0*pow(c1, 2) + 143.0) + 5107.2*pow(c0, 5)*c1*(2791395.0*pow(c1, 12) - 8164080.0*pow(c1, 10) + 9237375.0*pow(c1, 8) - 5083000.0*pow(c1, 6) + 1397825.0*pow(c1, 4) - 175032.0*pow(c1, 2) + 7293.0) + 272.0*pow(c0, 4)*(17678835.0*pow(c1, 14) - 59879925.0*pow(c1, 12) + 80528175.0*pow(c1, 10) - 54679625.0*pow(c1, 8) + 19684665.0*pow(c1, 6) - 3594591.0*pow(c1, 4) + 285285.0*pow(c1, 2) - 6435.0) + 128.0*pow(c0, 3)*c1*(9304650.0*pow(c1, 14) - 35927955.0*pow(c1, 12) + 56163240.0*pow(c1, 10) - 45502625.0*pow(c1, 8) + 20281170.0*pow(c1, 6) - 4849845.0*pow(c1, 4) + 554268.0*pow(c1, 2) - 21879.0) + 12.0*pow(c0, 2)*(17678835.0*pow(c1, 16) - 77558760.0*pow(c1, 14) + 140408100.0*pow(c1, 12) - 135207800.0*pow(c1, 10) + 74364290.0*pow(c1, 8) - 23279256.0*pow(c1, 6) + 3879876.0*pow(c1, 4) - 291720.0*pow(c1, 2) + 6435.0) + 2.28571428571429*c0*c1*pow(pow(c1, 2) - 1.0, 2)*(10235115.0*pow(c1, 12) - 29954970.0*pow(c1, 10) + 33922125.0*pow(c1, 8) - 18687500.0*pow(c1, 6) + 5147285.0*pow(c1, 4) - 646074.0*pow(c1, 2) + 27027.0) + 4.0*pow(pow(c1, 2) - 1.0, 3)*(310155.0*pow(c1, 12) - 780390.0*pow(c1, 10) + 740025.0*pow(c1, 8) - 328900.0*pow(c1, 6) + 69069.0*pow(c1, 4) - 6006.0*pow(c1, 2) + 143.0)); case 19: return 3.814697265625e-6*x2t*(13646820.0*pow(c0, 19) + 103715832.0*pow(c0, 18)*c1 + 70715340.0*pow(c0, 17)*(11.0*pow(c1, 2) - 1.0) + 68694901.7142857*pow(c0, 16)*c1*(44.0*pow(c1, 2) - 7.0) + 10341168.0*pow(c0, 15)*(1023.0*pow(c1, 4) - 310.0*pow(c1, 2) + 15.0) + 14773097.1428571*pow(c0, 14)*c1*(1705.0*pow(c1, 4) - 744.0*pow(c1, 2) + 63.0) + 5348880.0*pow(c0, 13)*(9889.0*pow(c1, 6) - 6293.0*pow(c1, 4) + 1015.0*pow(c1, 2) - 35.0) + 15452320.0*pow(c0, 12)*c1*(5394.0*pow(c1, 6) - 4495.0*pow(c1, 4) + 1044.0*pow(c1, 2) - 63.0) + 3863080.0*pow(c0, 11)*(29667.0*pow(c1, 8) - 32364.0*pow(c1, 6) + 10962.0*pow(c1, 4) - 1260.0*pow(c1, 2) + 35.0) + 594320.0*pow(c0, 10)*c1*(207669.0*pow(c1, 8) - 280488.0*pow(c1, 6) + 124410.0*pow(c1, 4) - 20592.0*pow(c1, 2) + 1001.0) + 2832925.33333333*pow(c0, 9)*(40455.0*pow(c1, 10) - 67425.0*pow(c1, 8) + 39150.0*pow(c1, 6) - 9450.0*pow(c1, 4) + 875.0*pow(c1, 2) - 21.0) + 71318.4*pow(c0, 8)*c1*(1186680.0*pow(c1, 10) - 2359875.0*pow(c1, 8) + 1696500.0*pow(c1, 6) - 536250.0*pow(c1, 4) + 71500.0*pow(c1, 2) - 3003.0) + 15504.0*pow(c0, 7)*(3411705.0*pow(c1, 12) - 8064030.0*pow(c1, 10) + 7153575.0*pow(c1, 8) - 2960100.0*pow(c1, 6) + 575575.0*pow(c1, 4) - 46046.0*pow(c1, 2) + 1001.0) + 283.733333333333*pow(c0, 6)*c1*(92116035.0*pow(c1, 12) - 253086480.0*pow(c1, 10) + 267883875.0*pow(c1, 8) - 137241000.0*pow(c1, 6) + 34945625.0*pow(c1, 4) - 4025736.0*pow(c1, 2) + 153153.0) + 3100.8*pow(c0, 5)*(3411705.0*pow(c1, 14) - 10855425.0*pow(c1, 12) + 13656825.0*pow(c1, 10) - 8633625.0*pow(c1, 8) + 2877875.0*pow(c1, 6) - 483483.0*pow(c1, 4) + 35035.0*pow(c1, 2) - 715.0) + 32.0*pow(c0, 4)*c1*(102351150.0*pow(c1, 14) - 371255535.0*pow(c1, 12) + 542911320.0*pow(c1, 10) - 409523625.0*pow(c1, 8) + 169009750.0*pow(c1, 6) - 37182145.0*pow(c1, 4) + 3879876.0*pow(c1, 2) - 138567.0) + 1.33333333333333*pow(c0, 3)*(583401555.0*pow(c1, 16) - 2404321560.0*pow(c1, 14) + 4071834900.0*pow(c1, 12) - 3650610600.0*pow(c1, 10) + 1859107250.0*pow(c1, 8) - 535422888.0*pow(c1, 6) + 81477396.0*pow(c1, 4) - 5542680.0*pow(c1, 2) + 109395.0) + 1.14285714285714*pow(c0, 2)*c1*(112586265.0*pow(c1, 16) - 521060400.0*pow(c1, 14) + 1005982740.0*pow(c1, 12) - 1048380480.0*pow(c1, 10) + 637036750.0*pow(c1, 8) - 227149104.0*pow(c1, 6) + 45265220.0*pow(c1, 4) - 4434144.0*pow(c1, 2) + 153153.0) + 4.0*c0*pow(pow(c1, 2) - 1.0, 2)*(3411705.0*pow(c1, 14) - 10855425.0*pow(c1, 12) + 13656825.0*pow(c1, 10) - 8633625.0*pow(c1, 8) + 2877875.0*pow(c1, 6) - 483483.0*pow(c1, 4) + 35035.0*pow(c1, 2) - 715.0) + 0.380952380952381*c1*pow(pow(c1, 2) - 1.0, 3)*(1780020.0*pow(c1, 12) - 4895055.0*pow(c1, 10) + 5187375.0*pow(c1, 8) - 2661750.0*pow(c1, 6) + 679250.0*pow(c1, 4) - 78507.0*pow(c1, 2) + 3003.0)); case 20: return 9.5367431640625e-7*x2t*(95527740.0*pow(c0, 20) + 764221920.0*pow(c0, 19)*c1 + 172859720.0*pow(c0, 18)*(35.0*pow(c1, 2) - 3.0) + 1244589984.0*pow(c0, 17)*c1*(20.0*pow(c1, 2) - 3.0) + 1202160780.0*pow(c0, 16)*(77.0*pow(c1, 4) - 22.0*pow(c1, 2) + 1.0) + 122124269.714286*pow(c0, 15)*c1*(1925.0*pow(c1, 4) - 792.0*pow(c1, 2) + 63.0) + 310235040.0*pow(c0, 14)*(1705.0*pow(c1, 6) - 1023.0*pow(c1, 4) + 155.0*pow(c1, 2) - 5.0) + 413646720.0*pow(c0, 13)*c1*(2170.0*pow(c1, 6) - 1705.0*pow(c1, 4) + 372.0*pow(c1, 2) - 21.0) + 3863080.0*pow(c0, 12)*(346115.0*pow(c1, 8) - 356004.0*pow(c1, 6) + 113274.0*pow(c1, 4) - 12180.0*pow(c1, 2) + 315.0) + 7131840.0*pow(c0, 11)*c1*(220255.0*pow(c1, 8) - 280488.0*pow(c1, 6) + 116870.0*pow(c1, 4) - 18096.0*pow(c1, 2) + 819.0) + 84987760.0*pow(c0, 10)*(18879.0*pow(c1, 10) - 29667.0*pow(c1, 8) + 16182.0*pow(c1, 6) - 3654.0*pow(c1, 4) + 315.0*pow(c1, 2) - 7.0) + 2377280.0*pow(c0, 9)*c1*(553784.0*pow(c1, 10) - 1038345.0*pow(c1, 8) + 701220.0*pow(c1, 6) - 207350.0*pow(c1, 4) + 25740.0*pow(c1, 2) - 1001.0) + 1961256.0*pow(c0, 8)*(471975.0*pow(c1, 12) - 1051830.0*pow(c1, 10) + 876525.0*pow(c1, 8) - 339300.0*pow(c1, 6) + 61425.0*pow(c1, 4) - 4550.0*pow(c1, 2) + 91.0) + 33561.6*pow(c0, 7)*c1*(15575175.0*pow(c1, 12) - 40347120.0*pow(c1, 10) + 40117875.0*pow(c1, 8) - 19227000.0*pow(c1, 6) + 4558125.0*pow(c1, 4) - 486200.0*pow(c1, 2) + 17017.0) + 72352.0*pow(c0, 6)*(3411705.0*pow(c1, 14) - 10235115.0*pow(c1, 12) + 12096045.0*pow(c1, 10) - 7153575.0*pow(c1, 8) + 2220075.0*pow(c1, 6) - 345345.0*pow(c1, 4) + 23023.0*pow(c1, 2) - 429.0) + 179.2*pow(c0, 5)*c1*(511755750.0*pow(c1, 14) - 1750204665.0*pow(c1, 12) + 2404321560.0*pow(c1, 10) - 1696597875.0*pow(c1, 8) + 651894750.0*pow(c1, 6) - 132793375.0*pow(c1, 4) + 12748164.0*pow(c1, 2) - 415701.0) + 228.0*pow(c0, 4)*(119409675.0*pow(c1, 16) - 463991880.0*pow(c1, 14) + 738168900.0*pow(c1, 12) - 619109400.0*pow(c1, 10) + 293543250.0*pow(c1, 8) - 78278200.0*pow(c1, 6) + 10958948.0*pow(c1, 4) - 680680.0*pow(c1, 2) + 12155.0) + 10.6666666666667*pow(c0, 3)*c1*(562931325.0*pow(c1, 16) - 2456427600.0*pow(c1, 14) + 4455066420.0*pow(c1, 12) - 4343290560.0*pow(c1, 10) + 2457141750.0*pow(c1, 8) - 811246800.0*pow(c1, 6) + 148728580.0*pow(c1, 4) - 13302432.0*pow(c1, 2) + 415701.0) + 8.0*pow(c0, 2)*(119409675.0*pow(c1, 18) - 583401555.0*pow(c1, 16) + 1202160780.0*pow(c1, 14) - 1357278300.0*pow(c1, 12) + 912652650.0*pow(c1, 10) - 371821450.0*pow(c1, 8) + 89237148.0*pow(c1, 6) - 11639628.0*pow(c1, 4) + 692835.0*pow(c1, 2) - 12155.0) + 4.57142857142857*c0*c1*pow(pow(c1, 2) - 1.0, 2)*(20766900.0*pow(c1, 14) - 71052465.0*pow(c1, 12) + 97658370.0*pow(c1, 10) - 68958375.0*pow(c1, 8) + 26520000.0*pow(c1, 6) - 5408975.0*pow(c1, 4) + 520234.0*pow(c1, 2) - 17017.0) + 1.33333333333333*pow(pow(c1, 2) - 1.0, 3)*(3411705.0*pow(c1, 14) - 10235115.0*pow(c1, 12) + 12096045.0*pow(c1, 10) - 7153575.0*pow(c1, 8) + 2220075.0*pow(c1, 6) - 345345.0*pow(c1, 4) + 23023.0*pow(c1, 2) - 429.0)); case 21: return 3.17891438802083e-7*x2t*(504932340.0*pow(c0, 21) + 4241431656.0*pow(c0, 20)*c1 + 955277400.0*pow(c0, 19)*(37.0*pow(c1, 2) - 3.0) + 1037158320.0*pow(c0, 18)*c1*(148.0*pow(c1, 2) - 21.0) + 2333606220.0*pow(c0, 17)*(259.0*pow(c1, 4) - 70.0*pow(c1, 2) + 3.0) + 1763169144.0*pow(c0, 16)*c1*(925.0*pow(c1, 4) - 360.0*pow(c1, 2) + 27.0) + 9617286240.0*pow(c0, 15)*(407.0*pow(c1, 6) - 231.0*pow(c1, 4) + 33.0*pow(c1, 2) - 1.0) + 2747796068.57143*pow(c0, 14)*c1*(2590.0*pow(c1, 6) - 1925.0*pow(c1, 4) + 396.0*pow(c1, 2) - 21.0) + 180970440.0*pow(c0, 13)*(63085.0*pow(c1, 8) - 61380.0*pow(c1, 6) + 18414.0*pow(c1, 4) - 1860.0*pow(c1, 2) + 45.0) + 51705840.0*pow(c0, 12)*c1*(281015.0*pow(c1, 8) - 338520.0*pow(c1, 6) + 132990.0*pow(c1, 4) - 19344.0*pow(c1, 2) + 819.0) + 69535440.0*pow(c0, 11)*(232841.0*pow(c1, 10) - 346115.0*pow(c1, 8) + 178002.0*pow(c1, 6) - 37758.0*pow(c1, 4) + 3045.0*pow(c1, 2) - 63.0) + 7845024.0*pow(c0, 10)*c1*(1862728.0*pow(c1, 10) - 3303825.0*pow(c1, 8) + 2103660.0*pow(c1, 6) - 584350.0*pow(c1, 4) + 67860.0*pow(c1, 2) - 2457.0) + 16343800.0*pow(c0, 9)*(698523.0*pow(c1, 12) - 1472562.0*pow(c1, 10) + 1157013.0*pow(c1, 8) - 420732.0*pow(c1, 6) + 71253.0*pow(c1, 4) - 4914.0*pow(c1, 2) + 91.0) + 314640.0*pow(c0, 8)*c1*(23051259.0*pow(c1, 12) - 56485968.0*pow(c1, 10) + 52955595.0*pow(c1, 8) - 23841480.0*pow(c1, 6) + 5287425.0*pow(c1, 4) - 525096.0*pow(c1, 2) + 17017.0) + 7845024.0*pow(c0, 7)*(498945.0*pow(c1, 14) - 1415925.0*pow(c1, 12) + 1577745.0*pow(c1, 10) - 876525.0*pow(c1, 8) + 254475.0*pow(c1, 6) - 36855.0*pow(c1, 4) + 2275.0*pow(c1, 2) - 39.0) + 6182.4*pow(c0, 6)*c1*(274419750.0*pow(c1, 14) - 887784975.0*pow(c1, 12) + 1149892920.0*pow(c1, 10) - 762239625.0*pow(c1, 8) + 273984750.0*pow(c1, 6) - 51962625.0*pow(c1, 4) + 4618900.0*pow(c1, 2) - 138567.0) + 4788.0*pow(c0, 5)*(126233085.0*pow(c1, 16) - 463991880.0*pow(c1, 14) + 695987820.0*pow(c1, 12) - 548354040.0*pow(c1, 10) + 243221550.0*pow(c1, 8) - 60386040.0*pow(c1, 6) + 7827820.0*pow(c1, 4) - 447304.0*pow(c1, 2) + 7293.0) + 8.0*pow(c0, 4)*c1*(20828459025.0*pow(c1, 16) - 85974966000.0*pow(c1, 14) + 147017191860.0*pow(c1, 12) - 134642007360.0*pow(c1, 10) + 71257110750.0*pow(c1, 8) - 21903663600.0*pow(c1, 6) + 3718214500.0*pow(c1, 4) - 305955936.0*pow(c1, 2) + 8729721.0) + 8.0*pow(c0, 3)*(4418157975.0*pow(c1, 18) - 20419054425.0*pow(c1, 16) + 39671305740.0*pow(c1, 14) - 42075627300.0*pow(c1, 12) + 26466926850.0*pow(c1, 10) - 10039179150.0*pow(c1, 8) + 2230928700.0*pow(c1, 6) - 267711444.0*pow(c1, 4) + 14549535.0*pow(c1, 2) - 230945.0) + 48.0*pow(c0, 2)*c1*(109767900.0*pow(c1, 18) - 562931325.0*pow(c1, 16) + 1228213800.0*pow(c1, 14) - 1485022140.0*pow(c1, 12) + 1085822640.0*pow(c1, 10) - 491428350.0*pow(c1, 8) + 135207800.0*pow(c1, 6) - 21246940.0*pow(c1, 4) + 1662804.0*pow(c1, 2) - 46189.0) + 4.0*c0*pow(pow(c1, 2) - 1.0, 2)*(126233085.0*pow(c1, 16) - 463991880.0*pow(c1, 14) + 695987820.0*pow(c1, 12) - 548354040.0*pow(c1, 10) + 243221550.0*pow(c1, 8) - 60386040.0*pow(c1, 6) + 7827820.0*pow(c1, 4) - 447304.0*pow(c1, 2) + 7293.0) + 0.228571428571429*c1*pow(pow(c1, 2) - 1.0, 3)*(99888789.0*pow(c1, 14) - 323340633.0*pow(c1, 12) + 419105709.0*pow(c1, 10) - 278074185.0*pow(c1, 8) + 100076535.0*pow(c1, 6) - 19012851.0*pow(c1, 4) + 1694407.0*pow(c1, 2) - 51051.0)); case 22: return 4.76837158203125e-7*x2t*(596738220.0*pow(c0, 22) + 5251296336.0*pow(c0, 21)*c1 + 3534526380.0*pow(c0, 20)*(13.0*pow(c1, 2) - 1.0) + 4039458720.0*pow(c0, 19)*c1*(52.0*pow(c1, 2) - 7.0) + 605009020.0*pow(c0, 18)*(1443.0*pow(c1, 4) - 370.0*pow(c1, 2) + 15.0) + 1037158320.0*pow(c0, 17)*c1*(2405.0*pow(c1, 4) - 888.0*pow(c1, 2) + 63.0) + 13223768580.0*pow(c0, 16)*(481.0*pow(c1, 6) - 259.0*pow(c1, 4) + 35.0*pow(c1, 2) - 1.0) + 854869888.0*pow(c0, 15)*c1*(14430.0*pow(c1, 6) - 10175.0*pow(c1, 4) + 1980.0*pow(c1, 2) - 99.0) + 4007202600.0*pow(c0, 14)*(5291.0*pow(c1, 8) - 4884.0*pow(c1, 6) + 1386.0*pow(c1, 4) - 132.0*pow(c1, 2) + 3.0) + 3205762080.0*pow(c0, 13)*c1*(9065.0*pow(c1, 8) - 10360.0*pow(c1, 6) + 3850.0*pow(c1, 4) - 528.0*pow(c1, 2) + 21.0) + 784205240.0*pow(c0, 12)*(44733.0*pow(c1, 10) - 63085.0*pow(c1, 8) + 30690.0*pow(c1, 6) - 6138.0*pow(c1, 4) + 465.0*pow(c1, 2) - 9.0) + 41364672.0*pow(c0, 11)*c1*(835016.0*pow(c1, 10) - 1405075.0*pow(c1, 8) + 846300.0*pow(c1, 6) - 221650.0*pow(c1, 4) + 24180.0*pow(c1, 2) - 819.0) + 127481640.0*pow(c0, 10)*(232841.0*pow(c1, 12) - 465682.0*pow(c1, 10) + 346115.0*pow(c1, 8) - 118668.0*pow(c1, 6) + 18879.0*pow(c1, 4) - 1218.0*pow(c1, 2) + 21.0) + 769120.0*pow(c0, 9)*c1*(27242397.0*pow(c1, 12) - 63332752.0*pow(c1, 10) + 56165025.0*pow(c1, 8) - 23841480.0*pow(c1, 6) + 4966975.0*pow(c1, 4) - 461448.0*pow(c1, 2) + 13923.0) + 9806280.0*pow(c0, 8)*(1297257.0*pow(c1, 14) - 3492615.0*pow(c1, 12) + 3681405.0*pow(c1, 10) - 1928355.0*pow(c1, 8) + 525915.0*pow(c1, 6) - 71253.0*pow(c1, 4) + 4095.0*pow(c1, 2) - 65.0) + 44160.0*pow(c0, 7)*c1*(142698270.0*pow(c1, 14) - 437973921.0*pow(c1, 12) + 536616696.0*pow(c1, 10) - 335385435.0*pow(c1, 8) + 113247030.0*pow(c1, 6) - 20092215.0*pow(c1, 4) + 1662804.0*pow(c1, 2) - 46189.0) + 134596.0*pow(c0, 6)*(19458855.0*pow(c1, 16) - 67856520.0*pow(c1, 14) + 96282900.0*pow(c1, 12) - 71524440.0*pow(c1, 10) + 29801850.0*pow(c1, 8) - 6921720.0*pow(c1, 6) + 835380.0*pow(c1, 4) - 44200.0*pow(c1, 2) + 663.0) + 220.8*pow(c0, 5)*c1*(3924202425.0*pow(c1, 16) - 15367506000.0*pow(c1, 14) + 24857979300.0*pow(c1, 12) - 21464667840.0*pow(c1, 10) + 10671354750.0*pow(c1, 8) - 3068629200.0*pow(c1, 6) + 484984500.0*pow(c1, 4) - 36951200.0*pow(c1, 2) + 969969.0) + 140.0*pow(c0, 4)*(1641030105.0*pow(c1, 18) - 7195285845.0*pow(c1, 16) + 13223768580.0*pow(c1, 14) - 13223768580.0*pow(c1, 12) + 7814045070.0*pow(c1, 10) - 2772725670.0*pow(c1, 8) + 573667380.0*pow(c1, 6) - 63740820.0*pow(c1, 4) + 3187041.0*pow(c1, 2) - 46189.0) + 10.6666666666667*pow(c0, 3)*c1*(4280948100.0*pow(c1, 18) - 20828459025.0*pow(c1, 16) + 42987483000.0*pow(c1, 14) - 49005730620.0*pow(c1, 12) + 33660501840.0*pow(c1, 10) - 14251422150.0*pow(c1, 8) + 3650610600.0*pow(c1, 6) - 531173500.0*pow(c1, 4) + 38244492.0*pow(c1, 2) - 969969.0) + 4.0*pow(c0, 2)*(1641030105.0*pow(c1, 20) - 8836315950.0*pow(c1, 18) + 20419054425.0*pow(c1, 16) - 26447537160.0*pow(c1, 14) + 21037813650.0*pow(c1, 12) - 10586770740.0*pow(c1, 10) + 3346393050.0*pow(c1, 8) - 637408200.0*pow(c1, 6) + 66927861.0*pow(c1, 4) - 3233230.0*pow(c1, 2) + 46189.0) + 3.2*c0*c1*pow(pow(c1, 2) - 1.0, 2)*(185507751.0*pow(c1, 16) - 726663498.0*pow(c1, 14) + 1175821878.0*pow(c1, 12) - 1015738746.0*pow(c1, 10) + 505255980.0*pow(c1, 8) - 145394574.0*pow(c1, 6) + 23002122.0*pow(c1, 4) - 1755182.0*pow(c1, 2) + 46189.0) + 1.33333333333333*pow(pow(c1, 2) - 1.0, 3)*(19458855.0*pow(c1, 16) - 67856520.0*pow(c1, 14) + 96282900.0*pow(c1, 12) - 71524440.0*pow(c1, 10) + 29801850.0*pow(c1, 8) - 6921720.0*pow(c1, 6) + 835380.0*pow(c1, 4) - 44200.0*pow(c1, 2) + 663.0)); case 23: return 4.76837158203125e-7*x2t*(1063750740.0*pow(c0, 23) + 9786506808.0*pow(c0, 22)*c1 + 2188040140.0*pow(c0, 21)*(41.0*pow(c1, 2) - 3.0) + 2625648168.0*pow(c0, 20)*c1*(164.0*pow(c1, 2) - 21.0) + 3534526380.0*pow(c0, 19)*(533.0*pow(c1, 4) - 130.0*pow(c1, 2) + 5.0) + 2131936546.66667*pow(c0, 18)*c1*(2665.0*pow(c1, 4) - 936.0*pow(c1, 2) + 63.0) + 777868740.0*pow(c0, 17)*(19721.0*pow(c1, 6) - 10101.0*pow(c1, 4) + 1295.0*pow(c1, 2) - 35.0) + 801440520.0*pow(c0, 16)*c1*(39442.0*pow(c1, 6) - 26455.0*pow(c1, 4) + 4884.0*pow(c1, 2) - 231.0) + 2938615240.0*pow(c0, 15)*(19721.0*pow(c1, 8) - 17316.0*pow(c1, 6) + 4662.0*pow(c1, 4) - 420.0*pow(c1, 2) + 9.0) + 1602881040.0*pow(c0, 14)*c1*(53095.0*pow(c1, 8) - 57720.0*pow(c1, 6) + 20350.0*pow(c1, 4) - 2640.0*pow(c1, 2) + 99.0) + 5610083640.0*pow(c0, 13)*(19721.0*pow(c1, 10) - 26455.0*pow(c1, 8) + 12210.0*pow(c1, 6) - 2310.0*pow(c1, 4) + 165.0*pow(c1, 2) - 3.0) + 1389163568.0*pow(c0, 12)*c1*(84952.0*pow(c1, 10) - 135975.0*pow(c1, 8) + 77700.0*pow(c1, 6) - 19250.0*pow(c1, 4) + 1980.0*pow(c1, 2) - 63.0) + 2352615720.0*pow(c0, 11)*(47027.0*pow(c1, 12) - 89466.0*pow(c1, 10) + 63085.0*pow(c1, 8) - 20460.0*pow(c1, 6) + 3069.0*pow(c1, 4) - 186.0*pow(c1, 2) + 3.0) + 6691344.0*pow(c0, 10)*c1*(12838371.0*pow(c1, 12) - 28390544.0*pow(c1, 10) + 23886275.0*pow(c1, 8) - 9591400.0*pow(c1, 6) + 1884025.0*pow(c1, 4) - 164424.0*pow(c1, 2) + 4641.0) + 42493880.0*pow(c0, 9)*(1363783.0*pow(c1, 14) - 3492615.0*pow(c1, 12) + 3492615.0*pow(c1, 10) - 1730575.0*pow(c1, 8) + 445005.0*pow(c1, 6) - 56637.0*pow(c1, 4) + 3045.0*pow(c1, 2) - 45.0) + 182160.0*pow(c0, 8)*c1*(177291790.0*pow(c1, 14) - 517605543.0*pow(c1, 12) + 601661144.0*pow(c1, 10) - 355711825.0*pow(c1, 8) + 113247030.0*pow(c1, 6) - 18874505.0*pow(c1, 4) + 1461252.0*pow(c1, 2) - 37791.0) + 288420.0*pow(c0, 7)*(53187537.0*pow(c1, 16) - 176426952.0*pow(c1, 14) + 237497820.0*pow(c1, 12) - 166890360.0*pow(c1, 10) + 65564070.0*pow(c1, 8) - 14304888.0*pow(c1, 6) + 1615068.0*pow(c1, 4) - 79560.0*pow(c1, 2) + 1105.0) + 2760.0*pow(c0, 6)*c1*(2145230659.0*pow(c1, 16) - 7991103120.0*pow(c1, 14) + 12263269788.0*pow(c1, 12) - 10016844992.0*pow(c1, 10) + 4695396090.0*pow(c1, 8) - 1268366736.0*pow(c1, 6) + 187527340.0*pow(c1, 4) - 13302432.0*pow(c1, 2) + 323323.0) + 7084.0*pow(c0, 5)*(265937685.0*pow(c1, 18) - 1109154735.0*pow(c1, 16) + 1933910820.0*pow(c1, 14) - 1829375100.0*pow(c1, 12) + 1019223270.0*pow(c1, 10) - 339741090.0*pow(c1, 8) + 65756340.0*pow(c1, 6) - 6802380.0*pow(c1, 4) + 314925.0*pow(c1, 2) - 4199.0) + 8.0*pow(c0, 4)*c1*(58506290700.0*pow(c1, 18) - 270769967325.0*pow(c1, 16) + 530178957000.0*pow(c1, 14) - 571733523900.0*pow(c1, 12) + 370265520240.0*pow(c1, 10) - 147264695550.0*pow(c1, 8) + 35289235800.0*pow(c1, 6) - 4780561500.0*pow(c1, 4) + 318704100.0*pow(c1, 2) - 7436429.0) + 1.33333333333333*pow(c0, 3)*(67282234305.0*pow(c1, 20) - 344616322050.0*pow(c1, 18) + 755505013725.0*pow(c1, 16) - 925663800600.0*pow(c1, 14) + 694247850450.0*pow(c1, 12) - 328189892940.0*pow(c1, 10) + 97045398450.0*pow(c1, 8) - 17210021400.0*pow(c1, 6) + 1673196525.0*pow(c1, 4) - 74364290.0*pow(c1, 2) + 969969.0) + 1.6*pow(c0, 2)*c1*(7605817791.0*pow(c1, 20) - 42809481000.0*pow(c1, 18) + 104142295125.0*pow(c1, 16) - 143291610000.0*pow(c1, 14) + 122514326550.0*pow(c1, 12) - 67321003680.0*pow(c1, 10) + 23752370250.0*pow(c1, 8) - 5215158000.0*pow(c1, 6) + 663966875.0*pow(c1, 4) - 42493880.0*pow(c1, 2) + 969969.0) + 4.0*c0*pow(pow(c1, 2) - 1.0, 2)*(265937685.0*pow(c1, 18) - 1109154735.0*pow(c1, 16) + 1933910820.0*pow(c1, 14) - 1829375100.0*pow(c1, 12) + 1019223270.0*pow(c1, 10) - 339741090.0*pow(c1, 8) + 65756340.0*pow(c1, 6) - 6802380.0*pow(c1, 4) + 314925.0*pow(c1, 2) - 4199.0) + 0.177777777777778*c1*pow(pow(c1, 2) - 1.0, 3)*(248208506.0*pow(c1, 16) - 924944241.0*pow(c1, 14) + 1420097259.0*pow(c1, 12) - 1160636869.0*pow(c1, 10) + 544456875.0*pow(c1, 8) - 147221139.0*pow(c1, 6) + 21797009.0*pow(c1, 4) - 1549431.0*pow(c1, 2) + 37791.0)); case 24: return 1.98682149251302e-8*x2t*(45741281820.0*pow(c0, 24) + 439116305472.0*pow(c0, 23)*c1 + 97865068080.0*pow(c0, 22)*(43.0*pow(c1, 2) - 3.0) + 123030371300.571*pow(c0, 21)*c1*(172.0*pow(c1, 2) - 21.0) + 55138611528.0*pow(c0, 20)*(1763.0*pow(c1, 4) - 410.0*pow(c1, 2) + 15.0) + 35008642240.0*pow(c0, 19)*c1*(8815.0*pow(c1, 4) - 2952.0*pow(c1, 2) + 189.0) + 38374857840.0*pow(c0, 18)*(22919.0*pow(c1, 6) - 11193.0*pow(c1, 4) + 1365.0*pow(c1, 2) - 35.0) + 41863481280.0*pow(c0, 17)*c1*(45838.0*pow(c1, 6) - 29315.0*pow(c1, 4) + 5148.0*pow(c1, 2) - 231.0) + 4407922860.0*pow(c0, 16)*(848003.0*pow(c1, 8) - 709956.0*pow(c1, 6) + 181818.0*pow(c1, 4) - 15540.0*pow(c1, 2) + 315.0) + 12823048320.0*pow(c0, 15)*c1*(456617.0*pow(c1, 8) - 473304.0*pow(c1, 6) + 158730.0*pow(c1, 4) - 19536.0*pow(c1, 2) + 693.0) + 9617286240.0*pow(c0, 14)*(848003.0*pow(c1, 10) - 1084655.0*pow(c1, 8) + 476190.0*pow(c1, 6) - 85470.0*pow(c1, 4) + 5775.0*pow(c1, 2) - 99.0) + 17952267648.0*pow(c0, 13)*c1*(521848.0*pow(c1, 10) - 796425.0*pow(c1, 8) + 432900.0*pow(c1, 6) - 101750.0*pow(c1, 4) + 9900.0*pow(c1, 2) - 297.0) + 145862174640.0*pow(c0, 12)*(65231.0*pow(c1, 12) - 118326.0*pow(c1, 10) + 79365.0*pow(c1, 8) - 24420.0*pow(c1, 6) + 3465.0*pow(c1, 4) - 198.0*pow(c1, 2) + 3.0) + 5883516288.0*pow(c0, 11)*c1*(1369851.0*pow(c1, 12) - 2888368.0*pow(c1, 10) + 2311575.0*pow(c1, 8) - 880600.0*pow(c1, 6) + 163625.0*pow(c1, 4) - 13464.0*pow(c1, 2) + 357.0) + 2957574048.0*pow(c0, 10)*(2022161.0*pow(c1, 14) - 4937835.0*pow(c1, 12) + 4696965.0*pow(c1, 10) - 2207975.0*pow(c1, 8) + 537075.0*pow(c1, 6) - 64449.0*pow(c1, 4) + 3255.0*pow(c1, 2) - 45.0) + 14087040.0*pow(c0, 9)*c1*(262880930.0*pow(c1, 14) - 731787147.0*pow(c1, 12) + 809130504.0*pow(c1, 10) - 453839225.0*pow(c1, 8) + 136677450.0*pow(c1, 6) - 21477885.0*pow(c1, 4) + 1562028.0*pow(c1, 2) - 37791.0) + 33745140.0*pow(c0, 8)*(58642669.0*pow(c1, 16) - 185474488.0*pow(c1, 14) + 237497820.0*pow(c1, 12) - 158331880.0*pow(c1, 10) + 58839550.0*pow(c1, 8) - 12104136.0*pow(c1, 6) + 1283772.0*pow(c1, 4) - 59160.0*pow(c1, 2) + 765.0) + 104091.428571429*pow(c0, 7)*c1*(8385901667.0*pow(c1, 16) - 29785020720.0*pow(c1, 14) + 43478865612.0*pow(c1, 12) - 33693024064.0*pow(c1, 10) + 14939896650.0*pow(c1, 8) - 3805100208.0*pow(c1, 6) + 528486140.0*pow(c1, 4) - 35070048.0*pow(c1, 2) + 793611.0) + 141680.0*pow(c0, 6)*(2287064091.0*pow(c1, 18) - 9095068827.0*pow(c1, 16) + 15084504396.0*pow(c1, 14) - 13537375740.0*pow(c1, 12) + 7134562890.0*pow(c1, 10) - 2242291194.0*pow(c1, 8) + 407689308.0*pow(c1, 6) - 39453804.0*pow(c1, 4) + 1700595.0*pow(c1, 2) - 20995.0) + 960.0*pow(c0, 5)*c1*(100630820004.0*pow(c1, 18) - 444062746413.0*pow(c1, 16) + 827079172920.0*pow(c1, 14) - 846165615372.0*pow(c1, 12) + 518371728336.0*pow(c1, 10) - 194389398126.0*pow(c1, 8) + 43758652392.0*pow(c1, 6) - 5545451340.0*pow(c1, 4) + 344200428.0*pow(c1, 2) - 7436429.0) + 2024.0*pow(c0, 4)*(11435320455.0*pow(c1, 20) - 55846913850.0*pow(c1, 18) + 116461247175.0*pow(c1, 16) - 135373757400.0*pow(c1, 14) + 96042192750.0*pow(c1, 12) - 42807377340.0*pow(c1, 10) + 11890938150.0*pow(c1, 8) - 1972690200.0*pow(c1, 6) + 178562475.0*pow(c1, 4) - 7348250.0*pow(c1, 2) + 88179.0) + 12.8*pow(c0, 3)*c1*(327050165013.0*pow(c1, 20) - 1755188721000.0*pow(c1, 18) + 4061549509875.0*pow(c1, 16) - 5301789570000.0*pow(c1, 14) + 4288001429250.0*pow(c1, 12) - 2221593121440.0*pow(c1, 10) + 736323477750.0*pow(c1, 8) - 151239582000.0*pow(c1, 6) + 17927105625.0*pow(c1, 4) - 1062347000.0*pow(c1, 2) + 22309287.0) + 48.0*pow(c0, 2)*(11435320455.0*pow(c1, 22) - 67282234305.0*pow(c1, 20) + 172308161025.0*pow(c1, 18) - 251835004575.0*pow(c1, 16) + 231415950150.0*pow(c1, 14) - 138849570090.0*pow(c1, 12) + 54698315490.0*pow(c1, 10) - 13863628350.0*pow(c1, 8) + 2151252675.0*pow(c1, 6) - 185910725.0*pow(c1, 4) + 7436429.0*pow(c1, 2) - 88179.0) + 4.26666666666667*c0*c1*pow(pow(c1, 2) - 1.0, 2)*(10672965758.0*pow(c1, 18) - 47106428603.0*pow(c1, 16) + 87756841536.0*pow(c1, 14) - 89806773700.0*pow(c1, 12) + 55035733564.0*pow(c1, 10) - 20647546962.0*pow(c1, 8) + 4650678032.0*pow(c1, 6) - 589858724.0*pow(c1, 4) + 36657270.0*pow(c1, 2) - 793611.0) + 0.8*pow(pow(c1, 2) - 1.0, 3)*(2287064091.0*pow(c1, 18) - 9095068827.0*pow(c1, 16) + 15084504396.0*pow(c1, 14) - 13537375740.0*pow(c1, 12) + 7134562890.0*pow(c1, 10) - 2242291194.0*pow(c1, 8) + 407689308.0*pow(c1, 6) - 39453804.0*pow(c1, 4) + 1700595.0*pow(c1, 2) - 20995.0)); case 25: return 5.96046447753906e-8*x2t*(27444769092.0*pow(c0, 25) + 274447690920.0*pow(c0, 24)*c1 + 182965127280.0*pow(c0, 23)*(15.0*pow(c1, 2) - 1.0) + 240468452996.571*pow(c0, 22)*c1*(60.0*pow(c1, 2) - 7.0) + 179419291480.0*pow(c0, 21)*(387.0*pow(c1, 4) - 86.0*pow(c1, 2) + 3.0) + 215303149776.0*pow(c0, 20)*c1*(1075.0*pow(c1, 4) - 344.0*pow(c1, 2) + 21.0) + 26256481680.0*pow(c0, 19)*(26445.0*pow(c1, 6) - 12341.0*pow(c1, 4) + 1435.0*pow(c1, 2) - 35.0) + 10078245493.3333*pow(c0, 18)*c1*(158670.0*pow(c1, 6) - 96965.0*pow(c1, 4) + 16236.0*pow(c1, 2) - 693.0) + 28781143380.0*pow(c0, 17)*(114595.0*pow(c1, 8) - 91676.0*pow(c1, 6) + 22386.0*pow(c1, 4) - 1820.0*pow(c1, 2) + 35.0) + 29653299240.0*pow(c0, 16)*c1*(185115.0*pow(c1, 8) - 183352.0*pow(c1, 6) + 58630.0*pow(c1, 4) - 6864.0*pow(c1, 2) + 231.0) + 1068587360.0*pow(c0, 15)*(7632027.0*pow(c1, 10) - 9328033.0*pow(c1, 8) + 3904758.0*pow(c1, 6) - 666666.0*pow(c1, 4) + 42735.0*pow(c1, 2) - 693.0) + 6411524160.0*pow(c0, 14)*c1*(1565544.0*pow(c1, 10) - 2283085.0*pow(c1, 8) + 1183260.0*pow(c1, 6) - 264550.0*pow(c1, 4) + 24420.0*pow(c1, 2) - 693.0) + 11220167280.0*pow(c0, 13)*(978465.0*pow(c1, 12) - 1696006.0*pow(c1, 10) + 1084655.0*pow(c1, 8) - 317460.0*pow(c1, 6) + 42735.0*pow(c1, 4) - 2310.0*pow(c1, 2) + 33.0) + 1144017056.0*pow(c0, 12)*c1*(8806185.0*pow(c1, 12) - 17742832.0*pow(c1, 10) + 13539225.0*pow(c1, 8) - 4906200.0*pow(c1, 6) + 864875.0*pow(c1, 4) - 67320.0*pow(c1, 2) + 1683.0) + 41674907040.0*pow(c0, 11)*(195693.0*pow(c1, 14) - 456617.0*pow(c1, 12) + 414141.0*pow(c1, 10) - 185185.0*pow(c1, 8) + 42735.0*pow(c1, 6) - 4851.0*pow(c1, 4) + 231.0*pow(c1, 2) - 3.0) + 567707712.0*pow(c0, 10)*c1*(9784650.0*pow(c1, 14) - 26027169.0*pow(c1, 12) + 27439496.0*pow(c1, 10) - 14639975.0*pow(c1, 8) + 4182850.0*pow(c1, 6) - 621775.0*pow(c1, 4) + 42636.0*pow(c1, 2) - 969.0) + 36244780.0*pow(c0, 9)*(90997245.0*pow(c1, 16) - 275013896.0*pow(c1, 14) + 335772780.0*pow(c1, 12) - 212929080.0*pow(c1, 10) + 75071150.0*pow(c1, 8) - 14608440.0*pow(c1, 6) + 1460844.0*pow(c1, 4) - 63240.0*pow(c1, 2) + 765.0) + 377331.428571429*pow(c0, 8)*c1*(4337535345.0*pow(c1, 16) - 14721332080.0*pow(c1, 14) + 20490040116.0*pow(c1, 12) - 15103769408.0*pow(c1, 10) + 6353749150.0*pow(c1, 8) - 1530787440.0*pow(c1, 6) + 200460260.0*pow(c1, 4) - 12496224.0*pow(c1, 2) + 264537.0) + 2368080.0*pow(c0, 7)*(293213345.0*pow(c1, 18) - 1114210711.0*pow(c1, 16) + 1762007636.0*pow(c1, 14) - 1504152860.0*pow(c1, 12) + 752076430.0*pow(c1, 10) - 223590290.0*pow(c1, 8) + 38329764.0*pow(c1, 6) - 3484524.0*pow(c1, 4) + 140505.0*pow(c1, 2) - 1615.0) + 5280.0*pow(c0, 6)*c1*(45741281820.0*pow(c1, 18) - 192875738341.0*pow(c1, 16) + 342527738280.0*pow(c1, 14) - 333337969692.0*pow(c1, 12) + 193734888368.0*pow(c1, 10) - 68723524590.0*pow(c1, 8) + 14586217464.0*pow(c1, 6) - 1736454460.0*pow(c1, 4) + 100826388.0*pow(c1, 2) - 2028117.0) + 10120.0*pow(c0, 5)*(6861192273.0*pow(c1, 20) - 32018897274.0*pow(c1, 18) + 63665481789.0*pow(c1, 16) - 70394353848.0*pow(c1, 14) + 47380815090.0*pow(c1, 12) - 19976776092.0*pow(c1, 10) + 5232012786.0*pow(c1, 8) - 815378616.0*pow(c1, 6) + 69044157.0*pow(c1, 4) - 2645370.0*pow(c1, 2) + 29393.0) + 16.0*pow(c0, 4)*c1*(981150495039.0*pow(c1, 20) - 5031541000200.0*pow(c1, 18) + 11101568660325.0*pow(c1, 16) - 13784652882000.0*pow(c1, 14) + 10577070192150.0*pow(c1, 12) - 5183717283360.0*pow(c1, 10) + 1619911651050.0*pow(c1, 8) - 312561802800.0*pow(c1, 6) + 34659070875.0*pow(c1, 4) - 1912224600.0*pow(c1, 2) + 37182145.0) + 5.33333333333333*pow(c0, 3)*(514589420475.0*pow(c1, 22) - 2893136075115.0*pow(c1, 20) + 7064634602025.0*pow(c1, 18) - 9821565178425.0*pow(c1, 16) + 8562390155550.0*pow(c1, 14) - 4859734953150.0*pow(c1, 12) + 1805044411170.0*pow(c1, 10) - 429772478850.0*pow(c1, 8) + 62386327575.0*pow(c1, 6) - 5019589575.0*pow(c1, 4) + 185910725.0*pow(c1, 2) - 2028117.0) + 6.4*pow(c0, 2)*c1*(53364828790.0*pow(c1, 22) - 327050165013.0*pow(c1, 20) + 877594360500.0*pow(c1, 18) - 1353849836625.0*pow(c1, 16) + 1325447392500.0*pow(c1, 14) - 857600285850.0*pow(c1, 12) + 370265520240.0*pow(c1, 10) - 105189068250.0*pow(c1, 8) + 18904947750.0*pow(c1, 6) - 1991900625.0*pow(c1, 4) + 106234700.0*pow(c1, 2) - 2028117.0) + 4.0*c0*pow(pow(c1, 2) - 1.0, 2)*(6861192273.0*pow(c1, 20) - 32018897274.0*pow(c1, 18) + 63665481789.0*pow(c1, 16) - 70394353848.0*pow(c1, 14) + 47380815090.0*pow(c1, 12) - 19976776092.0*pow(c1, 10) + 5232012786.0*pow(c1, 8) - 815378616.0*pow(c1, 6) + 69044157.0*pow(c1, 4) - 2645370.0*pow(c1, 2) + 29393.0) + 0.177777777777778*c1*pow(pow(c1, 2) - 1.0, 3)*(5914820925.0*pow(c1, 18) - 24947400257.0*pow(c1, 16) + 44318056692.0*pow(c1, 14) - 43145694228.0*pow(c1, 12) + 25088232358.0*pow(c1, 10) - 8905061550.0*pow(c1, 8) + 1891615908.0*pow(c1, 6) - 225452708.0*pow(c1, 4) + 13113477.0*pow(c1, 2) - 264537.0)); case 26: return 2.98023223876953e-8*x2t*(99223395948.0*pow(c0, 26) + 1031923317859.2*pow(c0, 25)*c1 + 228706409100.0*pow(c0, 24)*(47.0*pow(c1, 2) - 3.0) + 313654503908.571*pow(c0, 23)*c1*(188.0*pow(c1, 2) - 21.0) + 2104098963720.0*pow(c0, 22)*(141.0*pow(c1, 4) - 30.0*pow(c1, 2) + 1.0) + 881717660987.428*pow(c0, 21)*c1*(1175.0*pow(c1, 4) - 360.0*pow(c1, 2) + 21.0) + 538257874440.0*pow(c0, 20)*(6063.0*pow(c1, 6) - 2709.0*pow(c1, 4) + 301.0*pow(c1, 2) - 7.0) + 391460272320.0*pow(c0, 19)*c1*(20210.0*pow(c1, 6) - 11825.0*pow(c1, 4) + 1892.0*pow(c1, 2) - 77.0) + 41572762660.0*pow(c0, 18)*(414305.0*pow(c1, 8) - 317340.0*pow(c1, 6) + 74046.0*pow(c1, 4) - 5740.0*pow(c1, 2) + 105.0) + 3488623440.0*pow(c0, 17)*c1*(8700405.0*pow(c1, 8) - 8250840.0*pow(c1, 6) + 2521090.0*pow(c1, 4) - 281424.0*pow(c1, 2) + 9009.0) + 44479948860.0*pow(c0, 16)*(1077193.0*pow(c1, 10) - 1260545.0*pow(c1, 8) + 504218.0*pow(c1, 6) - 82082.0*pow(c1, 4) + 5005.0*pow(c1, 2) - 77.0) + 31630185856.0*pow(c0, 15)*c1*(1988664.0*pow(c1, 10) - 2776725.0*pow(c1, 8) + 1375140.0*pow(c1, 6) - 293150.0*pow(c1, 4) + 25740.0*pow(c1, 2) - 693.0) + 8014405200.0*pow(c0, 14)*(9197571.0*pow(c1, 12) - 15264054.0*pow(c1, 10) + 9328033.0*pow(c1, 8) - 2603172.0*pow(c1, 6) + 333333.0*pow(c1, 4) - 17094.0*pow(c1, 2) + 231.0) + 2640039360.0*pow(c0, 13)*c1*(27592713.0*pow(c1, 12) - 53228496.0*pow(c1, 10) + 38812445.0*pow(c1, 8) - 13410280.0*pow(c1, 6) + 2248675.0*pow(c1, 4) - 166056.0*pow(c1, 2) + 3927.0) + 6945817840.0*pow(c0, 12)*(9197571.0*pow(c1, 14) - 20547765.0*pow(c1, 12) + 17808063.0*pow(c1, 10) - 7592585.0*pow(c1, 8) + 1666665.0*pow(c1, 6) - 179487.0*pow(c1, 4) + 8085.0*pow(c1, 2) - 99.0) + 103219584.0*pow(c0, 11)*c1*(459878550.0*pow(c1, 14) - 1171222605.0*pow(c1, 12) + 1179898328.0*pow(c1, 10) - 600238975.0*pow(c1, 8) + 163131150.0*pow(c1, 6) - 23005675.0*pow(c1, 4) + 1492260.0*pow(c1, 2) - 31977.0) + 3370764540.0*pow(c0, 10)*(9197571.0*pow(c1, 16) - 26614248.0*pow(c1, 14) + 31049956.0*pow(c1, 12) - 18774392.0*pow(c1, 10) + 6296290.0*pow(c1, 8) - 1162392.0*pow(c1, 6) + 109956.0*pow(c1, 4) - 4488.0*pow(c1, 2) + 51.0) + 33792125.7142857*pow(c0, 9)*c1*(505866405.0*pow(c1, 16) - 1643821200.0*pow(c1, 14) + 2186282196.0*pow(c1, 12) - 1536611776.0*pow(c1, 10) + 614878950.0*pow(c1, 8) - 140543760.0*pow(c1, 6) + 17409700.0*pow(c1, 4) - 1023264.0*pow(c1, 2) + 20349.0) + 17168580.0*pow(c0, 8)*(475207835.0*pow(c1, 18) - 1728947655.0*pow(c1, 16) + 2612632012.0*pow(c1, 14) - 2126560940.0*pow(c1, 12) + 1011413130.0*pow(c1, 10) - 285270370.0*pow(c1, 8) + 46260060.0*pow(c1, 6) - 3965148.0*pow(c1, 4) + 150195.0*pow(c1, 2) - 1615.0) + 131245.714285714*pow(c0, 7)*c1*(24710807420.0*pow(c1, 18) - 99763312935.0*pow(c1, 16) + 169295318920.0*pow(c1, 14) - 157090307556.0*pow(c1, 12) + 86846674096.0*pow(c1, 10) - 29227246090.0*pow(c1, 8) + 5868018520.0*pow(c1, 6) - 658655140.0*pow(c1, 4) + 35926644.0*pow(c1, 2) - 676039.0) + 394680.0*pow(c0, 6)*(2756205443.0*pow(c1, 20) - 12314960490.0*pow(c1, 18) + 23398424931.0*pow(c1, 16) - 24668106904.0*pow(c1, 14) + 15793605030.0*pow(c1, 12) - 6317442012.0*pow(c1, 10) + 1565132030.0*pow(c1, 8) - 229978584.0*pow(c1, 6) + 18293751.0*pow(c1, 4) - 655690.0*pow(c1, 2) + 6783.0) + 633.6*pow(c0, 5)*c1*(465798719867.0*pow(c1, 20) - 2287064091000.0*pow(c1, 18) + 4821893458525.0*pow(c1, 16) - 5708795638000.0*pow(c1, 14) + 4166724621150.0*pow(c1, 12) - 1937348883680.0*pow(c1, 10) + 572696038250.0*pow(c1, 8) - 104187267600.0*pow(c1, 6) + 10852840375.0*pow(c1, 4) - 560146600.0*pow(c1, 2) + 10140585.0) + 200.0*pow(c0, 4)*(322476036831.0*pow(c1, 22) - 1735881645069.0*pow(c1, 20) + 4050390505161.0*pow(c1, 18) - 5369122297539.0*pow(c1, 16) + 4452442880886.0*pow(c1, 14) - 2397469243554.0*pow(c1, 12) + 842354058546.0*pow(c1, 10) - 189099890694.0*pow(c1, 8) + 25786348731.0*pow(c1, 6) - 1940907969.0*pow(c1, 4) + 66927861.0*pow(c1, 2) - 676039.0) + 21.3333333333333*pow(c0, 3)*c1*(501629390626.0*pow(c1, 22) - 2943451485117.0*pow(c1, 20) + 7547311500300.0*pow(c1, 18) - 11101568660325.0*pow(c1, 16) + 10338489661500.0*pow(c1, 14) - 6346242115290.0*pow(c1, 12) + 2591858641680.0*pow(c1, 10) - 694247850450.0*pow(c1, 8) + 117210676050.0*pow(c1, 6) - 11553023625.0*pow(c1, 4) + 573667380.0*pow(c1, 2) - 10140585.0) + 4.0*pow(c0, 2)*(322476036831.0*pow(c1, 24) - 2058357681900.0*pow(c1, 22) + 5786272150230.0*pow(c1, 20) - 9419512802700.0*pow(c1, 18) + 9821565178425.0*pow(c1, 16) - 6849912124440.0*pow(c1, 14) + 3239823302100.0*pow(c1, 12) - 1031453949240.0*pow(c1, 10) + 214886239425.0*pow(c1, 8) - 27727256700.0*pow(c1, 6) + 2007835830.0*pow(c1, 4) - 67603900.0*pow(c1, 2) + 676039.0) + 3.2*c0*c1*pow(pow(c1, 2) - 1.0, 2)*(30888509275.0*pow(c1, 20) - 151682296610.0*pow(c1, 18) + 319847227531.0*pow(c1, 16) - 378749062328.0*pow(c1, 14) + 276504484438.0*pow(c1, 12) - 128599882796.0*pow(c1, 10) + 38029273870.0*pow(c1, 8) - 6921866744.0*pow(c1, 6) + 721526767.0*pow(c1, 4) - 37278722.0*pow(c1, 2) + 676039.0) + 1.33333333333333*pow(pow(c1, 2) - 1.0, 3)*(2756205443.0*pow(c1, 20) - 12314960490.0*pow(c1, 18) + 23398424931.0*pow(c1, 16) - 24668106904.0*pow(c1, 14) + 15793605030.0*pow(c1, 12) - 6317442012.0*pow(c1, 10) + 1565132030.0*pow(c1, 8) - 229978584.0*pow(c1, 6) + 18293751.0*pow(c1, 4) - 655690.0*pow(c1, 2) + 6783.0)); case 27: return 9.9341074625651e-9*x2t*(540216266828.0*pow(c0, 27) + 5834335681742.4*pow(c0, 26)*c1 + 1289904147324.0*pow(c0, 25)*(49.0*pow(c1, 2) - 3.0) + 12899041473240.0*pow(c0, 24)*c1*(28.0*pow(c1, 2) - 3.0) + 823343072760.0*pow(c0, 23)*(2303.0*pow(c1, 4) - 470.0*pow(c1, 2) + 15.0) + 601171132491.429*pow(c0, 22)*c1*(11515.0*pow(c1, 4) - 3384.0*pow(c1, 2) + 189.0) + 23145088600920.0*pow(c0, 21)*(987.0*pow(c1, 6) - 423.0*pow(c1, 4) + 45.0*pow(c1, 2) - 1.0) + 2524918756464.0*pow(c0, 20)*c1*(23030.0*pow(c1, 6) - 12925.0*pow(c1, 4) + 1980.0*pow(c1, 2) - 77.0) + 1345644686100.0*pow(c0, 19)*(99029.0*pow(c1, 8) - 72756.0*pow(c1, 6) + 16254.0*pow(c1, 4) - 1204.0*pow(c1, 2) + 21.0) + 71516780520.0*pow(c0, 18)*c1*(3466015.0*pow(c1, 8) - 3152760.0*pow(c1, 6) + 922350.0*pow(c1, 4) - 98384.0*pow(c1, 2) + 3003.0) + 102042235620.0*pow(c0, 17)*(4060189.0*pow(c1, 10) - 4557355.0*pow(c1, 8) + 1745370.0*pow(c1, 6) - 271502.0*pow(c1, 4) + 15785.0*pow(c1, 2) - 231.0) + 5930659848.0*pow(c0, 16)*c1*(97444536.0*pow(c1, 10) - 130506075.0*pow(c1, 8) + 61881300.0*pow(c1, 6) - 12605450.0*pow(c1, 4) + 1055340.0*pow(c1, 2) - 27027.0) + 177919795440.0*pow(c0, 15)*(4060189.0*pow(c1, 12) - 6463158.0*pow(c1, 10) + 3781635.0*pow(c1, 8) - 1008436.0*pow(c1, 6) + 123123.0*pow(c1, 4) - 6006.0*pow(c1, 2) + 77.0) + 20931740640.0*pow(c0, 14)*c1*(36541701.0*pow(c1, 12) - 67614576.0*pow(c1, 10) + 47204325.0*pow(c1, 8) - 15584920.0*pow(c1, 6) + 2491775.0*pow(c1, 4) - 175032.0*pow(c1, 2) + 3927.0) + 11220167280.0*pow(c0, 13)*(64382997.0*pow(c1, 14) - 137963565.0*pow(c1, 12) + 114480405.0*pow(c1, 10) - 46640165.0*pow(c1, 8) + 9761895.0*pow(c1, 6) - 999999.0*pow(c1, 4) + 42735.0*pow(c1, 2) - 495.0) + 903171360.0*pow(c0, 12)*c1*(643829970.0*pow(c1, 14) - 1572784641.0*pow(c1, 12) + 1517012136.0*pow(c1, 10) - 737436455.0*pow(c1, 8) + 191096490.0*pow(c1, 6) - 25634895.0*pow(c1, 4) + 1577532.0*pow(c1, 2) - 31977.0) + 919299420.0*pow(c0, 11)*(450680979.0*pow(c1, 16) - 1250869656.0*pow(c1, 14) + 1397248020.0*pow(c1, 12) - 807298856.0*pow(c1, 10) + 258147890.0*pow(c1, 8) - 45333288.0*pow(c1, 6) + 4068372.0*pow(c1, 4) - 157080.0*pow(c1, 2) + 1683.0) + 70963464.0*pow(c0, 10)*c1*(3541064835.0*pow(c1, 16) - 11037085200.0*pow(c1, 14) + 14054671260.0*pow(c1, 12) - 9439186624.0*pow(c1, 10) + 3601433850.0*pow(c1, 8) - 783029520.0*pow(c1, 6) + 92022700.0*pow(c1, 4) - 5116320.0*pow(c1, 2) + 95931.0) + 887043300.0*pow(c0, 9)*(150226993.0*pow(c1, 18) - 524261547.0*pow(c1, 16) + 758506068.0*pow(c1, 14) - 589949164.0*pow(c1, 12) + 267535086.0*pow(c1, 10) - 71777706.0*pow(c1, 8) + 11042724.0*pow(c1, 6) - 895356.0*pow(c1, 4) + 31977.0*pow(c1, 2) - 323.0) + 19834508.5714286*pow(c0, 8)*c1*(3004539860.0*pow(c1, 18) - 11634927315.0*pow(c1, 16) + 18903943800.0*pow(c1, 14) - 16761496836.0*pow(c1, 12) + 8835517712.0*pow(c1, 10) - 2828443170.0*pow(c1, 8) + 538751080.0*pow(c1, 6) - 57203300.0*pow(c1, 4) + 2941884.0*pow(c1, 2) - 52003.0) + 34337160.0*pow(c0, 7)*(665290969.0*pow(c1, 20) - 2851247010.0*pow(c1, 18) + 5186842965.0*pow(c1, 16) - 5225264024.0*pow(c1, 14) + 3189841410.0*pow(c1, 12) - 1213695756.0*pow(c1, 10) + 285270370.0*pow(c1, 8) - 39651480.0*pow(c1, 6) + 2973861.0*pow(c1, 4) - 100130.0*pow(c1, 2) + 969.0) + 9187.2*pow(c0, 6)*c1*(787039216327.0*pow(c1, 20) - 3706621113000.0*pow(c1, 18) + 7482248470125.0*pow(c1, 16) - 8464765946000.0*pow(c1, 14) + 5890886533350.0*pow(c1, 12) - 2605400222880.0*pow(c1, 10) + 730681152250.0*pow(c1, 8) - 125743254000.0*pow(c1, 6) + 12349783875.0*pow(c1, 4) - 598777400.0*pow(c1, 2) + 10140585.0) + 14040.0*pow(c0, 5)*(135054066707.0*pow(c1, 22) - 697319977079.0*pow(c1, 20) + 1557842501985.0*pow(c1, 18) - 1973267169181.0*pow(c1, 16) + 1560257761678.0*pow(c1, 14) - 799156414518.0*pow(c1, 12) + 266385471506.0*pow(c1, 10) - 56568343370.0*pow(c1, 8) + 7273072719.0*pow(c1, 6) - 514257667.0*pow(c1, 4) + 16588957.0*pow(c1, 2) - 156009.0) + 16.0*pow(c0, 4)*c1*(24579840140674.0*pow(c1, 22) - 138342219800499.0*pow(c1, 20) + 339629017513500.0*pow(c1, 18) - 477367452393975.0*pow(c1, 16) + 423878076121500.0*pow(c1, 14) - 247503442496310.0*pow(c1, 12) + 95898769742160.0*pow(c1, 10) - 24298674765750.0*pow(c1, 8) + 3867952309650.0*pow(c1, 6) - 358143732375.0*pow(c1, 4) + 16636354020.0*pow(c1, 2) - 273795795.0) + 4.0*pow(c0, 3)*(15801325804719.0*pow(c1, 24) - 96742811049300.0*pow(c1, 22) + 260382246760350.0*pow(c1, 20) - 405039050516100.0*pow(c1, 18) + 402684172315425.0*pow(c1, 16) - 267146572853160.0*pow(c1, 14) + 119873462177700.0*pow(c1, 12) - 36100888223400.0*pow(c1, 10) + 7091245901025.0*pow(c1, 8) - 859544957700.0*pow(c1, 6) + 58227239070.0*pow(c1, 4) - 1825305300.0*pow(c1, 2) + 16900975.0) + 24.0*pow(c0, 2)*c1*(302707390895.0*pow(c1, 24) - 2006517562504.0*pow(c1, 22) + 5886902970234.0*pow(c1, 20) - 10063082000400.0*pow(c1, 18) + 11101568660325.0*pow(c1, 16) - 8270791729200.0*pow(c1, 14) + 4230828076860.0*pow(c1, 12) - 1481062080960.0*pow(c1, 10) + 347123925225.0*pow(c1, 8) - 52093633800.0*pow(c1, 6) + 4621209450.0*pow(c1, 4) - 208606320.0*pow(c1, 2) + 3380195.0) + 4.0*c0*pow(pow(c1, 2) - 1.0, 2)*(135054066707.0*pow(c1, 22) - 697319977079.0*pow(c1, 20) + 1557842501985.0*pow(c1, 18) - 1973267169181.0*pow(c1, 16) + 1560257761678.0*pow(c1, 14) - 799156414518.0*pow(c1, 12) + 266385471506.0*pow(c1, 10) - 56568343370.0*pow(c1, 8) + 7273072719.0*pow(c1, 6) - 514257667.0*pow(c1, 4) + 16588957.0*pow(c1, 2) - 156009.0) + 1.6*c1*pow(pow(c1, 2) - 1.0, 3)*(12018159440.0*pow(c1, 20) - 56611049505.0*pow(c1, 18) + 114301345905.0*pow(c1, 16) - 129344984356.0*pow(c1, 14) + 90044320212.0*pow(c1, 12) - 39840642366.0*pow(c1, 10) + 11179084910.0*pow(c1, 8) - 1925151060.0*pow(c1, 6) + 189261204.0*pow(c1, 4) - 9189673.0*pow(c1, 2) + 156009.0)); case 28: return 7.45058059692383e-9*x2t*(1311953790868.0*pow(c0, 28) + 14693882457721.6*pow(c0, 27)*c1 + 9723892802904.0*pow(c0, 26)*(17.0*pow(c1, 2) - 1.0) + 14446926450028.8*pow(c0, 25)*c1*(68.0*pow(c1, 2) - 7.0) + 2149840245540.0*pow(c0, 24)*(2499.0*pow(c1, 4) - 490.0*pow(c1, 2) + 15.0) + 34397443928640.0*pow(c0, 23)*c1*(595.0*pow(c1, 4) - 168.0*pow(c1, 2) + 9.0) + 12624593782320.0*pow(c0, 22)*(5593.0*pow(c1, 6) - 2303.0*pow(c1, 4) + 235.0*pow(c1, 2) - 5.0) + 801561509988.571*pow(c0, 21)*c1*(234906.0*pow(c1, 6) - 126665.0*pow(c1, 4) + 18612.0*pow(c1, 2) - 693.0) + 81007810103220.0*pow(c0, 20)*(5593.0*pow(c1, 8) - 3948.0*pow(c1, 6) + 846.0*pow(c1, 4) - 60.0*pow(c1, 2) + 1.0) + 647415065760.0*pow(c0, 19)*c1*(1370285.0*pow(c1, 8) - 1197560.0*pow(c1, 6) + 336050.0*pow(c1, 4) - 34320.0*pow(c1, 2) + 1001.0) + 309906048920.0*pow(c0, 18)*(5050479.0*pow(c1, 10) - 5446595.0*pow(c1, 8) + 2000790.0*pow(c1, 6) - 297990.0*pow(c1, 4) + 16555.0*pow(c1, 2) - 231.0) + 171640273248.0*pow(c0, 17)*c1*(13467944.0*pow(c1, 10) - 17330075.0*pow(c1, 8) + 7881900.0*pow(c1, 6) - 1537250.0*pow(c1, 4) + 122980.0*pow(c1, 2) - 3003.0) + 44479948860.0*pow(c0, 16)*(69023213.0*pow(c1, 12) - 105564914.0*pow(c1, 10) + 59245615.0*pow(c1, 8) - 15126540.0*pow(c1, 6) + 1764763.0*pow(c1, 4) - 82082.0*pow(c1, 2) + 1001.0) + 31630185856.0*pow(c0, 15)*c1*(109625103.0*pow(c1, 12) - 194889072.0*pow(c1, 10) + 130506075.0*pow(c1, 8) - 41254200.0*pow(c1, 6) + 6302725.0*pow(c1, 4) - 422136.0*pow(c1, 2) + 9009.0) + 355839590880.0*pow(c0, 14)*(9860459.0*pow(c1, 14) - 20300945.0*pow(c1, 12) + 16157895.0*pow(c1, 10) - 6302725.0*pow(c1, 8) + 1260545.0*pow(c1, 6) - 123123.0*pow(c1, 4) + 5005.0*pow(c1, 2) - 55.0) + 10282258560.0*pow(c0, 13)*c1*(295813770.0*pow(c1, 14) - 694292319.0*pow(c1, 12) + 642338472.0*pow(c1, 10) - 298960725.0*pow(c1, 8) + 74028370.0*pow(c1, 6) - 9468745.0*pow(c1, 4) + 554268.0*pow(c1, 2) - 10659.0) + 12155181220.0*pow(c0, 12)*(193148991.0*pow(c1, 16) - 515063976.0*pow(c1, 14) + 551854260.0*pow(c1, 12) - 305281080.0*pow(c1, 10) + 93280330.0*pow(c1, 8) - 15619032.0*pow(c1, 6) + 1333332.0*pow(c1, 4) - 48840.0*pow(c1, 2) + 495.0) + 129024480.0*pow(c0, 11)*c1*(12039620439.0*pow(c1, 16) - 36054478320.0*pow(c1, 14) + 44037969948.0*pow(c1, 12) - 28317559872.0*pow(c1, 10) + 10324110370.0*pow(c1, 8) - 2140280688.0*pow(c1, 6) + 239259020.0*pow(c1, 4) - 12620256.0*pow(c1, 2) + 223839.0) + 354817320.0*pow(c0, 10)*(2553858881.0*pow(c1, 18) - 8562938601.0*pow(c1, 16) + 11883261732.0*pow(c1, 14) - 8849237460.0*pow(c1, 12) + 3834669566.0*pow(c1, 10) - 980961982.0*pow(c1, 8) + 143555412.0*pow(c1, 6) - 11042724.0*pow(c1, 4) + 373065.0*pow(c1, 2) - 3553.0) + 20569120.0*pow(c0, 9)*c1*(21890218980.0*pow(c1, 18) - 81444491205.0*pow(c1, 16) + 126926479800.0*pow(c1, 14) - 107752479660.0*pow(c1, 12) + 54275323088.0*pow(c1, 10) - 16566595710.0*pow(c1, 8) + 3001613160.0*pow(c1, 6) - 302360300.0*pow(c1, 4) + 14709420.0*pow(c1, 2) - 245157.0) + 532225980.0*pow(c0, 8)*(364836983.0*pow(c1, 20) - 1502269930.0*pow(c1, 18) + 2621307735.0*pow(c1, 16) - 2528353560.0*pow(c1, 14) + 1474872910.0*pow(c1, 12) - 535070172.0*pow(c1, 10) + 119629510.0*pow(c1, 8) - 15775320.0*pow(c1, 6) + 1119195.0*pow(c1, 4) - 35530.0*pow(c1, 2) + 323.0) + 2115680.91428571*pow(c0, 7)*c1*(33200165453.0*pow(c1, 20) - 150226993000.0*pow(c1, 18) + 290873182875.0*pow(c1, 16) - 315065730000.0*pow(c1, 14) + 209518710450.0*pow(c1, 12) - 88355177120.0*pow(c1, 10) + 23570359750.0*pow(c1, 8) - 3848222000.0*pow(c1, 6) + 357520625.0*pow(c1, 4) - 16343800.0*pow(c1, 2) + 260015.0) + 633360.0*pow(c0, 6)*(33929839419.0*pow(c1, 22) - 168318615157.0*pow(c1, 20) + 360682746765.0*pow(c1, 18) - 437423756715.0*pow(c1, 16) + 330497949518.0*pow(c1, 14) - 161405975346.0*pow(c1, 12) + 51177504378.0*pow(c1, 10) - 10310486230.0*pow(c1, 8) + 1253978055.0*pow(c1, 6) - 83598537.0*pow(c1, 4) + 2533289.0*pow(c1, 2) - 22287.0) + 371.2*pow(c0, 5)*c1*(14408871806602.0*pow(c1, 22) - 77916882416373.0*pow(c1, 20) + 183477745093500.0*pow(c1, 18) - 246914199514125.0*pow(c1, 16) + 209502957163500.0*pow(c1, 14) - 116639553360330.0*pow(c1, 12) + 42989103677520.0*pow(c1, 10) - 10333919153250.0*pow(c1, 8) + 1556072768250.0*pow(c1, 6) - 135847622625.0*pow(c1, 4) + 5927896260.0*pow(c1, 2) - 91265265.0) + 468.0*pow(c0, 4)*(2295919134019.0*pow(c1, 24) - 13505406670700.0*pow(c1, 22) + 34865998853950.0*pow(c1, 20) - 51928083399500.0*pow(c1, 18) + 49331679229525.0*pow(c1, 16) - 31205155233560.0*pow(c1, 14) + 13319273575300.0*pow(c1, 12) - 3805506735800.0*pow(c1, 10) + 707104292125.0*pow(c1, 8) - 80811919100.0*pow(c1, 6) + 5142576670.0*pow(c1, 4) - 150808700.0*pow(c1, 2) + 1300075.0) + 10.6666666666667*pow(c0, 3)*c1*(15438076935645.0*pow(c1, 24) - 98319360562696.0*pow(c1, 22) + 276684439600998.0*pow(c1, 20) - 452838690018000.0*pow(c1, 18) + 477367452393975.0*pow(c1, 16) - 339102460897200.0*pow(c1, 14) + 165002294997540.0*pow(c1, 12) - 54799296995520.0*pow(c1, 10) + 12149337382875.0*pow(c1, 8) - 1719089915400.0*pow(c1, 6) + 143257492950.0*pow(c1, 4) - 6049583280.0*pow(c1, 2) + 91265265.0) + 8.0*pow(c0, 2)*(2295919134019.0*pow(c1, 26) - 15801325804719.0*pow(c1, 24) + 48371405524650.0*pow(c1, 22) - 86794082253450.0*pow(c1, 20) + 101259762629025.0*pow(c1, 18) - 80536834463085.0*pow(c1, 16) + 44524428808860.0*pow(c1, 14) - 17124780311100.0*pow(c1, 12) + 4512611027925.0*pow(c1, 10) - 787916211225.0*pow(c1, 8) + 85954495770.0*pow(c1, 6) - 5293385370.0*pow(c1, 4) + 152108775.0*pow(c1, 2) - 1300075.0) + 32.0*c0*c1*pow(pow(c1, 2) - 1.0, 2)*(40861742096.0*pow(c1, 22) - 220983906703.0*pow(c1, 20) + 520429225750.0*pow(c1, 18) - 700458631875.0*pow(c1, 16) + 594424010600.0*pow(c1, 14) - 331007078990.0*pow(c1, 12) + 122027119620.0*pow(c1, 10) - 29342692750.0*pow(c1, 8) + 4420255000.0*pow(c1, 6) - 386122275.0*pow(c1, 4) + 16863830.0*pow(c1, 2) - 260015.0) + 1.33333333333333*pow(pow(c1, 2) - 1.0, 3)*(33929839419.0*pow(c1, 22) - 168318615157.0*pow(c1, 20) + 360682746765.0*pow(c1, 18) - 437423756715.0*pow(c1, 16) + 330497949518.0*pow(c1, 14) - 161405975346.0*pow(c1, 12) + 51177504378.0*pow(c1, 10) - 10310486230.0*pow(c1, 8) + 1253978055.0*pow(c1, 6) - 83598537.0*pow(c1, 4) + 2533289.0*pow(c1, 2) - 22287.0)); case 29: return 7.45058059692383e-9*x2t*(2397708652276.0*pow(c0, 29) + 27813420366401.6*pow(c0, 28)*c1 + 6122451024050.67*pow(c0, 27)*(53.0*pow(c1, 2) - 3.0) + 9446067294249.6*pow(c0, 26)*c1*(212.0*pow(c1, 2) - 21.0) + 12641060643775.2*pow(c0, 25)*(901.0*pow(c1, 4) - 170.0*pow(c1, 2) + 5.0) + 10032587812520.0*pow(c0, 24)*c1*(4505.0*pow(c1, 4) - 1224.0*pow(c1, 2) + 63.0) + 25798082946480.0*pow(c0, 23)*(6307.0*pow(c1, 6) - 2499.0*pow(c1, 4) + 245.0*pow(c1, 2) - 5.0) + 35960964107214.5*pow(c0, 22)*c1*(12614.0*pow(c1, 6) - 6545.0*pow(c1, 4) + 924.0*pow(c1, 2) - 33.0) + 3857514766820.0*pow(c0, 21)*(296429.0*pow(c1, 8) - 201348.0*pow(c1, 6) + 41454.0*pow(c1, 4) - 2820.0*pow(c1, 2) + 45.0) + 161853766440.0*pow(c0, 20)*c1*(14525021.0*pow(c1, 8) - 12215112.0*pow(c1, 6) + 3293290.0*pow(c1, 4) - 322608.0*pow(c1, 2) + 9009.0) + 14728692746040.0*pow(c0, 19)*(296429.0*pow(c1, 10) - 307615.0*pow(c1, 8) + 108570.0*pow(c1, 6) - 15510.0*pow(c1, 4) + 825.0*pow(c1, 2) - 11.0) + 410029541648.0*pow(c0, 18)*c1*(16600024.0*pow(c1, 10) - 20554275.0*pow(c1, 8) + 8981700.0*pow(c1, 6) - 1680250.0*pow(c1, 4) + 128700.0*pow(c1, 2) - 3003.0) + 107275170780.0*pow(c0, 17)*(89225129.0*pow(c1, 12) - 131312454.0*pow(c1, 10) + 70805735.0*pow(c1, 8) - 17340180.0*pow(c1, 6) + 1936935.0*pow(c1, 4) - 86086.0*pow(c1, 2) + 1001.0) + 729471161304.0*pow(c0, 16)*c1*(15745611.0*pow(c1, 12) - 26935888.0*pow(c1, 10) + 17330075.0*pow(c1, 8) - 5254600.0*pow(c1, 6) + 768625.0*pow(c1, 4) - 49192.0*pow(c1, 2) + 1001.0) + 23722639392.0*pow(c0, 15)*(522604327.0*pow(c1, 14) - 1035348195.0*pow(c1, 12) + 791736855.0*pow(c1, 10) - 296228075.0*pow(c1, 8) + 56724525.0*pow(c1, 6) - 5294289.0*pow(c1, 4) + 205205.0*pow(c1, 2) - 2145.0) + 12485599680.0*pow(c0, 14)*c1*(922242930.0*pow(c1, 14) - 2082876957.0*pow(c1, 12) + 1851446184.0*pow(c1, 10) - 826538475.0*pow(c1, 8) + 195957450.0*pow(c1, 6) - 23950355.0*pow(c1, 4) + 1336764.0*pow(c1, 2) - 24453.0) + 311359642020.0*pow(c0, 13)*(30741431.0*pow(c1, 16) - 78883672.0*pow(c1, 14) + 81203780.0*pow(c1, 12) - 43087720.0*pow(c1, 10) + 12605450.0*pow(c1, 8) - 2016872.0*pow(c1, 6) + 164164.0*pow(c1, 4) - 5720.0*pow(c1, 2) + 55.0) + 397825480.0*pow(c0, 12)*c1*(17245942791.0*pow(c1, 16) - 49696713360.0*pow(c1, 14) + 58320554796.0*pow(c1, 12) - 35970954432.0*pow(c1, 10) + 12556350450.0*pow(c1, 8) - 2487353232.0*pow(c1, 6) + 265124860.0*pow(c1, 4) - 13302432.0*pow(c1, 2) + 223839.0) + 3838478280.0*pow(c0, 11)*(1137432947.0*pow(c1, 18) - 3669830829.0*pow(c1, 16) + 4893107772.0*pow(c1, 14) - 3495076980.0*pow(c1, 12) + 1450085130.0*pow(c1, 10) - 354465254.0*pow(c1, 8) + 49460268.0*pow(c1, 6) - 3619044.0*pow(c1, 4) + 115995.0*pow(c1, 2) - 1045.0) + 30853680.0*pow(c0, 10)*c1*(77345440396.0*pow(c1, 18) - 276911270097.0*pow(c1, 16) + 414626500680.0*pow(c1, 14) - 337624436268.0*pow(c1, 12) + 162825969264.0*pow(c1, 10) - 47490907702.0*pow(c1, 8) + 8204409304.0*pow(c1, 6) - 786136780.0*pow(c1, 4) + 36283236.0*pow(c1, 2) - 572033.0) + 59136220.0*pow(c0, 9)*(19336360099.0*pow(c1, 20) - 76615766430.0*pow(c1, 18) + 128444079015.0*pow(c1, 16) - 118832617320.0*pow(c1, 14) + 66369280950.0*pow(c1, 12) - 23008017396.0*pow(c1, 10) + 4904809910.0*pow(c1, 8) - 615237480.0*pow(c1, 6) + 41410215.0*pow(c1, 4) - 1243550.0*pow(c1, 2) + 10659.0) + 1851220.8*pow(c0, 8)*c1*(251372681287.0*pow(c1, 20) - 1094510949000.0*pow(c1, 18) + 2036112280125.0*pow(c1, 16) - 2115441330000.0*pow(c1, 14) + 1346905995750.0*pow(c1, 12) - 542753230880.0*pow(c1, 10) + 138054964250.0*pow(c1, 8) - 21440094000.0*pow(c1, 6) + 1889751875.0*pow(c1, 4) - 81719000.0*pow(c1, 2) + 1225785.0) + 8414640.0*pow(c0, 7)*(19336360099.0*pow(c1, 22) - 92303756699.0*pow(c1, 20) + 190037146145.0*pow(c1, 18) - 221063618985.0*pow(c1, 16) + 159918362670.0*pow(c1, 14) - 74628569246.0*pow(c1, 12) + 22562125586.0*pow(c1, 10) - 4323752290.0*pow(c1, 8) + 498894495.0*pow(c1, 6) - 31461815.0*pow(c1, 4) + 898909.0*pow(c1, 2) - 7429.0) + 24932.2666666667*pow(c0, 6)*c1*(1894963289702.0*pow(c1, 22) - 9860449139541.0*pow(c1, 20) + 22308708460500.0*pow(c1, 18) - 28796445104625.0*pow(c1, 16) + 23393630452500.0*pow(c1, 14) - 12445411400730.0*pow(c1, 12) + 4373581267440.0*pow(c1, 10) - 1000056692250.0*pow(c1, 8) + 142865241750.0*pow(c1, 6) - 11798180625.0*pow(c1, 4) + 485410860.0*pow(c1, 2) - 7020405.0) + 19000.8*pow(c0, 5)*(599427163069.0*pow(c1, 24) - 3392983941900.0*pow(c1, 22) + 8415930757850.0*pow(c1, 20) - 12022758225500.0*pow(c1, 18) + 10935593917875.0*pow(c1, 16) - 6609958990360.0*pow(c1, 14) + 2690099589100.0*pow(c1, 12) - 731107205400.0*pow(c1, 10) + 128881077875.0*pow(c1, 8) - 13933089500.0*pow(c1, 6) + 835985370.0*pow(c1, 4) - 23029900.0*pow(c1, 2) + 185725.0) + 8.0*pow(c0, 4)*c1*(272739359196395.0*pow(c1, 24) - 1.67142912956583e+15*pow(c1, 22) + 4.51917918014963e+15*pow(c1, 20) - 7.094472810282e+15*pow(c1, 18) + 7.16051178590963e+15*pow(c1, 16) - 4.8604686061932e+15*pow(c1, 14) + 2.25503136496638e+15*pow(c1, 12) - 712390860941760.0*pow(c1, 10) + 149841827722125.0*pow(c1, 8) - 20056049013000.0*pow(c1, 6) + 1575832422450.0*pow(c1, 4) - 62512360560.0*pow(c1, 2) + 882230895.0) + 2.66666666666667*pow(c0, 3)*(121683714103007.0*pow(c1, 26) - 805867616040669.0*pow(c1, 24) + 2.37019887070785e+15*pow(c1, 22) - 4.07932186591215e+15*pow(c1, 20) + 4.55668931830613e+15*pow(c1, 18) - 3.46308388191266e+15*pow(c1, 16) + 1.82550158116326e+15*pow(c1, 14) - 667866432132900.0*pow(c1, 12) + 166966608033225.0*pow(c1, 10) - 27577067392875.0*pow(c1, 8) + 2836498360410.0*pow(c1, 6) - 164094946470.0*pow(c1, 4) + 4411154475.0*pow(c1, 2) - 35102025.0) + 16.0*pow(c0, 2)*c1*(2165672331088.0*pow(c1, 26) - 15438076935645.0*pow(c1, 24) + 49159680281348.0*pow(c1, 22) - 92228146533666.0*pow(c1, 20) + 113209672504500.0*pow(c1, 18) - 95473490478795.0*pow(c1, 16) + 56517076816200.0*pow(c1, 14) - 23571756428220.0*pow(c1, 12) + 6849912124440.0*pow(c1, 10) - 1349926375875.0*pow(c1, 8) + 171908991540.0*pow(c1, 6) - 13023408450.0*pow(c1, 4) + 504131940.0*pow(c1, 2) - 7020405.0) + 4.0*c0*pow(pow(c1, 2) - 1.0, 2)*(599427163069.0*pow(c1, 24) - 3392983941900.0*pow(c1, 22) + 8415930757850.0*pow(c1, 20) - 12022758225500.0*pow(c1, 18) + 10935593917875.0*pow(c1, 16) - 6609958990360.0*pow(c1, 14) + 2690099589100.0*pow(c1, 12) - 731107205400.0*pow(c1, 10) + 128881077875.0*pow(c1, 8) - 13933089500.0*pow(c1, 6) + 835985370.0*pow(c1, 4) - 23029900.0*pow(c1, 2) + 185725.0) + 0.242424242424242*c1*pow(pow(c1, 2) - 1.0, 3)*(328718121683.0*pow(c1, 22) - 1710720613287.0*pow(c1, 20) + 3871027694625.0*pow(c1, 18) - 4997730142125.0*pow(c1, 16) + 4060972212750.0*pow(c1, 14) - 2161035842070.0*pow(c1, 12) + 759696746130.0*pow(c1, 10) - 173788454250.0*pow(c1, 8) + 24841647375.0*pow(c1, 6) - 2053189875.0*pow(c1, 4) + 84579165.0*pow(c1, 2) - 1225785.0)); default: return 0.; } case 3: switch(j) { case 0: return -0.00119047619047619*x2r*y1t*(35.0*pow(c0, 3) + 21.0*pow(c0, 2)*c1 + 21.0*c0*(pow(c1, 2) - 5.0) + 3.0*pow(c1, 3) - 21.0*c1 + 70.0); case 1: return 0.000595238095238095*x2r*y1r*(-3.0*pow(c1, 3) + pow(c1, 2)*(-21.0*c0 + 7.0) + c1*(7.0*c0*(-3.0*c0 + 2.0) + 7.0) - 35.0*pow(c0 - 1.0, 2)*(c0 + 1.0)); case 2: return 0.00119047619047619*x2r*y2t*(35.0*pow(c0, 3) + 21.0*pow(c0, 2)*c1 + 21.0*c0*(pow(c1, 2) - 5.0) + 3.0*pow(c1, 3) - 21.0*c1 - 70.0); case 3: return -0.000595238095238095*x2r*y2r*(3.0*pow(c1, 3) + pow(c1, 2)*(21.0*c0 + 7.0) + c1*(3.0*c0 - 1.0)*(7.0*c0 + 7.0) + pow(c0 + 1.0, 2)*(35.0*c0 - 35.0)); case 4: return -0.000595238095238095*x2r*(35.0*pow(c0, 4) + 28.0*pow(c0, 3)*c1 + 14.0*pow(c0, 2)*(3.0*pow(c1, 2) - 5.0) + 4.0*c0*c1*(3.0*pow(c1, 2) - 7.0) + 3.0*pow(c1, 4) - 14.0*pow(c1, 2) + 35.0); case 5: return -0.000198412698412698*x2r*(105.0*pow(c0, 5) + 105.0*pow(c0, 4)*c1 + 210.0*pow(c0, 3)*(pow(c1, 2) - 1.0) + 18.0*pow(c0, 2)*c1*(5.0*pow(c1, 2) - 7.0) + 3.0*c0*(15.0*pow(c1, 4) - 42.0*pow(c1, 2) + 35.0) + c1*(5.0*pow(c1, 4) - 18.0*pow(c1, 2) + 21.0)); case 6: return -3.30687830687831e-5*x2r*(735.0*pow(c0, 6) + 882.0*pow(c0, 5)*c1 + 315.0*pow(c0, 4)*(7.0*pow(c1, 2) - 5.0) + 1260.0*pow(c0, 3)*c1*(pow(c1, 2) - 1.0) + 945.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2) + 6.0*c0*c1*(35.0*pow(c1, 4) - 90.0*pow(c1, 2) + 63.0) + 35.0*pow(c1, 6) - 135.0*pow(c1, 4) + 189.0*pow(c1, 2) - 105.0); case 7: return 0.0078125*x2r*(-4.0*pow(c0, 7) - 5.6*pow(c0, 6)*c1 - 1.86666666666667*pow(c0, 5)*(9.0*pow(c1, 2) - 5.0) - 1.33333333333333*pow(c0, 4)*c1*(9.0*pow(c1, 2) - 7.0) - 1.33333333333333*pow(c0, 3)*(9.0*pow(c1, 4) - 14.0*pow(c1, 2) + 5.0) - 4.0*pow(c0, 2)*c1*pow(pow(c1, 2) - 1.0, 2) - 1.33333333333333*c0*pow(pow(c1, 2) - 1.0, 3) - 0.121212121212121*pow(c1, 7) + 0.444444444444444*pow(c1, 5) - 0.571428571428571*pow(c1, 3) + 0.266666666666667*c1); case 8: return -0.000260416666666667*x2r*(165.0*pow(c0, 8) + 264.0*pow(c0, 7)*c1 + 84.0*pow(c0, 6)*(11.0*pow(c1, 2) - 5.0) + 72.0*pow(c0, 5)*c1*(11.0*pow(c1, 2) - 7.0) + 10.0*pow(c0, 4)*(99.0*pow(c1, 4) - 126.0*pow(c1, 2) + 35.0) + 40.0*pow(c0, 3)*c1*(11.0*pow(c1, 4) - 18.0*pow(c1, 2) + 7.0) + 20.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2)*(11.0*pow(c1, 2) - 5.0) + 40.0*c0*c1*pow(pow(c1, 2) - 1.0, 3) + 5.0*pow(pow(c1, 2) - 1.0, 4)); case 9: return -8.68055555555556e-5*x2r*(715.0*pow(c0, 9) + 1287.0*pow(c0, 8)*c1 + 396.0*pow(c0, 7)*(13.0*pow(c1, 2) - 5.0) + 396.0*pow(c0, 6)*c1*(13.0*pow(c1, 2) - 7.0) + 54.0*pow(c0, 5)*(143.0*pow(c1, 4) - 154.0*pow(c1, 2) + 35.0) + 30.0*pow(c0, 4)*c1*(143.0*pow(c1, 4) - 198.0*pow(c1, 2) + 63.0) + 20.0*pow(c0, 3)*(143.0*pow(c1, 6) - 297.0*pow(c1, 4) + 189.0*pow(c1, 2) - 35.0) + 60.0*pow(c0, 2)*c1*pow(pow(c1, 2) - 1.0, 2)*(13.0*pow(c1, 2) - 7.0) + 15.0*c0*pow(pow(c1, 2) - 1.0, 3)*(13.0*pow(c1, 2) - 5.0) + 15.0*c1*pow(pow(c1, 2) - 1.0, 4)); case 10: return -1.86011904761905e-5*x2r*(5005.0*pow(c0, 10) + 10010.0*pow(c0, 9)*c1 + 15015.0*pow(c0, 8)*(3.0*pow(c1, 2) - 1.0) + 3432.0*pow(c0, 7)*c1*(15.0*pow(c1, 2) - 7.0) + 462.0*pow(c0, 6)*(195.0*pow(c1, 4) - 182.0*pow(c1, 2) + 35.0) + 924.0*pow(c0, 5)*c1*(65.0*pow(c1, 4) - 78.0*pow(c1, 2) + 21.0) + 70.0*pow(c0, 4)*(715.0*pow(c1, 6) - 1287.0*pow(c1, 4) + 693.0*pow(c1, 2) - 105.0) + 280.0*pow(c0, 3)*c1*(65.0*pow(c1, 6) - 143.0*pow(c1, 4) + 99.0*pow(c1, 2) - 21.0) + 35.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2)*(195.0*pow(c1, 4) - 182.0*pow(c1, 2) + 35.0) + 70.0*c0*c1*pow(pow(c1, 2) - 1.0, 3)*(15.0*pow(c1, 2) - 7.0) + 35.0*pow(pow(c1, 2) - 1.0, 4)*(3.0*pow(c1, 2) - 1.0)); case 11: return -1.86011904761905e-5*x2r*(7735.0*pow(c0, 11) + 17017.0*pow(c0, 10)*c1 + 5005.0*pow(c0, 9)*(17.0*pow(c1, 2) - 5.0) + 6435.0*pow(c0, 8)*c1*(17.0*pow(c1, 2) - 7.0) + 4290.0*pow(c0, 7)*(51.0*pow(c1, 4) - 42.0*pow(c1, 2) + 7.0) + 2002.0*pow(c0, 6)*c1*(85.0*pow(c1, 4) - 90.0*pow(c1, 2) + 21.0) + 154.0*pow(c0, 5)*(1105.0*pow(c1, 6) - 1755.0*pow(c1, 4) + 819.0*pow(c1, 2) - 105.0) + 70.0*pow(c0, 4)*c1*(1105.0*pow(c1, 6) - 2145.0*pow(c1, 4) + 1287.0*pow(c1, 2) - 231.0) + 35.0*pow(c0, 3)*(1105.0*pow(c1, 8) - 2860.0*pow(c1, 6) + 2574.0*pow(c1, 4) - 924.0*pow(c1, 2) + 105.0) + 105.0*pow(c0, 2)*c1*pow(pow(c1, 2) - 1.0, 2)*(85.0*pow(c1, 4) - 90.0*pow(c1, 2) + 21.0) + 35.0*c0*pow(pow(c1, 2) - 1.0, 3)*(51.0*pow(c1, 4) - 42.0*pow(c1, 2) + 7.0) + 7.0*c1*pow(pow(c1, 2) - 1.0, 4)*(17.0*pow(c1, 2) - 7.0)); case 12: return -1.55009920634921e-6*x2r*(146965.0*pow(c0, 12) + 352716.0*pow(c0, 11)*c1 + 102102.0*pow(c0, 10)*(19.0*pow(c1, 2) - 5.0) + 145860.0*pow(c0, 9)*c1*(19.0*pow(c1, 2) - 7.0) + 19305.0*pow(c0, 8)*(323.0*pow(c1, 4) - 238.0*pow(c1, 2) + 35.0) + 17160.0*pow(c0, 7)*c1*(323.0*pow(c1, 4) - 306.0*pow(c1, 2) + 63.0) + 20020.0*pow(c0, 6)*(323.0*pow(c1, 6) - 459.0*pow(c1, 4) + 189.0*pow(c1, 2) - 21.0) + 2184.0*pow(c0, 5)*c1*(1615.0*pow(c1, 6) - 2805.0*pow(c1, 4) + 1485.0*pow(c1, 2) - 231.0) + 105.0*pow(c0, 4)*(20995.0*pow(c1, 8) - 48620.0*pow(c1, 6) + 38610.0*pow(c1, 4) - 12012.0*pow(c1, 2) + 1155.0) + 420.0*pow(c0, 3)*c1*(1615.0*pow(c1, 8) - 4420.0*pow(c1, 6) + 4290.0*pow(c1, 4) - 1716.0*pow(c1, 2) + 231.0) + 630.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2)*(323.0*pow(c1, 6) - 459.0*pow(c1, 4) + 189.0*pow(c1, 2) - 21.0) + 84.0*c0*c1*pow(pow(c1, 2) - 1.0, 3)*(323.0*pow(c1, 4) - 306.0*pow(c1, 2) + 63.0) + 7.0*pow(pow(c1, 2) - 1.0, 4)*(323.0*pow(c1, 4) - 238.0*pow(c1, 2) + 35.0)); case 13: return -4.65029761904762e-6*x2r*(79135.0*pow(c0, 13) + 205751.0*pow(c0, 12)*c1 + 58786.0*pow(c0, 11)*(21.0*pow(c1, 2) - 5.0) + 646646.0*pow(c0, 10)*c1*(3.0*pow(c1, 2) - 1.0) + 85085.0*pow(c0, 9)*(57.0*pow(c1, 4) - 38.0*pow(c1, 2) + 5.0) + 36465.0*pow(c0, 8)*c1*(133.0*pow(c1, 4) - 114.0*pow(c1, 2) + 21.0) + 2860.0*pow(c0, 7)*(2261.0*pow(c1, 6) - 2907.0*pow(c1, 4) + 1071.0*pow(c1, 2) - 105.0) + 1820.0*pow(c0, 6)*c1*(2261.0*pow(c1, 6) - 3553.0*pow(c1, 4) + 1683.0*pow(c1, 2) - 231.0) + 455.0*pow(c0, 5)*(6783.0*pow(c1, 8) - 14212.0*pow(c1, 6) + 10098.0*pow(c1, 4) - 2772.0*pow(c1, 2) + 231.0) + 35.0*pow(c0, 4)*c1*(33915.0*pow(c1, 8) - 83980.0*pow(c1, 6) + 72930.0*pow(c1, 4) - 25740.0*pow(c1, 2) + 3003.0) + 70.0*pow(c0, 3)*(6783.0*pow(c1, 10) - 20995.0*pow(c1, 8) + 24310.0*pow(c1, 6) - 12870.0*pow(c1, 4) + 3003.0*pow(c1, 2) - 231.0) + 42.0*pow(c0, 2)*c1*pow(pow(c1, 2) - 1.0, 2)*(2261.0*pow(c1, 6) - 3553.0*pow(c1, 4) + 1683.0*pow(c1, 2) - 231.0) + 7.0*c0*pow(pow(c1, 2) - 1.0, 3)*(2261.0*pow(c1, 6) - 2907.0*pow(c1, 4) + 1071.0*pow(c1, 2) - 105.0) + 7.0*c1*pow(pow(c1, 2) - 1.0, 4)*(133.0*pow(c1, 4) - 114.0*pow(c1, 2) + 21.0)); case 14: return -7.75049603174603e-7*x2r*(780045.0*pow(c0, 14) + 2184126.0*pow(c0, 13)*c1 + 617253.0*pow(c0, 12)*(23.0*pow(c1, 2) - 5.0) + 1058148.0*pow(c0, 11)*c1*(23.0*pow(c1, 2) - 7.0) + 969969.0*pow(c0, 10)*(69.0*pow(c1, 4) - 42.0*pow(c1, 2) + 5.0) + 3233230.0*pow(c0, 9)*c1*(23.0*pow(c1, 4) - 18.0*pow(c1, 2) + 3.0) + 255255.0*pow(c0, 8)*(437.0*pow(c1, 6) - 513.0*pow(c1, 4) + 171.0*pow(c1, 2) - 15.0) + 26520.0*pow(c0, 7)*c1*(3059.0*pow(c1, 6) - 4389.0*pow(c1, 4) + 1881.0*pow(c1, 2) - 231.0) + 1365.0*pow(c0, 6)*(52003.0*pow(c1, 8) - 99484.0*pow(c1, 6) + 63954.0*pow(c1, 4) - 15708.0*pow(c1, 2) + 1155.0) + 630.0*pow(c0, 5)*c1*(52003.0*pow(c1, 8) - 117572.0*pow(c1, 6) + 92378.0*pow(c1, 4) - 29172.0*pow(c1, 2) + 3003.0) + 105.0*pow(c0, 4)*(156009.0*pow(c1, 10) - 440895.0*pow(c1, 8) + 461890.0*pow(c1, 6) - 218790.0*pow(c1, 4) + 45045.0*pow(c1, 2) - 3003.0) + 84.0*pow(c0, 3)*c1*(52003.0*pow(c1, 10) - 169575.0*pow(c1, 8) + 209950.0*pow(c1, 6) - 121550.0*pow(c1, 4) + 32175.0*pow(c1, 2) - 3003.0) + 21.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2)*(52003.0*pow(c1, 8) - 99484.0*pow(c1, 6) + 63954.0*pow(c1, 4) - 15708.0*pow(c1, 2) + 1155.0) + 42.0*c0*c1*pow(pow(c1, 2) - 1.0, 3)*(3059.0*pow(c1, 6) - 4389.0*pow(c1, 4) + 1881.0*pow(c1, 2) - 231.0) + 21.0*pow(pow(c1, 2) - 1.0, 4)*(437.0*pow(c1, 6) - 513.0*pow(c1, 4) + 171.0*pow(c1, 2) - 15.0)); case 15: return -1.80844907407407e-6*x2r*(557175.0*pow(c0, 15) + 1671525.0*pow(c0, 14)*c1 + 2340135.0*pow(c0, 13)*(5.0*pow(c1, 2) - 1.0) + 869193.0*pow(c0, 12)*c1*(25.0*pow(c1, 2) - 7.0) + 113373.0*pow(c0, 11)*(575.0*pow(c1, 4) - 322.0*pow(c1, 2) + 35.0) + 138567.0*pow(c0, 10)*c1*(575.0*pow(c1, 4) - 414.0*pow(c1, 2) + 63.0) + 230945.0*pow(c0, 9)*(575.0*pow(c1, 6) - 621.0*pow(c1, 4) + 189.0*pow(c1, 2) - 15.0) + 188955.0*pow(c0, 8)*c1*(575.0*pow(c1, 6) - 759.0*pow(c1, 4) + 297.0*pow(c1, 2) - 33.0) + 9945.0*pow(c0, 7)*(10925.0*pow(c1, 8) - 19228.0*pow(c1, 6) + 11286.0*pow(c1, 4) - 2508.0*pow(c1, 2) + 165.0) + 765.0*pow(c0, 6)*c1*(76475.0*pow(c1, 8) - 159068.0*pow(c1, 6) + 114114.0*pow(c1, 4) - 32604.0*pow(c1, 2) + 3003.0) + 135.0*pow(c0, 5)*(260015.0*pow(c1, 10) - 676039.0*pow(c1, 8) + 646646.0*pow(c1, 6) - 277134.0*pow(c1, 4) + 51051.0*pow(c1, 2) - 3003.0) + 45.0*pow(c0, 4)*c1*(260015.0*pow(c1, 10) - 780045.0*pow(c1, 8) + 881790.0*pow(c1, 6) - 461890.0*pow(c1, 4) + 109395.0*pow(c1, 2) - 9009.0) + 15.0*pow(c0, 3)*(260015.0*pow(c1, 12) - 936054.0*pow(c1, 10) + 1322685.0*pow(c1, 8) - 923780.0*pow(c1, 6) + 328185.0*pow(c1, 4) - 54054.0*pow(c1, 2) + 3003.0) + 9.0*pow(c0, 2)*c1*pow(pow(c1, 2) - 1.0, 2)*(76475.0*pow(c1, 8) - 159068.0*pow(c1, 6) + 114114.0*pow(c1, 4) - 32604.0*pow(c1, 2) + 3003.0) + 9.0*c0*pow(pow(c1, 2) - 1.0, 3)*(10925.0*pow(c1, 8) - 19228.0*pow(c1, 6) + 11286.0*pow(c1, 4) - 2508.0*pow(c1, 2) + 165.0) + 9.0*c1*pow(pow(c1, 2) - 1.0, 4)*(575.0*pow(c1, 6) - 759.0*pow(c1, 4) + 297.0*pow(c1, 2) - 33.0)); case 16: return -3.39084201388889e-7*x2r*(5014575.0*pow(c0, 16) + 16046640.0*pow(c0, 15)*c1 + 4457400.0*pow(c0, 14)*(27.0*pow(c1, 2) - 5.0) + 8914800.0*pow(c0, 13)*c1*(27.0*pow(c1, 2) - 7.0) + 5794620.0*pow(c0, 12)*(135.0*pow(c1, 4) - 70.0*pow(c1, 2) + 7.0) + 13907088.0*pow(c0, 11)*c1*(75.0*pow(c1, 4) - 50.0*pow(c1, 2) + 7.0) + 1108536.0*pow(c0, 10)*(1725.0*pow(c1, 6) - 1725.0*pow(c1, 4) + 483.0*pow(c1, 2) - 35.0) + 335920.0*pow(c0, 9)*c1*(5175.0*pow(c1, 6) - 6325.0*pow(c1, 4) + 2277.0*pow(c1, 2) - 231.0) + 125970.0*pow(c0, 8)*(15525.0*pow(c1, 8) - 25300.0*pow(c1, 6) + 13662.0*pow(c1, 4) - 2772.0*pow(c1, 2) + 165.0) + 77520.0*pow(c0, 7)*c1*(15525.0*pow(c1, 8) - 29900.0*pow(c1, 6) + 19734.0*pow(c1, 4) - 5148.0*pow(c1, 2) + 429.0) + 14280.0*pow(c0, 6)*(58995.0*pow(c1, 10) - 142025.0*pow(c1, 8) + 124982.0*pow(c1, 6) - 48906.0*pow(c1, 4) + 8151.0*pow(c1, 2) - 429.0) + 2448.0*pow(c0, 5)*c1*(137655.0*pow(c1, 10) - 382375.0*pow(c1, 8) + 397670.0*pow(c1, 6) - 190190.0*pow(c1, 4) + 40755.0*pow(c1, 2) - 3003.0) + 60.0*pow(c0, 4)*(2340135.0*pow(c1, 12) - 7800450.0*pow(c1, 10) + 10140585.0*pow(c1, 8) - 6466460.0*pow(c1, 6) + 2078505.0*pow(c1, 4) - 306306.0*pow(c1, 2) + 15015.0) + 240.0*pow(c0, 3)*c1*(137655.0*pow(c1, 12) - 520030.0*pow(c1, 10) + 780045.0*pow(c1, 8) - 587860.0*pow(c1, 6) + 230945.0*pow(c1, 4) - 43758.0*pow(c1, 2) + 3003.0) + 120.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2)*(58995.0*pow(c1, 10) - 142025.0*pow(c1, 8) + 124982.0*pow(c1, 6) - 48906.0*pow(c1, 4) + 8151.0*pow(c1, 2) - 429.0) + 48.0*c0*c1*pow(pow(c1, 2) - 1.0, 3)*(15525.0*pow(c1, 8) - 29900.0*pow(c1, 6) + 19734.0*pow(c1, 4) - 5148.0*pow(c1, 2) + 429.0) + 3.0*pow(pow(c1, 2) - 1.0, 4)*(15525.0*pow(c1, 8) - 25300.0*pow(c1, 6) + 13662.0*pow(c1, 4) - 2772.0*pow(c1, 2) + 165.0)); case 17: return -1.45321800595238e-7*x2r*(19959975.0*pow(c0, 17) + 67863915.0*pow(c0, 16)*c1 + 18721080.0*pow(c0, 15)*(29.0*pow(c1, 2) - 5.0) + 40116600.0*pow(c0, 14)*c1*(29.0*pow(c1, 2) - 7.0) + 5200300.0*pow(c0, 13)*(783.0*pow(c1, 4) - 378.0*pow(c1, 2) + 35.0) + 67603900.0*pow(c0, 12)*c1*(87.0*pow(c1, 4) - 54.0*pow(c1, 2) + 7.0) + 27041560.0*pow(c0, 11)*(435.0*pow(c1, 6) - 405.0*pow(c1, 4) + 105.0*pow(c1, 2) - 7.0) + 5408312.0*pow(c0, 10)*c1*(2175.0*pow(c1, 6) - 2475.0*pow(c1, 4) + 825.0*pow(c1, 2) - 77.0) + 293930.0*pow(c0, 9)*(50025.0*pow(c1, 8) - 75900.0*pow(c1, 6) + 37950.0*pow(c1, 4) - 7084.0*pow(c1, 2) + 385.0) + 67830.0*pow(c0, 8)*c1*(150075.0*pow(c1, 8) - 269100.0*pow(c1, 6) + 164450.0*pow(c1, 4) - 39468.0*pow(c1, 2) + 3003.0) + 90440.0*pow(c0, 7)*(90045.0*pow(c1, 10) - 201825.0*pow(c1, 8) + 164450.0*pow(c1, 6) - 59202.0*pow(c1, 4) + 9009.0*pow(c1, 2) - 429.0) + 126616.0*pow(c0, 6)*c1*(30015.0*pow(c1, 10) - 77625.0*pow(c1, 8) + 74750.0*pow(c1, 6) - 32890.0*pow(c1, 4) + 6435.0*pow(c1, 2) - 429.0) + 3332.0*pow(c0, 5)*(570285.0*pow(c1, 12) - 1769850.0*pow(c1, 10) + 2130375.0*pow(c1, 8) - 1249820.0*pow(c1, 6) + 366795.0*pow(c1, 4) - 48906.0*pow(c1, 2) + 2145.0) + 140.0*pow(c0, 4)*c1*(3991995.0*pow(c1, 12) - 14040810.0*pow(c1, 10) + 19501125.0*pow(c1, 8) - 13520780.0*pow(c1, 6) + 4849845.0*pow(c1, 4) - 831402.0*pow(c1, 2) + 51051.0) + 280.0*pow(c0, 3)*(570285.0*pow(c1, 14) - 2340135.0*pow(c1, 12) + 3900225.0*pow(c1, 10) - 3380195.0*pow(c1, 8) + 1616615.0*pow(c1, 6) - 415701.0*pow(c1, 4) + 51051.0*pow(c1, 2) - 2145.0) + 840.0*pow(c0, 2)*c1*pow(pow(c1, 2) - 1.0, 2)*(30015.0*pow(c1, 10) - 77625.0*pow(c1, 8) + 74750.0*pow(c1, 6) - 32890.0*pow(c1, 4) + 6435.0*pow(c1, 2) - 429.0) + 35.0*c0*pow(pow(c1, 2) - 1.0, 3)*(90045.0*pow(c1, 10) - 201825.0*pow(c1, 8) + 164450.0*pow(c1, 6) - 59202.0*pow(c1, 4) + 9009.0*pow(c1, 2) - 429.0) + c1*pow(pow(c1, 2) - 1.0, 4)*(150075.0*pow(c1, 8) - 269100.0*pow(c1, 6) + 164450.0*pow(c1, 4) - 39468.0*pow(c1, 2) + 3003.0)); case 18: return 6.35782877604167e-7*x2r*(-7857260.0*pow(c0, 18) - 28286136.0*pow(c0, 17)*c1 - 7755876.0*pow(c0, 16)*(31.0*pow(c1, 2) - 5.0) - 17727716.5714286*pow(c0, 15)*c1*(31.0*pow(c1, 2) - 7.0) - 2292377.14285714*pow(c0, 14)*(899.0*pow(c1, 4) - 406.0*pow(c1, 2) + 35.0) - 3565920.0*pow(c0, 13)*c1*(899.0*pow(c1, 4) - 522.0*pow(c1, 2) + 63.0) - 2575386.66666667*pow(c0, 12)*(2697.0*pow(c1, 6) - 2349.0*pow(c1, 4) + 567.0*pow(c1, 2) - 35.0) - 2809512.72727273*pow(c0, 11)*c1*(2697.0*pow(c1, 6) - 2871.0*pow(c1, 4) + 891.0*pow(c1, 2) - 77.0) - 772616.0*pow(c0, 10)*(13485.0*pow(c1, 8) - 19140.0*pow(c1, 6) + 8910.0*pow(c1, 4) - 1540.0*pow(c1, 2) + 77.0) - 118864.0*pow(c0, 9)*c1*(67425.0*pow(c1, 8) - 113100.0*pow(c1, 6) + 64350.0*pow(c1, 4) - 14300.0*pow(c1, 2) + 1001.0) - 23256.0*pow(c0, 8)*(310155.0*pow(c1, 10) - 650325.0*pow(c1, 8) + 493350.0*pow(c1, 6) - 164450.0*pow(c1, 4) + 23023.0*pow(c1, 2) - 1001.0) - 4134.4*pow(c0, 7)*c1*(930465.0*pow(c1, 10) - 2251125.0*pow(c1, 8) + 2018250.0*pow(c1, 6) - 822250.0*pow(c1, 4) + 148005.0*pow(c1, 2) - 9009.0) - 2411.73333333333*pow(c0, 6)*(930465.0*pow(c1, 12) - 2701350.0*pow(c1, 10) + 3027375.0*pow(c1, 8) - 1644500.0*pow(c1, 6) + 444015.0*pow(c1, 4) - 54054.0*pow(c1, 2) + 2145.0) - 851.2*pow(c0, 5)*c1*(930465.0*pow(c1, 12) - 3061530.0*pow(c1, 10) + 3958875.0*pow(c1, 8) - 2541500.0*pow(c1, 6) + 838695.0*pow(c1, 4) - 131274.0*pow(c1, 2) + 7293.0) - 16.0*pow(c0, 4)*(17678835.0*pow(c1, 14) - 67863915.0*pow(c1, 12) + 105306075.0*pow(c1, 10) - 84504875.0*pow(c1, 8) + 37182145.0*pow(c1, 6) - 8729721.0*pow(c1, 4) + 969969.0*pow(c1, 2) - 36465.0) - 64.0*pow(c0, 3)*c1*(930465.0*pow(c1, 14) - 3991995.0*pow(c1, 12) + 7020405.0*pow(c1, 10) - 6500375.0*pow(c1, 8) + 3380195.0*pow(c1, 6) - 969969.0*pow(c1, 4) + 138567.0*pow(c1, 2) - 7293.0) - 12.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2)*(930465.0*pow(c1, 12) - 2701350.0*pow(c1, 10) + 3027375.0*pow(c1, 8) - 1644500.0*pow(c1, 6) + 444015.0*pow(c1, 4) - 54054.0*pow(c1, 2) + 2145.0) - 1.14285714285714*c0*c1*pow(pow(c1, 2) - 1.0, 3)*(930465.0*pow(c1, 10) - 2251125.0*pow(c1, 8) + 2018250.0*pow(c1, 6) - 822250.0*pow(c1, 4) + 148005.0*pow(c1, 2) - 9009.0) - 0.19047619047619*pow(pow(c1, 2) - 1.0, 4)*(310155.0*pow(c1, 10) - 650325.0*pow(c1, 8) + 493350.0*pow(c1, 6) - 164450.0*pow(c1, 4) + 23023.0*pow(c1, 2) - 1001.0)); case 19: return -7.26609002976191e-8*x2r*(119409675.0*pow(c0, 19) + 453756765.0*pow(c0, 18)*c1 + 123751845.0*pow(c0, 17)*(33.0*pow(c1, 2) - 5.0) + 300540195.0*pow(c0, 16)*c1*(33.0*pow(c1, 2) - 7.0) + 38779380.0*pow(c0, 15)*(1023.0*pow(c1, 4) - 434.0*pow(c1, 2) + 35.0) + 193896900.0*pow(c0, 14)*c1*(341.0*pow(c1, 4) - 186.0*pow(c1, 2) + 21.0) + 15600900.0*pow(c0, 13)*(9889.0*pow(c1, 6) - 8091.0*pow(c1, 4) + 1827.0*pow(c1, 2) - 105.0) + 202811700.0*pow(c0, 12)*c1*(899.0*pow(c1, 6) - 899.0*pow(c1, 4) + 261.0*pow(c1, 2) - 21.0) + 33801950.0*pow(c0, 11)*(8091.0*pow(c1, 8) - 10788.0*pow(c1, 6) + 4698.0*pow(c1, 4) - 756.0*pow(c1, 2) + 35.0) + 2600150.0*pow(c0, 10)*c1*(89001.0*pow(c1, 8) - 140244.0*pow(c1, 6) + 74646.0*pow(c1, 4) - 15444.0*pow(c1, 2) + 1001.0) + 520030.0*pow(c0, 9)*(445005.0*pow(c1, 10) - 876525.0*pow(c1, 8) + 622050.0*pow(c1, 6) - 193050.0*pow(c1, 4) + 25025.0*pow(c1, 2) - 1001.0) + 936054.0*pow(c0, 8)*c1*(148335.0*pow(c1, 10) - 337125.0*pow(c1, 8) + 282750.0*pow(c1, 6) - 107250.0*pow(c1, 4) + 17875.0*pow(c1, 2) - 1001.0) + 27132.0*pow(c0, 7)*(3411705.0*pow(c1, 12) - 9304650.0*pow(c1, 10) + 9754875.0*pow(c1, 8) - 4933500.0*pow(c1, 6) + 1233375.0*pow(c1, 4) - 138138.0*pow(c1, 2) + 5005.0) + 3724.0*pow(c0, 6)*c1*(10235115.0*pow(c1, 12) - 31635810.0*pow(c1, 10) + 38269125.0*pow(c1, 8) - 22873500.0*pow(c1, 6) + 6989125.0*pow(c1, 4) - 1006434.0*pow(c1, 2) + 51051.0) + 532.0*pow(c0, 5)*(30705345.0*pow(c1, 14) - 110725335.0*pow(c1, 12) + 160730325.0*pow(c1, 10) - 120085875.0*pow(c1, 8) + 48923875.0*pow(c1, 6) - 10567557.0*pow(c1, 4) + 1072071.0*pow(c1, 2) - 36465.0) + 140.0*pow(c0, 4)*c1*(30705345.0*pow(c1, 14) - 123751845.0*pow(c1, 12) + 203591745.0*pow(c1, 10) - 175510125.0*pow(c1, 8) + 84504875.0*pow(c1, 6) - 22309287.0*pow(c1, 4) + 2909907.0*pow(c1, 2) - 138567.0) + 35.0*pow(c0, 3)*(30705345.0*pow(c1, 16) - 141430680.0*pow(c1, 14) + 271455660.0*pow(c1, 12) - 280816200.0*pow(c1, 10) + 169009750.0*pow(c1, 8) - 59491432.0*pow(c1, 6) + 11639628.0*pow(c1, 4) - 1108536.0*pow(c1, 2) + 36465.0) + 15.0*pow(c0, 2)*c1*pow(pow(c1, 2) - 1.0, 2)*(10235115.0*pow(c1, 12) - 31635810.0*pow(c1, 10) + 38269125.0*pow(c1, 8) - 22873500.0*pow(c1, 6) + 6989125.0*pow(c1, 4) - 1006434.0*pow(c1, 2) + 51051.0) + 5.0*c0*pow(pow(c1, 2) - 1.0, 3)*(3411705.0*pow(c1, 12) - 9304650.0*pow(c1, 10) + 9754875.0*pow(c1, 8) - 4933500.0*pow(c1, 6) + 1233375.0*pow(c1, 4) - 138138.0*pow(c1, 2) + 5005.0) + 5.0*c1*pow(pow(c1, 2) - 1.0, 4)*(148335.0*pow(c1, 10) - 337125.0*pow(c1, 8) + 282750.0*pow(c1, 6) - 107250.0*pow(c1, 4) + 17875.0*pow(c1, 2) - 1001.0)); case 20: return -1.81652250744048e-8*x2r*(835867725.0*pow(c0, 20) + 3343470900.0*pow(c0, 19)*c1 + 4537567650.0*pow(c0, 18)*(7.0*pow(c1, 2) - 1.0) + 16335243540.0*pow(c0, 17)*c1*(5.0*pow(c1, 2) - 1.0) + 2103781365.0*pow(c0, 16)*(165.0*pow(c1, 4) - 66.0*pow(c1, 2) + 5.0) + 1602881040.0*pow(c0, 15)*c1*(385.0*pow(c1, 4) - 198.0*pow(c1, 2) + 21.0) + 129264600.0*pow(c0, 14)*(11935.0*pow(c1, 6) - 9207.0*pow(c1, 4) + 1953.0*pow(c1, 2) - 105.0) + 1809704400.0*pow(c0, 13)*c1*(1085.0*pow(c1, 6) - 1023.0*pow(c1, 4) + 279.0*pow(c1, 2) - 21.0) + 101405850.0*pow(c0, 12)*(31465.0*pow(c1, 8) - 39556.0*pow(c1, 6) + 16182.0*pow(c1, 4) - 2436.0*pow(c1, 2) + 105.0) + 93605400.0*pow(c0, 11)*c1*(31465.0*pow(c1, 8) - 46748.0*pow(c1, 6) + 23374.0*pow(c1, 4) - 4524.0*pow(c1, 2) + 273.0) + 57203300.0*pow(c0, 10)*(56637.0*pow(c1, 10) - 105183.0*pow(c1, 8) + 70122.0*pow(c1, 6) - 20358.0*pow(c1, 4) + 2457.0*pow(c1, 2) - 91.0) + 10400600.0*pow(c0, 9)*c1*(207669.0*pow(c1, 10) - 445005.0*pow(c1, 8) + 350610.0*pow(c1, 6) - 124410.0*pow(c1, 4) + 19305.0*pow(c1, 2) - 1001.0) + 1560090.0*pow(c0, 8)*(1038345.0*pow(c1, 12) - 2670030.0*pow(c1, 10) + 2629575.0*pow(c1, 8) - 1244100.0*pow(c1, 6) + 289575.0*pow(c1, 4) - 30030.0*pow(c1, 2) + 1001.0) + 146832.0*pow(c0, 7)*c1*(5191725.0*pow(c1, 12) - 15130170.0*pow(c1, 10) + 17193375.0*pow(c1, 8) - 9613500.0*pow(c1, 6) + 2734875.0*pow(c1, 4) - 364650.0*pow(c1, 2) + 17017.0) + 22344.0*pow(c0, 6)*(17058525.0*pow(c1, 14) - 57998985.0*pow(c1, 12) + 79089525.0*pow(c1, 10) - 55277625.0*pow(c1, 8) + 20967375.0*pow(c1, 6) - 4193475.0*pow(c1, 4) + 391391.0*pow(c1, 2) - 12155.0) + 2352.0*pow(c0, 5)*c1*(51175575.0*pow(c1, 14) - 194467185.0*pow(c1, 12) + 300540195.0*pow(c1, 10) - 242371125.0*pow(c1, 8) + 108649125.0*pow(c1, 6) - 26558675.0*pow(c1, 4) + 3187041.0*pow(c1, 2) - 138567.0) + 35.0*pow(c0, 4)*(1074687075.0*pow(c1, 16) - 4667212440.0*pow(c1, 14) + 8415125460.0*pow(c1, 12) - 8143669800.0*pow(c1, 10) + 4563263250.0*pow(c1, 8) - 1487285800.0*pow(c1, 6) + 267711444.0*pow(c1, 4) - 23279256.0*pow(c1, 2) + 692835.0) + 140.0*pow(c0, 3)*c1*(51175575.0*pow(c1, 16) - 245642760.0*pow(c1, 14) + 495007380.0*pow(c1, 12) - 542911320.0*pow(c1, 10) + 351020250.0*pow(c1, 8) - 135207800.0*pow(c1, 6) + 29745716.0*pow(c1, 4) - 3325608.0*pow(c1, 2) + 138567.0) + 70.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2)*(17058525.0*pow(c1, 14) - 57998985.0*pow(c1, 12) + 79089525.0*pow(c1, 10) - 55277625.0*pow(c1, 8) + 20967375.0*pow(c1, 6) - 4193475.0*pow(c1, 4) + 391391.0*pow(c1, 2) - 12155.0) + 20.0*c0*c1*pow(pow(c1, 2) - 1.0, 3)*(5191725.0*pow(c1, 12) - 15130170.0*pow(c1, 10) + 17193375.0*pow(c1, 8) - 9613500.0*pow(c1, 6) + 2734875.0*pow(c1, 4) - 364650.0*pow(c1, 2) + 17017.0) + 5.0*pow(pow(c1, 2) - 1.0, 4)*(1038345.0*pow(c1, 12) - 2670030.0*pow(c1, 10) + 2629575.0*pow(c1, 8) - 1244100.0*pow(c1, 6) + 289575.0*pow(c1, 4) - 30030.0*pow(c1, 2) + 1001.0)); case 21: return -6.05507502480159e-9*x2r*(4418157975.0*pow(c0, 21) + 18556263495.0*pow(c0, 20)*c1 + 5015206350.0*pow(c0, 19)*(37.0*pow(c1, 2) - 5.0) + 13612702950.0*pow(c0, 18)*c1*(37.0*pow(c1, 2) - 7.0) + 61257163275.0*pow(c0, 17)*(37.0*pow(c1, 4) - 14.0*pow(c1, 2) + 1.0) + 23141595015.0*pow(c0, 16)*c1*(185.0*pow(c1, 4) - 90.0*pow(c1, 2) + 9.0) + 5610083640.0*pow(c0, 15)*(2035.0*pow(c1, 6) - 1485.0*pow(c1, 4) + 297.0*pow(c1, 2) - 15.0) + 12021607800.0*pow(c0, 14)*c1*(1295.0*pow(c1, 6) - 1155.0*pow(c1, 4) + 297.0*pow(c1, 2) - 21.0) + 678639150.0*pow(c0, 13)*(40145.0*pow(c1, 8) - 47740.0*pow(c1, 6) + 18414.0*pow(c1, 4) - 2604.0*pow(c1, 2) + 105.0) + 678639150.0*pow(c0, 12)*c1*(40145.0*pow(c1, 8) - 56420.0*pow(c1, 6) + 26598.0*pow(c1, 4) - 4836.0*pow(c1, 2) + 273.0) + 140408100.0*pow(c0, 11)*(232841.0*pow(c1, 10) - 409045.0*pow(c1, 8) + 257114.0*pow(c1, 6) - 70122.0*pow(c1, 4) + 7917.0*pow(c1, 2) - 273.0) + 102965940.0*pow(c0, 10)*c1*(232841.0*pow(c1, 10) - 471975.0*pow(c1, 8) + 350610.0*pow(c1, 6) - 116870.0*pow(c1, 4) + 16965.0*pow(c1, 2) - 819.0) + 28601650.0*pow(c0, 9)*(698523.0*pow(c1, 12) - 1699110.0*pow(c1, 10) + 1577745.0*pow(c1, 8) - 701220.0*pow(c1, 6) + 152685.0*pow(c1, 4) - 14742.0*pow(c1, 2) + 455.0) + 1376550.0*pow(c0, 8)*c1*(7683753.0*pow(c1, 12) - 21182238.0*pow(c1, 10) + 22695255.0*pow(c1, 8) - 11920740.0*pow(c1, 6) + 3172455.0*pow(c1, 4) - 393822.0*pow(c1, 2) + 17017.0) + 1101240.0*pow(c0, 7)*(5488395.0*pow(c1, 14) - 17651865.0*pow(c1, 12) + 22695255.0*pow(c1, 10) - 14900925.0*pow(c1, 8) + 5287425.0*pow(c1, 6) - 984555.0*pow(c1, 4) + 85085.0*pow(c1, 2) - 2431.0) + 81144.0*pow(c0, 6)*c1*(27441975.0*pow(c1, 14) - 98642775.0*pow(c1, 12) + 143736615.0*pow(c1, 10) - 108891375.0*pow(c1, 8) + 45664125.0*pow(c1, 6) - 10392525.0*pow(c1, 4) + 1154725.0*pow(c1, 2) - 46189.0) + 1323.0*pow(c0, 5)*(631165425.0*pow(c1, 16) - 2592895800.0*pow(c1, 14) + 4407922860.0*pow(c1, 12) - 4007202600.0*pow(c1, 10) + 2100549750.0*pow(c1, 8) - 637408200.0*pow(c1, 6) + 106234700.0*pow(c1, 4) - 8498776.0*pow(c1, 2) + 230945.0) + 105.0*pow(c0, 4)*c1*(1893496275.0*pow(c1, 16) - 8597496600.0*pow(c1, 14) + 16335243540.0*pow(c1, 12) - 16830250920.0*pow(c1, 10) + 10179587250.0*pow(c1, 8) - 3650610600.0*pow(c1, 6) + 743642900.0*pow(c1, 4) - 76488984.0*pow(c1, 2) + 2909907.0) + 70.0*pow(c0, 3)*(631165425.0*pow(c1, 18) - 3224061225.0*pow(c1, 16) + 7000818660.0*pow(c1, 14) - 8415125460.0*pow(c1, 12) + 6107752350.0*pow(c1, 10) - 2737957950.0*pow(c1, 8) + 743642900.0*pow(c1, 6) - 114733476.0*pow(c1, 4) + 8729721.0*pow(c1, 2) - 230945.0) + 210.0*pow(c0, 2)*c1*pow(pow(c1, 2) - 1.0, 2)*(27441975.0*pow(c1, 14) - 98642775.0*pow(c1, 12) + 143736615.0*pow(c1, 10) - 108891375.0*pow(c1, 8) + 45664125.0*pow(c1, 6) - 10392525.0*pow(c1, 4) + 1154725.0*pow(c1, 2) - 46189.0) + 105.0*c0*pow(pow(c1, 2) - 1.0, 3)*(5488395.0*pow(c1, 14) - 17651865.0*pow(c1, 12) + 22695255.0*pow(c1, 10) - 14900925.0*pow(c1, 8) + 5287425.0*pow(c1, 6) - 984555.0*pow(c1, 4) + 85085.0*pow(c1, 2) - 2431.0) + 3.0*c1*pow(pow(c1, 2) - 1.0, 4)*(7683753.0*pow(c1, 12) - 21182238.0*pow(c1, 10) + 22695255.0*pow(c1, 8) - 11920740.0*pow(c1, 6) + 3172455.0*pow(c1, 4) - 393822.0*pow(c1, 2) + 17017.0)); case 22: return -6.35782877604167e-8*x2r*(745922775.0*pow(c0, 22) + 3282060210.0*pow(c0, 21)*c1 + 883631595.0*pow(c0, 20)*(39.0*pow(c1, 2) - 5.0) + 2524661700.0*pow(c0, 19)*c1*(39.0*pow(c1, 2) - 7.0) + 324111975.0*pow(c0, 18)*(1443.0*pow(c1, 4) - 518.0*pow(c1, 2) + 35.0) + 1944671850.0*pow(c0, 17)*c1*(481.0*pow(c1, 4) - 222.0*pow(c1, 2) + 21.0) + 5509903575.0*pow(c0, 16)*(481.0*pow(c1, 6) - 333.0*pow(c1, 4) + 63.0*pow(c1, 2) - 3.0) + 1602881040.0*pow(c0, 15)*c1*(2405.0*pow(c1, 6) - 2035.0*pow(c1, 4) + 495.0*pow(c1, 2) - 33.0) + 1001800650.0*pow(c0, 14)*(7215.0*pow(c1, 8) - 8140.0*pow(c1, 6) + 2970.0*pow(c1, 4) - 396.0*pow(c1, 2) + 15.0) + 2003601300.0*pow(c0, 13)*c1*(3885.0*pow(c1, 8) - 5180.0*pow(c1, 6) + 2310.0*pow(c1, 4) - 396.0*pow(c1, 2) + 21.0) + 420109950.0*pow(c0, 12)*(24087.0*pow(c1, 10) - 40145.0*pow(c1, 8) + 23870.0*pow(c1, 6) - 6138.0*pow(c1, 4) + 651.0*pow(c1, 2) - 21.0) + 77558760.0*pow(c0, 11)*c1*(104377.0*pow(c1, 10) - 200725.0*pow(c1, 8) + 141050.0*pow(c1, 6) - 44330.0*pow(c1, 4) + 6045.0*pow(c1, 2) - 273.0) + 2451570.0*pow(c0, 10)*(3026933.0*pow(c1, 12) - 6985230.0*pow(c1, 10) + 6135675.0*pow(c1, 8) - 2571140.0*pow(c1, 6) + 525915.0*pow(c1, 4) - 47502.0*pow(c1, 2) + 1365.0) + 1442100.0*pow(c0, 9)*c1*(3026933.0*pow(c1, 12) - 7916594.0*pow(c1, 10) + 8023575.0*pow(c1, 8) - 3973580.0*pow(c1, 6) + 993395.0*pow(c1, 4) - 115362.0*pow(c1, 2) + 4641.0) + 721050.0*pow(c0, 8)*(3891771.0*pow(c1, 14) - 11874891.0*pow(c1, 12) + 14442435.0*pow(c1, 10) - 8940555.0*pow(c1, 8) + 2980185.0*pow(c1, 6) - 519129.0*pow(c1, 4) + 41769.0*pow(c1, 2) - 1105.0) + 27600.0*pow(c0, 7)*c1*(42809481.0*pow(c1, 14) - 145991307.0*pow(c1, 12) + 201231261.0*pow(c1, 10) - 143736615.0*pow(c1, 8) + 56623515.0*pow(c1, 6) - 12055329.0*pow(c1, 4) + 1247103.0*pow(c1, 2) - 46189.0) + 2415.0*pow(c0, 6)*(214047405.0*pow(c1, 16) - 834236040.0*pow(c1, 14) + 1341541740.0*pow(c1, 12) - 1149892920.0*pow(c1, 10) + 566235150.0*pow(c1, 8) - 160737720.0*pow(c1, 6) + 24942060.0*pow(c1, 4) - 1847560.0*pow(c1, 2) + 46189.0) + 414.0*pow(c0, 5)*c1*(356745675.0*pow(c1, 16) - 1536750600.0*pow(c1, 14) + 2761997700.0*pow(c1, 12) - 2683083480.0*pow(c1, 10) + 1524479250.0*pow(c1, 8) - 511438200.0*pow(c1, 6) + 96996900.0*pow(c1, 4) - 9237800.0*pow(c1, 2) + 323323.0) + 5.0*pow(c0, 4)*(8205150525.0*pow(c1, 18) - 39763421775.0*pow(c1, 16) + 81676217700.0*pow(c1, 14) - 92566380060.0*pow(c1, 12) + 63113440950.0*pow(c1, 10) - 26466926850.0*pow(c1, 8) + 6692786100.0*pow(c1, 6) - 956112300.0*pow(c1, 4) + 66927861.0*pow(c1, 2) - 1616615.0) + 20.0*pow(c0, 3)*c1*(356745675.0*pow(c1, 18) - 1893496275.0*pow(c1, 16) + 4298748300.0*pow(c1, 14) - 5445081180.0*pow(c1, 12) + 4207562730.0*pow(c1, 10) - 2035917450.0*pow(c1, 8) + 608435100.0*pow(c1, 6) - 106234700.0*pow(c1, 4) + 9561123.0*pow(c1, 2) - 323323.0) + 5.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2)*(214047405.0*pow(c1, 16) - 834236040.0*pow(c1, 14) + 1341541740.0*pow(c1, 12) - 1149892920.0*pow(c1, 10) + 566235150.0*pow(c1, 8) - 160737720.0*pow(c1, 6) + 24942060.0*pow(c1, 4) - 1847560.0*pow(c1, 2) + 46189.0) + 2.0*c0*c1*pow(pow(c1, 2) - 1.0, 3)*(42809481.0*pow(c1, 14) - 145991307.0*pow(c1, 12) + 201231261.0*pow(c1, 10) - 143736615.0*pow(c1, 8) + 56623515.0*pow(c1, 6) - 12055329.0*pow(c1, 4) + 1247103.0*pow(c1, 2) - 46189.0) + pow(pow(c1, 2) - 1.0, 4)*(3891771.0*pow(c1, 14) - 11874891.0*pow(c1, 12) + 14442435.0*pow(c1, 10) - 8940555.0*pow(c1, 8) + 2980185.0*pow(c1, 6) - 519129.0*pow(c1, 4) + 41769.0*pow(c1, 2) - 1105.0)); case 23: return -2.11927625868056e-8*x2r*(3989065275.0*pow(c0, 23) + 18349700265.0*pow(c0, 22)*c1 + 4923090315.0*pow(c0, 21)*(41.0*pow(c1, 2) - 5.0) + 14769270945.0*pow(c0, 20)*c1*(41.0*pow(c1, 2) - 7.0) + 1893496275.0*pow(c0, 19)*(1599.0*pow(c1, 4) - 546.0*pow(c1, 2) + 35.0) + 11992143075.0*pow(c0, 18)*c1*(533.0*pow(c1, 4) - 234.0*pow(c1, 2) + 21.0) + 972335925.0*pow(c0, 17)*(19721.0*pow(c1, 6) - 12987.0*pow(c1, 4) + 2331.0*pow(c1, 2) - 105.0) + 1502700975.0*pow(c0, 16)*c1*(19721.0*pow(c1, 6) - 15873.0*pow(c1, 4) + 3663.0*pow(c1, 2) - 231.0) + 3005401950.0*pow(c0, 15)*(19721.0*pow(c1, 8) - 21164.0*pow(c1, 6) + 7326.0*pow(c1, 4) - 924.0*pow(c1, 2) + 33.0) + 9016205850.0*pow(c0, 14)*c1*(7585.0*pow(c1, 8) - 9620.0*pow(c1, 6) + 4070.0*pow(c1, 4) - 660.0*pow(c1, 2) + 33.0) + 21037813650.0*pow(c0, 13)*(4551.0*pow(c1, 10) - 7215.0*pow(c1, 8) + 4070.0*pow(c1, 6) - 990.0*pow(c1, 4) + 99.0*pow(c1, 2) - 3.0) + 7814045070.0*pow(c0, 12)*c1*(10619.0*pow(c1, 10) - 19425.0*pow(c1, 8) + 12950.0*pow(c1, 6) - 3850.0*pow(c1, 4) + 495.0*pow(c1, 2) - 21.0) + 252065970.0*pow(c0, 11)*(329189.0*pow(c1, 12) - 722610.0*pow(c1, 10) + 602175.0*pow(c1, 8) - 238700.0*pow(c1, 6) + 46035.0*pow(c1, 4) - 3906.0*pow(c1, 2) + 105.0) + 12546270.0*pow(c0, 10)*c1*(4279457.0*pow(c1, 12) - 10646454.0*pow(c1, 10) + 10236975.0*pow(c1, 8) - 4795700.0*pow(c1, 6) + 1130415.0*pow(c1, 4) - 123318.0*pow(c1, 2) + 4641.0) + 2163150.0*pow(c0, 9)*(17729179.0*pow(c1, 14) - 51457861.0*pow(c1, 12) + 59374455.0*pow(c1, 10) - 34768825.0*pow(c1, 8) + 10927345.0*pow(c1, 6) - 1788111.0*pow(c1, 4) + 134589.0*pow(c1, 2) - 3315.0) + 1024650.0*pow(c0, 8)*c1*(17729179.0*pow(c1, 14) - 57511727.0*pow(c1, 12) + 75207643.0*pow(c1, 10) - 50815975.0*pow(c1, 8) + 18874505.0*pow(c1, 6) - 3774901.0*pow(c1, 4) + 365313.0*pow(c1, 2) - 12597.0) + 56925.0*pow(c0, 7)*(159562611.0*pow(c1, 16) - 591549192.0*pow(c1, 14) + 902491716.0*pow(c1, 12) - 731750040.0*pow(c1, 10) + 339741090.0*pow(c1, 8) - 90597624.0*pow(c1, 6) + 13151268.0*pow(c1, 4) - 906984.0*pow(c1, 2) + 20995.0) + 5175.0*pow(c0, 6)*c1*(585062907.0*pow(c1, 16) - 2397330936.0*pow(c1, 14) + 4087756596.0*pow(c1, 12) - 3756316872.0*pow(c1, 10) + 2012312610.0*pow(c1, 8) - 634183368.0*pow(c1, 6) + 112516404.0*pow(c1, 4) - 9976824.0*pow(c1, 2) + 323323.0) + 345.0*pow(c0, 5)*(2925314535.0*pow(c1, 18) - 13484986515.0*pow(c1, 16) + 26278435260.0*pow(c1, 14) - 28172376540.0*pow(c1, 12) + 18110813490.0*pow(c1, 10) - 7134562890.0*pow(c1, 8) + 1687746060.0*pow(c1, 6) - 224478540.0*pow(c1, 4) + 14549535.0*pow(c1, 2) - 323323.0) + 15.0*pow(c0, 4)*c1*(14626572675.0*pow(c1, 18) - 73846354725.0*pow(c1, 16) + 159053687100.0*pow(c1, 14) - 190577841300.0*pow(c1, 12) + 138849570090.0*pow(c1, 10) - 63113440950.0*pow(c1, 8) + 17644617900.0*pow(c1, 6) - 2868336900.0*pow(c1, 4) + 239028075.0*pow(c1, 2) - 7436429.0) + 15.0*pow(c0, 3)*(2925314535.0*pow(c1, 20) - 16410301050.0*pow(c1, 18) + 39763421775.0*pow(c1, 16) - 54450811800.0*pow(c1, 14) + 46283190030.0*pow(c1, 12) - 25245376380.0*pow(c1, 10) + 8822308950.0*pow(c1, 8) - 1912224600.0*pow(c1, 6) + 239028075.0*pow(c1, 4) - 14872858.0*pow(c1, 2) + 323323.0) + 9.0*pow(c0, 2)*c1*pow(pow(c1, 2) - 1.0, 2)*(585062907.0*pow(c1, 16) - 2397330936.0*pow(c1, 14) + 4087756596.0*pow(c1, 12) - 3756316872.0*pow(c1, 10) + 2012312610.0*pow(c1, 8) - 634183368.0*pow(c1, 6) + 112516404.0*pow(c1, 4) - 9976824.0*pow(c1, 2) + 323323.0) + 3.0*c0*pow(pow(c1, 2) - 1.0, 3)*(159562611.0*pow(c1, 16) - 591549192.0*pow(c1, 14) + 902491716.0*pow(c1, 12) - 731750040.0*pow(c1, 10) + 339741090.0*pow(c1, 8) - 90597624.0*pow(c1, 6) + 13151268.0*pow(c1, 4) - 906984.0*pow(c1, 2) + 20995.0) + c1*pow(pow(c1, 2) - 1.0, 4)*(17729179.0*pow(c1, 14) - 57511727.0*pow(c1, 12) + 75207643.0*pow(c1, 10) - 50815975.0*pow(c1, 8) + 18874505.0*pow(c1, 6) - 3774901.0*pow(c1, 4) + 365313.0*pow(c1, 2) - 12597.0)); case 24: return 9.9341074625651e-9*x2r*(-15247093940.0*pow(c0, 24) - 73186050912.0*pow(c0, 23)*c1 - 19573013616.0*pow(c0, 22)*(43.0*pow(c1, 2) - 5.0) - 61515185650.2857*pow(c0, 21)*c1*(43.0*pow(c1, 2) - 7.0) - 7876944504.0*pow(c0, 20)*(1763.0*pow(c1, 4) - 574.0*pow(c1, 2) + 35.0) - 17504321120.0*pow(c0, 19)*c1*(1763.0*pow(c1, 4) - 738.0*pow(c1, 2) + 63.0) - 4263873093.33333*pow(c0, 18)*(22919.0*pow(c1, 6) - 14391.0*pow(c1, 4) + 2457.0*pow(c1, 2) - 105.0) - 6977246880.0*pow(c0, 17)*c1*(22919.0*pow(c1, 6) - 17589.0*pow(c1, 4) + 3861.0*pow(c1, 2) - 231.0) - 400720260.0*pow(c0, 16)*(848003.0*pow(c1, 8) - 867724.0*pow(c1, 6) + 285714.0*pow(c1, 4) - 34188.0*pow(c1, 2) + 1155.0) - 6411524160.0*pow(c0, 15)*c1*(65231.0*pow(c1, 8) - 78884.0*pow(c1, 6) + 31746.0*pow(c1, 4) - 4884.0*pow(c1, 2) + 231.0) - 9617286240.0*pow(c0, 14)*(65231.0*pow(c1, 10) - 98605.0*pow(c1, 8) + 52910.0*pow(c1, 6) - 12210.0*pow(c1, 4) + 1155.0*pow(c1, 2) - 33.0) - 8976133824.0*pow(c0, 13)*c1*(65231.0*pow(c1, 10) - 113775.0*pow(c1, 8) + 72150.0*pow(c1, 6) - 20350.0*pow(c1, 4) + 2475.0*pow(c1, 2) - 99.0) - 9724144976.0*pow(c0, 12)*(65231.0*pow(c1, 12) - 136530.0*pow(c1, 10) + 108225.0*pow(c1, 8) - 40700.0*pow(c1, 6) + 7425.0*pow(c1, 4) - 594.0*pow(c1, 2) + 15.0) - 980586048.0*pow(c0, 11)*c1*(456617.0*pow(c1, 12) - 1083138.0*pow(c1, 10) + 990675.0*pow(c1, 8) - 440300.0*pow(c1, 6) + 98175.0*pow(c1, 4) - 10098.0*pow(c1, 2) + 357.0) - 173974944.0*pow(c0, 10)*(2022161.0*pow(c1, 14) - 5596213.0*pow(c1, 12) + 6142185.0*pow(c1, 10) - 3412325.0*pow(c1, 8) + 1014475.0*pow(c1, 6) - 156519.0*pow(c1, 4) + 11067.0*pow(c1, 2) - 255.0) - 7043520.0*pow(c0, 9)*c1*(26288093.0*pow(c1, 14) - 81309683.0*pow(c1, 12) + 101141313.0*pow(c1, 10) - 64834175.0*pow(c1, 8) + 22779575.0*pow(c1, 6) - 4295577.0*pow(c1, 4) + 390507.0*pow(c1, 2) - 12597.0) - 136620.0*pow(c0, 8)*(762354697.0*pow(c1, 16) - 2694835208.0*pow(c1, 14) + 3910797436.0*pow(c1, 12) - 3008305720.0*pow(c1, 10) + 1321215350.0*pow(c1, 8) - 332191288.0*pow(c1, 6) + 45298812.0*pow(c1, 4) - 2922504.0*pow(c1, 2) + 62985.0) - 52045.7142857143*pow(c0, 7)*c1*(762354697.0*pow(c1, 16) - 2978502072.0*pow(c1, 14) + 4830985068.0*pow(c1, 12) - 4211628008.0*pow(c1, 10) + 2134270950.0*pow(c1, 8) - 634183368.0*pow(c1, 6) + 105697228.0*pow(c1, 4) - 8767512.0*pow(c1, 2) + 264537.0) - 6746.66666666667*pow(c0, 6)*(2287064091.0*pow(c1, 18) - 10052444493.0*pow(c1, 16) + 18633799548.0*pow(c1, 14) - 18952326036.0*pow(c1, 12) + 11525063130.0*pow(c1, 10) - 4280737734.0*pow(c1, 8) + 951275052.0*pow(c1, 6) - 118361412.0*pow(c1, 4) + 7142499.0*pow(c1, 2) - 146965.0) - 160.0*pow(c0, 5)*c1*(25157705001.0*pow(c1, 18) - 121108021749.0*pow(c1, 16) + 248123751876.0*pow(c1, 14) - 282055205124.0*pow(c1, 12) + 194389398126.0*pow(c1, 10) - 83309742054.0*pow(c1, 8) + 21879326196.0*pow(c1, 6) - 3327270804.0*pow(c1, 4) + 258150321.0*pow(c1, 2) - 7436429.0) - 8.0*pow(c0, 4)*(125788525005.0*pow(c1, 20) - 672822343050.0*pow(c1, 18) + 1550773449225.0*pow(c1, 16) - 2014680036600.0*pow(c1, 14) + 1619911651050.0*pow(c1, 12) - 833097420540.0*pow(c1, 10) + 273491577450.0*pow(c1, 8) - 55454513400.0*pow(c1, 6) + 6453758025.0*pow(c1, 4) - 371821450.0*pow(c1, 2) + 7436429.0) - 6.4*pow(c0, 3)*c1*(25157705001.0*pow(c1, 20) - 146265726750.0*pow(c1, 18) + 369231773625.0*pow(c1, 16) - 530178957000.0*pow(c1, 14) + 476444603250.0*pow(c1, 12) - 277699140180.0*pow(c1, 10) + 105189068250.0*pow(c1, 8) - 25206597000.0*pow(c1, 6) + 3585421125.0*pow(c1, 4) - 265586750.0*pow(c1, 2) + 7436429.0) - 9.6*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2)*(2287064091.0*pow(c1, 18) - 10052444493.0*pow(c1, 16) + 18633799548.0*pow(c1, 14) - 18952326036.0*pow(c1, 12) + 11525063130.0*pow(c1, 10) - 4280737734.0*pow(c1, 8) + 951275052.0*pow(c1, 6) - 118361412.0*pow(c1, 4) + 7142499.0*pow(c1, 2) - 146965.0) - 2.13333333333333*c0*c1*pow(pow(c1, 2) - 1.0, 3)*(762354697.0*pow(c1, 16) - 2978502072.0*pow(c1, 14) + 4830985068.0*pow(c1, 12) - 4211628008.0*pow(c1, 10) + 2134270950.0*pow(c1, 8) - 634183368.0*pow(c1, 6) + 105697228.0*pow(c1, 4) - 8767512.0*pow(c1, 2) + 264537.0) - 0.0888888888888889*pow(pow(c1, 2) - 1.0, 4)*(762354697.0*pow(c1, 16) - 2694835208.0*pow(c1, 14) + 3910797436.0*pow(c1, 12) - 3008305720.0*pow(c1, 10) + 1321215350.0*pow(c1, 8) - 332191288.0*pow(c1, 6) + 45298812.0*pow(c1, 4) - 2922504.0*pow(c1, 2) + 62985.0)); case 25: return -3.78442189050099e-10*x2r*(720425188665.0*pow(c0, 25) + 3602125943325.0*pow(c0, 24)*c1 + 4802834591100.0*pow(c0, 23)*(9.0*pow(c1, 2) - 1.0) + 3156148445580.0*pow(c0, 22)*c1*(45.0*pow(c1, 2) - 7.0) + 403693405830.0*pow(c0, 21)*(1935.0*pow(c1, 4) - 602.0*pow(c1, 2) + 35.0) + 8477561522430.0*pow(c0, 20)*c1*(215.0*pow(c1, 4) - 86.0*pow(c1, 2) + 7.0) + 689232644100.0*pow(c0, 19)*(8815.0*pow(c1, 6) - 5289.0*pow(c1, 4) + 861.0*pow(c1, 2) - 35.0) + 396830916300.0*pow(c0, 18)*c1*(26445.0*pow(c1, 6) - 19393.0*pow(c1, 4) + 4059.0*pow(c1, 2) - 231.0) + 22894091325.0*pow(c0, 17)*(1031355.0*pow(c1, 8) - 1008436.0*pow(c1, 6) + 316602.0*pow(c1, 4) - 36036.0*pow(c1, 2) + 1155.0) + 389199552525.0*pow(c0, 16)*c1*(79335.0*pow(c1, 8) - 91676.0*pow(c1, 6) + 35178.0*pow(c1, 4) - 5148.0*pow(c1, 2) + 231.0) + 84151254600.0*pow(c0, 15)*(587079.0*pow(c1, 10) - 848003.0*pow(c1, 8) + 433862.0*pow(c1, 6) - 95238.0*pow(c1, 4) + 8547.0*pow(c1, 2) - 231.0) + 252453763800.0*pow(c0, 14)*c1*(195693.0*pow(c1, 10) - 326155.0*pow(c1, 8) + 197210.0*pow(c1, 6) - 52910.0*pow(c1, 4) + 6105.0*pow(c1, 2) - 231.0) + 294529391100.0*pow(c0, 13)*(195693.0*pow(c1, 12) - 391386.0*pow(c1, 10) + 295815.0*pow(c1, 8) - 105820.0*pow(c1, 6) + 18315.0*pow(c1, 4) - 1386.0*pow(c1, 2) + 33.0) + 45045671580.0*pow(c0, 12)*c1*(978465.0*pow(c1, 12) - 2217854.0*pow(c1, 10) + 1934175.0*pow(c1, 8) - 817700.0*pow(c1, 6) + 172975.0*pow(c1, 4) - 16830.0*pow(c1, 2) + 561.0) + 12870191880.0*pow(c0, 11)*(2935395.0*pow(c1, 14) - 7762489.0*pow(c1, 12) + 8123535.0*pow(c1, 10) - 4292925.0*pow(c1, 8) + 1210825.0*pow(c1, 6) - 176715.0*pow(c1, 4) + 11781.0*pow(c1, 2) - 255.0) + 7451163720.0*pow(c0, 10)*c1*(2935395.0*pow(c1, 14) - 8675723.0*pow(c1, 12) + 10289811.0*pow(c1, 10) - 6274275.0*pow(c1, 8) + 2091425.0*pow(c1, 6) - 373065.0*pow(c1, 4) + 31977.0*pow(c1, 2) - 969.0) + 150225075.0*pow(c0, 9)*(90997245.0*pow(c1, 16) - 307368472.0*pow(c1, 14) + 425312188.0*pow(c1, 12) - 311204040.0*pow(c1, 10) + 129668350.0*pow(c1, 8) - 30840040.0*pow(c1, 6) + 3965148.0*pow(c1, 4) - 240312.0*pow(c1, 2) + 4845.0) + 14857425.0*pow(c0, 8)*c1*(394321395.0*pow(c1, 16) - 1472133208.0*pow(c1, 14) + 2276671124.0*pow(c1, 12) - 1887971176.0*pow(c1, 10) + 907678450.0*pow(c1, 8) - 255131240.0*pow(c1, 6) + 40092052.0*pow(c1, 4) - 3124056.0*pow(c1, 2) + 88179.0) + 683100.0*pow(c0, 7)*(3811773485.0*pow(c1, 18) - 16009448637.0*pow(c1, 16) + 28295769684.0*pow(c1, 14) - 27375582052.0*pow(c1, 12) + 15793605030.0*pow(c1, 10) - 5549104470.0*pow(c1, 8) + 1162669508.0*pow(c1, 6) - 135896436.0*pow(c1, 4) + 7671573.0*pow(c1, 2) - 146965.0) + 207900.0*pow(c0, 6)*c1*(3811773485.0*pow(c1, 18) - 17534158031.0*pow(c1, 16) + 34252773828.0*pow(c1, 14) - 37037552188.0*pow(c1, 12) + 24216861046.0*pow(c1, 10) - 9817646370.0*pow(c1, 8) + 2431036244.0*pow(c1, 6) - 347290892.0*pow(c1, 4) + 25206597.0*pow(c1, 2) - 676039.0) + 11550.0*pow(c0, 5)*(20583576819.0*pow(c1, 20) - 105204948186.0*pow(c1, 18) + 231206223339.0*pow(c1, 16) - 285718259736.0*pow(c1, 14) + 217951749414.0*pow(c1, 12) - 106030580796.0*pow(c1, 10) + 32818989294.0*pow(c1, 8) - 6251236056.0*pow(c1, 6) + 680578119.0*pow(c1, 4) - 36506106.0*pow(c1, 2) + 676039.0) + 210.0*pow(c0, 4)*c1*(226419345009.0*pow(c1, 20) - 1257885250050.0*pow(c1, 18) + 3027700543725.0*pow(c1, 16) - 4135395864600.0*pow(c1, 14) + 3525690064050.0*pow(c1, 12) - 1943893981260.0*pow(c1, 10) + 694247850450.0*pow(c1, 8) - 156280901400.0*pow(c1, 6) + 20795442525.0*pow(c1, 4) - 1434168450.0*pow(c1, 2) + 37182145.0) + 420.0*pow(c0, 3)*(20583576819.0*pow(c1, 22) - 125788525005.0*pow(c1, 20) + 336411171525.0*pow(c1, 18) - 516924483075.0*pow(c1, 16) + 503670009150.0*pow(c1, 14) - 323982330210.0*pow(c1, 12) + 138849570090.0*pow(c1, 10) - 39070225350.0*pow(c1, 8) + 6931814175.0*pow(c1, 6) - 717084225.0*pow(c1, 4) + 37182145.0*pow(c1, 2) - 676039.0) + 252.0*pow(c0, 2)*c1*pow(pow(c1, 2) - 1.0, 2)*(3811773485.0*pow(c1, 18) - 17534158031.0*pow(c1, 16) + 34252773828.0*pow(c1, 14) - 37037552188.0*pow(c1, 12) + 24216861046.0*pow(c1, 10) - 9817646370.0*pow(c1, 8) + 2431036244.0*pow(c1, 6) - 347290892.0*pow(c1, 4) + 25206597.0*pow(c1, 2) - 676039.0) + 21.0*c0*pow(pow(c1, 2) - 1.0, 3)*(3811773485.0*pow(c1, 18) - 16009448637.0*pow(c1, 16) + 28295769684.0*pow(c1, 14) - 27375582052.0*pow(c1, 12) + 15793605030.0*pow(c1, 10) - 5549104470.0*pow(c1, 8) + 1162669508.0*pow(c1, 6) - 135896436.0*pow(c1, 4) + 7671573.0*pow(c1, 2) - 146965.0) + 7.0*c1*pow(pow(c1, 2) - 1.0, 4)*(394321395.0*pow(c1, 16) - 1472133208.0*pow(c1, 14) + 2276671124.0*pow(c1, 12) - 1887971176.0*pow(c1, 10) + 907678450.0*pow(c1, 8) - 255131240.0*pow(c1, 6) + 40092052.0*pow(c1, 4) - 3124056.0*pow(c1, 2) + 88179.0)); case 26: return -5.67663283575149e-10*x2r*(868204714545.0*pow(c0, 26) + 4514664515634.0*pow(c0, 25)*c1 + 1200708647775.0*pow(c0, 24)*(47.0*pow(c1, 2) - 5.0) + 4116715363800.0*pow(c0, 23)*c1*(47.0*pow(c1, 2) - 7.0) + 2630123704650.0*pow(c0, 22)*(423.0*pow(c1, 4) - 126.0*pow(c1, 2) + 7.0) + 11572544300460.0*pow(c0, 21)*c1*(235.0*pow(c1, 4) - 90.0*pow(c1, 2) + 7.0) + 941951280270.0*pow(c0, 20)*(10105.0*pow(c1, 6) - 5805.0*pow(c1, 4) + 903.0*pow(c1, 2) - 35.0) + 1712638691400.0*pow(c0, 19)*c1*(10105.0*pow(c1, 6) - 7095.0*pow(c1, 4) + 1419.0*pow(c1, 2) - 77.0) + 99207729075.0*pow(c0, 18)*(414305.0*pow(c1, 8) - 387860.0*pow(c1, 6) + 116358.0*pow(c1, 4) - 12628.0*pow(c1, 2) + 385.0) + 45788182650.0*pow(c0, 17)*c1*(1242915.0*pow(c1, 8) - 1375140.0*pow(c1, 6) + 504218.0*pow(c1, 4) - 70356.0*pow(c1, 2) + 3003.0) + 129733184175.0*pow(c0, 16)*(745749.0*pow(c1, 10) - 1031355.0*pow(c1, 8) + 504218.0*pow(c1, 6) - 105534.0*pow(c1, 4) + 9009.0*pow(c1, 2) - 231.0) + 415146189360.0*pow(c0, 15)*c1*(248583.0*pow(c1, 10) - 396675.0*pow(c1, 8) + 229190.0*pow(c1, 6) - 58630.0*pow(c1, 4) + 6435.0*pow(c1, 2) - 231.0) + 14025209100.0*pow(c0, 14)*(9197571.0*pow(c1, 12) - 17612370.0*pow(c1, 10) + 12720045.0*pow(c1, 8) - 4338620.0*pow(c1, 6) + 714285.0*pow(c1, 4) - 51282.0*pow(c1, 2) + 1155.0) + 11550172200.0*pow(c0, 13)*c1*(9197571.0*pow(c1, 12) - 19960686.0*pow(c1, 10) + 16633905.0*pow(c1, 8) - 6705140.0*pow(c1, 6) + 1349205.0*pow(c1, 4) - 124542.0*pow(c1, 2) + 3927.0) + 10725159900.0*pow(c0, 12)*(9197571.0*pow(c1, 14) - 23287467.0*pow(c1, 12) + 23287467.0*pow(c1, 10) - 11733995.0*pow(c1, 8) + 3148145.0*pow(c1, 6) - 435897.0*pow(c1, 4) + 27489.0*pow(c1, 2) - 561.0) + 1354757040.0*pow(c0, 11)*c1*(45987855.0*pow(c1, 14) - 130135845.0*pow(c1, 12) + 147487291.0*pow(c1, 10) - 85748425.0*pow(c1, 8) + 27188525.0*pow(c1, 6) - 4601135.0*pow(c1, 4) + 373065.0*pow(c1, 2) - 10659.0) + 310465155.0*pow(c0, 10)*(137963565.0*pow(c1, 16) - 446180040.0*pow(c1, 14) + 589949164.0*pow(c1, 12) - 411592440.0*pow(c1, 10) + 163131150.0*pow(c1, 8) - 36809080.0*pow(c1, 6) + 4476780.0*pow(c1, 4) - 255816.0*pow(c1, 2) + 4845.0) + 443521650.0*pow(c0, 9)*c1*(45987855.0*pow(c1, 16) - 164382120.0*pow(c1, 14) + 242920244.0*pow(c1, 12) - 192076472.0*pow(c1, 10) + 87839850.0*pow(c1, 8) - 23423960.0*pow(c1, 6) + 3481940.0*pow(c1, 4) - 255816.0*pow(c1, 2) + 6783.0) + 21460725.0*pow(c0, 8)*(475207835.0*pow(c1, 18) - 1910942145.0*pow(c1, 16) + 3227368956.0*pow(c1, 14) - 2977185316.0*pow(c1, 12) + 1633821210.0*pow(c1, 10) - 544607070.0*pow(c1, 8) + 107940140.0*pow(c1, 6) - 11895444.0*pow(c1, 4) + 630819.0*pow(c1, 2) - 11305.0) + 574200.0*pow(c0, 7)*c1*(6177701855.0*pow(c1, 18) - 27208176255.0*pow(c1, 16) + 50788595676.0*pow(c1, 14) - 52363435852.0*pow(c1, 12) + 32567502786.0*pow(c1, 10) - 12525962610.0*pow(c1, 8) + 2934009260.0*pow(c1, 6) - 395193084.0*pow(c1, 4) + 26944983.0*pow(c1, 2) - 676039.0) + 34650.0*pow(c0, 6)*(35830670759.0*pow(c1, 20) - 175341580310.0*pow(c1, 18) + 368217318651.0*pow(c1, 16) - 433868468488.0*pow(c1, 14) + 314819193598.0*pow(c1, 12) - 145301166276.0*pow(c1, 10) + 42543134270.0*pow(c1, 8) - 7640399624.0*pow(c1, 6) + 781404507.0*pow(c1, 4) - 39210262.0*pow(c1, 2) + 676039.0) + 8316.0*pow(c0, 5)*c1*(35830670759.0*pow(c1, 20) - 190588674250.0*pow(c1, 18) + 438353950775.0*pow(c1, 16) - 570879563800.0*pow(c1, 14) + 462969402350.0*pow(c1, 12) - 242168610460.0*pow(c1, 10) + 81813719750.0*pow(c1, 8) - 17364544600.0*pow(c1, 6) + 2170568075.0*pow(c1, 4) - 140036650.0*pow(c1, 2) + 3380195.0) + 70.0*pow(c0, 4)*(967428110493.0*pow(c1, 22) - 5660483625225.0*pow(c1, 20) + 14465680375575.0*pow(c1, 18) - 21193903806075.0*pow(c1, 16) + 19643130356850.0*pow(c1, 14) - 11987346217770.0*pow(c1, 12) + 4859734953150.0*pow(c1, 10) - 1289317436550.0*pow(c1, 8) + 214886239425.0*pow(c1, 6) - 20795442525.0*pow(c1, 4) + 1003917915.0*pow(c1, 2) - 16900975.0) + 280.0*pow(c0, 3)*c1*(35830670759.0*pow(c1, 22) - 226419345009.0*pow(c1, 20) + 628942625025.0*pow(c1, 18) - 1009233514575.0*pow(c1, 16) + 1033848966150.0*pow(c1, 14) - 705138012810.0*pow(c1, 12) + 323982330210.0*pow(c1, 10) - 99178264350.0*pow(c1, 8) + 19535112675.0*pow(c1, 6) - 2310604725.0*pow(c1, 4) + 143416845.0*pow(c1, 2) - 3380195.0) + 35.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2)*(35830670759.0*pow(c1, 20) - 175341580310.0*pow(c1, 18) + 368217318651.0*pow(c1, 16) - 433868468488.0*pow(c1, 14) + 314819193598.0*pow(c1, 12) - 145301166276.0*pow(c1, 10) + 42543134270.0*pow(c1, 8) - 7640399624.0*pow(c1, 6) + 781404507.0*pow(c1, 4) - 39210262.0*pow(c1, 2) + 676039.0) + 14.0*c0*c1*pow(pow(c1, 2) - 1.0, 3)*(6177701855.0*pow(c1, 18) - 27208176255.0*pow(c1, 16) + 50788595676.0*pow(c1, 14) - 52363435852.0*pow(c1, 12) + 32567502786.0*pow(c1, 10) - 12525962610.0*pow(c1, 8) + 2934009260.0*pow(c1, 6) - 395193084.0*pow(c1, 4) + 26944983.0*pow(c1, 2) - 676039.0) + 7.0*pow(pow(c1, 2) - 1.0, 4)*(475207835.0*pow(c1, 18) - 1910942145.0*pow(c1, 16) + 3227368956.0*pow(c1, 14) - 2977185316.0*pow(c1, 12) + 1633821210.0*pow(c1, 10) - 544607070.0*pow(c1, 8) + 107940140.0*pow(c1, 6) - 11895444.0*pow(c1, 4) + 630819.0*pow(c1, 2) - 11305.0)); case 27: return -1.8922109452505e-10*x2r*(4726892334745.0*pow(c0, 27) + 25525218607623.0*pow(c0, 26)*c1 + 6771996773451.0*pow(c0, 25)*(49.0*pow(c1, 2) - 5.0) + 169299919336275.0*pow(c0, 24)*c1*(7.0*pow(c1, 2) - 1.0) + 21612755659950.0*pow(c0, 23)*(329.0*pow(c1, 4) - 94.0*pow(c1, 2) + 5.0) + 7890371113950.0*pow(c0, 22)*c1*(2303.0*pow(c1, 4) - 846.0*pow(c1, 2) + 63.0) + 28931360751150.0*pow(c0, 21)*(2303.0*pow(c1, 6) - 1269.0*pow(c1, 4) + 189.0*pow(c1, 2) - 7.0) + 11046519559530.0*pow(c0, 20)*c1*(11515.0*pow(c1, 6) - 7755.0*pow(c1, 4) + 1485.0*pow(c1, 2) - 77.0) + 642239509275.0*pow(c0, 19)*(495145.0*pow(c1, 8) - 444620.0*pow(c1, 6) + 127710.0*pow(c1, 4) - 13244.0*pow(c1, 2) + 385.0) + 938657744325.0*pow(c0, 18)*c1*(495145.0*pow(c1, 8) - 525460.0*pow(c1, 6) + 184470.0*pow(c1, 4) - 24596.0*pow(c1, 2) + 1001.0) + 206046821925.0*pow(c0, 17)*(4060189.0*pow(c1, 10) - 5385965.0*pow(c1, 8) + 2521090.0*pow(c1, 6) - 504218.0*pow(c1, 4) + 41041.0*pow(c1, 2) - 1001.0) + 77839910505.0*pow(c0, 16)*c1*(12180567.0*pow(c1, 10) - 18643725.0*pow(c1, 8) + 10313550.0*pow(c1, 6) - 2521090.0*pow(c1, 4) + 263835.0*pow(c1, 2) - 9009.0) + 103786547340.0*pow(c0, 15)*(12180567.0*pow(c1, 12) - 22372470.0*pow(c1, 10) + 15470325.0*pow(c1, 8) - 5042180.0*pow(c1, 6) + 791505.0*pow(c1, 4) - 54054.0*pow(c1, 2) + 1155.0) + 91576365300.0*pow(c0, 14)*c1*(12180567.0*pow(c1, 12) - 25355466.0*pow(c1, 10) + 20230425.0*pow(c1, 8) - 7792460.0*pow(c1, 6) + 1495065.0*pow(c1, 4) - 131274.0*pow(c1, 2) + 3927.0) + 17325258300.0*pow(c0, 13)*(64382997.0*pow(c1, 14) - 156358707.0*pow(c1, 12) + 149705145.0*pow(c1, 10) - 72080255.0*pow(c1, 8) + 18439135.0*pow(c1, 6) - 2428569.0*pow(c1, 4) + 145299.0*pow(c1, 2) - 2805.0) + 11854124100.0*pow(c0, 12)*c1*(64382997.0*pow(c1, 14) - 174753849.0*pow(c1, 12) + 189626517.0*pow(c1, 10) - 105348065.0*pow(c1, 8) + 31849415.0*pow(c1, 6) - 5126979.0*pow(c1, 4) + 394383.0*pow(c1, 2) - 10659.0) + 1270084725.0*pow(c0, 11)*(450680979.0*pow(c1, 16) - 1398030792.0*pow(c1, 14) + 1769847492.0*pow(c1, 12) - 1179898328.0*pow(c1, 10) + 445891810.0*pow(c1, 8) - 95703608.0*pow(c1, 6) + 11042724.0*pow(c1, 4) - 596904.0*pow(c1, 2) + 10659.0) + 931395465.0*pow(c0, 10)*c1*(321914985.0*pow(c1, 16) - 1103708520.0*pow(c1, 14) + 1561630140.0*pow(c1, 12) - 1179898328.0*pow(c1, 10) + 514490550.0*pow(c1, 8) - 130504920.0*pow(c1, 6) + 18404540.0*pow(c1, 4) - 1279080.0*pow(c1, 2) + 31977.0) + 1552325775.0*pow(c0, 9)*(107304995.0*pow(c1, 18) - 413890695.0*pow(c1, 16) + 669270060.0*pow(c1, 14) - 589949164.0*pow(c1, 12) + 308694330.0*pow(c1, 10) - 97878690.0*pow(c1, 8) + 18404540.0*pow(c1, 6) - 1918620.0*pow(c1, 4) + 95931.0*pow(c1, 2) - 1615.0) + 86775975.0*pow(c0, 8)*c1*(751134965.0*pow(c1, 18) - 3173161995.0*pow(c1, 16) + 5671183140.0*pow(c1, 14) - 5587165612.0*pow(c1, 12) + 3313319142.0*pow(c1, 10) - 1212189930.0*pow(c1, 8) + 269375540.0*pow(c1, 6) - 34321980.0*pow(c1, 4) + 2206413.0*pow(c1, 2) - 52003.0) + 5598450.0*pow(c0, 7)*(4657036783.0*pow(c1, 20) - 21859560410.0*pow(c1, 18) + 43951669335.0*pow(c1, 16) - 49486323992.0*pow(c1, 14) + 34237631134.0*pow(c1, 12) - 15031155132.0*pow(c1, 10) + 4175320870.0*pow(c1, 8) - 709320920.0*pow(c1, 6) + 68398803.0*pow(c1, 4) - 3224186.0*pow(c1, 2) + 52003.0) + 120582.0*pow(c0, 6)*c1*(60541478179.0*pow(c1, 20) - 308885092750.0*pow(c1, 18) + 680204406375.0*pow(c1, 16) - 846476594600.0*pow(c1, 14) + 654542948150.0*pow(c1, 12) - 325675027860.0*pow(c1, 10) + 104383021750.0*pow(c1, 8) - 20957209000.0*pow(c1, 6) + 2469956775.0*pow(c1, 4) - 149694350.0*pow(c1, 2) + 3380195.0) + 1134.0*pow(c0, 5)*(1755702867191.0*pow(c1, 22) - 9853434458725.0*pow(c1, 20) + 24109467292625.0*pow(c1, 18) - 33753254209675.0*pow(c1, 16) + 29828457208550.0*pow(c1, 14) - 17315055647890.0*pow(c1, 12) + 6659636787650.0*pow(c1, 10) - 1671337417750.0*pow(c1, 8) + 262638737075.0*pow(c1, 6) - 23876248825.0*pow(c1, 4) + 1078282205.0*pow(c1, 2) - 16900975.0) + 210.0*pow(c0, 4)*c1*(1755702867191.0*pow(c1, 22) - 10641709215423.0*pow(c1, 20) + 28302418126125.0*pow(c1, 18) - 43397041126725.0*pow(c1, 16) + 42387807612150.0*pow(c1, 14) - 27500382499590.0*pow(c1, 12) + 11987346217770.0*pow(c1, 10) - 3471239252250.0*pow(c1, 8) + 644658718275.0*pow(c1, 6) - 71628746475.0*pow(c1, 4) + 4159088505.0*pow(c1, 2) - 91265265.0) + 35.0*pow(c0, 3)*(1755702867191.0*pow(c1, 24) - 11609137325916.0*pow(c1, 22) + 33962901751350.0*pow(c1, 20) - 57862721502300.0*pow(c1, 18) + 63581711418225.0*pow(c1, 16) - 47143512856440.0*pow(c1, 14) + 23974692435540.0*pow(c1, 12) - 8330974205400.0*pow(c1, 10) + 1933976154825.0*pow(c1, 8) - 286514985900.0*pow(c1, 6) + 24954531030.0*pow(c1, 4) - 1095183180.0*pow(c1, 2) + 16900975.0) + 105.0*pow(c0, 2)*c1*pow(pow(c1, 2) - 1.0, 2)*(60541478179.0*pow(c1, 20) - 308885092750.0*pow(c1, 18) + 680204406375.0*pow(c1, 16) - 846476594600.0*pow(c1, 14) + 654542948150.0*pow(c1, 12) - 325675027860.0*pow(c1, 10) + 104383021750.0*pow(c1, 8) - 20957209000.0*pow(c1, 6) + 2469956775.0*pow(c1, 4) - 149694350.0*pow(c1, 2) + 3380195.0) + 105.0*c0*pow(pow(c1, 2) - 1.0, 3)*(4657036783.0*pow(c1, 20) - 21859560410.0*pow(c1, 18) + 43951669335.0*pow(c1, 16) - 49486323992.0*pow(c1, 14) + 34237631134.0*pow(c1, 12) - 15031155132.0*pow(c1, 10) + 4175320870.0*pow(c1, 8) - 709320920.0*pow(c1, 6) + 68398803.0*pow(c1, 4) - 3224186.0*pow(c1, 2) + 52003.0) + 21.0*c1*pow(pow(c1, 2) - 1.0, 4)*(751134965.0*pow(c1, 18) - 3173161995.0*pow(c1, 16) + 5671183140.0*pow(c1, 14) - 5587165612.0*pow(c1, 12) + 3313319142.0*pow(c1, 10) - 1212189930.0*pow(c1, 8) + 269375540.0*pow(c1, 6) - 34321980.0*pow(c1, 4) + 2206413.0*pow(c1, 2) - 52003.0)); case 28: return -1.41915820893787e-10*x2r*(11479595670095.0*pow(c0, 28) + 64285735752532.0*pow(c0, 27)*c1 + 17016812405082.0*pow(c0, 26)*(51.0*pow(c1, 2) - 5.0) + 63205303218876.0*pow(c0, 25)*c1*(51.0*pow(c1, 2) - 7.0) + 56433306445425.0*pow(c0, 24)*(357.0*pow(c1, 4) - 98.0*pow(c1, 2) + 5.0) + 451466451563400.0*pow(c0, 23)*c1*(119.0*pow(c1, 4) - 42.0*pow(c1, 2) + 3.0) + 36821731865100.0*pow(c0, 22)*(5593.0*pow(c1, 6) - 2961.0*pow(c1, 4) + 423.0*pow(c1, 2) - 15.0) + 10520494818600.0*pow(c0, 21)*c1*(39151.0*pow(c1, 6) - 25333.0*pow(c1, 4) + 4653.0*pow(c1, 2) - 231.0) + 9205432966275.0*pow(c0, 20)*(117453.0*pow(c1, 8) - 101332.0*pow(c1, 6) + 27918.0*pow(c1, 4) - 2772.0*pow(c1, 2) + 77.0) + 2832440912700.0*pow(c0, 19)*c1*(587265.0*pow(c1, 8) - 598780.0*pow(c1, 6) + 201630.0*pow(c1, 4) - 25740.0*pow(c1, 2) + 1001.0) + 625771829550.0*pow(c0, 18)*(5050479.0*pow(c1, 10) - 6436885.0*pow(c1, 8) + 2890030.0*pow(c1, 6) - 553410.0*pow(c1, 4) + 43043.0*pow(c1, 2) - 1001.0) + 2252778586380.0*pow(c0, 17)*c1*(1683493.0*pow(c1, 10) - 2475725.0*pow(c1, 8) + 1313650.0*pow(c1, 6) - 307450.0*pow(c1, 4) + 30745.0*pow(c1, 2) - 1001.0) + 77839910505.0*pow(c0, 16)*(69023213.0*pow(c1, 12) - 121805670.0*pow(c1, 10) + 80789475.0*pow(c1, 8) - 25210900.0*pow(c1, 6) + 3781635.0*pow(c1, 4) - 246246.0*pow(c1, 2) + 5005.0) + 415146189360.0*pow(c0, 15)*c1*(12180567.0*pow(c1, 12) - 24361134.0*pow(c1, 10) + 18643725.0*pow(c1, 8) - 6875700.0*pow(c1, 6) + 1260545.0*pow(c1, 4) - 105534.0*pow(c1, 2) + 3003.0) + 1037865473400.0*pow(c0, 14)*(5220243.0*pow(c1, 14) - 12180567.0*pow(c1, 12) + 11186235.0*pow(c1, 10) - 5156775.0*pow(c1, 8) + 1260545.0*pow(c1, 6) - 158301.0*pow(c1, 4) + 9009.0*pow(c1, 2) - 165.0) + 44984881200.0*pow(c0, 13)*c1*(88744131.0*pow(c1, 14) - 231430773.0*pow(c1, 12) + 240876927.0*pow(c1, 10) - 128126025.0*pow(c1, 8) + 37014185.0*pow(c1, 6) - 5681247.0*pow(c1, 4) + 415701.0*pow(c1, 2) - 10659.0) + 987843675.0*pow(c0, 12)*(3283532847.0*pow(c1, 16) - 9786215544.0*pow(c1, 14) + 11883261732.0*pow(c1, 12) - 7585060680.0*pow(c1, 10) + 2739049690.0*pow(c1, 8) - 560549704.0*pow(c1, 6) + 61523748.0*pow(c1, 4) - 3155064.0*pow(c1, 2) + 53295.0) + 1693446300.0*pow(c0, 11)*c1*(1094510949.0*pow(c1, 16) - 3605447832.0*pow(c1, 14) + 4893107772.0*pow(c1, 12) - 3539694984.0*pow(c1, 10) + 1474872910.0*pow(c1, 8) - 356713448.0*pow(c1, 6) + 47851804.0*pow(c1, 4) - 3155064.0*pow(c1, 2) + 74613.0) + 3104651550.0*pow(c0, 10)*(364836983.0*pow(c1, 18) - 1352042937.0*pow(c1, 16) + 2097046188.0*pow(c1, 14) - 1769847492.0*pow(c1, 12) + 884923746.0*pow(c1, 10) - 267535086.0*pow(c1, 8) + 47851804.0*pow(c1, 6) - 4732596.0*pow(c1, 4) + 223839.0*pow(c1, 2) - 3553.0) + 269969700.0*pow(c0, 9)*c1*(1824184915.0*pow(c1, 18) - 7404044655.0*pow(c1, 16) + 12692647980.0*pow(c1, 14) - 11972497740.0*pow(c1, 12) + 6784415386.0*pow(c1, 10) - 2366656530.0*pow(c1, 8) + 500268860.0*pow(c1, 6) - 60472060.0*pow(c1, 4) + 3677355.0*pow(c1, 2) - 81719.0) + 202477275.0*pow(c0, 8)*(1094510949.0*pow(c1, 20) - 4936029770.0*pow(c1, 18) + 9519485985.0*pow(c1, 16) - 10262140920.0*pow(c1, 14) + 6784415386.0*pow(c1, 12) - 2839987836.0*pow(c1, 10) + 750403290.0*pow(c1, 8) - 120944120.0*pow(c1, 6) + 11032065.0*pow(c1, 4) - 490314.0*pow(c1, 2) + 7429.0) + 9256104.0*pow(c0, 7)*c1*(7661576643.0*pow(c1, 20) - 37556748250.0*pow(c1, 18) + 79329049875.0*pow(c1, 16) - 94519719000.0*pow(c1, 14) + 69839570150.0*pow(c1, 12) - 33133191420.0*pow(c1, 10) + 10101582750.0*pow(c1, 8) - 1924111000.0*pow(c1, 6) + 214512375.0*pow(c1, 4) - 12257850.0*pow(c1, 2) + 260015.0) + 95004.0*pow(c0, 6)*(237508875933.0*pow(c1, 22) - 1280685115325.0*pow(c1, 20) + 3005689556375.0*pow(c1, 18) - 4028903022375.0*pow(c1, 16) + 3402184774450.0*pow(c1, 14) - 1883069712370.0*pow(c1, 12) + 688927943550.0*pow(c1, 10) - 164030462750.0*pow(c1, 8) + 24382906625.0*pow(c1, 6) - 2089963425.0*pow(c1, 4) + 88665115.0*pow(c1, 2) - 1300075.0) + 4872.0*pow(c0, 5)*c1*(1029205129043.0*pow(c1, 22) - 5993606339721.0*pow(c1, 20) + 15289812091125.0*pow(c1, 18) - 22446745410375.0*pow(c1, 16) + 20950295716350.0*pow(c1, 14) - 12959950373370.0*pow(c1, 12) + 5373637959690.0*pow(c1, 10) - 1476274164750.0*pow(c1, 8) + 259345461375.0*pow(c1, 6) - 27169524525.0*pow(c1, 4) + 1481974065.0*pow(c1, 2) - 30421755.0) + 35.0*pow(c0, 4)*(29846948742247.0*pow(c1, 24) - 189615909656628.0*pow(c1, 22) + 532085460771150.0*pow(c1, 20) - 867940822534500.0*pow(c1, 18) + 911337863661225.0*pow(c1, 16) - 644294675704680.0*pow(c1, 14) + 311671001662020.0*pow(c1, 12) - 102748681866600.0*pow(c1, 10) + 22563055139625.0*pow(c1, 8) - 3151664844900.0*pow(c1, 6) + 257863487310.0*pow(c1, 4) - 10586770740.0*pow(c1, 2) + 152108775.0) + 140.0*pow(c0, 3)*c1*(1029205129043.0*pow(c1, 24) - 7022811468764.0*pow(c1, 22) + 21283418430846.0*pow(c1, 20) - 37736557501500.0*pow(c1, 18) + 43397041126725.0*pow(c1, 16) - 33910246089720.0*pow(c1, 14) + 18333588333060.0*pow(c1, 12) - 6849912124440.0*pow(c1, 10) + 1735619626125.0*pow(c1, 8) - 286514985900.0*pow(c1, 6) + 28651498590.0*pow(c1, 4) - 1512395820.0*pow(c1, 2) + 30421755.0) + 70.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2)*(237508875933.0*pow(c1, 22) - 1280685115325.0*pow(c1, 20) + 3005689556375.0*pow(c1, 18) - 4028903022375.0*pow(c1, 16) + 3402184774450.0*pow(c1, 14) - 1883069712370.0*pow(c1, 12) + 688927943550.0*pow(c1, 10) - 164030462750.0*pow(c1, 8) + 24382906625.0*pow(c1, 6) - 2089963425.0*pow(c1, 4) + 88665115.0*pow(c1, 2) - 1300075.0) + 140.0*c0*c1*pow(pow(c1, 2) - 1.0, 3)*(7661576643.0*pow(c1, 20) - 37556748250.0*pow(c1, 18) + 79329049875.0*pow(c1, 16) - 94519719000.0*pow(c1, 14) + 69839570150.0*pow(c1, 12) - 33133191420.0*pow(c1, 10) + 10101582750.0*pow(c1, 8) - 1924111000.0*pow(c1, 6) + 214512375.0*pow(c1, 4) - 12257850.0*pow(c1, 2) + 260015.0) + 35.0*pow(pow(c1, 2) - 1.0, 4)*(1094510949.0*pow(c1, 20) - 4936029770.0*pow(c1, 18) + 9519485985.0*pow(c1, 16) - 10262140920.0*pow(c1, 14) + 6784415386.0*pow(c1, 12) - 2839987836.0*pow(c1, 10) + 750403290.0*pow(c1, 8) - 120944120.0*pow(c1, 6) + 11032065.0*pow(c1, 4) - 490314.0*pow(c1, 2) + 7429.0)); case 29: return -9.03100678415009e-11*x2r*(32968493968795.0*pow(c0, 29) + 191217265019011.0*pow(c0, 28)*c1 + 50510220948418.0*pow(c0, 27)*(53.0*pow(c1, 2) - 5.0) + 194825137943898.0*pow(c0, 26)*c1*(53.0*pow(c1, 2) - 7.0) + 24830654835987.0*pow(c0, 25)*(2703.0*pow(c1, 4) - 714.0*pow(c1, 2) + 35.0) + 206922123633225.0*pow(c0, 24)*c1*(901.0*pow(c1, 4) - 306.0*pow(c1, 2) + 21.0) + 118241213504700.0*pow(c0, 23)*(6307.0*pow(c1, 6) - 3213.0*pow(c1, 4) + 441.0*pow(c1, 2) - 15.0) + 247231628237100.0*pow(c0, 22)*c1*(6307.0*pow(c1, 6) - 3927.0*pow(c1, 4) + 693.0*pow(c1, 2) - 33.0) + 14465680375575.0*pow(c0, 21)*(296429.0*pow(c1, 8) - 246092.0*pow(c1, 6) + 65142.0*pow(c1, 4) - 6204.0*pow(c1, 2) + 165.0) + 3338233932825.0*pow(c0, 20)*c1*(2075003.0*pow(c1, 8) - 2035852.0*pow(c1, 6) + 658658.0*pow(c1, 4) - 80652.0*pow(c1, 2) + 3003.0) + 2225489288550.0*pow(c0, 19)*(6225009.0*pow(c1, 10) - 7634445.0*pow(c1, 8) + 3293290.0*pow(c1, 6) - 604890.0*pow(c1, 4) + 45045.0*pow(c1, 2) - 1001.0) + 8456859296490.0*pow(c0, 18)*c1*(2075003.0*pow(c1, 10) - 2936325.0*pow(c1, 8) + 1496950.0*pow(c1, 6) - 336050.0*pow(c1, 4) + 32175.0*pow(c1, 2) - 1001.0) + 295006719645.0*pow(c0, 17)*(89225129.0*pow(c1, 12) - 151514370.0*pow(c1, 10) + 96553275.0*pow(c1, 8) - 28900300.0*pow(c1, 6) + 4150575.0*pow(c1, 4) - 258258.0*pow(c1, 2) + 5005.0) + 5015114233965.0*pow(c0, 16)*c1*(5248537.0*pow(c1, 12) - 10100958.0*pow(c1, 10) + 7427175.0*pow(c1, 8) - 2627300.0*pow(c1, 6) + 461175.0*pow(c1, 4) - 36894.0*pow(c1, 2) + 1001.0) + 978558874920.0*pow(c0, 15)*(30741431.0*pow(c1, 14) - 69023213.0*pow(c1, 12) + 60902835.0*pow(c1, 10) - 26929825.0*pow(c1, 8) + 6302725.0*pow(c1, 6) - 756327.0*pow(c1, 4) + 41041.0*pow(c1, 2) - 715.0) + 257515493400.0*pow(c0, 14)*c1*(92224293.0*pow(c1, 14) - 231430773.0*pow(c1, 12) + 231430773.0*pow(c1, 10) - 118076925.0*pow(c1, 8) + 32659575.0*pow(c1, 6) - 4790071.0*pow(c1, 4) + 334191.0*pow(c1, 2) - 8151.0) + 75108685575.0*pow(c0, 13)*(276672879.0*pow(c1, 16) - 793476936.0*pow(c1, 14) + 925723092.0*pow(c1, 12) - 566769240.0*pow(c1, 10) + 195957450.0*pow(c1, 8) - 38320568.0*pow(c1, 6) + 4010292.0*pow(c1, 4) - 195624.0*pow(c1, 2) + 3135.0) + 8205150525.0*pow(c0, 12)*c1*(1567812981.0*pow(c1, 16) - 4969671336.0*pow(c1, 14) + 6480061644.0*pow(c1, 12) - 4496369304.0*pow(c1, 10) + 1793764350.0*pow(c1, 8) - 414558872.0*pow(c1, 6) + 53024972.0*pow(c1, 4) - 3325608.0*pow(c1, 2) + 74613.0) + 443521650.0*pow(c0, 11)*(19336360099.0*pow(c1, 18) - 68954189787.0*pow(c1, 16) + 102755263212.0*pow(c1, 14) - 83182832124.0*pow(c1, 12) + 39821568570.0*pow(c1, 10) - 11504008698.0*pow(c1, 8) + 1961923964.0*pow(c1, 6) - 184571244.0*pow(c1, 4) + 8282043.0*pow(c1, 2) - 124355.0) + 212119050.0*pow(c0, 10)*c1*(19336360099.0*pow(c1, 18) - 75521255481.0*pow(c1, 16) + 124387950204.0*pow(c1, 14) - 112541478756.0*pow(c1, 12) + 61059738474.0*pow(c1, 10) - 20353246158.0*pow(c1, 8) + 4102204652.0*pow(c1, 6) - 471682068.0*pow(c1, 4) + 27212427.0*pow(c1, 2) - 572033.0) + 106059525.0*pow(c0, 9)*(19336360099.0*pow(c1, 20) - 83912506090.0*pow(c1, 18) + 155484937755.0*pow(c1, 16) - 160773541080.0*pow(c1, 14) + 101766230790.0*pow(c1, 12) - 40706492316.0*pow(c1, 10) + 10255511630.0*pow(c1, 8) - 1572273560.0*pow(c1, 6) + 136062135.0*pow(c1, 4) - 5720330.0*pow(c1, 2) + 81719.0) + 38181429.0*pow(c0, 8)*c1*(19336360099.0*pow(c1, 20) - 91209245750.0*pow(c1, 18) + 185101116375.0*pow(c1, 16) - 211544133000.0*pow(c1, 14) + 149656221750.0*pow(c1, 12) - 67844153860.0*pow(c1, 10) + 19722137750.0*pow(c1, 8) - 3573349000.0*pow(c1, 6) + 377950375.0*pow(c1, 4) - 20429750.0*pow(c1, 2) + 408595.0) + 4628052.0*pow(c0, 7)*(58009080297.0*pow(c1, 22) - 300990510975.0*pow(c1, 20) + 678704093375.0*pow(c1, 18) - 872619548625.0*pow(c1, 16) + 705522188250.0*pow(c1, 14) - 373142846230.0*pow(c1, 12) + 130166109150.0*pow(c1, 10) - 29480129250.0*pow(c1, 8) + 4157454125.0*pow(c1, 6) - 337090875.0*pow(c1, 4) + 13483635.0*pow(c1, 2) - 185725.0) + 514228.0*pow(c0, 6)*c1*(135354520693.0*pow(c1, 22) - 758496087657.0*pow(c1, 20) + 1859059038375.0*pow(c1, 18) - 2617858645875.0*pow(c1, 16) + 2339363045250.0*pow(c1, 14) - 1382823488970.0*pow(c1, 12) + 546697658430.0*pow(c1, 10) - 142865241750.0*pow(c1, 8) + 23810873625.0*pow(c1, 6) - 2359636125.0*pow(c1, 4) + 121352715.0*pow(c1, 2) - 2340135.0) + 4147.0*pow(c0, 5)*(4195990141483.0*pow(c1, 24) - 25650958600764.0*pow(c1, 22) + 69156996227550.0*pow(c1, 20) - 108204824029500.0*pow(c1, 18) + 108780381604125.0*pow(c1, 16) - 73487191128120.0*pow(c1, 14) + 33895254822660.0*pow(c1, 12) - 10629173986200.0*pow(c1, 10) + 2214411247125.0*pow(c1, 8) - 292594879500.0*pow(c1, 6) + 22571604990.0*pow(c1, 4) - 870530220.0*pow(c1, 2) + 11700675.0) + 55.0*pow(c0, 4)*c1*(54547871839279.0*pow(c1, 24) - 358163384906964.0*pow(c1, 22) + 1.04288750311145e+15*pow(c1, 20) - 1.7736182025705e+15*pow(c1, 18) + 1.95286685070263e+15*pow(c1, 16) - 1.45814058185796e+15*pow(c1, 14) + 751677121655460.0*pow(c1, 12) - 267146572853160.0*pow(c1, 10) + 64217926166625.0*pow(c1, 8) - 10028024506500.0*pow(c1, 6) + 945499453470.0*pow(c1, 4) - 46884270420.0*pow(c1, 2) + 882230895.0) + 110.0*pow(c0, 3)*(4195990141483.0*pow(c1, 26) - 29846948742247.0*pow(c1, 24) + 94807954828314.0*pow(c1, 22) - 177361820257050.0*pow(c1, 20) + 216985205633625.0*pow(c1, 18) - 182267572732245.0*pow(c1, 16) + 107382445950780.0*pow(c1, 14) - 44524428808860.0*pow(c1, 12) + 12843585233325.0*pow(c1, 10) - 2507006126625.0*pow(c1, 8) + 315166484490.0*pow(c1, 6) - 23442135210.0*pow(c1, 4) + 882230895.0*pow(c1, 2) - 11700675.0) + 330.0*pow(c0, 2)*c1*pow(pow(c1, 2) - 1.0, 2)*(135354520693.0*pow(c1, 22) - 758496087657.0*pow(c1, 20) + 1859059038375.0*pow(c1, 18) - 2617858645875.0*pow(c1, 16) + 2339363045250.0*pow(c1, 14) - 1382823488970.0*pow(c1, 12) + 546697658430.0*pow(c1, 10) - 142865241750.0*pow(c1, 8) + 23810873625.0*pow(c1, 6) - 2359636125.0*pow(c1, 4) + 121352715.0*pow(c1, 2) - 2340135.0) + 55.0*c0*pow(pow(c1, 2) - 1.0, 3)*(58009080297.0*pow(c1, 22) - 300990510975.0*pow(c1, 20) + 678704093375.0*pow(c1, 18) - 872619548625.0*pow(c1, 16) + 705522188250.0*pow(c1, 14) - 373142846230.0*pow(c1, 12) + 130166109150.0*pow(c1, 10) - 29480129250.0*pow(c1, 8) + 4157454125.0*pow(c1, 6) - 337090875.0*pow(c1, 4) + 13483635.0*pow(c1, 2) - 185725.0) + 5.0*c1*pow(pow(c1, 2) - 1.0, 4)*(19336360099.0*pow(c1, 20) - 91209245750.0*pow(c1, 18) + 185101116375.0*pow(c1, 16) - 211544133000.0*pow(c1, 14) + 149656221750.0*pow(c1, 12) - 67844153860.0*pow(c1, 10) + 19722137750.0*pow(c1, 8) - 3573349000.0*pow(c1, 6) + 377950375.0*pow(c1, 4) - 20429750.0*pow(c1, 2) + 408595.0)); default: return 0.; } case 4: switch(j) { case 0: return 0.00476190476190476*y1t*(7.0*pow(c0, 3) + 3.0*c0*(pow(c1, 2) - 7.0) + 14.0); case 1: return 0.00238095238095238*y1r*(7.0*pow(c0, 3) - 7.0*pow(c0, 2) + c0*(3.0*pow(c1, 2) - 7.0) - pow(c1, 2) + 7.0); case 2: return 0.00476190476190476*y2t*(-7.0*pow(c0, 3) - 3.0*c0*(pow(c1, 2) - 7.0) + 14.0); case 3: return 0.00238095238095238*y2r*(pow(c1, 2)*(3.0*c0 + 1.0) + pow(c0 + 1.0, 2)*(7.0*c0 - 7.0)); case 4: return 0.0166666666666667*pow(c0, 4) + 0.00476190476190476*pow(c0, 2)*(3.0*pow(c1, 2) - 7.0) + 0.000793650793650794*pow(c1, 4) - 0.00476190476190476*pow(c1, 2) + 0.0166666666666667; case 5: return 0.000793650793650794*c0*(21.0*pow(c0, 4) + 6.0*pow(c0, 2)*(5.0*pow(c1, 2) - 7.0) + 5.0*pow(c1, 4) - 18.0*pow(c1, 2) + 21.0); case 6: return 0.0194444444444444*pow(c0, 6) + 0.0416666666666667*pow(c0, 4)*(pow(c1, 2) - 1.0) + 0.000396825396825397*pow(c0, 2)*(35.0*pow(c1, 4) - 90.0*pow(c1, 2) + 63.0) + 0.000420875420875421*pow(c1, 6) - 0.00198412698412698*pow(c1, 4) + 0.00357142857142857*pow(c1, 2) - 0.00277777777777778; case 7: return 3.60750360750361e-5*c0*(693.0*pow(c0, 6) + 231.0*pow(c0, 4)*(9.0*pow(c1, 2) - 7.0) + 1155.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2) + 105.0*pow(c1, 6) - 385.0*pow(c1, 4) + 495.0*pow(c1, 2) - 231.0); case 8: return 0.034375*pow(c0, 8) + 0.0125*pow(c0, 6)*(11.0*pow(c1, 2) - 7.0) + 0.0104166666666667*pow(c0, 4)*(11.0*pow(c1, 4) - 18.0*pow(c1, 2) + 7.0) + 0.0208333333333333*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 3) + 0.000400641025641026*pow(c1, 8) - 0.00189393939393939*pow(c1, 6) + 0.00347222222222222*pow(c1, 4) - 0.00297619047619048*pow(c1, 2) + 0.00104166666666667; case 9: return 4.96031746031746e-5*c0*(1001.0*pow(c0, 8) + 396.0*pow(c0, 6)*(13.0*pow(c1, 2) - 7.0) + 42.0*pow(c0, 4)*(143.0*pow(c1, 4) - 198.0*pow(c1, 2) + 63.0) + 140.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2)*(13.0*pow(c1, 2) - 7.0) + 105.0*pow(pow(c1, 2) - 1.0, 4)); case 10: return 0.0744791666666667*pow(c0, 10) + 0.0319196428571429*pow(c0, 8)*(15.0*pow(c1, 2) - 7.0) + 0.0114583333333333*pow(c0, 6)*(65.0*pow(c1, 4) - 78.0*pow(c1, 2) + 21.0) + 0.00520833333333333*pow(c0, 4)*(65.0*pow(c1, 6) - 143.0*pow(c1, 4) + 99.0*pow(c1, 2) - 21.0) + 0.00260416666666667*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 3)*(15.0*pow(c1, 2) - 7.0) + 0.000520833333333333*pow(pow(c1, 2) - 1.0, 5); case 11: return 7.44047619047619e-5*c0*(1547.0*pow(c0, 10) + 715.0*pow(c0, 8)*(17.0*pow(c1, 2) - 7.0) + 286.0*pow(c0, 6)*(85.0*pow(c1, 4) - 90.0*pow(c1, 2) + 21.0) + 14.0*pow(c0, 4)*(1105.0*pow(c1, 6) - 2145.0*pow(c1, 4) + 1287.0*pow(c1, 2) - 231.0) + 35.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2)*(85.0*pow(c1, 4) - 90.0*pow(c1, 2) + 21.0) + 7.0*pow(pow(c1, 2) - 1.0, 4)*(17.0*pow(c1, 2) - 7.0)); case 12: return 0.182248263888889*pow(c0, 12) + 0.0904389880952381*pow(c0, 10)*(19.0*pow(c1, 2) - 7.0) + 0.0132998511904762*pow(c0, 8)*(323.0*pow(c1, 4) - 306.0*pow(c1, 2) + 63.0) + 0.00225694444444444*pow(c0, 6)*(1615.0*pow(c1, 6) - 2805.0*pow(c1, 4) + 1485.0*pow(c1, 2) - 231.0) + 0.000651041666666667*pow(c0, 4)*(1615.0*pow(c1, 8) - 4420.0*pow(c1, 6) + 4290.0*pow(c1, 4) - 1716.0*pow(c1, 2) + 231.0) + 0.000260416666666667*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 3)*(323.0*pow(c1, 4) - 306.0*pow(c1, 2) + 63.0) + 4.34027777777778e-5*pow(pow(c1, 2) - 1.0, 5)*(19.0*pow(c1, 2) - 7.0); case 13: return 6.20039682539683e-6*c0*(47481.0*pow(c0, 12) + 176358.0*pow(c0, 10)*(3.0*pow(c1, 2) - 1.0) + 12155.0*pow(c0, 8)*(133.0*pow(c1, 4) - 114.0*pow(c1, 2) + 21.0) + 780.0*pow(c0, 6)*(2261.0*pow(c1, 6) - 3553.0*pow(c1, 4) + 1683.0*pow(c1, 2) - 231.0) + 21.0*pow(c0, 4)*(33915.0*pow(c1, 8) - 83980.0*pow(c1, 6) + 72930.0*pow(c1, 4) - 25740.0*pow(c1, 2) + 3003.0) + 42.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2)*(2261.0*pow(c1, 6) - 3553.0*pow(c1, 4) + 1683.0*pow(c1, 2) - 231.0) + 21.0*pow(pow(c1, 2) - 1.0, 4)*(133.0*pow(c1, 4) - 114.0*pow(c1, 2) + 21.0)); case 14: return 0.483658854166667*pow(c0, 14) + 0.273372395833333*pow(c0, 12)*(23.0*pow(c1, 2) - 7.0) + 1.00236545138889*pow(c0, 10)*(23.0*pow(c1, 4) - 18.0*pow(c1, 2) + 3.0) + 0.0102771577380952*pow(c0, 8)*(3059.0*pow(c1, 6) - 4389.0*pow(c1, 4) + 1881.0*pow(c1, 2) - 231.0) + 0.000325520833333333*pow(c0, 6)*(52003.0*pow(c1, 8) - 117572.0*pow(c1, 6) + 92378.0*pow(c1, 4) - 29172.0*pow(c1, 2) + 3003.0) + 6.51041666666667e-5*pow(c0, 4)*(52003.0*pow(c1, 10) - 169575.0*pow(c1, 8) + 209950.0*pow(c1, 6) - 121550.0*pow(c1, 4) + 32175.0*pow(c1, 2) - 3003.0) + 6.51041666666667e-5*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 3)*(3059.0*pow(c1, 6) - 4389.0*pow(c1, 4) + 1881.0*pow(c1, 2) - 231.0) + 6.51041666666667e-5*pow(pow(c1, 2) - 1.0, 5)*(23.0*pow(c1, 4) - 18.0*pow(c1, 2) + 3.0); case 15: return 1.03339947089947e-6*c0*(780045.0*pow(c0, 14) + 468027.0*pow(c0, 12)*(25.0*pow(c1, 2) - 7.0) + 88179.0*pow(c0, 10)*(575.0*pow(c1, 4) - 414.0*pow(c1, 2) + 63.0) + 146965.0*pow(c0, 8)*(575.0*pow(c1, 6) - 759.0*pow(c1, 4) + 297.0*pow(c1, 2) - 33.0) + 765.0*pow(c0, 6)*(76475.0*pow(c1, 8) - 159068.0*pow(c1, 6) + 114114.0*pow(c1, 4) - 32604.0*pow(c1, 2) + 3003.0) + 63.0*pow(c0, 4)*(260015.0*pow(c1, 10) - 780045.0*pow(c1, 8) + 881790.0*pow(c1, 6) - 461890.0*pow(c1, 4) + 109395.0*pow(c1, 2) - 9009.0) + 21.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2)*(76475.0*pow(c1, 8) - 159068.0*pow(c1, 6) + 114114.0*pow(c1, 4) - 32604.0*pow(c1, 2) + 3003.0) + 63.0*pow(pow(c1, 2) - 1.0, 4)*(575.0*pow(c1, 6) - 759.0*pow(c1, 4) + 297.0*pow(c1, 2) - 33.0)); case 16: return 1.36029052734375*pow(c0, 16) + 0.863676525297619*pow(c0, 14)*(27.0*pow(c1, 2) - 7.0) + 1.57189127604167*pow(c0, 12)*(75.0*pow(c1, 4) - 50.0*pow(c1, 2) + 7.0) + 0.0455620659722222*pow(c0, 10)*(5175.0*pow(c1, 6) - 6325.0*pow(c1, 4) + 2277.0*pow(c1, 2) - 231.0) + 0.0131429036458333*pow(c0, 8)*(15525.0*pow(c1, 8) - 29900.0*pow(c1, 6) + 19734.0*pow(c1, 4) - 5148.0*pow(c1, 2) + 429.0) + 0.000553385416666667*pow(c0, 6)*(137655.0*pow(c1, 10) - 382375.0*pow(c1, 8) + 397670.0*pow(c1, 6) - 190190.0*pow(c1, 4) + 40755.0*pow(c1, 2) - 3003.0) + 8.13802083333333e-5*pow(c0, 4)*(137655.0*pow(c1, 12) - 520030.0*pow(c1, 10) + 780045.0*pow(c1, 8) - 587860.0*pow(c1, 6) + 230945.0*pow(c1, 4) - 43758.0*pow(c1, 2) + 3003.0) + 3.25520833333333e-5*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 3)*(15525.0*pow(c1, 8) - 29900.0*pow(c1, 6) + 19734.0*pow(c1, 4) - 5148.0*pow(c1, 2) + 429.0) + 5.81287202380952e-7*pow(pow(c1, 2) - 1.0, 5)*(5175.0*pow(c1, 6) - 6325.0*pow(c1, 4) + 2277.0*pow(c1, 2) - 231.0); case 17: return 1.76147637085137e-8*c0*(131735835.0*pow(c0, 16) + 88256520.0*pow(c0, 14)*(29.0*pow(c1, 2) - 7.0) + 171609900.0*pow(c0, 12)*(87.0*pow(c1, 4) - 54.0*pow(c1, 2) + 7.0) + 16224936.0*pow(c0, 10)*(2175.0*pow(c1, 6) - 2475.0*pow(c1, 4) + 825.0*pow(c1, 2) - 77.0) + 248710.0*pow(c0, 8)*(150075.0*pow(c1, 8) - 269100.0*pow(c1, 6) + 164450.0*pow(c1, 4) - 39468.0*pow(c1, 2) + 3003.0) + 596904.0*pow(c0, 6)*(30015.0*pow(c1, 10) - 77625.0*pow(c1, 8) + 74750.0*pow(c1, 6) - 32890.0*pow(c1, 4) + 6435.0*pow(c1, 2) - 429.0) + 924.0*pow(c0, 4)*(3991995.0*pow(c1, 12) - 14040810.0*pow(c1, 10) + 19501125.0*pow(c1, 8) - 13520780.0*pow(c1, 6) + 4849845.0*pow(c1, 4) - 831402.0*pow(c1, 2) + 51051.0) + 9240.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2)*(30015.0*pow(c1, 10) - 77625.0*pow(c1, 8) + 74750.0*pow(c1, 6) - 32890.0*pow(c1, 4) + 6435.0*pow(c1, 2) - 429.0) + 33.0*pow(pow(c1, 2) - 1.0, 4)*(150075.0*pow(c1, 8) - 269100.0*pow(c1, 6) + 164450.0*pow(c1, 4) - 39468.0*pow(c1, 2) + 3003.0)); case 18: return 3.99640909830729*pow(c0, 18) + 2.81774466378348*pow(c0, 16)*(31.0*pow(c1, 2) - 7.0) + 0.647757393973214*pow(c0, 14)*(899.0*pow(c1, 4) - 522.0*pow(c1, 2) + 63.0) + 0.595413362136995*pow(c0, 12)*(2697.0*pow(c1, 6) - 2871.0*pow(c1, 4) + 891.0*pow(c1, 2) - 77.0) + 0.0302286783854167*pow(c0, 10)*(67425.0*pow(c1, 8) - 113100.0*pow(c1, 6) + 64350.0*pow(c1, 4) - 14300.0*pow(c1, 2) + 1001.0) + 0.00131429036458333*pow(c0, 8)*(930465.0*pow(c1, 10) - 2251125.0*pow(c1, 8) + 2018250.0*pow(c1, 6) - 822250.0*pow(c1, 4) + 148005.0*pow(c1, 2) - 9009.0) + 0.000360785590277778*pow(c0, 6)*(930465.0*pow(c1, 12) - 3061530.0*pow(c1, 10) + 3958875.0*pow(c1, 8) - 2541500.0*pow(c1, 6) + 838695.0*pow(c1, 4) - 131274.0*pow(c1, 2) + 7293.0) + 4.06901041666667e-5*pow(c0, 4)*(930465.0*pow(c1, 14) - 3991995.0*pow(c1, 12) + 7020405.0*pow(c1, 10) - 6500375.0*pow(c1, 8) + 3380195.0*pow(c1, 6) - 969969.0*pow(c1, 4) + 138567.0*pow(c1, 2) - 7293.0) + 1.45321800595238e-6*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 3)*(930465.0*pow(c1, 10) - 2251125.0*pow(c1, 8) + 2018250.0*pow(c1, 6) - 822250.0*pow(c1, 4) + 148005.0*pow(c1, 2) - 9009.0) + 9.68812003968254e-8*pow(pow(c1, 2) - 1.0, 5)*(67425.0*pow(c1, 8) - 113100.0*pow(c1, 6) + 64350.0*pow(c1, 4) - 14300.0*pow(c1, 2) + 1001.0); case 19: return 2.64221455627706e-8*c0*(262701285.0*pow(c0, 18) + 194467185.0*pow(c0, 16)*(33.0*pow(c1, 2) - 7.0) + 142191060.0*pow(c0, 14)*(341.0*pow(c1, 4) - 186.0*pow(c1, 2) + 21.0) + 171609900.0*pow(c0, 12)*(899.0*pow(c1, 6) - 899.0*pow(c1, 4) + 261.0*pow(c1, 2) - 21.0) + 2600150.0*pow(c0, 10)*(89001.0*pow(c1, 8) - 140244.0*pow(c1, 6) + 74646.0*pow(c1, 4) - 15444.0*pow(c1, 2) + 1001.0) + 1144066.0*pow(c0, 8)*(148335.0*pow(c1, 10) - 337125.0*pow(c1, 8) + 282750.0*pow(c1, 6) - 107250.0*pow(c1, 4) + 17875.0*pow(c1, 2) - 1001.0) + 5852.0*pow(c0, 6)*(10235115.0*pow(c1, 12) - 31635810.0*pow(c1, 10) + 38269125.0*pow(c1, 8) - 22873500.0*pow(c1, 6) + 6989125.0*pow(c1, 4) - 1006434.0*pow(c1, 2) + 51051.0) + 308.0*pow(c0, 4)*(30705345.0*pow(c1, 14) - 123751845.0*pow(c1, 12) + 203591745.0*pow(c1, 10) - 175510125.0*pow(c1, 8) + 84504875.0*pow(c1, 6) - 22309287.0*pow(c1, 4) + 2909907.0*pow(c1, 2) - 138567.0) + 55.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2)*(10235115.0*pow(c1, 12) - 31635810.0*pow(c1, 10) + 38269125.0*pow(c1, 8) - 22873500.0*pow(c1, 6) + 6989125.0*pow(c1, 4) - 1006434.0*pow(c1, 2) + 51051.0) + 55.0*pow(pow(c1, 2) - 1.0, 4)*(148335.0*pow(c1, 10) - 337125.0*pow(c1, 8) + 282750.0*pow(c1, 6) - 107250.0*pow(c1, 4) + 17875.0*pow(c1, 2) - 1001.0)); case 20: return 12.1469802856445*pow(c0, 20) + 65.9407501220703*pow(c0, 18)*(5.0*pow(c1, 2) - 1.0) + 7.279173714774*pow(c0, 16)*(385.0*pow(c1, 4) - 198.0*pow(c1, 2) + 21.0) + 9.39248221261161*pow(c0, 14)*(1085.0*pow(c1, 6) - 1023.0*pow(c1, 4) + 279.0*pow(c1, 2) - 21.0) + 0.566787719726563*pow(c0, 12)*(31465.0*pow(c1, 8) - 46748.0*pow(c1, 6) + 23374.0*pow(c1, 4) - 4524.0*pow(c1, 2) + 273.0) + 0.0755716959635417*pow(c0, 10)*(207669.0*pow(c1, 10) - 445005.0*pow(c1, 8) + 350610.0*pow(c1, 6) - 124410.0*pow(c1, 4) + 19305.0*pow(c1, 2) - 1001.0) + 0.0013336181640625*pow(c0, 8)*(5191725.0*pow(c1, 12) - 15130170.0*pow(c1, 10) + 17193375.0*pow(c1, 8) - 9613500.0*pow(c1, 6) + 2734875.0*pow(c1, 4) - 364650.0*pow(c1, 2) + 17017.0) + 2.84830729166667e-5*pow(c0, 6)*(51175575.0*pow(c1, 14) - 194467185.0*pow(c1, 12) + 300540195.0*pow(c1, 10) - 242371125.0*pow(c1, 8) + 108649125.0*pow(c1, 6) - 26558675.0*pow(c1, 4) + 3187041.0*pow(c1, 2) - 138567.0) + 2.54313151041667e-6*pow(c0, 4)*(51175575.0*pow(c1, 16) - 245642760.0*pow(c1, 14) + 495007380.0*pow(c1, 12) - 542911320.0*pow(c1, 10) + 351020250.0*pow(c1, 8) - 135207800.0*pow(c1, 6) + 29745716.0*pow(c1, 4) - 3325608.0*pow(c1, 2) + 138567.0) + 7.26609002976191e-7*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 3)*(5191725.0*pow(c1, 12) - 15130170.0*pow(c1, 10) + 17193375.0*pow(c1, 8) - 9613500.0*pow(c1, 6) + 2734875.0*pow(c1, 4) - 364650.0*pow(c1, 2) + 17017.0) + 7.26609002976191e-8*pow(pow(c1, 2) - 1.0, 5)*(207669.0*pow(c1, 10) - 445005.0*pow(c1, 8) + 350610.0*pow(c1, 6) - 124410.0*pow(c1, 4) + 19305.0*pow(c1, 2) - 1001.0); case 21: return 21.4018224080404*pow(c0, 21) + 17.3528289794922*pow(c0, 19)*(37.0*pow(c1, 2) - 7.0) + 32.9703750610352*pow(c0, 17)*(185.0*pow(c1, 4) - 90.0*pow(c1, 2) + 9.0) + 19.411129906064*pow(c0, 15)*(1295.0*pow(c1, 6) - 1155.0*pow(c1, 4) + 297.0*pow(c1, 2) - 21.0) + 1.26437260554387*pow(c0, 13)*(40145.0*pow(c1, 8) - 56420.0*pow(c1, 6) + 26598.0*pow(c1, 4) - 4836.0*pow(c1, 2) + 273.0) + 0.226715087890625*pow(c0, 11)*(232841.0*pow(c1, 10) - 471975.0*pow(c1, 8) + 350610.0*pow(c1, 6) - 116870.0*pow(c1, 4) + 16965.0*pow(c1, 2) - 819.0) + 0.00370449490017361*pow(c0, 9)*(7683753.0*pow(c1, 12) - 21182238.0*pow(c1, 10) + 22695255.0*pow(c1, 8) - 11920740.0*pow(c1, 6) + 3172455.0*pow(c1, 4) - 393822.0*pow(c1, 2) + 17017.0) + 0.00028076171875*pow(c0, 7)*(27441975.0*pow(c1, 14) - 98642775.0*pow(c1, 12) + 143736615.0*pow(c1, 10) - 108891375.0*pow(c1, 8) + 45664125.0*pow(c1, 6) - 10392525.0*pow(c1, 4) + 1154725.0*pow(c1, 2) - 46189.0) + 5.08626302083333e-7*pow(c0, 5)*(1893496275.0*pow(c1, 16) - 8597496600.0*pow(c1, 14) + 16335243540.0*pow(c1, 12) - 16830250920.0*pow(c1, 10) + 10179587250.0*pow(c1, 8) - 3650610600.0*pow(c1, 6) + 743642900.0*pow(c1, 4) - 76488984.0*pow(c1, 2) + 2909907.0) + 1.69542100694444e-6*pow(c0, 3)*pow(pow(c1, 2) - 1.0, 2)*(27441975.0*pow(c1, 14) - 98642775.0*pow(c1, 12) + 143736615.0*pow(c1, 10) - 108891375.0*pow(c1, 8) + 45664125.0*pow(c1, 6) - 10392525.0*pow(c1, 4) + 1154725.0*pow(c1, 2) - 46189.0) + 7.2660900297619e-8*c0*pow(pow(c1, 2) - 1.0, 4)*(7683753.0*pow(c1, 12) - 21182238.0*pow(c1, 10) + 22695255.0*pow(c1, 8) - 11920740.0*pow(c1, 6) + 3172455.0*pow(c1, 4) - 393822.0*pow(c1, 2) + 17017.0); case 22: return 37.9395942687988*pow(c0, 22) + 32.1027336120605*pow(c0, 20)*(39.0*pow(c1, 2) - 7.0) + 27.4753125508626*pow(c0, 18)*(481.0*pow(c1, 4) - 222.0*pow(c1, 2) + 21.0) + 25.477108001709*pow(c0, 16)*(2405.0*pow(c1, 6) - 2035.0*pow(c1, 4) + 495.0*pow(c1, 2) - 33.0) + 36.39586857387*pow(c0, 14)*(3885.0*pow(c1, 8) - 5180.0*pow(c1, 6) + 2310.0*pow(c1, 4) - 396.0*pow(c1, 2) + 21.0) + 1.64368438720703*pow(c0, 12)*(104377.0*pow(c1, 10) - 200725.0*pow(c1, 8) + 141050.0*pow(c1, 6) - 44330.0*pow(c1, 4) + 6045.0*pow(c1, 2) - 273.0) + 0.0366744995117188*pow(c0, 10)*(3026933.0*pow(c1, 12) - 7916594.0*pow(c1, 10) + 8023575.0*pow(c1, 8) - 3973580.0*pow(c1, 6) + 993395.0*pow(c1, 4) - 115362.0*pow(c1, 2) + 4641.0) + 0.00087738037109375*pow(c0, 8)*(42809481.0*pow(c1, 14) - 145991307.0*pow(c1, 12) + 201231261.0*pow(c1, 10) - 143736615.0*pow(c1, 8) + 56623515.0*pow(c1, 6) - 12055329.0*pow(c1, 4) + 1247103.0*pow(c1, 2) - 46189.0) + 1.7547607421875e-5*pow(c0, 6)*(356745675.0*pow(c1, 16) - 1536750600.0*pow(c1, 14) + 2761997700.0*pow(c1, 12) - 2683083480.0*pow(c1, 10) + 1524479250.0*pow(c1, 8) - 511438200.0*pow(c1, 6) + 96996900.0*pow(c1, 4) - 9237800.0*pow(c1, 2) + 323323.0) + 1.27156575520833e-6*pow(c0, 4)*(356745675.0*pow(c1, 18) - 1893496275.0*pow(c1, 16) + 4298748300.0*pow(c1, 14) - 5445081180.0*pow(c1, 12) + 4207562730.0*pow(c1, 10) - 2035917450.0*pow(c1, 8) + 608435100.0*pow(c1, 6) - 106234700.0*pow(c1, 4) + 9561123.0*pow(c1, 2) - 323323.0) + 2.54313151041667e-7*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 3)*(42809481.0*pow(c1, 14) - 145991307.0*pow(c1, 12) + 201231261.0*pow(c1, 10) - 143736615.0*pow(c1, 8) + 56623515.0*pow(c1, 6) - 12055329.0*pow(c1, 4) + 1247103.0*pow(c1, 2) - 46189.0) + 1.21101500496032e-8*pow(pow(c1, 2) - 1.0, 5)*(3026933.0*pow(c1, 12) - 7916594.0*pow(c1, 10) + 8023575.0*pow(c1, 8) - 3973580.0*pow(c1, 6) + 993395.0*pow(c1, 4) - 115362.0*pow(c1, 2) + 4641.0); case 23: return 1.21101500496032e-8*c0*(5584691385.0*pow(c0, 22) + 4923090315.0*pow(c0, 20)*(41.0*pow(c1, 2) - 7.0) + 4418157975.0*pow(c0, 18)*(533.0*pow(c1, 4) - 234.0*pow(c1, 2) + 21.0) + 618759225.0*pow(c0, 16)*(19721.0*pow(c1, 6) - 15873.0*pow(c1, 4) + 3663.0*pow(c1, 2) - 231.0) + 4207562730.0*pow(c0, 14)*(7585.0*pow(c1, 8) - 9620.0*pow(c1, 6) + 4070.0*pow(c1, 4) - 660.0*pow(c1, 2) + 33.0) + 4207562730.0*pow(c0, 12)*(10619.0*pow(c1, 10) - 19425.0*pow(c1, 8) + 12950.0*pow(c1, 6) - 3850.0*pow(c1, 4) + 495.0*pow(c1, 2) - 21.0) + 7983990.0*pow(c0, 10)*(4279457.0*pow(c1, 12) - 10646454.0*pow(c1, 10) + 10236975.0*pow(c1, 8) - 4795700.0*pow(c1, 6) + 1130415.0*pow(c1, 4) - 123318.0*pow(c1, 2) + 4641.0) + 796950.0*pow(c0, 8)*(17729179.0*pow(c1, 14) - 57511727.0*pow(c1, 12) + 75207643.0*pow(c1, 10) - 50815975.0*pow(c1, 8) + 18874505.0*pow(c1, 6) - 3774901.0*pow(c1, 4) + 365313.0*pow(c1, 2) - 12597.0) + 5175.0*pow(c0, 6)*(585062907.0*pow(c1, 16) - 2397330936.0*pow(c1, 14) + 4087756596.0*pow(c1, 12) - 3756316872.0*pow(c1, 10) + 2012312610.0*pow(c1, 8) - 634183368.0*pow(c1, 6) + 112516404.0*pow(c1, 4) - 9976824.0*pow(c1, 2) + 323323.0) + 21.0*pow(c0, 4)*(14626572675.0*pow(c1, 18) - 73846354725.0*pow(c1, 16) + 159053687100.0*pow(c1, 14) - 190577841300.0*pow(c1, 12) + 138849570090.0*pow(c1, 10) - 63113440950.0*pow(c1, 8) + 17644617900.0*pow(c1, 6) - 2868336900.0*pow(c1, 4) + 239028075.0*pow(c1, 2) - 7436429.0) + 21.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2)*(585062907.0*pow(c1, 16) - 2397330936.0*pow(c1, 14) + 4087756596.0*pow(c1, 12) - 3756316872.0*pow(c1, 10) + 2012312610.0*pow(c1, 8) - 634183368.0*pow(c1, 6) + 112516404.0*pow(c1, 4) - 9976824.0*pow(c1, 2) + 323323.0) + 7.0*pow(pow(c1, 2) - 1.0, 4)*(17729179.0*pow(c1, 14) - 57511727.0*pow(c1, 12) + 75207643.0*pow(c1, 10) - 50815975.0*pow(c1, 8) + 18874505.0*pow(c1, 6) - 3774901.0*pow(c1, 4) + 365313.0*pow(c1, 2) - 12597.0)); case 24: return 121.173015753428*pow(c0, 24) + 111.108811787197*pow(c0, 22)*(43.0*pow(c1, 2) - 7.0) + 34.7779614130656*pow(c0, 20)*(1763.0*pow(c1, 4) - 738.0*pow(c1, 2) + 63.0) + 15.4028267330594*pow(c0, 18)*(22919.0*pow(c1, 6) - 17589.0*pow(c1, 4) + 3861.0*pow(c1, 2) - 231.0) + 15.9231925010681*pow(c0, 16)*(65231.0*pow(c1, 8) - 78884.0*pow(c1, 6) + 31746.0*pow(c1, 4) - 4884.0*pow(c1, 2) + 231.0) + 25.477108001709*pow(c0, 14)*(65231.0*pow(c1, 10) - 113775.0*pow(c1, 8) + 72150.0*pow(c1, 6) - 20350.0*pow(c1, 4) + 2475.0*pow(c1, 2) - 99.0) + 3.24708239237467*pow(c0, 12)*(456617.0*pow(c1, 12) - 1083138.0*pow(c1, 10) + 990675.0*pow(c1, 8) - 440300.0*pow(c1, 6) + 98175.0*pow(c1, 4) - 10098.0*pow(c1, 2) + 357.0) + 0.0279884338378906*pow(c0, 10)*(26288093.0*pow(c1, 14) - 81309683.0*pow(c1, 12) + 101141313.0*pow(c1, 10) - 64834175.0*pow(c1, 8) + 22779575.0*pow(c1, 6) - 4295577.0*pow(c1, 4) + 390507.0*pow(c1, 2) - 12597.0) + 0.000258513859340123*pow(c0, 8)*(762354697.0*pow(c1, 16) - 2978502072.0*pow(c1, 14) + 4830985068.0*pow(c1, 12) - 4211628008.0*pow(c1, 10) + 2134270950.0*pow(c1, 8) - 634183368.0*pow(c1, 6) + 105697228.0*pow(c1, 4) - 8767512.0*pow(c1, 2) + 264537.0) + 1.05963812934028e-6*pow(c0, 6)*(25157705001.0*pow(c1, 18) - 121108021749.0*pow(c1, 16) + 248123751876.0*pow(c1, 14) - 282055205124.0*pow(c1, 12) + 194389398126.0*pow(c1, 10) - 83309742054.0*pow(c1, 8) + 21879326196.0*pow(c1, 6) - 3327270804.0*pow(c1, 4) + 258150321.0*pow(c1, 2) - 7436429.0) + 6.35782877604167e-8*pow(c0, 4)*(25157705001.0*pow(c1, 20) - 146265726750.0*pow(c1, 18) + 369231773625.0*pow(c1, 16) - 530178957000.0*pow(c1, 14) + 476444603250.0*pow(c1, 12) - 277699140180.0*pow(c1, 10) + 105189068250.0*pow(c1, 8) - 25206597000.0*pow(c1, 6) + 3585421125.0*pow(c1, 4) - 265586750.0*pow(c1, 2) + 7436429.0) + 4.23855251736111e-8*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 3)*(762354697.0*pow(c1, 16) - 2978502072.0*pow(c1, 14) + 4830985068.0*pow(c1, 12) - 4211628008.0*pow(c1, 10) + 2134270950.0*pow(c1, 8) - 634183368.0*pow(c1, 6) + 105697228.0*pow(c1, 4) - 8767512.0*pow(c1, 2) + 264537.0) + 3.53212709780093e-9*pow(pow(c1, 2) - 1.0, 5)*(26288093.0*pow(c1, 14) - 81309683.0*pow(c1, 12) + 101141313.0*pow(c1, 10) - 64834175.0*pow(c1, 8) + 22779575.0*pow(c1, 6) - 4295577.0*pow(c1, 4) + 390507.0*pow(c1, 2) - 12597.0); case 25: return 1.5137687562004e-9*c0*(144085037733.0*pow(c0, 24) + 137223845460.0*pow(c0, 22)*(45.0*pow(c1, 2) - 7.0) + 403693405830.0*pow(c0, 20)*(215.0*pow(c1, 4) - 86.0*pow(c1, 2) + 7.0) + 20885837700.0*pow(c0, 18)*(26445.0*pow(c1, 6) - 19393.0*pow(c1, 4) + 4059.0*pow(c1, 2) - 231.0) + 22894091325.0*pow(c0, 16)*(79335.0*pow(c1, 8) - 91676.0*pow(c1, 6) + 35178.0*pow(c1, 4) - 5148.0*pow(c1, 2) + 231.0) + 16830250920.0*pow(c0, 14)*(195693.0*pow(c1, 10) - 326155.0*pow(c1, 8) + 197210.0*pow(c1, 6) - 52910.0*pow(c1, 4) + 6105.0*pow(c1, 2) - 231.0) + 3465051660.0*pow(c0, 12)*(978465.0*pow(c1, 12) - 2217854.0*pow(c1, 10) + 1934175.0*pow(c1, 8) - 817700.0*pow(c1, 6) + 172975.0*pow(c1, 4) - 16830.0*pow(c1, 2) + 561.0) + 677378520.0*pow(c0, 10)*(2935395.0*pow(c1, 14) - 8675723.0*pow(c1, 12) + 10289811.0*pow(c1, 10) - 6274275.0*pow(c1, 8) + 2091425.0*pow(c1, 6) - 373065.0*pow(c1, 4) + 31977.0*pow(c1, 2) - 969.0) + 1650825.0*pow(c0, 8)*(394321395.0*pow(c1, 16) - 1472133208.0*pow(c1, 14) + 2276671124.0*pow(c1, 12) - 1887971176.0*pow(c1, 10) + 907678450.0*pow(c1, 8) - 255131240.0*pow(c1, 6) + 40092052.0*pow(c1, 4) - 3124056.0*pow(c1, 2) + 88179.0) + 29700.0*pow(c0, 6)*(3811773485.0*pow(c1, 18) - 17534158031.0*pow(c1, 16) + 34252773828.0*pow(c1, 14) - 37037552188.0*pow(c1, 12) + 24216861046.0*pow(c1, 10) - 9817646370.0*pow(c1, 8) + 2431036244.0*pow(c1, 6) - 347290892.0*pow(c1, 4) + 25206597.0*pow(c1, 2) - 676039.0) + 42.0*pow(c0, 4)*(226419345009.0*pow(c1, 20) - 1257885250050.0*pow(c1, 18) + 3027700543725.0*pow(c1, 16) - 4135395864600.0*pow(c1, 14) + 3525690064050.0*pow(c1, 12) - 1943893981260.0*pow(c1, 10) + 694247850450.0*pow(c1, 8) - 156280901400.0*pow(c1, 6) + 20795442525.0*pow(c1, 4) - 1434168450.0*pow(c1, 2) + 37182145.0) + 84.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2)*(3811773485.0*pow(c1, 18) - 17534158031.0*pow(c1, 16) + 34252773828.0*pow(c1, 14) - 37037552188.0*pow(c1, 12) + 24216861046.0*pow(c1, 10) - 9817646370.0*pow(c1, 8) + 2431036244.0*pow(c1, 6) - 347290892.0*pow(c1, 4) + 25206597.0*pow(c1, 2) - 676039.0) + 7.0*pow(pow(c1, 2) - 1.0, 4)*(394321395.0*pow(c1, 16) - 1472133208.0*pow(c1, 14) + 2276671124.0*pow(c1, 12) - 1887971176.0*pow(c1, 10) + 907678450.0*pow(c1, 8) - 255131240.0*pow(c1, 6) + 40092052.0*pow(c1, 4) - 3124056.0*pow(c1, 2) + 88179.0)); case 26: return 394.278351259232*pow(c0, 26) + 389.484693493162*pow(c0, 24)*(47.0*pow(c1, 2) - 7.0) + 1194.41972671236*pow(c0, 22)*(235.0*pow(c1, 4) - 90.0*pow(c1, 2) + 7.0) + 194.440420627594*pow(c0, 20)*(10105.0*pow(c1, 6) - 7095.0*pow(c1, 4) + 1419.0*pow(c1, 2) - 77.0) + 5.77606002489726*pow(c0, 18)*(1242915.0*pow(c1, 8) - 1375140.0*pow(c1, 6) + 504218.0*pow(c1, 4) - 70356.0*pow(c1, 2) + 3003.0) + 58.915812253952*pow(c0, 16)*(248583.0*pow(c1, 10) - 396675.0*pow(c1, 8) + 229190.0*pow(c1, 6) - 58630.0*pow(c1, 4) + 6435.0*pow(c1, 2) - 231.0) + 1.87331676483154*pow(c0, 14)*(9197571.0*pow(c1, 12) - 19960686.0*pow(c1, 10) + 16633905.0*pow(c1, 8) - 6705140.0*pow(c1, 6) + 1349205.0*pow(c1, 4) - 124542.0*pow(c1, 2) + 3927.0) + 0.256348609924316*pow(c0, 12)*(45987855.0*pow(c1, 14) - 130135845.0*pow(c1, 12) + 147487291.0*pow(c1, 10) - 85748425.0*pow(c1, 8) + 27188525.0*pow(c1, 6) - 4601135.0*pow(c1, 4) + 373065.0*pow(c1, 2) - 10659.0) + 0.100708382470267*pow(c0, 10)*(45987855.0*pow(c1, 16) - 164382120.0*pow(c1, 14) + 242920244.0*pow(c1, 12) - 192076472.0*pow(c1, 10) + 87839850.0*pow(c1, 8) - 23423960.0*pow(c1, 6) + 3481940.0*pow(c1, 4) - 255816.0*pow(c1, 2) + 6783.0) + 0.000162976128714425*pow(c0, 8)*(6177701855.0*pow(c1, 18) - 27208176255.0*pow(c1, 16) + 50788595676.0*pow(c1, 14) - 52363435852.0*pow(c1, 12) + 32567502786.0*pow(c1, 10) - 12525962610.0*pow(c1, 8) + 2934009260.0*pow(c1, 6) - 395193084.0*pow(c1, 4) + 26944983.0*pow(c1, 2) - 676039.0) + 3.14712524414062e-6*pow(c0, 6)*(35830670759.0*pow(c1, 20) - 190588674250.0*pow(c1, 18) + 438353950775.0*pow(c1, 16) - 570879563800.0*pow(c1, 14) + 462969402350.0*pow(c1, 12) - 242168610460.0*pow(c1, 10) + 81813719750.0*pow(c1, 8) - 17364544600.0*pow(c1, 6) + 2170568075.0*pow(c1, 4) - 140036650.0*pow(c1, 2) + 3380195.0) + 1.58945719401042e-7*pow(c0, 4)*(35830670759.0*pow(c1, 22) - 226419345009.0*pow(c1, 20) + 628942625025.0*pow(c1, 18) - 1009233514575.0*pow(c1, 16) + 1033848966150.0*pow(c1, 14) - 705138012810.0*pow(c1, 12) + 323982330210.0*pow(c1, 10) - 99178264350.0*pow(c1, 8) + 19535112675.0*pow(c1, 6) - 2310604725.0*pow(c1, 4) + 143416845.0*pow(c1, 2) - 3380195.0) + 1.58945719401042e-8*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 3)*(6177701855.0*pow(c1, 18) - 27208176255.0*pow(c1, 16) + 50788595676.0*pow(c1, 14) - 52363435852.0*pow(c1, 12) + 32567502786.0*pow(c1, 10) - 12525962610.0*pow(c1, 8) + 2934009260.0*pow(c1, 6) - 395193084.0*pow(c1, 4) + 26944983.0*pow(c1, 2) - 676039.0) + 5.29819064670139e-9*pow(pow(c1, 2) - 1.0, 5)*(45987855.0*pow(c1, 16) - 164382120.0*pow(c1, 14) + 242920244.0*pow(c1, 12) - 192076472.0*pow(c1, 10) + 87839850.0*pow(c1, 8) - 23423960.0*pow(c1, 6) + 3481940.0*pow(c1, 4) - 255816.0*pow(c1, 2) + 6783.0); case 27: return 7.56884378100198e-10*c0*(945378466949.0*pow(c0, 26) + 6771996773451.0*pow(c0, 24)*(7.0*pow(c1, 2) - 1.0) + 343059613650.0*pow(c0, 22)*(2303.0*pow(c1, 4) - 846.0*pow(c1, 2) + 63.0) + 526024740930.0*pow(c0, 20)*(11515.0*pow(c1, 6) - 7755.0*pow(c1, 4) + 1485.0*pow(c1, 2) - 77.0) + 49403039175.0*pow(c0, 18)*(495145.0*pow(c1, 8) - 525460.0*pow(c1, 6) + 184470.0*pow(c1, 4) - 24596.0*pow(c1, 2) + 1001.0) + 4578818265.0*pow(c0, 16)*(12180567.0*pow(c1, 10) - 18643725.0*pow(c1, 8) + 10313550.0*pow(c1, 6) - 2521090.0*pow(c1, 4) + 263835.0*pow(c1, 2) - 9009.0) + 6105091020.0*pow(c0, 14)*(12180567.0*pow(c1, 12) - 25355466.0*pow(c1, 10) + 20230425.0*pow(c1, 8) - 7792460.0*pow(c1, 6) + 1495065.0*pow(c1, 4) - 131274.0*pow(c1, 2) + 3927.0) + 911855700.0*pow(c0, 12)*(64382997.0*pow(c1, 14) - 174753849.0*pow(c1, 12) + 189626517.0*pow(c1, 10) - 105348065.0*pow(c1, 8) + 31849415.0*pow(c1, 6) - 5126979.0*pow(c1, 4) + 394383.0*pow(c1, 2) - 10659.0) + 84672315.0*pow(c0, 10)*(321914985.0*pow(c1, 16) - 1103708520.0*pow(c1, 14) + 1561630140.0*pow(c1, 12) - 1179898328.0*pow(c1, 10) + 514490550.0*pow(c1, 8) - 130504920.0*pow(c1, 6) + 18404540.0*pow(c1, 4) - 1279080.0*pow(c1, 2) + 31977.0) + 9641775.0*pow(c0, 8)*(751134965.0*pow(c1, 18) - 3173161995.0*pow(c1, 16) + 5671183140.0*pow(c1, 14) - 5587165612.0*pow(c1, 12) + 3313319142.0*pow(c1, 10) - 1212189930.0*pow(c1, 8) + 269375540.0*pow(c1, 6) - 34321980.0*pow(c1, 4) + 2206413.0*pow(c1, 2) - 52003.0) + 17226.0*pow(c0, 6)*(60541478179.0*pow(c1, 20) - 308885092750.0*pow(c1, 18) + 680204406375.0*pow(c1, 16) - 846476594600.0*pow(c1, 14) + 654542948150.0*pow(c1, 12) - 325675027860.0*pow(c1, 10) + 104383021750.0*pow(c1, 8) - 20957209000.0*pow(c1, 6) + 2469956775.0*pow(c1, 4) - 149694350.0*pow(c1, 2) + 3380195.0) + 42.0*pow(c0, 4)*(1755702867191.0*pow(c1, 22) - 10641709215423.0*pow(c1, 20) + 28302418126125.0*pow(c1, 18) - 43397041126725.0*pow(c1, 16) + 42387807612150.0*pow(c1, 14) - 27500382499590.0*pow(c1, 12) + 11987346217770.0*pow(c1, 10) - 3471239252250.0*pow(c1, 8) + 644658718275.0*pow(c1, 6) - 71628746475.0*pow(c1, 4) + 4159088505.0*pow(c1, 2) - 91265265.0) + 35.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2)*(60541478179.0*pow(c1, 20) - 308885092750.0*pow(c1, 18) + 680204406375.0*pow(c1, 16) - 846476594600.0*pow(c1, 14) + 654542948150.0*pow(c1, 12) - 325675027860.0*pow(c1, 10) + 104383021750.0*pow(c1, 8) - 20957209000.0*pow(c1, 6) + 2469956775.0*pow(c1, 4) - 149694350.0*pow(c1, 2) + 3380195.0) + 21.0*pow(pow(c1, 2) - 1.0, 4)*(751134965.0*pow(c1, 18) - 3173161995.0*pow(c1, 16) + 5671183140.0*pow(c1, 14) - 5587165612.0*pow(c1, 12) + 3313319142.0*pow(c1, 10) - 1212189930.0*pow(c1, 8) + 269375540.0*pow(c1, 6) - 34321980.0*pow(c1, 4) + 2206413.0*pow(c1, 2) - 52003.0)); case 28: return 1303.30899444024*pow(c0, 28) + 1379.97422940731*pow(c0, 26)*(51.0*pow(c1, 2) - 7.0) + 10678.3720132709*pow(c0, 24)*(119.0*pow(c1, 4) - 42.0*pow(c1, 2) + 3.0) + 271.459028798264*pow(c0, 22)*(39151.0*pow(c1, 6) - 25333.0*pow(c1, 4) + 4653.0*pow(c1, 2) - 231.0) + 80.3936354517937*pow(c0, 20)*(587265.0*pow(c1, 8) - 598780.0*pow(c1, 6) + 201630.0*pow(c1, 4) - 25740.0*pow(c1, 2) + 1001.0) + 71.0455383062363*pow(c0, 18)*(1683493.0*pow(c1, 10) - 2475725.0*pow(c1, 8) + 1313650.0*pow(c1, 6) - 307450.0*pow(c1, 4) + 30745.0*pow(c1, 2) - 1001.0) + 14.728953063488*pow(c0, 16)*(12180567.0*pow(c1, 12) - 24361134.0*pow(c1, 10) + 18643725.0*pow(c1, 8) - 6875700.0*pow(c1, 6) + 1260545.0*pow(c1, 4) - 105534.0*pow(c1, 2) + 3003.0) + 1.82401895523071*pow(c0, 14)*(88744131.0*pow(c1, 14) - 231430773.0*pow(c1, 12) + 240876927.0*pow(c1, 10) - 128126025.0*pow(c1, 8) + 37014185.0*pow(c1, 6) - 5681247.0*pow(c1, 4) + 415701.0*pow(c1, 2) - 10659.0) + 0.0801089406013489*pow(c0, 12)*(1094510949.0*pow(c1, 16) - 3605447832.0*pow(c1, 14) + 4893107772.0*pow(c1, 12) - 3539694984.0*pow(c1, 10) + 1474872910.0*pow(c1, 8) - 356713448.0*pow(c1, 6) + 47851804.0*pow(c1, 4) - 3155064.0*pow(c1, 2) + 74613.0) + 0.0153251886367798*pow(c0, 10)*(1824184915.0*pow(c1, 18) - 7404044655.0*pow(c1, 16) + 12692647980.0*pow(c1, 14) - 11972497740.0*pow(c1, 12) + 6784415386.0*pow(c1, 10) - 2366656530.0*pow(c1, 8) + 500268860.0*pow(c1, 6) - 60472060.0*pow(c1, 4) + 3677355.0*pow(c1, 2) - 81719.0) + 0.000656793798719134*pow(c0, 8)*(7661576643.0*pow(c1, 20) - 37556748250.0*pow(c1, 18) + 79329049875.0*pow(c1, 16) - 94519719000.0*pow(c1, 14) + 69839570150.0*pow(c1, 12) - 33133191420.0*pow(c1, 10) + 10101582750.0*pow(c1, 8) - 1924111000.0*pow(c1, 6) + 214512375.0*pow(c1, 4) - 12257850.0*pow(c1, 2) + 260015.0) + 4.60942586263021e-7*pow(c0, 6)*(1029205129043.0*pow(c1, 22) - 5993606339721.0*pow(c1, 20) + 15289812091125.0*pow(c1, 18) - 22446745410375.0*pow(c1, 16) + 20950295716350.0*pow(c1, 14) - 12959950373370.0*pow(c1, 12) + 5373637959690.0*pow(c1, 10) - 1476274164750.0*pow(c1, 8) + 259345461375.0*pow(c1, 6) - 27169524525.0*pow(c1, 4) + 1481974065.0*pow(c1, 2) - 30421755.0) + 1.98682149251302e-8*pow(c0, 4)*(1029205129043.0*pow(c1, 24) - 7022811468764.0*pow(c1, 22) + 21283418430846.0*pow(c1, 20) - 37736557501500.0*pow(c1, 18) + 43397041126725.0*pow(c1, 16) - 33910246089720.0*pow(c1, 14) + 18333588333060.0*pow(c1, 12) - 6849912124440.0*pow(c1, 10) + 1735619626125.0*pow(c1, 8) - 286514985900.0*pow(c1, 6) + 28651498590.0*pow(c1, 4) - 1512395820.0*pow(c1, 2) + 30421755.0) + 3.97364298502604e-8*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 3)*(7661576643.0*pow(c1, 20) - 37556748250.0*pow(c1, 18) + 79329049875.0*pow(c1, 16) - 94519719000.0*pow(c1, 14) + 69839570150.0*pow(c1, 12) - 33133191420.0*pow(c1, 10) + 10101582750.0*pow(c1, 8) - 1924111000.0*pow(c1, 6) + 214512375.0*pow(c1, 4) - 12257850.0*pow(c1, 2) + 260015.0) + 3.61240271366004e-10*pow(pow(c1, 2) - 1.0, 5)*(1824184915.0*pow(c1, 18) - 7404044655.0*pow(c1, 16) + 12692647980.0*pow(c1, 14) - 11972497740.0*pow(c1, 12) + 6784415386.0*pow(c1, 10) - 2366656530.0*pow(c1, 8) + 500268860.0*pow(c1, 6) - 60472060.0*pow(c1, 4) + 3677355.0*pow(c1, 2) - 81719.0); case 29: return 5.16057530522863e-11*c0*(46155891556313.0*pow(c0, 28) + 50510220948418.0*pow(c0, 26)*(53.0*pow(c1, 2) - 7.0) + 57938194617303.0*pow(c0, 24)*(901.0*pow(c1, 4) - 306.0*pow(c1, 2) + 21.0) + 75244408593900.0*pow(c0, 22)*(6307.0*pow(c1, 6) - 3927.0*pow(c1, 4) + 693.0*pow(c1, 2) - 33.0) + 1112744644275.0*pow(c0, 20)*(2075003.0*pow(c1, 8) - 2035852.0*pow(c1, 6) + 658658.0*pow(c1, 4) - 80652.0*pow(c1, 2) + 3003.0) + 3115685003970.0*pow(c0, 18)*(2075003.0*pow(c1, 10) - 2936325.0*pow(c1, 8) + 1496950.0*pow(c1, 6) - 336050.0*pow(c1, 4) + 32175.0*pow(c1, 2) - 1001.0) + 2065047037515.0*pow(c0, 16)*(5248537.0*pow(c1, 12) - 10100958.0*pow(c1, 10) + 7427175.0*pow(c1, 8) - 2627300.0*pow(c1, 6) + 461175.0*pow(c1, 4) - 36894.0*pow(c1, 2) + 1001.0) + 120173896920.0*pow(c0, 14)*(92224293.0*pow(c1, 14) - 231430773.0*pow(c1, 12) + 231430773.0*pow(c1, 10) - 118076925.0*pow(c1, 8) + 32659575.0*pow(c1, 6) - 4790071.0*pow(c1, 4) + 334191.0*pow(c1, 2) - 8151.0) + 4418157975.0*pow(c0, 12)*(1567812981.0*pow(c1, 16) - 4969671336.0*pow(c1, 14) + 6480061644.0*pow(c1, 12) - 4496369304.0*pow(c1, 10) + 1793764350.0*pow(c1, 8) - 414558872.0*pow(c1, 6) + 53024972.0*pow(c1, 4) - 3325608.0*pow(c1, 2) + 74613.0) + 134984850.0*pow(c0, 10)*(19336360099.0*pow(c1, 18) - 75521255481.0*pow(c1, 16) + 124387950204.0*pow(c1, 14) - 112541478756.0*pow(c1, 12) + 61059738474.0*pow(c1, 10) - 20353246158.0*pow(c1, 8) + 4102204652.0*pow(c1, 6) - 471682068.0*pow(c1, 4) + 27212427.0*pow(c1, 2) - 572033.0) + 29696667.0*pow(c0, 8)*(19336360099.0*pow(c1, 20) - 91209245750.0*pow(c1, 18) + 185101116375.0*pow(c1, 16) - 211544133000.0*pow(c1, 14) + 149656221750.0*pow(c1, 12) - 67844153860.0*pow(c1, 10) + 19722137750.0*pow(c1, 8) - 3573349000.0*pow(c1, 6) + 377950375.0*pow(c1, 4) - 20429750.0*pow(c1, 2) + 408595.0) + 514228.0*pow(c0, 6)*(135354520693.0*pow(c1, 22) - 758496087657.0*pow(c1, 20) + 1859059038375.0*pow(c1, 18) - 2617858645875.0*pow(c1, 16) + 2339363045250.0*pow(c1, 14) - 1382823488970.0*pow(c1, 12) + 546697658430.0*pow(c1, 10) - 142865241750.0*pow(c1, 8) + 23810873625.0*pow(c1, 6) - 2359636125.0*pow(c1, 4) + 121352715.0*pow(c1, 2) - 2340135.0) + 77.0*pow(c0, 4)*(54547871839279.0*pow(c1, 24) - 358163384906964.0*pow(c1, 22) + 1.04288750311145e+15*pow(c1, 20) - 1.7736182025705e+15*pow(c1, 18) + 1.95286685070263e+15*pow(c1, 16) - 1.45814058185796e+15*pow(c1, 14) + 751677121655460.0*pow(c1, 12) - 267146572853160.0*pow(c1, 10) + 64217926166625.0*pow(c1, 8) - 10028024506500.0*pow(c1, 6) + 945499453470.0*pow(c1, 4) - 46884270420.0*pow(c1, 2) + 882230895.0) + 770.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2)*(135354520693.0*pow(c1, 22) - 758496087657.0*pow(c1, 20) + 1859059038375.0*pow(c1, 18) - 2617858645875.0*pow(c1, 16) + 2339363045250.0*pow(c1, 14) - 1382823488970.0*pow(c1, 12) + 546697658430.0*pow(c1, 10) - 142865241750.0*pow(c1, 8) + 23810873625.0*pow(c1, 6) - 2359636125.0*pow(c1, 4) + 121352715.0*pow(c1, 2) - 2340135.0) + 35.0*pow(pow(c1, 2) - 1.0, 4)*(19336360099.0*pow(c1, 20) - 91209245750.0*pow(c1, 18) + 185101116375.0*pow(c1, 16) - 211544133000.0*pow(c1, 14) + 149656221750.0*pow(c1, 12) - 67844153860.0*pow(c1, 10) + 19722137750.0*pow(c1, 8) - 3573349000.0*pow(c1, 6) + 377950375.0*pow(c1, 4) - 20429750.0*pow(c1, 2) + 408595.0)); default: return 0.; } case 5: switch(j) { case 0: return 0.00158730158730159*c1*y1t*(9.0*pow(c0, 2) + pow(c1, 2) - 9.0); case 1: return 0.000793650793650794*c1*y1r*(9.0*pow(c0, 2) - 6.0*c0 + pow(c1, 2) - 3.0); case 2: return -0.00158730158730159*c1*y2t*(9.0*pow(c0, 2) + pow(c1, 2) - 9.0); case 3: return 0.000793650793650794*c1*y2r*(9.0*pow(c0, 2) + 6.0*c0 + pow(c1, 2) - 3.0); case 4: return 0.00317460317460317*c0*c1*(3.0*pow(c0, 2) + pow(c1, 2) - 3.0); case 5: return 7.21500721500722e-5*c1*(165.0*pow(c0, 4) + 22.0*pow(c0, 2)*(5.0*pow(c1, 2) - 9.0) + 5.0*pow(c1, 4) - 22.0*pow(c1, 2) + 33.0); case 6: return 2.4050024050024e-5*c0*c1*(693.0*pow(c0, 4) + 110.0*pow(c0, 2)*(7.0*pow(c1, 2) - 9.0) + 105.0*pow(c1, 4) - 330.0*pow(c1, 2) + 297.0); case 7: return 2.77500277500278e-6*c1*(9009.0*pow(c0, 6) + 15015.0*pow(c0, 4)*(pow(c1, 2) - 1.0) + 65.0*pow(c0, 2)*(63.0*pow(c1, 4) - 154.0*pow(c1, 2) + 99.0) + 105.0*pow(c1, 6) - 455.0*pow(c1, 4) + 715.0*pow(c1, 2) - 429.0); case 8: return 2.77500277500278e-6*c0*c1*(14157.0*pow(c0, 6) + 3003.0*pow(c0, 4)*(11.0*pow(c1, 2) - 9.0) + 15015.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2) + 1155.0*pow(c1, 6) - 4095.0*pow(c1, 4) + 5005.0*pow(c1, 2) - 2145.0); case 9: return 0.000347222222222222*pow(c1, 9) + 0.0016025641025641*pow(c1, 7)*(13.0*pow(c0, 2) - 1.0) + 0.000946969696969697*pow(c1, 5)*(143.0*pow(c0, 4) - 66.0*pow(c0, 2) + 3.0) + 0.000462962962962963*pow(c1, 3)*(429.0*pow(c0, 6) - 495.0*pow(c0, 4) + 135.0*pow(c0, 2) - 5.0) + 0.000148809523809524*c1*(429.0*pow(c0, 8) - 924.0*pow(c0, 6) + 630.0*pow(c0, 4) - 140.0*pow(c0, 2) + 5.0); case 10: return 0.000148809523809524*c0*c1*(715.0*pow(c0, 8) + 572.0*pow(c0, 6)*(5.0*pow(c1, 2) - 3.0) + 14.0*pow(c0, 4)*(195.0*pow(c1, 4) - 286.0*pow(c1, 2) + 99.0) + 140.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2)*(5.0*pow(c1, 2) - 3.0) + 35.0*pow(pow(c1, 2) - 1.0, 4)); case 11: return 7.44047619047619e-5*c1*(2431.0*pow(c0, 10) + 715.0*pow(c0, 8)*(17.0*pow(c1, 2) - 9.0) + 182.0*pow(c0, 6)*(85.0*pow(c1, 4) - 110.0*pow(c1, 2) + 33.0) + 70.0*pow(c0, 4)*(85.0*pow(c1, 6) - 195.0*pow(c1, 4) + 143.0*pow(c1, 2) - 33.0) + 35.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 3)*(17.0*pow(c1, 2) - 9.0) + 7.0*pow(pow(c1, 2) - 1.0, 5)); case 12: return 8.26719576719577e-6*c0*c1*(37791.0*pow(c0, 10) + 12155.0*pow(c0, 8)*(19.0*pow(c1, 2) - 9.0) + 1170.0*pow(c0, 6)*(323.0*pow(c1, 4) - 374.0*pow(c1, 2) + 99.0) + 126.0*pow(c0, 4)*(1615.0*pow(c1, 6) - 3315.0*pow(c1, 4) + 2145.0*pow(c1, 2) - 429.0) + 105.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2)*(323.0*pow(c1, 4) - 374.0*pow(c1, 2) + 99.0) + 63.0*pow(pow(c1, 2) - 1.0, 4)*(19.0*pow(c1, 2) - 9.0)); case 13: return 6.20039682539683e-6*c1*(88179.0*pow(c0, 12) + 92378.0*pow(c0, 10)*(7.0*pow(c1, 2) - 3.0) + 3315.0*pow(c0, 8)*(399.0*pow(c1, 4) - 418.0*pow(c1, 2) + 99.0) + 420.0*pow(c0, 6)*(2261.0*pow(c1, 6) - 4199.0*pow(c1, 4) + 2431.0*pow(c1, 2) - 429.0) + 105.0*pow(c0, 4)*(2261.0*pow(c1, 8) - 6460.0*pow(c1, 6) + 6630.0*pow(c1, 4) - 2860.0*pow(c1, 2) + 429.0) + 42.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 3)*(399.0*pow(c1, 4) - 418.0*pow(c1, 2) + 99.0) + 21.0*pow(pow(c1, 2) - 1.0, 5)*(7.0*pow(c1, 2) - 3.0)); case 14: return 6.20039682539683e-6*c0*c1*(156009.0*pow(c0, 12) + 58786.0*pow(c0, 10)*(23.0*pow(c1, 2) - 9.0) + 20995.0*pow(c0, 8)*(161.0*pow(c1, 4) - 154.0*pow(c1, 2) + 33.0) + 1020.0*pow(c0, 6)*(3059.0*pow(c1, 6) - 5187.0*pow(c1, 4) + 2717.0*pow(c1, 2) - 429.0) + 21.0*pow(c0, 4)*(52003.0*pow(c1, 8) - 135660.0*pow(c1, 6) + 125970.0*pow(c1, 4) - 48620.0*pow(c1, 2) + 6435.0) + 42.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2)*(3059.0*pow(c1, 6) - 5187.0*pow(c1, 4) + 2717.0*pow(c1, 2) - 429.0) + 21.0*pow(pow(c1, 2) - 1.0, 4)*(161.0*pow(c1, 4) - 154.0*pow(c1, 2) + 33.0)); case 15: return 1.03339947089947e-6*c1*(1671525.0*pow(c0, 14) + 676039.0*pow(c0, 12)*(25.0*pow(c1, 2) - 9.0) + 88179.0*pow(c0, 10)*(575.0*pow(c1, 4) - 506.0*pow(c1, 2) + 99.0) + 14535.0*pow(c0, 8)*(4025.0*pow(c1, 6) - 6279.0*pow(c1, 4) + 3003.0*pow(c1, 2) - 429.0) + 1785.0*pow(c0, 6)*(15295.0*pow(c1, 8) - 36708.0*pow(c1, 6) + 31122.0*pow(c1, 4) - 10868.0*pow(c1, 2) + 1287.0) + 315.0*pow(c0, 4)*(15295.0*pow(c1, 10) - 52003.0*pow(c1, 8) + 67830.0*pow(c1, 6) - 41990.0*pow(c1, 4) + 12155.0*pow(c1, 2) - 1287.0) + 63.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 3)*(4025.0*pow(c1, 6) - 6279.0*pow(c1, 4) + 3003.0*pow(c1, 2) - 429.0) + 3.0*pow(pow(c1, 2) - 1.0, 5)*(575.0*pow(c1, 4) - 506.0*pow(c1, 2) + 99.0)); case 16: return 2.81836219336219e-7*c0*c1*(11032065.0*pow(c0, 14) + 42902475.0*pow(c0, 12)*(3.0*pow(c1, 2) - 1.0) + 676039.0*pow(c0, 10)*(675.0*pow(c1, 4) - 550.0*pow(c1, 2) + 99.0) + 124355.0*pow(c0, 8)*(5175.0*pow(c1, 6) - 7475.0*pow(c1, 4) + 3289.0*pow(c1, 2) - 429.0) + 53295.0*pow(c0, 6)*(7245.0*pow(c1, 8) - 16100.0*pow(c1, 6) + 12558.0*pow(c1, 4) - 4004.0*pow(c1, 2) + 429.0) + 231.0*pow(c0, 4)*(412965.0*pow(c1, 10) - 1300075.0*pow(c1, 8) + 1560090.0*pow(c1, 6) - 881790.0*pow(c1, 4) + 230945.0*pow(c1, 2) - 21879.0) + 1155.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2)*(7245.0*pow(c1, 8) - 16100.0*pow(c1, 6) + 12558.0*pow(c1, 4) - 4004.0*pow(c1, 2) + 429.0) + 33.0*pow(pow(c1, 2) - 1.0, 4)*(5175.0*pow(c1, 6) - 7475.0*pow(c1, 4) + 3289.0*pow(c1, 2) - 429.0)); case 17: return 1.76147637085137e-8*c1*(319929885.0*pow(c0, 16) + 147094200.0*pow(c0, 14)*(29.0*pow(c1, 2) - 9.0) + 202811700.0*pow(c0, 12)*(87.0*pow(c1, 4) - 66.0*pow(c1, 2) + 11.0) + 4576264.0*pow(c0, 10)*(6525.0*pow(c1, 6) - 8775.0*pow(c1, 4) + 3575.0*pow(c1, 2) - 429.0) + 746130.0*pow(c0, 8)*(30015.0*pow(c1, 8) - 62100.0*pow(c1, 6) + 44850.0*pow(c1, 4) - 13156.0*pow(c1, 2) + 1287.0) + 35112.0*pow(c0, 6)*(210105.0*pow(c1, 10) - 615825.0*pow(c1, 8) + 684250.0*pow(c1, 6) - 355810.0*pow(c1, 4) + 85085.0*pow(c1, 2) - 7293.0) + 4620.0*pow(c0, 4)*(210105.0*pow(c1, 12) - 825930.0*pow(c1, 10) + 1300075.0*pow(c1, 8) - 1040060.0*pow(c1, 6) + 440895.0*pow(c1, 4) - 92378.0*pow(c1, 2) + 7293.0) + 1320.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 3)*(30015.0*pow(c1, 8) - 62100.0*pow(c1, 6) + 44850.0*pow(c1, 4) - 13156.0*pow(c1, 2) + 1287.0) + 33.0*pow(pow(c1, 2) - 1.0, 5)*(6525.0*pow(c1, 6) - 8775.0*pow(c1, 4) + 3575.0*pow(c1, 2) - 429.0)); case 18: return 5.8715879028379e-9*c0*c1*(1750204665.0*pow(c0, 16) + 853146360.0*pow(c0, 14)*(31.0*pow(c1, 2) - 9.0) + 140408100.0*pow(c0, 12)*(899.0*pow(c1, 4) - 638.0*pow(c1, 2) + 99.0) + 93605400.0*pow(c0, 10)*(2697.0*pow(c1, 6) - 3393.0*pow(c1, 4) + 1287.0*pow(c1, 2) - 143.0) + 5720330.0*pow(c0, 8)*(40455.0*pow(c1, 8) - 78300.0*pow(c1, 6) + 52650.0*pow(c1, 4) - 14300.0*pow(c1, 2) + 1287.0) + 105336.0*pow(c0, 6)*(930465.0*pow(c1, 10) - 2551275.0*pow(c1, 8) + 2639250.0*pow(c1, 6) - 1270750.0*pow(c1, 4) + 279565.0*pow(c1, 2) - 21879.0) + 2772.0*pow(c0, 4)*(6513255.0*pow(c1, 12) - 23951970.0*pow(c1, 10) + 35102025.0*pow(c1, 8) - 26001500.0*pow(c1, 6) + 10140585.0*pow(c1, 4) - 1939938.0*pow(c1, 2) + 138567.0) + 1320.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2)*(930465.0*pow(c1, 10) - 2551275.0*pow(c1, 8) + 2639250.0*pow(c1, 6) - 1270750.0*pow(c1, 4) + 279565.0*pow(c1, 2) - 21879.0) + 495.0*pow(pow(c1, 2) - 1.0, 4)*(40455.0*pow(c1, 8) - 78300.0*pow(c1, 6) + 52650.0*pow(c1, 4) - 14300.0*pow(c1, 2) + 1287.0)); case 19: return 2.64221455627706e-8*c1*(713046345.0*pow(c0, 18) + 1101980715.0*pow(c0, 16)*(11.0*pow(c1, 2) - 3.0) + 710955300.0*pow(c0, 14)*(93.0*pow(c1, 4) - 62.0*pow(c1, 2) + 9.0) + 15600900.0*pow(c0, 12)*(9889.0*pow(c1, 6) - 11687.0*pow(c1, 4) + 4147.0*pow(c1, 2) - 429.0) + 5720330.0*pow(c0, 10)*(29667.0*pow(c1, 8) - 53940.0*pow(c1, 6) + 33930.0*pow(c1, 4) - 8580.0*pow(c1, 2) + 715.0) + 67298.0*pow(c0, 8)*(1335015.0*pow(c1, 10) - 3438675.0*pow(c1, 8) + 3327750.0*pow(c1, 6) - 1491750.0*pow(c1, 4) + 303875.0*pow(c1, 2) - 21879.0) + 2156.0*pow(c0, 6)*(10235115.0*pow(c1, 12) - 35357670.0*pow(c1, 10) + 48474225.0*pow(c1, 8) - 33430500.0*pow(c1, 6) + 12072125.0*pow(c1, 4) - 2124694.0*pow(c1, 2) + 138567.0) + 220.0*pow(c0, 4)*(10235115.0*pow(c1, 14) - 45592785.0*pow(c1, 12) + 83831895.0*pow(c1, 10) - 81904725.0*pow(c1, 8) + 45502625.0*pow(c1, 6) - 14196819.0*pow(c1, 4) + 2263261.0*pow(c1, 2) - 138567.0) + 55.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 3)*(1335015.0*pow(c1, 10) - 3438675.0*pow(c1, 8) + 3327750.0*pow(c1, 6) - 1491750.0*pow(c1, 4) + 303875.0*pow(c1, 2) - 21879.0) + 11.0*pow(pow(c1, 2) - 1.0, 5)*(29667.0*pow(c1, 8) - 53940.0*pow(c1, 6) + 33930.0*pow(c1, 4) - 8580.0*pow(c1, 2) + 715.0)); case 20: return 2.03247273559774e-9*c0*c1*(17075583525.0*pow(c0, 18) + 9269602485.0*pow(c0, 16)*(35.0*pow(c1, 2) - 9.0) + 57302997180.0*pow(c0, 14)*(35.0*pow(c1, 4) - 22.0*pow(c1, 2) + 3.0) + 4976687100.0*pow(c0, 12)*(1085.0*pow(c1, 6) - 1209.0*pow(c1, 4) + 403.0*pow(c1, 2) - 39.0) + 101405850.0*pow(c0, 10)*(69223.0*pow(c1, 8) - 118668.0*pow(c1, 6) + 70122.0*pow(c1, 4) - 16588.0*pow(c1, 2) + 1287.0) + 21871850.0*pow(c0, 8)*(207669.0*pow(c1, 10) - 504339.0*pow(c1, 8) + 458490.0*pow(c1, 6) - 192270.0*pow(c1, 4) + 36465.0*pow(c1, 2) - 2431.0) + 92092.0*pow(c0, 6)*(15575175.0*pow(c1, 12) - 50730570.0*pow(c1, 10) + 65334825.0*pow(c1, 8) - 42151500.0*pow(c1, 6) + 14171625.0*pow(c1, 4) - 2309450.0*pow(c1, 2) + 138567.0) + 4004.0*pow(c0, 4)*(51175575.0*pow(c1, 14) - 214937415.0*pow(c1, 12) + 371255535.0*pow(c1, 10) - 339319575.0*pow(c1, 8) + 175510125.0*pow(c1, 6) - 50702925.0*pow(c1, 4) + 7436429.0*pow(c1, 2) - 415701.0) + 715.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2)*(15575175.0*pow(c1, 12) - 50730570.0*pow(c1, 10) + 65334825.0*pow(c1, 8) - 42151500.0*pow(c1, 6) + 14171625.0*pow(c1, 4) - 2309450.0*pow(c1, 2) + 138567.0) + 715.0*pow(pow(c1, 2) - 1.0, 4)*(207669.0*pow(c1, 10) - 504339.0*pow(c1, 8) + 458490.0*pow(c1, 6) - 192270.0*pow(c1, 4) + 36465.0*pow(c1, 2) - 2431.0)); case 21: return 6.21033335877086e-10*c1*(103384896615.0*pow(c0, 20) + 58988379450.0*pow(c0, 18)*(37.0*pow(c1, 2) - 9.0) + 11721067605.0*pow(c0, 16)*(1295.0*pow(c1, 4) - 770.0*pow(c1, 2) + 99.0) + 36064823400.0*pow(c0, 14)*(1295.0*pow(c1, 6) - 1365.0*pow(c1, 4) + 429.0*pow(c1, 2) - 39.0) + 8822308950.0*pow(c0, 12)*(8029.0*pow(c1, 8) - 13020.0*pow(c1, 6) + 7254.0*pow(c1, 4) - 1612.0*pow(c1, 2) + 117.0) + 21474180.0*pow(c0, 10)*(2561251.0*pow(c1, 10) - 5883955.0*pow(c1, 8) + 5043390.0*pow(c1, 6) - 1986790.0*pow(c1, 4) + 352495.0*pow(c1, 2) - 21879.0) + 2825550.0*pow(c0, 8)*(7683753.0*pow(c1, 12) - 23674266.0*pow(c1, 10) + 28747323.0*pow(c1, 8) - 17422620.0*pow(c1, 6) + 5479695.0*pow(c1, 4) - 831402.0*pow(c1, 2) + 46189.0) + 50232.0*pow(c0, 6)*(82325925.0*pow(c1, 14) - 327078675.0*pow(c1, 12) + 532670985.0*pow(c1, 10) - 457343775.0*pow(c1, 8) + 221295375.0*pow(c1, 6) - 59520825.0*pow(c1, 4) + 8083075.0*pow(c1, 2) - 415701.0) + 4095.0*pow(c0, 4)*(82325925.0*pow(c1, 16) - 409404600.0*pow(c1, 14) + 859749660.0*pow(c1, 12) - 990014760.0*pow(c1, 10) + 678639150.0*pow(c1, 8) - 280816200.0*pow(c1, 6) + 67603900.0*pow(c1, 4) - 8498776.0*pow(c1, 2) + 415701.0) + 1170.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 3)*(7683753.0*pow(c1, 12) - 23674266.0*pow(c1, 10) + 28747323.0*pow(c1, 8) - 17422620.0*pow(c1, 6) + 5479695.0*pow(c1, 4) - 831402.0*pow(c1, 2) + 46189.0) + 13.0*pow(pow(c1, 2) - 1.0, 5)*(2561251.0*pow(c1, 10) - 5883955.0*pow(c1, 8) + 5043390.0*pow(c1, 6) - 1986790.0*pow(c1, 4) + 352495.0*pow(c1, 2) - 21879.0)); case 22: return 1.86310000763126e-9*c0*c1*(64000174095.0*pow(c0, 20) + 114872107350.0*pow(c0, 18)*(13.0*pow(c1, 2) - 3.0) + 8043869925.0*pow(c0, 16)*(1443.0*pow(c1, 4) - 814.0*pow(c1, 2) + 99.0) + 31256180280.0*pow(c0, 14)*(1295.0*pow(c1, 6) - 1295.0*pow(c1, 4) + 385.0*pow(c1, 2) - 33.0) + 21037813650.0*pow(c0, 12)*(3367.0*pow(c1, 8) - 5180.0*pow(c1, 6) + 2730.0*pow(c1, 4) - 572.0*pow(c1, 2) + 39.0) + 207583740.0*pow(c0, 10)*(313131.0*pow(c1, 10) - 682465.0*pow(c1, 8) + 553350.0*pow(c1, 6) - 205530.0*pow(c1, 4) + 34255.0*pow(c1, 2) - 1989.0) + 941850.0*pow(c0, 8)*(33296263.0*pow(c1, 12) - 97327538.0*pow(c1, 10) + 111795145.0*pow(c1, 8) - 63882940.0*pow(c1, 6) + 18874505.0*pow(c1, 4) - 2678962.0*pow(c1, 2) + 138567.0) + 538200.0*pow(c0, 6)*(14269827.0*pow(c1, 14) - 53786271.0*pow(c1, 12) + 82859931.0*pow(c1, 10) - 67077087.0*pow(c1, 8) + 30489585.0*pow(c1, 6) - 7671573.0*pow(c1, 4) + 969969.0*pow(c1, 2) - 46189.0) + 273.0*pow(c0, 4)*(3210711075.0*pow(c1, 16) - 15147970200.0*pow(c1, 14) + 30091238100.0*pow(c1, 12) - 32670487080.0*pow(c1, 10) + 21037813650.0*pow(c1, 8) - 8143669800.0*pow(c1, 6) + 1825305300.0*pow(c1, 4) - 212469400.0*pow(c1, 2) + 9561123.0) + 2730.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2)*(14269827.0*pow(c1, 14) - 53786271.0*pow(c1, 12) + 82859931.0*pow(c1, 10) - 67077087.0*pow(c1, 8) + 30489585.0*pow(c1, 6) - 7671573.0*pow(c1, 4) + 969969.0*pow(c1, 2) - 46189.0) + 13.0*pow(pow(c1, 2) - 1.0, 4)*(33296263.0*pow(c1, 12) - 97327538.0*pow(c1, 10) + 111795145.0*pow(c1, 8) - 63882940.0*pow(c1, 6) + 18874505.0*pow(c1, 4) - 2678962.0*pow(c1, 2) + 138567.0)); case 23: return 1.21101500496032e-8*c1*(18349700265.0*pow(c0, 22) + 11487210735.0*pow(c0, 20)*(41.0*pow(c1, 2) - 9.0) + 7631363775.0*pow(c0, 18)*(533.0*pow(c1, 4) - 286.0*pow(c1, 2) + 33.0) + 10518906825.0*pow(c0, 16)*(1517.0*pow(c1, 6) - 1443.0*pow(c1, 4) + 407.0*pow(c1, 2) - 33.0) + 3005401950.0*pow(c0, 14)*(10619.0*pow(c1, 8) - 15540.0*pow(c1, 6) + 7770.0*pow(c1, 4) - 1540.0*pow(c1, 2) + 99.0) + 247503690.0*pow(c0, 12)*(138047.0*pow(c1, 10) - 286195.0*pow(c1, 8) + 220150.0*pow(c1, 6) - 77350.0*pow(c1, 4) + 12155.0*pow(c1, 2) - 663.0) + 4622310.0*pow(c0, 10)*(4279457.0*pow(c1, 12) - 11898978.0*pow(c1, 10) + 12966835.0*pow(c1, 8) - 7009100.0*pow(c1, 6) + 1952535.0*pow(c1, 4) - 260338.0*pow(c1, 2) + 12597.0) + 31050.0*pow(c0, 8)*(195020969.0*pow(c1, 14) - 699221523.0*pow(c1, 12) + 1021939149.0*pow(c1, 10) - 782566015.0*pow(c1, 8) + 335385435.0*pow(c1, 6) - 79272921.0*pow(c1, 4) + 9376367.0*pow(c1, 2) - 415701.0) + 1575.0*pow(c0, 6)*(585062907.0*pow(c1, 16) - 2625648168.0*pow(c1, 14) + 4948336932.0*pow(c1, 12) - 5082075768.0*pow(c1, 10) + 3085546002.0*pow(c1, 8) - 1122016728.0*pow(c1, 6) + 235261572.0*pow(c1, 4) - 25496328.0*pow(c1, 2) + 1062347.0) + 105.0*pow(c0, 4)*(585062907.0*pow(c1, 18) - 3210711075.0*pow(c1, 16) + 7573985100.0*pow(c1, 14) - 10030412700.0*pow(c1, 12) + 8167621770.0*pow(c1, 10) - 4207562730.0*pow(c1, 8) + 1357278300.0*pow(c1, 6) - 260757900.0*pow(c1, 4) + 26558675.0*pow(c1, 2) - 1062347.0) + 7.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 3)*(195020969.0*pow(c1, 14) - 699221523.0*pow(c1, 12) + 1021939149.0*pow(c1, 10) - 782566015.0*pow(c1, 8) + 335385435.0*pow(c1, 6) - 79272921.0*pow(c1, 4) + 9376367.0*pow(c1, 2) - 415701.0) + pow(pow(c1, 2) - 1.0, 5)*(4279457.0*pow(c1, 12) - 11898978.0*pow(c1, 10) + 12966835.0*pow(c1, 8) - 7009100.0*pow(c1, 6) + 1952535.0*pow(c1, 4) - 260338.0*pow(c1, 2) + 12597.0)); case 24: return 4.03671668320106e-9*c0*c1*(102917884095.0*pow(c0, 22) + 67282234305.0*pow(c0, 20)*(43.0*pow(c1, 2) - 9.0) + 15664378275.0*pow(c0, 18)*(1763.0*pow(c1, 4) - 902.0*pow(c1, 2) + 99.0) + 68682273975.0*pow(c0, 16)*(1763.0*pow(c1, 6) - 1599.0*pow(c1, 4) + 429.0*pow(c1, 2) - 33.0) + 4207562730.0*pow(c0, 14)*(65231.0*pow(c1, 8) - 91020.0*pow(c1, 6) + 43290.0*pow(c1, 4) - 8140.0*pow(c1, 2) + 495.0) + 742511070.0*pow(c0, 12)*(456617.0*pow(c1, 10) - 902615.0*pow(c1, 8) + 660450.0*pow(c1, 6) - 220150.0*pow(c1, 4) + 32725.0*pow(c1, 2) - 1683.0) + 39079530.0*pow(c0, 10)*(5936021.0*pow(c1, 12) - 15737358.0*pow(c1, 10) + 16313115.0*pow(c1, 8) - 8365700.0*pow(c1, 6) + 2204475.0*pow(c1, 4) - 277134.0*pow(c1, 2) + 12597.0) + 3301650.0*pow(c0, 8)*(26288093.0*pow(c1, 14) - 89868597.0*pow(c1, 12) + 124939269.0*pow(c1, 10) - 90767845.0*pow(c1, 8) + 36797775.0*pow(c1, 6) - 8200647.0*pow(c1, 4) + 911183.0*pow(c1, 2) - 37791.0) + 2025.0*pow(c0, 6)*(8385901667.0*pow(c1, 16) - 35883858296.0*pow(c1, 14) + 64328380116.0*pow(c1, 12) - 62678934472.0*pow(c1, 10) + 35998036690.0*pow(c1, 8) - 12342184008.0*pow(c1, 6) + 2431036244.0*pow(c1, 4) - 246464504.0*pow(c1, 2) + 9561123.0) + 63.0*pow(c0, 4)*(25157705001.0*pow(c1, 18) - 131639154075.0*pow(c1, 16) + 295385418900.0*pow(c1, 14) - 371125269900.0*pow(c1, 12) + 285866761950.0*pow(c1, 10) - 138849570090.0*pow(c1, 8) + 42075627300.0*pow(c1, 6) - 7561979100.0*pow(c1, 4) + 717084225.0*pow(c1, 2) - 26558675.0) + 7.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2)*(8385901667.0*pow(c1, 16) - 35883858296.0*pow(c1, 14) + 64328380116.0*pow(c1, 12) - 62678934472.0*pow(c1, 10) + 35998036690.0*pow(c1, 8) - 12342184008.0*pow(c1, 6) + 2431036244.0*pow(c1, 4) - 246464504.0*pow(c1, 2) + 9561123.0) + 21.0*pow(pow(c1, 2) - 1.0, 4)*(26288093.0*pow(c1, 14) - 89868597.0*pow(c1, 12) + 124939269.0*pow(c1, 10) - 90767845.0*pow(c1, 8) + 36797775.0*pow(c1, 6) - 8200647.0*pow(c1, 4) + 911183.0*pow(c1, 2) - 37791.0)); case 25: return 1.5137687562004e-9*c1*(514589420475.0*pow(c0, 24) + 3156148445580.0*pow(c0, 22)*(5.0*pow(c1, 2) - 1.0) + 85631934570.0*pow(c0, 20)*(1935.0*pow(c1, 4) - 946.0*pow(c1, 2) + 99.0) + 30525455100.0*pow(c0, 18)*(26445.0*pow(c1, 6) - 22919.0*pow(c1, 4) + 5863.0*pow(c1, 2) - 429.0) + 389199552525.0*pow(c0, 16)*(5289.0*pow(c1, 8) - 7052.0*pow(c1, 6) + 3198.0*pow(c1, 4) - 572.0*pow(c1, 2) + 33.0) + 4950073800.0*pow(c0, 14)*(587079.0*pow(c1, 10) - 1108927.0*pow(c1, 8) + 773670.0*pow(c1, 6) - 245310.0*pow(c1, 4) + 34595.0*pow(c1, 2) - 1683.0) + 338689260.0*pow(c0, 12)*(6849255.0*pow(c1, 12) - 17351446.0*pow(c1, 10) + 17149685.0*pow(c1, 8) - 8365700.0*pow(c1, 6) + 2091425.0*pow(c1, 4) - 248710.0*pow(c1, 2) + 10659.0) + 81880920.0*pow(c0, 10)*(12720045.0*pow(c1, 14) - 41552147.0*pow(c1, 12) + 55080753.0*pow(c1, 10) - 38063935.0*pow(c1, 8) + 14639975.0*pow(c1, 6) - 3086265.0*pow(c1, 4) + 323323.0*pow(c1, 2) - 12597.0) + 215325.0*pow(c0, 8)*(1182964185.0*pow(c1, 16) - 4837009112.0*pow(c1, 14) + 8267910924.0*pow(c1, 12) - 7662941832.0*pow(c1, 10) + 4175320870.0*pow(c1, 8) - 1354158120.0*pow(c1, 6) + 251486508.0*pow(c1, 4) - 23951096.0*pow(c1, 2) + 869193.0) + 3780.0*pow(c0, 6)*(8385901667.0*pow(c1, 18) - 41929508335.0*pow(c1, 16) + 89709645740.0*pow(c1, 14) - 107213966860.0*pow(c1, 12) + 78348668090.0*pow(c1, 10) - 35998036690.0*pow(c1, 8) + 10285153340.0*pow(c1, 6) - 1736454460.0*pow(c1, 4) + 154040315.0*pow(c1, 2) - 5311735.0) + 210.0*pow(c0, 4)*(8385901667.0*pow(c1, 20) - 50315410002.0*pow(c1, 18) + 131639154075.0*pow(c1, 16) - 196923612600.0*pow(c1, 14) + 185562634950.0*pow(c1, 12) - 114346704780.0*pow(c1, 10) + 46283190030.0*pow(c1, 8) - 12021607800.0*pow(c1, 6) + 1890494775.0*pow(c1, 4) - 159352050.0*pow(c1, 2) + 5311735.0) + 28.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 3)*(1182964185.0*pow(c1, 16) - 4837009112.0*pow(c1, 14) + 8267910924.0*pow(c1, 12) - 7662941832.0*pow(c1, 10) + 4175320870.0*pow(c1, 8) - 1354158120.0*pow(c1, 6) + 251486508.0*pow(c1, 4) - 23951096.0*pow(c1, 2) + 869193.0) + 7.0*pow(pow(c1, 2) - 1.0, 5)*(12720045.0*pow(c1, 14) - 41552147.0*pow(c1, 12) + 55080753.0*pow(c1, 10) - 38063935.0*pow(c1, 8) + 14639975.0*pow(c1, 6) - 3086265.0*pow(c1, 4) + 323323.0*pow(c1, 2) - 12597.0)); case 26: return 1.5137687562004e-9*c0*c1*(967428110493.0*pow(c0, 24) + 686119227300.0*pow(c0, 22)*(47.0*pow(c1, 2) - 9.0) + 1578074222790.0*pow(c0, 20)*(235.0*pow(c1, 4) - 110.0*pow(c1, 2) + 11.0) + 65870718900.0*pow(c0, 18)*(30315.0*pow(c1, 6) - 25155.0*pow(c1, 4) + 6149.0*pow(c1, 2) - 429.0) + 22894091325.0*pow(c0, 16)*(248583.0*pow(c1, 8) - 317340.0*pow(c1, 6) + 137514.0*pow(c1, 4) - 23452.0*pow(c1, 2) + 1287.0) + 36630546120.0*pow(c0, 14)*(248583.0*pow(c1, 10) - 449565.0*pow(c1, 8) + 299710.0*pow(c1, 6) - 90610.0*pow(c1, 4) + 12155.0*pow(c1, 2) - 561.0) + 911855700.0*pow(c0, 12)*(9197571.0*pow(c1, 12) - 22309002.0*pow(c1, 10) + 21069613.0*pow(c1, 8) - 9799820.0*pow(c1, 6) + 2330445.0*pow(c1, 4) - 262922.0*pow(c1, 2) + 10659.0) + 96768360.0*pow(c0, 10)*(45987855.0*pow(c1, 14) - 143834355.0*pow(c1, 12) + 182190183.0*pow(c1, 10) - 120047795.0*pow(c1, 8) + 43919925.0*pow(c1, 6) - 8783985.0*pow(c1, 4) + 870485.0*pow(c1, 2) - 31977.0) + 2225025.0*pow(c0, 8)*(597842115.0*pow(c1, 16) - 2340488280.0*pow(c1, 14) + 3822797524.0*pow(c1, 12) - 3378286184.0*pow(c1, 10) + 1750941010.0*pow(c1, 8) - 538751080.0*pow(c1, 6) + 94645460.0*pow(c1, 4) - 8498776.0*pow(c1, 2) + 289731.0) + 172260.0*pow(c0, 6)*(1235540371.0*pow(c1, 18) - 5914820925.0*pow(c1, 16) + 12092522780.0*pow(c1, 14) - 13779851540.0*pow(c1, 12) + 9578677290.0*pow(c1, 10) - 4175320870.0*pow(c1, 8) + 1128465100.0*pow(c1, 6) - 179633220.0*pow(c1, 4) + 14969435.0*pow(c1, 2) - 482885.0) + 42.0*pow(c0, 4)*(394137378349.0*pow(c1, 20) - 2264193450090.0*pow(c1, 18) + 5660483625225.0*pow(c1, 16) - 8073868116600.0*pow(c1, 14) + 7236942763050.0*pow(c1, 12) - 4230828076860.0*pow(c1, 10) + 1619911651050.0*pow(c1, 8) - 396713057400.0*pow(c1, 6) + 58605338025.0*pow(c1, 4) - 4621209450.0*pow(c1, 2) + 143416845.0) + 420.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2)*(1235540371.0*pow(c1, 18) - 5914820925.0*pow(c1, 16) + 12092522780.0*pow(c1, 14) - 13779851540.0*pow(c1, 12) + 9578677290.0*pow(c1, 10) - 4175320870.0*pow(c1, 8) + 1128465100.0*pow(c1, 6) - 179633220.0*pow(c1, 4) + 14969435.0*pow(c1, 2) - 482885.0) + 7.0*pow(pow(c1, 2) - 1.0, 4)*(597842115.0*pow(c1, 16) - 2340488280.0*pow(c1, 14) + 3822797524.0*pow(c1, 12) - 3378286184.0*pow(c1, 10) + 1750941010.0*pow(c1, 8) - 538751080.0*pow(c1, 6) + 94645460.0*pow(c1, 4) - 8498776.0*pow(c1, 2) + 289731.0)); case 27: return 2.29358902454606e-11*c1*(120333173435937.0*pow(c0, 26) + 88680910128525.0*pow(c0, 24)*(49.0*pow(c1, 2) - 9.0) + 23671113341850.0*pow(c0, 22)*(2303.0*pow(c1, 4) - 1034.0*pow(c1, 2) + 99.0) + 28041165035730.0*pow(c0, 20)*(11515.0*pow(c1, 6) - 9165.0*pow(c1, 4) + 2145.0*pow(c1, 2) - 143.0) + 3441745062525.0*pow(c0, 18)*(297087.0*pow(c1, 8) - 363780.0*pow(c1, 6) + 150930.0*pow(c1, 4) - 24596.0*pow(c1, 2) + 1287.0) + 151101002745.0*pow(c0, 16)*(12180567.0*pow(c1, 10) - 21129555.0*pow(c1, 8) + 13486950.0*pow(c1, 6) - 3896230.0*pow(c1, 4) + 498355.0*pow(c1, 2) - 21879.0) + 159053687100.0*pow(c0, 14)*(12180567.0*pow(c1, 12) - 28338462.0*pow(c1, 10) + 25625205.0*pow(c1, 8) - 11388980.0*pow(c1, 6) + 2582385.0*pow(c1, 4) - 277134.0*pow(c1, 2) + 10659.0) + 18627909300.0*pow(c0, 12)*(64382997.0*pow(c1, 14) - 193148991.0*pow(c1, 12) + 234244521.0*pow(c1, 10) - 147487291.0*pow(c1, 8) + 51449055.0*pow(c1, 6) - 9787869.0*pow(c1, 4) + 920227.0*pow(c1, 2) - 31977.0) + 190907145.0*pow(c0, 10)*(2253404895.0*pow(c1, 16) - 8461765320.0*pow(c1, 14) + 13232760660.0*pow(c1, 12) - 11174331224.0*pow(c1, 10) + 5522198570.0*pow(c1, 8) - 1616253240.0*pow(c1, 6) + 269375540.0*pow(c1, 4) - 22881320.0*pow(c1, 2) + 735471.0) + 44055495.0*pow(c0, 8)*(1952950909.0*pow(c1, 18) - 8967631725.0*pow(c1, 16) + 17553662100.0*pow(c1, 14) - 19113987620.0*pow(c1, 12) + 12668573190.0*pow(c1, 10) - 5252823030.0*pow(c1, 8) + 1346877700.0*pow(c1, 6) - 202811700.0*pow(c1, 4) + 15935205.0*pow(c1, 2) - 482885.0) + 147378.0*pow(c0, 6)*(60541478179.0*pow(c1, 20) - 333595900170.0*pow(c1, 18) + 798500824875.0*pow(c1, 16) - 1088327050200.0*pow(c1, 14) + 930139978950.0*pow(c1, 12) - 517248573660.0*pow(c1, 10) + 187889439150.0*pow(c1, 8) - 43526511000.0*pow(c1, 6) + 6062621175.0*pow(c1, 4) - 449083050.0*pow(c1, 2) + 13037895.0) + 6930.0*pow(c0, 4)*(60541478179.0*pow(c1, 22) - 394137378349.0*pow(c1, 20) + 1132096725045.0*pow(c1, 18) - 1886827875075.0*pow(c1, 16) + 2018467029150.0*pow(c1, 14) - 1447388552610.0*pow(c1, 12) + 705138012810.0*pow(c1, 10) - 231415950150.0*pow(c1, 8) + 49589132175.0*pow(c1, 6) - 6511704225.0*pow(c1, 4) + 462120945.0*pow(c1, 2) - 13037895.0) + 3465.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 3)*(1952950909.0*pow(c1, 18) - 8967631725.0*pow(c1, 16) + 17553662100.0*pow(c1, 14) - 19113987620.0*pow(c1, 12) + 12668573190.0*pow(c1, 10) - 5252823030.0*pow(c1, 8) + 1346877700.0*pow(c1, 6) - 202811700.0*pow(c1, 4) + 15935205.0*pow(c1, 2) - 482885.0) + 7.0*pow(pow(c1, 2) - 1.0, 5)*(2253404895.0*pow(c1, 16) - 8461765320.0*pow(c1, 14) + 13232760660.0*pow(c1, 12) - 11174331224.0*pow(c1, 10) + 5522198570.0*pow(c1, 8) - 1616253240.0*pow(c1, 6) + 269375540.0*pow(c1, 4) - 22881320.0*pow(c1, 2) + 735471.0)); case 28: return 2.06423012209145e-10*c0*c1*(25255110474209.0*pow(c0, 26) + 57938194617303.0*pow(c0, 24)*(17.0*pow(c1, 2) - 3.0) + 5374600613850.0*pow(c0, 22)*(2499.0*pow(c1, 4) - 1078.0*pow(c1, 2) + 99.0) + 2225489288550.0*pow(c0, 20)*(39151.0*pow(c1, 6) - 29939.0*pow(c1, 4) + 6721.0*pow(c1, 2) - 429.0) + 7789212509925.0*pow(c0, 18)*(39151.0*pow(c1, 8) - 46060.0*pow(c1, 6) + 18330.0*pow(c1, 4) - 2860.0*pow(c1, 2) + 143.0) + 688349012505.0*pow(c0, 16)*(891261.0*pow(c1, 10) - 1485435.0*pow(c1, 8) + 909450.0*pow(c1, 6) - 251550.0*pow(c1, 4) + 30745.0*pow(c1, 2) - 1287.0) + 3534526380.0*pow(c0, 14)*(207069639.0*pow(c1, 12) - 462861546.0*pow(c1, 10) + 401461545.0*pow(c1, 8) - 170834700.0*pow(c1, 6) + 37014185.0*pow(c1, 4) - 3787498.0*pow(c1, 2) + 138567.0) + 17672631900.0*pow(c0, 12)*(29581377.0*pow(c1, 14) - 85263969.0*pow(c1, 12) + 99184617.0*pow(c1, 10) - 59792145.0*pow(c1, 8) + 19930715.0*pow(c1, 6) - 3615339.0*pow(c1, 4) + 323323.0*pow(c1, 2) - 10659.0) + 67492425.0*pow(c0, 10)*(3283532847.0*pow(c1, 16) - 11846471448.0*pow(c1, 14) + 17769707172.0*pow(c1, 12) - 14366997288.0*pow(c1, 10) + 6784415386.0*pow(c1, 8) - 1893325224.0*pow(c1, 6) + 300161316.0*pow(c1, 4) - 24188824.0*pow(c1, 2) + 735471.0) + 21211905.0*pow(c0, 8)*(2553858881.0*pow(c1, 18) - 11267024475.0*pow(c1, 16) + 21154413300.0*pow(c1, 14) - 22054601100.0*pow(c1, 12) + 13967914030.0*pow(c1, 10) - 5522198570.0*pow(c1, 8) + 1346877700.0*pow(c1, 6) - 192411100.0*pow(c1, 4) + 14300825.0*pow(c1, 2) - 408595.0) + 217558.0*pow(c0, 6)*(33200165453.0*pow(c1, 20) - 175765581810.0*pow(c1, 18) + 403543427625.0*pow(c1, 16) - 526609863000.0*pow(c1, 14) + 430064721450.0*pow(c1, 12) - 228034317420.0*pow(c1, 10) + 78792345450.0*pow(c1, 8) - 17316999000.0*pow(c1, 6) + 2281631625.0*pow(c1, 4) - 159352050.0*pow(c1, 2) + 4345965.0) + 154.0*pow(c0, 4)*(3087615387129.0*pow(c1, 22) - 19312731539101.0*pow(c1, 20) + 53208546077115.0*pow(c1, 18) - 84907254378375.0*pow(c1, 16) + 86794082253450.0*pow(c1, 14) - 59342930657010.0*pow(c1, 12) + 27500382499590.0*pow(c1, 10) - 8562390155550.0*pow(c1, 8) + 1735619626125.0*pow(c1, 6) - 214886239425.0*pow(c1, 4) + 14325749295.0*pow(c1, 2) - 378098955.0) + 385.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2)*(33200165453.0*pow(c1, 20) - 175765581810.0*pow(c1, 18) + 403543427625.0*pow(c1, 16) - 526609863000.0*pow(c1, 14) + 430064721450.0*pow(c1, 12) - 228034317420.0*pow(c1, 10) + 78792345450.0*pow(c1, 8) - 17316999000.0*pow(c1, 6) + 2281631625.0*pow(c1, 4) - 159352050.0*pow(c1, 2) + 4345965.0) + 35.0*pow(pow(c1, 2) - 1.0, 4)*(2553858881.0*pow(c1, 18) - 11267024475.0*pow(c1, 16) + 21154413300.0*pow(c1, 14) - 22054601100.0*pow(c1, 12) + 13967914030.0*pow(c1, 10) - 5522198570.0*pow(c1, 8) + 1346877700.0*pow(c1, 6) - 192411100.0*pow(c1, 4) + 14300825.0*pow(c1, 2) - 408595.0)); case 29: return 5.16057530522863e-11*c1*(191217265019011.0*pow(c0, 28) + 151530662845254.0*pow(c0, 26)*(53.0*pow(c1, 2) - 9.0) + 131677715039325.0*pow(c0, 24)*(901.0*pow(c1, 4) - 374.0*pow(c1, 2) + 33.0) + 19017817556700.0*pow(c0, 22)*(44149.0*pow(c1, 6) - 32487.0*pow(c1, 4) + 7007.0*pow(c1, 2) - 429.0) + 1557842501985.0*pow(c0, 20)*(2075003.0*pow(c1, 8) - 2349060.0*pow(c1, 6) + 898170.0*pow(c1, 4) - 134420.0*pow(c1, 2) + 6435.0) + 59198015075430.0*pow(c0, 18)*(122059.0*pow(c1, 10) - 195755.0*pow(c1, 8) + 115150.0*pow(c1, 6) - 30550.0*pow(c1, 4) + 3575.0*pow(c1, 2) - 143.0) + 615891221715.0*pow(c0, 16)*(15745611.0*pow(c1, 12) - 33867918.0*pow(c1, 10) + 28223265.0*pow(c1, 8) - 11519700.0*pow(c1, 6) + 2389725.0*pow(c1, 4) - 233662.0*pow(c1, 2) + 8151.0) + 5049323400.0*pow(c0, 14)*(1567812981.0*pow(c1, 14) - 4348462419.0*pow(c1, 12) + 4860046233.0*pow(c1, 10) - 2810230815.0*pow(c1, 8) + 896882175.0*pow(c1, 6) - 155459577.0*pow(c1, 4) + 13256243.0*pow(c1, 2) - 415701.0) + 2497219725.0*pow(c0, 12)*(1567812981.0*pow(c1, 16) - 5442973368.0*pow(c1, 14) + 7844285148.0*pow(c1, 12) - 6083323176.0*pow(c1, 10) + 2750438670.0*pow(c1, 8) - 733450312.0*pow(c1, 6) + 110870396.0*pow(c1, 4) - 8498776.0*pow(c1, 2) + 245157.0) + 59393334.0*pow(c0, 10)*(19336360099.0*pow(c1, 18) - 82088321175.0*pow(c1, 16) + 148080893100.0*pow(c1, 14) - 148080893100.0*pow(c1, 12) + 89793733050.0*pow(c1, 10) - 33922076930.0*pow(c1, 8) + 7888855100.0*pow(c1, 6) - 1072004700.0*pow(c1, 4) + 75590075.0*pow(c1, 2) - 2042975.0) + 1414127.0*pow(c0, 8)*(135354520693.0*pow(c1, 20) - 689541897870.0*pow(c1, 18) + 1521048304125.0*pow(c1, 16) - 1903897197000.0*pow(c1, 14) + 1488685574250.0*pow(c1, 12) - 754267357620.0*pow(c1, 10) + 248498935650.0*pow(c1, 8) - 51950997000.0*pow(c1, 6) + 6493874625.0*pow(c1, 4) - 429024750.0*pow(c1, 2) + 11032065.0) + 9548.0*pow(c0, 6)*(1759608769009.0*pow(c1, 22) - 10590852779507.0*pow(c1, 20) + 28034610298695.0*pow(c1, 18) - 42910117804125.0*pow(c1, 16) + 41997136574250.0*pow(c1, 14) - 27438129228510.0*pow(c1, 12) + 12123824542830.0*pow(c1, 10) - 3590679742650.0*pow(c1, 8) + 690515335125.0*pow(c1, 6) - 80871165375.0*pow(c1, 4) + 5083330395.0*pow(c1, 2) - 126032985.0) + 385.0*pow(c0, 4)*(1759608769009.0*pow(c1, 24) - 12350461548516.0*pow(c1, 22) + 38625463078202.0*pow(c1, 20) - 70944728102820.0*pow(c1, 18) + 84907254378375.0*pow(c1, 16) - 69435265802760.0*pow(c1, 14) + 39561953771340.0*pow(c1, 12) - 15714504285480.0*pow(c1, 10) + 4281195077775.0*pow(c1, 8) - 771386500500.0*pow(c1, 6) + 85954495770.0*pow(c1, 4) - 5209363380.0*pow(c1, 2) + 126032985.0) + 70.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 3)*(135354520693.0*pow(c1, 20) - 689541897870.0*pow(c1, 18) + 1521048304125.0*pow(c1, 16) - 1903897197000.0*pow(c1, 14) + 1488685574250.0*pow(c1, 12) - 754267357620.0*pow(c1, 10) + 248498935650.0*pow(c1, 8) - 51950997000.0*pow(c1, 6) + 6493874625.0*pow(c1, 4) - 429024750.0*pow(c1, 2) + 11032065.0) + pow(pow(c1, 2) - 1.0, 5)*(19336360099.0*pow(c1, 18) - 82088321175.0*pow(c1, 16) + 148080893100.0*pow(c1, 14) - 148080893100.0*pow(c1, 12) + 89793733050.0*pow(c1, 10) - 33922076930.0*pow(c1, 8) + 7888855100.0*pow(c1, 6) - 1072004700.0*pow(c1, 4) + 75590075.0*pow(c1, 2) - 2042975.0)); default: return 0.; } case 6: switch(j) { case 0: return 0.00317460317460317*c0*pow(c1, 2)*y1t; case 1: return 0.000529100529100529*pow(c1, 2)*y1r*(3.0*c0 - 1.0); case 2: return -0.00317460317460317*c0*pow(c1, 2)*y2t; case 3: return 0.000529100529100529*pow(c1, 2)*y2r*(3.0*c0 + 1.0); case 4: return 9.62000962000962e-5*pow(c1, 2)*(33.0*pow(c0, 2) + 3.0*pow(c1, 2) - 11.0); case 5: return 9.62000962000962e-5*c0*pow(c1, 2)*(55.0*pow(c0, 2) + 15.0*pow(c1, 2) - 33.0); case 6: return 1.85000185000185e-6*pow(c1, 2)*(5005.0*pow(c0, 4) + 390.0*pow(c0, 2)*(7.0*pow(c1, 2) - 11.0) + 105.0*pow(c1, 4) - 390.0*pow(c1, 2) + 429.0); case 7: return 1.85000185000185e-6*c0*pow(c1, 2)*(9009.0*pow(c0, 4) + 910.0*pow(c0, 2)*(9.0*pow(c1, 2) - 11.0) + 945.0*pow(c1, 4) - 2730.0*pow(c1, 2) + 2145.0); case 8: return 9.25000925000925e-7*pow(c1, 2)*(33033.0*pow(c0, 6) + 45045.0*pow(c0, 4)*(pow(c1, 2) - 1.0) + 105.0*pow(c0, 2)*(99.0*pow(c1, 4) - 234.0*pow(c1, 2) + 143.0) + 231.0*pow(c1, 6) - 945.0*pow(c1, 4) + 1365.0*pow(c1, 2) - 715.0); case 9: return 9.25000925000925e-7*c0*pow(c1, 2)*(61347.0*pow(c0, 6) + 9009.0*pow(c0, 4)*(13.0*pow(c1, 2) - 11.0) + 45045.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2) + 3003.0*pow(c1, 6) - 10395.0*pow(c1, 4) + 12285.0*pow(c1, 2) - 5005.0); case 10: return 0.000306372549019608*pow(c1, 10) + 0.00138888888888889*pow(c1, 8)*(15.0*pow(c0, 2) - 1.0) + 0.00240384615384615*pow(c1, 6)*(65.0*pow(c0, 4) - 26.0*pow(c0, 2) + 1.0) + 0.00189393939393939*pow(c1, 4)*(143.0*pow(c0, 6) - 143.0*pow(c0, 4) + 33.0*pow(c0, 2) - 1.0) + 1.65343915343915e-5*pow(c1, 2)*(6435.0*pow(c0, 8) - 12012.0*pow(c0, 6) + 6930.0*pow(c0, 4) - 1260.0*pow(c0, 2) + 35.0); case 11: return 1.65343915343915e-5*c0*pow(c1, 2)*(12155.0*pow(c0, 8) + 2340.0*pow(c0, 6)*(17.0*pow(c1, 2) - 11.0) + 126.0*pow(c0, 4)*(255.0*pow(c1, 4) - 390.0*pow(c1, 2) + 143.0) + 420.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2)*(17.0*pow(c1, 2) - 11.0) + 315.0*pow(pow(c1, 2) - 1.0, 4)); case 12: return 8.26719576719577e-6*pow(c1, 2)*(46189.0*pow(c0, 10) + 9945.0*pow(c0, 8)*(19.0*pow(c1, 2) - 11.0) + 630.0*pow(c0, 6)*(323.0*pow(c1, 4) - 442.0*pow(c1, 2) + 143.0) + 210.0*pow(c0, 4)*(323.0*pow(c1, 6) - 765.0*pow(c1, 4) + 585.0*pow(c1, 2) - 143.0) + 315.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 3)*(19.0*pow(c1, 2) - 11.0) + 63.0*pow(pow(c1, 2) - 1.0, 5)); case 13: return 8.26719576719577e-6*c0*pow(c1, 2)*(88179.0*pow(c0, 10) + 20995.0*pow(c0, 8)*(21.0*pow(c1, 2) - 11.0) + 1530.0*pow(c0, 6)*(399.0*pow(c1, 4) - 494.0*pow(c1, 2) + 143.0) + 126.0*pow(c0, 4)*(2261.0*pow(c1, 6) - 4845.0*pow(c1, 4) + 3315.0*pow(c1, 2) - 715.0) + 105.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2)*(399.0*pow(c1, 4) - 494.0*pow(c1, 2) + 143.0) + 63.0*pow(pow(c1, 2) - 1.0, 4)*(21.0*pow(c1, 2) - 11.0)); case 14: return 2.06679894179894e-6*pow(c1, 2)*(676039.0*pow(c0, 12) + 176358.0*pow(c0, 10)*(23.0*pow(c1, 2) - 11.0) + 14535.0*pow(c0, 8)*(483.0*pow(c1, 4) - 546.0*pow(c1, 2) + 143.0) + 1428.0*pow(c0, 6)*(3059.0*pow(c1, 6) - 5985.0*pow(c1, 4) + 3705.0*pow(c1, 2) - 715.0) + 315.0*pow(c0, 4)*(3059.0*pow(c1, 8) - 9044.0*pow(c1, 6) + 9690.0*pow(c1, 4) - 4420.0*pow(c1, 2) + 715.0) + 126.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 3)*(483.0*pow(c1, 4) - 546.0*pow(c1, 2) + 143.0) + 21.0*pow(pow(c1, 2) - 1.0, 5)*(23.0*pow(c1, 2) - 11.0)); case 15: return 1.87890812890813e-7*c0*pow(c1, 2)*(14300825.0*pow(c0, 12) + 4056234.0*pow(c0, 10)*(25.0*pow(c1, 2) - 11.0) + 373065.0*pow(c0, 8)*(575.0*pow(c1, 4) - 598.0*pow(c1, 2) + 143.0) + 213180.0*pow(c0, 6)*(805.0*pow(c1, 6) - 1449.0*pow(c1, 4) + 819.0*pow(c1, 2) - 143.0) + 693.0*pow(c0, 4)*(76475.0*pow(c1, 8) - 208012.0*pow(c1, 6) + 203490.0*pow(c1, 4) - 83980.0*pow(c1, 2) + 12155.0) + 6930.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2)*(805.0*pow(c1, 6) - 1449.0*pow(c1, 4) + 819.0*pow(c1, 2) - 143.0) + 231.0*pow(pow(c1, 2) - 1.0, 4)*(575.0*pow(c1, 4) - 598.0*pow(c1, 2) + 143.0)); case 16: return 9.39454064454064e-8*pow(c1, 2)*(55160325.0*pow(c0, 14) + 16900975.0*pow(c0, 12)*(27.0*pow(c1, 2) - 11.0) + 1716099.0*pow(c0, 10)*(675.0*pow(c1, 4) - 650.0*pow(c1, 2) + 143.0) + 1119195.0*pow(c0, 8)*(1035.0*pow(c1, 6) - 1725.0*pow(c1, 4) + 897.0*pow(c1, 2) - 143.0) + 21945.0*pow(c0, 6)*(21735.0*pow(c1, 8) - 54740.0*pow(c1, 6) + 49266.0*pow(c1, 4) - 18564.0*pow(c1, 2) + 2431.0) + 3465.0*pow(c0, 4)*(21735.0*pow(c1, 10) - 76475.0*pow(c1, 8) + 104006.0*pow(c1, 6) - 67830.0*pow(c1, 4) + 20995.0*pow(c1, 2) - 2431.0) + 3465.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 3)*(1035.0*pow(c1, 6) - 1725.0*pow(c1, 4) + 897.0*pow(c1, 2) - 143.0) + 33.0*pow(pow(c1, 2) - 1.0, 5)*(675.0*pow(c1, 4) - 650.0*pow(c1, 2) + 143.0)); case 17: return 9.39454064454064e-8*c0*pow(c1, 2)*(106643295.0*pow(c0, 14) + 35102025.0*pow(c0, 12)*(29.0*pow(c1, 2) - 11.0) + 3900225.0*pow(c0, 10)*(783.0*pow(c1, 4) - 702.0*pow(c1, 2) + 143.0) + 2860165.0*pow(c0, 8)*(1305.0*pow(c1, 6) - 2025.0*pow(c1, 4) + 975.0*pow(c1, 2) - 143.0) + 65835.0*pow(c0, 6)*(30015.0*pow(c1, 8) - 70380.0*pow(c1, 6) + 58650.0*pow(c1, 4) - 20332.0*pow(c1, 2) + 2431.0) + 693.0*pow(c0, 4)*(630315.0*pow(c1, 10) - 2064825.0*pow(c1, 8) + 2600150.0*pow(c1, 6) - 1560090.0*pow(c1, 4) + 440895.0*pow(c1, 2) - 46189.0) + 1155.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2)*(30015.0*pow(c1, 8) - 70380.0*pow(c1, 6) + 58650.0*pow(c1, 4) - 20332.0*pow(c1, 2) + 2431.0) + 495.0*pow(pow(c1, 2) - 1.0, 4)*(1305.0*pow(c1, 6) - 2025.0*pow(c1, 4) + 975.0*pow(c1, 2) - 143.0)); case 18: return 5.8715879028379e-9*pow(c1, 2)*(3305942145.0*pow(c0, 16) + 1163381400.0*pow(c0, 14)*(31.0*pow(c1, 2) - 11.0) + 140408100.0*pow(c0, 12)*(899.0*pow(c1, 4) - 754.0*pow(c1, 2) + 143.0) + 22881320.0*pow(c0, 10)*(8091.0*pow(c1, 6) - 11745.0*pow(c1, 4) + 5265.0*pow(c1, 2) - 715.0) + 3028410.0*pow(c0, 8)*(40455.0*pow(c1, 8) - 88740.0*pow(c1, 6) + 68850.0*pow(c1, 4) - 22100.0*pow(c1, 2) + 2431.0) + 38808.0*pow(c0, 6)*(930465.0*pow(c1, 10) - 2851425.0*pow(c1, 8) + 3343050.0*pow(c1, 6) - 1857250.0*pow(c1, 4) + 482885.0*pow(c1, 2) - 46189.0) + 4620.0*pow(c0, 4)*(930465.0*pow(c1, 12) - 3781890.0*pow(c1, 10) + 6194475.0*pow(c1, 8) - 5200300.0*pow(c1, 6) + 2340135.0*pow(c1, 4) - 529074.0*pow(c1, 2) + 46189.0) + 3960.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 3)*(40455.0*pow(c1, 8) - 88740.0*pow(c1, 6) + 68850.0*pow(c1, 4) - 22100.0*pow(c1, 2) + 2431.0) + 99.0*pow(pow(c1, 2) - 1.0, 5)*(8091.0*pow(c1, 6) - 11745.0*pow(c1, 4) + 5265.0*pow(c1, 2) - 715.0)); case 19: return 4.51660607910608e-10*c0*pow(c1, 2)*(83426422365.0*pow(c0, 16) + 343817983080.0*pow(c0, 14)*(3.0*pow(c1, 2) - 1.0) + 4071834900.0*pow(c0, 12)*(1023.0*pow(c1, 4) - 806.0*pow(c1, 2) + 143.0) + 730122120.0*pow(c0, 10)*(9889.0*pow(c1, 6) - 13485.0*pow(c1, 4) + 5655.0*pow(c1, 2) - 715.0) + 21871850.0*pow(c0, 8)*(267003.0*pow(c1, 8) - 550188.0*pow(c1, 6) + 399330.0*pow(c1, 4) - 119340.0*pow(c1, 2) + 12155.0) + 1657656.0*pow(c0, 6)*(1335015.0*pow(c1, 10) - 3843225.0*pow(c1, 8) + 4215150.0*pow(c1, 6) - 2180250.0*pow(c1, 4) + 524875.0*pow(c1, 2) - 46189.0) + 36036.0*pow(c0, 4)*(10235115.0*pow(c1, 12) - 39079530.0*pow(c1, 10) + 59879925.0*pow(c1, 8) - 46802700.0*pow(c1, 6) + 19501125.0*pow(c1, 4) - 4056234.0*pow(c1, 2) + 323323.0) + 17160.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2)*(1335015.0*pow(c1, 10) - 3843225.0*pow(c1, 8) + 4215150.0*pow(c1, 6) - 2180250.0*pow(c1, 4) + 524875.0*pow(c1, 2) - 46189.0) + 1287.0*pow(pow(c1, 2) - 1.0, 4)*(267003.0*pow(c1, 8) - 550188.0*pow(c1, 6) + 399330.0*pow(c1, 4) - 119340.0*pow(c1, 2) + 12155.0)); case 20: return 2.25830303955304e-10*pow(c1, 2)*(324436086975.0*pow(c0, 18) + 128931743655.0*pow(c0, 16)*(35.0*pow(c1, 2) - 11.0) + 198356528700.0*pow(c0, 14)*(105.0*pow(c1, 4) - 78.0*pow(c1, 2) + 13.0) + 17644617900.0*pow(c0, 12)*(2387.0*pow(c1, 6) - 3069.0*pow(c1, 4) + 1209.0*pow(c1, 2) - 143.0) + 118107990.0*pow(c0, 10)*(346115.0*pow(c1, 8) - 672452.0*pow(c1, 6) + 458490.0*pow(c1, 4) - 128180.0*pow(c1, 2) + 12155.0) + 10360350.0*pow(c0, 8)*(1869021.0*pow(c1, 10) - 5073057.0*pow(c1, 8) + 5226786.0*pow(c1, 6) - 2529090.0*pow(c1, 4) + 566865.0*pow(c1, 2) - 46189.0) + 1933932.0*pow(c0, 6)*(2225025.0*pow(c1, 12) - 8010090.0*pow(c1, 10) + 11529675.0*pow(c1, 8) - 8430300.0*pow(c1, 6) + 3270375.0*pow(c1, 4) - 629850.0*pow(c1, 2) + 46189.0) + 180180.0*pow(c0, 4)*(2225025.0*pow(c1, 14) - 10235115.0*pow(c1, 12) + 19539765.0*pow(c1, 10) - 19959975.0*pow(c1, 8) + 11700675.0*pow(c1, 6) - 3900225.0*pow(c1, 4) + 676039.0*pow(c1, 2) - 46189.0) + 6435.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 3)*(1869021.0*pow(c1, 10) - 5073057.0*pow(c1, 8) + 5226786.0*pow(c1, 6) - 2529090.0*pow(c1, 4) + 566865.0*pow(c1, 2) - 46189.0) + 143.0*pow(pow(c1, 2) - 1.0, 5)*(346115.0*pow(c1, 8) - 672452.0*pow(c1, 6) + 458490.0*pow(c1, 4) - 128180.0*pow(c1, 2) + 12155.0)); case 21: return 2.25830303955304e-10*c0*pow(c1, 2)*(631796590425.0*pow(c0, 18) + 265447707525.0*pow(c0, 16)*(37.0*pow(c1, 2) - 11.0) + 39671305740.0*pow(c0, 14)*(1295.0*pow(c1, 4) - 910.0*pow(c1, 2) + 143.0) + 462831900300.0*pow(c0, 12)*(259.0*pow(c1, 6) - 315.0*pow(c1, 4) + 117.0*pow(c1, 2) - 13.0) + 1556878050.0*pow(c0, 10)*(88319.0*pow(c1, 8) - 162316.0*pow(c1, 6) + 104346.0*pow(c1, 4) - 27404.0*pow(c1, 2) + 2431.0) + 31081050.0*pow(c0, 8)*(2561251.0*pow(c1, 10) - 6576185.0*pow(c1, 8) + 6388294.0*pow(c1, 6) - 2903770.0*pow(c1, 4) + 608855.0*pow(c1, 2) - 46189.0) + 6906900.0*pow(c0, 6)*(3293037.0*pow(c1, 12) - 11214126.0*pow(c1, 10) + 15219171.0*pow(c1, 8) - 10453572.0*pow(c1, 6) + 3793635.0*pow(c1, 4) - 680238.0*pow(c1, 2) + 46189.0) + 36036.0*pow(c0, 4)*(82325925.0*pow(c1, 14) - 358229025.0*pow(c1, 12) + 644812245.0*pow(c1, 10) - 618759225.0*pow(c1, 8) + 339319575.0*pow(c1, 6) - 105306075.0*pow(c1, 4) + 16900975.0*pow(c1, 2) - 1062347.0) + 45045.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2)*(3293037.0*pow(c1, 12) - 11214126.0*pow(c1, 10) + 15219171.0*pow(c1, 8) - 10453572.0*pow(c1, 6) + 3793635.0*pow(c1, 4) - 680238.0*pow(c1, 2) + 46189.0) + 715.0*pow(pow(c1, 2) - 1.0, 4)*(2561251.0*pow(c1, 10) - 6576185.0*pow(c1, 8) + 6388294.0*pow(c1, 6) - 2903770.0*pow(c1, 4) + 608855.0*pow(c1, 2) - 46189.0)); case 22: return 6.21033335877086e-10*pow(c1, 2)*(448001218665.0*pow(c0, 20) + 198415458150.0*pow(c0, 18)*(39.0*pow(c1, 2) - 11.0) + 410237366175.0*pow(c0, 16)*(111.0*pow(c1, 4) - 74.0*pow(c1, 2) + 11.0) + 36064823400.0*pow(c0, 14)*(3367.0*pow(c1, 6) - 3885.0*pow(c1, 4) + 1365.0*pow(c1, 2) - 143.0) + 16087739850.0*pow(c0, 12)*(10101.0*pow(c1, 8) - 17612.0*pow(c1, 6) + 10710.0*pow(c1, 4) - 2652.0*pow(c1, 2) + 221.0) + 32776380.0*pow(c0, 10)*(3444441.0*pow(c1, 10) - 8390305.0*pow(c1, 8) + 7710010.0*pow(c1, 6) - 3304290.0*pow(c1, 4) + 650845.0*pow(c1, 2) - 46189.0) + 8476650.0*pow(c0, 8)*(4756609.0*pow(c1, 12) - 15367506.0*pow(c1, 10) + 19728555.0*pow(c1, 8) - 12776588.0*pow(c1, 6) + 4355655.0*pow(c1, 4) - 730626.0*pow(c1, 2) + 46189.0) + 54600.0*pow(c0, 6)*(128428443.0*pow(c1, 14) - 530178957.0*pow(c1, 12) + 902737143.0*pow(c1, 10) - 816762177.0*pow(c1, 8) + 420756273.0*pow(c1, 6) - 122155047.0*pow(c1, 4) + 18253053.0*pow(c1, 2) - 1062347.0) + 4095.0*pow(c0, 4)*(128428443.0*pow(c1, 16) - 658607400.0*pow(c1, 14) + 1432916100.0*pow(c1, 12) - 1719499320.0*pow(c1, 10) + 1237518450.0*pow(c1, 8) - 542911320.0*pow(c1, 6) + 140408100.0*pow(c1, 4) - 19315400.0*pow(c1, 2) + 1062347.0) + 2730.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 3)*(4756609.0*pow(c1, 12) - 15367506.0*pow(c1, 10) + 19728555.0*pow(c1, 8) - 12776588.0*pow(c1, 6) + 4355655.0*pow(c1, 4) - 730626.0*pow(c1, 2) + 46189.0) + 13.0*pow(pow(c1, 2) - 1.0, 5)*(3444441.0*pow(c1, 10) - 8390305.0*pow(c1, 8) + 7710010.0*pow(c1, 6) - 3304290.0*pow(c1, 4) + 650845.0*pow(c1, 2) - 46189.0)); case 23: return 6.21033335877086e-10*c0*pow(c1, 2)*(874669045965.0*pow(c0, 20) + 407273835150.0*pow(c0, 18)*(41.0*pow(c1, 2) - 11.0) + 892869561675.0*pow(c0, 16)*(123.0*pow(c1, 4) - 78.0*pow(c1, 2) + 11.0) + 218793261960.0*pow(c0, 14)*(1517.0*pow(c1, 6) - 1665.0*pow(c1, 4) + 555.0*pow(c1, 2) - 55.0) + 3712555350.0*pow(c0, 12)*(138047.0*pow(c1, 8) - 228956.0*pow(c1, 6) + 132090.0*pow(c1, 4) - 30940.0*pow(c1, 2) + 2431.0) + 1016067780.0*pow(c0, 10)*(414141.0*pow(c1, 10) - 959595.0*pow(c1, 8) + 836570.0*pow(c1, 6) - 339150.0*pow(c1, 4) + 62985.0*pow(c1, 2) - 4199.0) + 27313650.0*pow(c0, 8)*(6724861.0*pow(c1, 12) - 20666646.0*pow(c1, 10) + 25170915.0*pow(c1, 8) - 15420020.0*pow(c1, 6) + 4956435.0*pow(c1, 4) - 781014.0*pow(c1, 2) + 46189.0) + 210600.0*pow(c0, 6)*(195020969.0*pow(c1, 14) - 765814049.0*pow(c1, 12) + 1237084233.0*pow(c1, 10) - 1058765785.0*pow(c1, 8) + 514257667.0*pow(c1, 6) - 140252091.0*pow(c1, 4) + 19605131.0*pow(c1, 2) - 1062347.0) + 819.0*pow(c0, 4)*(5265566163.0*pow(c1, 16) - 25685688600.0*pow(c1, 14) + 53017895700.0*pow(c1, 12) - 60182476200.0*pow(c1, 10) + 40838108850.0*pow(c1, 8) - 16830250920.0*pow(c1, 6) + 4071834900.0*pow(c1, 4) - 521515800.0*pow(c1, 2) + 26558675.0) + 910.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2)*(195020969.0*pow(c1, 14) - 765814049.0*pow(c1, 12) + 1237084233.0*pow(c1, 10) - 1058765785.0*pow(c1, 8) + 514257667.0*pow(c1, 6) - 140252091.0*pow(c1, 4) + 19605131.0*pow(c1, 2) - 1062347.0) + 273.0*pow(pow(c1, 2) - 1.0, 4)*(6724861.0*pow(c1, 12) - 20666646.0*pow(c1, 10) + 25170915.0*pow(c1, 8) - 15420020.0*pow(c1, 6) + 4956435.0*pow(c1, 4) - 781014.0*pow(c1, 2) + 46189.0)); case 24: return 4.03671668320106e-9*pow(c1, 2)*(263012370465.0*pow(c0, 22) + 128447901855.0*pow(c0, 20)*(43.0*pow(c1, 2) - 11.0) + 22894091325.0*pow(c0, 18)*(1763.0*pow(c1, 4) - 1066.0*pow(c1, 2) + 143.0) + 77839910505.0*pow(c0, 16)*(1763.0*pow(c1, 6) - 1845.0*pow(c1, 4) + 585.0*pow(c1, 2) - 55.0) + 3712555350.0*pow(c0, 14)*(65231.0*pow(c1, 8) - 103156.0*pow(c1, 6) + 56610.0*pow(c1, 4) - 12580.0*pow(c1, 2) + 935.0) + 39079530.0*pow(c0, 12)*(5936021.0*pow(c1, 10) - 13114465.0*pow(c1, 8) + 10875410.0*pow(c1, 6) - 4182850.0*pow(c1, 4) + 734825.0*pow(c1, 2) - 46189.0) + 143291610.0*pow(c0, 10)*(848003.0*pow(c1, 12) - 2484846.0*pow(c1, 10) + 2878785.0*pow(c1, 8) - 1673140.0*pow(c1, 6) + 508725.0*pow(c1, 4) - 75582.0*pow(c1, 2) + 4199.0) + 117450.0*pow(c0, 8)*(289169023.0*pow(c1, 14) - 1082702621.0*pow(c1, 12) + 1663665003.0*pow(c1, 10) - 1350839105.0*pow(c1, 8) + 620655805.0*pow(c1, 6) - 159597207.0*pow(c1, 4) + 20957209.0*pow(c1, 2) - 1062347.0) + 567.0*pow(c0, 6)*(8385901667.0*pow(c1, 16) - 39004193800.0*pow(c1, 14) + 76581404900.0*pow(c1, 12) - 82472282200.0*pow(c1, 10) + 52938289250.0*pow(c1, 8) - 20570306680.0*pow(c1, 6) + 4675069700.0*pow(c1, 4) - 560146600.0*pow(c1, 2) + 26558675.0) + 35.0*pow(c0, 4)*(8385901667.0*pow(c1, 18) - 47390095467.0*pow(c1, 16) + 115585598700.0*pow(c1, 14) - 159053687100.0*pow(c1, 12) + 135410571450.0*pow(c1, 10) - 73508595930.0*pow(c1, 8) + 25245376380.0*pow(c1, 6) - 5235216300.0*pow(c1, 4) + 586705275.0*pow(c1, 2) - 26558675.0) + 21.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 3)*(289169023.0*pow(c1, 14) - 1082702621.0*pow(c1, 12) + 1663665003.0*pow(c1, 10) - 1350839105.0*pow(c1, 8) + 620655805.0*pow(c1, 6) - 159597207.0*pow(c1, 4) + 20957209.0*pow(c1, 2) - 1062347.0) + 21.0*pow(pow(c1, 2) - 1.0, 5)*(848003.0*pow(c1, 12) - 2484846.0*pow(c1, 10) + 2878785.0*pow(c1, 8) - 1673140.0*pow(c1, 6) + 508725.0*pow(c1, 4) - 75582.0*pow(c1, 2) + 4199.0)); case 25: return 4.03671668320106e-9*c0*pow(c1, 2)*(514589420475.0*pow(c0, 22) + 263012370465.0*pow(c0, 20)*(45.0*pow(c1, 2) - 11.0) + 49403039175.0*pow(c0, 18)*(1935.0*pow(c1, 4) - 1118.0*pow(c1, 2) + 143.0) + 68682273975.0*pow(c0, 16)*(5289.0*pow(c1, 6) - 5289.0*pow(c1, 4) + 1599.0*pow(c1, 2) - 143.0) + 9157636530.0*pow(c0, 14)*(79335.0*pow(c1, 8) - 119884.0*pow(c1, 6) + 62730.0*pow(c1, 4) - 13260.0*pow(c1, 2) + 935.0) + 1367783550.0*pow(c0, 12)*(587079.0*pow(c1, 10) - 1239389.0*pow(c1, 8) + 979982.0*pow(c1, 6) - 358530.0*pow(c1, 4) + 59755.0*pow(c1, 2) - 3553.0) + 39079530.0*pow(c0, 10)*(12720045.0*pow(c1, 12) - 35616126.0*pow(c1, 10) + 39343395.0*pow(c1, 8) - 21750820.0*pow(c1, 6) + 6274275.0*pow(c1, 4) - 881790.0*pow(c1, 2) + 46189.0) + 4450050.0*pow(c0, 8)*(38160135.0*pow(c1, 14) - 136528483.0*pow(c1, 12) + 200030103.0*pow(c1, 10) - 154494795.0*pow(c1, 8) + 67343885.0*pow(c1, 6) - 16380945.0*pow(c1, 4) + 2028117.0*pow(c1, 2) - 96577.0) + 11745.0*pow(c0, 6)*(2602521207.0*pow(c1, 16) - 11566760920.0*pow(c1, 14) + 21654052420.0*pow(c1, 12) - 22182200040.0*pow(c1, 10) + 13508391050.0*pow(c1, 8) - 4965246440.0*pow(c1, 6) + 1063981380.0*pow(c1, 4) - 119755480.0*pow(c1, 2) + 5311735.0) + 63.0*pow(c0, 4)*(41929508335.0*pow(c1, 18) - 226419345009.0*pow(c1, 16) + 526556616300.0*pow(c1, 14) - 689232644100.0*pow(c1, 12) + 556687904850.0*pow(c1, 10) - 285866761950.0*pow(c1, 8) + 92566380060.0*pow(c1, 6) - 18032411700.0*pow(c1, 4) + 1890494775.0*pow(c1, 2) - 79676025.0) + 35.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2)*(2602521207.0*pow(c1, 16) - 11566760920.0*pow(c1, 14) + 21654052420.0*pow(c1, 12) - 22182200040.0*pow(c1, 10) + 13508391050.0*pow(c1, 8) - 4965246440.0*pow(c1, 6) + 1063981380.0*pow(c1, 4) - 119755480.0*pow(c1, 2) + 5311735.0) + 21.0*pow(pow(c1, 2) - 1.0, 4)*(38160135.0*pow(c1, 14) - 136528483.0*pow(c1, 12) + 200030103.0*pow(c1, 10) - 154494795.0*pow(c1, 8) + 67343885.0*pow(c1, 6) - 16380945.0*pow(c1, 4) + 2028117.0*pow(c1, 2) - 96577.0)); case 26: return 4.58717804909211e-11*pow(c1, 2)*(88680910128525.0*pow(c0, 24) + 47342226683700.0*pow(c0, 22)*(47.0*pow(c1, 2) - 11.0) + 9347055011910.0*pow(c0, 20)*(2115.0*pow(c1, 4) - 1170.0*pow(c1, 2) + 143.0) + 13766980250100.0*pow(c0, 18)*(6063.0*pow(c1, 6) - 5805.0*pow(c1, 4) + 1677.0*pow(c1, 2) - 143.0) + 755505013725.0*pow(c0, 16)*(248583.0*pow(c1, 8) - 359652.0*pow(c1, 6) + 179826.0*pow(c1, 4) - 36244.0*pow(c1, 2) + 2431.0) + 318107374200.0*pow(c0, 14)*(745749.0*pow(c1, 10) - 1507365.0*pow(c1, 8) + 1138898.0*pow(c1, 6) - 397290.0*pow(c1, 4) + 62985.0*pow(c1, 2) - 3553.0) + 18627909300.0*pow(c0, 12)*(9197571.0*pow(c1, 12) - 24657318.0*pow(c1, 10) + 26027169.0*pow(c1, 8) - 13719748.0*pow(c1, 6) + 3764565.0*pow(c1, 4) - 501942.0*pow(c1, 2) + 24871.0) + 117481320.0*pow(c0, 10)*(597842115.0*pow(c1, 14) - 2047927245.0*pow(c1, 12) + 2867098143.0*pow(c1, 10) - 2111428865.0*pow(c1, 8) + 875470505.0*pow(c1, 6) - 202031655.0*pow(c1, 4) + 23661365.0*pow(c1, 2) - 1062347.0) + 44055495.0*pow(c0, 8)*(358705269.0*pow(c1, 16) - 1526405400.0*pow(c1, 14) + 2730569660.0*pow(c1, 12) - 2667068040.0*pow(c1, 10) + 1544947950.0*pow(c1, 8) - 538751080.0*pow(c1, 6) + 109206300.0*pow(c1, 4) - 11589240.0*pow(c1, 2) + 482885.0) + 133980.0*pow(c0, 6)*(13590944081.0*pow(c1, 18) - 70268072589.0*pow(c1, 16) + 156151272420.0*pow(c1, 14) - 194886471780.0*pow(c1, 12) + 149729850270.0*pow(c1, 10) - 72945311670.0*pow(c1, 8) + 22343608980.0*pow(c1, 6) - 4103928180.0*pow(c1, 4) + 404174745.0*pow(c1, 2) - 15935205.0) + 6930.0*pow(c0, 4)*(13590944081.0*pow(c1, 20) - 83859016670.0*pow(c1, 18) + 226419345009.0*pow(c1, 16) - 351037744200.0*pow(c1, 14) + 344616322050.0*pow(c1, 12) - 222675161940.0*pow(c1, 10) + 95288920650.0*pow(c1, 8) - 26447537160.0*pow(c1, 6) + 4508102925.0*pow(c1, 4) - 420109950.0*pow(c1, 2) + 15935205.0) + 4620.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 3)*(358705269.0*pow(c1, 16) - 1526405400.0*pow(c1, 14) + 2730569660.0*pow(c1, 12) - 2667068040.0*pow(c1, 10) + 1544947950.0*pow(c1, 8) - 538751080.0*pow(c1, 6) + 109206300.0*pow(c1, 4) - 11589240.0*pow(c1, 2) + 482885.0) + 7.0*pow(pow(c1, 2) - 1.0, 5)*(597842115.0*pow(c1, 14) - 2047927245.0*pow(c1, 12) + 2867098143.0*pow(c1, 10) - 2111428865.0*pow(c1, 8) + 875470505.0*pow(c1, 6) - 202031655.0*pow(c1, 4) + 23661365.0*pow(c1, 2) - 1062347.0)); case 27: return 2.69834002887771e-12*c0*pow(c1, 2)*(2.95484792548245e+15*pow(c0, 24) + 1.6446277878381e+15*pow(c0, 22)*(49.0*pow(c1, 2) - 11.0) + 340499861148150.0*pow(c0, 20)*(2303.0*pow(c1, 4) - 1222.0*pow(c1, 2) + 143.0) + 529666450674900.0*pow(c0, 18)*(6909.0*pow(c1, 6) - 6345.0*pow(c1, 4) + 1755.0*pow(c1, 2) - 143.0) + 30975705562725.0*pow(c0, 16)*(297087.0*pow(c1, 8) - 412284.0*pow(c1, 6) + 197370.0*pow(c1, 4) - 38012.0*pow(c1, 2) + 2431.0) + 1081565072280.0*pow(c0, 14)*(12180567.0*pow(c1, 10) - 23615385.0*pow(c1, 8) + 17083470.0*pow(c1, 6) - 5694490.0*pow(c1, 4) + 860795.0*pow(c1, 2) - 46189.0) + 6309129588300.0*pow(c0, 12)*(1740081.0*pow(c1, 12) - 4474494.0*pow(c1, 10) + 4522095.0*pow(c1, 8) - 2277796.0*pow(c1, 6) + 595935.0*pow(c1, 4) - 75582.0*pow(c1, 2) + 3553.0) + 82610728200.0*pow(c0, 10)*(64382997.0*pow(c1, 14) - 211544133.0*pow(c1, 12) + 283559157.0*pow(c1, 10) - 199541629.0*pow(c1, 8) + 78888551.0*pow(c1, 6) - 17316999.0*pow(c1, 4) + 1924111.0*pow(c1, 2) - 81719.0) + 249647805.0*pow(c0, 8)*(5858852727.0*pow(c1, 16) - 23913684600.0*pow(c1, 14) + 40958544900.0*pow(c1, 12) - 38227975240.0*pow(c1, 10) + 21114288650.0*pow(c1, 8) - 7003764040.0*pow(c1, 6) + 1346877700.0*pow(c1, 4) - 135207800.0*pow(c1, 2) + 5311735.0) + 110954580.0*pow(c0, 6)*(1952950909.0*pow(c1, 18) - 9685042263.0*pow(c1, 16) + 20606472900.0*pow(c1, 14) - 24575126940.0*pow(c1, 12) + 18002709270.0*pow(c1, 10) - 8342718930.0*pow(c1, 8) + 2424379860.0*pow(c1, 6) - 421224300.0*pow(c1, 4) + 39113685.0*pow(c1, 2) - 1448655.0) + 23562.0*pow(c0, 4)*(665956259969.0*pow(c1, 20) - 3941373783490.0*pow(c1, 18) + 10188870525405.0*pow(c1, 16) - 15094623000600.0*pow(c1, 14) + 14129269204050.0*pow(c1, 12) - 8684331315660.0*pow(c1, 10) + 3525690064050.0*pow(c1, 8) - 925663800600.0*pow(c1, 6) + 148767396525.0*pow(c1, 4) - 13023408450.0*pow(c1, 2) + 462120945.0) + 235620.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2)*(1952950909.0*pow(c1, 18) - 9685042263.0*pow(c1, 16) + 20606472900.0*pow(c1, 14) - 24575126940.0*pow(c1, 12) + 18002709270.0*pow(c1, 10) - 8342718930.0*pow(c1, 8) + 2424379860.0*pow(c1, 6) - 421224300.0*pow(c1, 4) + 39113685.0*pow(c1, 2) - 1448655.0) + 595.0*pow(pow(c1, 2) - 1.0, 4)*(5858852727.0*pow(c1, 16) - 23913684600.0*pow(c1, 14) + 40958544900.0*pow(c1, 12) - 38227975240.0*pow(c1, 10) + 21114288650.0*pow(c1, 8) - 7003764040.0*pow(c1, 6) + 1346877700.0*pow(c1, 4) - 135207800.0*pow(c1, 2) + 5311735.0)); case 28: return 2.29358902454606e-11*pow(c1, 2)*(681887982803643.0*pow(c0, 26) + 395033145117975.0*pow(c0, 24)*(51.0*pow(c1, 2) - 11.0) + 85580179005150.0*pow(c0, 22)*(2499.0*pow(c1, 4) - 1274.0*pow(c1, 2) + 143.0) + 28041165035730.0*pow(c0, 20)*(39151.0*pow(c1, 6) - 34545.0*pow(c1, 4) + 9165.0*pow(c1, 2) - 715.0) + 147995037688575.0*pow(c0, 18)*(20727.0*pow(c1, 8) - 27636.0*pow(c1, 6) + 12690.0*pow(c1, 4) - 2340.0*pow(c1, 2) + 143.0) + 326060058555.0*pow(c0, 16)*(15151437.0*pow(c1, 10) - 28223265.0*pow(c1, 8) + 19583490.0*pow(c1, 6) - 6250050.0*pow(c1, 4) + 902785.0*pow(c1, 2) - 46189.0) + 159053687100.0*pow(c0, 14)*(29581377.0*pow(c1, 12) - 73083402.0*pow(c1, 10) + 70846155.0*pow(c1, 8) - 34166940.0*pow(c1, 6) + 8541735.0*pow(c1, 4) - 1032954.0*pow(c1, 2) + 46189.0) + 29966636700.0*pow(c0, 12)*(88744131.0*pow(c1, 14) - 280153041.0*pow(c1, 12) + 360196767.0*pow(c1, 10) - 242685765.0*pow(c1, 8) + 91681289.0*pow(c1, 6) - 19189107.0*pow(c1, 4) + 2028117.0*pow(c1, 2) - 81719.0) + 267270003.0*pow(c0, 10)*(3283532847.0*pow(c1, 16) - 12876599400.0*pow(c1, 14) + 21154413300.0*pow(c1, 12) - 18903943800.0*pow(c1, 10) + 9977081450.0*pow(c1, 8) - 3155542040.0*pow(c1, 6) + 577233300.0*pow(c1, 4) - 54974600.0*pow(c1, 2) + 2042975.0) + 4895055.0*pow(c0, 8)*(33200165453.0*pow(c1, 18) - 158189023629.0*pow(c1, 16) + 322834742100.0*pow(c1, 14) - 368626904100.0*pow(c1, 12) + 258038832870.0*pow(c1, 10) - 114017158710.0*pow(c1, 8) + 31516938180.0*pow(c1, 6) - 5195099700.0*pow(c1, 4) + 456326325.0*pow(c1, 2) - 15935205.0) + 157542.0*pow(c0, 6)*(99600496359.0*pow(c1, 20) - 566355763610.0*pow(c1, 18) + 1404331128135.0*pow(c1, 16) - 1991959047000.0*pow(c1, 14) + 1781696703150.0*pow(c1, 12) - 1044157137660.0*pow(c1, 10) + 403231414950.0*pow(c1, 8) - 100438594200.0*pow(c1, 6) + 15269380875.0*pow(c1, 4) - 1260329850.0*pow(c1, 2) + 42010995.0) + 6930.0*pow(c0, 4)*(99600496359.0*pow(c1, 22) - 665956259969.0*pow(c1, 20) + 1970686891745.0*pow(c1, 18) - 3396290175135.0*pow(c1, 16) + 3773655750150.0*pow(c1, 14) - 2825853840810.0*pow(c1, 12) + 1447388552610.0*pow(c1, 10) - 503670009150.0*pow(c1, 8) + 115707975075.0*pow(c1, 6) - 16529710725.0*pow(c1, 4) + 1302340845.0*pow(c1, 2) - 42010995.0) + 315.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 3)*(33200165453.0*pow(c1, 18) - 158189023629.0*pow(c1, 16) + 322834742100.0*pow(c1, 14) - 368626904100.0*pow(c1, 12) + 258038832870.0*pow(c1, 10) - 114017158710.0*pow(c1, 8) + 31516938180.0*pow(c1, 6) - 5195099700.0*pow(c1, 4) + 456326325.0*pow(c1, 2) - 15935205.0) + 7.0*pow(pow(c1, 2) - 1.0, 5)*(3283532847.0*pow(c1, 16) - 12876599400.0*pow(c1, 14) + 21154413300.0*pow(c1, 12) - 18903943800.0*pow(c1, 10) + 9977081450.0*pow(c1, 8) - 3155542040.0*pow(c1, 6) + 577233300.0*pow(c1, 4) - 54974600.0*pow(c1, 2) + 2042975.0)); case 29: return 2.29358902454606e-11*c0*pow(c1, 2)*(1.33852085513308e+15*pow(c0, 26) + 805867616040669.0*pow(c0, 24)*(53.0*pow(c1, 2) - 11.0) + 182322990054450.0*pow(c0, 22)*(2703.0*pow(c1, 4) - 1326.0*pow(c1, 2) + 143.0) + 62758797937110.0*pow(c0, 20)*(44149.0*pow(c1, 6) - 37485.0*pow(c1, 4) + 9555.0*pow(c1, 2) - 715.0) + 70102912589325.0*pow(c0, 18)*(122059.0*pow(c1, 8) - 156604.0*pow(c1, 6) + 69090.0*pow(c1, 4) - 12220.0*pow(c1, 2) + 715.0) + 14020582517865.0*pow(c0, 16)*(1098531.0*pow(c1, 10) - 1969065.0*pow(c1, 8) + 1312710.0*pow(c1, 6) - 401850.0*pow(c1, 4) + 55575.0*pow(c1, 2) - 2717.0) + 434746744740.0*pow(c0, 14)*(38239341.0*pow(c1, 12) - 90908622.0*pow(c1, 10) + 84669795.0*pow(c1, 8) - 39166980.0*pow(c1, 6) + 9375075.0*pow(c1, 4) - 1083342.0*pow(c1, 2) + 46189.0) + 6915377700.0*pow(c0, 12)*(1567812981.0*pow(c1, 14) - 4762601697.0*pow(c1, 12) + 5883213861.0*pow(c1, 10) - 3802076985.0*pow(c1, 8) + 1375219335.0*pow(c1, 6) - 275043867.0*pow(c1, 4) + 27717599.0*pow(c1, 2) - 1062347.0) + 898999101.0*pow(c0, 10)*(4703438943.0*pow(c1, 16) - 17748826200.0*pow(c1, 14) + 28015304100.0*pow(c1, 12) - 24013117800.0*pow(c1, 10) + 12134288250.0*pow(c1, 8) - 3667251560.0*pow(c1, 6) + 639636900.0*pow(c1, 4) - 57946200.0*pow(c1, 2) + 2042975.0) + 49494445.0*pow(c0, 8)*(19336360099.0*pow(c1, 18) - 88655386869.0*pow(c1, 16) + 173834091900.0*pow(c1, 14) - 190389719700.0*pow(c1, 12) + 127601620650.0*pow(c1, 10) - 53876239830.0*pow(c1, 8) + 14199939180.0*pow(c1, 6) - 2226471300.0*pow(c1, 4) + 185539275.0*pow(c1, 2) - 6128925.0) + 67518.0*pow(c0, 6)*(1759608769009.0*pow(c1, 20) - 9628047981370.0*pow(c1, 18) + 22937408426205.0*pow(c1, 16) - 31207358403000.0*pow(c1, 14) + 26725450547250.0*pow(c1, 12) - 14966252306460.0*pow(c1, 10) + 5510829337650.0*pow(c1, 8) - 1305701724600.0*pow(c1, 6) + 188322364125.0*pow(c1, 4) - 14703848250.0*pow(c1, 2) + 462120945.0) + 1386.0*pow(c0, 4)*(5278826307027.0*pow(c1, 22) - 33963769258419.0*pow(c1, 20) + 96563657695505.0*pow(c1, 18) - 159625638231345.0*pow(c1, 16) + 169814508756750.0*pow(c1, 14) - 121511715154830.0*pow(c1, 12) + 59342930657010.0*pow(c1, 10) - 19643130356850.0*pow(c1, 8) + 4281195077775.0*pow(c1, 6) - 578539875375.0*pow(c1, 4) + 42977247885.0*pow(c1, 2) - 1302340845.0) + 105.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2)*(1759608769009.0*pow(c1, 20) - 9628047981370.0*pow(c1, 18) + 22937408426205.0*pow(c1, 16) - 31207358403000.0*pow(c1, 14) + 26725450547250.0*pow(c1, 12) - 14966252306460.0*pow(c1, 10) + 5510829337650.0*pow(c1, 8) - 1305701724600.0*pow(c1, 6) + 188322364125.0*pow(c1, 4) - 14703848250.0*pow(c1, 2) + 462120945.0) + 63.0*pow(pow(c1, 2) - 1.0, 4)*(19336360099.0*pow(c1, 18) - 88655386869.0*pow(c1, 16) + 173834091900.0*pow(c1, 14) - 190389719700.0*pow(c1, 12) + 127601620650.0*pow(c1, 10) - 53876239830.0*pow(c1, 8) + 14199939180.0*pow(c1, 6) - 2226471300.0*pow(c1, 4) + 185539275.0*pow(c1, 2) - 6128925.0)); default: return 0.; } case 7: switch(j) { case 0: return 0.000288600288600289*pow(c1, 3)*y1t; case 1: return 0.000144300144300144*pow(c1, 3)*y1r; case 2: return -0.000288600288600289*pow(c1, 3)*y2t; case 3: return 0.000144300144300144*pow(c1, 3)*y2r; case 4: return 0.000577200577200577*c0*pow(c1, 3); case 5: return 2.22000222000222e-5*pow(c1, 3)*(65.0*pow(c0, 2) + 5.0*pow(c1, 2) - 13.0); case 6: return 3.7000037000037e-5*c0*pow(c1, 3)*(91.0*pow(c0, 2) + 21.0*pow(c1, 2) - 39.0); case 7: return 5.55000555000555e-6*pow(c1, 3)*(1365.0*pow(c0, 4) + 70.0*pow(c0, 2)*(9.0*pow(c1, 2) - 13.0) + 21.0*pow(c1, 4) - 70.0*pow(c1, 2) + 65.0); case 8: return 3.88500388500389e-5*c0*pow(c1, 3)*(429.0*pow(c0, 4) + 30.0*pow(c0, 2)*(11.0*pow(c1, 2) - 13.0) + 33.0*pow(c1, 4) - 90.0*pow(c1, 2) + 65.0); case 9: return 3.8088273382391e-7*pow(c1, 3)*(94809.0*pow(c0, 6) + 109395.0*pow(c0, 4)*(pow(c1, 2) - 1.0) + 153.0*pow(c0, 2)*(143.0*pow(c1, 4) - 330.0*pow(c1, 2) + 195.0) + 429.0*pow(c1, 6) - 1683.0*pow(c1, 4) + 2295.0*pow(c1, 2) - 1105.0); case 10: return 4.89706372059313e-7*c0*pow(c1, 3)*(158015.0*pow(c0, 6) + 17017.0*pow(c0, 4)*(15.0*pow(c1, 2) - 13.0) + 85085.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2) + 5005.0*pow(c1, 6) - 17017.0*pow(c1, 4) + 19635.0*pow(c1, 2) - 7735.0); case 11: return 0.000274122807017544*pow(c1, 11) + 0.00122549019607843*pow(c1, 9)*(17.0*pow(c0, 2) - 1.0) + 0.00208333333333333*pow(c1, 7)*(85.0*pow(c0, 4) - 30.0*pow(c0, 2) + 1.0) + 0.0016025641025641*pow(c1, 5)*(221.0*pow(c0, 6) - 195.0*pow(c0, 4) + 39.0*pow(c0, 2) - 1.0) + 6.76406926406926e-5*pow(c1, 3)*(2431.0*pow(c0, 8) - 4004.0*pow(c0, 6) + 2002.0*pow(c0, 4) - 308.0*pow(c0, 2) + 7.0); case 12: return 1.65343915343915e-5*c0*pow(c1, 3)*(20995.0*pow(c0, 8) + 3060.0*pow(c0, 6)*(19.0*pow(c1, 2) - 13.0) + 126.0*pow(c0, 4)*(323.0*pow(c1, 4) - 510.0*pow(c1, 2) + 195.0) + 420.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2)*(19.0*pow(c1, 2) - 13.0) + 315.0*pow(pow(c1, 2) - 1.0, 4)); case 13: return 2.48015873015873e-5*pow(c1, 3)*(29393.0*pow(c0, 10) + 4845.0*pow(c0, 8)*(21.0*pow(c1, 2) - 13.0) + 714.0*pow(c0, 6)*(133.0*pow(c1, 4) - 190.0*pow(c1, 2) + 65.0) + 210.0*pow(c0, 4)*(133.0*pow(c1, 6) - 323.0*pow(c1, 4) + 255.0*pow(c1, 2) - 65.0) + 105.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 3)*(21.0*pow(c1, 2) - 13.0) + 21.0*pow(pow(c1, 2) - 1.0, 5)); case 14: return 2.25468975468975e-6*c0*pow(c1, 3)*(676039.0*pow(c0, 10) + 124355.0*pow(c0, 8)*(23.0*pow(c1, 2) - 13.0) + 21318.0*pow(c0, 6)*(161.0*pow(c1, 4) - 210.0*pow(c1, 2) + 65.0) + 462.0*pow(c0, 4)*(3059.0*pow(c1, 6) - 6783.0*pow(c1, 4) + 4845.0*pow(c1, 2) - 1105.0) + 1155.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2)*(161.0*pow(c1, 4) - 210.0*pow(c1, 2) + 65.0) + 231.0*pow(pow(c1, 2) - 1.0, 4)*(23.0*pow(c1, 2) - 13.0)); case 15: return 1.31523569023569e-6*pow(c1, 3)*(2414425.0*pow(c0, 12) + 490314.0*pow(c0, 10)*(25.0*pow(c1, 2) - 13.0) + 159885.0*pow(c0, 8)*(115.0*pow(c1, 4) - 138.0*pow(c1, 2) + 39.0) + 2508.0*pow(c0, 6)*(4025.0*pow(c1, 6) - 8211.0*pow(c1, 4) + 5355.0*pow(c1, 2) - 1105.0) + 495.0*pow(c0, 4)*(4025.0*pow(c1, 8) - 12236.0*pow(c1, 6) + 13566.0*pow(c1, 4) - 6460.0*pow(c1, 2) + 1105.0) + 990.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 3)*(115.0*pow(c1, 4) - 138.0*pow(c1, 2) + 39.0) + 33.0*pow(pow(c1, 2) - 1.0, 5)*(25.0*pow(c1, 2) - 13.0)); case 16: return 3.94570707070707e-6*c0*pow(c1, 3)*(1671525.0*pow(c0, 12) + 371450.0*pow(c0, 10)*(27.0*pow(c1, 2) - 13.0) + 408595.0*pow(c0, 8)*(45.0*pow(c1, 4) - 50.0*pow(c1, 2) + 13.0) + 12540.0*pow(c0, 6)*(1035.0*pow(c1, 6) - 1955.0*pow(c1, 4) + 1173.0*pow(c1, 2) - 221.0) + 33.0*pow(c0, 4)*(108675.0*pow(c1, 8) - 305900.0*pow(c1, 6) + 312018.0*pow(c1, 4) - 135660.0*pow(c1, 2) + 20995.0) + 330.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2)*(1035.0*pow(c1, 6) - 1955.0*pow(c1, 4) + 1173.0*pow(c1, 2) - 221.0) + 165.0*pow(pow(c1, 2) - 1.0, 4)*(45.0*pow(c1, 4) - 50.0*pow(c1, 2) + 13.0)); case 17: return 2.81836219336219e-7*pow(c1, 3)*(48474225.0*pow(c0, 14) + 11700675.0*pow(c0, 12)*(29.0*pow(c1, 2) - 13.0) + 2860165.0*pow(c0, 10)*(261.0*pow(c1, 4) - 270.0*pow(c1, 2) + 65.0) + 504735.0*pow(c0, 8)*(1305.0*pow(c1, 6) - 2295.0*pow(c1, 4) + 1275.0*pow(c1, 2) - 221.0) + 8085.0*pow(c0, 6)*(30015.0*pow(c1, 8) - 78660.0*pow(c1, 6) + 74290.0*pow(c1, 4) - 29716.0*pow(c1, 2) + 4199.0) + 1155.0*pow(c0, 4)*(30015.0*pow(c1, 10) - 108675.0*pow(c1, 8) + 152950.0*pow(c1, 6) - 104006.0*pow(c1, 4) + 33915.0*pow(c1, 2) - 4199.0) + 1155.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 3)*(1305.0*pow(c1, 6) - 2295.0*pow(c1, 4) + 1275.0*pow(c1, 2) - 221.0) + 33.0*pow(pow(c1, 2) - 1.0, 5)*(261.0*pow(c1, 4) - 270.0*pow(c1, 2) + 65.0)); case 18: return 7.22656972656973e-9*c0*pow(c1, 3)*(3907022535.0*pow(c0, 14) + 1017958725.0*pow(c0, 12)*(31.0*pow(c1, 2) - 13.0) + 91265265.0*pow(c0, 10)*(899.0*pow(c1, 4) - 870.0*pow(c1, 2) + 195.0) + 10935925.0*pow(c0, 8)*(8091.0*pow(c1, 6) - 13311.0*pow(c1, 4) + 6885.0*pow(c1, 2) - 1105.0) + 1036035.0*pow(c0, 6)*(40455.0*pow(c1, 8) - 99180.0*pow(c1, 6) + 87210.0*pow(c1, 4) - 32300.0*pow(c1, 2) + 4199.0) + 9009.0*pow(c0, 4)*(930465.0*pow(c1, 10) - 3151575.0*pow(c1, 8) + 4129650.0*pow(c1, 6) - 2600150.0*pow(c1, 4) + 780045.0*pow(c1, 2) - 88179.0) + 15015.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2)*(40455.0*pow(c1, 8) - 99180.0*pow(c1, 6) + 87210.0*pow(c1, 4) - 32300.0*pow(c1, 2) + 4199.0) + 1287.0*pow(pow(c1, 2) - 1.0, 4)*(8091.0*pow(c1, 6) - 13311.0*pow(c1, 4) + 6885.0*pow(c1, 2) - 1105.0)); case 19: return 4.06494547119547e-9*pow(c1, 3)*(14325749295.0*pow(c0, 16) + 4007202600.0*pow(c0, 14)*(33.0*pow(c1, 2) - 13.0) + 1176307860.0*pow(c0, 12)*(341.0*pow(c1, 4) - 310.0*pow(c1, 2) + 65.0) + 52492440.0*pow(c0, 10)*(9889.0*pow(c1, 6) - 15283.0*pow(c1, 4) + 7395.0*pow(c1, 2) - 1105.0) + 1151150.0*pow(c0, 8)*(267003.0*pow(c1, 8) - 614916.0*pow(c1, 6) + 505818.0*pow(c1, 4) - 174420.0*pow(c1, 2) + 20995.0) + 184184.0*pow(c0, 6)*(445005.0*pow(c1, 10) - 1415925.0*pow(c1, 8) + 1735650.0*pow(c1, 6) - 1017450.0*pow(c1, 4) + 282625.0*pow(c1, 2) - 29393.0) + 20020.0*pow(c0, 4)*(445005.0*pow(c1, 12) - 1860930.0*pow(c1, 10) + 3151575.0*pow(c1, 8) - 2753100.0*pow(c1, 6) + 1300075.0*pow(c1, 4) - 312018.0*pow(c1, 2) + 29393.0) + 1144.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 3)*(267003.0*pow(c1, 8) - 614916.0*pow(c1, 6) + 505818.0*pow(c1, 4) - 174420.0*pow(c1, 2) + 20995.0) + 143.0*pow(pow(c1, 2) - 1.0, 5)*(9889.0*pow(c1, 6) - 15283.0*pow(c1, 4) + 7395.0*pow(c1, 2) - 1105.0)); case 20: return 4.06494547119547e-9*c0*pow(c1, 3)*(29494189725.0*pow(c0, 16) + 8815845720.0*pow(c0, 14)*(35.0*pow(c1, 2) - 13.0) + 14025209100.0*pow(c0, 12)*(77.0*pow(c1, 4) - 66.0*pow(c1, 2) + 13.0) + 138389160.0*pow(c0, 10)*(11935.0*pow(c1, 6) - 17391.0*pow(c1, 4) + 7905.0*pow(c1, 2) - 1105.0) + 3453450.0*pow(c0, 8)*(346115.0*pow(c1, 8) - 751564.0*pow(c1, 6) + 580754.0*pow(c1, 4) - 187340.0*pow(c1, 2) + 20995.0) + 4604600.0*pow(c0, 6)*(89001.0*pow(c1, 10) - 267003.0*pow(c1, 8) + 307458.0*pow(c1, 6) - 168606.0*pow(c1, 4) + 43605.0*pow(c1, 2) - 4199.0) + 4004.0*pow(c0, 4)*(15575175.0*pow(c1, 12) - 61410690.0*pow(c1, 10) + 97698825.0*pow(c1, 8) - 79839900.0*pow(c1, 6) + 35102025.0*pow(c1, 4) - 7800450.0*pow(c1, 2) + 676039.0) + 40040.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2)*(89001.0*pow(c1, 10) - 267003.0*pow(c1, 8) + 307458.0*pow(c1, 6) - 168606.0*pow(c1, 4) + 43605.0*pow(c1, 2) - 4199.0) + 143.0*pow(pow(c1, 2) - 1.0, 4)*(346115.0*pow(c1, 8) - 751564.0*pow(c1, 6) + 580754.0*pow(c1, 4) - 187340.0*pow(c1, 2) + 20995.0)); case 21: return 2.25830303955304e-10*pow(c1, 3)*(1091285019825.0*pow(c0, 18) + 347123925225.0*pow(c0, 16)*(37.0*pow(c1, 2) - 13.0) + 198356528700.0*pow(c0, 14)*(259.0*pow(c1, 4) - 210.0*pow(c1, 2) + 39.0) + 32175479700.0*pow(c0, 12)*(2849.0*pow(c1, 6) - 3927.0*pow(c1, 4) + 1683.0*pow(c1, 2) - 221.0) + 180270090.0*pow(c0, 10)*(441595.0*pow(c1, 8) - 907060.0*pow(c1, 6) + 660858.0*pow(c1, 4) - 200260.0*pow(c1, 2) + 20995.0) + 93243150.0*pow(c0, 8)*(365893.0*pow(c1, 10) - 1038345.0*pow(c1, 8) + 1127346.0*pow(c1, 6) - 580754.0*pow(c1, 4) + 140505.0*pow(c1, 2) - 12597.0) + 2102100.0*pow(c0, 6)*(3293037.0*pow(c1, 12) - 12282138.0*pow(c1, 10) + 18423207.0*pow(c1, 8) - 14143068.0*pow(c1, 6) + 5816907.0*pow(c1, 4) - 1203498.0*pow(c1, 2) + 96577.0) + 180180.0*pow(c0, 4)*(3293037.0*pow(c1, 14) - 15575175.0*pow(c1, 12) + 30705345.0*pow(c1, 10) - 32566275.0*pow(c1, 8) + 19959975.0*pow(c1, 6) - 7020405.0*pow(c1, 4) + 1300075.0*pow(c1, 2) - 96577.0) + 45045.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 3)*(365893.0*pow(c1, 10) - 1038345.0*pow(c1, 8) + 1127346.0*pow(c1, 6) - 580754.0*pow(c1, 4) + 140505.0*pow(c1, 2) - 12597.0) + 143.0*pow(pow(c1, 2) - 1.0, 5)*(441595.0*pow(c1, 8) - 907060.0*pow(c1, 6) + 660858.0*pow(c1, 4) - 200260.0*pow(c1, 2) + 20995.0)); case 22: return 4.74243638306138e-9*c0*pow(c1, 3)*(106666956825.0*pow(c0, 18) + 467693579925.0*pow(c0, 16)*(3.0*pow(c1, 2) - 1.0) + 13223768580.0*pow(c0, 14)*(481.0*pow(c1, 4) - 370.0*pow(c1, 2) + 65.0) + 3889343700.0*pow(c0, 12)*(3367.0*pow(c1, 6) - 4403.0*pow(c1, 4) + 1785.0*pow(c1, 2) - 221.0) + 120960450.0*pow(c0, 10)*(111111.0*pow(c1, 8) - 216524.0*pow(c1, 6) + 149226.0*pow(c1, 4) - 42636.0*pow(c1, 2) + 4199.0) + 42921450.0*pow(c0, 8)*(164021.0*pow(c1, 10) - 441595.0*pow(c1, 8) + 453530.0*pow(c1, 6) - 220286.0*pow(c1, 4) + 50065.0*pow(c1, 2) - 4199.0) + 386100.0*pow(c0, 6)*(4756609.0*pow(c1, 12) - 16831078.0*pow(c1, 10) + 23881935.0*pow(c1, 8) - 17285972.0*pow(c1, 6) + 6678671.0*pow(c1, 4) - 1292646.0*pow(c1, 2) + 96577.0) + 1716.0*pow(c0, 4)*(128428443.0*pow(c1, 14) - 576281475.0*pow(c1, 12) + 1074687075.0*pow(c1, 10) - 1074687075.0*pow(c1, 8) + 618759225.0*pow(c1, 6) - 203591745.0*pow(c1, 4) + 35102025.0*pow(c1, 2) - 2414425.0) + 2145.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2)*(4756609.0*pow(c1, 12) - 16831078.0*pow(c1, 10) + 23881935.0*pow(c1, 8) - 17285972.0*pow(c1, 6) + 6678671.0*pow(c1, 4) - 1292646.0*pow(c1, 2) + 96577.0) + 715.0*pow(pow(c1, 2) - 1.0, 4)*(164021.0*pow(c1, 10) - 441595.0*pow(c1, 8) + 453530.0*pow(c1, 6) - 220286.0*pow(c1, 4) + 50065.0*pow(c1, 2) - 4199.0)); case 23: return 1.30417000534188e-8*pow(c1, 3)*(79515367815.0*pow(c0, 20) + 28345065450.0*pow(c0, 18)*(41.0*pow(c1, 2) - 13.0) + 144559833795.0*pow(c0, 16)*(41.0*pow(c1, 4) - 30.0*pow(c1, 2) + 5.0) + 707153400.0*pow(c0, 14)*(19721.0*pow(c1, 6) - 24531.0*pow(c1, 4) + 9435.0*pow(c1, 2) - 1105.0) + 120960450.0*pow(c0, 12)*(138047.0*pow(c1, 8) - 255892.0*pow(c1, 6) + 167314.0*pow(c1, 4) - 45220.0*pow(c1, 2) + 4199.0) + 48384180.0*pow(c0, 10)*(216931.0*pow(c1, 10) - 555555.0*pow(c1, 8) + 541310.0*pow(c1, 6) - 248710.0*pow(c1, 4) + 53295.0*pow(c1, 2) - 4199.0) + 508950.0*pow(c0, 8)*(6724861.0*pow(c1, 12) - 22634898.0*pow(c1, 10) + 30470055.0*pow(c1, 8) - 20862380.0*pow(c1, 6) + 7599867.0*pow(c1, 4) - 1381794.0*pow(c1, 2) + 96577.0) + 2808.0*pow(c0, 6)*(195020969.0*pow(c1, 14) - 832406575.0*pow(c1, 12) + 1472719325.0*pow(c1, 10) - 1393112875.0*pow(c1, 8) + 756261275.0*pow(c1, 6) - 233753485.0*pow(c1, 4) + 37702175.0*pow(c1, 2) - 2414425.0) + 195.0*pow(c0, 4)*(195020969.0*pow(c1, 16) - 1027427544.0*pow(c1, 14) + 2305125900.0*pow(c1, 12) - 2865832200.0*pow(c1, 10) + 2149374150.0*pow(c1, 8) - 990014760.0*pow(c1, 6) + 271455660.0*pow(c1, 4) - 40116600.0*pow(c1, 2) + 2414425.0) + 130.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 3)*(6724861.0*pow(c1, 12) - 22634898.0*pow(c1, 10) + 30470055.0*pow(c1, 8) - 20862380.0*pow(c1, 6) + 7599867.0*pow(c1, 4) - 1381794.0*pow(c1, 2) + 96577.0) + 13.0*pow(pow(c1, 2) - 1.0, 5)*(216931.0*pow(c1, 10) - 555555.0*pow(c1, 8) + 541310.0*pow(c1, 6) - 248710.0*pow(c1, 4) + 53295.0*pow(c1, 2) - 4199.0)); case 24: return 6.21033335877086e-10*c0*pow(c1, 3)*(3419160816045.0*pow(c0, 20) + 1284479018550.0*pow(c0, 18)*(43.0*pow(c1, 2) - 13.0) + 178573912335.0*pow(c0, 16)*(1763.0*pow(c1, 4) - 1230.0*pow(c1, 2) + 195.0) + 476197099560.0*pow(c0, 14)*(1763.0*pow(c1, 6) - 2091.0*pow(c1, 4) + 765.0*pow(c1, 2) - 85.0) + 1367783550.0*pow(c0, 12)*(848003.0*pow(c1, 8) - 1498796.0*pow(c1, 6) + 932178.0*pow(c1, 4) - 239020.0*pow(c1, 2) + 20995.0) + 1016067780.0*pow(c0, 10)*(848003.0*pow(c1, 10) - 2070705.0*pow(c1, 8) + 1919190.0*pow(c1, 6) - 836570.0*pow(c1, 4) + 169575.0*pow(c1, 2) - 12597.0) + 36814050.0*pow(c0, 8)*(9328033.0*pow(c1, 12) - 29936478.0*pow(c1, 10) + 38333295.0*pow(c1, 8) - 24900260.0*pow(c1, 6) + 8580495.0*pow(c1, 4) - 1470942.0*pow(c1, 2) + 96577.0) + 244296.0*pow(c0, 6)*(289169023.0*pow(c1, 14) - 1176850675.0*pow(c1, 12) + 1980553575.0*pow(c1, 10) - 1777419875.0*pow(c1, 8) + 912729125.0*pow(c1, 6) - 265995345.0*pow(c1, 4) + 40302325.0*pow(c1, 2) - 2414425.0) + 819.0*pow(c0, 4)*(8385901667.0*pow(c1, 16) - 42124529304.0*pow(c1, 14) + 89899910100.0*pow(c1, 12) - 106035791400.0*pow(c1, 10) + 75228095250.0*pow(c1, 8) - 32670487080.0*pow(c1, 6) + 8415125460.0*pow(c1, 4) - 1163381400.0*pow(c1, 2) + 65189475.0) + 910.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2)*(289169023.0*pow(c1, 14) - 1176850675.0*pow(c1, 12) + 1980553575.0*pow(c1, 10) - 1777419875.0*pow(c1, 8) + 912729125.0*pow(c1, 6) - 265995345.0*pow(c1, 4) + 40302325.0*pow(c1, 2) - 2414425.0) + 273.0*pow(pow(c1, 2) - 1.0, 4)*(9328033.0*pow(c1, 12) - 29936478.0*pow(c1, 10) + 38333295.0*pow(c1, 8) - 24900260.0*pow(c1, 6) + 8580495.0*pow(c1, 4) - 1470942.0*pow(c1, 2) + 96577.0)); case 25: return 1.10092273178211e-9*pow(c1, 3)*(3945185556975.0*pow(c0, 22) + 1557842501985.0*pow(c0, 20)*(45.0*pow(c1, 2) - 13.0) + 3441745062525.0*pow(c0, 18)*(129.0*pow(c1, 4) - 86.0*pow(c1, 2) + 13.0) + 50367000915.0*pow(c0, 16)*(26445.0*pow(c1, 6) - 29971.0*pow(c1, 4) + 10455.0*pow(c1, 2) - 1105.0) + 26508947850.0*pow(c0, 14)*(79335.0*pow(c1, 8) - 133988.0*pow(c1, 6) + 79458.0*pow(c1, 4) - 19380.0*pow(c1, 2) + 1615.0) + 716458050.0*pow(c0, 12)*(2544009.0*pow(c1, 10) - 5936021.0*pow(c1, 8) + 5245786.0*pow(c1, 6) - 2175082.0*pow(c1, 4) + 418285.0*pow(c1, 2) - 29393.0) + 68530770.0*pow(c0, 10)*(12720045.0*pow(c1, 12) - 39008138.0*pow(c1, 10) + 47626215.0*pow(c1, 8) - 29427580.0*pow(c1, 6) + 9620555.0*pow(c1, 4) - 1560090.0*pow(c1, 2) + 96577.0) + 2670030.0*pow(c0, 8)*(83952297.0*pow(c1, 14) - 326481155.0*pow(c1, 12) + 523888365.0*pow(c1, 10) - 447221775.0*pow(c1, 8) + 217877275.0*pow(c1, 6) - 60063465.0*pow(c1, 4) + 8580495.0*pow(c1, 2) - 482885.0) + 20097.0*pow(c0, 6)*(1445845115.0*pow(c1, 16) - 6940056552.0*pow(c1, 14) + 14122208100.0*pow(c1, 12) - 15844428600.0*pow(c1, 10) + 10664519250.0*pow(c1, 8) - 4381099800.0*pow(c1, 6) + 1063981380.0*pow(c1, 4) - 138179400.0*pow(c1, 2) + 7243275.0) + 1155.0*pow(c0, 4)*(1445845115.0*pow(c1, 18) - 8385901667.0*pow(c1, 16) + 21062264652.0*pow(c1, 14) - 29966636700.0*pow(c1, 12) + 26508947850.0*pow(c1, 10) - 15045619050.0*pow(c1, 8) + 5445081180.0*pow(c1, 6) - 1202160780.0*pow(c1, 4) + 145422675.0*pow(c1, 2) - 7243275.0) + 385.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 3)*(83952297.0*pow(c1, 14) - 326481155.0*pow(c1, 12) + 523888365.0*pow(c1, 10) - 447221775.0*pow(c1, 8) + 217877275.0*pow(c1, 6) - 60063465.0*pow(c1, 4) + 8580495.0*pow(c1, 2) - 482885.0) + 7.0*pow(pow(c1, 2) - 1.0, 5)*(12720045.0*pow(c1, 12) - 39008138.0*pow(c1, 10) + 47626215.0*pow(c1, 8) - 29427580.0*pow(c1, 6) + 9620555.0*pow(c1, 4) - 1560090.0*pow(c1, 2) + 96577.0)); case 26: return 6.47601606930651e-11*c0*pow(c1, 3)*(137052315653175.0*pow(c0, 22) + 56749976858025.0*pow(c0, 20)*(47.0*pow(c1, 2) - 13.0) + 132416612668725.0*pow(c0, 18)*(141.0*pow(c1, 4) - 90.0*pow(c1, 2) + 13.0) + 10325235187575.0*pow(c0, 16)*(6063.0*pow(c1, 6) - 6579.0*pow(c1, 4) + 2193.0*pow(c1, 2) - 221.0) + 90130422690.0*pow(c0, 14)*(1242915.0*pow(c1, 8) - 2009820.0*pow(c1, 6) + 1138898.0*pow(c1, 4) - 264860.0*pow(c1, 2) + 20995.0) + 450652113450.0*pow(c0, 12)*(248583.0*pow(c1, 10) - 555345.0*pow(c1, 8) + 468958.0*pow(c1, 6) - 185402.0*pow(c1, 4) + 33915.0*pow(c1, 2) - 2261.0) + 529555950.0*pow(c0, 10)*(119568423.0*pow(c1, 12) - 351073242.0*pow(c1, 10) + 409585449.0*pow(c1, 8) - 241306156.0*pow(c1, 6) + 75040329.0*pow(c1, 4) - 11544666.0*pow(c1, 2) + 676039.0) + 166431870.0*pow(c0, 8)*(119568423.0*pow(c1, 14) - 445201575.0*pow(c1, 12) + 682642415.0*pow(c1, 10) - 555639175.0*pow(c1, 8) + 257491325.0*pow(c1, 6) - 67343885.0*pow(c1, 4) + 9100525.0*pow(c1, 2) - 482885.0) + 7565085.0*pow(c0, 6)*(438417551.0*pow(c1, 16) - 2014855128.0*pow(c1, 14) + 3917773860.0*pow(c1, 12) - 4191106920.0*pow(c1, 10) + 2683330650.0*pow(c1, 8) - 1045810920.0*pow(c1, 6) + 240253860.0*pow(c1, 4) - 29418840.0*pow(c1, 2) + 1448655.0) + 3927.0*pow(c0, 4)*(67954720405.0*pow(c1, 18) - 377365575015.0*pow(c1, 16) + 905677380036.0*pow(c1, 14) - 1228632104700.0*pow(c1, 12) + 1033848966150.0*pow(c1, 10) - 556687904850.0*pow(c1, 8) + 190577841300.0*pow(c1, 6) - 39671305740.0*pow(c1, 4) + 4508102925.0*pow(c1, 2) - 210054975.0) + 19635.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2)*(438417551.0*pow(c1, 16) - 2014855128.0*pow(c1, 14) + 3917773860.0*pow(c1, 12) - 4191106920.0*pow(c1, 10) + 2683330650.0*pow(c1, 8) - 1045810920.0*pow(c1, 6) + 240253860.0*pow(c1, 4) - 29418840.0*pow(c1, 2) + 1448655.0) + 595.0*pow(pow(c1, 2) - 1.0, 4)*(119568423.0*pow(c1, 14) - 445201575.0*pow(c1, 12) + 682642415.0*pow(c1, 10) - 555639175.0*pow(c1, 8) + 257491325.0*pow(c1, 6) - 67343885.0*pow(c1, 4) + 9100525.0*pow(c1, 2) - 482885.0)); case 27: return 0.268756006221579*pow(c1, 27) + 2.25775169603752e-10*pow(c1, 25)*(499955432704.0*pow(c0, 2) - 10203172096.0) + 2.48352686564128e-9*pow(c1, 23)*(2749754879872.0*pow(c0, 4) - 336704679168.0*pow(c0, 2) + 3581964672.0) + 2.75947429515697e-10*pow(c1, 21)*(511454407656192.0*pow(c0, 6) - 156567675813120.0*pow(c0, 4) + 9993681434880.0*pow(c0, 2) - 74027269888.0) + 2.48352686564128e-9*pow(c1, 19)*(529720636501056.0*pow(c0, 8) - 302697506572032.0*pow(c0, 6) + 48302793601920.0*pow(c0, 4) - 2146790826752.0*pow(c0, 2) + 12481342016.0) + 7.09579104468936e-11*pow(c1, 17)*(8.89930669321774e+16*pow(c0, 10) - 8.17283267744486e+16*pow(c0, 8) + 2.43446079753677e+16*pow(c0, 6) - 2.70495644170752e+15*pow(c0, 4) + 94358945640960.0*pow(c0, 2) - 460287539712.0) + 2.48352686564128e-9*pow(c1, 15)*(6.74189901001344e+15*pow(c0, 12) - 9.08092519716096e+15*pow(c0, 10) + 4.3472514241728e+15*pow(c0, 8) - 901652147235840.0*pow(c0, 6) + 78632454700800.0*pow(c0, 4) - 2301437698560.0*pow(c0, 2) + 9835203840.0) + 2.48352686564128e-9*pow(c1, 13)*(1.02239787184819e+16*pow(c0, 14) - 1.89873890486093e+16*pow(c0, 12) + 1.33315710341299e+16*pow(c0, 10) - 4.44385701137664e+15*pow(c0, 8) + 723418583247360.0*pow(c0, 6) - 52933067066880.0*pow(c0, 4) + 1357258129920.0*pow(c0, 2) - 5240378880.0) + 2.48352686564128e-9*pow(c1, 11)*(8.94598137867168e+15*pow(c0, 16) - 2.19085258253184e+16*pow(c0, 14) + 2.12093175542976e+16*pow(c0, 12) - 1.03689996932122e+16*pow(c0, 10) + 2.7128196871776e+15*pow(c0, 8) - 370531469468160.0*pow(c0, 6) + 23752017273600.0*pow(c0, 4) - 550239782400.0*pow(c0, 2) + 1965142080.0) + 1.46089815625957e-10*pow(c1, 9)*(7.55438427532275e+16*pow(c0, 18) - 2.35881794719261e+17*pow(c0, 16) + 3.01125695386291e+17*pow(c0, 14) - 2.02981024297426e+17*pow(c0, 12) + 7.78880674629658e+16*pow(c0, 10) - 1.70973806626022e+16*pow(c0, 8) + 2.04584042116608e+15*pow(c0, 6) - 118484966476800.0*pow(c0, 4) + 2538963567360.0*pow(c0, 2) - 8548698880.0) + 2.48352686564128e-9*pow(c1, 7)*(1.19279751715622e+15*pow(c0, 20) - 4.62513322978944e+15*pow(c0, 18) + 7.52814238465728e+15*pow(c0, 16) - 6.69168211969536e+15*pow(c0, 14) + 3.54036670286208e+15*pow(c0, 12) - 1.13982537750682e+15*pow(c0, 10) + 219197187982080.0*pow(c0, 8) - 23696993295360.0*pow(c0, 6) + 1269481783680.0*pow(c0, 4) - 25646096640.0*pow(c0, 2) + 82729344.0) + 2.25775169603752e-10*pow(c1, 5)*(1.70399645308032e+15*pow(c0, 22) - 8.03312613595008e+15*pow(c0, 20) + 1.62371698492608e+16*pow(c0, 18) - 1.84021258291622e+16*pow(c0, 16) + 1.28386924389504e+16*pow(c0, 14) - 5.69912688753408e+15*pow(c0, 12) + 1.60744604520192e+15*pow(c0, 10) - 279285992409600.0*pow(c0, 8) + 27928599240960.0*pow(c0, 6) - 1410535315200.0*pow(c0, 4) + 27300683520.0*pow(c0, 2) - 85582080.0) + 3.58373285085321e-12*pow(c1, 3)*(5.05642425751008e+15*pow(c0, 24) - 2.84810835729139e+16*pow(c0, 22) + 6.99907479291821e+16*pow(c0, 20) - 9.85054970855155e+16*pow(c0, 18) + 8.76240758958365e+16*pow(c0, 16) - 5.12921419878067e+16*pow(c0, 14) + 1.99469441063693e+16*pow(c0, 12) - 5.08300506185472e+15*pow(c0, 10) + 816911527798080.0*pow(c0, 8) - 77015228209920.0*pow(c0, 6) + 3726543300480.0*pow(c0, 4) - 70091723520.0*pow(c0, 2) + 216332480.0); case 28: return 2.42850602598994e-11*c0*pow(c1, 3)*(1.5221943858546e+15*pow(c0, 24) + 688775740205700.0*pow(c0, 22)*(51.0*pow(c1, 2) - 13.0) + 355633188310290.0*pow(c0, 20)*(833.0*pow(c1, 4) - 490.0*pow(c1, 2) + 65.0) + 529666450674900.0*pow(c0, 18)*(2303.0*pow(c1, 6) - 2303.0*pow(c1, 4) + 705.0*pow(c1, 2) - 65.0) + 7789212509925.0*pow(c0, 16)*(352359.0*pow(c1, 8) - 525084.0*pow(c1, 6) + 273258.0*pow(c1, 4) - 58140.0*pow(c1, 2) + 4199.0) + 4927129773720.0*pow(c0, 14)*(721497.0*pow(c1, 10) - 1485435.0*pow(c1, 8) + 1151970.0*pow(c1, 6) - 416670.0*pow(c1, 4) + 69445.0*pow(c1, 2) - 4199.0) + 91436660700.0*pow(c0, 12)*(29581377.0*pow(c1, 12) - 80043726.0*pow(c1, 10) + 85761135.0*pow(c1, 8) - 46225860.0*pow(c1, 6) + 13097327.0*pow(c1, 4) - 1827534.0*pow(c1, 2) + 96577.0) + 13584875304.0*pow(c0, 10)*(88744131.0*pow(c1, 14) - 304514175.0*pow(c1, 12) + 428805675.0*pow(c1, 10) - 319323375.0*pow(c1, 8) + 134825425.0*pow(c1, 6) - 31981845.0*pow(c1, 4) + 3900225.0*pow(c1, 2) - 185725.0) + 64723505.0*pow(c0, 8)*(4742880779.0*pow(c1, 16) - 20087495064.0*pow(c1, 14) + 35870526900.0*pow(c1, 12) - 35107324200.0*pow(c1, 10) + 20479272450.0*pow(c1, 8) - 7239184680.0*pow(c1, 6) + 1500806580.0*pow(c1, 4) - 164923800.0*pow(c1, 2) + 7243275.0) + 1275340.0*pow(c0, 6)*(33200165453.0*pow(c1, 18) - 169906729083.0*pow(c1, 16) + 374488300836.0*pow(c1, 14) - 464790444300.0*pow(c1, 12) + 356339340630.0*pow(c1, 10) - 174026189610.0*pow(c1, 8) + 53764188660.0*pow(c1, 6) - 10043859420.0*pow(c1, 4) + 1017958725.0*pow(c1, 2) - 42010995.0) + 2618.0*pow(c0, 4)*(1095605459949.0*pow(c1, 20) - 6659562599690.0*pow(c1, 18) + 17736182025705.0*pow(c1, 16) - 27170321401080.0*pow(c1, 14) + 26415590251050.0*pow(c1, 12) - 16955123044860.0*pow(c1, 10) + 7236942763050.0*pow(c1, 8) - 2014680036600.0*pow(c1, 6) + 347123925225.0*pow(c1, 4) - 33059421450.0*pow(c1, 2) + 1302340845.0) + 2380.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2)*(33200165453.0*pow(c1, 18) - 169906729083.0*pow(c1, 16) + 374488300836.0*pow(c1, 14) - 464790444300.0*pow(c1, 12) + 356339340630.0*pow(c1, 10) - 174026189610.0*pow(c1, 8) + 53764188660.0*pow(c1, 6) - 10043859420.0*pow(c1, 4) + 1017958725.0*pow(c1, 2) - 42010995.0) + 119.0*pow(pow(c1, 2) - 1.0, 4)*(4742880779.0*pow(c1, 16) - 20087495064.0*pow(c1, 14) + 35870526900.0*pow(c1, 12) - 35107324200.0*pow(c1, 10) + 20479272450.0*pow(c1, 8) - 7239184680.0*pow(c1, 6) + 1500806580.0*pow(c1, 4) - 164923800.0*pow(c1, 2) + 7243275.0)); case 29: return 1.44496108546402e-9*pow(c1, 3)*(52150163187003.0*pow(c0, 26) + 24599133578775.0*pow(c0, 24)*(53.0*pow(c1, 2) - 13.0) + 13312472289690.0*pow(c0, 22)*(901.0*pow(c1, 4) - 510.0*pow(c1, 2) + 65.0) + 20919599312370.0*pow(c0, 20)*(2597.0*pow(c1, 6) - 2499.0*pow(c1, 4) + 735.0*pow(c1, 2) - 65.0) + 1112744644275.0*pow(c0, 18)*(122059.0*pow(c1, 8) - 175028.0*pow(c1, 6) + 87514.0*pow(c1, 4) - 17860.0*pow(c1, 2) + 1235.0) + 222548928855.0*pow(c0, 16)*(889287.0*pow(c1, 10) - 1761795.0*pow(c1, 8) + 1312710.0*pow(c1, 6) - 455430.0*pow(c1, 4) + 72675.0*pow(c1, 2) - 4199.0) + 4500483900.0*pow(c0, 14)*(38239341.0*pow(c1, 12) - 99566586.0*pow(c1, 10) + 102495015.0*pow(c1, 8) - 52990620.0*pow(c1, 6) + 14375115.0*pow(c1, 4) - 1916682.0*pow(c1, 2) + 96577.0) + 57079308.0*pow(c0, 12)*(1567812981.0*pow(c1, 14) - 5176740975.0*pow(c1, 12) + 7003826025.0*pow(c1, 10) - 5002732875.0*pow(c1, 8) + 2022381375.0*pow(c1, 6) - 458406445.0*pow(c1, 4) + 53303075.0*pow(c1, 2) - 2414425.0) + 52322699.0*pow(c0, 10)*(522604327.0*pow(c1, 16) - 2129859144.0*pow(c1, 14) + 3654170100.0*pow(c1, 12) - 3430445400.0*pow(c1, 10) + 1915940250.0*pow(c1, 8) - 647162040.0*pow(c1, 6) + 127927380.0*pow(c1, 4) - 13372200.0*pow(c1, 2) + 557175.0) + 18755.0*pow(c0, 8)*(251372681287.0*pow(c1, 18) - 1237891883319.0*pow(c1, 16) + 2621418105852.0*pow(c1, 14) - 3120735840300.0*pow(c1, 12) + 2290752904050.0*pow(c1, 10) - 1069018021890.0*pow(c1, 8) + 314904533580.0*pow(c1, 6) - 55958645340.0*pow(c1, 4) + 5380638975.0*pow(c1, 2) - 210054975.0) + 242.0*pow(c0, 6)*(1759608769009.0*pow(c1, 20) - 10292051290430.0*pow(c1, 18) + 26335543007865.0*pow(c1, 16) - 38697124419720.0*pow(c1, 14) + 36021259433250.0*pow(c1, 12) - 22093039119060.0*pow(c1, 10) + 8991353129850.0*pow(c1, 8) - 2380985497800.0*pow(c1, 6) + 389199552525.0*pow(c1, 4) - 35063022750.0*pow(c1, 2) + 1302340845.0) + 10.0*pow(c0, 4)*(1759608769009.0*pow(c1, 22) - 12051660059439.0*pow(c1, 20) + 36627594298295.0*pow(c1, 18) - 65032667427585.0*pow(c1, 16) + 74718383852970.0*pow(c1, 14) - 58114298552310.0*pow(c1, 12) + 31084392248910.0*pow(c1, 10) - 11372338627650.0*pow(c1, 8) + 2770185050325.0*pow(c1, 6) - 424262575275.0*pow(c1, 4) + 36365363595.0*pow(c1, 2) - 1302340845.0) + pow(c0, 2)*pow(pow(c1, 2) - 1.0, 3)*(251372681287.0*pow(c1, 18) - 1237891883319.0*pow(c1, 16) + 2621418105852.0*pow(c1, 14) - 3120735840300.0*pow(c1, 12) + 2290752904050.0*pow(c1, 10) - 1069018021890.0*pow(c1, 8) + 314904533580.0*pow(c1, 6) - 55958645340.0*pow(c1, 4) + 5380638975.0*pow(c1, 2) - 210054975.0) + pow(pow(c1, 2) - 1.0, 5)*(522604327.0*pow(c1, 16) - 2129859144.0*pow(c1, 14) + 3654170100.0*pow(c1, 12) - 3430445400.0*pow(c1, 10) + 1915940250.0*pow(c1, 8) - 647162040.0*pow(c1, 6) + 127927380.0*pow(c1, 4) - 13372200.0*pow(c1, 2) + 557175.0)); default: return 0.; } case 8: switch(j) { case 4: return 4.44000444000444e-5*pow(c1, 4); case 5: return 0.000222000222000222*c0*pow(c1, 4); case 6: return 7.4000074000074e-6*pow(c1, 4)*(105.0*pow(c0, 2) + 7.0*pow(c1, 2) - 15.0); case 7: return 0.000155400155400155*c0*pow(c1, 4)*(15.0*pow(c0, 2) + 3.0*pow(c1, 2) - 5.0); case 8: return 2.28529640294346e-6*pow(c1, 4)*(2805.0*pow(c0, 4) + 102.0*pow(c0, 2)*(11.0*pow(c1, 2) - 15.0) + 33.0*pow(c1, 4) - 102.0*pow(c1, 2) + 85.0); case 9: return 2.28529640294346e-6*c0*pow(c1, 4)*(7293.0*pow(c0, 4) + 374.0*pow(c0, 2)*(13.0*pow(c1, 2) - 15.0) + 429.0*pow(c1, 4) - 1122.0*pow(c1, 2) + 765.0); case 10: return 1.80418137074484e-7*pow(c1, 4)*(230945.0*pow(c0, 6) + 230945.0*pow(c0, 4)*(pow(c1, 2) - 1.0) + 209.0*pow(c0, 2)*(195.0*pow(c1, 4) - 442.0*pow(c1, 2) + 255.0) + 715.0*pow(c1, 6) - 2717.0*pow(c1, 4) + 3553.0*pow(c1, 2) - 1615.0); case 11: return 2.8351421540276e-7*c0*pow(c1, 4)*(356915.0*pow(c0, 6) + 29393.0*pow(c0, 4)*(17.0*pow(c1, 2) - 15.0) + 146965.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2) + 7735.0*pow(c1, 6) - 25935.0*pow(c1, 4) + 29393.0*pow(c1, 2) - 11305.0); case 12: return 0.000248015873015873*pow(c1, 12) + 0.00109649122807018*pow(c1, 10)*(19.0*pow(c0, 2) - 1.0) + 0.000612745098039216*pow(c1, 8)*(323.0*pow(c0, 4) - 102.0*pow(c0, 2) + 3.0) + 0.00138888888888889*pow(c1, 6)*(323.0*pow(c0, 6) - 255.0*pow(c0, 4) + 45.0*pow(c0, 2) - 1.0) + 5.72344322344322e-5*pow(c1, 4)*(4199.0*pow(c0, 8) - 6188.0*pow(c0, 6) + 2730.0*pow(c0, 4) - 364.0*pow(c0, 2) + 7.0); case 13: return 4.96031746031746e-5*c0*pow(c1, 4)*(11305.0*pow(c0, 8) + 3876.0*pow(c0, 6)*(7.0*pow(c1, 2) - 5.0) + 42.0*pow(c0, 4)*(399.0*pow(c1, 4) - 646.0*pow(c1, 2) + 255.0) + 420.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2)*(7.0*pow(c1, 2) - 5.0) + 105.0*pow(pow(c1, 2) - 1.0, 4)); case 14: return 0.000173611111111111*pow(c1, 4)*(7429.0*pow(c0, 10) + 969.0*pow(c0, 8)*(23.0*pow(c1, 2) - 15.0) + 114.0*pow(c0, 6)*(161.0*pow(c1, 4) - 238.0*pow(c1, 2) + 85.0) + 30.0*pow(c0, 4)*(161.0*pow(c1, 6) - 399.0*pow(c1, 4) + 323.0*pow(c1, 2) - 85.0) + 15.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 3)*(23.0*pow(c1, 2) - 15.0) + 3.0*pow(pow(c1, 2) - 1.0, 5)); case 15: return 5.26094276094276e-6*c0*pow(c1, 4)*(557175.0*pow(c0, 10) + 408595.0*pow(c0, 8)*(5.0*pow(c1, 2) - 3.0) + 3762.0*pow(c0, 6)*(575.0*pow(c1, 4) - 782.0*pow(c1, 2) + 255.0) + 198.0*pow(c0, 4)*(4025.0*pow(c1, 6) - 9177.0*pow(c1, 4) + 6783.0*pow(c1, 2) - 1615.0) + 165.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2)*(575.0*pow(c1, 4) - 782.0*pow(c1, 2) + 255.0) + 495.0*pow(pow(c1, 2) - 1.0, 4)*(5.0*pow(c1, 2) - 3.0)); case 16: return 3.94570707070707e-6*pow(c1, 4)*(1671525.0*pow(c0, 12) + 817190.0*pow(c0, 10)*(9.0*pow(c1, 2) - 5.0) + 72105.0*pow(c0, 8)*(135.0*pow(c1, 4) - 170.0*pow(c1, 2) + 51.0) + 924.0*pow(c0, 6)*(5175.0*pow(c1, 6) - 10925.0*pow(c1, 4) + 7429.0*pow(c1, 2) - 1615.0) + 165.0*pow(c0, 4)*(5175.0*pow(c1, 8) - 16100.0*pow(c1, 6) + 18354.0*pow(c1, 4) - 9044.0*pow(c1, 2) + 1615.0) + 330.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 3)*(135.0*pow(c1, 4) - 170.0*pow(c1, 2) + 51.0) + 33.0*pow(pow(c1, 2) - 1.0, 5)*(9.0*pow(c1, 2) - 5.0)); case 17: return 3.03515928515929e-7*c0*pow(c1, 4)*(48474225.0*pow(c0, 12) + 8691930.0*pow(c0, 10)*(29.0*pow(c1, 2) - 15.0) + 1562275.0*pow(c0, 8)*(261.0*pow(c1, 4) - 306.0*pow(c1, 2) + 85.0) + 197340.0*pow(c0, 6)*(1305.0*pow(c1, 6) - 2565.0*pow(c1, 4) + 1615.0*pow(c1, 2) - 323.0) + 429.0*pow(c0, 4)*(150075.0*pow(c1, 8) - 434700.0*pow(c1, 6) + 458850.0*pow(c1, 4) - 208012.0*pow(c1, 2) + 33915.0) + 4290.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2)*(1305.0*pow(c1, 6) - 2565.0*pow(c1, 4) + 1615.0*pow(c1, 2) - 323.0) + 429.0*pow(pow(c1, 2) - 1.0, 4)*(261.0*pow(c1, 4) - 306.0*pow(c1, 2) + 85.0)); case 18: return 2.16797091797092e-8*pow(c1, 4)*(1502700975.0*pow(c0, 14) + 294076965.0*pow(c0, 12)*(31.0*pow(c1, 2) - 15.0) + 19684665.0*pow(c0, 10)*(899.0*pow(c1, 4) - 986.0*pow(c1, 2) + 255.0) + 1726725.0*pow(c0, 8)*(8091.0*pow(c1, 6) - 14877.0*pow(c1, 4) + 8721.0*pow(c1, 2) - 1615.0) + 115115.0*pow(c0, 6)*(40455.0*pow(c1, 8) - 109620.0*pow(c1, 6) + 107730.0*pow(c1, 4) - 45220.0*pow(c1, 2) + 6783.0) + 15015.0*pow(c0, 4)*(40455.0*pow(c1, 10) - 150075.0*pow(c1, 8) + 217350.0*pow(c1, 6) - 152950.0*pow(c1, 4) + 52003.0*pow(c1, 2) - 6783.0) + 3003.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 3)*(8091.0*pow(c1, 6) - 14877.0*pow(c1, 4) + 8721.0*pow(c1, 2) - 1615.0) + 143.0*pow(pow(c1, 2) - 1.0, 5)*(899.0*pow(c1, 4) - 986.0*pow(c1, 2) + 255.0)); case 19: return 6.50391275391275e-8*c0*pow(c1, 4)*(1101980715.0*pow(c0, 14) + 701260455.0*pow(c0, 12)*(11.0*pow(c1, 2) - 5.0) + 17298645.0*pow(c0, 10)*(1023.0*pow(c1, 4) - 1054.0*pow(c1, 2) + 255.0) + 1726725.0*pow(c0, 8)*(9889.0*pow(c1, 6) - 17081.0*pow(c1, 4) + 9367.0*pow(c1, 2) - 1615.0) + 82225.0*pow(c0, 6)*(89001.0*pow(c1, 8) - 226548.0*pow(c1, 6) + 208278.0*pow(c1, 4) - 81396.0*pow(c1, 2) + 11305.0) + 1001.0*pow(c0, 4)*(1335015.0*pow(c1, 10) - 4652325.0*pow(c1, 8) + 6303150.0*pow(c1, 6) - 4129650.0*pow(c1, 4) + 1300075.0*pow(c1, 2) - 156009.0) + 1001.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2)*(89001.0*pow(c1, 8) - 226548.0*pow(c1, 6) + 208278.0*pow(c1, 4) - 81396.0*pow(c1, 2) + 11305.0) + 143.0*pow(pow(c1, 2) - 1.0, 4)*(9889.0*pow(c1, 6) - 17081.0*pow(c1, 4) + 9367.0*pow(c1, 2) - 1615.0)); case 20: return 4.06494547119547e-9*pow(c1, 4)*(38569325025.0*pow(c0, 16) + 44079228600.0*pow(c0, 14)*(7.0*pow(c1, 2) - 3.0) + 2145031980.0*pow(c0, 12)*(385.0*pow(c1, 4) - 374.0*pow(c1, 2) + 85.0) + 80120040.0*pow(c0, 10)*(11935.0*pow(c1, 6) - 19437.0*pow(c1, 4) + 10013.0*pow(c1, 2) - 1615.0) + 10360350.0*pow(c0, 8)*(49445.0*pow(c1, 8) - 118668.0*pow(c1, 6) + 102486.0*pow(c1, 4) - 37468.0*pow(c1, 2) + 4845.0) + 200200.0*pow(c0, 6)*(623007.0*pow(c1, 10) - 2047023.0*pow(c1, 8) + 2605302.0*pow(c1, 6) - 1596798.0*pow(c1, 4) + 468027.0*pow(c1, 2) - 52003.0) + 20020.0*pow(c0, 4)*(623007.0*pow(c1, 12) - 2670030.0*pow(c1, 10) + 4652325.0*pow(c1, 8) - 4202100.0*pow(c1, 6) + 2064825.0*pow(c1, 4) - 520030.0*pow(c1, 2) + 52003.0) + 8008.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 3)*(49445.0*pow(c1, 8) - 118668.0*pow(c1, 6) + 102486.0*pow(c1, 4) - 37468.0*pow(c1, 2) + 4845.0) + 143.0*pow(pow(c1, 2) - 1.0, 5)*(11935.0*pow(c1, 6) - 19437.0*pow(c1, 4) + 10013.0*pow(c1, 2) - 1615.0)); case 21: return 9.48487276612277e-9*c0*pow(c1, 4)*(35976429225.0*pow(c0, 16) + 8815845720.0*pow(c0, 14)*(37.0*pow(c1, 2) - 15.0) + 3889343700.0*pow(c0, 12)*(259.0*pow(c1, 4) - 238.0*pow(c1, 2) + 51.0) + 96768360.0*pow(c0, 10)*(14245.0*pow(c1, 6) - 21945.0*pow(c1, 4) + 10659.0*pow(c1, 2) - 1615.0) + 14307150.0*pow(c0, 8)*(63085.0*pow(c1, 8) - 143220.0*pow(c1, 6) + 116622.0*pow(c1, 4) - 40052.0*pow(c1, 2) + 4845.0) + 772200.0*pow(c0, 6)*(365893.0*pow(c1, 10) - 1137235.0*pow(c1, 8) + 1364682.0*pow(c1, 6) - 785726.0*pow(c1, 4) + 215441.0*pow(c1, 2) - 22287.0) + 1716.0*pow(c0, 4)*(23051259.0*pow(c1, 12) - 93451050.0*pow(c1, 10) + 153526725.0*pow(c1, 8) - 130265100.0*pow(c1, 6) + 59879925.0*pow(c1, 4) - 14040810.0*pow(c1, 2) + 1300075.0) + 5720.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2)*(365893.0*pow(c1, 10) - 1137235.0*pow(c1, 8) + 1364682.0*pow(c1, 6) - 785726.0*pow(c1, 4) + 215441.0*pow(c1, 2) - 22287.0) + 429.0*pow(pow(c1, 2) - 1.0, 4)*(63085.0*pow(c1, 8) - 143220.0*pow(c1, 6) + 116622.0*pow(c1, 4) - 40052.0*pow(c1, 2) + 4845.0)); case 22: return 5.21668002136752e-8*pow(c1, 4)*(14172532725.0*pow(c0, 18) + 11119987215.0*pow(c0, 16)*(13.0*pow(c1, 2) - 5.0) + 353576700.0*pow(c0, 14)*(1443.0*pow(c1, 4) - 1258.0*pow(c1, 2) + 255.0) + 241920900.0*pow(c0, 12)*(3367.0*pow(c1, 6) - 4921.0*pow(c1, 4) + 2261.0*pow(c1, 2) - 323.0) + 24192090.0*pow(c0, 10)*(26455.0*pow(c1, 8) - 56980.0*pow(c1, 6) + 43890.0*pow(c1, 4) - 14212.0*pow(c1, 2) + 1615.0) + 508950.0*pow(c0, 8)*(492063.0*pow(c1, 10) - 1450955.0*pow(c1, 8) + 1647030.0*pow(c1, 6) - 894102.0*pow(c1, 4) + 230299.0*pow(c1, 2) - 22287.0) + 9828.0*pow(c0, 6)*(4756609.0*pow(c1, 12) - 18294650.0*pow(c1, 10) + 28430875.0*pow(c1, 8) - 22744700.0*pow(c1, 6) + 9821575.0*pow(c1, 4) - 2154410.0*pow(c1, 2) + 185725.0) + 780.0*pow(c0, 4)*(4756609.0*pow(c1, 14) - 23051259.0*pow(c1, 12) + 46725525.0*pow(c1, 10) - 51175575.0*pow(c1, 8) + 32566275.0*pow(c1, 6) - 11975985.0*pow(c1, 4) + 2340135.0*pow(c1, 2) - 185725.0) + 195.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 3)*(492063.0*pow(c1, 10) - 1450955.0*pow(c1, 8) + 1647030.0*pow(c1, 6) - 894102.0*pow(c1, 4) + 230299.0*pow(c1, 2) - 22287.0) + 13.0*pow(pow(c1, 2) - 1.0, 5)*(26455.0*pow(c1, 8) - 56980.0*pow(c1, 6) + 43890.0*pow(c1, 4) - 14212.0*pow(c1, 2) + 1615.0)); case 23: return 5.21668002136752e-8*c0*pow(c1, 4)*(30582833775.0*pow(c0, 18) + 8503519635.0*pow(c0, 16)*(41.0*pow(c1, 2) - 15.0) + 2616467580.0*pow(c0, 14)*(533.0*pow(c1, 4) - 442.0*pow(c1, 2) + 85.0) + 130265100.0*pow(c0, 12)*(19721.0*pow(c1, 6) - 27417.0*pow(c1, 4) + 11951.0*pow(c1, 2) - 1615.0) + 120960450.0*pow(c0, 10)*(19721.0*pow(c1, 8) - 40404.0*pow(c1, 6) + 29526.0*pow(c1, 4) - 9044.0*pow(c1, 2) + 969.0) + 5259150.0*pow(c0, 8)*(216931.0*pow(c1, 10) - 608465.0*pow(c1, 8) + 655270.0*pow(c1, 6) - 336490.0*pow(c1, 4) + 81719.0*pow(c1, 2) - 7429.0) + 40716.0*pow(c0, 6)*(6724861.0*pow(c1, 12) - 24603150.0*pow(c1, 10) + 36273875.0*pow(c1, 8) - 27450500.0*pow(c1, 6) + 11176275.0*pow(c1, 4) - 2302990.0*pow(c1, 2) + 185725.0) + 156.0*pow(c0, 4)*(195020969.0*pow(c1, 14) - 898999101.0*pow(c1, 12) + 1728844425.0*pow(c1, 10) - 1791145125.0*pow(c1, 8) + 1074687075.0*pow(c1, 6) - 371255535.0*pow(c1, 4) + 67863915.0*pow(c1, 2) - 5014575.0) + 195.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2)*(6724861.0*pow(c1, 12) - 24603150.0*pow(c1, 10) + 36273875.0*pow(c1, 8) - 27450500.0*pow(c1, 6) + 11176275.0*pow(c1, 4) - 2302990.0*pow(c1, 2) + 185725.0) + 65.0*pow(pow(c1, 2) - 1.0, 4)*(216931.0*pow(c1, 10) - 608465.0*pow(c1, 8) + 655270.0*pow(c1, 6) - 336490.0*pow(c1, 4) + 81719.0*pow(c1, 2) - 7429.0)); case 24: return 4.3472333511396e-9*pow(c1, 4)*(789037111395.0*pow(c0, 20) + 232429536690.0*pow(c0, 18)*(43.0*pow(c1, 2) - 15.0) + 25510558905.0*pow(c0, 16)*(1763.0*pow(c1, 4) - 1394.0*pow(c1, 2) + 255.0) + 4131264600.0*pow(c0, 14)*(22919.0*pow(c1, 6) - 30381.0*pow(c1, 4) + 12597.0*pow(c1, 2) - 1615.0) + 120960450.0*pow(c0, 12)*(848003.0*pow(c1, 8) - 1656564.0*pow(c1, 6) + 1151514.0*pow(c1, 4) - 334628.0*pow(c1, 2) + 33915.0) + 69420780.0*pow(c0, 10)*(848003.0*pow(c1, 10) - 2267915.0*pow(c1, 8) + 2323230.0*pow(c1, 6) - 1131830.0*pow(c1, 4) + 260015.0*pow(c1, 2) - 22287.0) + 1893294.0*pow(c0, 8)*(9328033.0*pow(c1, 12) - 32539650.0*pow(c1, 10) + 45634875.0*pow(c1, 8) - 32763500.0*pow(c1, 6) + 12618375.0*pow(c1, 4) - 2451570.0*pow(c1, 2) + 185725.0) + 9048.0*pow(c0, 6)*(289169023.0*pow(c1, 14) - 1270998729.0*pow(c1, 12) + 2324997675.0*pow(c1, 10) - 2285254125.0*pow(c1, 8) + 1297036125.0*pow(c1, 6) - 422463195.0*pow(c1, 4) + 72544185.0*pow(c1, 2) - 5014575.0) + 585.0*pow(c0, 4)*(289169023.0*pow(c1, 16) - 1560167752.0*pow(c1, 14) + 3595996404.0*pow(c1, 12) - 4610251800.0*pow(c1, 10) + 3582290250.0*pow(c1, 8) - 1719499320.0*pow(c1, 6) + 495007380.0*pow(c1, 4) - 77558760.0*pow(c1, 2) + 5014575.0) + 390.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 3)*(9328033.0*pow(c1, 12) - 32539650.0*pow(c1, 10) + 45634875.0*pow(c1, 8) - 32763500.0*pow(c1, 6) + 12618375.0*pow(c1, 4) - 2451570.0*pow(c1, 2) + 185725.0) + 13.0*pow(pow(c1, 2) - 1.0, 5)*(848003.0*pow(c1, 10) - 2267915.0*pow(c1, 8) + 2323230.0*pow(c1, 6) - 1131830.0*pow(c1, 4) + 260015.0*pow(c1, 2) - 22287.0)); case 25: return 1.09594118095956e-10*c0*pow(c1, 4)*(67068154468575.0*pow(c0, 20) + 312984720853350.0*pow(c0, 18)*(3.0*pow(c1, 2) - 1.0) + 2440510135245.0*pow(c0, 16)*(1935.0*pow(c1, 4) - 1462.0*pow(c1, 2) + 255.0) + 426071089080.0*pow(c0, 14)*(26445.0*pow(c1, 6) - 33497.0*pow(c1, 4) + 13243.0*pow(c1, 2) - 1615.0) + 40968373950.0*pow(c0, 12)*(343785.0*pow(c1, 8) - 641732.0*pow(c1, 6) + 425334.0*pow(c1, 4) - 117572.0*pow(c1, 2) + 11305.0) + 1251677700.0*pow(c0, 10)*(7632027.0*pow(c1, 10) - 19504069.0*pow(c1, 8) + 19050486.0*pow(c1, 6) - 8828274.0*pow(c1, 4) + 1924111.0*pow(c1, 2) - 156009.0) + 1376845470.0*pow(c0, 8)*(2544009.0*pow(c1, 12) - 8480030.0*pow(c1, 10) + 11339575.0*pow(c1, 8) - 7744100.0*pow(c1, 6) + 2829575.0*pow(c1, 4) - 520030.0*pow(c1, 2) + 37145.0) + 14304888.0*pow(c0, 6)*(46640165.0*pow(c1, 14) - 195888693.0*pow(c1, 12) + 341666325.0*pow(c1, 10) - 319444125.0*pow(c1, 8) + 172008375.0*pow(c1, 6) - 52997175.0*pow(c1, 4) + 8580495.0*pow(c1, 2) - 557175.0) + 4641.0*pow(c0, 4)*(13012606035.0*pow(c1, 16) - 67087213336.0*pow(c1, 14) + 147435852564.0*pow(c1, 12) - 179799820200.0*pow(c1, 10) + 132544739250.0*pow(c1, 8) - 60182476200.0*pow(c1, 6) + 16335243540.0*pow(c1, 4) - 2404321560.0*pow(c1, 2) + 145422675.0) + 46410.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2)*(46640165.0*pow(c1, 14) - 195888693.0*pow(c1, 12) + 341666325.0*pow(c1, 10) - 319444125.0*pow(c1, 8) + 172008375.0*pow(c1, 6) - 52997175.0*pow(c1, 4) + 8580495.0*pow(c1, 2) - 557175.0) + 7735.0*pow(pow(c1, 2) - 1.0, 4)*(2544009.0*pow(c1, 12) - 8480030.0*pow(c1, 10) + 11339575.0*pow(c1, 8) - 7744100.0*pow(c1, 6) + 2829575.0*pow(c1, 4) - 520030.0*pow(c1, 2) + 37145.0)); case 26: return 6.47601606930651e-11*pow(c1, 4)*(242477173847925.0*pow(c0, 22) + 79449967601235.0*pow(c0, 20)*(47.0*pow(c1, 2) - 15.0) + 147995037688575.0*pow(c0, 18)*(141.0*pow(c1, 4) - 102.0*pow(c1, 2) + 17.0) + 1847673665145.0*pow(c0, 16)*(30315.0*pow(c1, 6) - 36765.0*pow(c1, 4) + 13889.0*pow(c1, 2) - 1615.0) + 64378873350.0*pow(c0, 14)*(1242915.0*pow(c1, 8) - 2221380.0*pow(c1, 6) + 1406874.0*pow(c1, 4) - 370804.0*pow(c1, 2) + 33915.0) + 19593570150.0*pow(c0, 12)*(3231579.0*pow(c1, 10) - 7907055.0*pow(c1, 8) + 7379918.0*pow(c1, 6) - 3260894.0*pow(c1, 4) + 676039.0*pow(c1, 2) - 52003.0) + 233004618.0*pow(c0, 10)*(119568423.0*pow(c1, 12) - 381601350.0*pow(c1, 10) + 487601725.0*pow(c1, 8) - 317508100.0*pow(c1, 6) + 110353425.0*pow(c1, 4) - 19241110.0*pow(c1, 2) + 1300075.0) + 166431870.0*pow(c0, 8)*(39856141.0*pow(c1, 14) - 160272567.0*pow(c1, 12) + 267120945.0*pow(c1, 10) - 238131075.0*pow(c1, 8) + 121969575.0*pow(c1, 6) - 35652645.0*pow(c1, 4) + 5460315.0*pow(c1, 2) - 334305.0) + 365211.0*pow(c0, 6)*(2192087755.0*pow(c1, 16) - 10820518280.0*pow(c1, 14) + 22723088388.0*pow(c1, 12) - 26422195800.0*pow(c1, 10) + 18527759250.0*pow(c1, 8) - 7981188600.0*pow(c1, 6) + 2049224100.0*pow(c1, 4) - 284382120.0*pow(c1, 2) + 16158075.0) + 19635.0*pow(c0, 4)*(2192087755.0*pow(c1, 18) - 13012606035.0*pow(c1, 16) + 33543606668.0*pow(c1, 14) - 49145284188.0*pow(c1, 12) + 44949955050.0*pow(c1, 10) - 26508947850.0*pow(c1, 8) + 10030412700.0*pow(c1, 6) - 2333606220.0*pow(c1, 4) + 300540195.0*pow(c1, 2) - 16158075.0) + 19635.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 3)*(39856141.0*pow(c1, 14) - 160272567.0*pow(c1, 12) + 267120945.0*pow(c1, 10) - 238131075.0*pow(c1, 8) + 121969575.0*pow(c1, 6) - 35652645.0*pow(c1, 4) + 5460315.0*pow(c1, 2) - 334305.0) + 17.0*pow(pow(c1, 2) - 1.0, 5)*(119568423.0*pow(c1, 12) - 381601350.0*pow(c1, 10) + 487601725.0*pow(c1, 8) - 317508100.0*pow(c1, 6) + 110353425.0*pow(c1, 4) - 19241110.0*pow(c1, 2) + 1300075.0)); case 27: return 6.47601606930651e-11*c0*pow(c1, 4)*(516581805154275.0*pow(c0, 22) + 177816594155145.0*pow(c0, 20)*(49.0*pow(c1, 2) - 15.0) + 23367637529775.0*pow(c0, 18)*(2303.0*pow(c1, 4) - 1598.0*pow(c1, 2) + 255.0) + 23367637529775.0*pow(c0, 16)*(6909.0*pow(c1, 6) - 8037.0*pow(c1, 4) + 2907.0*pow(c1, 2) - 323.0) + 1231782443430.0*pow(c0, 14)*(212205.0*pow(c1, 8) - 363780.0*pow(c1, 6) + 220590.0*pow(c1, 4) - 55556.0*pow(c1, 2) + 4845.0) + 19593570150.0*pow(c0, 12)*(12180567.0*pow(c1, 10) - 28587045.0*pow(c1, 8) + 25545870.0*pow(c1, 6) - 10786034.0*pow(c1, 4) + 2132123.0*pow(c1, 2) - 156009.0) + 783742806.0*pow(c0, 10)*(158347371.0*pow(c1, 12) - 484736850.0*pow(c1, 10) + 593029125.0*pow(c1, 8) - 368995900.0*pow(c1, 6) + 122283525.0*pow(c1, 4) - 20281170.0*pow(c1, 2) + 1300075.0) + 129447010.0*pow(c0, 8)*(278992987.0*pow(c1, 14) - 1076115807.0*pow(c1, 12) + 1717206075.0*pow(c1, 10) - 1462805175.0*pow(c1, 8) + 714393225.0*pow(c1, 6) - 198636165.0*pow(c1, 4) + 28861665.0*pow(c1, 2) - 1671525.0) + 2869515.0*pow(c0, 6)*(1952950909.0*pow(c1, 16) - 9246624712.0*pow(c1, 14) + 18591617772.0*pow(c1, 12) - 20657353080.0*pow(c1, 10) + 13811602350.0*pow(c1, 8) - 5659388280.0*pow(c1, 6) + 1378568940.0*pow(c1, 4) - 180970440.0*pow(c1, 2) + 9694845.0) + 3927.0*pow(c0, 4)*(107412299995.0*pow(c1, 18) - 611592483645.0*pow(c1, 16) + 1509462300060.0*pow(c1, 14) - 2113247220084.0*pow(c1, 12) + 1842948157050.0*pow(c1, 10) - 1033848966150.0*pow(c1, 8) + 371125269900.0*pow(c1, 6) - 81676217700.0*pow(c1, 4) + 9917826435.0*pow(c1, 2) - 500900325.0) + 6545.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2)*(1952950909.0*pow(c1, 16) - 9246624712.0*pow(c1, 14) + 18591617772.0*pow(c1, 12) - 20657353080.0*pow(c1, 10) + 13811602350.0*pow(c1, 8) - 5659388280.0*pow(c1, 6) + 1378568940.0*pow(c1, 4) - 180970440.0*pow(c1, 2) + 9694845.0) + 357.0*pow(pow(c1, 2) - 1.0, 4)*(278992987.0*pow(c1, 14) - 1076115807.0*pow(c1, 12) + 1717206075.0*pow(c1, 10) - 1462805175.0*pow(c1, 8) + 714393225.0*pow(c1, 6) - 198636165.0*pow(c1, 4) + 28861665.0*pow(c1, 2) - 1671525.0)); case 28: return 1.69995421819296e-10*pow(c1, 4)*(418185270839175.0*pow(c0, 24) + 452624057849460.0*pow(c0, 22)*(17.0*pow(c1, 2) - 5.0) + 355633188310290.0*pow(c0, 20)*(147.0*pow(c1, 4) - 98.0*pow(c1, 2) + 15.0) + 4450978577100.0*pow(c0, 18)*(39151.0*pow(c1, 6) - 43757.0*pow(c1, 4) + 15181.0*pow(c1, 2) - 1615.0) + 18916658952675.0*pow(c0, 16)*(16779.0*pow(c1, 8) - 27636.0*pow(c1, 6) + 16074.0*pow(c1, 4) - 3876.0*pow(c1, 2) + 323.0) + 153016452600.0*pow(c0, 14)*(2164491.0*pow(c1, 10) - 4880715.0*pow(c1, 8) + 4183470.0*pow(c1, 6) - 1691190.0*pow(c1, 4) + 319447.0*pow(c1, 2) - 22287.0) + 970348236.0*pow(c0, 12)*(207069639.0*pow(c1, 12) - 609028350.0*pow(c1, 10) + 714676125.0*pow(c1, 8) - 425764500.0*pow(c1, 6) + 134825425.0*pow(c1, 4) - 21321230.0*pow(c1, 2) + 1300075.0) + 547375928.0*pow(c0, 10)*(128185967.0*pow(c1, 14) - 475042113.0*pow(c1, 12) + 727105275.0*pow(c1, 10) - 593029125.0*pow(c1, 8) + 276746925.0*pow(c1, 6) - 73370115.0*pow(c1, 4) + 10140585.0*pow(c1, 2) - 557175.0) + 956505.0*pow(c0, 8)*(14228642337.0*pow(c1, 16) - 64726372984.0*pow(c1, 14) + 124829433612.0*pow(c1, 12) - 132797269800.0*pow(c1, 10) + 84842700150.0*pow(c1, 8) - 33147845640.0*pow(c1, 6) + 7680598380.0*pow(c1, 4) - 956558040.0*pow(c1, 2) + 48474225.0) + 41140.0*pow(c0, 6)*(33200165453.0*pow(c1, 18) - 181624434537.0*pow(c1, 16) + 429968049108.0*pow(c1, 14) - 576340150932.0*pow(c1, 12) + 480283459110.0*pow(c1, 10) - 256895803710.0*pow(c1, 8) + 87720518340.0*pow(c1, 6) - 18315273060.0*pow(c1, 4) + 2103781365.0*pow(c1, 2) - 100180065.0) + 1870.0*pow(c0, 4)*(33200165453.0*pow(c1, 20) - 214824599990.0*pow(c1, 18) + 611592483645.0*pow(c1, 16) - 1006308200040.0*pow(c1, 14) + 1056623610042.0*pow(c1, 12) - 737179262820.0*pow(c1, 10) + 344616322050.0*pow(c1, 8) - 106035791400.0*pow(c1, 6) + 20419054425.0*pow(c1, 4) - 2203961430.0*pow(c1, 2) + 100180065.0) + 68.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 3)*(14228642337.0*pow(c1, 16) - 64726372984.0*pow(c1, 14) + 124829433612.0*pow(c1, 12) - 132797269800.0*pow(c1, 10) + 84842700150.0*pow(c1, 8) - 33147845640.0*pow(c1, 6) + 7680598380.0*pow(c1, 4) - 956558040.0*pow(c1, 2) + 48474225.0) + 17.0*pow(pow(c1, 2) - 1.0, 5)*(128185967.0*pow(c1, 14) - 475042113.0*pow(c1, 12) + 727105275.0*pow(c1, 10) - 593029125.0*pow(c1, 8) + 276746925.0*pow(c1, 6) - 73370115.0*pow(c1, 4) + 10140585.0*pow(c1, 2) - 557175.0)); case 29: return 8.94712746417347e-12*c0*pow(c1, 4)*(1.6844502709402e+16*pow(c0, 24) + 6.35641611675546e+15*pow(c0, 22)*(53.0*pow(c1, 2) - 15.0) + 4.72992140452686e+16*pow(c0, 20)*(53.0*pow(c1, 4) - 34.0*pow(c1, 2) + 5.0) + 3.5563318831029e+15*pow(c0, 18)*(2597.0*pow(c1, 6) - 2793.0*pow(c1, 4) + 931.0*pow(c1, 2) - 95.0) + 63426444723675.0*pow(c0, 16)*(296429.0*pow(c1, 8) - 469812.0*pow(c1, 6) + 262542.0*pow(c1, 4) - 60724.0*pow(c1, 2) + 4845.0) + 25002888354840.0*pow(c0, 14)*(889287.0*pow(c1, 10) - 1929585.0*pow(c1, 8) + 1589070.0*pow(c1, 6) - 616170.0*pow(c1, 4) + 111435.0*pow(c1, 2) - 7429.0) + 407023763916.0*pow(c0, 12)*(38239341.0*pow(c1, 12) - 108224550.0*pow(c1, 10) + 122017875.0*pow(c1, 8) - 69724500.0*pow(c1, 6) + 21139875.0*pow(c1, 4) - 3194470.0*pow(c1, 2) + 185725.0) + 12291077656.0*pow(c0, 10)*(522604327.0*pow(c1, 14) - 1863626751.0*pow(c1, 12) + 2740627575.0*pow(c1, 10) - 2144028375.0*pow(c1, 8) + 957970125.0*pow(c1, 6) - 242685765.0*pow(c1, 4) + 31981845.0*pow(c1, 2) - 1671525.0) + 224141005.0*pow(c0, 8)*(6793856251.0*pow(c1, 16) - 29739144344.0*pow(c1, 14) + 55104885108.0*pow(c1, 12) - 56229474600.0*pow(c1, 10) + 34395689250.0*pow(c1, 8) - 12841057320.0*pow(c1, 6) + 2836977780.0*pow(c1, 4) - 336087960.0*pow(c1, 2) + 16158075.0) + 781660.0*pow(c0, 6)*(251372681287.0*pow(c1, 18) - 1323263737341.0*pow(c1, 16) + 3009776343756.0*pow(c1, 14) - 3869712441972.0*pow(c1, 12) + 3087536522850.0*pow(c1, 10) - 1578074222790.0*pow(c1, 8) + 513791607420.0*pow(c1, 6) - 102042235620.0*pow(c1, 4) + 11119987215.0*pow(c1, 2) - 500900325.0) + 7106.0*pow(c0, 4)*(1759608769009.0*pow(c1, 20) - 10956054599490.0*pow(c1, 18) + 29968031698605.0*pow(c1, 16) - 47296485401880.0*pow(c1, 14) + 47548062451890.0*pow(c1, 12) - 31698708301260.0*pow(c1, 10) + 14129269204050.0*pow(c1, 8) - 4135395864600.0*pow(c1, 6) + 755505013725.0*pow(c1, 4) - 77138650050.0*pow(c1, 2) + 3305942145.0) + 1292.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2)*(251372681287.0*pow(c1, 18) - 1323263737341.0*pow(c1, 16) + 3009776343756.0*pow(c1, 14) - 3869712441972.0*pow(c1, 12) + 3087536522850.0*pow(c1, 10) - 1578074222790.0*pow(c1, 8) + 513791607420.0*pow(c1, 6) - 102042235620.0*pow(c1, 4) + 11119987215.0*pow(c1, 2) - 500900325.0) + 323.0*pow(pow(c1, 2) - 1.0, 4)*(6793856251.0*pow(c1, 16) - 29739144344.0*pow(c1, 14) + 55104885108.0*pow(c1, 12) - 56229474600.0*pow(c1, 10) + 34395689250.0*pow(c1, 8) - 12841057320.0*pow(c1, 6) + 2836977780.0*pow(c1, 4) - 336087960.0*pow(c1, 2) + 16158075.0)); default: return 0.; } case 9: switch(j) { case 5: return 1.48000148000148e-5*pow(c1, 5); case 6: return 0.000103600103600104*c0*pow(c1, 5); case 7: return 3.04706187059128e-6*pow(c1, 5)*(153.0*pow(c0, 2) + 9.0*pow(c1, 2) - 17.0); case 8: return 9.14118561177385e-6*c0*pow(c1, 5)*(187.0*pow(c0, 2) + 33.0*pow(c1, 2) - 51.0); case 9: return 1.20278758049656e-7*pow(c1, 5)*(46189.0*pow(c0, 4) + 1254.0*pow(c0, 2)*(13.0*pow(c1, 2) - 17.0) + 429.0*pow(c1, 4) - 1254.0*pow(c1, 2) + 969.0); case 10: return 1.32306633854621e-6*c0*pow(c1, 5)*(12597.0*pow(c0, 4) + 494.0*pow(c0, 2)*(15.0*pow(c1, 2) - 17.0) + 585.0*pow(c1, 4) - 1482.0*pow(c1, 2) + 969.0); case 11: return 9.45047384675868e-8*pow(c1, 5)*(499681.0*pow(c0, 6) + 440895.0*pow(c0, 4)*(pow(c1, 2) - 1.0) + 273.0*pow(c0, 2)*(255.0*pow(c1, 4) - 570.0*pow(c1, 2) + 323.0) + 1105.0*pow(c1, 6) - 4095.0*pow(c1, 4) + 5187.0*pow(c1, 2) - 2261.0); case 12: return 1.22856160007863e-6*c0*pow(c1, 5)*(104329.0*pow(c0, 6) + 6783.0*pow(c0, 4)*(19.0*pow(c1, 2) - 17.0) + 33915.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2) + 1615.0*pow(c1, 6) - 5355.0*pow(c1, 4) + 5985.0*pow(c1, 2) - 2261.0); case 13: return 0.000226449275362319*pow(c1, 13) + 0.000992063492063492*pow(c1, 11)*(21.0*pow(c0, 2) - 1.0) + 0.00164473684210526*pow(c1, 9)*(133.0*pow(c0, 4) - 38.0*pow(c0, 2) + 1.0) + 0.000245098039215686*pow(c1, 7)*(2261.0*pow(c0, 6) - 1615.0*pow(c0, 4) + 255.0*pow(c0, 2) - 5.0) + 0.000347222222222222*pow(c1, 5)*(969.0*pow(c0, 8) - 1292.0*pow(c0, 6) + 510.0*pow(c0, 4) - 60.0*pow(c0, 2) + 1.0); case 14: return 0.000115740740740741*c0*pow(c1, 5)*(7429.0*pow(c0, 8) + 684.0*pow(c0, 6)*(23.0*pow(c1, 2) - 17.0) + 18.0*pow(c0, 4)*(483.0*pow(c1, 4) - 798.0*pow(c1, 2) + 323.0) + 60.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2)*(23.0*pow(c1, 2) - 17.0) + 45.0*pow(pow(c1, 2) - 1.0, 4)); case 15: return 5.78703703703704e-5*pow(c1, 5)*(37145.0*pow(c0, 10) + 3933.0*pow(c0, 8)*(25.0*pow(c1, 2) - 17.0) + 126.0*pow(c0, 6)*(575.0*pow(c1, 4) - 874.0*pow(c1, 2) + 323.0) + 30.0*pow(c0, 4)*(575.0*pow(c1, 6) - 1449.0*pow(c1, 4) + 1197.0*pow(c1, 2) - 323.0) + 45.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 3)*(25.0*pow(c1, 2) - 17.0) + 9.0*pow(pow(c1, 2) - 1.0, 5)); case 16: return 5.26094276094276e-6*c0*pow(c1, 5)*(1002915.0*pow(c0, 10) + 120175.0*pow(c0, 8)*(27.0*pow(c1, 2) - 17.0) + 4554.0*pow(c0, 6)*(675.0*pow(c1, 4) - 950.0*pow(c1, 2) + 323.0) + 198.0*pow(c0, 4)*(5175.0*pow(c1, 6) - 12075.0*pow(c1, 4) + 9177.0*pow(c1, 2) - 2261.0) + 165.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2)*(675.0*pow(c1, 4) - 950.0*pow(c1, 2) + 323.0) + 99.0*pow(pow(c1, 2) - 1.0, 4)*(27.0*pow(c1, 2) - 17.0)); case 17: return 3.94570707070707e-6*pow(c1, 5)*(3231615.0*pow(c0, 12) + 432630.0*pow(c0, 10)*(29.0*pow(c1, 2) - 17.0) + 18975.0*pow(c0, 8)*(783.0*pow(c1, 4) - 1026.0*pow(c1, 2) + 323.0) + 1012.0*pow(c0, 6)*(6525.0*pow(c1, 6) - 14175.0*pow(c1, 4) + 9975.0*pow(c1, 2) - 2261.0) + 165.0*pow(c0, 4)*(6525.0*pow(c1, 8) - 20700.0*pow(c1, 6) + 24150.0*pow(c1, 4) - 12236.0*pow(c1, 2) + 2261.0) + 66.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 3)*(783.0*pow(c1, 4) - 1026.0*pow(c1, 2) + 323.0) + 11.0*pow(pow(c1, 2) - 1.0, 5)*(29.0*pow(c1, 2) - 17.0)); case 18: return 4.33594183594184e-8*c0*pow(c1, 5)*(701260455.0*pow(c0, 12) + 103791870.0*pow(c0, 10)*(31.0*pow(c1, 2) - 17.0) + 5180175.0*pow(c0, 8)*(899.0*pow(c1, 4) - 1102.0*pow(c1, 2) + 323.0) + 328900.0*pow(c0, 6)*(8091.0*pow(c1, 6) - 16443.0*pow(c1, 4) + 10773.0*pow(c1, 2) - 2261.0) + 3003.0*pow(c0, 4)*(202275.0*pow(c1, 8) - 600300.0*pow(c1, 6) + 652050.0*pow(c1, 4) - 305900.0*pow(c1, 2) + 52003.0) + 6006.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2)*(8091.0*pow(c1, 6) - 16443.0*pow(c1, 4) + 10773.0*pow(c1, 2) - 2261.0) + 1001.0*pow(pow(c1, 2) - 1.0, 4)*(899.0*pow(c1, 4) - 1102.0*pow(c1, 2) + 323.0)); case 19: return 2.16797091797092e-8*pow(c1, 5)*(3305942145.0*pow(c0, 14) + 536257995.0*pow(c0, 12)*(33.0*pow(c1, 2) - 17.0) + 30045015.0*pow(c0, 10)*(1023.0*pow(c1, 4) - 1178.0*pow(c1, 2) + 323.0) + 2220075.0*pow(c0, 8)*(9889.0*pow(c1, 6) - 18879.0*pow(c1, 4) + 11571.0*pow(c1, 2) - 2261.0) + 25025.0*pow(c0, 6)*(267003.0*pow(c1, 8) - 744372.0*pow(c1, 6) + 756378.0*pow(c1, 4) - 330372.0*pow(c1, 2) + 52003.0) + 3003.0*pow(c0, 4)*(267003.0*pow(c1, 10) - 1011375.0*pow(c1, 8) + 1500750.0*pow(c1, 6) - 1086750.0*pow(c1, 4) + 382375.0*pow(c1, 2) - 52003.0) + 3003.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 3)*(9889.0*pow(c1, 6) - 18879.0*pow(c1, 4) + 11571.0*pow(c1, 2) - 2261.0) + 143.0*pow(pow(c1, 2) - 1.0, 5)*(1023.0*pow(c1, 4) - 1178.0*pow(c1, 2) + 323.0)); case 20: return 2.16797091797092e-8*c0*pow(c1, 5)*(7713865005.0*pow(c0, 14) + 1361270295.0*pow(c0, 12)*(35.0*pow(c1, 2) - 17.0) + 84672315.0*pow(c0, 10)*(1155.0*pow(c1, 4) - 1254.0*pow(c1, 2) + 323.0) + 50075025.0*pow(c0, 8)*(1705.0*pow(c1, 6) - 3069.0*pow(c1, 4) + 1767.0*pow(c1, 2) - 323.0) + 96525.0*pow(c0, 6)*(346115.0*pow(c1, 8) - 909788.0*pow(c1, 6) + 868434.0*pow(c1, 4) - 354844.0*pow(c1, 2) + 52003.0) + 3003.0*pow(c0, 4)*(1869021.0*pow(c1, 10) - 6675075.0*pow(c1, 8) + 9304650.0*pow(c1, 6) - 6303150.0*pow(c1, 4) + 2064825.0*pow(c1, 2) - 260015.0) + 1001.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2)*(346115.0*pow(c1, 8) - 909788.0*pow(c1, 6) + 868434.0*pow(c1, 4) - 354844.0*pow(c1, 2) + 52003.0) + 3003.0*pow(pow(c1, 2) - 1.0, 4)*(1705.0*pow(c1, 6) - 3069.0*pow(c1, 4) + 1767.0*pow(c1, 2) - 323.0)); case 21: return 1.0433360042735e-7*pow(c1, 5)*(3706662405.0*pow(c0, 16) + 707153400.0*pow(c0, 14)*(37.0*pow(c1, 2) - 17.0) + 48384180.0*pow(c0, 12)*(1295.0*pow(c1, 4) - 1330.0*pow(c1, 2) + 323.0) + 32256120.0*pow(c0, 10)*(2035.0*pow(c1, 6) - 3465.0*pow(c1, 4) + 1881.0*pow(c1, 2) - 323.0) + 508950.0*pow(c0, 8)*(63085.0*pow(c1, 8) - 156860.0*pow(c1, 6) + 141174.0*pow(c1, 4) - 54188.0*pow(c1, 2) + 7429.0) + 2808.0*pow(c0, 6)*(2561251.0*pow(c1, 10) - 8652875.0*pow(c1, 8) + 11372350.0*pow(c1, 6) - 7236950.0*pow(c1, 4) + 2217775.0*pow(c1, 2) - 260015.0) + 260.0*pow(c0, 4)*(2561251.0*pow(c1, 12) - 11214126.0*pow(c1, 10) + 20025225.0*pow(c1, 8) - 18609300.0*pow(c1, 6) + 9454725.0*pow(c1, 4) - 2477790.0*pow(c1, 2) + 260015.0) + 312.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 3)*(63085.0*pow(c1, 8) - 156860.0*pow(c1, 6) + 141174.0*pow(c1, 4) - 54188.0*pow(c1, 2) + 7429.0) + 39.0*pow(pow(c1, 2) - 1.0, 5)*(2035.0*pow(c1, 6) - 3465.0*pow(c1, 4) + 1881.0*pow(c1, 2) - 323.0)); case 22: return 1.0433360042735e-7*c0*pow(c1, 5)*(8503519635.0*pow(c0, 16) + 1744311720.0*pow(c0, 14)*(39.0*pow(c1, 2) - 17.0) + 130265100.0*pow(c0, 12)*(1443.0*pow(c1, 4) - 1406.0*pow(c1, 2) + 323.0) + 96768360.0*pow(c0, 10)*(2405.0*pow(c1, 6) - 3885.0*pow(c1, 4) + 1995.0*pow(c1, 2) - 323.0) + 1753050.0*pow(c0, 8)*(79365.0*pow(c1, 8) - 187220.0*pow(c1, 6) + 159390.0*pow(c1, 4) - 57684.0*pow(c1, 2) + 7429.0) + 81432.0*pow(c0, 6)*(492063.0*pow(c1, 10) - 1577125.0*pow(c1, 8) + 1960750.0*pow(c1, 6) - 1176450.0*pow(c1, 4) + 338675.0*pow(c1, 2) - 37145.0) + 156.0*pow(c0, 4)*(33296263.0*pow(c1, 12) - 138307554.0*pow(c1, 10) + 233627625.0*pow(c1, 8) - 204702300.0*pow(c1, 6) + 97698825.0*pow(c1, 4) - 23951970.0*pow(c1, 2) + 2340135.0) + 520.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2)*(492063.0*pow(c1, 10) - 1577125.0*pow(c1, 8) + 1960750.0*pow(c1, 6) - 1176450.0*pow(c1, 4) + 338675.0*pow(c1, 2) - 37145.0) + 39.0*pow(pow(c1, 2) - 1.0, 4)*(79365.0*pow(c1, 8) - 187220.0*pow(c1, 6) + 159390.0*pow(c1, 4) - 57684.0*pow(c1, 2) + 7429.0)); case 23: return 1.73889334045584e-8*pow(c1, 5)*(116214768345.0*pow(c0, 18) + 25510558905.0*pow(c0, 16)*(41.0*pow(c1, 2) - 17.0) + 2065632300.0*pow(c0, 14)*(1599.0*pow(c1, 4) - 1482.0*pow(c1, 2) + 323.0) + 241920900.0*pow(c0, 12)*(19721.0*pow(c1, 6) - 30303.0*pow(c1, 4) + 14763.0*pow(c1, 2) - 2261.0) + 34710390.0*pow(c0, 10)*(98605.0*pow(c1, 8) - 221260.0*pow(c1, 6) + 178710.0*pow(c1, 4) - 61180.0*pow(c1, 2) + 7429.0) + 1893294.0*pow(c0, 8)*(650793.0*pow(c1, 10) - 1984125.0*pow(c1, 8) + 2340250.0*pow(c1, 6) - 1328250.0*pow(c1, 4) + 360525.0*pow(c1, 2) - 37145.0) + 31668.0*pow(c0, 6)*(6724861.0*pow(c1, 12) - 26571402.0*pow(c1, 10) + 42582375.0*pow(c1, 8) - 35293500.0*pow(c1, 6) + 15882075.0*pow(c1, 4) - 3657690.0*pow(c1, 2) + 334305.0) + 2340.0*pow(c0, 4)*(6724861.0*pow(c1, 14) - 33296263.0*pow(c1, 12) + 69153777.0*pow(c1, 10) - 77875875.0*pow(c1, 8) + 51175575.0*pow(c1, 6) - 19539765.0*pow(c1, 4) + 3991995.0*pow(c1, 2) - 334305.0) + 585.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 3)*(650793.0*pow(c1, 10) - 1984125.0*pow(c1, 8) + 2340250.0*pow(c1, 6) - 1328250.0*pow(c1, 4) + 360525.0*pow(c1, 2) - 37145.0) + 13.0*pow(pow(c1, 2) - 1.0, 5)*(98605.0*pow(c1, 8) - 221260.0*pow(c1, 6) + 178710.0*pow(c1, 4) - 61180.0*pow(c1, 2) + 7429.0)); case 24: return 1.02287843556226e-9*c0*pow(c1, 5)*(4471210297905.0*pow(c0, 18) + 1045932915105.0*pow(c0, 16)*(43.0*pow(c1, 2) - 17.0) + 91300947660.0*pow(c0, 14)*(1763.0*pow(c1, 4) - 1558.0*pow(c1, 2) + 323.0) + 11705249700.0*pow(c0, 12)*(22919.0*pow(c1, 6) - 33579.0*pow(c1, 4) + 15561.0*pow(c1, 2) - 2261.0) + 268216650.0*pow(c0, 10)*(848003.0*pow(c1, 8) - 1814332.0*pow(c1, 6) + 1393938.0*pow(c1, 4) - 452732.0*pow(c1, 2) + 52003.0) + 118015326.0*pow(c0, 8)*(848003.0*pow(c1, 10) - 2465125.0*pow(c1, 8) + 2765750.0*pow(c1, 6) - 1489250.0*pow(c1, 4) + 382375.0*pow(c1, 2) - 37145.0) + 2384148.0*pow(c0, 6)*(9328033.0*pow(c1, 12) - 35142822.0*pow(c1, 10) + 53571375.0*pow(c1, 8) - 42124500.0*pow(c1, 6) + 17931375.0*pow(c1, 4) - 3893670.0*pow(c1, 2) + 334305.0) + 7956.0*pow(c0, 4)*(289169023.0*pow(c1, 14) - 1365146783.0*pow(c1, 12) + 2696997303.0*pow(c1, 10) - 2881407375.0*pow(c1, 8) + 1791145125.0*pow(c1, 6) - 644812245.0*pow(c1, 4) + 123751845.0*pow(c1, 2) - 9694845.0) + 9945.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2)*(9328033.0*pow(c1, 12) - 35142822.0*pow(c1, 10) + 53571375.0*pow(c1, 8) - 42124500.0*pow(c1, 6) + 17931375.0*pow(c1, 4) - 3893670.0*pow(c1, 2) + 334305.0) + 1105.0*pow(pow(c1, 2) - 1.0, 4)*(848003.0*pow(c1, 10) - 2465125.0*pow(c1, 8) + 2765750.0*pow(c1, 6) - 1489250.0*pow(c1, 4) + 382375.0*pow(c1, 2) - 37145.0)); case 25: return 4.74907845082477e-10*pow(c1, 5)*(21668172982155.0*pow(c0, 20) + 5381637734130.0*pow(c0, 18)*(45.0*pow(c1, 2) - 17.0) + 503910999585.0*pow(c0, 16)*(1935.0*pow(c1, 4) - 1634.0*pow(c1, 2) + 323.0) + 70231498200.0*pow(c0, 14)*(26445.0*pow(c1, 6) - 37023.0*pow(c1, 4) + 16359.0*pow(c1, 2) - 2261.0) + 1781233650.0*pow(c0, 12)*(1031355.0*pow(c1, 8) - 2108548.0*pow(c1, 6) + 1544634.0*pow(c1, 4) - 477204.0*pow(c1, 2) + 52003.0) + 127093428.0*pow(c0, 10)*(7632027.0*pow(c1, 10) - 21200075.0*pow(c1, 8) + 22679150.0*pow(c1, 6) - 11616150.0*pow(c1, 4) + 2829575.0*pow(c1, 2) - 260015.0) + 63546714.0*pow(c0, 8)*(4240015.0*pow(c1, 12) - 15264054.0*pow(c1, 10) + 22186125.0*pow(c1, 8) - 16594500.0*pow(c1, 6) + 6701625.0*pow(c1, 4) - 1376550.0*pow(c1, 2) + 111435.0) + 88536.0*pow(c0, 6)*(419761485.0*pow(c1, 14) - 1893590699.0*pow(c1, 12) + 3566996433.0*pow(c1, 10) - 3624996375.0*pow(c1, 8) + 2137818375.0*pow(c1, 6) - 728013825.0*pow(c1, 4) + 131735835.0*pow(c1, 2) - 9694845.0) + 5355.0*pow(c0, 4)*(419761485.0*pow(c1, 16) - 2313352184.0*pow(c1, 14) + 5460587132.0*pow(c1, 12) - 7191992808.0*pow(c1, 10) + 5762814750.0*pow(c1, 8) - 2865832200.0*pow(c1, 6) + 859749660.0*pow(c1, 4) - 141430680.0*pow(c1, 2) + 9694845.0) + 10710.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 3)*(4240015.0*pow(c1, 12) - 15264054.0*pow(c1, 10) + 22186125.0*pow(c1, 8) - 16594500.0*pow(c1, 6) + 6701625.0*pow(c1, 4) - 1376550.0*pow(c1, 2) + 111435.0) + 17.0*pow(pow(c1, 2) - 1.0, 5)*(7632027.0*pow(c1, 10) - 21200075.0*pow(c1, 8) + 22679150.0*pow(c1, 6) - 11616150.0*pow(c1, 4) + 2829575.0*pow(c1, 2) - 260015.0)); case 26: return 1.42472353524743e-9*c0*pow(c1, 5)*(16165144923195.0*pow(c0, 20) + 4248661369050.0*pow(c0, 18)*(47.0*pow(c1, 2) - 17.0) + 424866136905.0*pow(c0, 16)*(2115.0*pow(c1, 4) - 1710.0*pow(c1, 2) + 323.0) + 63988698360.0*pow(c0, 14)*(30315.0*pow(c1, 6) - 40635.0*pow(c1, 4) + 17157.0*pow(c1, 2) - 2261.0) + 1781233650.0*pow(c0, 12)*(1242915.0*pow(c1, 8) - 2432940.0*pow(c1, 6) + 1703058.0*pow(c1, 4) - 501676.0*pow(c1, 2) + 52003.0) + 142498692.0*pow(c0, 10)*(9694737.0*pow(c1, 10) - 25783875.0*pow(c1, 8) + 26356850.0*pow(c1, 6) - 12871950.0*pow(c1, 4) + 2982525.0*pow(c1, 2) - 260015.0) + 11767910.0*pow(c0, 8)*(39856141.0*pow(c1, 12) - 137376486.0*pow(c1, 10) + 190800675.0*pow(c1, 8) - 136074900.0*pow(c1, 6) + 52272675.0*pow(c1, 4) - 10186470.0*pow(c1, 2) + 780045.0) + 417384.0*pow(c0, 6)*(199280705.0*pow(c1, 14) - 860723045.0*pow(c1, 12) + 1549301481.0*pow(c1, 10) - 1501261125.0*pow(c1, 8) + 842170875.0*pow(c1, 6) - 272085975.0*pow(c1, 4) + 46573275.0*pow(c1, 2) - 3231615.0) + 357.0*pow(c0, 4)*(19728789795.0*pow(c1, 16) - 104100848280.0*pow(c1, 14) + 234805246676.0*pow(c1, 12) - 294871705128.0*pow(c1, 10) + 224749775250.0*pow(c1, 8) - 106035791400.0*pow(c1, 6) + 30091238100.0*pow(c1, 4) - 4667212440.0*pow(c1, 2) + 300540195.0) + 1190.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2)*(199280705.0*pow(c1, 14) - 860723045.0*pow(c1, 12) + 1549301481.0*pow(c1, 10) - 1501261125.0*pow(c1, 8) + 842170875.0*pow(c1, 6) - 272085975.0*pow(c1, 4) + 46573275.0*pow(c1, 2) - 3231615.0) + 51.0*pow(pow(c1, 2) - 1.0, 4)*(39856141.0*pow(c1, 12) - 137376486.0*pow(c1, 10) + 190800675.0*pow(c1, 8) - 136074900.0*pow(c1, 6) + 52272675.0*pow(c1, 4) - 10186470.0*pow(c1, 2) + 780045.0)); case 27: return 6.47601606930651e-11*pow(c1, 5)*(792092101236555.0*pow(c0, 22) + 219655792779885.0*pow(c0, 20)*(49.0*pow(c1, 2) - 17.0) + 23367637529775.0*pow(c0, 18)*(2303.0*pow(c1, 4) - 1786.0*pow(c1, 2) + 323.0) + 26483322533745.0*pow(c0, 16)*(4935.0*pow(c1, 6) - 6345.0*pow(c1, 4) + 2565.0*pow(c1, 2) - 323.0) + 114762339450.0*pow(c0, 14)*(1485435.0*pow(c1, 8) - 2788980.0*pow(c1, 6) + 1869210.0*pow(c1, 4) - 526148.0*pow(c1, 2) + 52003.0) + 10188656478.0*pow(c0, 12)*(12180567.0*pow(c1, 10) - 31072875.0*pow(c1, 8) + 30411750.0*pow(c1, 6) - 14192150.0*pow(c1, 4) + 3135475.0*pow(c1, 2) - 260015.0) + 957907874.0*pow(c0, 10)*(52782457.0*pow(c1, 12) - 174505266.0*pow(c1, 10) + 232054875.0*pow(c1, 8) - 158141100.0*pow(c1, 6) + 57923775.0*pow(c1, 4) - 10737090.0*pow(c1, 2) + 780045.0) + 40173210.0*pow(c0, 8)*(278992987.0*pow(c1, 14) - 1155828089.0*pow(c1, 12) + 1991959047.0*pow(c1, 10) - 1844406525.0*pow(c1, 8) + 986543025.0*pow(c1, 6) - 303181515.0*pow(c1, 4) + 49234605.0*pow(c1, 2) - 3231615.0) + 129591.0*pow(c0, 6)*(9764754545.0*pow(c1, 16) - 49421614840.0*pow(c1, 14) + 106729657580.0*pow(c1, 12) - 128075589096.0*pow(c1, 10) + 93078189750.0*pow(c1, 8) - 41771675400.0*pow(c1, 6) + 11246220300.0*pow(c1, 4) - 1650024600.0*pow(c1, 2) + 100180065.0) + 6545.0*pow(c0, 4)*(9764754545.0*pow(c1, 18) - 59186369385.0*pow(c1, 16) + 156151272420.0*pow(c1, 14) - 234805246676.0*pow(c1, 12) + 221153778846.0*pow(c1, 10) - 134849865150.0*pow(c1, 8) + 53017895700.0*pow(c1, 6) - 12896244900.0*pow(c1, 4) + 1750204665.0*pow(c1, 2) - 100180065.0) + 3927.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 3)*(278992987.0*pow(c1, 14) - 1155828089.0*pow(c1, 12) + 1991959047.0*pow(c1, 10) - 1844406525.0*pow(c1, 8) + 986543025.0*pow(c1, 6) - 303181515.0*pow(c1, 4) + 49234605.0*pow(c1, 2) - 3231615.0) + 51.0*pow(pow(c1, 2) - 1.0, 5)*(52782457.0*pow(c1, 12) - 174505266.0*pow(c1, 10) + 232054875.0*pow(c1, 8) - 158141100.0*pow(c1, 6) + 57923775.0*pow(c1, 4) - 10737090.0*pow(c1, 2) + 780045.0)); case 28: return 2.38590065711292e-11*c0*pow(c1, 5)*(4.7673120875666e+15*pow(c0, 22) + 2.36496070226343e+16*pow(c0, 20)*(3.0*pow(c1, 2) - 1.0) + 156896994842775.0*pow(c0, 18)*(2499.0*pow(c1, 4) - 1862.0*pow(c1, 2) + 323.0) + 190279334171025.0*pow(c0, 16)*(5593.0*pow(c1, 6) - 6909.0*pow(c1, 4) + 2679.0*pow(c1, 2) - 323.0) + 6250722088710.0*pow(c0, 14)*(251685.0*pow(c1, 8) - 454020.0*pow(c1, 6) + 291870.0*pow(c1, 4) - 78660.0*pow(c1, 2) + 7429.0) + 87219377982.0*pow(c0, 12)*(15151437.0*pow(c1, 10) - 37135875.0*pow(c1, 8) + 34862250.0*pow(c1, 6) - 15576750.0*pow(c1, 4) + 3288425.0*pow(c1, 2) - 260015.0) + 9218308242.0*pow(c0, 10)*(69023213.0*pow(c1, 12) - 219250206.0*pow(c1, 10) + 279655875.0*pow(c1, 8) - 182470500.0*pow(c1, 6) + 63864675.0*pow(c1, 4) - 11287710.0*pow(c1, 2) + 780045.0) + 448282010.0*pow(c0, 8)*(384557901.0*pow(c1, 14) - 1530691253.0*pow(c1, 12) + 2530326357.0*pow(c1, 10) - 2243197125.0*pow(c1, 8) + 1146522975.0*pow(c1, 6) - 335957895.0*pow(c1, 4) + 51895935.0*pow(c1, 2) - 3231615.0) + 1758735.0*pow(c0, 6)*(14228642337.0*pow(c1, 16) - 69190260776.0*pow(c1, 14) + 143322683036.0*pow(c1, 12) - 164668614552.0*pow(c1, 10) + 114353204550.0*pow(c1, 8) - 48932534040.0*pow(c1, 6) + 12531502620.0*pow(c1, 4) - 1744311720.0*pow(c1, 2) + 100180065.0) + 10659.0*pow(c0, 4)*(166000827265.0*pow(c1, 18) - 966710699955.0*pow(c1, 16) + 2446369934580.0*pow(c1, 14) - 3522078700140.0*pow(c1, 12) + 3169870830126.0*pow(c1, 10) - 1842948157050.0*pow(c1, 8) + 689232644100.0*pow(c1, 6) - 159053687100.0*pow(c1, 4) + 20419054425.0*pow(c1, 2) - 1101980715.0) + 3553.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2)*(14228642337.0*pow(c1, 16) - 69190260776.0*pow(c1, 14) + 143322683036.0*pow(c1, 12) - 164668614552.0*pow(c1, 10) + 114353204550.0*pow(c1, 8) - 48932534040.0*pow(c1, 6) + 12531502620.0*pow(c1, 4) - 1744311720.0*pow(c1, 2) + 100180065.0) + 969.0*pow(pow(c1, 2) - 1.0, 4)*(384557901.0*pow(c1, 14) - 1530691253.0*pow(c1, 12) + 2530326357.0*pow(c1, 10) - 2243197125.0*pow(c1, 8) + 1146522975.0*pow(c1, 6) - 335957895.0*pow(c1, 4) + 51895935.0*pow(c1, 2) - 3231615.0)); case 29: return 2.98237582139116e-12*pow(c1, 5)*(8.42225135470098e+16*pow(c0, 24) + 2.57995712974192e+16*pow(c0, 22)*(53.0*pow(c1, 2) - 17.0) + 5.22780786816126e+16*pow(c0, 20)*(159.0*pow(c1, 4) - 114.0*pow(c1, 2) + 19.0) + 3.9747238693503e+15*pow(c0, 18)*(6307.0*pow(c1, 6) - 7497.0*pow(c1, 4) + 2793.0*pow(c1, 2) - 323.0) + 140641246995975.0*pow(c0, 16)*(296429.0*pow(c1, 8) - 514556.0*pow(c1, 6) + 317814.0*pow(c1, 4) - 82156.0*pow(c1, 2) + 7429.0) + 15001733012904.0*pow(c0, 14)*(2667861.0*pow(c1, 10) - 6292125.0*pow(c1, 8) + 5675250.0*pow(c1, 6) - 2432250.0*pow(c1, 4) + 491625.0*pow(c1, 2) - 37145.0) + 251967091948.0*pow(c0, 12)*(89225129.0*pow(c1, 12) - 272725866.0*pow(c1, 10) + 334222875.0*pow(c1, 8) - 209173500.0*pow(c1, 6) + 70095375.0*pow(c1, 4) - 11838330.0*pow(c1, 2) + 780045.0) + 13986398712.0*pow(c0, 10)*(522604327.0*pow(c1, 14) - 2001673177.0*pow(c1, 12) + 3179127987.0*pow(c1, 10) - 2703340125.0*pow(c1, 8) + 1322911125.0*pow(c1, 6) - 370415115.0*pow(c1, 4) + 54557265.0*pow(c1, 2) - 3231615.0) + 65073195.0*pow(c0, 8)*(20381568753.0*pow(c1, 16) - 95370359448.0*pow(c1, 14) + 189805715372.0*pow(c1, 12) - 209173645512.0*pow(c1, 10) + 139078221750.0*pow(c1, 8) - 56867539560.0*pow(c1, 6) + 13886259660.0*pow(c1, 4) - 1838598840.0*pow(c1, 2) + 100180065.0) + 497420.0*pow(c0, 6)*(251372681287.0*pow(c1, 18) - 1408635591363.0*pow(c1, 16) + 3424917908412.0*pow(c1, 14) - 4729648540188.0*pow(c1, 12) + 4075548210162.0*pow(c1, 10) - 2264193450090.0*pow(c1, 8) + 807386811660.0*pow(c1, 6) - 177231251340.0*pow(c1, 4) + 21585857535.0*pow(c1, 2) - 1101980715.0) + 21318.0*pow(c0, 4)*(251372681287.0*pow(c1, 20) - 1660008272650.0*pow(c1, 18) + 4833553499775.0*pow(c1, 16) - 8154566448600.0*pow(c1, 14) + 8805196750350.0*pow(c1, 12) - 6339741660252.0*pow(c1, 10) + 3071580261750.0*pow(c1, 8) - 984618063000.0*pow(c1, 6) + 198817108875.0*pow(c1, 4) - 22687838250.0*pow(c1, 2) + 1101980715.0) + 3876.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 3)*(20381568753.0*pow(c1, 16) - 95370359448.0*pow(c1, 14) + 189805715372.0*pow(c1, 12) - 209173645512.0*pow(c1, 10) + 139078221750.0*pow(c1, 8) - 56867539560.0*pow(c1, 6) + 13886259660.0*pow(c1, 4) - 1838598840.0*pow(c1, 2) + 100180065.0) + 323.0*pow(pow(c1, 2) - 1.0, 5)*(522604327.0*pow(c1, 14) - 2001673177.0*pow(c1, 12) + 3179127987.0*pow(c1, 10) - 2703340125.0*pow(c1, 8) + 1322911125.0*pow(c1, 6) - 370415115.0*pow(c1, 4) + 54557265.0*pow(c1, 2) - 3231615.0)); default: return 0.; } case 10: switch(j) { case 6: return 6.09412374118256e-6*pow(c1, 6); case 7: return 5.48471136706431e-5*c0*pow(c1, 6); case 8: return 1.44334509659587e-6*pow(c1, 6)*(209.0*pow(c0, 2) + 11.0*pow(c1, 2) - 19.0); case 9: return 5.29226535418486e-6*c0*pow(c1, 6)*(247.0*pow(c0, 2) + 39.0*pow(c1, 2) - 57.0); case 10: return 5.67028430805521e-7*pow(c1, 6)*(8645.0*pow(c0, 4) + 182.0*pow(c0, 2)*(15.0*pow(c1, 2) - 19.0) + 65.0*pow(c1, 4) - 182.0*pow(c1, 2) + 133.0); case 11: return 7.37136960047177e-6*c0*pow(c1, 6)*(2261.0*pow(c0, 4) + 70.0*pow(c0, 2)*(17.0*pow(c1, 2) - 19.0) + 85.0*pow(c1, 4) - 210.0*pow(c1, 2) + 133.0); case 12: return 5.3415721742549e-8*pow(c1, 6)*(988057.0*pow(c0, 6) + 780045.0*pow(c0, 4)*(pow(c1, 2) - 1.0) + 345.0*pow(c0, 2)*(323.0*pow(c1, 4) - 714.0*pow(c1, 2) + 399.0) + 1615.0*pow(c1, 6) - 5865.0*pow(c1, 4) + 7245.0*pow(c1, 2) - 3059.0); case 13: return 1.60247165227647e-7*c0*pow(c1, 6)*(988057.0*pow(c0, 6) + 52003.0*pow(c0, 4)*(21.0*pow(c1, 2) - 19.0) + 260015.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2) + 11305.0*pow(c1, 6) - 37145.0*pow(c1, 4) + 41055.0*pow(c1, 2) - 15295.0); case 14: return 4.00617913069118e-9*pow(c1, 6)*(113626555.0*pow(c0, 8) + 7280420.0*pow(c0, 6)*(23.0*pow(c1, 2) - 19.0) + 2600150.0*pow(c0, 4)*(23.0*pow(c1, 4) - 42.0*pow(c1, 2) + 19.0) + 5200300.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 3) + 52003.0*pow(c1, 8) - 226100.0*pow(c1, 6) + 371450.0*pow(c1, 4) - 273700.0*pow(c1, 2) + 76475.0); case 15: return 0.000115740740740741*c0*pow(c1, 6)*(10925.0*pow(c0, 8) + 828.0*pow(c0, 6)*(25.0*pow(c1, 2) - 19.0) + 18.0*pow(c0, 4)*(575.0*pow(c1, 4) - 966.0*pow(c1, 2) + 399.0) + 60.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2)*(25.0*pow(c1, 2) - 19.0) + 45.0*pow(pow(c1, 2) - 1.0, 4)); case 16: return 0.000520833333333333*pow(c1, 6)*(6555.0*pow(c0, 10) + 575.0*pow(c0, 8)*(27.0*pow(c1, 2) - 19.0) + 46.0*pow(c0, 6)*(225.0*pow(c1, 4) - 350.0*pow(c1, 2) + 133.0) + 10.0*pow(c0, 4)*(225.0*pow(c1, 6) - 575.0*pow(c1, 4) + 483.0*pow(c1, 2) - 133.0) + 5.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 3)*(27.0*pow(c1, 2) - 19.0) + pow(pow(c1, 2) - 1.0, 5)); case 17: return 6.76406926406926e-6*c0*pow(c1, 6)*(1330665.0*pow(c0, 10) + 132825.0*pow(c0, 8)*(29.0*pow(c1, 2) - 19.0) + 12650.0*pow(c0, 6)*(261.0*pow(c1, 4) - 378.0*pow(c1, 2) + 133.0) + 154.0*pow(c0, 4)*(6525.0*pow(c1, 6) - 15525.0*pow(c1, 4) + 12075.0*pow(c1, 2) - 3059.0) + 385.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2)*(261.0*pow(c1, 4) - 378.0*pow(c1, 2) + 133.0) + 77.0*pow(pow(c1, 2) - 1.0, 4)*(29.0*pow(c1, 2) - 19.0)); case 18: return 5.63672438672439e-7*pow(c1, 6)*(41250615.0*pow(c0, 12) + 4622310.0*pow(c0, 10)*(31.0*pow(c1, 2) - 19.0) + 170775.0*pow(c0, 8)*(899.0*pow(c1, 4) - 1218.0*pow(c1, 2) + 399.0) + 7700.0*pow(c0, 6)*(8091.0*pow(c1, 6) - 18009.0*pow(c1, 4) + 13041.0*pow(c1, 2) - 3059.0) + 1155.0*pow(c0, 4)*(8091.0*pow(c1, 8) - 26100.0*pow(c1, 6) + 31050.0*pow(c1, 4) - 16100.0*pow(c1, 2) + 3059.0) + 462.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 3)*(899.0*pow(c1, 4) - 1218.0*pow(c1, 2) + 399.0) + 77.0*pow(pow(c1, 2) - 1.0, 5)*(31.0*pow(c1, 2) - 19.0)); case 19: return 1.30078255078255e-7*c0*pow(c1, 6)*(453756765.0*pow(c0, 12) + 56448210.0*pow(c0, 10)*(33.0*pow(c1, 2) - 19.0) + 7153575.0*pow(c0, 8)*(341.0*pow(c1, 4) - 434.0*pow(c1, 2) + 133.0) + 128700.0*pow(c0, 6)*(9889.0*pow(c1, 6) - 20677.0*pow(c1, 4) + 14007.0*pow(c1, 2) - 3059.0) + 1001.0*pow(c0, 4)*(267003.0*pow(c1, 8) - 809100.0*pow(c1, 6) + 900450.0*pow(c1, 4) - 434700.0*pow(c1, 2) + 76475.0) + 2002.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2)*(9889.0*pow(c1, 6) - 20677.0*pow(c1, 4) + 14007.0*pow(c1, 2) - 3059.0) + 1001.0*pow(pow(c1, 2) - 1.0, 4)*(341.0*pow(c1, 4) - 434.0*pow(c1, 2) + 133.0)); case 20: return 7.15430402930403e-7*pow(c1, 6)*(206253075.0*pow(c0, 14) + 28224105.0*pow(c0, 12)*(35.0*pow(c1, 2) - 19.0) + 28224105.0*pow(c0, 10)*(55.0*pow(c1, 4) - 66.0*pow(c1, 2) + 19.0) + 84825.0*pow(c0, 8)*(11935.0*pow(c1, 6) - 23529.0*pow(c1, 4) + 14973.0*pow(c1, 2) - 3059.0) + 4095.0*pow(c0, 6)*(69223.0*pow(c1, 8) - 197780.0*pow(c1, 6) + 206770.0*pow(c1, 4) - 93380.0*pow(c1, 2) + 15295.0) + 455.0*pow(c0, 4)*(69223.0*pow(c1, 10) - 267003.0*pow(c1, 8) + 404550.0*pow(c1, 6) - 300150.0*pow(c1, 4) + 108675.0*pow(c1, 2) - 15295.0) + 91.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 3)*(11935.0*pow(c1, 6) - 23529.0*pow(c1, 4) + 14973.0*pow(c1, 2) - 3059.0) + 91.0*pow(pow(c1, 2) - 1.0, 5)*(55.0*pow(c1, 4) - 66.0*pow(c1, 2) + 19.0)); case 21: return 2.38476800976801e-7*c0*pow(c1, 6)*(1526272755.0*pow(c0, 14) + 227963925.0*pow(c0, 12)*(37.0*pow(c1, 2) - 19.0) + 84672315.0*pow(c0, 10)*(185.0*pow(c1, 4) - 210.0*pow(c1, 2) + 57.0) + 6135675.0*pow(c0, 8)*(2035.0*pow(c1, 6) - 3795.0*pow(c1, 4) + 2277.0*pow(c1, 2) - 437.0) + 50895.0*pow(c0, 6)*(88319.0*pow(c1, 8) - 238700.0*pow(c1, 6) + 235290.0*pow(c1, 4) - 99820.0*pow(c1, 2) + 15295.0) + 273.0*pow(c0, 4)*(2561251.0*pow(c1, 10) - 9345105.0*pow(c1, 8) + 13350150.0*pow(c1, 6) - 9304650.0*pow(c1, 4) + 3151575.0*pow(c1, 2) - 412965.0) + 455.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2)*(88319.0*pow(c1, 8) - 238700.0*pow(c1, 6) + 235290.0*pow(c1, 4) - 99820.0*pow(c1, 2) + 15295.0) + 273.0*pow(pow(c1, 2) - 1.0, 4)*(2035.0*pow(c1, 6) - 3795.0*pow(c1, 4) + 2277.0*pow(c1, 2) - 437.0)); case 22: return 3.13000801282051e-7*pow(c1, 6)*(2834506545.0*pow(c0, 16) + 459029400.0*pow(c0, 14)*(39.0*pow(c1, 2) - 19.0) + 80640300.0*pow(c0, 12)*(481.0*pow(c1, 4) - 518.0*pow(c1, 2) + 133.0) + 15426840.0*pow(c0, 10)*(2405.0*pow(c1, 6) - 4255.0*pow(c1, 4) + 2415.0*pow(c1, 2) - 437.0) + 1051830.0*pow(c0, 8)*(15873.0*pow(c1, 8) - 40700.0*pow(c1, 6) + 37950.0*pow(c1, 4) - 15180.0*pow(c1, 2) + 2185.0) + 3016.0*pow(c0, 6)*(1148147.0*pow(c1, 10) - 3974355.0*pow(c1, 8) + 5370750.0*pow(c1, 6) - 3529350.0*pow(c1, 4) + 1122975.0*pow(c1, 2) - 137655.0) + 260.0*pow(c0, 4)*(1148147.0*pow(c1, 12) - 5122502.0*pow(c1, 10) + 9345105.0*pow(c1, 8) - 8900100.0*pow(c1, 6) + 4652325.0*pow(c1, 4) - 1260630.0*pow(c1, 2) + 137655.0) + 520.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 3)*(15873.0*pow(c1, 8) - 40700.0*pow(c1, 6) + 37950.0*pow(c1, 4) - 15180.0*pow(c1, 2) + 2185.0) + 13.0*pow(pow(c1, 2) - 1.0, 5)*(2405.0*pow(c1, 6) - 4255.0*pow(c1, 4) + 2415.0*pow(c1, 2) - 437.0)); case 23: return 1.84118118401207e-8*c0*pow(c1, 6)*(116214768345.0*pow(c0, 16) + 20289099480.0*pow(c0, 14)*(41.0*pow(c1, 2) - 19.0) + 3901749900.0*pow(c0, 12)*(533.0*pow(c1, 4) - 546.0*pow(c1, 2) + 133.0) + 119207400.0*pow(c0, 10)*(19721.0*pow(c1, 6) - 33189.0*pow(c1, 4) + 17871.0*pow(c1, 2) - 3059.0) + 65564070.0*pow(c0, 8)*(19721.0*pow(c1, 8) - 48100.0*pow(c1, 6) + 42550.0*pow(c1, 4) - 16100.0*pow(c1, 2) + 2185.0) + 1589432.0*pow(c0, 6)*(216931.0*pow(c1, 10) - 714285.0*pow(c1, 8) + 915750.0*pow(c1, 6) - 569250.0*pow(c1, 4) + 170775.0*pow(c1, 2) - 19665.0) + 884.0*pow(c0, 4)*(47074027.0*pow(c1, 12) - 199777578.0*pow(c1, 10) + 345768885.0*pow(c1, 8) - 311503500.0*pow(c1, 6) + 153526725.0*pow(c1, 4) - 39079530.0*pow(c1, 2) + 3991995.0) + 8840.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2)*(216931.0*pow(c1, 10) - 714285.0*pow(c1, 8) + 915750.0*pow(c1, 6) - 569250.0*pow(c1, 4) + 170775.0*pow(c1, 2) - 19665.0) + 1105.0*pow(pow(c1, 2) - 1.0, 4)*(19721.0*pow(c1, 8) - 48100.0*pow(c1, 6) + 42550.0*pow(c1, 4) - 16100.0*pow(c1, 2) + 2185.0)); case 24: return 1.89963138032991e-9*pow(c1, 6)*(2690818867065.0*pow(c0, 18) + 503910999585.0*pow(c0, 16)*(43.0*pow(c1, 2) - 19.0) + 35115749100.0*pow(c0, 14)*(1763.0*pow(c1, 4) - 1722.0*pow(c1, 2) + 399.0) + 3562467300.0*pow(c0, 12)*(22919.0*pow(c1, 6) - 36777.0*pow(c1, 4) + 18837.0*pow(c1, 2) - 3059.0) + 63546714.0*pow(c0, 10)*(848003.0*pow(c1, 8) - 1972100.0*pow(c1, 6) + 1659450.0*pow(c1, 4) - 595700.0*pow(c1, 2) + 76475.0) + 21182238.0*pow(c0, 8)*(848003.0*pow(c1, 10) - 2662335.0*pow(c1, 8) + 3246750.0*pow(c1, 6) - 1914750.0*pow(c1, 4) + 543375.0*pow(c1, 2) - 58995.0) + 309876.0*pow(c0, 6)*(9328033.0*pow(c1, 12) - 37745994.0*pow(c1, 10) + 62142795.0*pow(c1, 8) - 53113500.0*pow(c1, 6) + 24762375.0*pow(c1, 4) - 5942970.0*pow(c1, 2) + 570285.0) + 21420.0*pow(c0, 4)*(9328033.0*pow(c1, 14) - 47074027.0*pow(c1, 12) + 99888789.0*pow(c1, 10) - 115256295.0*pow(c1, 8) + 77875875.0*pow(c1, 6) - 30705345.0*pow(c1, 4) + 6513255.0*pow(c1, 2) - 570285.0) + 5355.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 3)*(848003.0*pow(c1, 10) - 2662335.0*pow(c1, 8) + 3246750.0*pow(c1, 6) - 1914750.0*pow(c1, 4) + 543375.0*pow(c1, 2) - 58995.0) + 17.0*pow(pow(c1, 2) - 1.0, 5)*(848003.0*pow(c1, 8) - 1972100.0*pow(c1, 6) + 1659450.0*pow(c1, 4) - 595700.0*pow(c1, 2) + 76475.0)); case 25: return 1.70966824229692e-8*c0*pow(c1, 6)*(708110228175.0*pow(c0, 18) + 141622045635.0*pow(c0, 16)*(45.0*pow(c1, 2) - 19.0) + 31994349180.0*pow(c0, 14)*(645.0*pow(c1, 4) - 602.0*pow(c1, 2) + 133.0) + 1187489100.0*pow(c0, 12)*(26445.0*pow(c1, 6) - 40549.0*pow(c1, 4) + 19803.0*pow(c1, 2) - 3059.0) + 118748910.0*pow(c0, 10)*(206271.0*pow(c1, 8) - 458380.0*pow(c1, 6) + 367770.0*pow(c1, 4) - 125580.0*pow(c1, 2) + 15295.0) + 11767910.0*pow(c0, 8)*(848003.0*pow(c1, 10) - 2544009.0*pow(c1, 8) + 2958150.0*pow(c1, 6) - 1659450.0*pow(c1, 4) + 446775.0*pow(c1, 2) - 45885.0) + 162316.0*pow(c0, 6)*(12720045.0*pow(c1, 12) - 49184174.0*pow(c1, 10) + 77207715.0*pow(c1, 8) - 62770500.0*pow(c1, 6) + 27763875.0*pow(c1, 4) - 6303150.0*pow(c1, 2) + 570285.0) + 476.0*pow(c0, 4)*(419761485.0*pow(c1, 14) - 2024183161.0*pow(c1, 12) + 4095440349.0*pow(c1, 10) - 4494995505.0*pow(c1, 8) + 2881407375.0*pow(c1, 6) - 1074687075.0*pow(c1, 4) + 214937415.0*pow(c1, 2) - 17678835.0) + 595.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2)*(12720045.0*pow(c1, 12) - 49184174.0*pow(c1, 10) + 77207715.0*pow(c1, 8) - 62770500.0*pow(c1, 6) + 27763875.0*pow(c1, 4) - 6303150.0*pow(c1, 2) + 570285.0) + 85.0*pow(pow(c1, 2) - 1.0, 4)*(848003.0*pow(c1, 10) - 2544009.0*pow(c1, 8) + 2958150.0*pow(c1, 6) - 1659450.0*pow(c1, 4) + 446775.0*pow(c1, 2) - 45885.0)); case 26: return 4.2741706057423e-9*pow(c1, 6)*(6656236144845.0*pow(c0, 20) + 1416220456350.0*pow(c0, 18)*(47.0*pow(c1, 2) - 19.0) + 343939253685.0*pow(c0, 16)*(705.0*pow(c1, 4) - 630.0*pow(c1, 2) + 133.0) + 13910586600.0*pow(c0, 14)*(30315.0*pow(c1, 6) - 44505.0*pow(c1, 4) + 20769.0*pow(c1, 2) - 3059.0) + 1543735830.0*pow(c0, 12)*(248583.0*pow(c1, 8) - 528900.0*pow(c1, 6) + 405490.0*pow(c1, 4) - 132020.0*pow(c1, 2) + 15295.0) + 174165068.0*pow(c0, 10)*(1077193.0*pow(c1, 10) - 3094065.0*pow(c1, 8) + 3437850.0*pow(c1, 6) - 1838850.0*pow(c1, 4) + 470925.0*pow(c1, 2) - 45885.0) + 1217370.0*pow(c0, 8)*(39856141.0*pow(c1, 12) - 147552522.0*pow(c1, 10) + 221328783.0*pow(c1, 8) - 171572700.0*pow(c1, 6) + 72186075.0*pow(c1, 4) - 15547770.0*pow(c1, 2) + 1330665.0) + 10472.0*pow(c0, 6)*(597842115.0*pow(c1, 14) - 2760249765.0*pow(c1, 12) + 5336482879.0*pow(c1, 10) - 5584691385.0*pow(c1, 8) + 3405299625.0*pow(c1, 6) - 1204952175.0*pow(c1, 4) + 227963925.0*pow(c1, 2) - 17678835.0) + 595.0*pow(c0, 4)*(597842115.0*pow(c1, 16) - 3358091880.0*pow(c1, 14) + 8096732644.0*pow(c1, 12) - 10921174264.0*pow(c1, 10) + 8989991010.0*pow(c1, 8) - 4610251800.0*pow(c1, 6) + 1432916100.0*pow(c1, 4) - 245642760.0*pow(c1, 2) + 17678835.0) + 170.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 3)*(39856141.0*pow(c1, 12) - 147552522.0*pow(c1, 10) + 221328783.0*pow(c1, 8) - 171572700.0*pow(c1, 6) + 72186075.0*pow(c1, 4) - 15547770.0*pow(c1, 2) + 1330665.0) + 17.0*pow(pow(c1, 2) - 1.0, 5)*(1077193.0*pow(c1, 10) - 3094065.0*pow(c1, 8) + 3437850.0*pow(c1, 6) - 1838850.0*pow(c1, 4) + 470925.0*pow(c1, 2) - 45885.0)); case 27: return 7.49854492235491e-11*c0*pow(c1, 6)*(885279407264385.0*pow(c0, 20) + 199687084345350.0*pow(c0, 18)*(49.0*pow(c1, 2) - 19.0) + 121086849017925.0*pow(c0, 16)*(329.0*pow(c1, 4) - 282.0*pow(c1, 2) + 57.0) + 2272989850440.0*pow(c0, 14)*(34545.0*pow(c1, 6) - 48645.0*pow(c1, 4) + 21735.0*pow(c1, 2) - 3059.0) + 277516202670.0*pow(c0, 12)*(297087.0*pow(c1, 8) - 606300.0*pow(c1, 6) + 445050.0*pow(c1, 4) - 138460.0*pow(c1, 2) + 15295.0) + 11732392308.0*pow(c0, 10)*(4060189.0*pow(c1, 10) - 11186235.0*pow(c1, 8) + 11900250.0*pow(c1, 6) - 6082350.0*pow(c1, 4) + 1485225.0*pow(c1, 2) - 137655.0) + 285270370.0*pow(c0, 8)*(52782457.0*pow(c1, 12) - 187431582.0*pow(c1, 10) + 269183655.0*pow(c1, 8) - 199395300.0*pow(c1, 6) + 79989975.0*pow(c1, 4) - 16388190.0*pow(c1, 2) + 1330665.0) + 8953560.0*pow(c0, 6)*(278992987.0*pow(c1, 14) - 1235540371.0*pow(c1, 12) + 2287064091.0*pow(c1, 10) - 2287064091.0*pow(c1, 8) + 1329688425.0*pow(c1, 6) - 447553665.0*pow(c1, 4) + 80330145.0*pow(c1, 2) - 5892945.0) + 6783.0*pow(c0, 4)*(29294263635.0*pow(c1, 16) - 157830318360.0*pow(c1, 14) + 364352968980.0*pow(c1, 12) - 469610493352.0*pow(c1, 10) + 368589631410.0*pow(c1, 8) - 179799820200.0*pow(c1, 6) + 53017895700.0*pow(c1, 4) - 8597496600.0*pow(c1, 2) + 583401555.0) + 22610.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2)*(278992987.0*pow(c1, 14) - 1235540371.0*pow(c1, 12) + 2287064091.0*pow(c1, 10) - 2287064091.0*pow(c1, 8) + 1329688425.0*pow(c1, 6) - 447553665.0*pow(c1, 4) + 80330145.0*pow(c1, 2) - 5892945.0) + 969.0*pow(pow(c1, 2) - 1.0, 4)*(52782457.0*pow(c1, 12) - 187431582.0*pow(c1, 10) + 269183655.0*pow(c1, 8) - 199395300.0*pow(c1, 6) + 79989975.0*pow(c1, 4) - 16388190.0*pow(c1, 2) + 1330665.0)); case 28: return 1.0225288530484e-11*pow(c1, 6)*(1.50497499234945e+16*pow(c0, 22) + 3.58771128207146e+15*pow(c0, 20)*(51.0*pow(c1, 2) - 19.0) + 6.95576677136303e+15*pow(c0, 18)*(119.0*pow(c1, 4) - 98.0*pow(c1, 2) + 19.0) + 328162909657275.0*pow(c0, 16)*(5593.0*pow(c1, 6) - 7567.0*pow(c1, 4) + 3243.0*pow(c1, 2) - 437.0) + 6250722088710.0*pow(c0, 14)*(352359.0*pow(c1, 8) - 690900.0*pow(c1, 6) + 486450.0*pow(c1, 4) - 144900.0*pow(c1, 2) + 15295.0) + 881884821818.0*pow(c0, 12)*(1683493.0*pow(c1, 10) - 4456305.0*pow(c1, 8) + 4547250.0*pow(c1, 6) - 2225250.0*pow(c1, 4) + 519225.0*pow(c1, 2) - 45885.0) + 8158732582.0*pow(c0, 10)*(69023213.0*pow(c1, 12) - 235490962.0*pow(c1, 10) + 324400815.0*pow(c1, 8) - 230071500.0*pow(c1, 6) + 88194075.0*pow(c1, 4) - 17228610.0*pow(c1, 2) + 1330665.0) + 303674910.0*pow(c0, 8)*(384557901.0*pow(c1, 14) - 1636256167.0*pow(c1, 12) + 2905189521.0*pow(c1, 10) - 2781564435.0*pow(c1, 8) + 1545313575.0*pow(c1, 6) - 495937845.0*pow(c1, 4) + 84672315.0*pow(c1, 2) - 5892945.0) + 2611455.0*pow(c0, 6)*(4742880779.0*pow(c1, 16) - 24551382856.0*pow(c1, 14) + 54363776324.0*pow(c1, 12) - 67087213336.0*pow(c1, 10) + 50315410002.0*pow(c1, 8) - 23402516280.0*pow(c1, 6) + 6564120420.0*pow(c1, 4) - 1009864680.0*pow(c1, 2) + 64822395.0) + 124355.0*pow(c0, 4)*(4742880779.0*pow(c1, 18) - 29294263635.0*pow(c1, 16) + 78915159180.0*pow(c1, 14) - 121450989660.0*pow(c1, 12) + 117402623338.0*pow(c1, 10) - 73717926282.0*pow(c1, 8) + 29966636700.0*pow(c1, 6) - 7573985100.0*pow(c1, 4) + 1074687075.0*pow(c1, 2) - 64822395.0) + 24871.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 3)*(384557901.0*pow(c1, 14) - 1636256167.0*pow(c1, 12) + 2905189521.0*pow(c1, 10) - 2781564435.0*pow(c1, 8) + 1545313575.0*pow(c1, 6) - 495937845.0*pow(c1, 4) + 84672315.0*pow(c1, 2) - 5892945.0) + 323.0*pow(pow(c1, 2) - 1.0, 5)*(69023213.0*pow(c1, 12) - 235490962.0*pow(c1, 10) + 324400815.0*pow(c1, 8) - 230071500.0*pow(c1, 6) + 88194075.0*pow(c1, 4) - 17228610.0*pow(c1, 2) + 1330665.0)); case 29: return 7.15770197133877e-11*c0*pow(c1, 6)*(4.95426550276529e+15*pow(c0, 22) + 1.24471615908602e+15*pow(c0, 20)*(53.0*pow(c1, 2) - 19.0) + 366092987966475.0*pow(c0, 18)*(901.0*pow(c1, 4) - 714.0*pow(c1, 2) + 133.0) + 129610560957075.0*pow(c0, 16)*(6307.0*pow(c1, 6) - 8211.0*pow(c1, 4) + 3381.0*pow(c1, 2) - 437.0) + 3750433253226.0*pow(c0, 14)*(296429.0*pow(c1, 8) - 559300.0*pow(c1, 6) + 378350.0*pow(c1, 4) - 108100.0*pow(c1, 2) + 10925.0) + 416714805914.0*pow(c0, 12)*(2075003.0*pow(c1, 10) - 5285385.0*pow(c1, 8) + 5181750.0*pow(c1, 6) - 2432250.0*pow(c1, 4) + 543375.0*pow(c1, 2) - 45885.0) + 4344260206.0*pow(c0, 10)*(89225129.0*pow(c1, 12) - 292927782.0*pow(c1, 10) + 387698535.0*pow(c1, 8) - 263740500.0*pow(c1, 6) + 96798375.0*pow(c1, 4) - 18069030.0*pow(c1, 2) + 1330665.0) + 187989230.0*pow(c0, 8)*(522604327.0*pow(c1, 14) - 2139719603.0*pow(c1, 12) + 3650109911.0*pow(c1, 10) - 3352141755.0*pow(c1, 8) + 1783054125.0*pow(c1, 6) - 546803265.0*pow(c1, 4) + 89014485.0*pow(c1, 2) - 5892945.0) + 1971915.0*pow(c0, 6)*(6793856251.0*pow(c1, 16) - 33841095288.0*pow(c1, 14) + 71995271348.0*pow(c1, 12) - 85218892616.0*pow(c1, 10) + 61194417570.0*pow(c1, 8) - 27197518920.0*pow(c1, 6) + 7273755060.0*pow(c1, 4) - 1064451960.0*pow(c1, 2) + 64822395.0) + 3553.0*pow(c0, 4)*(251372681287.0*pow(c1, 18) - 1494007445385.0*pow(c1, 16) + 3866842799820.0*pow(c1, 14) - 5708196514020.0*pow(c1, 12) + 5283118050210.0*pow(c1, 10) - 3169870830126.0*pow(c1, 8) + 1228632104700.0*pow(c1, 6) - 295385418900.0*pow(c1, 4) + 39763421775.0*pow(c1, 2) - 2268783825.0) + 3553.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2)*(6793856251.0*pow(c1, 16) - 33841095288.0*pow(c1, 14) + 71995271348.0*pow(c1, 12) - 85218892616.0*pow(c1, 10) + 61194417570.0*pow(c1, 8) - 27197518920.0*pow(c1, 6) + 7273755060.0*pow(c1, 4) - 1064451960.0*pow(c1, 2) + 64822395.0) + 323.0*pow(pow(c1, 2) - 1.0, 4)*(522604327.0*pow(c1, 14) - 2139719603.0*pow(c1, 12) + 3650109911.0*pow(c1, 10) - 3352141755.0*pow(c1, 8) + 1783054125.0*pow(c1, 6) - 546803265.0*pow(c1, 4) + 89014485.0*pow(c1, 2) - 5892945.0)); default: return 0.; } case 11: switch(j) { case 7: return 2.88669019319174e-6*pow(c1, 7); case 8: return 3.17535921251092e-5*c0*pow(c1, 7); case 9: return 7.56037907740694e-7*pow(c1, 7)*(273.0*pow(c0, 2) + 13.0*pow(c1, 2) - 21.0); case 10: return 2.94854784018871e-5*c0*pow(c1, 7)*(35.0*pow(c0, 2) + 5.0*pow(c1, 2) - 7.0); case 11: return 3.20494330455294e-7*pow(c1, 7)*(13685.0*pow(c0, 4) + 230.0*pow(c0, 2)*(17.0*pow(c1, 2) - 21.0) + 85.0*pow(c1, 4) - 230.0*pow(c1, 2) + 161.0); case 12: return 1.06831443485098e-7*c0*pow(c1, 7)*(156009.0*pow(c0, 4) + 3910.0*pow(c0, 2)*(19.0*pow(c1, 2) - 21.0) + 4845.0*pow(c1, 4) - 11730.0*pow(c1, 2) + 7245.0); case 13: return 3.20494330455294e-8*pow(c1, 7)*(1820105.0*pow(c0, 6) + 1300075.0*pow(c0, 4)*(pow(c1, 2) - 1.0) + 425.0*pow(c0, 2)*(399.0*pow(c1, 4) - 874.0*pow(c1, 2) + 483.0) + 2261.0*pow(c1, 6) - 8075.0*pow(c1, 4) + 9775.0*pow(c1, 2) - 4025.0); case 14: return 5.44840361774e-7*c0*pow(c1, 7)*(351785.0*pow(c0, 6) + 15295.0*pow(c0, 4)*(23.0*pow(c1, 2) - 21.0) + 76475.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2) + 3059.0*pow(c1, 6) - 9975.0*pow(c1, 4) + 10925.0*pow(c1, 2) - 4025.0); case 15: return 0.000192901234567901*pow(c1, 15) + 0.000833333333333333*pow(c1, 13)*(25.0*pow(c0, 2) - 1.0) + 0.000452898550724638*pow(c1, 11)*(575.0*pow(c0, 4) - 138.0*pow(c0, 2) + 3.0) + 0.000992063492063492*pow(c1, 9)*(805.0*pow(c0, 6) - 483.0*pow(c0, 4) + 63.0*pow(c0, 2) - 1.0) + 5.48245614035088e-5*pow(c1, 7)*(10925.0*pow(c0, 8) - 12236.0*pow(c0, 6) + 3990.0*pow(c0, 4) - 380.0*pow(c0, 2) + 5.0); case 16: return 0.000148809523809524*c0*pow(c1, 7)*(12075.0*pow(c0, 8) + 2300.0*pow(c0, 6)*(9.0*pow(c1, 2) - 7.0) + 14.0*pow(c0, 4)*(675.0*pow(c1, 4) - 1150.0*pow(c1, 2) + 483.0) + 140.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2)*(9.0*pow(c1, 2) - 7.0) + 35.0*pow(pow(c1, 2) - 1.0, 4)); case 17: return 7.44047619047619e-5*pow(c1, 7)*(70035.0*pow(c0, 10) + 5175.0*pow(c0, 8)*(29.0*pow(c1, 2) - 21.0) + 350.0*pow(c0, 6)*(261.0*pow(c1, 4) - 414.0*pow(c1, 2) + 161.0) + 70.0*pow(c0, 4)*(261.0*pow(c1, 6) - 675.0*pow(c1, 4) + 575.0*pow(c1, 2) - 161.0) + 35.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 3)*(29.0*pow(c1, 2) - 21.0) + 7.0*pow(pow(c1, 2) - 1.0, 5)); case 18: return 2.25468975468975e-6*c0*pow(c1, 7)*(6513255.0*pow(c0, 10) + 550275.0*pow(c0, 8)*(31.0*pow(c1, 2) - 21.0) + 14850.0*pow(c0, 6)*(899.0*pow(c1, 4) - 1334.0*pow(c1, 2) + 483.0) + 462.0*pow(c0, 4)*(8091.0*pow(c1, 6) - 19575.0*pow(c1, 4) + 15525.0*pow(c1, 2) - 4025.0) + 385.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2)*(899.0*pow(c1, 4) - 1334.0*pow(c1, 2) + 483.0) + 231.0*pow(pow(c1, 2) - 1.0, 4)*(31.0*pow(c1, 2) - 21.0)); case 19: return 1.86011904761905e-5*pow(c1, 7)*(2171085.0*pow(c0, 12) + 620310.0*pow(c0, 10)*(11.0*pow(c1, 2) - 7.0) + 6525.0*pow(c0, 8)*(1023.0*pow(c1, 4) - 1426.0*pow(c1, 2) + 483.0) + 252.0*pow(c0, 6)*(9889.0*pow(c1, 6) - 22475.0*pow(c1, 4) + 16675.0*pow(c1, 2) - 4025.0) + 35.0*pow(c0, 4)*(9889.0*pow(c1, 8) - 32364.0*pow(c1, 6) + 39150.0*pow(c1, 4) - 20700.0*pow(c1, 2) + 4025.0) + 14.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 3)*(1023.0*pow(c1, 4) - 1426.0*pow(c1, 2) + 483.0) + 7.0*pow(pow(c1, 2) - 1.0, 5)*(11.0*pow(c1, 2) - 7.0)); case 20: return 1.43086080586081e-6*c0*pow(c1, 7)*(75987975.0*pow(c0, 12) + 56448210.0*pow(c0, 10)*(5.0*pow(c1, 2) - 3.0) + 876525.0*pow(c0, 8)*(385.0*pow(c1, 4) - 506.0*pow(c1, 2) + 161.0) + 67860.0*pow(c0, 6)*(2387.0*pow(c1, 6) - 5115.0*pow(c1, 4) + 3565.0*pow(c1, 2) - 805.0) + 91.0*pow(c0, 4)*(346115.0*pow(c1, 8) - 1068012.0*pow(c1, 6) + 1213650.0*pow(c1, 4) - 600300.0*pow(c1, 2) + 108675.0) + 910.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2)*(2387.0*pow(c1, 6) - 5115.0*pow(c1, 4) + 3565.0*pow(c1, 2) - 805.0) + 91.0*pow(pow(c1, 2) - 1.0, 4)*(385.0*pow(c1, 4) - 506.0*pow(c1, 2) + 161.0)); case 21: return 2.38476800976801e-7*pow(c1, 7)*(1204952175.0*pow(c0, 14) + 141120525.0*pow(c0, 12)*(37.0*pow(c1, 2) - 21.0) + 40495455.0*pow(c0, 10)*(185.0*pow(c1, 4) - 230.0*pow(c1, 2) + 69.0) + 1577745.0*pow(c0, 8)*(2849.0*pow(c1, 6) - 5775.0*pow(c1, 4) + 3795.0*pow(c1, 2) - 805.0) + 13195.0*pow(c0, 6)*(88319.0*pow(c1, 8) - 257796.0*pow(c1, 6) + 276210.0*pow(c1, 4) - 128340.0*pow(c1, 2) + 21735.0) + 1365.0*pow(c0, 4)*(88319.0*pow(c1, 10) - 346115.0*pow(c1, 8) + 534006.0*pow(c1, 6) - 404550.0*pow(c1, 4) + 150075.0*pow(c1, 2) - 21735.0) + 1365.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 3)*(2849.0*pow(c1, 6) - 5775.0*pow(c1, 4) + 3795.0*pow(c1, 2) - 805.0) + 91.0*pow(pow(c1, 2) - 1.0, 5)*(185.0*pow(c1, 4) - 230.0*pow(c1, 2) + 69.0)); case 22: return 7.15430402930403e-7*c0*pow(c1, 7)*(1044291885.0*pow(c0, 14) + 401650725.0*pow(c0, 12)*(13.0*pow(c1, 2) - 7.0) + 6135675.0*pow(c0, 10)*(1443.0*pow(c1, 4) - 1702.0*pow(c1, 2) + 483.0) + 13498485.0*pow(c0, 8)*(481.0*pow(c1, 6) - 925.0*pow(c1, 4) + 575.0*pow(c1, 2) - 115.0) + 58435.0*pow(c0, 6)*(37037.0*pow(c1, 8) - 102564.0*pow(c1, 6) + 103950.0*pow(c1, 4) - 45540.0*pow(c1, 2) + 7245.0) + 91.0*pow(c0, 4)*(3444441.0*pow(c1, 10) - 12806255.0*pow(c1, 8) + 18690210.0*pow(c1, 6) - 13350150.0*pow(c1, 4) + 4652325.0*pow(c1, 2) - 630315.0) + 455.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2)*(37037.0*pow(c1, 8) - 102564.0*pow(c1, 6) + 103950.0*pow(c1, 4) - 45540.0*pow(c1, 2) + 7245.0) + 455.0*pow(pow(c1, 2) - 1.0, 4)*(481.0*pow(c1, 6) - 925.0*pow(c1, 4) + 575.0*pow(c1, 2) - 115.0)); case 23: return 5.81287202380952e-7*pow(c1, 7)*(3293535945.0*pow(c0, 16) + 459029400.0*pow(c0, 14)*(41.0*pow(c1, 2) - 21.0) + 69852300.0*pow(c0, 12)*(533.0*pow(c1, 4) - 598.0*pow(c1, 2) + 161.0) + 1661352.0*pow(c0, 10)*(19721.0*pow(c1, 6) - 36075.0*pow(c1, 4) + 21275.0*pow(c1, 2) - 4025.0) + 692230.0*pow(c0, 8)*(19721.0*pow(c1, 8) - 51948.0*pow(c1, 6) + 49950.0*pow(c1, 4) - 20700.0*pow(c1, 2) + 3105.0) + 1736.0*pow(c0, 6)*(1518517.0*pow(c1, 10) - 5370365.0*pow(c1, 8) + 7435890.0*pow(c1, 6) - 5024250.0*pow(c1, 4) + 1650825.0*pow(c1, 2) - 210105.0) + 140.0*pow(c0, 4)*(1518517.0*pow(c1, 12) - 6888882.0*pow(c1, 10) + 12806255.0*pow(c1, 8) - 12460140.0*pow(c1, 6) + 6675075.0*pow(c1, 4) - 1860930.0*pow(c1, 2) + 210105.0) + 280.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 3)*(19721.0*pow(c1, 8) - 51948.0*pow(c1, 6) + 49950.0*pow(c1, 4) - 20700.0*pow(c1, 2) + 3105.0) + pow(pow(c1, 2) - 1.0, 5)*(19721.0*pow(c1, 6) - 36075.0*pow(c1, 4) + 21275.0*pow(c1, 2) - 4025.0)); case 24: return 3.79926276065982e-9*c0*pow(c1, 7)*(1274598410715.0*pow(c0, 16) + 191966095080.0*pow(c0, 14)*(43.0*pow(c1, 2) - 21.0) + 10687401900.0*pow(c0, 12)*(1763.0*pow(c1, 4) - 1886.0*pow(c1, 2) + 483.0) + 854992152.0*pow(c0, 10)*(22919.0*pow(c1, 6) - 39975.0*pow(c1, 4) + 22425.0*pow(c1, 2) - 4025.0) + 11767910.0*pow(c0, 8)*(848003.0*pow(c1, 8) - 2129868.0*pow(c1, 6) + 1948050.0*pow(c1, 4) - 765900.0*pow(c1, 2) + 108675.0) + 2921688.0*pow(c0, 6)*(848003.0*pow(c1, 10) - 2859545.0*pow(c1, 8) + 3766230.0*pow(c1, 6) - 2414250.0*pow(c1, 4) + 750375.0*pow(c1, 2) - 90045.0) + 4284.0*pow(c0, 4)*(65296231.0*pow(c1, 12) - 282444162.0*pow(c1, 10) + 499443945.0*pow(c1, 8) - 461025180.0*pow(c1, 6) + 233627625.0*pow(c1, 4) - 61410690.0*pow(c1, 2) + 6513255.0) + 14280.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2)*(848003.0*pow(c1, 10) - 2859545.0*pow(c1, 8) + 3766230.0*pow(c1, 6) - 2414250.0*pow(c1, 4) + 750375.0*pow(c1, 2) - 90045.0) + 153.0*pow(pow(c1, 2) - 1.0, 4)*(848003.0*pow(c1, 8) - 2129868.0*pow(c1, 6) + 1948050.0*pow(c1, 4) - 765900.0*pow(c1, 2) + 108675.0)); case 25: return 1.70966824229692e-8*pow(c1, 7)*(708110228175.0*pow(c0, 18) + 343939253685.0*pow(c0, 16)*(15.0*pow(c1, 2) - 7.0) + 6955293300.0*pow(c0, 14)*(1935.0*pow(c1, 4) - 1978.0*pow(c1, 2) + 483.0) + 3087471660.0*pow(c0, 12)*(5289.0*pow(c1, 6) - 8815.0*pow(c1, 4) + 4715.0*pow(c1, 2) - 805.0) + 87082534.0*pow(c0, 10)*(114595.0*pow(c1, 8) - 275028.0*pow(c1, 6) + 239850.0*pow(c1, 4) - 89700.0*pow(c1, 2) + 12075.0) + 405790.0*pow(c0, 8)*(7632027.0*pow(c1, 10) - 24592087.0*pow(c1, 8) + 30883086.0*pow(c1, 6) - 18831150.0*pow(c1, 4) + 5552775.0*pow(c1, 2) - 630315.0) + 36652.0*pow(c0, 6)*(12720045.0*pow(c1, 12) - 52576186.0*pow(c1, 10) + 88645895.0*pow(c1, 8) - 77835420.0*pow(c1, 6) + 37420875.0*pow(c1, 4) - 9304650.0*pow(c1, 2) + 930465.0) + 2380.0*pow(c0, 4)*(12720045.0*pow(c1, 14) - 65296231.0*pow(c1, 12) + 141222081.0*pow(c1, 10) - 166481315.0*pow(c1, 8) + 115256295.0*pow(c1, 6) - 46725525.0*pow(c1, 4) + 10235115.0*pow(c1, 2) - 930465.0) + 85.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 3)*(7632027.0*pow(c1, 10) - 24592087.0*pow(c1, 8) + 30883086.0*pow(c1, 6) - 18831150.0*pow(c1, 4) + 5552775.0*pow(c1, 2) - 630315.0) + 17.0*pow(pow(c1, 2) - 1.0, 5)*(114595.0*pow(c1, 8) - 275028.0*pow(c1, 6) + 239850.0*pow(c1, 4) - 89700.0*pow(c1, 2) + 12075.0)); case 26: return 8.99825390682589e-10*c0*pow(c1, 7)*(33281180724225.0*pow(c0, 18) + 5766040429425.0*pow(c0, 16)*(47.0*pow(c1, 2) - 21.0) + 1136494925220.0*pow(c0, 14)*(705.0*pow(c1, 4) - 690.0*pow(c1, 2) + 161.0) + 185010801780.0*pow(c0, 12)*(6063.0*pow(c1, 6) - 9675.0*pow(c1, 4) + 4945.0*pow(c1, 2) - 805.0) + 9776993590.0*pow(c0, 10)*(82861.0*pow(c1, 8) - 190404.0*pow(c1, 6) + 158670.0*pow(c1, 4) - 56580.0*pow(c1, 2) + 7245.0) + 285270370.0*pow(c0, 8)*(1077193.0*pow(c1, 10) - 3323255.0*pow(c1, 8) + 3987906.0*pow(c1, 6) - 2318550.0*pow(c1, 4) + 650325.0*pow(c1, 2) - 70035.0) + 497420.0*pow(c0, 6)*(119568423.0*pow(c1, 12) - 473185674.0*pow(c1, 10) + 762354697.0*pow(c1, 8) - 638250444.0*pow(c1, 6) + 291882825.0*pow(c1, 4) - 68854410.0*pow(c1, 2) + 6513255.0) + 9044.0*pow(c0, 4)*(597842115.0*pow(c1, 14) - 2938330395.0*pow(c1, 12) + 6072549483.0*pow(c1, 10) - 6825733915.0*pow(c1, 8) + 4494995505.0*pow(c1, 6) - 1728844425.0*pow(c1, 4) + 358229025.0*pow(c1, 2) - 30705345.0) + 1615.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2)*(119568423.0*pow(c1, 12) - 473185674.0*pow(c1, 10) + 762354697.0*pow(c1, 8) - 638250444.0*pow(c1, 6) + 291882825.0*pow(c1, 4) - 68854410.0*pow(c1, 2) + 6513255.0) + 1615.0*pow(pow(c1, 2) - 1.0, 4)*(1077193.0*pow(c1, 10) - 3323255.0*pow(c1, 8) + 3987906.0*pow(c1, 6) - 2318550.0*pow(c1, 4) + 650325.0*pow(c1, 2) - 70035.0)); case 27: return 7.49854492235491e-11*pow(c1, 7)*(978466713292215.0*pow(c0, 20) + 1.26468486752055e+15*pow(c0, 18)*(7.0*pow(c1, 2) - 3.0) + 12785567908725.0*pow(c0, 16)*(2303.0*pow(c1, 4) - 2162.0*pow(c1, 2) + 483.0) + 6818969551320.0*pow(c0, 14)*(6909.0*pow(c1, 6) - 10575.0*pow(c1, 4) + 5175.0*pow(c1, 2) - 805.0) + 400856737190.0*pow(c0, 12)*(99029.0*pow(c1, 8) - 218268.0*pow(c1, 6) + 174150.0*pow(c1, 4) - 59340.0*pow(c1, 2) + 7245.0) + 4450217772.0*pow(c0, 10)*(4060189.0*pow(c1, 10) - 12014845.0*pow(c1, 8) + 13804290.0*pow(c1, 6) - 7669050.0*pow(c1, 4) + 2051025.0*pow(c1, 2) - 210105.0) + 82820430.0*pow(c0, 8)*(52782457.0*pow(c1, 12) - 200357898.0*pow(c1, 10) + 309062715.0*pow(c1, 8) - 247250172.0*pow(c1, 6) + 107812575.0*pow(c1, 4) - 24192090.0*pow(c1, 2) + 2171085.0) + 633080.0*pow(c0, 6)*(836978961.0*pow(c1, 14) - 3945757959.0*pow(c1, 12) + 7807563621.0*pow(c1, 10) - 8385901667.0*pow(c1, 8) + 5265566163.0*pow(c1, 6) - 1926426645.0*pow(c1, 4) + 378699255.0*pow(c1, 2) - 30705345.0) + 33915.0*pow(c0, 4)*(836978961.0*pow(c1, 16) - 4782736920.0*pow(c1, 14) + 11753321580.0*pow(c1, 12) - 16193465288.0*pow(c1, 10) + 13651467830.0*pow(c1, 8) - 7191992808.0*pow(c1, 6) + 2305125900.0*pow(c1, 4) - 409404600.0*pow(c1, 2) + 30705345.0) + 9690.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 3)*(52782457.0*pow(c1, 12) - 200357898.0*pow(c1, 10) + 309062715.0*pow(c1, 8) - 247250172.0*pow(c1, 6) + 107812575.0*pow(c1, 4) - 24192090.0*pow(c1, 2) + 2171085.0) + 323.0*pow(pow(c1, 2) - 1.0, 5)*(4060189.0*pow(c1, 10) - 12014845.0*pow(c1, 8) + 13804290.0*pow(c1, 6) - 7669050.0*pow(c1, 4) + 2051025.0*pow(c1, 2) - 210105.0)); case 28: return 2.24956347670647e-10*c0*pow(c1, 7)*(792092101236555.0*pow(c0, 20) + 465936530139150.0*pow(c0, 18)*(17.0*pow(c1, 2) - 7.0) + 82479447881775.0*pow(c0, 16)*(357.0*pow(c1, 4) - 322.0*pow(c1, 2) + 69.0) + 1363793910264.0*pow(c0, 14)*(39151.0*pow(c1, 6) - 57575.0*pow(c1, 4) + 27025.0*pow(c1, 2) - 4025.0) + 1325910746090.0*pow(c0, 12)*(39151.0*pow(c1, 8) - 82908.0*pow(c1, 6) + 63450.0*pow(c1, 4) - 20700.0*pow(c1, 2) + 2415.0) + 5529058444.0*pow(c0, 10)*(5050479.0*pow(c1, 10) - 14359205.0*pow(c1, 8) + 15824430.0*pow(c1, 6) - 8417250.0*pow(c1, 4) + 2151075.0*pow(c1, 2) - 210105.0) + 119629510.0*pow(c0, 8)*(69023213.0*pow(c1, 12) - 251731718.0*pow(c1, 10) + 372460195.0*pow(c1, 8) - 285288660.0*pow(c1, 6) + 118870275.0*pow(c1, 4) - 25432710.0*pow(c1, 2) + 2171085.0) + 10038840.0*pow(c0, 6)*(128185967.0*pow(c1, 14) - 580607027.0*pow(c1, 12) + 1101968439.0*pow(c1, 10) - 1133229955.0*pow(c1, 8) + 679937973.0*pow(c1, 6) - 237187665.0*pow(c1, 4) + 44352165.0*pow(c1, 2) - 3411705.0) + 2261.0*pow(c0, 4)*(42685927011.0*pow(c1, 16) - 234354109080.0*pow(c1, 14) + 552406114260.0*pow(c1, 12) - 728705937960.0*pow(c1, 10) + 587013116690.0*pow(c1, 8) - 294871705128.0*pow(c1, 6) + 89899910100.0*pow(c1, 4) - 15147970200.0*pow(c1, 2) + 1074687075.0) + 22610.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2)*(128185967.0*pow(c1, 14) - 580607027.0*pow(c1, 12) + 1101968439.0*pow(c1, 10) - 1133229955.0*pow(c1, 8) + 679937973.0*pow(c1, 6) - 237187665.0*pow(c1, 4) + 44352165.0*pow(c1, 2) - 3411705.0) + 323.0*pow(pow(c1, 2) - 1.0, 4)*(69023213.0*pow(c1, 12) - 251731718.0*pow(c1, 10) + 372460195.0*pow(c1, 8) - 285288660.0*pow(c1, 6) + 118870275.0*pow(c1, 4) - 25432710.0*pow(c1, 2) + 2171085.0)); case 29: return 1.0225288530484e-11*pow(c1, 7)*(4.19808813655374e+16*pow(c0, 22) + 8.71301311360211e+15*pow(c0, 20)*(53.0*pow(c1, 2) - 21.0) + 2.11697249563223e+15*pow(c0, 18)*(901.0*pow(c1, 4) - 782.0*pow(c1, 2) + 161.0) + 616946270155677.0*pow(c0, 16)*(6307.0*pow(c1, 6) - 8925.0*pow(c1, 4) + 4025.0*pow(c1, 2) - 575.0) + 2083574029570.0*pow(c0, 14)*(2075003.0*pow(c1, 8) - 4228308.0*pow(c1, 6) + 3109050.0*pow(c1, 4) - 972900.0*pow(c1, 2) + 108675.0) + 1307622322006.0*pow(c0, 12)*(2075003.0*pow(c1, 10) - 5676895.0*pow(c1, 8) + 6010830.0*pow(c1, 6) - 3066750.0*pow(c1, 4) + 750375.0*pow(c1, 2) - 70035.0) + 10790581802.0*pow(c0, 10)*(89225129.0*pow(c1, 12) - 313129698.0*pow(c1, 10) + 445135355.0*pow(c1, 8) - 327038220.0*pow(c1, 6) + 130467375.0*pow(c1, 4) - 26673330.0*pow(c1, 2) + 2171085.0) + 358888530.0*pow(c0, 8)*(522604327.0*pow(c1, 14) - 2277766029.0*pow(c1, 12) + 4153573347.0*pow(c1, 10) - 4097062145.0*pow(c1, 8) + 2353631445.0*pow(c1, 6) - 784543815.0*pow(c1, 4) + 139879905.0*pow(c1, 2) - 10235115.0) + 2760681.0*pow(c0, 6)*(6793856251.0*pow(c1, 16) - 35892070760.0*pow(c1, 14) + 81284983780.0*pow(c1, 12) - 102850387640.0*pow(c1, 10) + 79326096850.0*pow(c1, 8) - 38076526488.0*pow(c1, 6) + 11068757700.0*pow(c1, 4) - 1774086600.0*pow(c1, 2) + 119409675.0) + 124355.0*pow(c0, 4)*(6793856251.0*pow(c1, 18) - 42685927011.0*pow(c1, 16) + 117177054540.0*pow(c1, 14) - 184135371420.0*pow(c1, 12) + 182176484490.0*pow(c1, 10) - 117402623338.0*pow(c1, 8) + 49145284188.0*pow(c1, 6) - 12842844300.0*pow(c1, 4) + 1893496275.0*pow(c1, 2) - 119409675.0) + 24871.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 3)*(522604327.0*pow(c1, 14) - 2277766029.0*pow(c1, 12) + 4153573347.0*pow(c1, 10) - 4097062145.0*pow(c1, 8) + 2353631445.0*pow(c1, 6) - 784543815.0*pow(c1, 4) + 139879905.0*pow(c1, 2) - 10235115.0) + 323.0*pow(pow(c1, 2) - 1.0, 5)*(89225129.0*pow(c1, 12) - 313129698.0*pow(c1, 10) + 445135355.0*pow(c1, 8) - 327038220.0*pow(c1, 6) + 130467375.0*pow(c1, 4) - 26673330.0*pow(c1, 2) + 2171085.0)); default: return 0.; } case 12: switch(j) { case 8: return 1.51207581548139e-6*pow(c1, 8); case 9: return 1.9656985601258e-5*c0*pow(c1, 8); case 10: return 4.27325773940392e-7*pow(c1, 8)*(345.0*pow(c0, 2) + 15.0*pow(c1, 2) - 23.0); case 11: return 2.13662886970196e-6*c0*pow(c1, 8)*(391.0*pow(c0, 2) + 51.0*pow(c1, 2) - 69.0); case 12: return 2.13662886970196e-8*pow(c1, 8)*(185725.0*pow(c0, 4) + 2550.0*pow(c0, 2)*(19.0*pow(c1, 2) - 23.0) + 969.0*pow(c1, 4) - 2550.0*pow(c1, 2) + 1725.0); case 13: return 3.63226907849333e-7*c0*pow(c1, 8)*(45885.0*pow(c0, 4) + 950.0*pow(c0, 2)*(21.0*pow(c1, 2) - 23.0) + 1197.0*pow(c1, 4) - 2850.0*pow(c1, 2) + 1725.0); case 14: return 2.01792726582963e-8*pow(c1, 8)*(3166065.0*pow(c0, 6) + 2064825.0*pow(c0, 4)*(pow(c1, 2) - 1.0) + 513.0*pow(c0, 2)*(483.0*pow(c1, 4) - 1050.0*pow(c1, 2) + 575.0) + 3059.0*pow(c1, 6) - 10773.0*pow(c1, 4) + 12825.0*pow(c1, 2) - 5175.0); case 15: return 3.8340618050763e-7*c0*pow(c1, 8)*(595125.0*pow(c0, 6) + 21735.0*pow(c0, 4)*(25.0*pow(c1, 2) - 23.0) + 108675.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2) + 4025.0*pow(c1, 6) - 13041.0*pow(c1, 4) + 14175.0*pow(c1, 2) - 5175.0); case 16: return 1.65261284701565e-9*pow(c1, 8)*(465982875.0*pow(c0, 8) + 21010500.0*pow(c0, 6)*(27.0*pow(c1, 2) - 23.0) + 6303150.0*pow(c0, 4)*(27.0*pow(c1, 4) - 50.0*pow(c1, 2) + 23.0) + 12606300.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 3) + 108675.0*pow(c1, 8) - 466900.0*pow(c1, 6) + 756378.0*pow(c1, 4) - 548100.0*pow(c1, 2) + 150075.0); case 17: return 4.96031746031746e-5*c0*pow(c1, 8)*(50025.0*pow(c0, 8) + 2700.0*pow(c0, 6)*(29.0*pow(c1, 2) - 23.0) + 42.0*pow(c0, 4)*(783.0*pow(c1, 4) - 1350.0*pow(c1, 2) + 575.0) + 140.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2)*(29.0*pow(c1, 2) - 23.0) + 105.0*pow(pow(c1, 2) - 1.0, 4)); case 18: return 2.48015873015873e-5*pow(c1, 8)*(310155.0*pow(c0, 10) + 19575.0*pow(c0, 8)*(31.0*pow(c1, 2) - 23.0) + 378.0*pow(c0, 6)*(899.0*pow(c1, 4) - 1450.0*pow(c1, 2) + 575.0) + 70.0*pow(c0, 4)*(899.0*pow(c1, 6) - 2349.0*pow(c1, 4) + 2025.0*pow(c1, 2) - 575.0) + 105.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 3)*(31.0*pow(c1, 2) - 23.0) + 21.0*pow(pow(c1, 2) - 1.0, 5)); case 19: return 2.48015873015873e-5*c0*pow(c1, 8)*(930465.0*pow(c0, 10) + 67425.0*pow(c0, 8)*(33.0*pow(c1, 2) - 23.0) + 1566.0*pow(c0, 6)*(1023.0*pow(c1, 4) - 1550.0*pow(c1, 2) + 575.0) + 42.0*pow(c0, 4)*(9889.0*pow(c1, 6) - 24273.0*pow(c1, 4) + 19575.0*pow(c1, 2) - 5175.0) + 35.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2)*(1023.0*pow(c1, 4) - 1550.0*pow(c1, 2) + 575.0) + 21.0*pow(pow(c1, 2) - 1.0, 4)*(33.0*pow(c1, 2) - 23.0)); case 20: return 6.20039682539683e-6*pow(c1, 8)*(10855425.0*pow(c0, 12) + 890010.0*pow(c0, 10)*(35.0*pow(c1, 2) - 23.0) + 121365.0*pow(c0, 8)*(231.0*pow(c1, 4) - 330.0*pow(c1, 2) + 115.0) + 812.0*pow(c0, 6)*(11935.0*pow(c1, 6) - 27621.0*pow(c1, 4) + 20925.0*pow(c1, 2) - 5175.0) + 105.0*pow(c0, 4)*(11935.0*pow(c1, 8) - 39556.0*pow(c1, 6) + 48546.0*pow(c1, 4) - 26100.0*pow(c1, 2) + 5175.0) + 210.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 3)*(231.0*pow(c1, 4) - 330.0*pow(c1, 2) + 115.0) + 7.0*pow(pow(c1, 2) - 1.0, 5)*(35.0*pow(c1, 2) - 23.0)); case 21: return 4.76953601953602e-7*c0*pow(c1, 8)*(401650725.0*pow(c0, 12) + 36814050.0*pow(c0, 10)*(37.0*pow(c1, 2) - 23.0) + 5785065.0*pow(c0, 8)*(259.0*pow(c1, 4) - 350.0*pow(c1, 2) + 115.0) + 233740.0*pow(c0, 6)*(2849.0*pow(c1, 6) - 6237.0*pow(c1, 4) + 4455.0*pow(c1, 2) - 1035.0) + 273.0*pow(c0, 4)*(441595.0*pow(c1, 8) - 1384460.0*pow(c1, 6) + 1602018.0*pow(c1, 4) - 809100.0*pow(c1, 2) + 150075.0) + 2730.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2)*(2849.0*pow(c1, 6) - 6237.0*pow(c1, 4) + 4455.0*pow(c1, 2) - 1035.0) + 455.0*pow(pow(c1, 2) - 1.0, 4)*(259.0*pow(c1, 4) - 350.0*pow(c1, 2) + 115.0)); case 22: return 3.10019841269841e-6*pow(c1, 8)*(172136025.0*pow(c0, 14) + 17463075.0*pow(c0, 12)*(39.0*pow(c1, 2) - 23.0) + 623007.0*pow(c0, 10)*(1443.0*pow(c1, 4) - 1850.0*pow(c1, 2) + 575.0) + 148335.0*pow(c0, 8)*(3367.0*pow(c1, 6) - 6993.0*pow(c1, 4) + 4725.0*pow(c1, 2) - 1035.0) + 1085.0*pow(c0, 6)*(111111.0*pow(c1, 8) - 330484.0*pow(c1, 6) + 361746.0*pow(c1, 4) - 172260.0*pow(c1, 2) + 30015.0) + 105.0*pow(c0, 4)*(111111.0*pow(c1, 10) - 441595.0*pow(c1, 8) + 692230.0*pow(c1, 6) - 534006.0*pow(c1, 4) + 202275.0*pow(c1, 2) - 30015.0) + 105.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 3)*(3367.0*pow(c1, 6) - 6993.0*pow(c1, 4) + 4725.0*pow(c1, 2) - 1035.0) + pow(pow(c1, 2) - 1.0, 5)*(1443.0*pow(c1, 4) - 1850.0*pow(c1, 2) + 575.0)); case 23: return 1.03339947089947e-6*c0*pow(c1, 8)*(1411515405.0*pow(c0, 14) + 157167675.0*pow(c0, 12)*(41.0*pow(c1, 2) - 23.0) + 6286707.0*pow(c0, 10)*(1599.0*pow(c1, 4) - 1950.0*pow(c1, 2) + 575.0) + 346115.0*pow(c0, 8)*(19721.0*pow(c1, 6) - 38961.0*pow(c1, 4) + 24975.0*pow(c1, 2) - 5175.0) + 15345.0*pow(c0, 6)*(138047.0*pow(c1, 8) - 390572.0*pow(c1, 6) + 405594.0*pow(c1, 4) - 182700.0*pow(c1, 2) + 30015.0) + 63.0*pow(c0, 4)*(4555551.0*pow(c1, 10) - 17222205.0*pow(c1, 8) + 25612510.0*pow(c1, 6) - 18690210.0*pow(c1, 4) + 6675075.0*pow(c1, 2) - 930465.0) + 105.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2)*(138047.0*pow(c1, 8) - 390572.0*pow(c1, 6) + 405594.0*pow(c1, 4) - 182700.0*pow(c1, 2) + 30015.0) + 9.0*pow(pow(c1, 2) - 1.0, 4)*(19721.0*pow(c1, 6) - 38961.0*pow(c1, 4) + 24975.0*pow(c1, 2) - 5175.0)); case 24: return 6.45874669312169e-8*pow(c1, 8)*(60695162415.0*pow(c0, 16) + 7364428200.0*pow(c0, 14)*(43.0*pow(c1, 2) - 23.0) + 326908764.0*pow(c0, 12)*(1763.0*pow(c1, 4) - 2050.0*pow(c1, 2) + 575.0) + 20490008.0*pow(c0, 10)*(22919.0*pow(c1, 6) - 43173.0*pow(c1, 4) + 26325.0*pow(c1, 2) - 5175.0) + 214830.0*pow(c0, 8)*(848003.0*pow(c1, 8) - 2287636.0*pow(c1, 6) + 2259738.0*pow(c1, 4) - 965700.0*pow(c1, 2) + 150075.0) + 5544.0*pow(c0, 6)*(5936021.0*pow(c1, 10) - 21397285.0*pow(c1, 8) + 30269330.0*pow(c1, 6) - 20955690.0*pow(c1, 4) + 7079625.0*pow(c1, 2) - 930465.0) + 420.0*pow(c0, 4)*(5936021.0*pow(c1, 12) - 27333306.0*pow(c1, 10) + 51666615.0*pow(c1, 8) - 51225020.0*pow(c1, 6) + 28035315.0*pow(c1, 4) - 8010090.0*pow(c1, 2) + 930465.0) + 72.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 3)*(848003.0*pow(c1, 8) - 2287636.0*pow(c1, 6) + 2259738.0*pow(c1, 4) - 965700.0*pow(c1, 2) + 150075.0) + 9.0*pow(pow(c1, 2) - 1.0, 5)*(22919.0*pow(c1, 6) - 43173.0*pow(c1, 4) + 26325.0*pow(c1, 2) - 5175.0)); case 25: return 3.79926276065982e-9*c0*pow(c1, 8)*(2731282308675.0*pow(c0, 16) + 358893134280.0*pow(c0, 14)*(45.0*pow(c1, 2) - 23.0) + 87636695580.0*pow(c0, 12)*(387.0*pow(c1, 4) - 430.0*pow(c1, 2) + 115.0) + 3704965992.0*pow(c0, 10)*(8815.0*pow(c1, 6) - 15867.0*pow(c1, 4) + 9225.0*pow(c1, 2) - 1725.0) + 15014230.0*pow(c0, 8)*(1031355.0*pow(c1, 8) - 2658604.0*pow(c1, 6) + 2504034.0*pow(c1, 4) - 1017900.0*pow(c1, 2) + 150075.0) + 471240.0*pow(c0, 6)*(7632027.0*pow(c1, 10) - 26288093.0*pow(c1, 8) + 35458358.0*pow(c1, 6) - 23350626.0*pow(c1, 4) + 7484175.0*pow(c1, 2) - 930465.0) + 4284.0*pow(c0, 4)*(89040315.0*pow(c1, 12) - 391777386.0*pow(c1, 10) + 706110405.0*pow(c1, 8) - 665925260.0*pow(c1, 6) + 345768885.0*pow(c1, 4) - 93451050.0*pow(c1, 2) + 10235115.0) + 2040.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2)*(7632027.0*pow(c1, 10) - 26288093.0*pow(c1, 8) + 35458358.0*pow(c1, 6) - 23350626.0*pow(c1, 4) + 7484175.0*pow(c1, 2) - 930465.0) + 153.0*pow(pow(c1, 2) - 1.0, 4)*(1031355.0*pow(c1, 8) - 2658604.0*pow(c1, 6) + 2504034.0*pow(c1, 4) - 1017900.0*pow(c1, 2) + 150075.0)); case 26: return 5.69889414098973e-9*pow(c1, 8)*(4754454389175.0*pow(c0, 18) + 672924626775.0*pow(c0, 16)*(47.0*pow(c1, 2) - 23.0) + 179446567140.0*pow(c0, 14)*(423.0*pow(c1, 4) - 450.0*pow(c1, 2) + 115.0) + 42195446020.0*pow(c0, 12)*(2021.0*pow(c1, 6) - 3483.0*pow(c1, 4) + 1935.0*pow(c1, 2) - 345.0) + 117110994.0*pow(c0, 10)*(414305.0*pow(c1, 8) - 1022540.0*pow(c1, 6) + 920286.0*pow(c1, 4) - 356700.0*pow(c1, 2) + 50025.0) + 1452990.0*pow(c0, 8)*(9694737.0*pow(c1, 10) - 31972005.0*pow(c1, 8) + 41208362.0*pow(c1, 6) - 25875018.0*pow(c1, 4) + 7888725.0*pow(c1, 2) - 930465.0) + 16660.0*pow(c0, 6)*(119568423.0*pow(c1, 12) - 503713782.0*pow(c1, 10) + 867507069.0*pow(c1, 8) - 780083876.0*pow(c1, 6) + 385285329.0*pow(c1, 4) - 98791110.0*pow(c1, 2) + 10235115.0) + 1020.0*pow(c0, 4)*(119568423.0*pow(c1, 14) - 623282205.0*pow(c1, 12) + 1371220851.0*pow(c1, 10) - 1647590945.0*pow(c1, 8) + 1165369205.0*pow(c1, 6) - 484076439.0*pow(c1, 4) + 109026225.0*pow(c1, 2) - 10235115.0) + 255.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 3)*(9694737.0*pow(c1, 10) - 31972005.0*pow(c1, 8) + 41208362.0*pow(c1, 6) - 25875018.0*pow(c1, 4) + 7888725.0*pow(c1, 2) - 930465.0) + 17.0*pow(pow(c1, 2) - 1.0, 5)*(414305.0*pow(c1, 8) - 1022540.0*pow(c1, 6) + 920286.0*pow(c1, 4) - 356700.0*pow(c1, 2) + 50025.0)); case 27: return 2.99941796894196e-10*c0*pow(c1, 8)*(232968265069575.0*pow(c0, 18) + 35348334806475.0*pow(c0, 16)*(49.0*pow(c1, 2) - 23.0) + 2045690865396.0*pow(c0, 14)*(2303.0*pow(c1, 4) - 2350.0*pow(c1, 2) + 575.0) + 2651821492180.0*pow(c0, 12)*(2303.0*pow(c1, 6) - 3807.0*pow(c1, 4) + 2025.0*pow(c1, 2) - 345.0) + 41467938330.0*pow(c0, 10)*(99029.0*pow(c1, 8) - 234436.0*pow(c1, 6) + 202014.0*pow(c1, 4) - 74820.0*pow(c1, 2) + 10005.0) + 358888530.0*pow(c0, 8)*(4060189.0*pow(c1, 10) - 12843455.0*pow(c1, 8) + 15849370.0*pow(c1, 6) - 9509622.0*pow(c1, 4) + 2764425.0*pow(c1, 2) - 310155.0) + 1673140.0*pow(c0, 6)*(158347371.0*pow(c1, 12) - 639852642.0*pow(c1, 10) + 1055076165.0*pow(c1, 8) - 906583964.0*pow(c1, 6) + 426937797.0*pow(c1, 4) - 104131170.0*pow(c1, 2) + 10235115.0) + 27132.0*pow(c0, 4)*(836978961.0*pow(c1, 14) - 4184894805.0*pow(c1, 12) + 8814991185.0*pow(c1, 10) - 10120915805.0*pow(c1, 8) + 6825733915.0*pow(c1, 6) - 2696997303.0*pow(c1, 4) + 576281475.0*pow(c1, 2) - 51175575.0) + 4845.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2)*(158347371.0*pow(c1, 12) - 639852642.0*pow(c1, 10) + 1055076165.0*pow(c1, 8) - 906583964.0*pow(c1, 6) + 426937797.0*pow(c1, 4) - 104131170.0*pow(c1, 2) + 10235115.0) + 1615.0*pow(pow(c1, 2) - 1.0, 4)*(4060189.0*pow(c1, 10) - 12843455.0*pow(c1, 8) + 15849370.0*pow(c1, 6) - 9509622.0*pow(c1, 4) + 2764425.0*pow(c1, 2) - 310155.0)); case 28: return 7.49854492235491e-11*pow(c1, 8)*(2.37627630370967e+15*pow(c0, 20) + 384904090114950.0*pow(c0, 18)*(51.0*pow(c1, 2) - 23.0) + 24036867668403.0*pow(c0, 16)*(2499.0*pow(c1, 4) - 2450.0*pow(c1, 2) + 575.0) + 2272989850440.0*pow(c0, 14)*(39151.0*pow(c1, 6) - 62181.0*pow(c1, 4) + 31725.0*pow(c1, 2) - 5175.0) + 594373782730.0*pow(c0, 12)*(117453.0*pow(c1, 8) - 267148.0*pow(c1, 6) + 220806.0*pow(c1, 4) - 78300.0*pow(c1, 2) + 10005.0) + 5885771892.0*pow(c0, 10)*(5050479.0*pow(c1, 10) - 15349495.0*pow(c1, 8) + 18168790.0*pow(c1, 6) - 10437390.0*pow(c1, 4) + 2899275.0*pow(c1, 2) - 310155.0) + 97878690.0*pow(c0, 8)*(69023213.0*pow(c1, 12) - 267972474.0*pow(c1, 10) + 423834015.0*pow(c1, 8) - 348686140.0*pow(c1, 6) + 156908763.0*pow(c1, 4) - 36490410.0*pow(c1, 2) + 3411705.0) + 669256.0*pow(c0, 6)*(1153673703.0*pow(c1, 14) - 5542157985.0*pow(c1, 12) + 11197421235.0*pow(c1, 10) - 12309221925.0*pow(c1, 8) + 7932609685.0*pow(c1, 6) - 2988564579.0*pow(c1, 4) + 607431825.0*pow(c1, 2) - 51175575.0) + 33915.0*pow(c0, 4)*(1153673703.0*pow(c1, 16) - 6695831688.0*pow(c1, 14) + 16739579220.0*pow(c1, 12) - 23506643160.0*pow(c1, 10) + 20241831610.0*pow(c1, 8) - 10921174264.0*pow(c1, 6) + 3595996404.0*pow(c1, 4) - 658607400.0*pow(c1, 2) + 51175575.0) + 9690.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 3)*(69023213.0*pow(c1, 12) - 267972474.0*pow(c1, 10) + 423834015.0*pow(c1, 8) - 348686140.0*pow(c1, 6) + 156908763.0*pow(c1, 4) - 36490410.0*pow(c1, 2) + 3411705.0) + 323.0*pow(pow(c1, 2) - 1.0, 5)*(5050479.0*pow(c1, 10) - 15349495.0*pow(c1, 8) + 18168790.0*pow(c1, 6) - 10437390.0*pow(c1, 4) + 2899275.0*pow(c1, 2) - 310155.0)); case 29: return 7.49854492235491e-11*c0*pow(c1, 8)*(5.99726876650535e+15*pow(c0, 20) + 1.03316361030855e+15*pow(c0, 18)*(53.0*pow(c1, 2) - 23.0) + 69282736220691.0*pow(c0, 16)*(2703.0*pow(c1, 4) - 2550.0*pow(c1, 2) + 575.0) + 7122034864712.0*pow(c0, 14)*(44149.0*pow(c1, 6) - 67473.0*pow(c1, 4) + 33075.0*pow(c1, 2) - 5175.0) + 137163180630.0*pow(c0, 12)*(2075003.0*pow(c1, 8) - 4541516.0*pow(c1, 6) + 3606498.0*pow(c1, 4) - 1226700.0*pow(c1, 2) + 150075.0) + 23008017396.0*pow(c0, 10)*(6225009.0*pow(c1, 10) - 18205215.0*pow(c1, 8) + 20703970.0*pow(c1, 6) - 11408310.0*pow(c1, 4) + 3034125.0*pow(c1, 2) - 310155.0) + 445891810.0*pow(c0, 8)*(89225129.0*pow(c1, 12) - 333331614.0*pow(c1, 10) + 506533335.0*pow(c1, 8) - 399713380.0*pow(c1, 6) + 172216935.0*pow(c1, 4) - 38270430.0*pow(c1, 2) + 3411705.0) + 11186136.0*pow(c0, 6)*(522604327.0*pow(c1, 14) - 2415812455.0*pow(c1, 12) + 4689518295.0*pow(c1, 10) - 4944730175.0*pow(c1, 8) + 3051003725.0*pow(c1, 6) - 1098361341.0*pow(c1, 4) + 212860725.0*pow(c1, 2) - 17058525.0) + 6783.0*pow(c0, 4)*(61144706259.0*pow(c1, 16) - 341487416088.0*pow(c1, 14) + 820239381780.0*pow(c1, 12) - 1104812228520.0*pow(c1, 10) + 910882422450.0*pow(c1, 8) - 469610493352.0*pow(c1, 6) + 147435852564.0*pow(c1, 4) - 25685688600.0*pow(c1, 2) + 1893496275.0) + 22610.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2)*(522604327.0*pow(c1, 14) - 2415812455.0*pow(c1, 12) + 4689518295.0*pow(c1, 10) - 4944730175.0*pow(c1, 8) + 3051003725.0*pow(c1, 6) - 1098361341.0*pow(c1, 4) + 212860725.0*pow(c1, 2) - 17058525.0) + 969.0*pow(pow(c1, 2) - 1.0, 4)*(89225129.0*pow(c1, 12) - 333331614.0*pow(c1, 10) + 506533335.0*pow(c1, 8) - 399713380.0*pow(c1, 6) + 172216935.0*pow(c1, 4) - 38270430.0*pow(c1, 2) + 3411705.0)); default: return 0.; } case 13: switch(j) { case 9: return 8.54651547880785e-7*pow(c1, 9); case 10: return 1.28197732182118e-5*c0*pow(c1, 9); case 11: return 2.56395464364235e-7*pow(c1, 9)*(425.0*pow(c0, 2) + 17.0*pow(c1, 2) - 25.0); case 12: return 1.45290763139733e-6*c0*pow(c1, 9)*(475.0*pow(c0, 2) + 57.0*pow(c1, 2) - 75.0); case 13: return 1.21075635949778e-7*pow(c1, 9)*(29925.0*pow(c0, 4) + 342.0*pow(c0, 2)*(21.0*pow(c1, 2) - 25.0) + 133.0*pow(c1, 4) - 342.0*pow(c1, 2) + 225.0); case 14: return 2.30043708304578e-6*c0*pow(c1, 9)*(7245.0*pow(c0, 4) + 126.0*pow(c0, 2)*(23.0*pow(c1, 2) - 25.0) + 161.0*pow(c1, 4) - 378.0*pow(c1, 2) + 225.0); case 15: return 1.32209027761252e-8*pow(c1, 9)*(5252625.0*pow(c0, 6) + 3151575.0*pow(c0, 4)*(pow(c1, 2) - 1.0) + 609.0*pow(c0, 2)*(575.0*pow(c1, 4) - 1242.0*pow(c1, 2) + 675.0) + 4025.0*pow(c1, 6) - 14007.0*pow(c1, 4) + 16443.0*pow(c1, 2) - 6525.0); case 16: return 3.96627083283755e-8*c0*pow(c1, 9)*(6753375.0*pow(c0, 6) + 210105.0*pow(c0, 4)*(27.0*pow(c1, 2) - 25.0) + 1050525.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2) + 36225.0*pow(c1, 6) - 116725.0*pow(c1, 4) + 126063.0*pow(c1, 2) - 45675.0); case 17: return 1.59930275517643e-10*pow(c1, 9)*(6071284125.0*pow(c0, 8) + 234477180.0*pow(c0, 6)*(29.0*pow(c1, 2) - 25.0) + 65132550.0*pow(c0, 4)*(29.0*pow(c1, 4) - 54.0*pow(c1, 2) + 25.0) + 130265100.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 3) + 1050525.0*pow(c1, 8) - 4491900.0*pow(c1, 6) + 7236950.0*pow(c1, 4) - 5210604.0*pow(c1, 2) + 1415925.0); case 18: return 4.96031746031746e-5*c0*pow(c1, 9)*(67425.0*pow(c0, 8) + 3132.0*pow(c0, 6)*(31.0*pow(c1, 2) - 25.0) + 42.0*pow(c0, 4)*(899.0*pow(c1, 4) - 1566.0*pow(c1, 2) + 675.0) + 140.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2)*(31.0*pow(c1, 2) - 25.0) + 105.0*pow(pow(c1, 2) - 1.0, 4)); case 19: return 7.44047619047619e-5*pow(c1, 9)*(148335.0*pow(c0, 10) + 8091.0*pow(c0, 8)*(33.0*pow(c1, 2) - 25.0) + 406.0*pow(c0, 6)*(341.0*pow(c1, 4) - 558.0*pow(c1, 2) + 225.0) + 70.0*pow(c0, 4)*(341.0*pow(c1, 6) - 899.0*pow(c1, 4) + 783.0*pow(c1, 2) - 225.0) + 35.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 3)*(33.0*pow(c1, 2) - 25.0) + 7.0*pow(pow(c1, 2) - 1.0, 5)); case 20: return 7.44047619047619e-5*c0*pow(c1, 9)*(471975.0*pow(c0, 10) + 148335.0*pow(c0, 8)*(7.0*pow(c1, 2) - 5.0) + 1798.0*pow(c0, 6)*(385.0*pow(c1, 4) - 594.0*pow(c1, 2) + 225.0) + 14.0*pow(c0, 4)*(11935.0*pow(c1, 6) - 29667.0*pow(c1, 4) + 24273.0*pow(c1, 2) - 6525.0) + 35.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2)*(385.0*pow(c1, 4) - 594.0*pow(c1, 2) + 225.0) + 35.0*pow(pow(c1, 2) - 1.0, 4)*(7.0*pow(c1, 2) - 5.0)); case 21: return 6.20039682539683e-6*pow(c1, 9)*(17463075.0*pow(c0, 12) + 1246014.0*pow(c0, 10)*(37.0*pow(c1, 2) - 25.0) + 148335.0*pow(c0, 8)*(259.0*pow(c1, 4) - 378.0*pow(c1, 2) + 135.0) + 868.0*pow(c0, 6)*(14245.0*pow(c1, 6) - 33495.0*pow(c1, 4) + 25839.0*pow(c1, 2) - 6525.0) + 105.0*pow(c0, 4)*(14245.0*pow(c1, 8) - 47740.0*pow(c1, 6) + 59334.0*pow(c1, 4) - 32364.0*pow(c1, 2) + 6525.0) + 210.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 3)*(259.0*pow(c1, 4) - 378.0*pow(c1, 2) + 135.0) + 7.0*pow(pow(c1, 2) - 1.0, 5)*(37.0*pow(c1, 2) - 25.0)); case 22: return 6.20039682539683e-6*c0*pow(c1, 9)*(52389225.0*pow(c0, 12) + 4191138.0*pow(c0, 10)*(39.0*pow(c1, 2) - 25.0) + 346115.0*pow(c0, 8)*(481.0*pow(c1, 4) - 666.0*pow(c1, 2) + 225.0) + 20460.0*pow(c0, 6)*(3367.0*pow(c1, 6) - 7511.0*pow(c1, 4) + 5481.0*pow(c1, 2) - 1305.0) + 21.0*pow(c0, 4)*(555555.0*pow(c1, 8) - 1766380.0*pow(c1, 6) + 2076690.0*pow(c1, 4) - 1068012.0*pow(c1, 2) + 202275.0) + 210.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2)*(3367.0*pow(c1, 6) - 7511.0*pow(c1, 4) + 5481.0*pow(c1, 2) - 1305.0) + 21.0*pow(pow(c1, 2) - 1.0, 4)*(481.0*pow(c1, 4) - 666.0*pow(c1, 2) + 225.0)); case 23: return 3.10019841269841e-6*pow(c1, 9)*(306851175.0*pow(c0, 14) + 27242397.0*pow(c0, 12)*(41.0*pow(c1, 2) - 25.0) + 2561251.0*pow(c0, 10)*(533.0*pow(c1, 4) - 702.0*pow(c1, 2) + 225.0) + 35805.0*pow(c0, 8)*(19721.0*pow(c1, 6) - 41847.0*pow(c1, 4) + 28971.0*pow(c1, 2) - 6525.0) + 1155.0*pow(c0, 6)*(138047.0*pow(c1, 8) - 417508.0*pow(c1, 6) + 465682.0*pow(c1, 4) - 226548.0*pow(c1, 2) + 40455.0) + 105.0*pow(c0, 4)*(138047.0*pow(c1, 10) - 555555.0*pow(c1, 8) + 883190.0*pow(c1, 6) - 692230.0*pow(c1, 4) + 267003.0*pow(c1, 2) - 40455.0) + 21.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 3)*(19721.0*pow(c1, 6) - 41847.0*pow(c1, 4) + 28971.0*pow(c1, 2) - 6525.0) + 3.0*pow(pow(c1, 2) - 1.0, 5)*(533.0*pow(c1, 4) - 702.0*pow(c1, 2) + 225.0)); case 24: return 1.03339947089947e-6*c0*pow(c1, 9)*(2638920105.0*pow(c0, 14) + 257754987.0*pow(c0, 12)*(43.0*pow(c1, 2) - 25.0) + 9080799.0*pow(c0, 10)*(1763.0*pow(c1, 4) - 2214.0*pow(c1, 2) + 675.0) + 441595.0*pow(c0, 8)*(22919.0*pow(c1, 6) - 46371.0*pow(c1, 4) + 30537.0*pow(c1, 2) - 6525.0) + 3465.0*pow(c0, 6)*(848003.0*pow(c1, 8) - 2445404.0*pow(c1, 6) + 2594514.0*pow(c1, 4) - 1197468.0*pow(c1, 2) + 202275.0) + 63.0*pow(c0, 4)*(5936021.0*pow(c1, 10) - 22777755.0*pow(c1, 8) + 34444410.0*pow(c1, 6) - 25612510.0*pow(c1, 4) + 9345105.0*pow(c1, 2) - 1335015.0) + 21.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2)*(848003.0*pow(c1, 8) - 2445404.0*pow(c1, 6) + 2594514.0*pow(c1, 4) - 1197468.0*pow(c1, 2) + 202275.0) + 9.0*pow(pow(c1, 2) - 1.0, 4)*(22919.0*pow(c1, 6) - 46371.0*pow(c1, 4) + 30537.0*pow(c1, 2) - 6525.0)); case 25: return 1.93762400793651e-7*pow(c1, 9)*(39583801575.0*pow(c0, 16) + 21111360840.0*pow(c0, 14)*(9.0*pow(c1, 2) - 5.0) + 1489251036.0*pow(c0, 12)*(215.0*pow(c1, 4) - 258.0*pow(c1, 2) + 75.0) + 9185176.0*pow(c0, 10)*(26445.0*pow(c1, 6) - 51127.0*pow(c1, 4) + 32103.0*pow(c1, 2) - 6525.0) + 85470.0*pow(c0, 8)*(1031355.0*pow(c1, 8) - 2841956.0*pow(c1, 6) + 2875002.0*pow(c1, 4) - 1262196.0*pow(c1, 2) + 202275.0) + 5880.0*pow(c0, 6)*(2544009.0*pow(c1, 10) - 9328033.0*pow(c1, 8) + 13449722.0*pow(c1, 6) - 9513218.0*pow(c1, 4) + 3293037.0*pow(c1, 2) - 445005.0) + 420.0*pow(c0, 4)*(2544009.0*pow(c1, 12) - 11872042.0*pow(c1, 10) + 22777755.0*pow(c1, 8) - 22962940.0*pow(c1, 6) + 12806255.0*pow(c1, 4) - 3738042.0*pow(c1, 2) + 445005.0) + 24.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 3)*(1031355.0*pow(c1, 8) - 2841956.0*pow(c1, 6) + 2875002.0*pow(c1, 4) - 1262196.0*pow(c1, 2) + 202275.0) + 3.0*pow(pow(c1, 2) - 1.0, 5)*(26445.0*pow(c1, 6) - 51127.0*pow(c1, 4) + 32103.0*pow(c1, 2) - 6525.0)); case 26: return 1.13977882819795e-8*c0*pow(c1, 9)*(1860438674025.0*pow(c0, 16) + 215335880568.0*pow(c0, 14)*(47.0*pow(c1, 2) - 25.0) + 418708656660.0*pow(c0, 12)*(47.0*pow(c1, 4) - 54.0*pow(c1, 2) + 15.0) + 1746018456.0*pow(c0, 10)*(10105.0*pow(c1, 6) - 18705.0*pow(c1, 4) + 11223.0*pow(c1, 2) - 2175.0) + 6296290.0*pow(c0, 8)*(1242915.0*pow(c1, 8) - 3279180.0*pow(c1, 6) + 3169874.0*pow(c1, 4) - 1326924.0*pow(c1, 2) + 202275.0) + 528360.0*pow(c0, 6)*(3231579.0*pow(c1, 10) - 11344905.0*pow(c1, 8) + 15630758.0*pow(c1, 6) - 10541674.0*pow(c1, 4) + 3471039.0*pow(c1, 2) - 445005.0) + 1428.0*pow(c0, 4)*(119568423.0*pow(c1, 12) - 534241890.0*pow(c1, 10) + 979443465.0*pow(c1, 8) - 941480540.0*pow(c1, 6) + 499443945.0*pow(c1, 4) - 138307554.0*pow(c1, 2) + 15575175.0) + 2040.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2)*(3231579.0*pow(c1, 10) - 11344905.0*pow(c1, 8) + 15630758.0*pow(c1, 6) - 10541674.0*pow(c1, 4) + 3471039.0*pow(c1, 2) - 445005.0) + 51.0*pow(pow(c1, 2) - 1.0, 4)*(1242915.0*pow(c1, 8) - 3279180.0*pow(c1, 6) + 3169874.0*pow(c1, 4) - 1326924.0*pow(c1, 2) + 202275.0)); case 27: return 5.69889414098973e-9*pow(c1, 9)*(10129055003025.0*pow(c0, 18) + 1265098298337.0*pow(c0, 16)*(49.0*pow(c1, 2) - 25.0) + 59815522380.0*pow(c0, 14)*(2303.0*pow(c1, 4) - 2538.0*pow(c1, 2) + 675.0) + 62565661340.0*pow(c0, 12)*(2303.0*pow(c1, 6) - 4089.0*pow(c1, 4) + 2349.0*pow(c1, 2) - 435.0) + 154888734.0*pow(c0, 10)*(495145.0*pow(c1, 8) - 1253020.0*pow(c1, 6) + 1159710.0*pow(c1, 4) - 463884.0*pow(c1, 2) + 67425.0) + 1717170.0*pow(c0, 8)*(12180567.0*pow(c1, 10) - 41016195.0*pow(c1, 8) + 54106470.0*pow(c1, 6) - 34868614.0*pow(c1, 4) + 10947123.0*pow(c1, 2) - 1335015.0) + 123284.0*pow(c0, 6)*(22621053.0*pow(c1, 12) - 96947370.0*pow(c1, 10) + 170173575.0*pow(c1, 8) - 156307580.0*pow(c1, 6) + 79062555.0*pow(c1, 4) - 20826234.0*pow(c1, 2) + 2225025.0) + 7140.0*pow(c0, 4)*(22621053.0*pow(c1, 14) - 119568423.0*pow(c1, 12) + 267120945.0*pow(c1, 10) - 326481155.0*pow(c1, 8) + 235370135.0*pow(c1, 6) - 99888789.0*pow(c1, 4) + 23051259.0*pow(c1, 2) - 2225025.0) + 255.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 3)*(12180567.0*pow(c1, 10) - 41016195.0*pow(c1, 8) + 54106470.0*pow(c1, 6) - 34868614.0*pow(c1, 4) + 10947123.0*pow(c1, 2) - 1335015.0) + 17.0*pow(pow(c1, 2) - 1.0, 5)*(495145.0*pow(c1, 8) - 1253020.0*pow(c1, 6) + 1159710.0*pow(c1, 4) - 463884.0*pow(c1, 2) + 67425.0)); case 28: return 8.99825390682589e-10*c0*pow(c1, 9)*(172193935051425.0*pow(c0, 18) + 23094245406897.0*pow(c0, 16)*(51.0*pow(c1, 2) - 25.0) + 3561017432356.0*pow(c0, 14)*(833.0*pow(c1, 4) - 882.0*pow(c1, 2) + 225.0) + 91442120420.0*pow(c0, 12)*(39151.0*pow(c1, 6) - 66787.0*pow(c1, 4) + 36801.0*pow(c1, 2) - 6525.0) + 19173347830.0*pow(c0, 10)*(117453.0*pow(c1, 8) - 285572.0*pow(c1, 6) + 253518.0*pow(c1, 4) - 97092.0*pow(c1, 2) + 13485.0) + 445891810.0*pow(c0, 8)*(1683493.0*pow(c1, 10) - 5446595.0*pow(c1, 8) + 6891610.0*pow(c1, 6) - 4252270.0*pow(c1, 4) + 1275681.0*pow(c1, 2) - 148335.0) + 4350164.0*pow(c0, 6)*(29581377.0*pow(c1, 12) - 121805670.0*pow(c1, 10) + 205080975.0*pow(c1, 8) - 180354900.0*pow(c1, 6) + 87171535.0*pow(c1, 4) - 21894246.0*pow(c1, 2) + 2225025.0) + 9044.0*pow(c0, 4)*(1153673703.0*pow(c1, 14) - 5858852727.0*pow(c1, 12) + 12554684415.0*pow(c1, 10) - 14691651975.0*pow(c1, 8) + 10120915805.0*pow(c1, 6) - 4095440349.0*pow(c1, 4) + 898999101.0*pow(c1, 2) - 82325925.0) + 11305.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2)*(29581377.0*pow(c1, 12) - 121805670.0*pow(c1, 10) + 205080975.0*pow(c1, 8) - 180354900.0*pow(c1, 6) + 87171535.0*pow(c1, 4) - 21894246.0*pow(c1, 2) + 2225025.0) + 1615.0*pow(pow(c1, 2) - 1.0, 4)*(1683493.0*pow(c1, 10) - 5446595.0*pow(c1, 8) + 6891610.0*pow(c1, 6) - 4252270.0*pow(c1, 4) + 1275681.0*pow(c1, 2) - 148335.0)); case 29: return 3.824257910401e-9*pow(c1, 9)*(107367983032065.0*pow(c0, 20) + 15396163604598.0*pow(c0, 18)*(53.0*pow(c1, 2) - 25.0) + 2566027267433.0*pow(c0, 16)*(901.0*pow(c1, 4) - 918.0*pow(c1, 2) + 225.0) + 72231590920.0*pow(c0, 14)*(44149.0*pow(c1, 6) - 72471.0*pow(c1, 4) + 38367.0*pow(c1, 2) - 6525.0) + 1127843990.0*pow(c0, 12)*(2075003.0*pow(c1, 8) - 4854724.0*pow(c1, 6) + 4140794.0*pow(c1, 4) - 1521108.0*pow(c1, 2) + 202275.0) + 451137596.0*pow(c0, 10)*(2075003.0*pow(c1, 10) - 6459915.0*pow(c1, 8) + 7853230.0*pow(c1, 6) - 4647830.0*pow(c1, 4) + 1335015.0*pow(c1, 2) - 148335.0) + 15737358.0*pow(c0, 8)*(12746447.0*pow(c1, 12) - 50504790.0*pow(c1, 10) + 81698925.0*pow(c1, 8) - 68916100.0*pow(c1, 6) + 31892025.0*pow(c1, 4) - 7654086.0*pow(c1, 2) + 741675.0) + 13832.0*pow(c0, 6)*(1567812981.0*pow(c1, 14) - 7661576643.0*pow(c1, 12) + 15773834265.0*pow(c1, 10) - 17705324175.0*pow(c1, 8) + 11677979775.0*pow(c1, 6) - 4515485513.0*pow(c1, 4) + 945101619.0*pow(c1, 2) - 82325925.0) + 665.0*pow(c0, 4)*(1567812981.0*pow(c1, 16) - 9229389624.0*pow(c1, 14) + 23435410908.0*pow(c1, 12) - 33479158440.0*pow(c1, 10) + 29383303950.0*pow(c1, 8) - 16193465288.0*pow(c1, 6) + 5460587132.0*pow(c1, 4) - 1027427544.0*pow(c1, 2) + 82325925.0) + 1330.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 3)*(12746447.0*pow(c1, 12) - 50504790.0*pow(c1, 10) + 81698925.0*pow(c1, 8) - 68916100.0*pow(c1, 6) + 31892025.0*pow(c1, 4) - 7654086.0*pow(c1, 2) + 741675.0) + 19.0*pow(pow(c1, 2) - 1.0, 5)*(2075003.0*pow(c1, 10) - 6459915.0*pow(c1, 8) + 7853230.0*pow(c1, 6) - 4647830.0*pow(c1, 4) + 1335015.0*pow(c1, 2) - 148335.0)); default: return 0.; } case 14: switch(j) { case 10: return 5.12790928728471e-7*pow(c1, 10); case 11: return 8.717445788384e-6*c0*pow(c1, 10); case 12: return 1.6143418126637e-7*pow(c1, 10)*(513.0*pow(c0, 2) + 19.0*pow(c1, 2) - 27.0); case 13: return 9.20174833218311e-6*c0*pow(c1, 10)*(63.0*pow(c0, 2) + 7.0*pow(c1, 2) - 9.0); case 14: return 7.9325416656751e-8*pow(c1, 10)*(42021.0*pow(c0, 4) + 406.0*pow(c0, 2)*(23.0*pow(c1, 2) - 27.0) + 161.0*pow(c1, 4) - 406.0*pow(c1, 2) + 261.0); case 15: return 1.85092638865752e-7*c0*pow(c1, 10)*(90045.0*pow(c0, 4) + 1334.0*pow(c0, 2)*(25.0*pow(c1, 2) - 27.0) + 1725.0*pow(c1, 4) - 4002.0*pow(c1, 2) + 2349.0); case 16: return 8.95609542898802e-9*pow(c1, 10)*(8374185.0*pow(c0, 6) + 4652325.0*pow(c0, 4)*(pow(c1, 2) - 1.0) + 713.0*pow(c0, 2)*(675.0*pow(c1, 4) - 1450.0*pow(c1, 2) + 783.0) + 5175.0*pow(c1, 6) - 17825.0*pow(c1, 4) + 20677.0*pow(c1, 2) - 8091.0); case 17: return 2.94271706952463e-8*c0*pow(c1, 10)*(10558755.0*pow(c0, 6) + 283185.0*pow(c0, 4)*(29.0*pow(c1, 2) - 27.0) + 1415925.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2) + 45675.0*pow(c1, 6) - 146475.0*pow(c1, 4) + 157325.0*pow(c1, 2) - 56637.0); case 18: return 1.11466555663812e-10*pow(c1, 10)*(10801606365.0*pow(c0, 8) + 361344060.0*pow(c0, 6)*(31.0*pow(c1, 2) - 27.0) + 93451050.0*pow(c0, 4)*(31.0*pow(c1, 4) - 58.0*pow(c1, 2) + 27.0) + 186902100.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 3) + 1415925.0*pow(c1, 8) - 6029100.0*pow(c1, 6) + 9667350.0*pow(c1, 4) - 6922300.0*pow(c1, 2) + 1869021.0); case 19: return 0.000148809523809524*c0*pow(c1, 10)*(29667.0*pow(c0, 8) + 3596.0*pow(c0, 6)*(11.0*pow(c1, 2) - 9.0) + 14.0*pow(c0, 4)*(1023.0*pow(c1, 4) - 1798.0*pow(c1, 2) + 783.0) + 140.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2)*(11.0*pow(c1, 2) - 9.0) + 35.0*pow(pow(c1, 2) - 1.0, 4)); case 20: return 7.44047619047619e-5*pow(c1, 10)*(207669.0*pow(c0, 10) + 9889.0*pow(c0, 8)*(35.0*pow(c1, 2) - 27.0) + 434.0*pow(c0, 6)*(385.0*pow(c1, 4) - 638.0*pow(c1, 2) + 261.0) + 70.0*pow(c0, 4)*(385.0*pow(c1, 6) - 1023.0*pow(c1, 4) + 899.0*pow(c1, 2) - 261.0) + 35.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 3)*(35.0*pow(c1, 2) - 27.0) + 7.0*pow(pow(c1, 2) - 1.0, 5)); case 21: return 8.26719576719577e-6*c0*pow(c1, 10)*(6286707.0*pow(c0, 10) + 346115.0*pow(c0, 8)*(37.0*pow(c1, 2) - 27.0) + 6138.0*pow(c0, 6)*(1295.0*pow(c1, 4) - 2030.0*pow(c1, 2) + 783.0) + 126.0*pow(c0, 4)*(14245.0*pow(c1, 6) - 35805.0*pow(c1, 4) + 29667.0*pow(c1, 2) - 8091.0) + 105.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2)*(1295.0*pow(c1, 4) - 2030.0*pow(c1, 2) + 783.0) + 63.0*pow(pow(c1, 2) - 1.0, 4)*(37.0*pow(c1, 2) - 27.0)); case 22: return 4.34027777777778e-5*pow(c1, 10)*(3891771.0*pow(c0, 12) + 731786.0*pow(c0, 10)*(13.0*pow(c1, 2) - 9.0) + 5115.0*pow(c0, 8)*(1443.0*pow(c1, 4) - 2146.0*pow(c1, 2) + 783.0) + 132.0*pow(c0, 6)*(16835.0*pow(c1, 6) - 40145.0*pow(c1, 4) + 31465.0*pow(c1, 2) - 8091.0) + 15.0*pow(c0, 4)*(16835.0*pow(c1, 8) - 56980.0*pow(c1, 6) + 71610.0*pow(c1, 4) - 39556.0*pow(c1, 2) + 8091.0) + 6.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 3)*(1443.0*pow(c1, 4) - 2146.0*pow(c1, 2) + 783.0) + 3.0*pow(pow(c1, 2) - 1.0, 5)*(13.0*pow(c1, 2) - 9.0)); case 23: return 4.34027777777778e-5*c0*pow(c1, 10)*(12274047.0*pow(c0, 12) + 864838.0*pow(c0, 10)*(41.0*pow(c1, 2) - 27.0) + 63085.0*pow(c0, 8)*(533.0*pow(c1, 4) - 754.0*pow(c1, 2) + 261.0) + 660.0*pow(c0, 6)*(19721.0*pow(c1, 6) - 44733.0*pow(c1, 4) + 33263.0*pow(c1, 2) - 8091.0) + 3.0*pow(c0, 4)*(690235.0*pow(c1, 8) - 2222220.0*pow(c1, 6) + 2649570.0*pow(c1, 4) - 1384460.0*pow(c1, 2) + 267003.0) + 6.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2)*(19721.0*pow(c1, 6) - 44733.0*pow(c1, 4) + 33263.0*pow(c1, 2) - 8091.0) + 3.0*pow(pow(c1, 2) - 1.0, 4)*(533.0*pow(c1, 4) - 754.0*pow(c1, 2) + 261.0)); case 24: return 1.03339947089947e-6*pow(c1, 10)*(1583352063.0*pow(c0, 14) + 124104253.0*pow(c0, 12)*(43.0*pow(c1, 2) - 27.0) + 3444441.0*pow(c0, 10)*(1763.0*pow(c1, 4) - 2378.0*pow(c1, 2) + 783.0) + 128205.0*pow(c0, 8)*(22919.0*pow(c1, 6) - 49569.0*pow(c1, 4) + 35061.0*pow(c1, 2) - 8091.0) + 735.0*pow(c0, 6)*(848003.0*pow(c1, 8) - 2603172.0*pow(c1, 6) + 2952378.0*pow(c1, 4) - 1463572.0*pow(c1, 2) + 267003.0) + 63.0*pow(c0, 4)*(848003.0*pow(c1, 10) - 3451175.0*pow(c1, 8) + 5555550.0*pow(c1, 6) - 4415950.0*pow(c1, 4) + 1730575.0*pow(c1, 2) - 267003.0) + 63.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 3)*(22919.0*pow(c1, 6) - 49569.0*pow(c1, 4) + 35061.0*pow(c1, 2) - 8091.0) + 3.0*pow(pow(c1, 2) - 1.0, 5)*(1763.0*pow(c1, 4) - 2378.0*pow(c1, 2) + 783.0)); case 25: return 3.10019841269841e-6*c0*pow(c1, 10)*(1583352063.0*pow(c0, 14) + 1231496049.0*pow(c0, 12)*(5.0*pow(c1, 2) - 3.0) + 4279457.0*pow(c0, 10)*(1935.0*pow(c1, 4) - 2494.0*pow(c1, 2) + 783.0) + 185185.0*pow(c0, 8)*(26445.0*pow(c1, 6) - 54653.0*pow(c1, 4) + 36859.0*pow(c1, 2) - 8091.0) + 3885.0*pow(c0, 6)*(343785.0*pow(c1, 8) - 1008436.0*pow(c1, 6) + 1090518.0*pow(c1, 4) - 514228.0*pow(c1, 2) + 89001.0) + 21.0*pow(c0, 4)*(7632027.0*pow(c1, 10) - 29680105.0*pow(c1, 8) + 45555510.0*pow(c1, 6) - 34444410.0*pow(c1, 4) + 12806255.0*pow(c1, 2) - 1869021.0) + 21.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2)*(343785.0*pow(c1, 8) - 1008436.0*pow(c1, 6) + 1090518.0*pow(c1, 4) - 514228.0*pow(c1, 2) + 89001.0) + 3.0*pow(pow(c1, 2) - 1.0, 4)*(26445.0*pow(c1, 6) - 54653.0*pow(c1, 4) + 36859.0*pow(c1, 2) - 8091.0)); case 26: return 1.93762400793651e-7*pow(c1, 10)*(74417546961.0*pow(c0, 16) + 7037120280.0*pow(c0, 14)*(47.0*pow(c1, 2) - 27.0) + 2208199812.0*pow(c0, 12)*(235.0*pow(c1, 4) - 290.0*pow(c1, 2) + 87.0) + 12148136.0*pow(c0, 10)*(30315.0*pow(c1, 6) - 59985.0*pow(c1, 4) + 38657.0*pow(c1, 2) - 8091.0) + 101010.0*pow(c0, 8)*(1242915.0*pow(c1, 8) - 3490740.0*pow(c1, 6) + 3607098.0*pow(c1, 4) - 1621796.0*pow(c1, 2) + 267003.0) + 6216.0*pow(c0, 6)*(3231579.0*pow(c1, 10) - 12032475.0*pow(c1, 8) + 17647630.0*pow(c1, 6) - 12722710.0*pow(c1, 4) + 4499495.0*pow(c1, 2) - 623007.0) + 420.0*pow(c0, 4)*(3231579.0*pow(c1, 12) - 15264054.0*pow(c1, 10) + 29680105.0*pow(c1, 8) - 30370340.0*pow(c1, 6) + 17222205.0*pow(c1, 4) - 5122502.0*pow(c1, 2) + 623007.0) + 24.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 3)*(1242915.0*pow(c1, 8) - 3490740.0*pow(c1, 6) + 3607098.0*pow(c1, 4) - 1621796.0*pow(c1, 2) + 267003.0) + 3.0*pow(pow(c1, 2) - 1.0, 5)*(30315.0*pow(c1, 6) - 59985.0*pow(c1, 4) + 38657.0*pow(c1, 2) - 8091.0)); case 27: return 3.79926276065982e-9*c0*pow(c1, 10)*(10939379403267.0*pow(c0, 16) + 1124531820744.0*pow(c0, 14)*(49.0*pow(c1, 2) - 27.0) + 43314688620.0*pow(c0, 12)*(2303.0*pow(c1, 4) - 2726.0*pow(c1, 2) + 783.0) + 7265689704.0*pow(c0, 10)*(11515.0*pow(c1, 6) - 21855.0*pow(c1, 4) + 13485.0*pow(c1, 2) - 2697.0) + 23467990.0*pow(c0, 8)*(1485435.0*pow(c1, 8) - 4001580.0*pow(c1, 6) + 3959010.0*pow(c1, 4) - 1700908.0*pow(c1, 2) + 267003.0) + 4121208.0*pow(c0, 6)*(1740081.0*pow(c1, 10) - 6214575.0*pow(c1, 8) + 8726850.0*pow(c1, 6) - 6011830.0*pow(c1, 4) + 2027245.0*pow(c1, 2) - 267003.0) + 4284.0*pow(c0, 4)*(158347371.0*pow(c1, 12) - 717410538.0*pow(c1, 10) + 1335604725.0*pow(c1, 8) - 1305924620.0*pow(c1, 6) + 706110405.0*pow(c1, 4) - 199777578.0*pow(c1, 2) + 23051259.0) + 14280.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2)*(1740081.0*pow(c1, 10) - 6214575.0*pow(c1, 8) + 8726850.0*pow(c1, 6) - 6011830.0*pow(c1, 4) + 2027245.0*pow(c1, 2) - 267003.0) + 153.0*pow(pow(c1, 2) - 1.0, 4)*(1485435.0*pow(c1, 8) - 4001580.0*pow(c1, 6) + 3959010.0*pow(c1, 4) - 1700908.0*pow(c1, 2) + 267003.0)); case 28: return 2.90643601190476e-7*pow(c1, 10)*(405162200121.0*pow(c0, 18) + 135054066707.0*pow(c0, 16)*(17.0*pow(c1, 2) - 9.0) + 1900831340.0*pow(c0, 14)*(2499.0*pow(c1, 4) - 2842.0*pow(c1, 2) + 783.0) + 118720420.0*pow(c0, 12)*(39151.0*pow(c1, 6) - 71393.0*pow(c1, 4) + 42253.0*pow(c1, 2) - 8091.0) + 11872042.0*pow(c0, 10)*(195755.0*pow(c1, 8) - 506660.0*pow(c1, 6) + 480810.0*pow(c1, 4) - 197780.0*pow(c1, 2) + 29667.0) + 276094.0*pow(c0, 8)*(2164491.0*pow(c1, 10) - 7427175.0*pow(c1, 8) + 10003950.0*pow(c1, 6) - 6598350.0*pow(c1, 4) + 2126135.0*pow(c1, 2) - 267003.0) + 2548.0*pow(c0, 6)*(29581377.0*pow(c1, 12) - 128765994.0*pow(c1, 10) + 229939275.0*pow(c1, 8) - 215262300.0*pow(c1, 6) + 111218855.0*pow(c1, 4) - 30003226.0*pow(c1, 2) + 3293037.0) + 140.0*pow(c0, 4)*(29581377.0*pow(c1, 14) - 158347371.0*pow(c1, 12) + 358705269.0*pow(c1, 10) - 445201575.0*pow(c1, 8) + 326481155.0*pow(c1, 6) - 141222081.0*pow(c1, 4) + 33296263.0*pow(c1, 2) - 3293037.0) + 35.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 3)*(2164491.0*pow(c1, 10) - 7427175.0*pow(c1, 8) + 10003950.0*pow(c1, 6) - 6598350.0*pow(c1, 4) + 2126135.0*pow(c1, 2) - 267003.0) + pow(pow(c1, 2) - 1.0, 5)*(195755.0*pow(c1, 8) - 506660.0*pow(c1, 6) + 480810.0*pow(c1, 4) - 197780.0*pow(c1, 2) + 29667.0)); case 29: return 9.73447468102073e-9*c0*pow(c1, 10)*(33744223238649.0*pow(c0, 18) + 4032328563109.0*pow(c0, 16)*(53.0*pow(c1, 2) - 27.0) + 556183250084.0*pow(c0, 14)*(901.0*pow(c1, 4) - 986.0*pow(c1, 2) + 261.0) + 12815282260.0*pow(c0, 12)*(44149.0*pow(c1, 6) - 77469.0*pow(c1, 4) + 44051.0*pow(c1, 2) - 8091.0) + 161120570.0*pow(c0, 10)*(2075003.0*pow(c1, 8) - 5167932.0*pow(c1, 6) + 4711938.0*pow(c1, 4) - 1859132.0*pow(c1, 2) + 267003.0) + 354465254.0*pow(c0, 8)*(296429.0*pow(c1, 10) - 978775.0*pow(c1, 8) + 1266650.0*pow(c1, 6) - 801350.0*pow(c1, 4) + 247225.0*pow(c1, 2) - 29667.0) + 445588.0*pow(c0, 6)*(38239341.0*pow(c1, 12) - 160172334.0*pow(c1, 10) + 274805475.0*pow(c1, 8) - 246764100.0*pow(c1, 6) + 122069475.0*pow(c1, 4) - 31466798.0*pow(c1, 2) + 3293037.0) + 836.0*pow(c0, 4)*(1567812981.0*pow(c1, 14) - 8075715921.0*pow(c1, 12) + 17576558181.0*pow(c1, 10) - 20924474025.0*pow(c1, 8) + 14691651975.0*pow(c1, 6) - 6072549483.0*pow(c1, 4) + 1365146783.0*pow(c1, 2) - 128428443.0) + 1045.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2)*(38239341.0*pow(c1, 12) - 160172334.0*pow(c1, 10) + 274805475.0*pow(c1, 8) - 246764100.0*pow(c1, 6) + 122069475.0*pow(c1, 4) - 31466798.0*pow(c1, 2) + 3293037.0) + 1045.0*pow(pow(c1, 2) - 1.0, 4)*(296429.0*pow(c1, 10) - 978775.0*pow(c1, 8) + 1266650.0*pow(c1, 6) - 801350.0*pow(c1, 4) + 247225.0*pow(c1, 2) - 29667.0)); default: return 0.; } case 15: switch(j) { case 11: return 3.22868362532741e-7*pow(c1, 11); case 12: return 6.13449888812208e-6*c0*pow(c1, 11); case 13: return 1.05767222209001e-7*pow(c1, 11)*(609.0*pow(c0, 2) + 21.0*pow(c1, 2) - 29.0); case 14: return 7.40370555463009e-7*c0*pow(c1, 11)*(667.0*pow(c0, 2) + 69.0*pow(c1, 2) - 87.0); case 15: return 5.97073028599201e-9*pow(c1, 11)*(516925.0*pow(c0, 4) + 4278.0*pow(c0, 2)*(25.0*pow(c1, 2) - 29.0) + 1725.0*pow(c1, 4) - 4278.0*pow(c1, 2) + 2697.0); case 16: return 1.37326796577816e-7*c0*pow(c1, 11)*(121365.0*pow(c0, 4) + 1550.0*pow(c0, 2)*(27.0*pow(c1, 2) - 29.0) + 2025.0*pow(c1, 4) - 4650.0*pow(c1, 2) + 2697.0); case 17: return 6.24212711717347e-9*pow(c1, 11)*(12905145.0*pow(c0, 6) + 6675075.0*pow(c0, 4)*(pow(c1, 2) - 1.0) + 825.0*pow(c0, 2)*(783.0*pow(c1, 4) - 1674.0*pow(c1, 2) + 899.0) + 6525.0*pow(c1, 6) - 22275.0*pow(c1, 4) + 25575.0*pow(c1, 2) - 9889.0); case 18: return 4.45866222655247e-9*c0*pow(c1, 11)*(80011899.0*pow(c0, 6) + 1869021.0*pow(c0, 4)*(31.0*pow(c1, 2) - 29.0) + 9345105.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2) + 283185.0*pow(c1, 6) - 904365.0*pow(c1, 4) + 966735.0*pow(c1, 2) - 346115.0); case 19: return 5.57332778319059e-10*pow(c1, 11)*(2640392667.0*pow(c0, 8) + 77252868.0*pow(c0, 6)*(33.0*pow(c1, 2) - 29.0) + 18690210.0*pow(c0, 4)*(33.0*pow(c1, 4) - 62.0*pow(c1, 2) + 29.0) + 37380420.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 3) + 267003.0*pow(c1, 8) - 1132740.0*pow(c1, 6) + 1808730.0*pow(c1, 4) - 1288980.0*pow(c1, 2) + 346115.0); case 20: return 1.65343915343915e-5*c0*pow(c1, 11)*(346115.0*pow(c0, 8) + 12276.0*pow(c0, 6)*(35.0*pow(c1, 2) - 29.0) + 126.0*pow(c0, 4)*(1155.0*pow(c1, 4) - 2046.0*pow(c1, 2) + 899.0) + 420.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2)*(35.0*pow(c1, 2) - 29.0) + 315.0*pow(pow(c1, 2) - 1.0, 4)); case 21: return 5.78703703703704e-5*pow(c1, 11)*(365893.0*pow(c0, 10) + 15345.0*pow(c0, 8)*(37.0*pow(c1, 2) - 29.0) + 198.0*pow(c0, 6)*(1295.0*pow(c1, 4) - 2170.0*pow(c1, 2) + 899.0) + 30.0*pow(c0, 4)*(1295.0*pow(c1, 6) - 3465.0*pow(c1, 4) + 3069.0*pow(c1, 2) - 899.0) + 45.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 3)*(37.0*pow(c1, 2) - 29.0) + 9.0*pow(pow(c1, 2) - 1.0, 5)); case 22: return 5.78703703703704e-5*c0*pow(c1, 11)*(1297257.0*pow(c0, 10) + 63085.0*pow(c0, 8)*(39.0*pow(c1, 2) - 29.0) + 990.0*pow(c0, 6)*(1443.0*pow(c1, 4) - 2294.0*pow(c1, 2) + 899.0) + 18.0*pow(c0, 4)*(16835.0*pow(c1, 6) - 42735.0*pow(c1, 4) + 35805.0*pow(c1, 2) - 9889.0) + 15.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2)*(1443.0*pow(c1, 4) - 2294.0*pow(c1, 2) + 899.0) + 9.0*pow(pow(c1, 2) - 1.0, 4)*(39.0*pow(c1, 2) - 29.0)); case 23: return 1.44675925925926e-5*pow(c1, 11)*(17729179.0*pow(c0, 12) + 984126.0*pow(c0, 10)*(41.0*pow(c1, 2) - 29.0) + 18315.0*pow(c0, 8)*(1599.0*pow(c1, 4) - 2418.0*pow(c1, 2) + 899.0) + 420.0*pow(c0, 6)*(19721.0*pow(c1, 6) - 47619.0*pow(c1, 4) + 37851.0*pow(c1, 2) - 9889.0) + 45.0*pow(c0, 4)*(19721.0*pow(c1, 8) - 67340.0*pow(c1, 6) + 85470.0*pow(c1, 4) - 47740.0*pow(c1, 2) + 9889.0) + 18.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 3)*(1599.0*pow(c1, 4) - 2418.0*pow(c1, 2) + 899.0) + 3.0*pow(pow(c1, 2) - 1.0, 5)*(41.0*pow(c1, 2) - 29.0)); case 24: return 1.44675925925926e-5*c0*pow(c1, 11)*(58642669.0*pow(c0, 12) + 3668106.0*pow(c0, 10)*(43.0*pow(c1, 2) - 29.0) + 79365.0*pow(c0, 8)*(1763.0*pow(c1, 4) - 2542.0*pow(c1, 2) + 899.0) + 2220.0*pow(c0, 6)*(22919.0*pow(c1, 6) - 52767.0*pow(c1, 4) + 39897.0*pow(c1, 2) - 9889.0) + 9.0*pow(c0, 4)*(848003.0*pow(c1, 8) - 2760940.0*pow(c1, 6) + 3333330.0*pow(c1, 4) - 1766380.0*pow(c1, 2) + 346115.0) + 18.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2)*(22919.0*pow(c1, 6) - 52767.0*pow(c1, 4) + 39897.0*pow(c1, 2) - 9889.0) + 3.0*pow(pow(c1, 2) - 1.0, 4)*(1763.0*pow(c1, 4) - 2542.0*pow(c1, 2) + 899.0)); case 25: return 1.03339947089947e-6*pow(c1, 11)*(2638920105.0*pow(c0, 14) + 184016651.0*pow(c0, 12)*(45.0*pow(c1, 2) - 29.0) + 4555551.0*pow(c0, 10)*(1935.0*pow(c1, 4) - 2666.0*pow(c1, 2) + 899.0) + 151515.0*pow(c0, 8)*(26445.0*pow(c1, 6) - 58179.0*pow(c1, 4) + 41943.0*pow(c1, 2) - 9889.0) + 3885.0*pow(c0, 6)*(206271.0*pow(c1, 8) - 641732.0*pow(c1, 6) + 738738.0*pow(c1, 4) - 372372.0*pow(c1, 2) + 69223.0) + 315.0*pow(c0, 4)*(206271.0*pow(c1, 10) - 848003.0*pow(c1, 8) + 1380470.0*pow(c1, 6) - 1111110.0*pow(c1, 4) + 441595.0*pow(c1, 2) - 69223.0) + 63.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 3)*(26445.0*pow(c1, 6) - 58179.0*pow(c1, 4) + 41943.0*pow(c1, 2) - 9889.0) + 3.0*pow(pow(c1, 2) - 1.0, 5)*(1935.0*pow(c1, 4) - 2666.0*pow(c1, 2) + 899.0)); case 26: return 1.03339947089947e-6*c0*pow(c1, 11)*(8268616329.0*pow(c0, 14) + 636980715.0*pow(c0, 12)*(47.0*pow(c1, 2) - 29.0) + 17808063.0*pow(c0, 10)*(2115.0*pow(c1, 4) - 2790.0*pow(c1, 2) + 899.0) + 690235.0*pow(c0, 8)*(30315.0*pow(c1, 6) - 63855.0*pow(c1, 4) + 43989.0*pow(c1, 2) - 9889.0) + 21645.0*pow(c0, 6)*(248583.0*pow(c1, 8) - 740460.0*pow(c1, 6) + 814506.0*pow(c1, 4) - 391468.0*pow(c1, 2) + 69223.0) + 63.0*pow(c0, 4)*(9694737.0*pow(c1, 10) - 38160135.0*pow(c1, 8) + 59360210.0*pow(c1, 6) - 45555510.0*pow(c1, 4) + 17222205.0*pow(c1, 2) - 2561251.0) + 105.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2)*(248583.0*pow(c1, 8) - 740460.0*pow(c1, 6) + 814506.0*pow(c1, 4) - 391468.0*pow(c1, 2) + 69223.0) + 9.0*pow(pow(c1, 2) - 1.0, 4)*(30315.0*pow(c1, 6) - 63855.0*pow(c1, 4) + 43989.0*pow(c1, 2) - 9889.0)); case 27: return 6.45874669312169e-8*pow(c1, 11)*(405162200121.0*pow(c0, 16) + 34214964120.0*pow(c0, 14)*(49.0*pow(c1, 2) - 29.0) + 1068483780.0*pow(c0, 12)*(2303.0*pow(c1, 4) - 2914.0*pow(c1, 2) + 899.0) + 47488168.0*pow(c0, 10)*(34545.0*pow(c1, 6) - 69795.0*pow(c1, 4) + 46035.0*pow(c1, 2) - 9889.0) + 12424230.0*pow(c0, 8)*(42441.0*pow(c1, 8) - 121260.0*pow(c1, 6) + 127710.0*pow(c1, 4) - 58652.0*pow(c1, 2) + 9889.0) + 6552.0*pow(c0, 6)*(12180567.0*pow(c1, 10) - 45987855.0*pow(c1, 8) + 68492550.0*pow(c1, 6) - 50227870.0*pow(c1, 4) + 18105395.0*pow(c1, 2) - 2561251.0) + 420.0*pow(c0, 4)*(12180567.0*pow(c1, 12) - 58168422.0*pow(c1, 10) + 114480405.0*pow(c1, 8) - 118720420.0*pow(c1, 6) + 68333265.0*pow(c1, 4) - 20666646.0*pow(c1, 2) + 2561251.0) + 2520.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 3)*(42441.0*pow(c1, 8) - 121260.0*pow(c1, 6) + 127710.0*pow(c1, 4) - 58652.0*pow(c1, 2) + 9889.0) + 9.0*pow(pow(c1, 2) - 1.0, 5)*(34545.0*pow(c1, 6) - 69795.0*pow(c1, 4) + 46035.0*pow(c1, 2) - 9889.0)); case 28: return 4.11011153198653e-8*c0*pow(c1, 11)*(1910050371999.0*pow(c0, 16) + 175636815816.0*pow(c0, 14)*(51.0*pow(c1, 2) - 29.0) + 6070396860.0*pow(c0, 12)*(2499.0*pow(c1, 4) - 3038.0*pow(c1, 2) + 899.0) + 305281080.0*pow(c0, 10)*(39151.0*pow(c1, 6) - 75999.0*pow(c1, 4) + 48081.0*pow(c1, 2) - 9889.0) + 93280330.0*pow(c0, 8)*(50337.0*pow(c1, 8) - 138180.0*pow(c1, 6) + 139590.0*pow(c1, 4) - 61380.0*pow(c1, 2) + 9889.0) + 422136.0*pow(c0, 6)*(2164491.0*pow(c1, 10) - 7851585.0*pow(c1, 8) + 11216550.0*pow(c1, 6) - 7875450.0*pow(c1, 4) + 2712655.0*pow(c1, 2) - 365893.0) + 396.0*pow(c0, 4)*(207069639.0*pow(c1, 12) - 950084226.0*pow(c1, 10) + 1793526345.0*pow(c1, 8) - 1780806300.0*pow(c1, 6) + 979443465.0*pow(c1, 4) - 282444162.0*pow(c1, 2) + 33296263.0) + 1320.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2)*(2164491.0*pow(c1, 10) - 7851585.0*pow(c1, 8) + 11216550.0*pow(c1, 6) - 7875450.0*pow(c1, 4) + 2712655.0*pow(c1, 2) - 365893.0) + 495.0*pow(pow(c1, 2) - 1.0, 4)*(50337.0*pow(c1, 8) - 138180.0*pow(c1, 6) + 139590.0*pow(c1, 4) - 61380.0*pow(c1, 2) + 9889.0)); case 29: return 2.05505576599327e-8*pow(c1, 11)*(11248074412883.0*pow(c0, 18) + 1119684700827.0*pow(c0, 16)*(53.0*pow(c1, 2) - 29.0) + 42492778020.0*pow(c0, 14)*(2703.0*pow(c1, 4) - 3162.0*pow(c1, 2) + 899.0) + 2391368460.0*pow(c0, 12)*(44149.0*pow(c1, 6) - 82467.0*pow(c1, 4) + 50127.0*pow(c1, 2) - 9889.0) + 167904594.0*pow(c0, 10)*(296429.0*pow(c1, 8) - 783020.0*pow(c1, 6) + 759990.0*pow(c1, 4) - 320540.0*pow(c1, 2) + 49445.0) + 4537962.0*pow(c0, 8)*(2667861.0*pow(c1, 10) - 9312345.0*pow(c1, 8) + 12781650.0*pow(c1, 6) - 8608050.0*pow(c1, 4) + 2838825.0*pow(c1, 2) - 365893.0) + 37884.0*pow(c0, 6)*(38239341.0*pow(c1, 12) - 168830298.0*pow(c1, 10) + 306211815.0*pow(c1, 8) - 291630300.0*pow(c1, 6) + 153571275.0*pow(c1, 4) - 42317418.0*pow(c1, 2) + 4756609.0) + 1980.0*pow(c0, 4)*(38239341.0*pow(c1, 14) - 207069639.0*pow(c1, 12) + 475042113.0*pow(c1, 10) - 597842115.0*pow(c1, 8) + 445201575.0*pow(c1, 6) - 195888693.0*pow(c1, 4) + 47074027.0*pow(c1, 2) - 4756609.0) + 495.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 3)*(2667861.0*pow(c1, 10) - 9312345.0*pow(c1, 8) + 12781650.0*pow(c1, 6) - 8608050.0*pow(c1, 4) + 2838825.0*pow(c1, 2) - 365893.0) + 11.0*pow(pow(c1, 2) - 1.0, 5)*(296429.0*pow(c1, 8) - 783020.0*pow(c1, 6) + 759990.0*pow(c1, 4) - 320540.0*pow(c1, 2) + 49445.0)); default: return 0.; } case 16: switch(j) { case 12: return 2.11534444418003e-7*pow(c1, 12); case 13: return 4.44222333277806e-6*c0*pow(c1, 12); case 14: return 7.16487634319041e-8*pow(c1, 12)*(713.0*pow(c0, 2) + 23.0*pow(c1, 2) - 31.0); case 15: return 5.49307186311265e-7*c0*pow(c1, 12)*(775.0*pow(c0, 2) + 75.0*pow(c1, 2) - 93.0); case 16: return 3.74527627030408e-8*pow(c1, 12)*(76725.0*pow(c0, 4) + 550.0*pow(c0, 2)*(27.0*pow(c1, 2) - 31.0) + 225.0*pow(c1, 4) - 550.0*pow(c1, 2) + 341.0); case 17: return 1.87263813515204e-7*c0*pow(c1, 12)*(89001.0*pow(c0, 4) + 990.0*pow(c0, 2)*(29.0*pow(c1, 2) - 31.0) + 1305.0*pow(c1, 4) - 2970.0*pow(c1, 2) + 1705.0); case 18: return 4.45866222655247e-9*pow(c1, 12)*(19313217.0*pow(c0, 6) + 9345105.0*pow(c0, 4)*(pow(c1, 2) - 1.0) + 945.0*pow(c0, 2)*(899.0*pow(c1, 4) - 1914.0*pow(c1, 2) + 1023.0) + 8091.0*pow(c1, 6) - 27405.0*pow(c1, 4) + 31185.0*pow(c1, 2) - 11935.0); case 19: return 1.20383880116917e-7*c0*pow(c1, 12)*(3372149.0*pow(c0, 6) + 69223.0*pow(c0, 4)*(33.0*pow(c1, 2) - 31.0) + 346115.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2) + 9889.0*pow(c1, 6) - 31465.0*pow(c1, 4) + 33495.0*pow(c1, 2) - 11935.0); case 20: return 4.06702297692287e-10*pow(c1, 12)*(4366932955.0*pow(c0, 8) + 112695044.0*pow(c0, 6)*(35.0*pow(c1, 2) - 31.0) + 25612510.0*pow(c0, 4)*(35.0*pow(c1, 4) - 66.0*pow(c1, 2) + 31.0) + 51225020.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 3) + 346115.0*pow(c1, 8) - 1463572.0*pow(c1, 6) + 2328410.0*pow(c1, 4) - 1652420.0*pow(c1, 2) + 441595.0); case 21: return 0.000115740740740741*c0*pow(c1, 12)*(63085.0*pow(c0, 8) + 1980.0*pow(c0, 6)*(37.0*pow(c1, 2) - 31.0) + 18.0*pow(c0, 4)*(1295.0*pow(c1, 4) - 2310.0*pow(c1, 2) + 1023.0) + 60.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2)*(37.0*pow(c1, 2) - 31.0) + 45.0*pow(pow(c1, 2) - 1.0, 4)); case 22: return 0.000173611111111111*pow(c1, 12)*(164021.0*pow(c0, 10) + 6105.0*pow(c0, 8)*(39.0*pow(c1, 2) - 31.0) + 210.0*pow(c0, 6)*(481.0*pow(c1, 4) - 814.0*pow(c1, 2) + 341.0) + 30.0*pow(c0, 4)*(481.0*pow(c1, 6) - 1295.0*pow(c1, 4) + 1155.0*pow(c1, 2) - 341.0) + 15.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 3)*(39.0*pow(c1, 2) - 31.0) + 3.0*pow(pow(c1, 2) - 1.0, 5)); case 23: return 0.000173611111111111*c0*pow(c1, 12)*(611351.0*pow(c0, 10) + 26455.0*pow(c0, 8)*(41.0*pow(c1, 2) - 31.0) + 1110.0*pow(c0, 6)*(533.0*pow(c1, 4) - 858.0*pow(c1, 2) + 341.0) + 6.0*pow(c0, 4)*(19721.0*pow(c1, 6) - 50505.0*pow(c1, 4) + 42735.0*pow(c1, 2) - 11935.0) + 15.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2)*(533.0*pow(c1, 4) - 858.0*pow(c1, 2) + 341.0) + 3.0*pow(pow(c1, 2) - 1.0, 4)*(41.0*pow(c1, 2) - 31.0)); case 24: return 1.44675925925926e-5*pow(c1, 12)*(26288093.0*pow(c0, 12) + 1301586.0*pow(c0, 10)*(43.0*pow(c1, 2) - 31.0) + 21645.0*pow(c0, 8)*(1763.0*pow(c1, 4) - 2706.0*pow(c1, 2) + 1023.0) + 444.0*pow(c0, 6)*(22919.0*pow(c1, 6) - 55965.0*pow(c1, 4) + 45045.0*pow(c1, 2) - 11935.0) + 45.0*pow(c0, 4)*(22919.0*pow(c1, 8) - 78884.0*pow(c1, 6) + 101010.0*pow(c1, 4) - 56980.0*pow(c1, 2) + 11935.0) + 18.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 3)*(1763.0*pow(c1, 4) - 2706.0*pow(c1, 2) + 1023.0) + 3.0*pow(pow(c1, 2) - 1.0, 5)*(43.0*pow(c1, 2) - 31.0)); case 25: return 6.20039682539683e-6*c0*pow(c1, 12)*(212326905.0*pow(c0, 12) + 11872042.0*pow(c0, 10)*(45.0*pow(c1, 2) - 31.0) + 690235.0*pow(c0, 8)*(645.0*pow(c1, 4) - 946.0*pow(c1, 2) + 341.0) + 28860.0*pow(c0, 6)*(5289.0*pow(c1, 6) - 12341.0*pow(c1, 4) + 9471.0*pow(c1, 2) - 2387.0) + 21.0*pow(c0, 4)*(1031355.0*pow(c1, 8) - 3392012.0*pow(c1, 6) + 4141410.0*pow(c1, 4) - 2222220.0*pow(c1, 2) + 441595.0) + 210.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2)*(5289.0*pow(c1, 6) - 12341.0*pow(c1, 4) + 9471.0*pow(c1, 2) - 2387.0) + 21.0*pow(pow(c1, 2) - 1.0, 4)*(645.0*pow(c1, 4) - 946.0*pow(c1, 2) + 341.0)); case 26: return 3.10019841269841e-6*pow(c1, 12)*(1425623505.0*pow(c0, 14) + 89040315.0*pow(c0, 12)*(47.0*pow(c1, 2) - 31.0) + 5936021.0*pow(c0, 10)*(705.0*pow(c1, 4) - 990.0*pow(c1, 2) + 341.0) + 295815.0*pow(c0, 8)*(6063.0*pow(c1, 6) - 13545.0*pow(c1, 4) + 9933.0*pow(c1, 2) - 2387.0) + 1365.0*pow(c0, 6)*(248583.0*pow(c1, 8) - 782772.0*pow(c1, 6) + 913234.0*pow(c1, 4) - 467236.0*pow(c1, 2) + 88319.0) + 105.0*pow(c0, 4)*(248583.0*pow(c1, 10) - 1031355.0*pow(c1, 8) + 1696006.0*pow(c1, 6) - 1380470.0*pow(c1, 4) + 555555.0*pow(c1, 2) - 88319.0) + 105.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 3)*(6063.0*pow(c1, 6) - 13545.0*pow(c1, 4) + 9933.0*pow(c1, 2) - 2387.0) + 3.0*pow(pow(c1, 2) - 1.0, 5)*(705.0*pow(c1, 4) - 990.0*pow(c1, 2) + 341.0)); case 27: return 9.39454064454064e-8*c0*pow(c1, 12)*(153682213839.0*pow(c0, 14) + 10623194505.0*pow(c0, 12)*(49.0*pow(c1, 2) - 31.0) + 267120945.0*pow(c0, 10)*(2303.0*pow(c1, 4) - 3102.0*pow(c1, 2) + 1023.0) + 326481155.0*pow(c0, 8)*(987.0*pow(c1, 6) - 2115.0*pow(c1, 4) + 1485.0*pow(c1, 2) - 341.0) + 263835.0*pow(c0, 6)*(297087.0*pow(c1, 8) - 897324.0*pow(c1, 6) + 1002330.0*pow(c1, 4) - 490028.0*pow(c1, 2) + 88319.0) + 693.0*pow(c0, 4)*(12180567.0*pow(c1, 10) - 48473685.0*pow(c1, 8) + 76320270.0*pow(c1, 6) - 59360210.0*pow(c1, 4) + 22777755.0*pow(c1, 2) - 3444441.0) + 1155.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2)*(297087.0*pow(c1, 8) - 897324.0*pow(c1, 6) + 1002330.0*pow(c1, 4) - 490028.0*pow(c1, 2) + 88319.0) + 3465.0*pow(pow(c1, 2) - 1.0, 4)*(987.0*pow(c1, 6) - 2115.0*pow(c1, 4) + 1485.0*pow(c1, 2) - 341.0)); case 28: return 3.69910037878788e-7*pow(c1, 12)*(124409411203.0*pow(c0, 16) + 9442839560.0*pow(c0, 14)*(51.0*pow(c1, 2) - 31.0) + 797122820.0*pow(c0, 12)*(833.0*pow(c1, 4) - 1078.0*pow(c1, 2) + 341.0) + 74624264.0*pow(c0, 10)*(5593.0*pow(c1, 6) - 11515.0*pow(c1, 4) + 7755.0*pow(c1, 2) - 1705.0) + 2521090.0*pow(c0, 8)*(50337.0*pow(c1, 8) - 146076.0*pow(c1, 6) + 156510.0*pow(c1, 4) - 73260.0*pow(c1, 2) + 12617.0) + 3608.0*pow(c0, 6)*(5050479.0*pow(c1, 10) - 19310655.0*pow(c1, 8) + 29163030.0*pow(c1, 6) - 21717150.0*pow(c1, 4) + 7962955.0*pow(c1, 2) - 1148147.0) + 220.0*pow(c0, 4)*(5050479.0*pow(c1, 12) - 24361134.0*pow(c1, 10) + 48473685.0*pow(c1, 8) - 50880180.0*pow(c1, 6) + 29680105.0*pow(c1, 4) - 9111102.0*pow(c1, 2) + 1148147.0) + 440.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 3)*(50337.0*pow(c1, 8) - 146076.0*pow(c1, 6) + 156510.0*pow(c1, 4) - 73260.0*pow(c1, 2) + 12617.0) + 11.0*pow(pow(c1, 2) - 1.0, 5)*(5593.0*pow(c1, 6) - 11515.0*pow(c1, 4) + 7755.0*pow(c1, 2) - 1705.0)); case 29: return 3.69910037878788e-7*c0*pow(c1, 12)*(387864634927.0*pow(c0, 16) + 32105654504.0*pow(c0, 14)*(53.0*pow(c1, 2) - 31.0) + 3004539860.0*pow(c0, 12)*(901.0*pow(c1, 4) - 1122.0*pow(c1, 2) + 341.0) + 318849128.0*pow(c0, 10)*(6307.0*pow(c1, 6) - 12495.0*pow(c1, 4) + 8085.0*pow(c1, 2) - 1705.0) + 2521090.0*pow(c0, 8)*(296429.0*pow(c1, 8) - 827764.0*pow(c1, 6) + 852110.0*pow(c1, 4) - 382580.0*pow(c1, 2) + 63085.0) + 155144.0*pow(c0, 6)*(889287.0*pow(c1, 10) - 3271905.0*pow(c1, 8) + 4747470.0*pow(c1, 6) - 3391050.0*pow(c1, 4) + 1190475.0*pow(c1, 2) - 164021.0) + 44.0*pow(c0, 4)*(267675387.0*pow(c1, 12) - 1242417834.0*pow(c1, 10) + 2375210565.0*pow(c1, 8) - 2391368460.0*pow(c1, 6) + 1335604725.0*pow(c1, 4) - 391777386.0*pow(c1, 2) + 47074027.0) + 440.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2)*(889287.0*pow(c1, 10) - 3271905.0*pow(c1, 8) + 4747470.0*pow(c1, 6) - 3391050.0*pow(c1, 4) + 1190475.0*pow(c1, 2) - 164021.0) + 11.0*pow(pow(c1, 2) - 1.0, 4)*(296429.0*pow(c1, 8) - 827764.0*pow(c1, 6) + 852110.0*pow(c1, 4) - 382580.0*pow(c1, 2) + 63085.0)); default: return 0.; } case 17: switch(j) { case 13: return 1.43297526863808e-7*pow(c1, 13); case 14: return 3.29584311786759e-6*c0*pow(c1, 13); case 15: return 4.99370169373877e-8*pow(c1, 13)*(825.0*pow(c0, 2) + 25.0*pow(c1, 2) - 33.0); case 16: return 3.74527627030408e-6*c0*pow(c1, 13)*(99.0*pow(c0, 2) + 9.0*pow(c1, 2) - 11.0); case 17: return 2.67519733593148e-8*pow(c1, 13)*(100485.0*pow(c0, 4) + 630.0*pow(c0, 2)*(29.0*pow(c1, 2) - 33.0) + 261.0*pow(c1, 4) - 630.0*pow(c1, 2) + 385.0); case 18: return 8.02559200779446e-8*c0*pow(c1, 13)*(207669.0*pow(c0, 4) + 2030.0*pow(c0, 2)*(31.0*pow(c1, 2) - 33.0) + 2697.0*pow(c1, 4) - 6090.0*pow(c1, 2) + 3465.0); case 19: return 3.25361838153829e-9*pow(c1, 13)*(28173761.0*pow(c0, 6) + 12806255.0*pow(c0, 4)*(pow(c1, 2) - 1.0) + 1073.0*pow(c0, 2)*(1023.0*pow(c1, 4) - 2170.0*pow(c1, 2) + 1155.0) + 9889.0*pow(c1, 6) - 33263.0*pow(c1, 4) + 37555.0*pow(c1, 2) - 14245.0); case 20: return 9.43549330646105e-8*c0*pow(c1, 13)*(4857545.0*pow(c0, 6) + 88319.0*pow(c0, 4)*(35.0*pow(c1, 2) - 33.0) + 441595.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2) + 11935.0*pow(c1, 6) - 37851.0*pow(c1, 4) + 40145.0*pow(c1, 2) - 14245.0); case 21: return 3.02419657258367e-10*pow(c1, 13)*(7009437435.0*pow(c0, 8) + 160740580.0*pow(c0, 6)*(37.0*pow(c1, 2) - 33.0) + 34444410.0*pow(c0, 4)*(37.0*pow(c1, 4) - 70.0*pow(c1, 2) + 33.0) + 68888820.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 3) + 441595.0*pow(c1, 8) - 1861860.0*pow(c1, 6) + 2952378.0*pow(c1, 4) - 2087540.0*pow(c1, 2) + 555555.0); case 22: return 0.000347222222222222*c0*pow(c1, 13)*(26455.0*pow(c0, 8) + 2220.0*pow(c0, 6)*(13.0*pow(c1, 2) - 11.0) + 6.0*pow(c0, 4)*(1443.0*pow(c1, 4) - 2590.0*pow(c1, 2) + 1155.0) + 60.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2)*(13.0*pow(c1, 2) - 11.0) + 15.0*pow(pow(c1, 2) - 1.0, 4)); case 23: return 0.000173611111111111*pow(c1, 13)*(216931.0*pow(c0, 10) + 7215.0*pow(c0, 8)*(41.0*pow(c1, 2) - 33.0) + 222.0*pow(c0, 6)*(533.0*pow(c1, 4) - 910.0*pow(c1, 2) + 385.0) + 30.0*pow(c0, 4)*(533.0*pow(c1, 6) - 1443.0*pow(c1, 4) + 1295.0*pow(c1, 2) - 385.0) + 15.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 3)*(41.0*pow(c1, 2) - 33.0) + 3.0*pow(pow(c1, 2) - 1.0, 5)); case 24: return 8.26719576719577e-6*c0*pow(c1, 13)*(17808063.0*pow(c0, 10) + 690235.0*pow(c0, 8)*(43.0*pow(c1, 2) - 33.0) + 8658.0*pow(c0, 6)*(1763.0*pow(c1, 4) - 2870.0*pow(c1, 2) + 1155.0) + 126.0*pow(c0, 4)*(22919.0*pow(c1, 6) - 59163.0*pow(c1, 4) + 50505.0*pow(c1, 2) - 14245.0) + 105.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2)*(1763.0*pow(c1, 4) - 2870.0*pow(c1, 2) + 1155.0) + 63.0*pow(pow(c1, 2) - 1.0, 4)*(43.0*pow(c1, 2) - 33.0)); case 25: return 6.20039682539683e-6*pow(c1, 13)*(89040315.0*pow(c0, 12) + 11872042.0*pow(c0, 10)*(15.0*pow(c1, 2) - 11.0) + 295815.0*pow(c0, 8)*(387.0*pow(c1, 4) - 602.0*pow(c1, 2) + 231.0) + 1092.0*pow(c0, 6)*(26445.0*pow(c1, 6) - 65231.0*pow(c1, 4) + 53095.0*pow(c1, 2) - 14245.0) + 105.0*pow(c0, 4)*(26445.0*pow(c1, 8) - 91676.0*pow(c1, 6) + 118326.0*pow(c1, 4) - 67340.0*pow(c1, 2) + 14245.0) + 210.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 3)*(387.0*pow(c1, 4) - 602.0*pow(c1, 2) + 231.0) + 21.0*pow(pow(c1, 2) - 1.0, 5)*(15.0*pow(c1, 2) - 11.0)); case 26: return 5.63672438672439e-7*c0*pow(c1, 13)*(3541064835.0*pow(c0, 12) + 178080630.0*pow(c0, 10)*(47.0*pow(c1, 2) - 33.0) + 46640165.0*pow(c0, 8)*(141.0*pow(c1, 4) - 210.0*pow(c1, 2) + 77.0) + 351780.0*pow(c0, 6)*(6063.0*pow(c1, 6) - 14319.0*pow(c1, 4) + 11137.0*pow(c1, 2) - 2849.0) + 231.0*pow(c0, 4)*(1242915.0*pow(c1, 8) - 4125420.0*pow(c1, 6) + 5088018.0*pow(c1, 4) - 2760940.0*pow(c1, 2) + 555555.0) + 2310.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2)*(6063.0*pow(c1, 6) - 14319.0*pow(c1, 4) + 11137.0*pow(c1, 2) - 2849.0) + 1155.0*pow(pow(c1, 2) - 1.0, 4)*(141.0*pow(c1, 4) - 210.0*pow(c1, 2) + 77.0)); case 27: return 2.81836219336219e-7*pow(c1, 13)*(24787453845.0*pow(c0, 14) + 1394964935.0*pow(c0, 12)*(49.0*pow(c1, 2) - 33.0) + 195888693.0*pow(c0, 10)*(329.0*pow(c1, 4) - 470.0*pow(c1, 2) + 165.0) + 3781635.0*pow(c0, 8)*(6909.0*pow(c1, 6) - 15651.0*pow(c1, 4) + 11655.0*pow(c1, 2) - 2849.0) + 15785.0*pow(c0, 6)*(297087.0*pow(c1, 8) - 945828.0*pow(c1, 6) + 1116882.0*pow(c1, 4) - 579124.0*pow(c1, 2) + 111111.0) + 1155.0*pow(c0, 4)*(297087.0*pow(c1, 10) - 1242915.0*pow(c1, 8) + 2062710.0*pow(c1, 6) - 1696006.0*pow(c1, 4) + 690235.0*pow(c1, 2) - 111111.0) + 1155.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 3)*(6909.0*pow(c1, 6) - 15651.0*pow(c1, 4) + 11655.0*pow(c1, 2) - 2849.0) + 77.0*pow(pow(c1, 2) - 1.0, 5)*(329.0*pow(c1, 4) - 470.0*pow(c1, 2) + 165.0)); case 28: return 8.45508658008658e-7*c0*pow(c1, 13)*(28092447691.0*pow(c0, 14) + 5257944755.0*pow(c0, 12)*(17.0*pow(c1, 2) - 11.0) + 278992987.0*pow(c0, 10)*(357.0*pow(c1, 4) - 490.0*pow(c1, 2) + 165.0) + 8823815.0*pow(c0, 8)*(5593.0*pow(c1, 6) - 12173.0*pow(c1, 4) + 8695.0*pow(c1, 2) - 2035.0) + 96965.0*pow(c0, 6)*(117453.0*pow(c1, 8) - 359268.0*pow(c1, 6) + 406926.0*pow(c1, 4) - 202020.0*pow(c1, 2) + 37037.0) + 77.0*pow(c0, 4)*(15151437.0*pow(c1, 10) - 60902835.0*pow(c1, 8) + 96947370.0*pow(c1, 6) - 76320270.0*pow(c1, 4) + 29680105.0*pow(c1, 2) - 4555551.0) + 385.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2)*(117453.0*pow(c1, 8) - 359268.0*pow(c1, 6) + 406926.0*pow(c1, 4) - 202020.0*pow(c1, 2) + 37037.0) + 77.0*pow(pow(c1, 2) - 1.0, 4)*(5593.0*pow(c1, 6) - 12173.0*pow(c1, 4) + 8695.0*pow(c1, 2) - 2035.0)); case 29: return 3.69910037878788e-7*pow(c1, 13)*(212699961089.0*pow(c0, 16) + 14593479320.0*pow(c0, 14)*(53.0*pow(c1, 2) - 33.0) + 1115971948.0*pow(c0, 12)*(901.0*pow(c1, 4) - 1190.0*pow(c1, 2) + 385.0) + 94792984.0*pow(c0, 10)*(6307.0*pow(c1, 6) - 13209.0*pow(c1, 4) + 9065.0*pow(c1, 2) - 2035.0) + 581790.0*pow(c0, 8)*(296429.0*pow(c1, 8) - 872508.0*pow(c1, 6) + 949494.0*pow(c1, 4) - 452140.0*pow(c1, 2) + 79365.0) + 3784.0*pow(c0, 6)*(6225009.0*pow(c1, 10) - 24077865.0*pow(c1, 8) + 36824970.0*pow(c1, 6) - 27806610.0*pow(c1, 4) + 10353525.0*pow(c1, 2) - 1518517.0) + 220.0*pow(c0, 4)*(6225009.0*pow(c1, 12) - 30302874.0*pow(c1, 10) + 60902835.0*pow(c1, 8) - 64631580.0*pow(c1, 6) + 38160135.0*pow(c1, 4) - 11872042.0*pow(c1, 2) + 1518517.0) + 88.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 3)*(296429.0*pow(c1, 8) - 872508.0*pow(c1, 6) + 949494.0*pow(c1, 4) - 452140.0*pow(c1, 2) + 79365.0) + 11.0*pow(pow(c1, 2) - 1.0, 5)*(6307.0*pow(c1, 6) - 13209.0*pow(c1, 4) + 9065.0*pow(c1, 2) - 2035.0)); default: return 0.; } case 18: switch(j) { case 14: return 9.98740338747754e-8*pow(c1, 14); case 15: return 2.49685084686939e-6*c0*pow(c1, 14); case 16: return 3.56692978124198e-8*pow(c1, 14)*(945.0*pow(c0, 2) + 27.0*pow(c1, 2) - 35.0); case 17: return 3.21023680311778e-7*c0*pow(c1, 14)*(1015.0*pow(c0, 2) + 87.0*pow(c1, 2) - 105.0); case 18: return 2.16907892102553e-9*pow(c1, 14)*(1164205.0*pow(c0, 4) + 6438.0*pow(c0, 2)*(31.0*pow(c1, 2) - 35.0) + 2697.0*pow(c1, 4) - 6438.0*pow(c1, 2) + 3885.0); case 19: return 6.29032887097403e-8*c0*pow(c1, 14)*(264957.0*pow(c0, 4) + 2294.0*pow(c0, 2)*(33.0*pow(c1, 2) - 35.0) + 3069.0*pow(c1, 4) - 6882.0*pow(c1, 2) + 3885.0); case 20: return 2.41935725806694e-9*pow(c1, 14)*(40185145.0*pow(c0, 6) + 17222205.0*pow(c0, 4)*(pow(c1, 2) - 1.0) + 1209.0*pow(c0, 2)*(1155.0*pow(c1, 4) - 2442.0*pow(c1, 2) + 1295.0) + 11935.0*pow(c1, 6) - 39897.0*pow(c1, 4) + 44733.0*pow(c1, 2) - 16835.0); case 21: return 7.5000075000075e-8*c0*pow(c1, 14)*(6851845.0*pow(c0, 6) + 111111.0*pow(c0, 4)*(37.0*pow(c1, 2) - 35.0) + 555555.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2) + 14245.0*pow(c1, 6) - 45045.0*pow(c1, 4) + 47619.0*pow(c1, 2) - 16835.0); case 22: return 2.28658765244131e-10*pow(c1, 14)*(10956100155.0*pow(c0, 8) + 224740516.0*pow(c0, 6)*(39.0*pow(c1, 2) - 35.0) + 45555510.0*pow(c0, 4)*(39.0*pow(c1, 4) - 74.0*pow(c1, 2) + 35.0) + 91111020.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 3) + 555555.0*pow(c1, 8) - 2336180.0*pow(c1, 6) + 3693690.0*pow(c1, 4) - 2603172.0*pow(c1, 2) + 690235.0); case 23: return 1.65343915343915e-5*c0*pow(c1, 14)*(690235.0*pow(c0, 8) + 17316.0*pow(c0, 6)*(41.0*pow(c1, 2) - 35.0) + 126.0*pow(c0, 4)*(1599.0*pow(c1, 4) - 2886.0*pow(c1, 2) + 1295.0) + 420.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2)*(41.0*pow(c1, 2) - 35.0) + 315.0*pow(pow(c1, 2) - 1.0, 4)); case 24: return 8.26719576719577e-6*pow(c1, 14)*(5936021.0*pow(c0, 10) + 177489.0*pow(c0, 8)*(43.0*pow(c1, 2) - 35.0) + 1638.0*pow(c0, 6)*(1763.0*pow(c1, 4) - 3034.0*pow(c1, 2) + 1295.0) + 210.0*pow(c0, 4)*(1763.0*pow(c1, 6) - 4797.0*pow(c1, 4) + 4329.0*pow(c1, 2) - 1295.0) + 315.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 3)*(43.0*pow(c1, 2) - 35.0) + 63.0*pow(pow(c1, 2) - 1.0, 5)); case 25: return 7.51563251563252e-7*c0*pow(c1, 14)*(267120945.0*pow(c0, 10) + 46640165.0*pow(c0, 8)*(9.0*pow(c1, 2) - 7.0) + 105534.0*pow(c0, 6)*(1935.0*pow(c1, 4) - 3182.0*pow(c1, 2) + 1295.0) + 1386.0*pow(c0, 4)*(26445.0*pow(c1, 6) - 68757.0*pow(c1, 4) + 59163.0*pow(c1, 2) - 16835.0) + 1155.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2)*(1935.0*pow(c1, 4) - 3182.0*pow(c1, 2) + 1295.0) + 3465.0*pow(pow(c1, 2) - 1.0, 4)*(9.0*pow(c1, 2) - 7.0)); case 26: return 5.63672438672439e-7*pow(c1, 14)*(1394964935.0*pow(c0, 12) + 55968198.0*pow(c0, 10)*(47.0*pow(c1, 2) - 35.0) + 3781635.0*pow(c0, 8)*(423.0*pow(c1, 4) - 666.0*pow(c1, 2) + 259.0) + 12628.0*pow(c0, 6)*(30315.0*pow(c1, 6) - 75465.0*pow(c1, 4) + 62049.0*pow(c1, 2) - 16835.0) + 1155.0*pow(c0, 4)*(30315.0*pow(c1, 8) - 105780.0*pow(c1, 6) + 137514.0*pow(c1, 4) - 78884.0*pow(c1, 2) + 16835.0) + 2310.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 3)*(423.0*pow(c1, 4) - 666.0*pow(c1, 2) + 259.0) + 77.0*pow(pow(c1, 2) - 1.0, 5)*(47.0*pow(c1, 2) - 35.0)); case 27: return 5.63672438672439e-7*c0*pow(c1, 14)*(5257944755.0*pow(c0, 12) + 1673957922.0*pow(c0, 10)*(7.0*pow(c1, 2) - 5.0) + 3781635.0*pow(c0, 8)*(2303.0*pow(c1, 4) - 3478.0*pow(c1, 2) + 1295.0) + 387860.0*pow(c0, 6)*(6909.0*pow(c1, 6) - 16497.0*pow(c1, 4) + 12987.0*pow(c1, 2) - 3367.0) + 231.0*pow(c0, 4)*(1485435.0*pow(c1, 8) - 4971660.0*pow(c1, 6) + 6188130.0*pow(c1, 4) - 3392012.0*pow(c1, 2) + 690235.0) + 2310.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2)*(6909.0*pow(c1, 6) - 16497.0*pow(c1, 4) + 12987.0*pow(c1, 2) - 3367.0) + 77.0*pow(pow(c1, 2) - 1.0, 4)*(2303.0*pow(c1, 4) - 3478.0*pow(c1, 2) + 1295.0)); case 28: return 2.81836219336219e-7*pow(c1, 14)*(38307883215.0*pow(c0, 14) + 1952950909.0*pow(c0, 12)*(51.0*pow(c1, 2) - 35.0) + 248831583.0*pow(c0, 10)*(357.0*pow(c1, 4) - 518.0*pow(c1, 2) + 185.0) + 872685.0*pow(c0, 8)*(39151.0*pow(c1, 6) - 89817.0*pow(c1, 4) + 67821.0*pow(c1, 2) - 16835.0) + 16555.0*pow(c0, 6)*(352359.0*pow(c1, 8) - 1133076.0*pow(c1, 6) + 1352754.0*pow(c1, 4) - 709956.0*pow(c1, 2) + 138047.0) + 1155.0*pow(c0, 4)*(352359.0*pow(c1, 10) - 1485435.0*pow(c1, 8) + 2485830.0*pow(c1, 6) - 2062710.0*pow(c1, 4) + 848003.0*pow(c1, 2) - 138047.0) + 231.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 3)*(39151.0*pow(c1, 6) - 89817.0*pow(c1, 4) + 67821.0*pow(c1, 2) - 16835.0) + 77.0*pow(pow(c1, 2) - 1.0, 5)*(357.0*pow(c1, 4) - 518.0*pow(c1, 2) + 185.0)); case 29: return 2.81836219336219e-7*c0*pow(c1, 14)*(135354520693.0*pow(c0, 14) + 7661576643.0*pow(c0, 12)*(53.0*pow(c1, 2) - 35.0) + 158347371.0*pow(c0, 10)*(2703.0*pow(c1, 4) - 3774.0*pow(c1, 2) + 1295.0) + 31901485.0*pow(c0, 8)*(6307.0*pow(c1, 6) - 13923.0*pow(c1, 4) + 10101.0*pow(c1, 2) - 2405.0) + 21285.0*pow(c0, 6)*(2075003.0*pow(c1, 8) - 6420764.0*pow(c1, 6) + 7364994.0*pow(c1, 4) - 3707548.0*pow(c1, 2) + 690235.0) + 231.0*pow(c0, 4)*(18675027.0*pow(c1, 10) - 75757185.0*pow(c1, 8) + 121805670.0*pow(c1, 6) - 96947370.0*pow(c1, 4) + 38160135.0*pow(c1, 2) - 5936021.0) + 77.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2)*(2075003.0*pow(c1, 8) - 6420764.0*pow(c1, 6) + 7364994.0*pow(c1, 4) - 3707548.0*pow(c1, 2) + 690235.0) + 231.0*pow(pow(c1, 2) - 1.0, 4)*(6307.0*pow(c1, 6) - 13923.0*pow(c1, 4) + 10101.0*pow(c1, 2) - 2405.0)); default: return 0.; } case 19: switch(j) { case 15: return 7.13385956248396e-8*pow(c1, 15); case 16: return 1.92614208187067e-6*c0*pow(c1, 15); case 17: return 2.60289470523063e-8*pow(c1, 15)*(1073.0*pow(c0, 2) + 29.0*pow(c1, 2) - 37.0); case 18: return 2.51613154838961e-7*c0*pow(c1, 15)*(1147.0*pow(c0, 2) + 93.0*pow(c1, 2) - 111.0); case 19: return 1.45161435484016e-8*pow(c1, 15)*(164021.0*pow(c0, 4) + 806.0*pow(c0, 2)*(33.0*pow(c1, 2) - 37.0) + 341.0*pow(c1, 4) - 806.0*pow(c1, 2) + 481.0); case 20: return 4.5000045000045e-7*c0*pow(c1, 15)*(37037.0*pow(c0, 4) + 286.0*pow(c0, 2)*(35.0*pow(c1, 2) - 37.0) + 385.0*pow(c1, 4) - 858.0*pow(c1, 2) + 481.0); case 21: return 1.82927012195305e-9*pow(c1, 15)*(56185129.0*pow(c0, 6) + 22777755.0*pow(c0, 4)*(pow(c1, 2) - 1.0) + 1353.0*pow(c0, 2)*(1295.0*pow(c1, 4) - 2730.0*pow(c1, 2) + 1443.0) + 14245.0*pow(c1, 6) - 47355.0*pow(c1, 4) + 52767.0*pow(c1, 2) - 19721.0); case 22: return 6.03659140244506e-8*c0*pow(c1, 15)*(9485801.0*pow(c0, 6) + 138047.0*pow(c0, 4)*(39.0*pow(c1, 2) - 37.0) + 690235.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2) + 16835.0*pow(c1, 6) - 53095.0*pow(c1, 4) + 55965.0*pow(c1, 2) - 19721.0); case 23: return 1.75482308210612e-10*pow(c1, 15)*(16723467163.0*pow(c0, 8) + 308673092.0*pow(c0, 6)*(41.0*pow(c1, 2) - 37.0) + 59360210.0*pow(c0, 4)*(41.0*pow(c1, 4) - 78.0*pow(c1, 2) + 37.0) + 118720420.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 3) + 690235.0*pow(c1, 8) - 2895620.0*pow(c1, 6) + 4566170.0*pow(c1, 4) - 3208660.0*pow(c1, 2) + 848003.0); case 24: return 1.65343915343915e-5*c0*pow(c1, 15)*(848003.0*pow(c0, 8) + 19188.0*pow(c0, 6)*(43.0*pow(c1, 2) - 37.0) + 126.0*pow(c0, 4)*(1763.0*pow(c1, 4) - 3198.0*pow(c1, 2) + 1443.0) + 420.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2)*(43.0*pow(c1, 2) - 37.0) + 315.0*pow(pow(c1, 2) - 1.0, 4)); case 25: return 7.44047619047619e-5*pow(c1, 15)*(848003.0*pow(c0, 10) + 22919.0*pow(c0, 8)*(45.0*pow(c1, 2) - 37.0) + 574.0*pow(c0, 6)*(645.0*pow(c1, 4) - 1118.0*pow(c1, 2) + 481.0) + 70.0*pow(c0, 4)*(645.0*pow(c1, 6) - 1763.0*pow(c1, 4) + 1599.0*pow(c1, 2) - 481.0) + 35.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 3)*(45.0*pow(c1, 2) - 37.0) + 7.0*pow(pow(c1, 2) - 1.0, 5)); case 26: return 6.76406926406926e-6*c0*pow(c1, 15)*(39856141.0*pow(c0, 10) + 1260545.0*pow(c0, 8)*(47.0*pow(c1, 2) - 37.0) + 38786.0*pow(c0, 6)*(705.0*pow(c1, 4) - 1170.0*pow(c1, 2) + 481.0) + 154.0*pow(c0, 4)*(30315.0*pow(c1, 6) - 79335.0*pow(c1, 4) + 68757.0*pow(c1, 2) - 19721.0) + 385.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2)*(705.0*pow(c1, 4) - 1170.0*pow(c1, 2) + 481.0) + 77.0*pow(pow(c1, 2) - 1.0, 4)*(47.0*pow(c1, 2) - 37.0)); case 27: return 5.63672438672439e-7*pow(c1, 15)*(1952950909.0*pow(c0, 12) + 71094738.0*pow(c0, 10)*(49.0*pow(c1, 2) - 37.0) + 872685.0*pow(c0, 8)*(2303.0*pow(c1, 4) - 3666.0*pow(c1, 2) + 1443.0) + 13244.0*pow(c0, 6)*(34545.0*pow(c1, 6) - 86715.0*pow(c1, 4) + 71955.0*pow(c1, 2) - 19721.0) + 1155.0*pow(c0, 4)*(34545.0*pow(c1, 8) - 121260.0*pow(c1, 6) + 158670.0*pow(c1, 4) - 91676.0*pow(c1, 2) + 19721.0) + 462.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 3)*(2303.0*pow(c1, 4) - 3666.0*pow(c1, 2) + 1443.0) + 77.0*pow(pow(c1, 2) - 1.0, 5)*(49.0*pow(c1, 2) - 37.0)); case 28: return 1.69101731601732e-6*c0*pow(c1, 15)*(2553858881.0*pow(c0, 12) + 105564914.0*pow(c0, 10)*(51.0*pow(c1, 2) - 37.0) + 4557355.0*pow(c0, 8)*(833.0*pow(c1, 4) - 1274.0*pow(c1, 2) + 481.0) + 28380.0*pow(c0, 6)*(39151.0*pow(c1, 6) - 94423.0*pow(c1, 4) + 75153.0*pow(c1, 2) - 19721.0) + 77.0*pow(c0, 4)*(1761795.0*pow(c1, 8) - 5941740.0*pow(c1, 6) + 7457490.0*pow(c1, 4) - 4125420.0*pow(c1, 2) + 848003.0) + 154.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2)*(39151.0*pow(c1, 6) - 94423.0*pow(c1, 4) + 75153.0*pow(c1, 2) - 19721.0) + 77.0*pow(pow(c1, 2) - 1.0, 4)*(833.0*pow(c1, 4) - 1274.0*pow(c1, 2) + 481.0)); case 29: return 8.45508658008658e-7*pow(c1, 15)*(19336360099.0*pow(c0, 14) + 897301769.0*pow(c0, 12)*(53.0*pow(c1, 2) - 37.0) + 44662079.0*pow(c0, 10)*(901.0*pow(c1, 4) - 1326.0*pow(c1, 2) + 481.0) + 333465.0*pow(c0, 8)*(44149.0*pow(c1, 6) - 102459.0*pow(c1, 4) + 78351.0*pow(c1, 2) - 19721.0) + 1155.0*pow(c0, 6)*(2075003.0*pow(c1, 8) - 6733972.0*pow(c1, 6) + 8120378.0*pow(c1, 4) - 4308772.0*pow(c1, 2) + 848003.0) + 77.0*pow(c0, 4)*(2075003.0*pow(c1, 10) - 8808975.0*pow(c1, 8) + 14854350.0*pow(c1, 6) - 12429150.0*pow(c1, 4) + 5156775.0*pow(c1, 2) - 848003.0) + 77.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 3)*(44149.0*pow(c1, 6) - 102459.0*pow(c1, 4) + 78351.0*pow(c1, 2) - 19721.0) + 11.0*pow(pow(c1, 2) - 1.0, 5)*(901.0*pow(c1, 4) - 1326.0*pow(c1, 2) + 481.0)); default: return 0.; } case 20: switch(j) { case 16: return 5.20578941046127e-8*pow(c1, 16); case 17: return 1.50967892903377e-6*c0*pow(c1, 16); case 18: return 1.93548580645355e-8*pow(c1, 16)*(1209.0*pow(c0, 2) + 31.0*pow(c1, 2) - 39.0); case 19: return 1.8000018000018e-6*c0*pow(c1, 16)*(143.0*pow(c0, 2) + 11.0*pow(c1, 2) - 13.0); case 20: return 1.09756207317183e-8*pow(c1, 16)*(205205.0*pow(c0, 4) + 902.0*pow(c0, 2)*(35.0*pow(c1, 2) - 39.0) + 385.0*pow(c1, 4) - 902.0*pow(c1, 2) + 533.0); case 21: return 4.02439426829671e-8*c0*pow(c1, 16)*(414141.0*pow(c0, 4) + 2870.0*pow(c0, 2)*(37.0*pow(c1, 2) - 39.0) + 3885.0*pow(c1, 4) - 8610.0*pow(c1, 2) + 4797.0); case 22: return 1.4038584656849e-9*pow(c1, 16)*(77168273.0*pow(c0, 6) + 29680105.0*pow(c0, 4)*(pow(c1, 2) - 1.0) + 1505.0*pow(c0, 2)*(1443.0*pow(c1, 4) - 3034.0*pow(c1, 2) + 1599.0) + 16835.0*pow(c1, 6) - 55685.0*pow(c1, 4) + 61705.0*pow(c1, 2) - 22919.0); case 23: return 1.4038584656849e-9*c0*pow(c1, 16)*(451985599.0*pow(c0, 6) + 5936021.0*pow(c0, 4)*(41.0*pow(c1, 2) - 39.0) + 29680105.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2) + 690235.0*pow(c1, 6) - 2171715.0*pow(c1, 4) + 2283085.0*pow(c1, 2) - 802165.0); case 24: return 1.94980342456236e-11*pow(c1, 16)*(174918426813.0*pow(c0, 8) + 2920522332.0*pow(c0, 6)*(43.0*pow(c1, 2) - 39.0) + 534241890.0*pow(c0, 4)*(43.0*pow(c1, 4) - 82.0*pow(c1, 2) + 39.0) + 1068483780.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 3) + 5936021.0*pow(c1, 8) - 24848460.0*pow(c1, 6) + 39090870.0*pow(c1, 4) - 27397020.0*pow(c1, 2) + 7219485.0); case 25: return 0.000148809523809524*c0*pow(c1, 16)*(114595.0*pow(c0, 8) + 7052.0*pow(c0, 6)*(15.0*pow(c1, 2) - 13.0) + 14.0*pow(c0, 4)*(1935.0*pow(c1, 4) - 3526.0*pow(c1, 2) + 1599.0) + 140.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2)*(15.0*pow(c1, 2) - 13.0) + 35.0*pow(pow(c1, 2) - 1.0, 4)); case 26: return 7.44047619047619e-5*pow(c1, 16)*(1077193.0*pow(c0, 10) + 26445.0*pow(c0, 8)*(47.0*pow(c1, 2) - 39.0) + 602.0*pow(c0, 6)*(705.0*pow(c1, 4) - 1230.0*pow(c1, 2) + 533.0) + 70.0*pow(c0, 4)*(705.0*pow(c1, 6) - 1935.0*pow(c1, 4) + 1763.0*pow(c1, 2) - 533.0) + 35.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 3)*(47.0*pow(c1, 2) - 39.0) + 7.0*pow(pow(c1, 2) - 1.0, 5)); case 27: return 2.25468975468975e-6*c0*pow(c1, 16)*(158347371.0*pow(c0, 10) + 4557355.0*pow(c0, 8)*(49.0*pow(c1, 2) - 39.0) + 42570.0*pow(c0, 6)*(2303.0*pow(c1, 4) - 3854.0*pow(c1, 2) + 1599.0) + 462.0*pow(c0, 4)*(34545.0*pow(c1, 6) - 90945.0*pow(c1, 4) + 79335.0*pow(c1, 2) - 22919.0) + 385.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2)*(2303.0*pow(c1, 4) - 3854.0*pow(c1, 2) + 1599.0) + 231.0*pow(pow(c1, 2) - 1.0, 4)*(49.0*pow(c1, 2) - 39.0)); case 28: return 1.69101731601732e-6*pow(c1, 16)*(897301769.0*pow(c0, 12) + 89324158.0*pow(c0, 10)*(17.0*pow(c1, 2) - 13.0) + 333465.0*pow(c0, 8)*(2499.0*pow(c1, 4) - 4018.0*pow(c1, 2) + 1599.0) + 4620.0*pow(c0, 6)*(39151.0*pow(c1, 6) - 99029.0*pow(c1, 4) + 82861.0*pow(c1, 2) - 22919.0) + 385.0*pow(c0, 4)*(39151.0*pow(c1, 8) - 138180.0*pow(c1, 6) + 181890.0*pow(c1, 4) - 105780.0*pow(c1, 2) + 22919.0) + 154.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 3)*(2499.0*pow(c1, 4) - 4018.0*pow(c1, 2) + 1599.0) + 77.0*pow(pow(c1, 2) - 1.0, 5)*(17.0*pow(c1, 2) - 13.0)); case 29: return 1.69101731601732e-6*c0*pow(c1, 16)*(3658230289.0*pow(c0, 12) + 138046426.0*pow(c0, 10)*(53.0*pow(c1, 2) - 39.0) + 5446595.0*pow(c0, 8)*(901.0*pow(c1, 4) - 1394.0*pow(c1, 2) + 533.0) + 31020.0*pow(c0, 6)*(44149.0*pow(c1, 6) - 107457.0*pow(c1, 4) + 86387.0*pow(c1, 2) - 22919.0) + 77.0*pow(c0, 4)*(2075003.0*pow(c1, 8) - 7047180.0*pow(c1, 6) + 8912610.0*pow(c1, 4) - 4971660.0*pow(c1, 2) + 1031355.0) + 154.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2)*(44149.0*pow(c1, 6) - 107457.0*pow(c1, 4) + 86387.0*pow(c1, 2) - 22919.0) + 77.0*pow(pow(c1, 2) - 1.0, 4)*(901.0*pow(c1, 4) - 1394.0*pow(c1, 2) + 533.0)); default: return 0.; } case 21: switch(j) { case 17: return 3.8709716129071e-8*pow(c1, 17); case 18: return 1.2000012000012e-6*c0*pow(c1, 17); case 19: return 1.46341609756244e-8*pow(c1, 17)*(1353.0*pow(c0, 2) + 33.0*pow(c1, 2) - 41.0); case 20: return 1.60975770731868e-7*c0*pow(c1, 17)*(1435.0*pow(c0, 2) + 105.0*pow(c1, 2) - 123.0); case 21: return 9.35905643789932e-10*pow(c1, 17)*(2283085.0*pow(c0, 4) + 9030.0*pow(c0, 2)*(37.0*pow(c1, 2) - 41.0) + 3885.0*pow(c1, 4) - 9030.0*pow(c1, 2) + 5289.0); case 22: return 6.55133950652952e-9*c0*pow(c1, 17)*(2544009.0*pow(c0, 4) + 15910.0*pow(c0, 2)*(39.0*pow(c1, 2) - 41.0) + 21645.0*pow(c1, 4) - 47730.0*pow(c1, 2) + 26445.0); case 23: return 1.09188991775492e-9*pow(c1, 17)*(104304369.0*pow(c0, 6) + 38160135.0*pow(c0, 4)*(pow(c1, 2) - 1.0) + 1665.0*pow(c0, 2)*(1599.0*pow(c1, 4) - 3354.0*pow(c1, 2) + 1763.0) + 19721.0*pow(c1, 6) - 64935.0*pow(c1, 4) + 71595.0*pow(c1, 2) - 26445.0); case 24: return 5.77141813670458e-9*c0*pow(c1, 17)*(121218591.0*pow(c0, 6) + 1443897.0*pow(c0, 4)*(43.0*pow(c1, 2) - 41.0) + 7219485.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2) + 160433.0*pow(c1, 6) - 503685.0*pow(c1, 4) + 528255.0*pow(c1, 2) - 185115.0); case 25: return 1.53495163210228e-11*pow(c1, 17)*(256377319965.0*pow(c0, 8) + 3890821116.0*pow(c0, 6)*(45.0*pow(c1, 2) - 41.0) + 678631590.0*pow(c0, 4)*(45.0*pow(c1, 4) - 86.0*pow(c1, 2) + 41.0) + 1357263180.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 3) + 7219485.0*pow(c1, 8) - 30161404.0*pow(c1, 6) + 47346390.0*pow(c1, 4) - 33103980.0*pow(c1, 2) + 8700405.0); case 26: return 4.96031746031746e-5*c0*pow(c1, 17)*(414305.0*pow(c0, 8) + 7740.0*pow(c0, 6)*(47.0*pow(c1, 2) - 41.0) + 42.0*pow(c0, 4)*(2115.0*pow(c1, 4) - 3870.0*pow(c1, 2) + 1763.0) + 140.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2)*(47.0*pow(c1, 2) - 41.0) + 105.0*pow(pow(c1, 2) - 1.0, 4)); case 27: return 2.48015873015873e-5*pow(c1, 17)*(4060189.0*pow(c0, 10) + 90945.0*pow(c0, 8)*(49.0*pow(c1, 2) - 41.0) + 630.0*pow(c0, 6)*(2303.0*pow(c1, 4) - 4042.0*pow(c1, 2) + 1763.0) + 70.0*pow(c0, 4)*(2303.0*pow(c1, 6) - 6345.0*pow(c1, 4) + 5805.0*pow(c1, 2) - 1763.0) + 105.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 3)*(49.0*pow(c1, 2) - 41.0) + 21.0*pow(pow(c1, 2) - 1.0, 5)); case 28: return 2.25468975468975e-6*c0*pow(c1, 17)*(207069639.0*pow(c0, 10) + 5446595.0*pow(c0, 8)*(51.0*pow(c1, 2) - 41.0) + 46530.0*pow(c0, 6)*(2499.0*pow(c1, 4) - 4214.0*pow(c1, 2) + 1763.0) + 462.0*pow(c0, 4)*(39151.0*pow(c1, 6) - 103635.0*pow(c1, 4) + 90945.0*pow(c1, 2) - 26445.0) + 385.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2)*(2499.0*pow(c1, 4) - 4214.0*pow(c1, 2) + 1763.0) + 231.0*pow(pow(c1, 2) - 1.0, 4)*(51.0*pow(c1, 2) - 41.0)); case 29: return 3.94570707070707e-6*pow(c1, 17)*(522604327.0*pow(c0, 12) + 15872934.0*pow(c0, 10)*(53.0*pow(c1, 2) - 41.0) + 162855.0*pow(c0, 8)*(2703.0*pow(c1, 4) - 4386.0*pow(c1, 2) + 1763.0) + 2068.0*pow(c0, 6)*(44149.0*pow(c1, 6) - 112455.0*pow(c1, 4) + 94815.0*pow(c1, 2) - 26445.0) + 165.0*pow(c0, 4)*(44149.0*pow(c1, 8) - 156604.0*pow(c1, 6) + 207270.0*pow(c1, 4) - 121260.0*pow(c1, 2) + 26445.0) + 66.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 3)*(2703.0*pow(c1, 4) - 4386.0*pow(c1, 2) + 1763.0) + 11.0*pow(pow(c1, 2) - 1.0, 5)*(53.0*pow(c1, 2) - 41.0)); default: return 0.; } case 22: switch(j) { case 18: return 2.92683219512488e-8*pow(c1, 18); case 19: return 9.6585462439121e-7*c0*pow(c1, 18); case 20: return 1.12308677254792e-8*pow(c1, 18)*(1505.0*pow(c0, 2) + 35.0*pow(c1, 2) - 43.0); case 21: return 1.3102679013059e-7*c0*pow(c1, 18)*(1591.0*pow(c0, 2) + 111.0*pow(c1, 2) - 129.0); case 22: return 6.55133950652952e-9*pow(c1, 18)*(310245.0*pow(c0, 4) + 1110.0*pow(c0, 2)*(39.0*pow(c1, 2) - 43.0) + 481.0*pow(c1, 4) - 1110.0*pow(c1, 2) + 645.0); case 23: return 2.42399561741592e-7*c0*pow(c1, 18)*(68757.0*pow(c0, 4) + 390.0*pow(c0, 2)*(41.0*pow(c1, 2) - 43.0) + 533.0*pow(c1, 4) - 1170.0*pow(c1, 2) + 645.0); case 24: return 8.59572913977278e-10*pow(c1, 18)*(138957897.0*pow(c0, 6) + 48473685.0*pow(c0, 4)*(pow(c1, 2) - 1.0) + 1833.0*pow(c0, 2)*(1763.0*pow(c1, 4) - 3690.0*pow(c1, 2) + 1935.0) + 22919.0*pow(c1, 6) - 75153.0*pow(c1, 4) + 82485.0*pow(c1, 2) - 30315.0); case 25: return 4.78904909215912e-9*c0*pow(c1, 18)*(160336035.0*pow(c0, 6) + 1740081.0*pow(c0, 4)*(45.0*pow(c1, 2) - 43.0) + 8700405.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2) + 185115.0*pow(c1, 6) - 580027.0*pow(c1, 4) + 607005.0*pow(c1, 2) - 212205.0); case 26: return 8.55187337885557e-11*pow(c1, 18)*(52750555515.0*pow(c0, 8) + 730834020.0*pow(c0, 6)*(47.0*pow(c1, 2) - 43.0) + 121805670.0*pow(c0, 4)*(47.0*pow(c1, 4) - 90.0*pow(c1, 2) + 43.0) + 243611340.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 3) + 1242915.0*pow(c1, 8) - 5183220.0*pow(c1, 6) + 8120378.0*pow(c1, 4) - 5665380.0*pow(c1, 2) + 1485435.0); case 27: return 4.96031746031746e-5*c0*pow(c1, 18)*(495145.0*pow(c0, 8) + 8460.0*pow(c0, 6)*(49.0*pow(c1, 2) - 43.0) + 42.0*pow(c0, 4)*(2303.0*pow(c1, 4) - 4230.0*pow(c1, 2) + 1935.0) + 140.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2)*(49.0*pow(c1, 2) - 43.0) + 105.0*pow(pow(c1, 2) - 1.0, 4)); case 28: return 0.000520833333333333*pow(c1, 18)*(240499.0*pow(c0, 10) + 4935.0*pow(c0, 8)*(51.0*pow(c1, 2) - 43.0) + 94.0*pow(c0, 6)*(833.0*pow(c1, 4) - 1470.0*pow(c1, 2) + 645.0) + 10.0*pow(c0, 4)*(833.0*pow(c1, 6) - 2303.0*pow(c1, 4) + 2115.0*pow(c1, 2) - 645.0) + 5.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 3)*(51.0*pow(c1, 2) - 43.0) + pow(pow(c1, 2) - 1.0, 5)); case 29: return 4.73484848484848e-5*c0*pow(c1, 18)*(12746447.0*pow(c0, 10) + 307615.0*pow(c0, 8)*(53.0*pow(c1, 2) - 43.0) + 7238.0*pow(c0, 6)*(901.0*pow(c1, 4) - 1530.0*pow(c1, 2) + 645.0) + 22.0*pow(c0, 4)*(44149.0*pow(c1, 6) - 117453.0*pow(c1, 4) + 103635.0*pow(c1, 2) - 30315.0) + 55.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2)*(901.0*pow(c1, 4) - 1530.0*pow(c1, 2) + 645.0) + 11.0*pow(pow(c1, 2) - 1.0, 4)*(53.0*pow(c1, 2) - 43.0)); default: return 0.; } case 23: switch(j) { case 19: return 2.24617354509584e-8*pow(c1, 19); case 20: return 7.86160740783543e-7*c0*pow(c1, 19); case 21: return 8.73511934203937e-9*pow(c1, 19)*(1665.0*pow(c0, 2) + 37.0*pow(c1, 2) - 45.0); case 22: return 9.6959824696637e-7*c0*pow(c1, 19)*(195.0*pow(c0, 2) + 13.0*pow(c1, 2) - 15.0); case 23: return 5.15743748386367e-9*pow(c1, 19)*(375765.0*pow(c0, 4) + 1222.0*pow(c0, 2)*(41.0*pow(c1, 2) - 45.0) + 533.0*pow(c1, 4) - 1222.0*pow(c1, 2) + 705.0); case 24: return 2.23488957634092e-8*c0*pow(c1, 19)*(745749.0*pow(c0, 4) + 3854.0*pow(c0, 2)*(43.0*pow(c1, 2) - 45.0) + 5289.0*pow(c1, 4) - 11562.0*pow(c1, 2) + 6345.0); case 25: return 6.84149870308446e-10*pow(c1, 19)*(182708505.0*pow(c0, 6) + 60902835.0*pow(c0, 4)*(pow(c1, 2) - 1.0) + 2009.0*pow(c0, 2)*(1935.0*pow(c1, 4) - 4042.0*pow(c1, 2) + 2115.0) + 26445.0*pow(c1, 6) - 86387.0*pow(c1, 4) + 94423.0*pow(c1, 2) - 34545.0); case 26: return 2.80501446826463e-8*c0*pow(c1, 19)*(29920905.0*pow(c0, 6) + 297087.0*pow(c0, 4)*(47.0*pow(c1, 2) - 45.0) + 1485435.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2) + 30315.0*pow(c1, 6) - 94815.0*pow(c1, 4) + 99029.0*pow(c1, 2) - 34545.0); case 27: return 6.87503546143291e-11*pow(c1, 19)*(74772341595.0*pow(c0, 8) + 949490052.0*pow(c0, 6)*(49.0*pow(c1, 2) - 45.0) + 151514370.0*pow(c0, 4)*(49.0*pow(c1, 4) - 94.0*pow(c1, 2) + 45.0) + 303028740.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 3) + 1485435.0*pow(c1, 8) - 6184260.0*pow(c1, 6) + 9671130.0*pow(c1, 4) - 6733972.0*pow(c1, 2) + 1761795.0); case 28: return 0.00104166666666667*c0*pow(c1, 19)*(27965.0*pow(c0, 8) + 1316.0*pow(c0, 6)*(17.0*pow(c1, 2) - 15.0) + pow(c0, 4)*(4998.0*pow(c1, 4) - 9212.0*pow(c1, 2) + 4230.0) + 20.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2)*(17.0*pow(c1, 2) - 15.0) + 5.0*pow(pow(c1, 2) - 1.0, 4)); case 29: return 0.000520833333333333*pow(c1, 19)*(296429.0*pow(c0, 10) + 5593.0*pow(c0, 8)*(53.0*pow(c1, 2) - 45.0) + 98.0*pow(c0, 6)*(901.0*pow(c1, 4) - 1598.0*pow(c1, 2) + 705.0) + 10.0*pow(c0, 4)*(901.0*pow(c1, 6) - 2499.0*pow(c1, 4) + 2303.0*pow(c1, 2) - 705.0) + 5.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 3)*(53.0*pow(c1, 2) - 45.0) + pow(pow(c1, 2) - 1.0, 5)); default: return 0.; } case 24: switch(j) { case 20: return 1.74702386840787e-8*pow(c1, 20); case 21: return 6.46398831310913e-7*c0*pow(c1, 20); case 22: return 6.87658331181822e-9*pow(c1, 20)*(1833.0*pow(c0, 2) + 39.0*pow(c1, 2) - 47.0); case 23: return 8.93955830536369e-8*c0*pow(c1, 20)*(1927.0*pow(c0, 2) + 123.0*pow(c1, 2) - 141.0); case 24: return 4.56099913538964e-10*pow(c1, 20)*(4060189.0*pow(c0, 4) + 12054.0*pow(c0, 2)*(43.0*pow(c1, 2) - 47.0) + 5289.0*pow(c1, 4) - 12054.0*pow(c1, 2) + 6909.0); case 25: return 1.87000964550975e-8*c0*pow(c1, 20)*(891261.0*pow(c0, 4) + 4214.0*pow(c0, 2)*(45.0*pow(c1, 2) - 47.0) + 5805.0*pow(c1, 4) - 12642.0*pow(c1, 2) + 6909.0); case 26: return 5.50002836914633e-10*pow(c1, 20)*(237372513.0*pow(c0, 6) + 75757185.0*pow(c0, 4)*(pow(c1, 2) - 1.0) + 2193.0*pow(c0, 2)*(2115.0*pow(c1, 4) - 4410.0*pow(c1, 2) + 2303.0) + 30315.0*pow(c1, 6) - 98685.0*pow(c1, 4) + 107457.0*pow(c1, 2) - 39151.0); case 27: return 2.36501219873292e-8*c0*pow(c1, 20)*(38642037.0*pow(c0, 6) + 352359.0*pow(c0, 4)*(49.0*pow(c1, 2) - 47.0) + 1761795.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2) + 34545.0*pow(c1, 6) - 107865.0*pow(c1, 4) + 112455.0*pow(c1, 2) - 39151.0); case 28: return 5.57785895927576e-11*pow(c1, 20)*(104449426011.0*pow(c0, 8) + 1220101764.0*pow(c0, 6)*(51.0*pow(c1, 2) - 47.0) + 186750270.0*pow(c0, 4)*(51.0*pow(c1, 4) - 98.0*pow(c1, 2) + 47.0) + 373500540.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 3) + 1761795.0*pow(c1, 8) - 7323540.0*pow(c1, 6) + 11433690.0*pow(c1, 4) - 7946820.0*pow(c1, 2) + 2075003.0); case 29: return 0.000115740740740741*c0*pow(c1, 20)*(296429.0*pow(c0, 8) + 4284.0*pow(c0, 6)*(53.0*pow(c1, 2) - 47.0) + 18.0*pow(c0, 4)*(2703.0*pow(c1, 4) - 4998.0*pow(c1, 2) + 2303.0) + 60.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2)*(53.0*pow(c1, 2) - 47.0) + 45.0*pow(pow(c1, 2) - 1.0, 4)); default: return 0.; } case 25: switch(j) { case 21: return 1.37531666236364e-8*pow(c1, 21); case 22: return 5.36373498321821e-7*c0*pow(c1, 21); case 23: return 5.47319896246757e-9*pow(c1, 21)*(2009.0*pow(c0, 2) + 41.0*pow(c1, 2) - 49.0); case 24: return 7.48003858203901e-8*c0*pow(c1, 21)*(2107.0*pow(c0, 2) + 129.0*pow(c1, 2) - 147.0); case 25: return 3.3000170214878e-9*pow(c1, 21)*(537285.0*pow(c0, 4) + 1462.0*pow(c0, 2)*(45.0*pow(c1, 2) - 49.0) + 645.0*pow(c1, 4) - 1462.0*pow(c1, 2) + 833.0); case 26: return 1.41900731923975e-7*c0*pow(c1, 21)*(117453.0*pow(c0, 4) + 510.0*pow(c0, 2)*(47.0*pow(c1, 2) - 49.0) + 705.0*pow(c1, 4) - 1530.0*pow(c1, 2) + 833.0); case 27: return 4.46228716742061e-10*pow(c1, 21)*(305025441.0*pow(c0, 6) + 93375135.0*pow(c0, 4)*(pow(c1, 2) - 1.0) + 2385.0*pow(c0, 2)*(2303.0*pow(c1, 4) - 4794.0*pow(c1, 2) + 2499.0) + 34545.0*pow(c1, 6) - 112095.0*pow(c1, 4) + 121635.0*pow(c1, 2) - 44149.0); case 28: return 4.01605845067855e-9*c0*pow(c1, 21)*(246925357.0*pow(c0, 6) + 2075003.0*pow(c0, 4)*(51.0*pow(c1, 2) - 49.0) + 10375015.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2) + 195755.0*pow(c1, 6) - 610295.0*pow(c1, 4) + 635205.0*pow(c1, 2) - 220745.0); case 29: return 4.56370278486198e-11*pow(c1, 21)*(143957483131.0*pow(c0, 8) + 1552102244.0*pow(c0, 6)*(53.0*pow(c1, 2) - 49.0) + 228250330.0*pow(c0, 4)*(53.0*pow(c1, 4) - 102.0*pow(c1, 2) + 49.0) + 456500660.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 3) + 2075003.0*pow(c1, 8) - 8613220.0*pow(c1, 6) + 13426490.0*pow(c1, 4) - 9316340.0*pow(c1, 2) + 2428195.0); default: return 0.; } case 26: switch(j) { case 22: return 1.09463979249351e-8*pow(c1, 22); case 23: return 4.4880231492234e-7*c0*pow(c1, 22); case 24: return 4.40002269531706e-9*pow(c1, 22)*(2193.0*pow(c0, 2) + 43.0*pow(c1, 2) - 51.0); case 25: return 5.67602927695901e-7*c0*pow(c1, 22)*(255.0*pow(c0, 2) + 15.0*pow(c1, 2) - 17.0); case 26: return 2.67737230045236e-9*pow(c1, 22)*(635205.0*pow(c0, 4) + 1590.0*pow(c0, 2)*(47.0*pow(c1, 2) - 51.0) + 705.0*pow(c1, 4) - 1590.0*pow(c1, 2) + 901.0); case 27: return 0.0166666666666667*pow(c0, 5)*pow(c1, 22) + 6.66933440042684e-5*pow(c0, 3)*pow(c1, 22)*(49.0*pow(c1, 2) - 51.0) + c0*(9.24898261191269e-5*pow(c1, 26) - 0.000200080032012805*pow(c1, 24) + 0.000108554059921841*pow(c1, 22)); case 28: return 3.65096222788959e-10*pow(c1, 22)*(388025561.0*pow(c0, 6) + 114125165.0*pow(c0, 4)*(pow(c1, 2) - 1.0) + 2585.0*pow(c0, 2)*(2499.0*pow(c1, 4) - 5194.0*pow(c1, 2) + 2703.0) + 39151.0*pow(c1, 6) - 126665.0*pow(c1, 4) + 137005.0*pow(c1, 2) - 49555.0); case 29: return 1.71595224710811e-8*c0*pow(c1, 22)*(62508677.0*pow(c0, 6) + 485639.0*pow(c0, 4)*(53.0*pow(c1, 2) - 51.0) + 2428195.0*pow(c0, 2)*pow(pow(c1, 2) - 1.0, 2) + 44149.0*pow(c1, 6) - 137445.0*pow(c1, 4) + 142835.0*pow(c1, 2) - 49555.0); default: return 0.; } case 27: switch(j) { case 23: return 8.80004539063412e-9*pow(c1, 23); case 24: return 3.78401951797267e-7*c0*pow(c1, 23); case 25: return 3.56982973393648e-9*pow(c1, 23)*(2385.0*pow(c0, 2) + 45.0*pow(c1, 2) - 53.0); case 26: return 5.35474460090473e-8*c0*pow(c1, 23)*(2491.0*pow(c0, 2) + 141.0*pow(c1, 2) - 159.0); case 27: return 2.43397481859306e-10*pow(c1, 23)*(6713245.0*pow(c0, 4) + 15510.0*pow(c0, 2)*(49.0*pow(c1, 2) - 53.0) + 6909.0*pow(c1, 4) - 15510.0*pow(c1, 2) + 8745.0); case 28: return 1.14396816473874e-8*c0*pow(c1, 23)*(1456917.0*pow(c0, 4) + 5390.0*pow(c0, 2)*(51.0*pow(c1, 2) - 53.0) + 7497.0*pow(c1, 4) - 16170.0*pow(c1, 2) + 8745.0); case 29: return 3.01044253878615e-10*pow(c1, 23)*(489038473.0*pow(c0, 6) + 138407115.0*pow(c0, 4)*(pow(c1, 2) - 1.0) + 2793.0*pow(c0, 2)*(2703.0*pow(c1, 4) - 5610.0*pow(c1, 2) + 2915.0) + 44149.0*pow(c1, 6) - 142443.0*pow(c1, 4) + 153615.0*pow(c1, 2) - 55385.0); default: return 0.; } case 28: switch(j) { case 24: return 7.13965946787297e-9*pow(c1, 24); case 25: return 3.21284676054284e-7*c0*pow(c1, 24); case 26: return 2.92076978231167e-9*pow(c1, 24)*(2585.0*pow(c0, 2) + 47.0*pow(c1, 2) - 55.0); case 27: return 4.57587265895495e-8*c0*pow(c1, 24)*(2695.0*pow(c0, 2) + 147.0*pow(c1, 2) - 165.0); case 28: return 1.80626552327169e-9*pow(c1, 24)*(870485.0*pow(c0, 4) + 1862.0*pow(c0, 2)*(51.0*pow(c1, 2) - 55.0) + 833.0*pow(c1, 4) - 1862.0*pow(c1, 2) + 1045.0); case 29: return 8.85070106403128e-8*c0*pow(c1, 24)*(188309.0*pow(c0, 4) + 646.0*pow(c0, 2)*(53.0*pow(c1, 2) - 55.0) + 901.0*pow(c1, 4) - 1938.0*pow(c1, 2) + 1045.0); default: return 0.; } case 29: switch(j) { case 25: return 5.84153956462334e-9*pow(c1, 25); case 26: return 2.74552359537297e-7*c0*pow(c1, 25); case 27: return 2.40835403102892e-9*pow(c1, 25)*(2793.0*pow(c0, 2) + 49.0*pow(c1, 2) - 57.0); case 28: return 3.54028042561251e-7*c0*pow(c1, 25)*(323.0*pow(c0, 2) + 17.0*pow(c1, 2) - 19.0); case 29: return 1.50011882441208e-9*pow(c1, 25)*(1010021.0*pow(c0, 4) + 2006.0*pow(c0, 2)*(53.0*pow(c1, 2) - 57.0) + 901.0*pow(c1, 4) - 2006.0*pow(c1, 2) + 1121.0); default: return 0.; } default: return 0.; } }
the_stack_data/13782.c
/* * Copyright (c) 2013, 2014 Jan-Piet Mens <[email protected]> * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are * met: * * 1. Redistributions of source code must retain the above copyright notice, * this list of conditions and the following disclaimer. 2. Redistributions * in binary form must reproduce the above copyright notice, this list of * conditions and the following disclaimer in the documentation and/or other * materials provided with the distribution. 3. Neither the name of mosquitto * nor the names of its contributors may be used to endorse or promote * products derived from this software without specific prior written * permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. */ #ifdef BE_MYSQL #include <stdio.h> #include <stdlib.h> #include <string.h> #include <mosquitto.h> #include "be-mysql.h" #include "log.h" #include "hash.h" #include "backends.h" struct mysql_backend { MYSQL *mysql; char *host; int port; char *dbname; char *user; char *pass; bool auto_connect; char *userquery; //MUST return 1 row, 1 column char *superquery; //MUST return 1 row, 1 column,[0, 1] char *aclquery; //MAY return n rows, 1 column, string }; static char *get_bool(char *option, char *defval) { char *flag = p_stab(option); flag = flag ? flag : defval; if (!strcmp("true", flag) || !strcmp("false", flag)) { return flag; } _log(LOG_NOTICE, "WARN: %s is unexpected value -> %s", option, flag); return defval; } void *be_mysql_init() { struct mysql_backend *conf; char *host, *user, *pass, *dbname, *p; char *ssl_ca, *ssl_capath, *ssl_cert, *ssl_cipher, *ssl_key; char *userquery; char *opt_flag; int port; bool ssl_enabled; my_bool reconnect = false; _log(LOG_DEBUG, "}}}} MYSQL"); host = p_stab("host"); p = p_stab("port"); user = p_stab("user"); pass = p_stab("pass"); dbname = p_stab("dbname"); opt_flag = get_bool("ssl_enabled", "false"); if (!strcmp("true", opt_flag)) { ssl_enabled = true; _log(LOG_DEBUG, "SSL is enabled"); } else{ ssl_enabled = false; _log(LOG_DEBUG, "SSL is disabled"); } ssl_key = p_stab("ssl_key"); ssl_cert = p_stab("ssl_cert"); ssl_ca = p_stab("ssl_ca"); ssl_capath = p_stab("ssl_capath"); ssl_cipher = p_stab("ssl_cipher"); host = (host) ? host : strdup("localhost"); port = (!p) ? 3306 : atoi(p); userquery = p_stab("userquery"); if (!userquery) { _fatal("Mandatory option 'userquery' is missing"); return (NULL); } if ((conf = (struct mysql_backend *)malloc(sizeof(struct mysql_backend))) == NULL) return (NULL); conf->mysql = mysql_init(NULL); conf->host = host; conf->port = port; conf->user = user; conf->pass = pass; conf->auto_connect = false; conf->dbname = dbname; conf->userquery = userquery; conf->superquery = p_stab("superquery"); conf->aclquery = p_stab("aclquery"); if(ssl_enabled){ mysql_ssl_set(conf->mysql, ssl_key, ssl_cert, ssl_ca, ssl_capath, ssl_cipher); } opt_flag = get_bool("mysql_auto_connect", "true"); if (!strcmp("true", opt_flag)) { conf->auto_connect = true; } opt_flag = get_bool("mysql_opt_reconnect", "true"); if (!strcmp("true", opt_flag)) { reconnect = true; mysql_options(conf->mysql, MYSQL_OPT_RECONNECT, &reconnect); } if (!mysql_real_connect(conf->mysql, host, user, pass, dbname, port, NULL, 0)) { _log(LOG_NOTICE, "%s", mysql_error(conf->mysql)); if (!conf->auto_connect && !reconnect) { free(conf); mysql_close(conf->mysql); return (NULL); } } return ((void *)conf); } void be_mysql_destroy(void *handle) { struct mysql_backend *conf = (struct mysql_backend *)handle; if (conf) { mysql_close(conf->mysql); if (conf->userquery) free(conf->userquery); if (conf->superquery) free(conf->superquery); if (conf->aclquery) free(conf->aclquery); free(conf); } } static char *escape(void *handle, const char *value, long *vlen) { struct mysql_backend *conf = (struct mysql_backend *)handle; char *v; *vlen = strlen(value) * 2 + 1; if ((v = malloc(*vlen)) == NULL) return (NULL); mysql_real_escape_string(conf->mysql, v, value, strlen(value)); return (v); } static bool auto_connect(struct mysql_backend *conf) { if (conf->auto_connect) { if (!mysql_real_connect(conf->mysql, conf->host, conf->user, conf->pass, conf->dbname, conf->port, NULL, 0)) { fprintf(stderr, "do auto_connect but %s\n", mysql_error(conf->mysql)); return false; } return true; } return false; } int be_mysql_getuser(void *handle, const char *username, const char *password, char **phash, const char *clientid) { struct mysql_backend *conf = (struct mysql_backend *)handle; char *query = NULL, *u = NULL, *value = NULL, *v; long nrows, ulen; MYSQL_RES *res = NULL; MYSQL_ROW rowdata; // fprintf(stderr, "------>%s<-----\n", clientid); if (!conf || !conf->userquery || !username || !*username) return BACKEND_DEFER; if (mysql_ping(conf->mysql)) { fprintf(stderr, "%s\n", mysql_error(conf->mysql)); if (!auto_connect(conf)) { return BACKEND_ERROR; } } if ((u = escape(conf, username, &ulen)) == NULL) return BACKEND_ERROR; if ((query = malloc(strlen(conf->userquery) + ulen + 128)) == NULL) { free(u); return BACKEND_ERROR; } sprintf(query, conf->userquery, u, clientid); free(u); if (mysql_query(conf->mysql, query)) { fprintf(stderr, "%s\n", mysql_error(conf->mysql)); goto out; } res = mysql_store_result(conf->mysql); if ((nrows = mysql_num_rows(res)) != 1) { //DEBUG fprintf(stderr, "rowcount = %ld; not ok\n", nrows); goto out; } if (mysql_num_fields(res) != 1) { //DEBUG fprintf(stderr, "numfields not ok\n"); goto out; } if ((rowdata = mysql_fetch_row(res)) == NULL) { goto out; } v = rowdata[0]; value = (v) ? strdup(v) : NULL; out: mysql_free_result(res); free(query); *phash = value; return BACKEND_DEFER; } /* * Return T/F if user is superuser */ int be_mysql_superuser(void *handle, const char *username) { struct mysql_backend *conf = (struct mysql_backend *)handle; char *query = NULL, *u = NULL; long nrows, ulen; int issuper = BACKEND_DEFER; MYSQL_RES *res = NULL; MYSQL_ROW rowdata; if (!conf || !conf->superquery) return BACKEND_DEFER; if (mysql_ping(conf->mysql)) { fprintf(stderr, "%s\n", mysql_error(conf->mysql)); if (!auto_connect(conf)) { return (BACKEND_ERROR); } } if ((u = escape(conf, username, &ulen)) == NULL) return (BACKEND_ERROR); if ((query = malloc(strlen(conf->superquery) + ulen + 128)) == NULL) { free(u); return (BACKEND_ERROR); } sprintf(query, conf->superquery, u); free(u); if (mysql_query(conf->mysql, query)) { fprintf(stderr, "%s\n", mysql_error(conf->mysql)); issuper = BACKEND_ERROR; goto out; } res = mysql_store_result(conf->mysql); if ((nrows = mysql_num_rows(res)) != 1) { goto out; } if (mysql_num_fields(res) != 1) { //DEBUG fprintf(stderr, "numfields not ok\n"); goto out; } if ((rowdata = mysql_fetch_row(res)) == NULL) { goto out; } issuper = (atoi(rowdata[0])) ? BACKEND_ALLOW: BACKEND_DEFER; out: mysql_free_result(res); free(query); return (issuper); } /* * Check ACL. username is the name of the connected user attempting to access * topic is the topic user is trying to access (may contain wildcards) acc is * desired type of access: read/write for subscriptions (READ) (1) for * publish (WRITE) (2) * * SELECT topic FROM table WHERE username = '%s' AND (acc & %d) // * may user SUB or PUB topic? SELECT topic FROM table WHERE username = '%s' * / ignore ACC */ int be_mysql_aclcheck(void *handle, const char *clientid, const char *username, const char *topic, int acc) { struct mysql_backend *conf = (struct mysql_backend *)handle; char *query = NULL, *u = NULL, *v; long ulen; int match = BACKEND_DEFER; bool bf; MYSQL_RES *res = NULL; MYSQL_ROW rowdata; if (!conf || !conf->aclquery) return BACKEND_DEFER; if (mysql_ping(conf->mysql)) { fprintf(stderr, "%s\n", mysql_error(conf->mysql)); if (!auto_connect(conf)) { return (BACKEND_ERROR); } } if ((u = escape(conf, username, &ulen)) == NULL) return (BACKEND_ERROR); if ((query = malloc(strlen(conf->aclquery) + ulen + 128)) == NULL) { free(u); return (BACKEND_ERROR); } sprintf(query, conf->aclquery, u, acc); free(u); //_log(LOG_DEBUG, "SQL: %s", query); if (mysql_query(conf->mysql, query)) { _log(LOG_NOTICE, "%s", mysql_error(conf->mysql)); match = BACKEND_ERROR; goto out; } res = mysql_store_result(conf->mysql); if (mysql_num_fields(res) != 1) { fprintf(stderr, "numfields not ok\n"); goto out; } while (match == 0 && (rowdata = mysql_fetch_row(res)) != NULL) { if ((v = rowdata[0]) != NULL) { /* * Check mosquitto_match_topic. If true, if true, set * match and break out of loop. */ char *expanded; t_expand(clientid, username, v, &expanded); if (expanded && *expanded) { mosquitto_topic_matches_sub(expanded, topic, &bf); if (bf) match = BACKEND_ALLOW; _log(LOG_DEBUG, " mysql: topic_matches(%s, %s) == %d", expanded, v, bf); free(expanded); } } } out: mysql_free_result(res); free(query); return (match); } #endif /* BE_MYSQL */
the_stack_data/5809.c
// RUN: %llvmgcc -xc %s -w -c -o - | llc // XFAIL: * // See PR2452 #include <stdarg.h> float test(int X, ...) { va_list ap; float F; va_start(ap, X); F = va_arg(ap, float); return F; }
the_stack_data/513993.c
# include <stdio.h> int main(void){ FILE *file; file = fopen("teste.txt", "a"); // abrindo o arquivo em modo de adição if (file == NULL){ printf("Arquivo nao encontrado\n"); return 0; } fprintf(file, "Nova frase\n"); char string[] = "Outra nova frase\n"; fputs(string, file); // adicionando um vetor de caracteres a um arquivo char caracter = '3'; fputc(caracter, file); // adicionando um caracter fclose(file); return 0; }
the_stack_data/252014.c
#include <stdio.h> #include <unistd.h> #define SMAX 128 int main() { char line[SMAX]; int n = read(0, line, SMAX); // 從 0 (標準輸入 stdin:鍵盤) 讀入一行字 line line[n] = '\0'; // 設定字串結尾 write(1, line, n); // 將 line 輸出到 1 (標準輸出 stdout) write(2, line, n); // 將 line 輸出到 2 (標準錯誤 stderr) }
the_stack_data/117326896.c
int addcnt = 0; void addvec(int *x, int *y, int *z, int n) { int i; addcnt++; for(i=0; i<n; i++) z[i] = x[i] + y[i]; }
the_stack_data/1092615.c
char* foo = "Foo";
the_stack_data/42842.c
#define NULL ((void*)0) typedef unsigned long size_t; // Customize by platform. typedef long intptr_t; typedef unsigned long uintptr_t; typedef long scalar_t__; // Either arithmetic or pointer type. /* By default, we understand bool (as a convenience). */ typedef int bool; #define false 0 #define true 1 /* Forward declarations */ typedef struct TYPE_8__ TYPE_3__ ; typedef struct TYPE_7__ TYPE_2__ ; typedef struct TYPE_6__ TYPE_1__ ; /* Type definitions */ struct elt_loc_list {scalar_t__ loc; struct elt_loc_list* next; } ; typedef scalar_t__ rtx ; typedef enum rtx_code { ____Placeholder_rtx_code } rtx_code ; struct TYPE_6__ {scalar_t__ val_rtx; } ; struct TYPE_7__ {struct elt_loc_list* locs; TYPE_1__ u; } ; typedef TYPE_2__ cselib_val ; struct TYPE_8__ {int /*<<< orphan*/ (* commutative_p ) (scalar_t__,int /*<<< orphan*/ ) ;} ; /* Variables and functions */ #define CONST_DOUBLE 129 TYPE_2__* CSELIB_VAL_PTR (scalar_t__) ; int GET_CODE (scalar_t__) ; scalar_t__ GET_MODE (scalar_t__) ; char* GET_RTX_FORMAT (int) ; int GET_RTX_LENGTH (int) ; #define LABEL_REF 128 scalar_t__ MEM_P (scalar_t__) ; scalar_t__ REG_P (scalar_t__) ; int /*<<< orphan*/ UNKNOWN ; int VALUE ; scalar_t__ XEXP (scalar_t__,int) ; int /*<<< orphan*/ XINT (scalar_t__,int) ; int /*<<< orphan*/ XSTR (scalar_t__,int) ; scalar_t__ XVECEXP (scalar_t__,int,int) ; int XVECLEN (scalar_t__,int) ; int /*<<< orphan*/ XWINT (scalar_t__,int) ; TYPE_2__* cselib_lookup (scalar_t__,scalar_t__,int /*<<< orphan*/ ) ; int /*<<< orphan*/ gcc_unreachable () ; int /*<<< orphan*/ strcmp (int /*<<< orphan*/ ,int /*<<< orphan*/ ) ; int /*<<< orphan*/ stub1 (scalar_t__,int /*<<< orphan*/ ) ; TYPE_3__ targetm ; int rtx_equal_for_cselib_p (rtx x, rtx y) { enum rtx_code code; const char *fmt; int i; if (REG_P (x) || MEM_P (x)) { cselib_val *e = cselib_lookup (x, GET_MODE (x), 0); if (e) x = e->u.val_rtx; } if (REG_P (y) || MEM_P (y)) { cselib_val *e = cselib_lookup (y, GET_MODE (y), 0); if (e) y = e->u.val_rtx; } if (x == y) return 1; if (GET_CODE (x) == VALUE && GET_CODE (y) == VALUE) return CSELIB_VAL_PTR (x) == CSELIB_VAL_PTR (y); if (GET_CODE (x) == VALUE) { cselib_val *e = CSELIB_VAL_PTR (x); struct elt_loc_list *l; for (l = e->locs; l; l = l->next) { rtx t = l->loc; /* Avoid infinite recursion. */ if (REG_P (t) || MEM_P (t)) continue; else if (rtx_equal_for_cselib_p (t, y)) return 1; } return 0; } if (GET_CODE (y) == VALUE) { cselib_val *e = CSELIB_VAL_PTR (y); struct elt_loc_list *l; for (l = e->locs; l; l = l->next) { rtx t = l->loc; if (REG_P (t) || MEM_P (t)) continue; else if (rtx_equal_for_cselib_p (x, t)) return 1; } return 0; } if (GET_CODE (x) != GET_CODE (y) || GET_MODE (x) != GET_MODE (y)) return 0; /* These won't be handled correctly by the code below. */ switch (GET_CODE (x)) { case CONST_DOUBLE: return 0; case LABEL_REF: return XEXP (x, 0) == XEXP (y, 0); default: break; } code = GET_CODE (x); fmt = GET_RTX_FORMAT (code); for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--) { int j; switch (fmt[i]) { case 'w': if (XWINT (x, i) != XWINT (y, i)) return 0; break; case 'n': case 'i': if (XINT (x, i) != XINT (y, i)) return 0; break; case 'V': case 'E': /* Two vectors must have the same length. */ if (XVECLEN (x, i) != XVECLEN (y, i)) return 0; /* And the corresponding elements must match. */ for (j = 0; j < XVECLEN (x, i); j++) if (! rtx_equal_for_cselib_p (XVECEXP (x, i, j), XVECEXP (y, i, j))) return 0; break; case 'e': if (i == 1 && targetm.commutative_p (x, UNKNOWN) && rtx_equal_for_cselib_p (XEXP (x, 1), XEXP (y, 0)) && rtx_equal_for_cselib_p (XEXP (x, 0), XEXP (y, 1))) return 1; if (! rtx_equal_for_cselib_p (XEXP (x, i), XEXP (y, i))) return 0; break; case 'S': case 's': if (strcmp (XSTR (x, i), XSTR (y, i))) return 0; break; case 'u': /* These are just backpointers, so they don't matter. */ break; case '0': case 't': break; /* It is believed that rtx's at this level will never contain anything but integers and other rtx's, except for within LABEL_REFs and SYMBOL_REFs. */ default: gcc_unreachable (); } } return 1; }
the_stack_data/123439.c
#include <stdio.h> #include <stdlib.h> #include <sys/shm.h> #define ARRAY_SIZE 40000 #define MALLOC_SIZE 100000 #define SHM_SIZE 100000 #define SHM_MODE 0600 // user read/write char array[ARRAY_SIZE]; // uninitialized data = bss int main(void) { int shmid; char *ptr, *shmptr; struct shmid_ds shmbuf; printf("array[] from %p to %p\n", (void *)&array[0], (void *)&array[ARRAY_SIZE]); printf("stack around %p\n", (void *)&shmid); if ((ptr = malloc(MALLOC_SIZE)) == NULL) { puts("malloc error"); exit(1); } printf("malloced from %p to %p\n", (void *)ptr, (void *)ptr + MALLOC_SIZE); if ((shmid = shmget(IPC_PRIVATE, SHM_SIZE, SHM_MODE)) < 0) { puts("shmget error"); exit(1); } printf("key: %d\n", shmid); if ((shmptr = shmat(shmid, 0, 0)) == (void *)-1) { puts("shmat error"); exit(1); } printf("shared memory attached from %p to %p\n", (void *)shmptr, (void *)shmptr + SHM_SIZE); if (shmctl(shmid, IPC_STAT, &shmbuf) < 0) { puts("shmctl error"); exit(1); } printf("size: %ld\ncpid: %d\nattach-time: %ld\n", shmbuf.shm_segsz, shmbuf.shm_cpid, shmbuf.shm_atime); if (shmctl(shmid, IPC_RMID, 0) < 0) { puts("shmctl error"); exit(1); } exit(0); }
the_stack_data/48574224.c
#include <stdio.h> int main() { int c, nl, blanks, tabs; nl = blanks = tabs = 0; while ((c = getchar()) != EOF) { if (c == '\n') ++nl; if (c == '\t') ++tabs; if (c == ' ') ++blanks; } printf("Blanks: %d\n", blanks); printf("Tabs: %d\n", tabs); printf("Newlines: %d\n", nl); }
the_stack_data/192329519.c
#include <unistd.h> /* pentru open(), exit() */ #include <fcntl.h> /* O_RDWR */ #include <errno.h> /* perror() */ #include <stdio.h> #include <stdlib.h> #define BUFFER_MAX 1024 #define LINES_MAX 100 void fatal(char * mesaj_eroare) { perror(mesaj_eroare); exit(-1); } int main(int argc, char *argv[]) { int source; int copied; char buf[BUFFER_MAX]; if(argc < 2) fatal("Nu s-a oferit niciun fisier"); else if(argc > 2) fatal("Prea multe fisiere"); source = open(argv[1], O_RDONLY); if (source < 0) fatal("Nu se poate deschide fisierul"); lseek(source, 0, SEEK_SET); /* * Read from source and get the index of each line in an array * Output to stdout from the source file using the given indexes */ int indexes[LINES_MAX]; int indexesNo = 1; indexes[0] = 0; int i = 1; for(i=0; (copied = read(source, buf + i, 1)) ; i++) { if (copied < 0) fatal("Eroare la citire"); if(buf[i] == '\n') { indexes[indexesNo++] = i+1; } } indexes[indexesNo++] = i+1; char buff[BUFFER_MAX]; i = indexesNo - 1; lseek(source, indexes[i - 1], SEEK_SET); char newline[2]; *newline = '\n'; while((copied = read(source, buff, indexes[i]-indexes[i-1]-1)) && i > 0) { i--; lseek(source, indexes[i-1], SEEK_SET); if (copied < 0) fatal("Eroare la citire"); copied = write(1, buff, copied); if (copied < 0) fatal("Eroare la scriere"); copied = write(1, newline, 1); if (copied < 0) fatal("Eroare la scriere"); } close(source); return 0; }
the_stack_data/1055415.c
#include <stdio.h> #include <math.h> int main() { double a, b, c, delta, x1, x2; printf("coeficiente a: "); scanf("%lf", &a); printf("coeficiente b: "); scanf("%lf", &b); printf("coeficiente c: "); scanf("%lf", &c); delta = (b*b) - (4*a*c); if (a == 0) { printf("nao possui raizes reais\n"); } else if (delta < 0) { printf("nao possui raizes reais\n"); } else { x1 = (-b + sqrt(delta))/(2*a); x2 = (-b - sqrt(delta))/(2*a); } printf("x1: %.4lf\n", x1); printf("x2: %.4lf", x2); return 0; }
the_stack_data/45450440.c
// BUG: corrupted list in uvc_scan_chain_forward // https://syzkaller.appspot.com/bug?id=d857e4bd1d55fd4f61542d882ca244945b0bb859 // status:dup // autogenerated by syzkaller (https://github.com/google/syzkaller) #define _GNU_SOURCE #include <endian.h> #include <errno.h> #include <fcntl.h> #include <stdarg.h> #include <stdbool.h> #include <stddef.h> #include <stdint.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #include <sys/mount.h> #include <sys/stat.h> #include <sys/syscall.h> #include <sys/types.h> #include <unistd.h> #include <linux/usb/ch9.h> unsigned long long procid; static void sleep_ms(uint64_t ms) { usleep(ms * 1000); } #define MAX_FDS 30 #define USB_MAX_IFACE_NUM 4 #define USB_MAX_EP_NUM 32 struct usb_iface_index { struct usb_interface_descriptor* iface; uint8_t bInterfaceNumber; uint8_t bAlternateSetting; uint8_t bInterfaceClass; struct usb_endpoint_descriptor eps[USB_MAX_EP_NUM]; int eps_num; }; struct usb_device_index { struct usb_device_descriptor* dev; struct usb_config_descriptor* config; uint8_t bDeviceClass; uint8_t bMaxPower; int config_length; struct usb_iface_index ifaces[USB_MAX_IFACE_NUM]; int ifaces_num; int iface_cur; }; static bool parse_usb_descriptor(char* buffer, size_t length, struct usb_device_index* index) { if (length < sizeof(*index->dev) + sizeof(*index->config)) return false; memset(index, 0, sizeof(*index)); index->dev = (struct usb_device_descriptor*)buffer; index->config = (struct usb_config_descriptor*)(buffer + sizeof(*index->dev)); index->bDeviceClass = index->dev->bDeviceClass; index->bMaxPower = index->config->bMaxPower; index->config_length = length - sizeof(*index->dev); index->iface_cur = -1; size_t offset = 0; while (true) { if (offset + 1 >= length) break; uint8_t desc_length = buffer[offset]; uint8_t desc_type = buffer[offset + 1]; if (desc_length <= 2) break; if (offset + desc_length > length) break; if (desc_type == USB_DT_INTERFACE && index->ifaces_num < USB_MAX_IFACE_NUM) { struct usb_interface_descriptor* iface = (struct usb_interface_descriptor*)(buffer + offset); index->ifaces[index->ifaces_num].iface = iface; index->ifaces[index->ifaces_num].bInterfaceNumber = iface->bInterfaceNumber; index->ifaces[index->ifaces_num].bAlternateSetting = iface->bAlternateSetting; index->ifaces[index->ifaces_num].bInterfaceClass = iface->bInterfaceClass; index->ifaces_num++; } if (desc_type == USB_DT_ENDPOINT && index->ifaces_num > 0) { struct usb_iface_index* iface = &index->ifaces[index->ifaces_num - 1]; if (iface->eps_num < USB_MAX_EP_NUM) { memcpy(&iface->eps[iface->eps_num], buffer + offset, sizeof(iface->eps[iface->eps_num])); iface->eps_num++; } } offset += desc_length; } return true; } #define UDC_NAME_LENGTH_MAX 128 struct usb_raw_init { __u8 driver_name[UDC_NAME_LENGTH_MAX]; __u8 device_name[UDC_NAME_LENGTH_MAX]; __u8 speed; }; enum usb_raw_event_type { USB_RAW_EVENT_INVALID = 0, USB_RAW_EVENT_CONNECT = 1, USB_RAW_EVENT_CONTROL = 2, }; struct usb_raw_event { __u32 type; __u32 length; __u8 data[0]; }; struct usb_raw_ep_io { __u16 ep; __u16 flags; __u32 length; __u8 data[0]; }; #define USB_RAW_IOCTL_INIT _IOW('U', 0, struct usb_raw_init) #define USB_RAW_IOCTL_RUN _IO('U', 1) #define USB_RAW_IOCTL_EVENT_FETCH _IOR('U', 2, struct usb_raw_event) #define USB_RAW_IOCTL_EP0_WRITE _IOW('U', 3, struct usb_raw_ep_io) #define USB_RAW_IOCTL_EP0_READ _IOWR('U', 4, struct usb_raw_ep_io) #define USB_RAW_IOCTL_EP_ENABLE _IOW('U', 5, struct usb_endpoint_descriptor) #define USB_RAW_IOCTL_EP_DISABLE _IOW('U', 6, __u32) #define USB_RAW_IOCTL_EP_WRITE _IOW('U', 7, struct usb_raw_ep_io) #define USB_RAW_IOCTL_EP_READ _IOWR('U', 8, struct usb_raw_ep_io) #define USB_RAW_IOCTL_CONFIGURE _IO('U', 9) #define USB_RAW_IOCTL_VBUS_DRAW _IOW('U', 10, __u32) static int usb_raw_open() { return open("/dev/raw-gadget", O_RDWR); } static int usb_raw_init(int fd, uint32_t speed, const char* driver, const char* device) { struct usb_raw_init arg; strncpy((char*)&arg.driver_name[0], driver, sizeof(arg.driver_name)); strncpy((char*)&arg.device_name[0], device, sizeof(arg.device_name)); arg.speed = speed; return ioctl(fd, USB_RAW_IOCTL_INIT, &arg); } static int usb_raw_run(int fd) { return ioctl(fd, USB_RAW_IOCTL_RUN, 0); } static int usb_raw_event_fetch(int fd, struct usb_raw_event* event) { return ioctl(fd, USB_RAW_IOCTL_EVENT_FETCH, event); } static int usb_raw_ep0_write(int fd, struct usb_raw_ep_io* io) { return ioctl(fd, USB_RAW_IOCTL_EP0_WRITE, io); } static int usb_raw_ep0_read(int fd, struct usb_raw_ep_io* io) { return ioctl(fd, USB_RAW_IOCTL_EP0_READ, io); } static int usb_raw_ep_enable(int fd, struct usb_endpoint_descriptor* desc) { return ioctl(fd, USB_RAW_IOCTL_EP_ENABLE, desc); } static int usb_raw_ep_disable(int fd, int ep) { return ioctl(fd, USB_RAW_IOCTL_EP_DISABLE, ep); } static int usb_raw_configure(int fd) { return ioctl(fd, USB_RAW_IOCTL_CONFIGURE, 0); } static int usb_raw_vbus_draw(int fd, uint32_t power) { return ioctl(fd, USB_RAW_IOCTL_VBUS_DRAW, power); } #define MAX_USB_FDS 6 struct usb_info { int fd; struct usb_device_index index; }; static struct usb_info usb_devices[MAX_USB_FDS]; static int usb_devices_num; static struct usb_device_index* add_usb_index(int fd, char* dev, size_t dev_len) { int i = __atomic_fetch_add(&usb_devices_num, 1, __ATOMIC_RELAXED); if (i >= MAX_USB_FDS) return NULL; int rv = 0; rv = parse_usb_descriptor(dev, dev_len, &usb_devices[i].index); if (!rv) return NULL; __atomic_store_n(&usb_devices[i].fd, fd, __ATOMIC_RELEASE); return &usb_devices[i].index; } static struct usb_device_index* lookup_usb_index(int fd) { int i; for (i = 0; i < MAX_USB_FDS; i++) { if (__atomic_load_n(&usb_devices[i].fd, __ATOMIC_ACQUIRE) == fd) { return &usb_devices[i].index; } } return NULL; } static void set_interface(int fd, int n) { struct usb_device_index* index = lookup_usb_index(fd); int ep; if (!index) return; if (index->iface_cur >= 0 && index->iface_cur < index->ifaces_num) { for (ep = 0; ep < index->ifaces[index->iface_cur].eps_num; ep++) { int rv = usb_raw_ep_disable(fd, ep); if (rv < 0) { } else { } } } if (n >= 0 && n < index->ifaces_num) { for (ep = 0; ep < index->ifaces[n].eps_num; ep++) { int rv = usb_raw_ep_enable(fd, &index->ifaces[n].eps[ep]); if (rv < 0) { } else { } } index->iface_cur = n; } } static int configure_device(int fd) { struct usb_device_index* index = lookup_usb_index(fd); if (!index) return -1; int rv = usb_raw_vbus_draw(fd, index->bMaxPower); if (rv < 0) { return rv; } rv = usb_raw_configure(fd); if (rv < 0) { return rv; } set_interface(fd, 0); return 0; } #define USB_MAX_PACKET_SIZE 1024 struct usb_raw_control_event { struct usb_raw_event inner; struct usb_ctrlrequest ctrl; char data[USB_MAX_PACKET_SIZE]; }; struct usb_raw_ep_io_data { struct usb_raw_ep_io inner; char data[USB_MAX_PACKET_SIZE]; }; struct vusb_connect_string_descriptor { uint32_t len; char* str; } __attribute__((packed)); struct vusb_connect_descriptors { uint32_t qual_len; char* qual; uint32_t bos_len; char* bos; uint32_t strs_len; struct vusb_connect_string_descriptor strs[0]; } __attribute__((packed)); static const char default_string[] = {8, USB_DT_STRING, 's', 0, 'y', 0, 'z', 0}; static const char default_lang_id[] = {4, USB_DT_STRING, 0x09, 0x04}; static bool lookup_connect_response(int fd, struct vusb_connect_descriptors* descs, struct usb_ctrlrequest* ctrl, char** response_data, uint32_t* response_length) { struct usb_device_index* index = lookup_usb_index(fd); uint8_t str_idx; if (!index) return false; switch (ctrl->bRequestType & USB_TYPE_MASK) { case USB_TYPE_STANDARD: switch (ctrl->bRequest) { case USB_REQ_GET_DESCRIPTOR: switch (ctrl->wValue >> 8) { case USB_DT_DEVICE: *response_data = (char*)index->dev; *response_length = sizeof(*index->dev); return true; case USB_DT_CONFIG: *response_data = (char*)index->config; *response_length = index->config_length; return true; case USB_DT_STRING: str_idx = (uint8_t)ctrl->wValue; if (descs && str_idx < descs->strs_len) { *response_data = descs->strs[str_idx].str; *response_length = descs->strs[str_idx].len; return true; } if (str_idx == 0) { *response_data = (char*)&default_lang_id[0]; *response_length = default_lang_id[0]; return true; } *response_data = (char*)&default_string[0]; *response_length = default_string[0]; return true; case USB_DT_BOS: *response_data = descs->bos; *response_length = descs->bos_len; return true; case USB_DT_DEVICE_QUALIFIER: if (!descs->qual) { struct usb_qualifier_descriptor* qual = (struct usb_qualifier_descriptor*)response_data; qual->bLength = sizeof(*qual); qual->bDescriptorType = USB_DT_DEVICE_QUALIFIER; qual->bcdUSB = index->dev->bcdUSB; qual->bDeviceClass = index->dev->bDeviceClass; qual->bDeviceSubClass = index->dev->bDeviceSubClass; qual->bDeviceProtocol = index->dev->bDeviceProtocol; qual->bMaxPacketSize0 = index->dev->bMaxPacketSize0; qual->bNumConfigurations = index->dev->bNumConfigurations; qual->bRESERVED = 0; *response_length = sizeof(*qual); return true; } *response_data = descs->qual; *response_length = descs->qual_len; return true; default: exit(1); return false; } break; default: exit(1); return false; } break; default: exit(1); return false; } return false; } static volatile long syz_usb_connect(volatile long a0, volatile long a1, volatile long a2, volatile long a3) { uint64_t speed = a0; uint64_t dev_len = a1; char* dev = (char*)a2; struct vusb_connect_descriptors* descs = (struct vusb_connect_descriptors*)a3; if (!dev) { return -1; } int fd = usb_raw_open(); if (fd < 0) { return fd; } if (fd >= MAX_FDS) { close(fd); return -1; } struct usb_device_index* index = add_usb_index(fd, dev, dev_len); if (!index) { return -1; } char device[32]; sprintf(&device[0], "dummy_udc.%llu", procid); int rv = usb_raw_init(fd, speed, "dummy_udc", &device[0]); if (rv < 0) { return rv; } rv = usb_raw_run(fd); if (rv < 0) { return rv; } bool done = false; while (!done) { struct usb_raw_control_event event; event.inner.type = 0; event.inner.length = sizeof(event.ctrl); rv = usb_raw_event_fetch(fd, (struct usb_raw_event*)&event); if (rv < 0) { return rv; } if (event.inner.type != USB_RAW_EVENT_CONTROL) continue; bool response_found = false; char* response_data = NULL; uint32_t response_length = 0; if (event.ctrl.bRequestType & USB_DIR_IN) { response_found = lookup_connect_response( fd, descs, &event.ctrl, &response_data, &response_length); if (!response_found) { return -1; } } else { if ((event.ctrl.bRequestType & USB_TYPE_MASK) != USB_TYPE_STANDARD || event.ctrl.bRequest != USB_REQ_SET_CONFIGURATION) { exit(1); return -1; } done = true; } if (done) { rv = configure_device(fd); if (rv < 0) { return rv; } } struct usb_raw_ep_io_data response; response.inner.ep = 0; response.inner.flags = 0; if (response_length > sizeof(response.data)) response_length = 0; if (event.ctrl.wLength < response_length) response_length = event.ctrl.wLength; response.inner.length = response_length; if (response_data) memcpy(&response.data[0], response_data, response_length); else memset(&response.data[0], 0, response_length); if (event.ctrl.bRequestType & USB_DIR_IN) { rv = usb_raw_ep0_write(fd, (struct usb_raw_ep_io*)&response); } else { rv = usb_raw_ep0_read(fd, (struct usb_raw_ep_io*)&response); } if (rv < 0) { return rv; } } sleep_ms(200); return fd; } int main(void) { syscall(__NR_mmap, 0x20000000ul, 0x1000000ul, 3ul, 0x32ul, -1, 0); memcpy((void*)0x20000140, "\x12\x01\x00\x00\x5b\x84\x33\x20\xcd\x18\xfe\xca\xe3\x99\x01\x02\x03" "\x01\x09\x02\x50\x00\x01\x00\x00\x00\x00\x09\x04\x00\x00\x00\x0e\x01" "\x00\x00\x09\x24\x03\x00\x00\x03\x00\x00\x00\x00\x00\x00\x13\x24\x06" "\x00\x00\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x05" "\x24\x05\x00\x00\x0b\x24\x06\x00\x00\x02\x00\x00\x00\x00\x00", 83); syz_usb_connect(0, 0x62, 0x20000140, 0); return 0; }
the_stack_data/483430.c
// Copyright (c) 2021 Daniel C. Moura // https://towardsdatascience.com/r-vs-python-vs-julia-90456a2bcbab // linkedin.com/in/dmoura // twitter.com/daniel_c_moura // compiling this file: // gcc linear_search.c -O3 #include <stdio.h> #include <stdlib.h> #include <string.h> #include <unistd.h> #include <time.h> #define MAX_LINE_LEN 10 #define ARRAY_SIZE 1000000 // 0.26 seconds int for_search(const int *vec, int size, int x) { for (int i=0;i<size;i++) if (vec[i] == x) return 1; return 0; } int main() { char *filename = "vec.txt"; FILE *f; char line[MAX_LINE_LEN]; int vec[ARRAY_SIZE]; clock_t start, end; double elapsed_used; //simple file reading with predefined number of lines f = fopen(filename, "r"); int i = 0; while (fgets(line, MAX_LINE_LEN, f) != NULL) vec[i++] = (int) strtoul(line, NULL, 0); fclose(f); printf("%d records\n", i); for (int r=0;r<3;r++) { // three runs start = clock(); int nmatches = 0; for (int i=1;i<=1000;i++) if (for_search(vec, ARRAY_SIZE, i)) nmatches++; end = clock(); elapsed_used = ((double)(end - start)) / CLOCKS_PER_SEC; printf("elapsed CPU time: %f seconds\n", elapsed_used); printf("\tmatches: %d\n", nmatches); } return 0; }
the_stack_data/25216.c
// RUN: 3c %s | count 0 void foo(char *a); void bar(int *a); void baz(int a[1]); int *wild(); void test() { foo("test"); int x; bar(&x); baz((int[1]){1}); bar(wild()); }
the_stack_data/67324989.c
/* american fuzzy lop - persistent mode example -------------------------------------------- Written and maintained by Michal Zalewski <[email protected]> Copyright 2015 Google Inc. All rights reserved. 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: http://www.apache.org/licenses/LICENSE-2.0 This file demonstrates the high-performance "persistent mode" that may be suitable for fuzzing certain fast and well-behaved libraries, provided that they are stateless or that their internal state can be easily reset across runs. To make this work, the library and this shim need to be compiled in LLVM mode using afl-clang-fast (other compiler wrappers will *not* work). */ #include <stdio.h> #include <stdlib.h> #include <unistd.h> #include <signal.h> #include <string.h> /* Main entry point. */ int main(int argc, char** argv) { ssize_t len; /* how much input did we read? */ char buf[100]; /* Example-only buffer, you'd replace it with other global or local variables appropriate for your use case. */ /* The number passed to __AFL_LOOP() controls the maximum number of iterations before the loop exits and the program is allowed to terminate normally. This limits the impact of accidental memory leaks and similar hiccups. */ while (__AFL_LOOP(1000)) { /*** PLACEHOLDER CODE ***/ /* STEP 1: Fully re-initialize all critical variables. In our example, this involves zeroing buf[], our input buffer. */ memset(buf, 0, 100); /* STEP 2: Read input data. When reading from stdin, no special preparation is required. When reading from a named file, you need to close the old descriptor and reopen the file first! Beware of reading from buffered FILE* objects such as stdin. Use raw file descriptors or call fopen() / fdopen() in every pass. */ len = read(0, buf, 100); /* STEP 3: This is where we'd call the tested library on the read data. We just have some trivial inline code that faults on 'foo!'. */ /* do we have enough data? */ if (len < 4) return 0; if (buf[0] == 'f') { printf("one\n"); if (buf[1] == 'o') { printf("two\n"); if (buf[2] == 'o') { printf("three\n"); if (buf[3] == '!') { printf("four\n"); abort(); } } } } /*** END PLACEHOLDER CODE ***/ } /* Once the loop is exited, terminate normally - AFL will restart the process when this happens, with a clean slate when it comes to allocated memory, leftover file descriptors, etc. */ return 0; }
the_stack_data/114225.c
// SoftEther VPN Source Code - Developer Edition Master Branch // Cedar Communication Module // WinUi.c // User interface code for Win32 #ifdef OS_WIN32 #define WINUI_C #include "WinUi.h" #include "Client.h" #include "CM.h" #include "Protocol.h" #include "Session.h" #include "Win32Com.h" #include "Mayaqua/FileIO.h" #include "Mayaqua/Internat.h" #include "Mayaqua/Microsoft.h" #include "Mayaqua/Memory.h" #include "Mayaqua/Object.h" #include "Mayaqua/Pack.h" #include "Mayaqua/Secure.h" #include "Mayaqua/Str.h" #include "Mayaqua/Table.h" #include "Mayaqua/Tick64.h" #include "Mayaqua/Win32.h" #include "../PenCore/resource.h" #include <commdlg.h> #include <shellapi.h> #include <shlobj.h> #include <openssl/evp.h> #include <openssl/ec.h> // Process name list of incompatible anti-virus software static BAD_PROCESS bad_processes[] = { {"nod32krn.exe", "NOD32 Antivirus"}, {"avp.exe", "Kaspersky"} }; static const UINT num_bad_processes = sizeof(bad_processes) / sizeof(bad_processes[0]); char cached_pin_code[MAX_SIZE] = {0}; UINT64 cached_pin_code_expires = 0; static HINSTANCE hDll = NULL; static wchar_t *title_bar = NULL; static char *font_name = NULL; static UINT font_size = 9; static HIMAGELIST large_image_list = NULL, small_image_list = NULL; static LIST *icon_list = NULL; static HINSTANCE hMsHtml = NULL; static UINT init_winui_counter = 0; static HDC hCommonDC = NULL; static LOCK *lock_common_dc = NULL; bool UseAlpha = false; UINT AlphaValue = 100; static THREAD *led_thread = NULL; static bool thread_stop = false; static bool g_led_special = false; static bool g_tcpip_topmost = false; static DWORD tls_current_wizard = 0xFFFFFFFF; #define WINUI_PSM_SHOWWIZBUTTONS (WM_USER + 138) #define WINUI_PropSheet_ShowWizButtons(hDlg, dwFlag, dwButton) \ PSTMSG(hDlg, WINUI_PSM_SHOWWIZBUTTONS, (WPARAM)(dwFlag), (LPARAM)(dwButton)) typedef struct _WINUI_SHSTOCKICONINFO { DWORD cbSize; HICON hIcon; int iSysImageIndex; int iIcon; WCHAR szPath[MAX_PATH]; } WINUI_SHSTOCKICONINFO; // Get whether the current process is foreground bool IsThisProcessForeground() { HWND hWnd = GetForegroundWindow(); DWORD proc_id, thread_id; if (hWnd == NULL) { return false; } proc_id = 0; thread_id = GetWindowThreadProcessId(hWnd, &proc_id); if (proc_id == MsGetCurrentProcessId()) { return true; } return false; } bool IsThisProcessForegroundForUpdateUi(UPDATE_CLIENT *c, void *p) { return IsThisProcessForeground(); } // Update notification screen dialog procedure UINT UpdateConfigDlgProc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam, void *param) { WINUI_UPDATE *u = (WINUI_UPDATE *)param; UPDATE_CLIENT_SETTING s; switch (msg) { case WM_INITDIALOG: SetTimer(hWnd, 1, 100, NULL); LoadUpdateUiSetting(u, &s); Check(hWnd, S_ENABLE, s.DisableCheck == false); Check(hWnd, S_DISABLE, s.DisableCheck); DlgFont(hWnd, S_TITLE, 10, true); FormatText(hWnd, S_TITLE, u->SoftwareTitle); FormatText(hWnd, S_INFO, u->SoftwareTitle); break; case WM_TIMER: switch (wParam) { case 1: if (u->UpdateClient->HaltFlag) { goto LABEL_CLOSE; } break; } break; case WM_COMMAND: switch (wParam) { case IDCANCEL: Close(hWnd); break; } break; case WM_CLOSE: LABEL_CLOSE: LoadUpdateUiSetting(u, &s); s.DisableCheck = IsChecked(hWnd, S_DISABLE); if (s.DisableCheck) { s.LatestIgnoreBuild = 0; } SaveUpdateUiSetting(u, &s); SetUpdateClientSetting(u->UpdateClient, &s); EndDialog(hWnd, !s.DisableCheck); break; } return 0; } // Show the update notification setting screen bool ConfigUpdateUi(WINUI_UPDATE *u, HWND hWnd) { // Validate arguments if (u == NULL) { return false; } return Dialog(hWnd, D_UPDATE_CONFIG, UpdateConfigDlgProc, u); } // Update notification dialog procedure UINT UpdateNoticeDlgProc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam, void *param) { WINUI_UPDATE_DLG_PARAM *p = (WINUI_UPDATE_DLG_PARAM *)param; WINUI_UPDATE *u = NULL; UPDATE_CLIENT_SETTING s; char date_current[64]; char date_latest[64]; wchar_t date_current_str[128]; wchar_t date_latest_str[128]; char *font_name = NULL; if (p != NULL) { u = p->Update; } switch (msg) { case WM_INITDIALOG: Zero(date_current_str, sizeof(date_current_str)); Zero(date_latest_str, sizeof(date_latest_str)); GetDateStr64(date_current, sizeof(date_current), u->CurrentDate); if (u->CurrentDate != 0) { UniFormat(date_current_str, sizeof(date_current_str), _UU("DLG_UPDATE_DATE"), date_current); } GetDateStr64(date_latest, sizeof(date_latest), p->LatestDate); if (p->LatestDate != 0) { UniFormat(date_latest_str, sizeof(date_latest_str), _UU("DLG_UPDATE_DATE"), date_latest); } FormatText(hWnd, 0, u->UpdateClient->SoftwareTitle); FormatText(hWnd, S_INFO, u->UpdateClient->SoftwareTitle); SetText(hWnd, S_PRODUCT_STR, u->UpdateClient->SoftwareTitle); FormatText(hWnd, S_CURRENT_STR, u->CurrentVer / 100, u->CurrentVer % 100, u->CurrentBuild, date_current_str); FormatText(hWnd, S_LATEST_STR, p->LatestVer, date_latest_str); if (MsIsWindows7()) { if (_GETLANG() == 0) { font_name = GetMeiryoFontName(); } else if (_GETLANG() == 2) { font_name = "Microsoft YaHei"; } else if (_GETLANG() == 3) { font_name = "Microsoft JhengHei"; } } SetFont(hWnd, S_INFO, GetFont(font_name, 11, false, false, false, false)); SetFont(hWnd, IDOK, GetFont(font_name, 0, true, false, false, false)); SetFont(hWnd, IDCANCEL, GetFont(font_name, 0, false, false, false, false)); SetFont(hWnd, S_PRODUCT_STR, GetFont(font_name, 10, true, false, false, false)); SetFont(hWnd, S_CURRENT_STR, GetFont(font_name, 10, true, false, false, false)); SetFont(hWnd, S_LATEST_STR, GetFont(font_name, 10, true, false, false, false)); SetFont(hWnd, S_PRODUCT, GetFont(font_name, 0, false, false, false, false)); SetFont(hWnd, S_CURRENT, GetFont(font_name, 0, false, false, false, false)); SetFont(hWnd, S_LATEST, GetFont(font_name, 0, false, false, false, false)); SetFont(hWnd, B_CONFIG, GetFont(font_name, 0, false, false, false, false)); SetTimer(hWnd, 1, 100, NULL); //MessageBeep(MB_ICONASTERISK); break; case WM_COMMAND: switch (wParam) { case IDOK: // Web View OnceMsgEx(hWnd, NULL, _UU("DLG_UPDATE_HINT"), true, ICO_INTERNET, (bool *)p->halt_flag); ShellExecuteA(hWnd, "open", p->Url, NULL, NULL, SW_SHOWNORMAL); SleepThread(250); // Ignore the update notification of this version for future LoadUpdateUiSetting(u, &s); s.LatestIgnoreBuild = p->LatestBuild; SaveUpdateUiSetting(u, &s); EndDialog(hWnd, 1); break; case IDCANCEL: // Ignore this version LoadUpdateUiSetting(u, &s); s.LatestIgnoreBuild = p->LatestBuild; SaveUpdateUiSetting(u, &s); Close(hWnd); break; case B_CONFIG: // Show the notification settings screen p->IsInConfigDialog = true; if (ConfigUpdateUi(u, hWnd) == false) { // Decided not to notify any more as a result of setting Close(hWnd); } p->IsInConfigDialog = false; break; } break; case WM_TIMER: switch (wParam) { case 1: if (p->IsInConfigDialog == false) { if (*(p->halt_flag)) { // Close the screen forcibly EndDialog(hWnd, 0); } } break; } break; case WM_CLOSE: // Close EndDialog(hWnd, 0); break; } return 0; } // Update notification dialog void UpdateNotifyProcUi(UPDATE_CLIENT *c, UINT latest_build, UINT64 latest_date, char *latest_ver, char *url, volatile bool *halt_flag, void *param) { WINUI_UPDATE *u = (WINUI_UPDATE *)param; WINUI_UPDATE_DLG_PARAM p; // Validate arguments if (c == NULL || latest_build == 0 || latest_date == 0 || latest_ver == NULL || url == NULL || halt_flag == NULL || param == NULL) { return; } if (u->UseSuppressFlag) { // Check the suppress flag if (MsRegReadIntEx2(REG_LOCAL_MACHINE, PROTO_SUPPRESS_CLIENT_UPDATE_NOTIFICATION_REGKEY, PROTO_SUPPRESS_CLIENT_UPDATE_NOTIFICATION_REGVALUE, false, true)) { // Supress the dialog return; } } if (u->CurrentlyDisabled) { // Hide return; } // Show the update screen Zero(&p, sizeof(p)); p.Update = u; p.LatestBuild = latest_build; p.LatestDate = latest_date; p.LatestVer = latest_ver; p.Url = url; p.halt_flag = halt_flag; Dialog(NULL, D_UPDATE_NOTICE, UpdateNoticeDlgProc, &p); } // Initialize the update notification WINUI_UPDATE *InitUpdateUi(wchar_t *title, char *name, char *family_name, UINT64 current_date, UINT current_build, UINT current_ver, char *client_id, bool use_suppress_flag) { WINUI_UPDATE *u; UPDATE_CLIENT_SETTING s; LANGLIST t; // Validate arguments if (title == NULL || name == NULL || current_build == 0 || current_ver == 0) { return NULL; } if (MsIsWine()) { return false; } if (IsEmptyStr(family_name)) { family_name = UPDATE_FAMILY_NAME; } u = ZeroMalloc(sizeof(WINUI_UPDATE)); StrCpy(u->ClientId, sizeof(u->ClientId), client_id); UniStrCpy(u->SoftwareTitle, sizeof(u->SoftwareTitle), title); StrCpy(u->SoftwareName, sizeof(u->SoftwareName), name); u->CurrentDate = current_date; u->CurrentBuild = current_build; u->CurrentVer = current_ver; u->UseSuppressFlag = use_suppress_flag; Format(u->RegKey, sizeof(u->RegKey), WINUI_UPDATE_REGKEY, u->SoftwareName); Zero(&s, sizeof(s)); LoadUpdateUiSetting(u, &s); Zero(&t, sizeof(t)); GetCurrentLang(&t); u->UpdateClient = NewUpdateClient(UpdateNotifyProcUi, IsThisProcessForegroundForUpdateUi, u, family_name, u->SoftwareName, u->SoftwareTitle, u->CurrentBuild, u->CurrentDate, t.Name, &s, client_id); if (u->UpdateClient == NULL) { Free(u); return NULL; } return u; } // Disable the update notification UI void DisableUpdateUi(WINUI_UPDATE *u) { // Validate arguments if (u == NULL) { return; } u->CurrentlyDisabled = true; } // Release the update notification void FreeUpdateUi(WINUI_UPDATE *u) { // Validate arguments if (u == NULL) { return; } if (u->UpdateClient != NULL) { FreeUpdateClient(u->UpdateClient); } Free(u); } // Read the current settings from the registry void LoadUpdateUiSetting(WINUI_UPDATE *u, UPDATE_CLIENT_SETTING *s) { Zero(s, sizeof(UPDATE_CLIENT_SETTING)); // Validate arguments if (u == NULL || s == NULL) { return; } s->DisableCheck = MsRegReadInt(REG_CURRENT_USER, u->RegKey, "DisableCheck"); s->LatestIgnoreBuild = MsRegReadInt(REG_CURRENT_USER, u->RegKey, "LatestIgnoreBuild"); } // Write the current settings to the registry void SaveUpdateUiSetting(WINUI_UPDATE *u, UPDATE_CLIENT_SETTING *s) { // Validate arguments if (u == NULL || s == NULL) { return; } MsRegWriteInt(REG_CURRENT_USER, u->RegKey, "DisableCheck", s->DisableCheck); MsRegWriteInt(REG_CURRENT_USER, u->RegKey, "LatestIgnoreBuild", s->LatestIgnoreBuild); } // Set the UAC icon to the control in the dialog void SetUacIcon(HWND hWnd, UINT id) { static HINSTANCE hShell32 = NULL; static HRESULT (__stdcall *_SHGetStockIconInfo)(UINT siid, UINT uFlags, void *psii) = NULL; bool ok = false; // Validate arguments if (hWnd == NULL) { return; } if (hShell32 == NULL) { hShell32 = LoadLibraryA("shell32.dll"); } if (hShell32 != NULL) { if (_SHGetStockIconInfo == NULL) { _SHGetStockIconInfo = (HRESULT (__stdcall *)(UINT,UINT,void *))GetProcAddress(hShell32, "SHGetStockIconInfo"); } } if (_SHGetStockIconInfo != NULL) { WINUI_SHSTOCKICONINFO sii; Zero(&sii, sizeof(sii)); sii.cbSize = sizeof(sii); if (_SHGetStockIconInfo(77, 0x000000100 | 0x000000001, &sii) == S_OK) { SendMessage(DlgItem(hWnd, id), STM_SETICON, (WPARAM)sii.hIcon, 0); ok = true; } } if (!ok) { Hide(hWnd, id); } } // Procedure of the wizard page UINT CALLBACK WizardPageDefDlgProc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam) { DIALOG_PARAM *dp = (DIALOG_PARAM *)GetParam(hWnd); WIZARD_PAGE *wizard_page = NULL; WIZARD *wizard = NULL; UINT ret_value = 0; bool do_not_send_msg = false; if (dp != NULL) { wizard_page = dp->wizard_page; wizard = wizard_page->Wizard; } switch (msg) { case WM_INITDIALOG: { PROPSHEETPAGEW_V3 *t = (PROPSHEETPAGEW_V3 *)lParam; dp = (DIALOG_PARAM *)t->lParam; wizard_page = dp->wizard_page; wizard = wizard_page->Wizard; wizard->hWndWizard = GetParent(hWnd); wizard_page->hWndPage = hWnd; SetParam(hWnd, dp); InitDialogInternational(hWnd, dp); } break; case WM_CTLCOLORBTN: case WM_CTLCOLORDLG: case WM_CTLCOLOREDIT: case WM_CTLCOLORLISTBOX: case WM_CTLCOLORMSGBOX: case WM_CTLCOLORSCROLLBAR: case WM_CTLCOLORSTATIC: return (UINT)GetStockObject(WHITE_BRUSH); break; case WM_NOTIFY: { NMHDR *pnmh = (NMHDR *)lParam; UINT ret = 0; UINT next_page = INFINITE; switch (pnmh->code) { case PSN_SETACTIVE: // Activate SetWizardButton(wizard_page, true, true, true, false); dp->wizard_proc(hWnd, WM_WIZ_SHOW, 0, 0, wizard, wizard_page, wizard->Param); break; case PSN_KILLACTIVE: // Deactivate dp->wizard_proc(hWnd, WM_WIZ_HIDE, 0, 0, wizard, wizard_page, wizard->Param); break; case PSN_WIZNEXT: // Determine the destination of [Next] button ret = dp->wizard_proc(hWnd, WM_WIZ_NEXT, 0, 0, wizard, wizard_page, wizard->Param); do_not_send_msg = true; if (ret == 0) { SetWindowLong(hWnd, DWLP_MSGRESULT, -1); } else { SetWindowLong(hWnd, DWLP_MSGRESULT, ret); } ret_value = 1; break; case PSN_WIZBACK: // Determine the destination of [back] button ret = dp->wizard_proc(hWnd, WM_WIZ_BACK, 0, 0, wizard, wizard_page, wizard->Param); do_not_send_msg = true; if (ret == 0) { SetWindowLong(hWnd, DWLP_MSGRESULT, -1); } else { SetWindowLong(hWnd, DWLP_MSGRESULT, ret); } ret_value = 1; break; case PSN_QUERYCANCEL: // Determine the process of the [Cancel] button if (dp->wizard_page->EnableClose == false) { SetWindowLong(hWnd, DWLP_MSGRESULT, 1); } else { ret = dp->wizard_proc(hWnd, WM_WIZ_CLOSE, 0, 0, wizard, wizard_page, wizard->Param); if (ret == 0) { if (IsEmptyUniStr(wizard->CloseConfirmMsg) == false && MsgBox(hWnd, MB_ICONQUESTION | MB_YESNO | MB_DEFBUTTON2, wizard->CloseConfirmMsg) == IDNO) { ret = 1; } } if (ret == 0) { SetWindowLong(hWnd, DWLP_MSGRESULT, 0); } else { SetWindowLong(hWnd, DWLP_MSGRESULT, 1); } } ret_value = 1; do_not_send_msg = true; break; } break; } } if (do_not_send_msg == false) { if (dp != NULL) { UINT ret = dp->wizard_proc(hWnd, msg, wParam, lParam, wizard, wizard_page, wizard->Param); if (ret != 0) { ret_value = ret; } } } if (msg == WM_INITDIALOG) { if (wizard->SetCenterFlag == false) { wizard->SetCenterFlag = true; Center(wizard->hWndWizard); } SetForegroundWindow(wizard->hWndWizard); SetActiveWindow(wizard->hWndWizard); } return ret_value; } // Button setting of the wizard void SetWizardButton(WIZARD_PAGE *p, bool enable_next, bool enable_back, bool enable_close, bool is_finish) { SetWizardButtonEx(p, enable_next, enable_back, enable_close, is_finish, false); } void SetWizardButtonEx(WIZARD_PAGE *p, bool enable_next, bool enable_back, bool enable_close, bool is_finish, bool shield_icon) { DWORD flags = 0; DWORD flags2 = 0; DWORD flags3 = 0; // Validate arguments if (p == NULL) { return; } p->EnableNext = enable_next; p->EnableBack = enable_back; p->EnableClose = enable_close; p->IsFinish = is_finish; if (is_finish == false) { if (p->EnableNext) { flags |= PSWIZB_NEXT; flags2 |= PSWIZB_NEXT; if (shield_icon) { if (p->Wizard->IsAreoStyle) { if (MsIsAdmin() == false) { flags3 |= PSWIZBF_ELEVATIONREQUIRED; } } } } } else { if (p->EnableNext) { flags |= PSWIZB_FINISH; flags2 |= PSWIZB_FINISH; } else { flags |= PSWIZB_DISABLEDFINISH; flags2 |= PSWIZB_FINISH; } } if (p->EnableBack) { flags |= PSWIZB_BACK; flags2 |= PSWIZB_BACK; } if (p->EnableClose) { flags2 |= 0x00000010; } PostMessage(p->Wizard->hWndWizard, PSM_SETWIZBUTTONS, flags3, flags); SetEnable(p->Wizard->hWndWizard, IDCANCEL, p->EnableClose); WINUI_PropSheet_ShowWizButtons(p->Wizard->hWndWizard, flags2, PSWIZB_BACK | PSWIZB_NEXT | PSWIZB_FINISH | 0x00000010); if (p->EnableClose) { EnableClose(p->Wizard->hWndWizard); } else { DisableClose(p->Wizard->hWndWizard); } } LRESULT CALLBACK WizardCustomizedWindowProc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam) { WIZARD *wizard = (WIZARD *)TlsGetValue(tls_current_wizard); if (wizard != NULL) { switch (msg) { case WM_CTLCOLORBTN: case WM_CTLCOLORDLG: case WM_CTLCOLOREDIT: case WM_CTLCOLORLISTBOX: case WM_CTLCOLORMSGBOX: case WM_CTLCOLORSCROLLBAR: case WM_CTLCOLORSTATIC: return (UINT)GetStockObject(WHITE_BRUSH); break; } return CallWindowProcW(wizard->OriginalWindowProc, hWnd, msg, wParam, lParam); } else { return 0; } } // Procedure of the wizard UINT CALLBACK WizardDlgProc(HWND hWnd, UINT msg, LPARAM lParam) { WIZARD *wizard = (WIZARD *)TlsGetValue(tls_current_wizard); switch (msg) { case PSCB_INITIALIZED: if (wizard != NULL) { if (wizard->hWndWizard != NULL) { wizard->hWndWizard = hWnd; } if (wizard->ReplaceWindowProcFlag == false) { wizard->ReplaceWindowProcFlag = true; wizard->OriginalWindowProc = (void *)GetWindowLongPtrW(hWnd, GWLP_WNDPROC); if (wizard->OriginalWindowProc != NULL) { SetWindowLongPtrW(hWnd, GWLP_WNDPROC, (LONG_PTR)WizardCustomizedWindowProc); } } } break; } return 0; } // Jump to another wizard page void JumpWizard(WIZARD_PAGE *p, UINT next_id) { // Validate arguments if (p == NULL || next_id == 0) { return; } PropSheet_SetCurSelByID(p->Wizard->hWndWizard, next_id); } // Close the wizard void CloseWizard(WIZARD_PAGE *p) { // Validate arguments if (p == NULL) { return; } p->Wizard->CloseConfirmMsg = NULL; SetWizardButton(p, false, false, true, false); if (p->Wizard->IsAreoStyle) { PropSheet_PressButton(p->hWndPage, PSBTN_CANCEL); } else { Close(p->Wizard->hWndWizard); } } // Show the wizard void ShowWizard(HWND hWndParent, WIZARD *w, UINT start_id) { void **pages_array; UINT num_pages; UINT i; PROPSHEETHEADERW_V2 h; WIZARD_PAGE *start_page; // Validate arguments if (w == NULL) { return; } num_pages = LIST_NUM(w->Pages); pages_array = ZeroMalloc(sizeof(void *) * num_pages); for (i = 0;i < num_pages;i++) { WIZARD_PAGE *p = LIST_DATA(w->Pages, i); pages_array[i] = CreateWizardPageInstance(w, p); p->Index = i; } Zero(&h, sizeof(h)); h.dwSize = sizeof(PROPSHEETHEADERW_V2); h.dwFlags = PSH_WIZARD97 | PSH_HEADER | PSH_USEICONID | PSH_USECALLBACK; if (MsIsAeroColor() == false) { // Aero Wizard can not be used If the color of Aero is disabled // even in Vista or later (if the background color is not white) w->IsAreoStyle = false; } if (MsIsWindows10()) { // Windows 10 Icon Bug: Disable Aero Style! w->IsAreoStyle = false; } if (w->IsAreoStyle) { // Aero Wizard h.dwFlags = PSH_WIZARD | 0x00004000 | PSH_HEADER | PSH_USEICONID | PSH_USECALLBACK; } h.hInstance = hDll; h.pszIcon = MAKEINTRESOURCEW(w->Icon); h.hwndParent = hWndParent; h.nPages = num_pages; h.phpage = (HPROPSHEETPAGE *)pages_array; h.pszbmHeader = MAKEINTRESOURCEW(w->Bitmap); h.pszCaption = w->Caption; h.pfnCallback = WizardDlgProc; start_page = GetWizardPage(w, start_id); if (start_page != NULL) { h.nStartPage = start_page->Index; } w->hWndParent = hWndParent; w->hWndWizard = NULL; w->SetCenterFlag = false; TlsSetValue(tls_current_wizard, w); PropertySheetW(&h); TlsSetValue(tls_current_wizard, NULL); Free(pages_array); } // Create an instance of the wizard page void *CreateWizardPageInstance(WIZARD *w, WIZARD_PAGE *p) { PROPSHEETPAGEW_V3 t; // Validate arguments if (w == NULL || p == NULL) { return NULL; } Zero(&t, sizeof(t)); t.dwSize = sizeof(PROPSHEETPAGEW_V3); t.dwFlags = PSP_USETITLE | PSP_USEHEADERTITLE;// | PSP_USEHEADERSUBTITLE; t.hInstance = hDll; t.pszTemplate = MAKEINTRESOURCEW(p->Id); t.pfnDlgProc = (DLGPROC)WizardPageDefDlgProc; t.pszHeaderTitle = p->Title; t.pszTitle = w->Caption; if (p->DialogParam != NULL) { FreeBitmapList(p->DialogParam->BitmapList); Free(p->DialogParam); } p->DialogParam = ZeroMalloc(sizeof(DIALOG_PARAM)); p->DialogParam->BitmapList = NewBitmapList(); p->DialogParam->wizard = w; p->DialogParam->wizard_page = p; p->DialogParam->wizard_proc = p->Proc; p->DialogParam->param = w->Param; p->DialogParam->white = false; p->DialogParam->meiryo = false; t.lParam = (LPARAM)p->DialogParam; return CreatePropertySheetPageW(&t); } // Create a new wizard WIZARD *NewWizard(UINT icon, UINT bitmap, wchar_t *caption, void *param) { WIZARD *w = ZeroMalloc(sizeof(WIZARD)); w->Icon = icon; w->Pages = NewList(NULL); w->Param = param; w->Bitmap = bitmap; w->Caption = CopyUniStr(caption); return w; } // Release the wizard void FreeWizard(WIZARD *w) { UINT i; // Validate arguments if (w == NULL) { return; } for (i = 0;i < LIST_NUM(w->Pages);i++) { WIZARD_PAGE *p = LIST_DATA(w->Pages, i); FreeWizardPage(p); } ReleaseList(w->Pages); Free(w->Caption); Free(w); } // Get the wizard page WIZARD_PAGE *GetWizardPage(WIZARD *w, UINT id) { UINT i; // Validate arguments if (w == NULL || id == 0) { return NULL; } for (i = 0;i < LIST_NUM(w->Pages);i++) { WIZARD_PAGE *p = LIST_DATA(w->Pages, i); if (p->Id == id) { return p; } } return NULL; } // Add a wizard page void AddWizardPage(WIZARD *w, WIZARD_PAGE *p) { // Validate arguments if (w == NULL || p == NULL) { return; } Add(w->Pages, p); p->Wizard = w; } // Create a new wizard page WIZARD_PAGE *NewWizardPage(UINT id, WINUI_WIZARD_PROC *proc, wchar_t *title) { WIZARD_PAGE *p; // Validate arguments if (id == 0 || proc == NULL) { return NULL; } p = ZeroMalloc(sizeof(WIZARD_PAGE)); p->Id = id; p->Proc = proc; p->Title = CopyUniStr(title); return p; } // Release the wizard page void FreeWizardPage(WIZARD_PAGE *p) { // Validate arguments if (p == NULL) { return; } if (p->DialogParam != NULL) { FreeBitmapList(p->DialogParam->BitmapList); Free(p->DialogParam); } Free(p->Title); Free(p); } // NIC information dialog procedure UINT NicInfoProc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam, void *param) { UI_NICINFO *info = (UI_NICINFO *)param; switch (msg) { case WM_INITDIALOG: NicInfoInit(hWnd, info); SetTimer(hWnd, 1, 50, NULL); break; case WM_TIMER: switch (wParam) { case 1: KillTimer(hWnd, 1); NicInfoOnTimer(hWnd, info); SetTimer(hWnd, 1, 50, NULL); break; case 2: KillTimer(hWnd, 2); Close(hWnd); break; } break; case WM_COMMAND: switch (wParam) { case IDOK: case IDCANCEL: Close(hWnd); break; } break; case WM_CLOSE: KillTimer(hWnd, 1); KillTimer(hWnd, 2); EndDialog(hWnd, 0); break; } return 0; } void NicInfoCloseAfterTime(HWND hWnd, UI_NICINFO *info, UINT tick) { UINT64 now; UINT64 closetime; // Validate arguments if (hWnd == NULL || info == NULL) { return; } now = Tick64(); closetime = now + (UINT64)tick; if (info->CloseAfterTime == 0 || info->CloseAfterTime >= closetime) { info->CloseAfterTime = closetime; KillTimer(hWnd, 2); SetTimer(hWnd, 2, tick, NULL); } } void NicInfoShowStatus(HWND hWnd, UI_NICINFO *info, wchar_t *msg1, wchar_t *msg2, UINT icon, bool animate) { // Validate arguments if (hWnd == NULL || info == NULL) { return; } if (icon == 0) { icon = ICO_TEST; } if (msg1 == NULL) { msg1 = L""; } if (msg2 == NULL) { msg2 = L""; } if (info->CurrentIcon != icon) { SetIcon(hWnd, S_ICON, icon); info->CurrentIcon = icon; } SetText(hWnd, S_STATUS1, msg1); SetText(hWnd, S_STATUS2, msg2); SetShow(hWnd, P_BAR, animate); } void NicInfoRefresh(HWND hWnd, UI_NICINFO *info) { MS_ADAPTER *a; IP ip; char ip_str[MAX_SIZE]; char title[MAX_SIZE]; UINT i; wchar_t tmp[MAX_SIZE]; bool has_ip = false; // Validate arguments if (hWnd == NULL || info == NULL) { return; } Format(title, sizeof(title), VLAN_ADAPTER_NAME_TAG, info->NicName); a = MsGetAdapter(title); if (a == NULL) { Close(hWnd); return; } // Check whether an IP address is assigned Zero(&ip, sizeof(ip)); for (i = 0;i < MAX_MS_ADAPTER_IP_ADDRESS;i++) { if (IsZeroIP(&a->IpAddresses[i]) == false) { Copy(&ip, &a->IpAddresses[i], sizeof(IP)); if (!(IPV4(ip.address)[0] == 169 && IPV4(ip.address)[1] == 254)) { has_ip = true; } } } IPToStr(ip_str, sizeof(ip_str), &ip); if (has_ip == false) { if (a->UseDhcp) { NicInfoShowStatus(hWnd, info, _UU("NICINFO_1"), _UU("NICINFO_1_1"), ICO_NIC_OFFLINE, true); } else { NicInfoShowStatus(hWnd, info, _UU("NICINFO_1"), _UU("NICINFO_1_2"), ICO_NIC_OFFLINE, true); } } else { if (a->UseDhcp) { UniFormat(tmp, sizeof(tmp), _UU("NICINFO_2_1"), ip_str); NicInfoShowStatus(hWnd, info, _UU("NICINFO_2"), tmp, ICO_NIC_ONLINE, false); } else { UniFormat(tmp, sizeof(tmp), _UU("NICINFO_3_1"), ip_str); NicInfoShowStatus(hWnd, info, _UU("NICINFO_3"), tmp, ICO_NIC_ONLINE, false); } NicInfoCloseAfterTime(hWnd, info, NICINFO_AUTOCLOSE_TIME_2); } MsFreeAdapter(a); } void NicInfoInit(HWND hWnd, UI_NICINFO *info) { // Validate arguments if (hWnd == NULL || info == NULL) { return; } // Show a progress bar SendMsg(hWnd, P_BAR, PBM_SETMARQUEE, TRUE, 150); SetStyle(hWnd, P_BAR, PBS_MARQUEE); DlgFont(hWnd, S_STATUS1, 9, false); DlgFont(hWnd, S_STATUS2, 11, false); SetIcon(hWnd, 0, ICO_NIC_ONLINE); FormatText(hWnd, 0, info->NicName); NicInfoRefresh(hWnd, info); NicInfoCloseAfterTime(hWnd, info, NICINFO_AUTOCLOSE_TIME_1); } void NicInfoOnTimer(HWND hWnd, UI_NICINFO *info) { // Validate arguments if (hWnd == NULL || info == NULL) { return; } if (info->Halt) { Close(hWnd); return; } if (info->RouteChange != NULL && IsRouteChanged(info->RouteChange) == false) { return; } NicInfoRefresh(hWnd, info); } // Show the NIC information dialog void NicInfo(UI_NICINFO *info) { // Validate arguments if (info == NULL) { return; } info->RouteChange = NewRouteChange(); DialogEx2(NULL, D_NICINFO, NicInfoProc, info, true, true); FreeRouteChange(info->RouteChange); info->RouteChange = NULL; } // TCP connection thread void WinConnectDlgThread(THREAD *thread, void *param) { SOCK *s; WINCONNECT_DLG_DATA *d = (WINCONNECT_DLG_DATA *)param; UINT nat_t_error_code; char *nat_t_svc_name = NULL; // Validate arguments if (d == NULL || thread == NULL) { return; } // Socket connection if (IsEmptyStr(d->nat_t_svc_name) == false) { nat_t_svc_name = d->nat_t_svc_name; } s = ConnectEx5(d->hostname, d->port, d->timeout, &d->cancel, nat_t_svc_name, &nat_t_error_code, d->try_start_ssl, false, d->ssl_option, d->ssl_err, d->hint_str, NULL); d->ret_sock = s; d->nat_t_error_code = nat_t_error_code; PostMessageA(d->hWnd, WM_APP + 68, 0, 0); } // TCP connection dialog procedure UINT WinConnectDlgProc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam, void *param) { WINCONNECT_DLG_DATA *d = (WINCONNECT_DLG_DATA *)param; // Validate arguments if (hWnd == NULL || d == NULL) { return 0; } switch (msg) { case WM_INITDIALOG: // UI setting CenterParent(hWnd); SetText(hWnd, 0, d->caption); SetText(hWnd, S_INFO, d->info); SetIcon(hWnd, S_ICON, d->icon_id); d->hWnd = hWnd; // Show a progress bar SendMsg(hWnd, IDC_PROGRESS1, PBM_SETMARQUEE, TRUE, 100); SetStyle(hWnd, IDC_PROGRESS1, PBS_MARQUEE); // Create a thread d->thread = NewThread(WinConnectDlgThread, d); break; case WM_COMMAND: switch (wParam) { case IDCANCEL: Close(hWnd); break; } break; case WM_APP + 68: case WM_CLOSE: if (d->cancel == false) { d->cancel = true; Disable(hWnd, IDCANCEL); if (d->ret_sock == NULL) { SetText(hWnd, S_INFO, _UU("CONNECTDLG_CANCELING")); } DoEvents(hWnd); Refresh(hWnd); WaitThread(d->thread, INFINITE); ReleaseThread(d->thread); EndDialog(hWnd, 0); } break; } return 0; } // TCP connection with showing the UI SOCK *WinConnectEx3(HWND hWnd, char *server, UINT port, UINT timeout, UINT icon_id, wchar_t *caption, wchar_t *info, UINT *nat_t_error_code, char *nat_t_svc_name, bool try_start_ssl) { return WinConnectEx4(hWnd, server, port, timeout, icon_id, caption, info, nat_t_error_code, nat_t_svc_name, try_start_ssl, NULL, NULL, NULL); } SOCK *WinConnectEx4(HWND hWnd, char *server, UINT port, UINT timeout, UINT icon_id, wchar_t *caption, wchar_t *info, UINT *nat_t_error_code, char *nat_t_svc_name, bool try_start_ssl, SSL_VERIFY_OPTION *ssl_option, UINT *ssl_err, char *hint_str) { wchar_t tmp[MAX_SIZE]; wchar_t tmp2[MAX_SIZE]; WINCONNECT_DLG_DATA d; // Validate arguments if (server == NULL || port == 0) { return NULL; } if (icon_id == 0) { icon_id = ICO_USER_ADMIN; } if (caption == NULL) { if (hWnd == NULL) { caption = _UU("CONNECTDLG_CAPTION"); } else { GetTxt(hWnd, 0, tmp2, sizeof(tmp2)); caption = tmp2; } } if (info == NULL) { UniFormat(tmp, sizeof(tmp), _UU("CONNECTDLG_MESSAGE"), server, port); info = tmp; } Zero(&d, sizeof(d)); d.try_start_ssl = try_start_ssl; d.cancel = false; d.caption = caption; d.icon_id = icon_id; d.info = info; d.timeout = timeout; d.hostname = server; d.port = port; d.ssl_option = ssl_option; d.ssl_err = ssl_err; d.hint_str = hint_str; StrCpy(d.nat_t_svc_name, sizeof(d.nat_t_svc_name), nat_t_svc_name); Dialog(hWnd, D_CONNECT, WinConnectDlgProc, &d); if (nat_t_error_code != NULL) { *nat_t_error_code = d.nat_t_error_code; } return d.ret_sock; } // Show the Windows Network Setup screen bool ShowWindowsNetworkConnectionDialog() { wchar_t exe_name[MAX_SIZE]; void *proc; CombinePathW(exe_name, sizeof(exe_name), MsGetSystem32DirW(), L"control.exe"); proc = Win32RunEx2W(exe_name, L"netconnections", false, NULL); if (proc == NULL) { return false; } Win32CloseProcess(proc); return true; } // Get the best Meiryo font name for the current OS char *GetMeiryoFontName() { if (MsIsWindows7()) { return "Meiryo UI"; } else { return "Meiryo"; } } // Get the Meiryo font HFONT GetMeiryoFont() { return GetMeiryoFontEx(0); } HFONT GetMeiryoFontEx(UINT font_size) { return GetMeiryoFontEx2(font_size, false); } HFONT GetMeiryoFontEx2(UINT font_size, bool bold) { if (_GETLANG() == 0) { return GetFont(GetMeiryoFontName(), font_size, bold, false, false, false); } else if (_GETLANG() == 2) { return GetFont("Microsoft YaHei", font_size, bold, false, false, false); } else if (_GETLANG() == 3) { return GetFont("Microsoft JhengHei", font_size, bold, false, false, false); } else { return GetFont(NULL, font_size, bold, false, false, false); } } // Set font to Meiryo void SetFontMeiryo(HWND hWnd, UINT id, UINT font_size) { SetFont(hWnd, id, GetMeiryoFontEx(font_size)); } // Set as the default font void SetFontDefault(HWND hWnd, UINT id) { SetFont(hWnd, id, GetDialogDefaultFont()); } // Display the warning messages about bad process void ShowBadProcessWarning(HWND hWnd, BAD_PROCESS *bad) { wchar_t title[MAX_SIZE]; wchar_t message[8192]; // Validate arguments if (bad == NULL) { return; } UniFormat(title, sizeof(title), _UU("BAD_PROCESS_TITLE"), bad->Title); UniFormat(message, sizeof(message), _UU("BAD_PROCESS_MESSAGE"), bad->Title, bad->Title, bad->Title, bad->Title); OnceMsg(hWnd, title, message, true, ICO_WARNING); } // If there is process which is included in incompatible anti-virus software list, show appropriate bool CheckBadProcesses(HWND hWnd) { bool ret = true; UINT i; LIST *o; o = MsGetProcessList(); for (i = 0;i < LIST_NUM(o);i++) { MS_PROCESS *p = LIST_DATA(o, i); char exe[MAX_PATH]; BAD_PROCESS *bad; GetFileNameFromFilePath(exe, sizeof(exe), p->ExeFilename); bad = IsBadProcess(exe); if (bad != NULL) { // Display the message because a bad process have been found ret = false; ShowBadProcessWarning(hWnd, bad); } } MsFreeProcessList(o); return ret; } // Search whether the specified process name is the appropriate to a bad process BAD_PROCESS *IsBadProcess(char *exe) { UINT i; // Validate arguments if (exe == NULL) { return NULL; } for (i = 0;i < num_bad_processes;i++) { BAD_PROCESS *bad = &bad_processes[i]; if (StrCmpi(bad->ExeName, exe) == 0) { return bad; } } return NULL; } // Message display procedure UINT OnceMsgProc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam, void *param) { ONCEMSG_DLG *d = (ONCEMSG_DLG *)param; // Validate arguments if (hWnd == NULL) { return 0; } switch (msg) { case WM_INITDIALOG: SetText(hWnd, 0, d->Title); SetText(hWnd, E_TEXT, d->Message); SetShow(hWnd, C_DONTSHOWAGAIN, d->ShowCheckbox); //DisableClose(hWnd); Focus(hWnd, IDCANCEL); if (d->Icon != 0) { SetIcon(hWnd, 0, d->Icon); } SetFont(hWnd, E_TEXT, GetMeiryoFont()); SetTimer(hWnd, 1, 50, NULL); break; case WM_TIMER: switch (wParam) { case 1: if (*d->halt) { Close(hWnd); } break; } break; case WM_COMMAND: switch (wParam) { case IDOK: case IDCANCEL: Close(hWnd); break; } break; case WM_CLOSE: KillTimer(hWnd, 1); d->Checked = IsChecked(hWnd, C_DONTSHOWAGAIN); EndDialog(hWnd, 0); break; } return 0; } // Show a message void OnceMsg(HWND hWnd, wchar_t *title, wchar_t *message, bool show_checkbox, UINT icon) { OnceMsgEx(hWnd, title, message, show_checkbox, icon, NULL); } void OnceMsgEx(HWND hWnd, wchar_t *title, wchar_t *message, bool show_checkbox, UINT icon, bool *halt) { ONCEMSG_DLG d; UINT hash; char valuename[MAX_PATH]; bool b_dummy = false; // Validate arguments if (title == NULL) { title = title_bar; } if (message == NULL) { message = L"message"; } if (halt == NULL) { halt = &b_dummy; } Zero(&d, sizeof(d)); d.Message = message; d.Title = title; d.ShowCheckbox = show_checkbox; d.Icon = icon; d.halt = halt; hash = GetOnceMsgHash(title, message); Format(valuename, sizeof(valuename), ONCE_MSG_REGVALUE, hash); if (MsRegReadInt(REG_CURRENT_USER, ONCE_MSG_REGKEY, valuename) == 0) { switch (icon) { case ICO_WARNING: MessageBeep(MB_ICONEXCLAMATION); break; case ICO_INFORMATION: MessageBeep(MB_ICONASTERISK); break; } Dialog(hWnd, D_ONCEMSG, OnceMsgProc, &d); if (show_checkbox) { if (d.Checked) { MsRegWriteInt(REG_CURRENT_USER, ONCE_MSG_REGKEY, valuename, 1); } } } } // Get the message hash UINT GetOnceMsgHash(wchar_t *title, wchar_t *message) { BUF *b; UCHAR hash[SHA1_SIZE]; UINT ret; // Validate arguments if (title == NULL) { title = title_bar; } if (message == NULL) { message = L"message"; } b = NewBuf(); // 2013.5.19: Exclude the title from the hash calculation //WriteBuf(b, title, UniStrSize(title)); WriteBuf(b, message, UniStrSize(message)); Sha1(hash, b->Buf, b->Size); FreeBuf(b); Copy(&ret, hash, sizeof(UINT)); return ret; } // Set a theme for Windows Vista void InitVistaWindowTheme(HWND hWnd) { static HINSTANCE hInstDll = NULL; HRESULT (WINAPI *_SetWindowTheme)(HWND, LPCWSTR, LPCWSTR) = NULL; if (hInstDll == NULL) { hInstDll = LoadLibraryA("uxtheme.dll"); } if (hInstDll == NULL) { return; } if (_SetWindowTheme == NULL) { _SetWindowTheme = (HRESULT (WINAPI *)(HWND,LPCWSTR,LPCWSTR))GetProcAddress(hInstDll, "SetWindowTheme"); } if (_SetWindowTheme == NULL) { return; } _SetWindowTheme(hWnd, L"explorer", NULL); } // Register all applications to be registered in the Windows firewall // that may be present in the current directory void RegistWindowsFirewallAll() { char exedir[MAX_SIZE]; GetExeDir(exedir, sizeof(exedir)); RegistWindowsFirewallAllEx(exedir); } void RegistWindowsFirewallAllEx(char *dir) { MsRegistWindowsFirewallEx2(CEDAR_CLIENT_STR, "vpnclient.exe", dir); MsRegistWindowsFirewallEx2(CEDAR_CLIENT_MANAGER_STR, "vpncmgr.exe", dir); MsRegistWindowsFirewallEx2(CEDAR_MANAGER_STR, "vpnsmgr.exe", dir); MsRegistWindowsFirewallEx2(CEDAR_SERVER_STR, "vpnserver.exe", dir); MsRegistWindowsFirewallEx2(CEDAR_BRIDGE_STR, "vpnbridge.exe", dir); MsRegistWindowsFirewallEx2(CEDAR_CUI_STR, "vpncmd.exe", dir); MsRegistWindowsFirewallEx2(CEDAR_PRODUCT_STR, "vpntest.exe", dir); } // Check whether the notification service is already running bool Win32CnCheckAlreadyExists(bool lock) { char tmp[MAX_SIZE]; HANDLE hMutex; HashInstanceNameLocal(tmp, sizeof(tmp), CLIENT_NOTIFY_SERVICE_INSTANCENAME); hMutex = OpenMutex(MUTEX_ALL_ACCESS, FALSE, tmp); if (hMutex != NULL) { CloseHandle(hMutex); return true; } if (lock == false) { return false; } hMutex = CreateMutex(NULL, FALSE, tmp); if (hMutex == NULL) { CloseHandle(hMutex); return true; } return false; } // Show the Easter Egg void ShowEasterEgg(HWND hWnd) { } // TCP/IP optimization selection dialog procedure UINT TcpMsgDlgProc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam, void *param) { UINT ret; // Validate arguments if (hWnd == NULL) { return 0; } switch (msg) { case WM_INITDIALOG: SetIcon(hWnd, 0, ICO_SETUP); //DlgFont(hWnd, R_OPTIMIZE, 0, true); Check(hWnd, R_NO, true); if (g_tcpip_topmost) { Top(hWnd); } break; case WM_COMMAND: switch (wParam) { case IDOK: ret = 1; if (IsChecked(hWnd, R_MANUAL)) { ret = 2; } else if (IsChecked(hWnd, R_NO)) { ret = 0; } EndDialog(hWnd, ret); break; } break; case WM_CLOSE: return 1; } return 0; } // Initialize the dialog void TcpIpDlgInit(HWND hWnd) { MS_TCP tcp; SetIcon(hWnd, 0, ICO_SETUP); MsGetTcpConfig(&tcp); Check(hWnd, R_RECV_DISABLE, tcp.RecvWindowSize == 0); Check(hWnd, R_RECV_ENABLE, tcp.RecvWindowSize != 0); SetInt(hWnd, E_RECV, tcp.RecvWindowSize != 0 ? tcp.RecvWindowSize : DEFAULT_TCP_MAX_WINDOW_SIZE_RECV); Check(hWnd, R_SEND_DISABLE, tcp.SendWindowSize == 0); Check(hWnd, R_SEND_ENABLE, tcp.SendWindowSize != 0); SetInt(hWnd, E_SEND, tcp.SendWindowSize != 0 ? tcp.SendWindowSize : DEFAULT_TCP_MAX_WINDOW_SIZE_SEND); TcpIpDlgUpdate(hWnd); Top(hWnd); } // Update the dialog void TcpIpDlgUpdate(HWND hWnd) { bool ok = true; SetEnable(hWnd, E_RECV, IsChecked(hWnd, R_RECV_ENABLE)); SetEnable(hWnd, S_RECV, IsChecked(hWnd, R_RECV_ENABLE)); SetEnable(hWnd, E_SEND, IsChecked(hWnd, R_SEND_ENABLE)); SetEnable(hWnd, S_SEND, IsChecked(hWnd, R_SEND_ENABLE)); if (IsChecked(hWnd, R_RECV_ENABLE) && GetInt(hWnd, E_RECV) < 1454) { ok = false; } if (IsChecked(hWnd, R_SEND_ENABLE) && GetInt(hWnd, E_SEND) < 1454) { ok = false; } SetEnable(hWnd, IDOK, ok); } // TCP/IP dialog procedure UINT TcpIpDlgProc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam, void *param) { MS_TCP tcp, old; // Validate arguments if (hWnd == NULL) { return 0; } switch (msg) { case WM_INITDIALOG: TcpIpDlgInit(hWnd); if (g_tcpip_topmost) { Top(hWnd); } break; case WM_COMMAND: switch (LOWORD(wParam)) { case R_RECV_DISABLE: case R_RECV_ENABLE: case R_SEND_DISABLE: case R_SEND_ENABLE: case E_RECV: case E_SEND: TcpIpDlgUpdate(hWnd); break; } switch (wParam) { case IDOK: Zero(&tcp, sizeof(tcp)); if (IsChecked(hWnd, R_RECV_ENABLE)) { tcp.RecvWindowSize = GetInt(hWnd, E_RECV); } if (IsChecked(hWnd, R_SEND_ENABLE)) { tcp.SendWindowSize = GetInt(hWnd, E_SEND); } MsGetTcpConfig(&old); MsSetTcpConfig(&tcp); MsSaveTcpConfigReg(&tcp); EndDialog(hWnd, true); break; case IDCANCEL: Close(hWnd); break; case R_RECV_ENABLE: FocusEx(hWnd, E_RECV); break; case R_SEND_ENABLE: FocusEx(hWnd, E_SEND); break; case B_RECV: SetInt(hWnd, E_RECV, DEFAULT_TCP_MAX_WINDOW_SIZE_RECV); Check(hWnd, R_RECV_DISABLE, false); Check(hWnd, R_RECV_ENABLE, true); TcpIpDlgUpdate(hWnd); FocusEx(hWnd, E_RECV); break; case B_SEND: SetInt(hWnd, E_SEND, DEFAULT_TCP_MAX_WINDOW_SIZE_SEND); Check(hWnd, R_SEND_DISABLE, false); Check(hWnd, R_SEND_ENABLE, true); TcpIpDlgUpdate(hWnd); FocusEx(hWnd, E_SEND); break; case B_DELETE: Zero(&tcp, sizeof(tcp)); MsSetTcpConfig(&tcp); MsDeleteTcpConfigReg(); EndDialog(hWnd, 0); break; } break; case WM_CLOSE: EndDialog(hWnd, false); break; } return 0; } // Warning dialog about 64-bit UINT Cpu64DlgProc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam, void *param) { switch (msg) { case WM_INITDIALOG: SetIcon(hWnd, 0, ICO_WARNING); DlgFont(hWnd, S_BOLD, 9, true); SetTimer(hWnd, 1, 30 * 1000, NULL); break; case WM_TIMER: switch (wParam) { case 1: KillTimer(hWnd, 1); Command(hWnd, IDOK); break; } break; case WM_COMMAND: switch (wParam) { case IDOK: case IDCANCEL: Close(hWnd); break; } break; case WM_CLOSE: EndDialog(hWnd, 0); break; } return 0; } // Display a warning dialog about 64-bit void ShowCpu64Warning() { Dialog(NULL, D_CPU64_WARNING, Cpu64DlgProc, NULL); } // Show the TCP/IP configuration utility void ShowTcpIpConfigUtil(HWND hWnd, bool util_mode) { if (MsIsTcpConfigSupported() == false) { if (util_mode) { // Show a message that is not supported by the current OS if (MsIsAdmin() == false) { MsgBox(hWnd, MB_ICONINFORMATION, _UU("TCPOPT_NOT_ADMIN")); } else { MsgBox(hWnd, MB_ICONINFORMATION, _UU("TCPOPT_NOT_SUPPORTED")); } } return; } if (util_mode == false) { // Exit immediately by start the vpncmd wchar_t tmp[MAX_PATH]; wchar_t exedir[MAX_PATH]; HANDLE h; GetExeDirW(exedir, sizeof(exedir)); UniFormat(tmp, sizeof(tmp), L"%s\\vpncmd.exe", exedir); if (IsFileW(tmp)) { RunW(tmp, L"/tool /cmd:exit", true, false); } // Disable the task off-loading by netsh if (true) { DIRLIST *dl; UINT i; bool b = false; dl = EnumDirW(exedir); for (i = 0;i < dl->NumFiles;i++) { if (UniInStr(dl->File[i]->FileNameW, L"vpnbridge") || UniInStr(dl->File[i]->FileNameW, L"vpnserver")) { b = true; } } FreeDir(dl); if (b) { // Disable the off-loading MsDisableNetworkOffloadingEtc(); } } // Windows Firewall registration RegistWindowsFirewallAll(); SleepThread(1000); // Start vpnclient.exe /uihelp h = CmExecUiHelperMain(); if (h != NULL) { CloseHandle(h); } if (Is64() == false) { if (MsIs64BitWindows()) { // Show a warning message if a 32-bit version is used in 64-bit Windows ShowCpu64Warning(); } } if (MsIsAdmin()) { // If installing on Windows Vista, // dispel the network limitation of MMCSS if (MsIsMMCSSNetworkThrottlingEnabled()) { MsSetMMCSSNetworkThrottlingEnable(false); } } } if (util_mode == false && MsIsShouldShowTcpConfigApp() == false) { return; } if (util_mode == false) { // 2006.07.04 nobori // I decided not to show TCP/IP optimization utility in the installer return; } g_tcpip_topmost = util_mode ? false : true; if (util_mode == false) { UINT ret = Dialog(hWnd, D_TCP_MSG, TcpMsgDlgProc, NULL); if (ret == 0) { MS_TCP tcp; Zero(&tcp, sizeof(tcp)); MsGetTcpConfig(&tcp); MsSaveTcpConfigReg(&tcp); return; } else if (ret == 1) { MS_TCP tcp; Zero(&tcp, sizeof(tcp)); tcp.RecvWindowSize = DEFAULT_TCP_MAX_WINDOW_SIZE_RECV; tcp.SendWindowSize = DEFAULT_TCP_MAX_WINDOW_SIZE_SEND; MsSetTcpConfig(&tcp); MsSaveTcpConfigReg(&tcp); return; } } Dialog(hWnd, D_TCP, TcpIpDlgProc, NULL); } // Internationalization of menu (Unicode) void InitMenuInternationalUni(HMENU hMenu, char *prefix) { UINT i, num; // Validate arguments if (hMenu == NULL || prefix == NULL) { return; } // Get the number of items in the menu num = GetMenuItemCount(hMenu); // Enumerate the menu items for (i = 0;i < num;i++) { HMENU hSubMenu = GetSubMenu(hMenu, i); MENUITEMINFOW info; wchar_t tmp[MAX_SIZE]; if (hSubMenu != NULL) { // If there is a sub-menu, call it recursively InitMenuInternational(hSubMenu, prefix); } // Get the menu item Zero(&info, sizeof(info)); info.cbSize = sizeof(info); info.cch = sizeof(tmp); info.dwTypeData = tmp; info.fMask = MIIM_STRING; Zero(tmp, sizeof(tmp)); if (GetMenuItemInfoW(hMenu, i, true, &info)) { if (tmp[0] == L'@') { char name[256]; wchar_t *ret; Format(name, sizeof(name), "%s@%S", prefix, &tmp[1]); ret = _UU(name); if (UniIsEmptyStr(ret) == false) { UniStrCpy(tmp, sizeof(tmp), ret); info.cch = UniStrLen(tmp); SetMenuItemInfoW(hMenu, i, true, &info); } } } } } // Internationalization of menu void InitMenuInternational(HMENU hMenu, char *prefix) { // Validate arguments if (hMenu == NULL || prefix == NULL) { return; } InitMenuInternationalUni(hMenu, prefix); } // Get the default font for the dialog box HFONT GetDialogDefaultFont() { return GetDialogDefaultFontEx(false); } HFONT GetDialogDefaultFontEx(bool meiryo) { char *default_font_name = _SS("DEFAULT_FONT"); UINT default_font_size = _II("DEFAULT_FONT_SIZE"); char *win7_font = _SS("DEFAULT_FONT_WIN7"); if (meiryo) { if (_GETLANG() == 2) { default_font_name = "Microsoft YaHei"; } if (_GETLANG() == 3) { default_font_name = "Microsoft JhengHei"; } else { default_font_name = GetMeiryoFontName(); } } if (MsIsWindows7()) { if (IsEmptyStr(win7_font) == false) { default_font_name = win7_font; } if (GetTextScalingFactor() >= 1.44) { // Use a substitute font in the case of high-DPI in Windows 7 and later char *alternative_font = _SS("DEFAULT_FONT_HIGHDPI"); if (IsEmptyStr(alternative_font) == false) { default_font_name = alternative_font; } } } if (IsEmptyStr(default_font_name)) { default_font_name = font_name; } if (default_font_size == 0) { default_font_size = 9; } return GetFont(default_font_name, default_font_size, false, false, false, false); } // Adjust the control size and window size void AdjustWindowAndControlSize(HWND hWnd, bool *need_resize, double *factor_x, double *factor_y) { HFONT hDlgFont; UINT dlgfont_x, dlgfont_y; // Validate arguments if (hWnd == NULL || need_resize == NULL || factor_x == NULL || factor_y == NULL) { return; } *need_resize = true; // Get the font of the current window hDlgFont = (HFONT)SendMsg(hWnd, 0, WM_GETFONT, 0, 0); // Get the width and height of the font of the current window CalcFontSize(hDlgFont, &dlgfont_x, &dlgfont_y); if ((dlgfont_x == WINUI_DEFAULT_DIALOG_UNIT_X) && (dlgfont_y == WINUI_DEFAULT_DIALOG_UNIT_Y)) { // There is no need to adjust *need_resize = false; *factor_x = 1.0; *factor_y = 1.0; //Debug("// There is no need to adjust\n"); return; } // Calculate the adjustment amount *factor_x = (double)dlgfont_x / (double)WINUI_DEFAULT_DIALOG_UNIT_X; *factor_y = (double)dlgfont_y / (double)WINUI_DEFAULT_DIALOG_UNIT_Y; //Debug("Factors: %f %f\n", *factor_x, *factor_y); } // Adjust the values of x and y according to the font void AdjustDialogXY(UINT *x, UINT *y, UINT dlgfont_x, UINT dlgfont_y) { if (x != NULL) { *x = (UINT)(((double)*x) * (double)WINUI_DEFAULT_DIALOG_UNIT_X / (double)dlgfont_x); } if (y != NULL) { *y = (UINT)(((double)*y) * (double)WINUI_DEFAULT_DIALOG_UNIT_Y / (double)dlgfont_y); } } // Internationalizing process for the dialog box void InitDialogInternational(HWND hWnd, void *pparam) { LIST *o; UINT i; bool is_managed_dialog = false; char caption[MAX_PATH]; char *dialog_name; DIALOG_PARAM *param = (DIALOG_PARAM *)pparam; HDC hDC; bool need_resize = false; double factor_x = 0.0, factor_y = 0.0; // Validate arguments if (hWnd == NULL || param == NULL) { return; } hDC = CreateCompatibleDC(NULL); AdjustWindowAndControlSize(hWnd, &need_resize, &factor_x, &factor_y); GetTxtA(hWnd, 0, caption, sizeof(caption)); if (caption[0] == '@') { dialog_name = &caption[1]; is_managed_dialog = true; } // Enumerate all window handles o = EnumAllChildWindow(hWnd); for (i = 0;i < LIST_NUM(o);i++) { HWND hControl = *((HWND *)LIST_DATA(o, i)); if (hControl != NULL) { bool set_font = true; HFONT hFont = GetDialogDefaultFontEx(param && ((DIALOG_PARAM *)param)->meiryo); if (MsIsWine()) { char classname[MAX_PATH]; char parent_classname[MAX_PATH]; HWND hParent = GetParent(hControl); Zero(classname, sizeof(classname)); Zero(parent_classname, sizeof(parent_classname)); GetClassNameA(hControl, classname, sizeof(classname)); if (hParent != NULL) { GetClassNameA(hParent, parent_classname, sizeof(parent_classname)); } if (StrCmpi(classname, "edit") == 0) { set_font = false; } if (StrCmpi(classname, "combobox") == 0) { set_font = false; } if (StrCmpi(classname, "syslistview32") == 0) { set_font = false; } if (StrCmpi(classname, "sysheader32") == 0) { set_font = false; } if (StrCmpi(parent_classname, "SysIPAddress32") == 0 || StrCmpi(classname, "SysIPAddress32") == 0) { set_font = true; hFont = GetFont("Tahoma", 8, false, false, false, false); } } if (set_font) { SetFont(hControl, 0, hFont); } char classname[MAX_PATH]; GetClassNameA(hControl, classname, sizeof(classname)); if (StrCmpi(classname, "syslistview32") == 0) { InitVistaWindowTheme(hControl); } if (is_managed_dialog) { char str[MAX_PATH]; GetTxtA(hControl, 0, str, sizeof(str)); if (str[0] == '@') { char *control_name = &str[1]; char tmp[MAX_PATH]; wchar_t *ret; StrCpy(tmp, sizeof(tmp), dialog_name); StrCat(tmp, sizeof(tmp), "@"); if (hWnd == hControl) { StrCat(tmp, sizeof(tmp), "CAPTION"); } else { StrCat(tmp, sizeof(tmp), control_name); } ret = _UU(tmp); if (ret != NULL && UniIsEmptyStr(ret) == false) { SetText(hControl, 0, ret); } } } } } FreeWindowList(o); if (need_resize) { // Since the window size is changed automatically by the OS by the dpi setting // in Windows Vista or later, a static (bitmap) control needs to be expanded // by anticipating the size after changing // Enumerate all child window (not recursive) o = EnumAllChildWindowEx(hWnd, true, false, true); for (i = 0;i < LIST_NUM(o);i++) { HWND hControl = *((HWND *)LIST_DATA(o, i)); if (hControl != NULL) { char class_name[MAX_SIZE]; Zero(class_name, sizeof(class_name)); GetClassNameA(hControl, class_name, sizeof(class_name)); if (StrCmpi(class_name, "static") == 0) { UINT style = GetStyle(hControl, 0); if (style & SS_BITMAP) { // Get the Bitmap HBITMAP hBitmap = (HBITMAP)SendMessage(hControl, STM_GETIMAGE, IMAGE_BITMAP, 0); if (hBitmap != NULL) { // Get the size of this bitmap UINT src_x; UINT src_y; if (GetBitmapSize(hBitmap, &src_x, &src_y)) { RECT ctl_rect; Zero(&ctl_rect, sizeof(ctl_rect)); if (GetWindowRect(hControl, &ctl_rect)) { // Use the smaller magnification of the height and the width //double scale_factor = 1.5; double scale_factor = MIN(factor_x, factor_y); UINT dst_x = (UINT)((double)src_x * scale_factor); UINT dst_y = (UINT)((double)src_y * scale_factor); HBITMAP hDst = ResizeBitmap(hBitmap, src_x, src_y, dst_x, dst_y); if (hDst != NULL) { Add(param->BitmapList, hDst); SendMessage(hControl, STM_SETIMAGE, IMAGE_BITMAP, (LPARAM)hDst); } } } } } } } } FreeWindowList(o); } DeleteDC(hDC); } // Get the size of the bitmap bool GetBitmapSize(void *bmp, UINT *x, UINT *y) { BITMAP info; // Validate arguments if (bmp == NULL || x == NULL || y == NULL) { return false; } Zero(&info, sizeof(info)); if (GetObject((HANDLE)bmp, sizeof(info), &info) == 0) { return false; } *x = info.bmWidth; *y = info.bmHeight; return true; } // Resize the bitmap HBITMAP ResizeBitmap(HBITMAP hSrc, UINT src_x, UINT src_y, UINT dst_x, UINT dst_y) { HDC hMemDC; HDC hSrcDC; HBITMAP ret = NULL; BITMAPINFOHEADER h; BITMAPINFO bi; UCHAR *data = NULL; // Validate arguments if (hSrc == NULL) { return NULL; } hSrcDC = CreateCompatibleDC(NULL); if (hSrcDC != NULL) { HBITMAP hOld = SelectObject(hSrcDC, hSrc); if (hOld != NULL) { hMemDC = CreateCompatibleDC(NULL); if (hMemDC != NULL) { HBITMAP hOld; HBITMAP srcHbitMap; UCHAR* srcData; CT_RectF_c destRect; CT_RectF_c srcRect; Zero(&h, sizeof(h)); h.biSize = sizeof(h); h.biWidth = src_x; h.biHeight = src_y; h.biPlanes = 1; h.biBitCount = 32; h.biXPelsPerMeter = 2834; h.biYPelsPerMeter = 2834; h.biCompression = BI_RGB; // Copy once the transfer source Zero(&bi, sizeof(bi)); Copy(&bi.bmiHeader, &h, sizeof(BITMAPINFOHEADER)); srcHbitMap = CreateDIBSection(hMemDC, &bi, DIB_RGB_COLORS, &srcData, NULL, 0); hOld = SelectObject(hMemDC, srcHbitMap); BitBlt(hMemDC,0,0,src_x,src_y,hSrcDC,0,0, SRCCOPY); GdiFlush(); // Generate a resized version if(src_x != dst_x || src_y != dst_y) { h.biWidth = dst_x; h.biHeight = dst_y; Zero(&bi, sizeof(bi)); Copy(&bi.bmiHeader, &h, sizeof(BITMAPINFOHEADER)); ret = CreateDIBSection(hMemDC, &bi, DIB_RGB_COLORS, &data, NULL, 0); if(srcData != NULL && data != NULL) { destRect.X = 0; destRect.Y = 0; destRect.Width = (float)dst_x; destRect.Height = (float)dst_y; srcRect = destRect; srcRect.Width = (float)src_x; srcRect.Height = (float)src_y; CT_DrawImage((UCHAR*)data, destRect, dst_x,dst_y, (UCHAR*)srcData, srcRect,src_x, src_y); } if(srcHbitMap != NULL) { DeleteObject(srcHbitMap); } } else { ret = srcHbitMap; } SelectObject(hMemDC, hOld); DeleteDC(hMemDC); } SelectObject(hSrcDC, hOld); } DeleteDC(hSrcDC); } return ret; } // Initialize the bitmap list LIST *NewBitmapList() { LIST *o = NewListFast(NULL); return o; } // Release the bitmap list void FreeBitmapList(LIST *o) { UINT i; // Validate arguments if (o == NULL) { return; } for (i = 0;i < LIST_NUM(o);i++) { HBITMAP *h = LIST_DATA(o, i); DeleteObject(h); } ReleaseList(o); } // Child window enumeration procedure // Initialize the dialog void StringDlgInit(HWND hWnd, STRING_DLG *s) { // Validate arguments if (hWnd == NULL || s == NULL) { return; } SetText(hWnd, E_STRING, s->String); SetIcon(hWnd, S_ICON, s->Icon); SetText(hWnd, S_INFO, s->Info); SetText(hWnd, 0, s->Title); FocusEx(hWnd, E_STRING); StringDlgUpdate(hWnd, s); } // Update the dialog control void StringDlgUpdate(HWND hWnd, STRING_DLG *s) { wchar_t *tmp; bool b = true; // Validate arguments if (hWnd == NULL || s == NULL) { return; } tmp = GetText(hWnd, E_STRING); if (tmp != NULL) { if (s->AllowEmpty == false) { if (UniIsEmptyStr(tmp)) { b = false; } } if (s->AllowUnsafe == false) { if (IsSafeUniStr(tmp) == false) { b = false; } } Free(tmp); } SetEnable(hWnd, IDOK, b); } // String dialog procedure UINT StringDlgProc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam, void *param) { STRING_DLG *s = (STRING_DLG *)param; // Validate arguments if (hWnd == NULL) { return 0; } switch (msg) { case WM_INITDIALOG: StringDlgInit(hWnd, s); break; case WM_COMMAND: switch (LOWORD(wParam)) { case E_STRING: StringDlgUpdate(hWnd, s); break; } switch (wParam) { case IDOK: GetTxt(hWnd, E_STRING, s->String, sizeof(s->String)); EndDialog(hWnd, true); break; case IDCANCEL: Close(hWnd); break; } break; case WM_CLOSE: EndDialog(hWnd, false); break; } return 0; } // Show the string dialog wchar_t *StringDlg(HWND hWnd, wchar_t *title, wchar_t *info, wchar_t *def, UINT icon, bool allow_empty, bool allow_unsafe) { STRING_DLG s; // Validate arguments if (title == NULL) { title = _UU("DLG_STRING_DEFTITLE"); } if (info == NULL) { info = _UU("DLG_STRING_DEFINFO"); } if (def == NULL) { def = L""; } if (icon == 0) { icon = ICO_NULL; } Zero(&s, sizeof(s)); s.Icon = icon; s.Info = info; s.Title = title; s.Icon = icon; UniStrCpy(s.String, sizeof(s.String), def); s.AllowEmpty = allow_empty; s.AllowUnsafe = allow_unsafe; if (Dialog(hWnd, D_STRING, StringDlgProc, &s) == false) { return NULL; } else { return CopyUniStr(s.String); } } char *StringDlgA(HWND hWnd, wchar_t *title, wchar_t *info, char *def, UINT icon, bool allow_empty, bool allow_unsafe) { wchar_t unidef[MAX_SIZE]; wchar_t *tmp; char *ret; if (def == NULL) { def = ""; } StrToUni(unidef, sizeof(unidef), def); tmp = StringDlg(hWnd, title, info, unidef, icon, allow_empty, allow_unsafe); if (tmp == NULL) { return NULL; } ret = CopyUniToStr(tmp); Free(tmp); return ret; } // Show a text file void ShowTextFile(HWND hWnd, char *filename, wchar_t *caption, UINT icon) { BUF *b; wchar_t *str; // Validate arguments if (filename == NULL || caption == NULL) { return; } if (icon == 0) { icon = ICO_NULL; } // Read the text file b = ReadDump(filename); if (b == NULL) { return; } SeekBufToEnd(b); WriteBufChar(b, 0); str = CopyUtfToUni(b->Buf); OnceMsg(hWnd, caption, str, false, icon); FreeBuf(b); Free(str); } // Initialize the version information void AboutDlgInit(HWND hWnd, WINUI_ABOUT *a) { wchar_t tmp[MAX_SIZE]; // Validate arguments if (hWnd == NULL || a == NULL) { return; } SetIcon(hWnd, 0, ICO_INFORMATION); UniFormat(tmp, sizeof(tmp), _UU("ABOUT_CAPTION"), a->ProductName); SetText(hWnd, 0, tmp); SetFont(hWnd, S_INFO1, GetFont("Arial", 12, false, false, false, false)); FormatText(hWnd, S_INFO1, CEDAR_VERSION_MAJOR, CEDAR_VERSION_MAJOR, CEDAR_VERSION_MINOR, CEDAR_VERSION_BUILD); SetFont(hWnd, S_INFO2, GetFont("Arial", 8, false, false, false, false)); FormatText(hWnd, S_INFO2, BUILD_DATE_Y, a->Cedar->BuildInfo); SetFont(hWnd, S_INFO3, GetFont("Arial", 7, false, false, false, false)); if (MsIsWine()) { Disable(hWnd, B_LANGUAGE); } //DlgFont(hWnd, S_INFO4, 8, false); SetShow(hWnd, B_UPDATE_CONFIG, (a->Update != NULL)); Show(hWnd, B_AUTHORS); } // Version information procedure UINT AboutDlgProc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam, void *param) { WINUI_ABOUT *a = (WINUI_ABOUT *)param; char tmp[MAX_PATH]; LANGLIST t; // Validate arguments if (hWnd == NULL) { return 0; } switch (msg) { case WM_INITDIALOG: AboutDlgInit(hWnd, a); break; case WM_COMMAND: switch (wParam) { case IDOK: case IDCANCEL: if ((GetKeyState(VK_SHIFT) & 0x8000) && (GetKeyState(VK_CONTROL) & 0x8000) && (GetKeyState(VK_MENU) & 0x8000)) { ShowEasterEgg(hWnd); } EndDialog(hWnd, true); break; case B_WEB: ShellExecute(hWnd, "open", _SS("SE_COMPANY_URL"), NULL, NULL, SW_SHOW); break; case B_EULA: ShowTextFile(hWnd, "|eula.txt", _UU("SW_EULA_TITLE"), ICO_LOG); break; case B_IMPORTANT: GetCurrentLang(&t); Format(tmp, sizeof(tmp), "|warning_%s.txt", t.Name); ShowTextFile(hWnd, tmp, _UU("SW_WARNING_TITLE"), ICO_LOG); break; case B_LEGAL: ShowTextFile(hWnd, "|legal.txt", _UU("DLG_ABOUT_LEGAL"), ICO_LOG); break; case B_UPDATE_CONFIG: ConfigUpdateUi(a->Update, hWnd); break; case B_AUTHORS: ShowTextFile(hWnd, "|authors.txt", _UU("DLG_ABOUT_AUTHORS"), ICO_ZURUHAM); break; case B_LANGUAGE: // Language settings if (true) { wchar_t path[MAX_SIZE]; CombinePathW(path, sizeof(path), MsGetExeDirNameW(), L"vpnsetup.exe"); if (IsFileExistsW(path)) { // with Installer if (MsExecuteW(path, L"/language:yes") == false) { MsgBox(hWnd, MB_ICONEXCLAMATION, _UU("SW_CHILD_PROCESS_ERROR")); } } else { // without Installer CombinePathW(path, sizeof(path), MsGetExeDirNameW(), L"lang.config"); if (MsExecuteW(path, L"") == false) { MsgBox(hWnd, MB_ICONEXCLAMATION, _UU("SW_CHILD_PROCESS_ERROR")); } } } break; } break; case WM_CLOSE: EndDialog(hWnd, false); break; } return 0; } // Version information void About(HWND hWnd, CEDAR *cedar, wchar_t *product_name) { AboutEx(hWnd, cedar, product_name, NULL); } void AboutEx(HWND hWnd, CEDAR *cedar, wchar_t *product_name, WINUI_UPDATE *u) { WINUI_ABOUT a; // Validate arguments if (cedar == NULL || product_name == NULL) { return; } Zero(&a, sizeof(a)); a.Cedar = cedar; a.ProductName = product_name; a.Update = u; Dialog(hWnd, D_ABOUT, AboutDlgProc, &a); } // Examine the number of fields that an IP address is entered UINT IpGetFilledNum(HWND hWnd, UINT id) { UINT ret; DWORD value; // Validate arguments if (hWnd == NULL) { return 0; } ret = SendMsg(hWnd, id, IPM_GETADDRESS, 0, (LPARAM)&value); return ret; } // Examine whether an IP address has been entered bool IpIsFilled(HWND hWnd, UINT id) { UINT ret; DWORD value; // Validate arguments if (hWnd == NULL) { return 0; } ret = SendMsg(hWnd, id, IPM_GETADDRESS, 0, (LPARAM)&value); if (ret != 4) { return false; } else { return true; } } // Get an IP address UINT IpGet(HWND hWnd, UINT id) { UINT ret; DWORD value; // Validate arguments if (hWnd == NULL) { return 0; } ret = SendMsg(hWnd, id, IPM_GETADDRESS, 0, (LPARAM)&value); if (ret != 4) { return 0; } else { return Endian32((UINT)value); } } // Set the IP addresses void IpSet(HWND hWnd, UINT id, UINT ip) { // Validate arguments if (hWnd == NULL) { return; } SendMsg(hWnd, id, IPM_SETADDRESS, 0, Endian32(ip)); } // Write the candidates to the registry void WriteCandidateToReg(UINT root, char *key, LIST *o, char *name) { BUF *b; // Validate arguments if (key == NULL || o == NULL || name == NULL) { return; } b = CandidateToBuf(o); if (b == NULL) { return; } MsRegWriteBin(root, key, name, b->Buf, b->Size); FreeBuf(b); } // Read the candidates from the registry LIST *ReadCandidateFromReg(UINT root, char *key, char *name) { BUF *b; // Validate arguments if (key == NULL || name == NULL) { return NULL; } b = MsRegReadBin(root, key, name); if (b == NULL) { return NewCandidateList(); } else { LIST *o = BufToCandidate(b); FreeBuf(b); return o; } } // initialize the remote connection dialog void RemoteDlgInit(HWND hWnd, WINUI_REMOTE *r) { LIST *o; UINT i; // Validate arguments if (hWnd == NULL || r == NULL) { return; } SetIcon(hWnd, 0, r->Icon); SetText(hWnd, 0, r->Caption); SetText(hWnd, S_TITLE, r->Title); SetIcon(hWnd, S_ICON, r->Icon); // Read candidates o = ReadCandidateFromReg(REG_CURRENT_USER, r->RegKeyName, "RemoteHostCandidate"); r->CandidateList = o; // Show the candidates for (i = 0;i < LIST_NUM(o);i++) { CANDIDATE *c = LIST_DATA(o, i); CbAddStr(hWnd, C_HOSTNAME, c->Str, 0); } if (r->DefaultHostname != NULL) { SetTextA(hWnd, C_HOSTNAME, r->DefaultHostname); } FocusEx(hWnd, C_HOSTNAME); RemoteDlgRefresh(hWnd, r); } // Remote connection dialog update void RemoteDlgRefresh(HWND hWnd, WINUI_REMOTE *r) { char *s; bool ok = true; bool localhost_mode = false; // Validate arguments if (hWnd == NULL || r == NULL) { return; } s = GetTextA(hWnd, C_HOSTNAME); if (s != NULL) { Trim(s); if (StrCmpi(s, "localhost") == 0 || StartWith(s, "127.")) { localhost_mode = true; } Free(s); } if (localhost_mode == false) { Enable(hWnd, C_HOSTNAME); Enable(hWnd, S_HOSTNAME); Check(hWnd, R_LOCAL, false); } else { if (r->Title != _UU("NM_CONNECT_TITLE")) { Disable(hWnd, C_HOSTNAME); Disable(hWnd, S_HOSTNAME); } Check(hWnd, R_LOCAL, true); SetTextA(hWnd, C_HOSTNAME, "localhost"); if (r->flag1 == false) { Focus(hWnd, IDOK); } } if (IsEmpty(hWnd, C_HOSTNAME)) { ok = false; } SetEnable(hWnd, IDOK, ok); r->flag1 = true; } // Remote connection dialog OK button void RemoteDlgOnOk(HWND hWnd, WINUI_REMOTE *r) { char *hostname; wchar_t *s; LIST *o; // Validate arguments if (hWnd == NULL || r == NULL) { return; } // Get the entered host name hostname = GetTextA(hWnd, C_HOSTNAME); if (hostname == NULL) { return; } Trim(hostname); // Add a candidate o = r->CandidateList; s = CopyStrToUni(hostname); AddCandidate(o, s, 64); Free(s); // Write the candidates WriteCandidateToReg(REG_CURRENT_USER, r->RegKeyName, o, "RemoteHostCandidate"); FreeCandidateList(o); r->Hostname = hostname; EndDialog(hWnd, true); } // Remote connection dialog procedure UINT RemoteDlgProc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam, void *param) { WINUI_REMOTE *r = (WINUI_REMOTE *)param; // Validate arguments if (hWnd == NULL) { return 0; } switch (msg) { case WM_INITDIALOG: RemoteDlgInit(hWnd, r); SetTimer(hWnd, 1, 100, NULL); break; case WM_TIMER: switch (wParam) { case 1: KillTimer(hWnd, 1); RemoteDlgRefresh(hWnd, r); SetTimer(hWnd, 1, 100, NULL); break; } break; case WM_COMMAND: switch (wParam) { case R_LOCAL: if (IsChecked(hWnd, R_LOCAL) == false) { SetTextA(hWnd, C_HOSTNAME, ""); RemoteDlgRefresh(hWnd, r); FocusEx(hWnd, C_HOSTNAME); } else { SetTextA(hWnd, C_HOSTNAME, "localhost"); RemoteDlgRefresh(hWnd, r); Focus(hWnd, IDOK); } break; case IDCANCEL: Close(hWnd); break; case IDOK: RemoteDlgOnOk(hWnd, r); break; } switch (LOWORD(wParam)) { case R_LOCAL: case C_HOSTNAME: RemoteDlgRefresh(hWnd, r); break; } break; case WM_CLOSE: FreeCandidateList(r->CandidateList); EndDialog(hWnd, false); break; } return 0; } // Remote connection dialog char *RemoteDlg(HWND hWnd, char *regkey, UINT icon, wchar_t *caption, wchar_t *title, char *default_host) { WINUI_REMOTE r; // Validate arguments if (regkey == NULL) { regkey = "Software\\" GC_REG_COMPANY_NAME "\\" CEDAR_PRODUCT_STR " VPN\\WinUI Common Module"; } if (caption == NULL) { caption = _UU("REMOTE_DEF_CAPTION"); } if (title == NULL) { title = _UU("REMOTE_DEF_TITLE"); } if (icon == 0) { icon = ICO_INTERNET; } Zero(&r, sizeof(r)); r.RegKeyName = regkey; r.Caption = caption; r.Title = title; r.Icon = icon; r.DefaultHostname = default_host; if (Dialog(hWnd, D_REMOTE, RemoteDlgProc, &r) == false) { return NULL; } return r.Hostname; } // Window Searching procedure bool CALLBACK SearchWindowEnumProc(HWND hWnd, LPARAM lParam) { if (hWnd != NULL && lParam != 0) { wchar_t *s = GetText(hWnd, 0); SEARCH_WINDOW_PARAM *p = (SEARCH_WINDOW_PARAM *)lParam; if (s != NULL) { if (UniStrCmpi(p->caption, s) == 0) { p->hWndFound = hWnd; } Free(s); } } return true; } // Search for the window HWND SearchWindow(wchar_t *caption) { SEARCH_WINDOW_PARAM p; // Validate arguments if (caption == NULL) { return NULL; } Zero(&p, sizeof(p)); p.caption = caption; p.hWndFound = NULL; EnumWindows(SearchWindowEnumProc, (LPARAM)&p); return p.hWndFound; } // Allow for the specified process to become the foreground window void AllowFGWindow(UINT process_id) { if (process_id == 0) { return; } AllowSetForegroundWindow(process_id); } // Rename the item void LvRename(HWND hWnd, UINT id, UINT pos) { // Validate arguments if (hWnd == NULL || pos == INFINITE) { return; } ListView_EditLabel(DlgItem(hWnd, id), pos); } // Enhanced function LRESULT CALLBACK LvEnhancedProc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam) { WNDPROC func = (WNDPROC)GetPropW(hWnd, L"ORIGINAL_FUNC"); if (func == NULL) { Debug("LvEnhancedProc(): GetProp() returned NULL!\n"); return 1; } switch (msg) { case WM_HSCROLL: case WM_VSCROLL: case WM_MOUSEWHEEL: { // Prevent graphical glitches with the edit box by sending the NM_RETURN signal // to the parent dialog (the parent dialog has to delete the edit box on NM_RETURN) NMHDR nmh; nmh.code = NM_RETURN; nmh.idFrom = GetDlgCtrlID(hWnd); nmh.hwndFrom = hWnd; SendMsg(GetParent(hWnd), 0, WM_NOTIFY, nmh.idFrom, (LPARAM)&nmh); break; } case WM_CLOSE: // Prevent list view from disappearing after pressing ESC in an edit box return 0; case WM_NCDESTROY: // Restore original function during destruction LvSetEnhanced(hWnd, 0, false); } return CallWindowProcW(func, hWnd, msg, wParam, lParam); } // Toggle enhanced function void LvSetEnhanced(HWND hWnd, UINT id, bool enable) { // Validate arguments if (hWnd == NULL) { return; } if (enable) { const HANDLE fn = (HANDLE)SetWindowLongPtrW(DlgItem(hWnd, id), GWLP_WNDPROC, (LONG_PTR)LvEnhancedProc); SetPropW(DlgItem(hWnd, id), L"ORIGINAL_FUNC", fn); } else { SetWindowLongPtrW(DlgItem(hWnd, id), GWLP_WNDPROC, (LONG_PTR)GetPropW(DlgItem(hWnd, id), L"ORIGINAL_FUNC")); RemovePropW(DlgItem(hWnd, id), L"ORIGINAL_FUNC"); } } // Enhanced function LRESULT CALLBACK EditBoxEnhancedProc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam) { WNDPROC func = (WNDPROC)GetPropW(hWnd, L"ORIGINAL_FUNC"); if (func == NULL) { Debug("EditBoxEnhancedProc(): GetProp() returned NULL!\n"); return 1; } switch (msg) { case WM_CHAR: switch (wParam) { // CTRL + A case 1: SelectEdit(hWnd, 0); return 0; case VK_RETURN: SendMsg(GetParent(hWnd), 0, WM_KEYDOWN, VK_RETURN, 0); return 0; case VK_ESCAPE: DestroyWindow(hWnd); return 0; } break; case WM_NCDESTROY: // Restore original function during destruction EditBoxSetEnhanced(hWnd, 0, false); } return CallWindowProcW(func, hWnd, msg, wParam, lParam); } // Toggle enhanced function void EditBoxSetEnhanced(HWND hWnd, UINT id, bool enable) { // Validate arguments if (hWnd == NULL) { return; } if (enable) { const HANDLE fn = (HANDLE)SetWindowLongPtrW(DlgItem(hWnd, id), GWLP_WNDPROC, (LONG_PTR)EditBoxEnhancedProc); SetPropW(DlgItem(hWnd, id), L"ORIGINAL_FUNC", fn); } else { SetWindowLongPtrW(DlgItem(hWnd, id), GWLP_WNDPROC, (LONG_PTR)GetPropW(DlgItem(hWnd, id), L"ORIGINAL_FUNC")); RemovePropW(DlgItem(hWnd, id), L"ORIGINAL_FUNC"); } } // Show the menu void PrintMenu(HWND hWnd, HMENU hMenu) { POINT p; // Validate arguments if (hMenu == NULL || hWnd == NULL) { return; } GetCursorPos(&p); TrackPopupMenu(hMenu, TPM_LEFTALIGN, p.x, p.y, 0, hWnd, NULL); } // Remove a shortcut string from the menu void RemoveShortcutKeyStrFromMenu(HMENU hMenu) { UINT i, num; // Validate arguments if (hMenu == NULL) { return; } num = GetMenuNum(hMenu); for (i = 0;i < num;i++) { wchar_t *str = GetMenuStr(hMenu, i); if (str != NULL) { UINT j, len; len = UniStrLen(str); for (j = 0;j < len;j++) { if (str[j] == L'\t') { str[j] = 0; } } SetMenuStr(hMenu, i, str); Free(str); } } } // Get the number of items in the menu UINT GetMenuNum(HMENU hMenu) { UINT ret; // Validate arguments if (hMenu == NULL) { return 0; } ret = GetMenuItemCount(hMenu); if (ret == INFINITE) { return 0; } else { return ret; } } // Set the string into the menu void SetMenuStr(HMENU hMenu, UINT pos, wchar_t *str) { MENUITEMINFOW info; // Validate arguments if (hMenu == NULL || pos == INFINITE || str == NULL) { return; } Zero(&info, sizeof(info)); info.cbSize = sizeof(info); info.fMask = MIIM_STRING; info.dwTypeData = str; SetMenuItemInfoW(hMenu, pos, true, &info); } void SetMenuStrA(HMENU hMenu, UINT pos, char *str) { MENUITEMINFOA info; // Validate arguments if (hMenu == NULL || pos == INFINITE || str == NULL) { return; } Zero(&info, sizeof(info)); info.cbSize = sizeof(info); info.fMask = MIIM_STRING; info.dwTypeData = str; SetMenuItemInfoA(hMenu, pos, true, &info); } // Get a string in the menu wchar_t *GetMenuStr(HMENU hMenu, UINT pos) { wchar_t tmp[MAX_SIZE]; // Validate arguments if (hMenu == NULL || pos == INFINITE) { return NULL; } if (GetMenuStringW(hMenu, pos, tmp, sizeof(tmp), MF_BYPOSITION) == 0) { return NULL; } return UniCopyStr(tmp); } char *GetMenuStrA(HMENU hMenu, UINT pos) { char tmp[MAX_SIZE]; // Validate arguments if (hMenu == NULL || pos == INFINITE) { return NULL; } if (GetMenuString(hMenu, pos, tmp, sizeof(tmp), MF_BYPOSITION) == 0) { return NULL; } return CopyStr(tmp); } // Bold the menu item void SetMenuItemBold(HMENU hMenu, UINT pos, bool bold) { MENUITEMINFO info; // Validate arguments if (hMenu == NULL || pos == INFINITE) { return; } Zero(&info, sizeof(info)); info.cbSize = sizeof(info); info.fMask = MIIM_STATE; if (GetMenuItemInfo(hMenu, pos, true, &info) == false) { return; } if (bold) { info.fState |= MFS_DEFAULT; } else { info.fState = info.fState & ~MFS_DEFAULT; } SetMenuItemInfo(hMenu, pos, true, &info); } // Remove a menu item void DeleteMenuItem(HMENU hMenu, UINT pos) { // Validate arguments if (hMenu == NULL || pos == INFINITE) { return; } DeleteMenu(hMenu, pos, MF_BYPOSITION); } // Get the position from the ID in the menu UINT GetMenuItemPos(HMENU hMenu, UINT id) { UINT num, i; // Validate arguments if (hMenu == NULL) { return INFINITE; } num = GetMenuItemCount(hMenu); if (num == INFINITE) { return INFINITE; } for (i = 0;i < num;i++) { if (GetMenuItemID(hMenu, i) == id) { return i; } } return INFINITE; } // Get a sub-menu HMENU LoadSubMenu(UINT menu_id, UINT pos, HMENU *parent_menu) { HMENU h = LoadMenu(hDll, MAKEINTRESOURCE(menu_id)); HMENU ret; if (h == NULL) { return NULL; } ret = GetSubMenu(h, pos); if (parent_menu != NULL) { *parent_menu = h; } return ret; } // Get the DLL of the user interface HINSTANCE GetUiDll() { return hDll; } // Connection Error dialog procedure UINT ConnectErrorDlgProc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam, void *param) { UI_CONNECTERROR_DLG *p = (UI_CONNECTERROR_DLG *)param; wchar_t tmp[1024]; // Validate arguments if (hWnd == NULL) { return 0; } switch (msg) { case WM_INITDIALOG: if (p->Err == ERR_DISCONNECTED || p->Err == ERR_SESSION_TIMEOUT) { // Message indicating that the connection has been disconnected SetText(hWnd, S_TITLE, _UU("ERRDLG_DISCONNECTED_MSG")); } if (p->HideWindow) { Hide(hWnd, R_HIDE); } FormatText(hWnd, 0, p->AccountName); FormatText(hWnd, S_TITLE, p->ServerName); UniFormat(tmp, sizeof(tmp), _UU("ERRDLG_ERRMSG"), p->Err, _E(p->Err)); SetText(hWnd, E_ERROR, tmp); SetIcon(hWnd, 0, ICO_SERVER_OFFLINE); if (p->RetryIntervalSec == 0) { SetText(hWnd, S_COUNTDOWN, _UU("ERRDLG_INFORMATION")); Hide(hWnd, P_PROGRESS); Hide(hWnd, S_RETRYINFO); } else { if (p->RetryLimit != INFINITE) { UniFormat(tmp, sizeof(tmp), _UU("ERRDLG_RETRY_INFO_1"), p->CurrentRetryCount, p->RetryLimit); } else { UniFormat(tmp, sizeof(tmp), _UU("ERRDLG_RETRY_INFO_2"), p->CurrentRetryCount); } SetText(hWnd, S_RETRYINFO, tmp); SetRange(hWnd, P_PROGRESS, 0, p->RetryIntervalSec); SetPos(hWnd, P_PROGRESS, 0); SetTimer(hWnd, 1, 10, NULL); p->StartTick = Tick64(); } SetTimer(hWnd, 2, 10, NULL); Focus(hWnd, IDOK); break; case WM_TIMER: switch (wParam) { case 1: if (p->RetryIntervalSec != 0) { UINT64 start, end, now; now = Tick64(); start = p->StartTick; end = start + (UINT64)p->RetryIntervalSec; if (end > now) { SetPos(hWnd, P_PROGRESS, (UINT)(now - start)); UniFormat(tmp, sizeof(tmp), _UU("ERRDLG_RETRYCOUNT"), ((UINT)(end - now)) / 1000); SetText(hWnd, S_COUNTDOWN, tmp); } else { Command(hWnd, IDOK); } } break; case 2: if (p->CancelEvent != NULL) { if (WaitForSingleObject((HANDLE)p->CancelEvent->pData, 0) != WAIT_TIMEOUT) { // Forced Cancel Close(hWnd); } } break; } break; case WM_COMMAND: switch (LOWORD(wParam)) { case R_HIDE: p->HideWindow = IsChecked(hWnd, R_HIDE); break; } switch (wParam) { case IDOK: EndDialog(hWnd, true); break; case IDCANCEL: Close(hWnd); break; } break; case WM_CLOSE: EndDialog(hWnd, false); break; } return 0; } // Show the connection error dialog bool ConnectErrorDlg(UI_CONNECTERROR_DLG *p) { // Validate arguments if (p == NULL) { return false; } return DialogEx2(NULL, D_CONNECTERROR, ConnectErrorDlgProc, p, true, true); } // Display the contents of the certificate void PrintCheckCertInfo(HWND hWnd, UI_CHECKCERT *p) { wchar_t tmp[MAX_SIZE]; char tmp2[MAX_SIZE]; UCHAR md5[MD5_SIZE]; UCHAR sha1[SHA1_SIZE]; X *x; // Validate arguments if (hWnd == NULL || p == NULL) { return; } x = p->x; GetAllNameFromNameEx(tmp, sizeof(tmp), x->subject_name); SetText(hWnd, E_SUBJECT, tmp); GetAllNameFromNameEx(tmp, sizeof(tmp), x->issuer_name); SetText(hWnd, E_ISSUER, tmp); GetDateTimeStrEx64(tmp, sizeof(tmp), SystemToLocal64(x->notAfter), NULL); SetText(hWnd, E_EXPIRES, tmp); GetXDigest(x, md5, false); BinToStr(tmp2, sizeof(tmp2), md5, sizeof(md5)); SetTextA(hWnd, E_MD5, tmp2); GetXDigest(x, sha1, true); BinToStr(tmp2, sizeof(tmp2), sha1, sizeof(sha1)); SetTextA(hWnd, E_SHA1, tmp2); SetFont(hWnd, E_MD5, GetFont("Arial", 8, false, false, false, false)); SetFont(hWnd, E_SHA1, GetFont("Arial", 8, false, false, false, false)); } // Warn that the certificate is different void ShowDlgDiffWarning(HWND hWnd, UI_CHECKCERT *p) { UCHAR sha1_new[SHA1_SIZE], sha1_old[SHA1_SIZE]; UCHAR md5_new[MD5_SIZE], md5_old[MD5_SIZE]; char sha1_new_str[MAX_SIZE], sha1_old_str[MAX_SIZE]; char md5_new_str[MAX_SIZE], md5_old_str[MAX_SIZE]; // Validate arguments if (hWnd == NULL || p == NULL || p->x == NULL || p->old_x == NULL) { return; } GetXDigest(p->x, sha1_new, true); GetXDigest(p->x, md5_new, false); GetXDigest(p->old_x, sha1_old, true); GetXDigest(p->old_x, md5_old, false); BinToStrEx(sha1_new_str, sizeof(sha1_new_str), sha1_new, sizeof(sha1_new)); BinToStrEx(md5_new_str, sizeof(md5_new_str), md5_new, sizeof(md5_new)); BinToStrEx(sha1_old_str, sizeof(sha1_old_str), sha1_old, sizeof(sha1_old)); BinToStrEx(md5_old_str, sizeof(md5_old_str), md5_old, sizeof(md5_old)); MsgBoxEx(hWnd, MB_ICONEXCLAMATION, _UU("CC_DANGEROUS_MSG"), p->ServerName, md5_old_str, sha1_old_str, md5_new_str, sha1_new_str); } // [OK] button is pressed void CheckCertDialogOnOk(HWND hWnd, UI_CHECKCERT *p) { UCHAR sha1_new[SHA1_SIZE]; UCHAR md5_new[MD5_SIZE]; char sha1_new_str[MAX_SIZE]; char md5_new_str[MAX_SIZE]; UINT ret; // Validate arguments if (hWnd == NULL || p == NULL) { return; } GetXDigest(p->x, sha1_new, true); GetXDigest(p->x, md5_new, false); BinToStrEx(sha1_new_str, sizeof(sha1_new_str), sha1_new, sizeof(sha1_new)); BinToStrEx(md5_new_str, sizeof(md5_new_str), md5_new, sizeof(md5_new)); ret = MsgBoxEx(hWnd, MB_ICONQUESTION | MB_YESNOCANCEL | MB_DEFBUTTON2, _UU("CC_WARNING_MSG"), p->AccountName, sha1_new_str, md5_new_str); if (ret == IDYES) { p->SaveServerCert = true; } if (ret == IDCANCEL) { return; } p->Ok = true; EndDialog(hWnd, true); } // Certificate dialog procedure UINT CheckCertDlgProc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam, void *param) { UI_CHECKCERT *p = (UI_CHECKCERT *)param; // Validate arguments if (hWnd == NULL || param == NULL) { return 0; } switch (msg) { case WM_INITDIALOG: FormatText(hWnd, 0, p->AccountName); FormatText(hWnd, S_TITLE, p->ServerName); FormatText(hWnd, S_MSG1, p->ServerName); PrintCheckCertInfo(hWnd, p); Focus(hWnd, IDCANCEL); SetIcon(hWnd, 0, ICO_WARNING); if (p->DiffWarning) { SetTimer(hWnd, 1, 1, NULL); } SetTimer(hWnd, 2, 100, NULL); break; case WM_TIMER: switch (wParam) { case 1: KillTimer(hWnd, 1); ShowDlgDiffWarning(hWnd, p); break; case 2: if ((p->Session != NULL && p->Session->Halt) || (p->Halt)) { p->Ok = false; EndDialog(hWnd, false); } break; } break; case WM_COMMAND: switch (wParam) { case B_SHOW: CertDlg(hWnd, p->x, p->parent_x, false); break; case IDOK: CheckCertDialogOnOk(hWnd, p); break; case IDCANCEL: Close(hWnd); break; } break; case WM_CLOSE: p->Ok = false; EndDialog(hWnd, false); break; } return 0; } // Certificate Check dialog void CheckCertDlg(UI_CHECKCERT *p) { // Validate arguments if (p == NULL) { return; } Dialog(NULL, D_CHECKCERT, CheckCertDlgProc, p); } // Get the image list ID from the icon ID UINT GetIcon(UINT icon_id) { IMAGELIST_ICON *c, t; t.id = icon_id; c = Search(icon_list, &t); if (c == NULL) { if (icon_id != ICO_NULL) { return GetIcon(ICO_NULL); } else { return INFINITE; } } else { return c->Index; } } // Load an icon for the image list IMAGELIST_ICON *LoadIconForImageList(UINT id) { IMAGELIST_ICON *ret = ZeroMalloc(sizeof(IMAGELIST_ICON)); HICON small_icon, large_icon; ret->id = id; large_icon = LoadLargeIcon(id); if (large_icon == NULL) { large_icon = LoadSmallIcon(id); } small_icon = LoadSmallIcon(id); if (small_icon == NULL) { small_icon = LoadLargeIcon(id); } ret->hSmallImage = small_icon; ret->hLargeImage = large_icon; ret->Index = ImageList_AddIcon(large_image_list, large_icon); ImageList_AddIcon(small_image_list, small_icon); return ret; } // Comparison of the image list icons int CompareImageListIcon(void *p1, void *p2) { IMAGELIST_ICON *c1, *c2; if (p1 == NULL || p2 == NULL) { return 0; } c1 = *(IMAGELIST_ICON **)p1; c2 = *(IMAGELIST_ICON **)p2; if (c1 == NULL || c2 == NULL) { return 0; } if (c1->id > c2->id) { return 1; } else if (c1->id < c2->id) { return -1; } else { return 0; } } // Initialize thr image list void InitImageList() { large_image_list = ImageList_Create(32, 32, ILC_COLOR32 | ILC_MASK, 1, 0); ImageList_SetBkColor(large_image_list, RGB(255, 255, 255)); small_image_list = ImageList_Create(16, 16, ILC_COLOR32 | ILC_MASK, 1, 0); ImageList_SetBkColor(small_image_list, RGB(255, 255, 255)); icon_list = NewList(CompareImageListIcon); // Enumeration EnumResourceNames(hDll, RT_GROUP_ICON, EnumResNameProc, 0); } // Icon resource enumeration procedure BOOL CALLBACK EnumResNameProc(HMODULE hModule, LPCTSTR lpszType, LPTSTR lpszName, LONG_PTR lParam) { if (IS_INTRESOURCE(lpszName)) { UINT icon_id = (UINT)lpszName; IMAGELIST_ICON *img = LoadIconForImageList(icon_id); Add(icon_list, img); } return TRUE; } // Release the image list void FreeImageList() { UINT i; ImageList_Destroy(large_image_list); ImageList_Destroy(small_image_list); large_image_list = small_image_list = NULL; for (i = 0;i < LIST_NUM(icon_list);i++) { IMAGELIST_ICON *c = LIST_DATA(icon_list, i); Free(c); } ReleaseList(icon_list); icon_list = NULL; } // Get the width of the column of the list view UINT LvGetColumnWidth(HWND hWnd, UINT id, UINT index) { return (UINT)((double)ListView_GetColumnWidth(DlgItem(hWnd, id), index) / GetTextScalingFactor()); } // Insert the column into the list view void LvInsertColumn(HWND hWnd, UINT id, UINT index, wchar_t *str, UINT width) { LVCOLUMNW c; // Validate arguments if (hWnd == NULL || str == NULL) { return; } width = (UINT)((double)width * GetTextScalingFactor()); Zero(&c, sizeof(c)); c.mask = LVCF_FMT | LVCF_SUBITEM | LVCF_TEXT | LVCF_WIDTH; c.pszText = str; c.iSubItem = index; c.cx = width; SendMsg(hWnd, id, LVM_INSERTCOLUMNW, index, (LPARAM)&c); } // Remove all items from list view void LvReset(HWND hWnd, UINT id) { // Validate arguments if (hWnd == NULL) { return; } ListView_DeleteAllItems(DlgItem(hWnd, id)); } // Initialize the list view void LvInitEx(HWND hWnd, UINT id, bool no_image) { LvInitEx2(hWnd, id, no_image, false); } void LvInitEx2(HWND hWnd, UINT id, bool no_image, bool large_icon) { // Validate arguments if (hWnd == NULL) { return; } ListView_SetUnicodeFormat(DlgItem(hWnd, id), true); if (no_image == false) { ListView_SetImageList(DlgItem(hWnd, id), large_image_list, LVSIL_NORMAL); ListView_SetImageList(DlgItem(hWnd, id), large_icon ? large_image_list : small_image_list, LVSIL_SMALL); } ListView_SetExtendedListViewStyle(DlgItem(hWnd, id), LVS_EX_FULLROWSELECT); LvSetStyle(hWnd, id, LVS_EX_DOUBLEBUFFER); } void LvInit(HWND hWnd, UINT id) { LvInitEx(hWnd, id, false); } // Adding batch complete (high-speed) void LvInsertEnd(LVB *b, HWND hWnd, UINT id) { LvInsertEndEx(b, hWnd, id, false); } void LvInsertEndEx(LVB *b, HWND hWnd, UINT id, bool force_reset) { UINT i, num; LIST *new_list, *exist_list; wchar_t *last_selected = NULL; // Validate arguments if (b == NULL || hWnd == NULL) { return; } new_list = NewListFast(CompareUniStr); for (i = 0;i < LIST_NUM(b->ItemList);i++) { LVB_ITEM *t = LIST_DATA(b->ItemList, i); Add(new_list, t->Strings[0]); } Sort(new_list); if ((LIST_NUM(b->ItemList) >= LV_INSERT_RESET_ALL_ITEM_MIN) || force_reset) { last_selected = LvGetFocusedStr(hWnd, id, 0); LvReset(hWnd, id); } exist_list = NewListFast(CompareUniStr); num = LvNum(hWnd, id); // Delete the items which isn't contained in the batch list of existing items for (i = 0;i < num;i++) { bool exists = false; wchar_t *s = LvGetStr(hWnd, id, i, 0); if (Search(new_list, s) != NULL) { exists = true; } if (exists == false) { // Remove items that don't exist in the batch list of the adding plan from the list view LvDeleteItem(hWnd, id, i); num = LvNum(hWnd, id); i--; Free(s); } else { Add(exist_list, s); } } Sort(exist_list); // Add items in the batch one by one for (i = 0;i < LIST_NUM(b->ItemList);i++) { LVB_ITEM *t = LIST_DATA(b->ItemList, i); UINT index; UINT j; bool exists = false; if (Search(exist_list, t->Strings[0]) != NULL) { index = LvSearchStr(hWnd, id, 0, t->Strings[0]); } else { index = INFINITE; } if (index != INFINITE) { UINT j; // If an item with the string same to adding item already exists, // update instead of adding for (j = 0;j < t->NumStrings;j++) { LvSetItem(hWnd, id, index, j, t->Strings[j]); } LvSetItemImageByImageListId(hWnd, id, index, t->Image); LvSetItemParam(hWnd, id, index, t->Param); } else { // Add newly UINT index = INFINITE; UINT j; for (j = 0;j < t->NumStrings;j++) { if (j == 0) { index = LvInsertItemByImageListId(hWnd, id, t->Image, t->Param, t->Strings[j]); } else { LvSetItem(hWnd, id, index, j, t->Strings[j]); } } } // Release the memory for (j = 0;j < t->NumStrings;j++) { Free(t->Strings[j]); } Free(t->Strings); Free(t); } // Release the list ReleaseList(b->ItemList); // Release the memory Free(b); ReleaseList(new_list); for (i = 0;i < LIST_NUM(exist_list);i++) { Free(LIST_DATA(exist_list, i)); } ReleaseList(exist_list); if (last_selected != NULL) { UINT pos = LvSearchStr(hWnd, id, 0, last_selected); if (pos != INFINITE) { LvSelect(hWnd, id, pos); } Free(last_selected); } } // Get the number of columns of the list view UINT LvGetColumnNum(HWND hWnd, UINT id) { UINT i; LVCOLUMN c; if (hWnd == NULL) { return 0; } for (i = 0;;i++) { Zero(&c, sizeof(c)); c.mask = LVCF_SUBITEM; if (ListView_GetColumn(DlgItem(hWnd, id), i, &c) == false) { break; } } return i; } // List-view sort function int CALLBACK LvSortProc(LPARAM param1, LPARAM param2, LPARAM sort_param) { WINUI_LV_SORT *sort = (WINUI_LV_SORT *)sort_param; HWND hWnd; UINT id; UINT i1, i2; int ret = 0; wchar_t *s1, *s2; if (sort == NULL) { return 0; } hWnd = sort->hWnd; id = sort->id; if (hWnd == NULL) { return 0; } i1 = (UINT)param1; i2 = (UINT)param2; s1 = LvGetStr(hWnd, id, i1, sort->subitem); if (s1 == NULL) { return 0; } s2 = LvGetStr(hWnd, id, i2, sort->subitem); if (s2 == NULL) { Free(s1); return 0; } if (sort->numeric == false) { if (UniStrCmpi(s1, _UU("CM_NEW_ICON")) == 0 || UniStrCmpi(s1, _UU("CM_VGC_ICON")) == 0 || UniStrCmpi(s1, _UU("CM_VGC_LINK")) == 0) { ret = -1; } else if (UniStrCmpi(s2, _UU("CM_NEW_ICON")) == 0 || UniStrCmpi(s2, _UU("CM_VGC_ICON")) == 0 || UniStrCmpi(s1, _UU("CM_VGC_LINK")) == 0) { ret = 1; } else { ret = UniStrCmpi(s1, s2); } } else { UINT64 v1, v2; v1 = UniToInt64(s1); v2 = UniToInt64(s2); if (v1 > v2) { ret = 1; } else if (v1 < v2) { ret = -1; } else { ret = 0; } } Free(s1); Free(s2); if (sort->desc) { ret = -ret; } return ret; } // Standard handler void LvStandardHandler(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam, UINT id) { NMHDR *n; NMLVKEYDOWN *key; // Validate arguments if (hWnd == NULL) { return; } LvSortHander(hWnd, msg, wParam, lParam, id); switch (msg) { case WM_NOTIFY: n = (NMHDR *)lParam; if (n->idFrom == id) { switch (n->code) { case NM_DBLCLK: Command(hWnd, IDOK); break; case LVN_KEYDOWN: key = (NMLVKEYDOWN *)n; if (key != NULL) { UINT code = key->wVKey; switch (code) { case VK_DELETE: Command(hWnd, B_DELETE); break; case VK_RETURN: Command(hWnd, IDOK); break; case VK_F5: Command(hWnd, B_REFRESH); break; } } break; } } break; } } // Sort header handler void LvSortHander(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam, UINT id) { NMHDR *nmhdr; UINT subitem; bool desc; // Validate arguments if (hWnd == NULL) { return; } switch (msg) { case WM_NOTIFY: nmhdr = (NMHDR *)lParam; if (nmhdr != NULL) { if (nmhdr->idFrom == id) { NMLISTVIEW *v; switch (nmhdr->code) { case LVN_COLUMNCLICK: desc = false; v = (NMLISTVIEW *)lParam; subitem = v->iSubItem; if ((GetStyle(hWnd, id) & LVS_SORTDESCENDING) == 0) { desc = true; SetStyle(hWnd, id, LVS_SORTDESCENDING); RemoveStyle(hWnd, id, LVS_SORTASCENDING); } else { SetStyle(hWnd, id, LVS_SORTASCENDING); RemoveStyle(hWnd, id, LVS_SORTDESCENDING); } LvSort(hWnd, id, subitem, desc); break; } } } break; } } // Do sort void LvSort(HWND hWnd, UINT id, UINT subitem, bool desc) { UINT i, num; bool numeric = true; wchar_t na[2] = {0xff0d, 0x0, }; // Validate arguments if (hWnd == NULL) { return; } num = LvNum(hWnd, id); for (i = 0;i < num;i++) { wchar_t *s = LvGetStr(hWnd, id, i, subitem); if (s != NULL) { if (UniIsNum(s) == false && UniStrCmp(s, na) != 0) { numeric = false; Free(s); break; } Free(s); } else { numeric = false; break; } } LvSortEx(hWnd, id, subitem, desc, numeric); } void LvSortEx(HWND hWnd, UINT id, UINT subitem, bool desc, bool numeric) { WINUI_LV_SORT s; // Validate arguments if (hWnd == NULL) { return; } if (subitem >= LvGetColumnNum(hWnd, id)) { return; } Zero(&s, sizeof(s)); s.desc = desc; s.numeric = numeric; s.id = id; s.hWnd = hWnd; s.subitem = subitem; ListView_SortItemsEx(DlgItem(hWnd, id), LvSortProc, (LPARAM)&s); } // Add an item to adding batch void LvInsertAdd(LVB *b, UINT icon, void *param, UINT num_str, ...) { UINT i; va_list va; UINT index = 0; LVB_ITEM *t; // Validate arguments if (b == NULL || num_str == 0) { return; } t = ZeroMalloc(sizeof(LVB_ITEM)); va_start(va, num_str); t->Strings = (wchar_t **)ZeroMalloc(sizeof(wchar_t *) * num_str); t->NumStrings = num_str; for (i = 0;i < num_str;i++) { wchar_t *s = va_arg(va, wchar_t *); t->Strings[i] = UniCopyStr(s); } t->Param = param; t->Image = GetIcon(icon); Add(b->ItemList, t); va_end(va); } // Start the item adding batch LVB *LvInsertStart() { LVB *b = ZeroMalloc(sizeof(LVB)); b->ItemList = NewListFast(NULL); return b; } // Add items to the list view void LvInsert(HWND hWnd, UINT id, UINT icon, void *param, UINT num_str, ...) { UINT i; va_list va; UINT index = 0; // Validate arguments if (hWnd == NULL) { return; } va_start(va, num_str); for (i = 0;i < num_str;i++) { wchar_t *s = va_arg(va, wchar_t *); if (i == 0) { index = LvInsertItem(hWnd, id, icon, param, s); } else { LvSetItem(hWnd, id, index, i, s); } } va_end(va); } // Adjust the item size automatically void LvAutoSize(HWND hWnd, UINT id) { UINT i; // Validate arguments if (hWnd == NULL) { return; } i = 0; while (true) { if (ListView_SetColumnWidth(DlgItem(hWnd, id), i, LVSCW_AUTOSIZE) == false) { break; } i++; } } // Add an item UINT LvInsertItem(HWND hWnd, UINT id, UINT icon, void *param, wchar_t *str) { return LvInsertItemByImageListId(hWnd, id, GetIcon(icon), param, str); } UINT LvInsertItemByImageListId(HWND hWnd, UINT id, UINT image, void *param, wchar_t *str) { LVITEMW t; // Validate arguments if (hWnd == NULL || str == NULL) { return INFINITE; } Zero(&t, sizeof(t)); t.mask = LVIF_IMAGE | LVIF_PARAM | LVIF_TEXT; t.pszText = str; t.iImage = image; t.lParam = (LPARAM)param; t.iItem = LvNum(hWnd, id); return SendMsg(hWnd, id, LVM_INSERTITEMW, 0, (LPARAM)&t); } UINT LvInsertItemByImageListIdA(HWND hWnd, UINT id, UINT image, void *param, char *str) { LVITEM t; // Validate arguments if (hWnd == NULL || str == NULL) { return INFINITE; } Zero(&t, sizeof(t)); t.mask = LVIF_IMAGE | LVIF_PARAM | LVIF_TEXT; t.pszText = str; t.iImage = image; t.lParam = (LPARAM)param; t.iItem = LvNum(hWnd, id); return SendMsg(hWnd, id, LVM_INSERTITEM, 0, (LPARAM)&t); } // Change the image void LvSetItemImageByImageListId(HWND hWnd, UINT id, UINT index, UINT image) { LVITEM t; // Validate arguments if (hWnd == NULL) { return; } Zero(&t, sizeof(t)); t.mask = LVIF_IMAGE; t.iImage = image; t.iItem = index; SendMsg(hWnd, id, LVM_SETITEM, 0, (LPARAM)&t); } // Set the parameters of the item void LvSetItemParam(HWND hWnd, UINT id, UINT index, void *param) { LvSetItemParamEx(hWnd, id, index, 0, param); } void LvSetItemParamEx(HWND hWnd, UINT id, UINT index, UINT subitem, void *param) { LVITEM t; // Validate arguments if (hWnd == NULL) { return; } Zero(&t, sizeof(t)); t.mask = LVIF_PARAM; t.iItem = index; t.iSubItem = subitem; t.lParam = (LPARAM)param; SendMsg(hWnd, id, LVM_SETITEM, 0, (LPARAM)&t); } // Set the item void LvSetItem(HWND hWnd, UINT id, UINT index, UINT pos, wchar_t *str) { LVITEMW t; wchar_t *old_str; // Validate arguments if (hWnd == NULL || str == NULL) { return; } Zero(&t, sizeof(t)); t.mask = LVIF_TEXT; t.pszText = str; t.iItem = index; t.iSubItem = pos; old_str = LvGetStr(hWnd, id, index, pos); if (UniStrCmp(old_str, str) != 0) { SendMsg(hWnd, id, LVM_SETITEMW, 0, (LPARAM)&t); } Free(old_str); } void LvSetItemA(HWND hWnd, UINT id, UINT index, UINT pos, char *str) { LVITEM t; wchar_t *old_str; char *old_str_2; // Validate arguments if (hWnd == NULL || str == NULL) { return; } Zero(&t, sizeof(t)); t.mask = LVIF_TEXT; t.pszText = str; t.iItem = index; t.iSubItem = pos; old_str = LvGetStr(hWnd, id, index, pos); old_str_2 = CopyUniToStr(old_str); if (StrCmp(old_str_2, str) != 0) { SendMsg(hWnd, id, LVM_SETITEM, 0, (LPARAM)&t); } Free(old_str_2); Free(old_str); } // Set the view of the list box void LvSetView(HWND hWnd, UINT id, bool details) { // Validate arguments if (hWnd == NULL) { return; } if (details) { RemoveStyle(hWnd, id, LVS_ICON); SetStyle(hWnd, id, LVS_REPORT); } else { RemoveStyle(hWnd, id, LVS_REPORT); SetStyle(hWnd, id, LVS_ICON); } } // Get whether there is currently selected item bool LvIsSelected(HWND hWnd, UINT id) { // Validate arguments if (hWnd == NULL) { return false; } if (LvGetSelected(hWnd, id) == INFINITE) { return false; } return true; } // Get the currently selected item UINT LvGetFocused(HWND hWnd, UINT id) { // Validate arguments if (hWnd == NULL) { return INFINITE; } return ListView_GetNextItem(DlgItem(hWnd, id), -1, LVNI_FOCUSED); } // Get the parameter of the currently selected item void *LvGetSelectedParam(HWND hWnd, UINT id) { UINT index; // Validate arguments if (hWnd == NULL) { return NULL; } index = LvGetSelected(hWnd, id); if (index == INFINITE) { return NULL; } return LvGetParam(hWnd, id, index); } // Get a string that is currently selected wchar_t *LvGetFocusedStr(HWND hWnd, UINT id, UINT pos) { UINT i; // Validate arguments if (hWnd == NULL) { return NULL; } i = LvGetFocused(hWnd, id); if (i == INFINITE) { return NULL; } return LvGetStr(hWnd, id, i, pos); } // Get the currently selected item UINT LvGetSelected(HWND hWnd, UINT id) { // Validate arguments if (hWnd == NULL) { return INFINITE; } return ListView_GetNextItem(DlgItem(hWnd, id), -1, LVNI_FOCUSED | LVNI_SELECTED); } // Get a string that is currently selected wchar_t *LvGetSelectedStr(HWND hWnd, UINT id, UINT pos) { UINT i; // Validate arguments if (hWnd == NULL) { return NULL; } i = LvGetSelected(hWnd, id); if (i == INFINITE) { return NULL; } return LvGetStr(hWnd, id, i, pos); } char *LvGetSelectedStrA(HWND hWnd, UINT id, UINT pos) { char *ret; wchar_t *tmp = LvGetSelectedStr(hWnd, id, pos); if (tmp == NULL) { return NULL; } ret = CopyUniToStr(tmp); Free(tmp); return ret; } // Get whether two or more items are masked bool LvIsMultiMasked(HWND hWnd, UINT id) { UINT i; // Validate arguments if (hWnd == NULL) { return false; } i = INFINITE; i = LvGetNextMasked(hWnd, id, i); if (i != INFINITE) { if (LvGetNextMasked(hWnd, id, i) != INFINITE) { return true; } } return false; } // Examine whether just only one item is selected bool LvIsSingleSelected(HWND hWnd, UINT id) { return LvIsSelected(hWnd, id) && (LvIsMultiMasked(hWnd, id) == false); } // Get whether there are items that are currently masked bool LvIsMasked(HWND hWnd, UINT id) { // Validate arguments if (hWnd == NULL) { return false; } if (LvGetNextMasked(hWnd, id, INFINITE) == INFINITE) { return false; } return true; } // Get the items that is currently masked UINT LvGetNextMasked(HWND hWnd, UINT id, UINT start) { // Validate arguments if (hWnd == NULL) { return INFINITE; } return ListView_GetNextItem(DlgItem(hWnd, id), start, LVNI_SELECTED); } // Search an item with the specified string UINT LvSearchStr(HWND hWnd, UINT id, UINT pos, wchar_t *str) { UINT i, num; // Validate arguments if (hWnd == NULL || str == NULL) { return INFINITE; } num = LvNum(hWnd, id); for (i = 0;i < num;i++) { wchar_t *s = LvGetStr(hWnd, id, i, pos); if (s != NULL) { if (UniStrCmpi(s, str) == 0) { Free(s); return i; } else { Free(s); } } } return INFINITE; } UINT LvSearchStrA(HWND hWnd, UINT id, UINT pos, char *str) { wchar_t *tmp = CopyStrToUni(str); UINT ret = LvSearchStr(hWnd, id, pos, tmp); Free(tmp); return ret; } // Search for item that have a specified param UINT LvSearchParam(HWND hWnd, UINT id, void *param) { UINT i, num; // Validate arguments if (hWnd == NULL) { return INFINITE; } num = LvNum(hWnd, id); for (i = 0;i < num;i++) { if (LvGetParam(hWnd, id, i) == param) { return i; } } return INFINITE; } // Get the number of items UINT LvNum(HWND hWnd, UINT id) { // Validate arguments if (hWnd == NULL) { return 0; } return ListView_GetItemCount(DlgItem(hWnd, id)); } // Remove an item void LvDeleteItem(HWND hWnd, UINT id, UINT index) { UINT i; // Validate arguments if (hWnd == NULL) { return; } ListView_DeleteItem(DlgItem(hWnd, id), index); i = LvGetSelected(hWnd, id); if (i != INFINITE) { LvSelect(hWnd, id, i); } } // Get the data from the item void *LvGetParam(HWND hWnd, UINT id, UINT index) { return LvGetParamEx(hWnd, id, index, 0); } void *LvGetParamEx(HWND hWnd, UINT id, UINT index, UINT subitem) { LVITEM t; // Validate arguments if (hWnd == NULL) { return NULL; } if (index == INFINITE) { return NULL; } Zero(&t, sizeof(t)); t.mask = LVIF_PARAM; t.iItem = index; t.iSubItem = subitem; if (ListView_GetItem(DlgItem(hWnd, id), &t) == false) { return NULL; } return (void *)t.lParam; } // Get the string of item wchar_t *LvGetStr(HWND hWnd, UINT id, UINT index, UINT pos) { wchar_t *tmp; UINT size; LVITEMW t; // Validate arguments if (hWnd == NULL) { return NULL; } size = 65536; tmp = Malloc(size); Zero(&t, sizeof(t)); t.mask = LVIF_TEXT; t.iItem = index; t.iSubItem = pos; t.pszText = tmp; t.cchTextMax = size; if (SendMsg(hWnd, id, LVM_GETITEMTEXTW, index, (LPARAM)&t) <= 0) { Free(tmp); return UniCopyStr(L""); } else { wchar_t *ret = UniCopyStr(tmp); Free(tmp); return ret; } } char *LvGetStrA(HWND hWnd, UINT id, UINT index, UINT pos) { char *tmp; UINT size; LVITEM t; // Validate arguments if (hWnd == NULL) { return NULL; } size = 65536; tmp = Malloc(size); Zero(&t, sizeof(t)); t.mask = LVIF_TEXT; t.iItem = index; t.iSubItem = pos; t.pszText = tmp; t.cchTextMax = size; if (SendMsg(hWnd, id, LVM_GETITEMTEXT, index, (LPARAM)&t) <= 0) { Free(tmp); return CopyStr(""); } else { char *ret = CopyStr(tmp); Free(tmp); return ret; } } // Set the style void LvSetStyle(HWND hWnd, UINT id, UINT style) { // Validate arguments if (hWnd == NULL) { return; } if ((ListView_GetExtendedListViewStyle(DlgItem(hWnd, id)) & style) == 0) { ListView_SetExtendedListViewStyleEx(DlgItem(hWnd, id), style, style); } } // Remove the style void LvRemoveStyle(HWND hWnd, UINT id, UINT style) { // Validate arguments if (hWnd == NULL) { return; } if ((ListView_GetExtendedListViewStyle(DlgItem(hWnd, id)) & style) != 0) { ListView_SetExtendedListViewStyleEx(DlgItem(hWnd, id), style, 0); } } // Invert the selection of items void LvSwitchSelect(HWND hWnd, UINT id) { UINT i, num; bool *states; // Validate arguments if (hWnd == NULL) { return; } num = LvNum(hWnd, id); states = ZeroMalloc(sizeof(bool) * num); i = INFINITE; while (true) { i = LvGetNextMasked(hWnd, id, i); if (i == INFINITE) { break; } states[i] = true; } for (i = 0;i < num;i++) { if (states[i] == false) { ListView_SetItemState(DlgItem(hWnd, id), i, LVIS_SELECTED, LVIS_SELECTED); } else { ListView_SetItemState(DlgItem(hWnd, id), i, 0, LVIS_SELECTED); } } Free(states); } // Select all items void LvSelectAll(HWND hWnd, UINT id) { UINT i, num; // Validate arguments if (hWnd == NULL) { return; } num = LvNum(hWnd, id); for (i = 0;i < num;i++) { ListView_SetItemState(DlgItem(hWnd, id), i, LVIS_SELECTED, LVIS_SELECTED); } } // Select the item by specifying the parameter void LvSelectByParam(HWND hWnd, UINT id, void *param) { UINT index; // Validate arguments if (hWnd == NULL || param == NULL) { return; } index = LvSearchParam(hWnd, id, param); if (index == INFINITE) { return; } LvSelect(hWnd, id, index); } // Select an item void LvSelect(HWND hWnd, UINT id, UINT index) { // Validate arguments if (hWnd == NULL) { return; } if (index == INFINITE) { UINT i, num; // Deselect all num = LvNum(hWnd, id); for (i = 0;i < num;i++) { ListView_SetItemState(DlgItem(hWnd, id), i, 0, LVIS_SELECTED); } } else { // Select ListView_SetItemState(DlgItem(hWnd, id), index, LVIS_FOCUSED | LVIS_SELECTED, LVIS_FOCUSED | LVIS_SELECTED); ListView_EnsureVisible(DlgItem(hWnd, id), index, true); } } // Show the certificate information void PrintCertInfo(HWND hWnd, CERT_DLG *p) { X *x; char *serial_tmp; UINT serial_size; wchar_t *wchar_tmp; wchar_t tmp[1024 * 5]; UCHAR md5[MD5_SIZE]; UCHAR sha1[SHA1_SIZE]; char *s_tmp; K *k; // Validate arguments if (p == NULL || hWnd == NULL) { return; } x = p->x; // Serial number if (x->serial != NULL) { serial_size = x->serial->size * 3 + 1; serial_tmp = ZeroMalloc(serial_size); BinToStrEx(serial_tmp, serial_size, x->serial->data, x->serial->size); wchar_tmp = CopyStrToUni(serial_tmp); Free(serial_tmp); } else { wchar_tmp = CopyUniStr(_UU("CERT_NO_SERIAL")); } LvInsert(hWnd, L_CERTINFO, ICO_CERT, NULL, 2, _UU("CERT_SERIAL"), wchar_tmp); // Issuer GetAllNameFromName(tmp, sizeof(tmp), x->issuer_name); LvInsert(hWnd, L_CERTINFO, ICO_CERT, NULL, 2, _UU("CERT_ISSUER"), tmp); // Subject GetAllNameFromName(tmp, sizeof(tmp), x->subject_name); LvInsert(hWnd, L_CERTINFO, ICO_CERT, NULL, 2, _UU("CERT_SUBJECT"), tmp); // Not available before GetDateTimeStrEx64(tmp, sizeof(tmp), SystemToLocal64(x->notBefore), NULL); LvInsert(hWnd, L_CERTINFO, ICO_CERT, NULL, 2, _UU("CERT_NOT_BEFORE"), tmp); // Not available after GetDateTimeStrEx64(tmp, sizeof(tmp), SystemToLocal64(x->notAfter), NULL); LvInsert(hWnd, L_CERTINFO, ICO_CERT, NULL, 2, _UU("CERT_NOT_AFTER"), tmp); // Public key k = GetKFromX(x); if (k != NULL) { UINT type = EVP_PKEY_base_id(k->pkey); switch (type) { case EVP_PKEY_RSA: LvInsert(hWnd, L_CERTINFO, ICO_CERT, NULL, 2, _UU("CERT_KEY_ALGORITHM"), L"RSA"); UniFormat(tmp, sizeof(tmp), _UU("CERT_BITS_FORMAT"), x->bits); LvInsert(hWnd, L_CERTINFO, ICO_CERT, NULL, 2, _UU("CERT_BITS"), tmp); break; case EVP_PKEY_EC: LvInsert(hWnd, L_CERTINFO, ICO_CERT, NULL, 2, _UU("CERT_KEY_ALGORITHM"), L"ECDSA"); UniFormat(tmp, sizeof(tmp), _UU("CERT_BITS_FORMAT"), x->bits); LvInsert(hWnd, L_CERTINFO, ICO_CERT, NULL, 2, _UU("CERT_BITS"), tmp); # ifndef OPENSSL_NO_EC EC_KEY *key = EVP_PKEY_get0_EC_KEY(k->pkey); if (key == NULL) { break; } EC_GROUP *group = EC_KEY_get0_group(key); if (group == NULL) { break; } int nid = EC_GROUP_get_curve_name(group); if (nid == 0) { break; } if (StrToUni(tmp, sizeof(tmp), OBJ_nid2sn(nid)) > 0) { wchar_t *nname = CopyStrToUni(EC_curve_nid2nist(nid)); if (nname) { UniFormat(tmp, sizeof(tmp), L"%s (%s)", tmp, nname); } LvInsert(hWnd, L_CERTINFO, ICO_CERT, NULL, 2, _UU("CERT_KEY_PARAMETER"), tmp); Free(nname); } # endif break; default: break; } BUF *b = KToBuf(k, false, NULL); s_tmp = CopyBinToStrEx(b->Buf, b->Size); StrToUni(tmp, sizeof(tmp), s_tmp); Free(s_tmp); LvInsert(hWnd, L_CERTINFO, ICO_KEY, NULL, 2, _UU("CERT_PUBLIC_KEY"), tmp); FreeBuf(b); } FreeK(k); GetXDigest(x, md5, false); GetXDigest(x, sha1, true); // Digest (MD5) s_tmp = CopyBinToStrEx(md5, sizeof(md5)); StrToUni(tmp, sizeof(tmp), s_tmp); Free(s_tmp); LvInsert(hWnd, L_CERTINFO, ICO_KEY, NULL, 2, _UU("CERT_DIGEST_MD5"), tmp); // Digest (SHA-1) s_tmp = CopyBinToStrEx(sha1, sizeof(sha1)); StrToUni(tmp, sizeof(tmp), s_tmp); Free(s_tmp); LvInsert(hWnd, L_CERTINFO, ICO_KEY, NULL, 2, _UU("CERT_DIGEST_SHA1"), tmp); Free(wchar_tmp); LvSelect(hWnd, L_CERTINFO, 0); } // Update the display void CertDlgUpdate(HWND hWnd, CERT_DLG *p) { // Validate arguments if (hWnd == NULL || p == NULL) { return; } if (LvIsSelected(hWnd, L_CERTINFO) == false) { SetText(hWnd, E_DETAIL, L""); } else { UINT i = LvGetSelected(hWnd, L_CERTINFO); wchar_t *tmp = LvGetStr(hWnd, L_CERTINFO, i, 1); SetText(hWnd, E_DETAIL, tmp); Free(tmp); } } // Save the certificate void CertDlgSave(HWND hWnd, CERT_DLG *p) { wchar_t *name; X *x; // Validate arguments if (hWnd == NULL || p == NULL) { return; } // Save to a file name = SaveDlg(hWnd, _UU("DLG_CERT_FILES"), _UU("DLG_SAVE_CERT"), NULL, L".cer"); x = p->x; if (name != NULL) { wchar_t str[MAX_SIZE]; UniStrCpy(str, sizeof(str), name); if (XToFileW(x, str, true)) { MsgBox(hWnd, MB_ICONINFORMATION, _UU("DLG_CERT_SAVE_OK")); } else { MsgBox(hWnd, MB_ICONSTOP, _UU("DLG_CERT_SAVE_ERROR")); } Free(name); } } // Certificate display dialog procedure UINT CertDlgProc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam, void *param) { CERT_DLG *p = (CERT_DLG *)param; X *x; wchar_t tmp[MAX_SIZE]; NMHDR *n; // Validate arguments if (hWnd == NULL) { return 0; } switch (msg) { case WM_INITDIALOG: SetIcon(hWnd, 0, ICO_CERT); x = p->x; GetAllNameFromNameEx(tmp, sizeof(tmp), x->subject_name); SetText(hWnd, E_SUBJECT, tmp); GetAllNameFromNameEx(tmp, sizeof(tmp), x->issuer_name); SetText(hWnd, E_ISSUER, tmp); GetDateStrEx64(tmp, sizeof(tmp), SystemToLocal64(x->notAfter), NULL); SetText(hWnd, E_EXPIRES, tmp); SetFont(hWnd, E_SUBJECT, Font(0, 1)); SetFont(hWnd, E_ISSUER, Font(0, 1)); SetFont(hWnd, E_EXPIRES, Font(0, 1)); SetIcon(hWnd, B_PARENT, ICO_CERT); if (x->root_cert) { // Root certificate Hide(hWnd, S_WARNING_ICON); SetText(hWnd, S_PARENT, _UU("CERT_ROOT")); Hide(hWnd, B_PARENT); Hide(hWnd, S_PARENT_BUTTON_STR); } else if (p->issuer_x != NULL) { // Parent certificate exists Hide(hWnd, S_WARNING_ICON); } else { // There is no parent certificate Hide(hWnd, S_CERT_ICON); Hide(hWnd, B_PARENT); Hide(hWnd, S_PARENT_BUTTON_STR); SetText(hWnd, S_PARENT, _UU("CERT_NOT_FOUND")); if (p->ManagerMode) { Hide(hWnd, IDC_STATIC1); Hide(hWnd, S_PARENT); Hide(hWnd, S_WARNING_ICON); Hide(hWnd, S_CERT_ICON); Hide(hWnd, B_PARENT); Hide(hWnd, S_PARENT_BUTTON_STR); } } LvInit(hWnd, L_CERTINFO); LvInsertColumn(hWnd, L_CERTINFO, 0, _UU("CERT_LV_C1"), 130); LvInsertColumn(hWnd, L_CERTINFO, 1, _UU("CERT_LV_C2"), 250); PrintCertInfo(hWnd, p); Focus(hWnd, L_CERTINFO); CertDlgUpdate(hWnd, p); if (p->ManagerMode) { Show(hWnd, B_SAVE); } else { // Hide for security Hide(hWnd, B_SAVE); } break; case WM_COMMAND: switch (wParam) { case IDOK: case IDCANCEL: Close(hWnd); break; case B_PARENT: CertDlg(hWnd, p->issuer_x, NULL, p->ManagerMode); break; case B_SAVE: // Save to the file CertDlgSave(hWnd, p); break; } break; case WM_CLOSE: EndDialog(hWnd, false); break; case WM_NOTIFY: n = (NMHDR *)lParam; switch (n->idFrom) { case L_CERTINFO: switch (n->code) { case LVN_ITEMCHANGED: CertDlgUpdate(hWnd, p); break; } break; } break; } LvSortHander(hWnd, msg, wParam, lParam, L_CERTINFO); return 0; } // Certificate display dialog void CertDlg(HWND hWnd, X *x, X *issuer_x, bool manager) { CERT_DLG p; // Validate arguments if (x == NULL) { return; } Zero(&p, sizeof(p)); p.x = x; if (CompareX(x, issuer_x) == false) { p.issuer_x = issuer_x; } p.ManagerMode = manager; Dialog(hWnd, D_CERT, CertDlgProc, &p); } // Status window dialog UINT StatusPrinterWindowDlg(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam, void *param) { STATUS_WINDOW_PARAM *p = (STATUS_WINDOW_PARAM *)param; PACK *pack; // Validate arguments if (hWnd == NULL) { return 0; } switch (msg) { case WM_INITDIALOG: // Initialize SetIcon(hWnd, 0, ICO_SERVER_ONLINE); RemoveExStyle(hWnd, 0, WS_EX_APPWINDOW); p->hWnd = hWnd; NoticeThreadInit(p->Thread); FormatText(hWnd, 0, p->AccountName); break; case WM_COMMAND: switch (wParam) { case IDOK: case IDCANCEL: // Cancel button Close(hWnd); break; } break; case WM_APP + 1: // Set a string SetText(hWnd, S_STATUS, (wchar_t *)lParam); break; case WM_APP + 2: // Close this window EndDialog(hWnd, false); break; case WM_CLOSE: // End the session pack = NewPack(); SendPack(p->Sock, pack); EndDialog(hWnd, false); break; } return 0; } // Status window control thread void StatusPrinterWindowThread(THREAD *thread, void *param) { STATUS_WINDOW_PARAM *p = (STATUS_WINDOW_PARAM *)param; // Validate arguments if (thread == NULL || param == NULL) { return; } p->Thread = thread; DialogEx2(NULL, D_STATUS, StatusPrinterWindowDlg, p, true, true); Free(p); } // Show a message in the status window void StatusPrinterWindowPrint(STATUS_WINDOW *sw, wchar_t *str) { // Validate arguments if (sw == NULL) { return; } SendMessage(sw->hWnd, WM_APP + 1, 0, (LPARAM)str); } // End and release the status window void StatusPrinterWindowStop(STATUS_WINDOW *sw) { // Validate arguments if (sw == NULL) { return; } // Send stop message SendMessage(sw->hWnd, WM_APP + 2, 0, 0); // Wait until the thread terminates WaitThread(sw->Thread, INFINITE); // Release the memory ReleaseThread(sw->Thread); Free(sw); } // Initialize the status window STATUS_WINDOW *StatusPrinterWindowStart(SOCK *s, wchar_t *account_name) { STATUS_WINDOW_PARAM *p; STATUS_WINDOW *sw; THREAD *t; // Validate arguments if (s == NULL || account_name == NULL) { return NULL; } p = ZeroMalloc(sizeof(STATUS_WINDOW_PARAM)); p->Sock = s; UniStrCpy(p->AccountName, sizeof(p->AccountName), account_name); // Create a thread t = NewThread(StatusPrinterWindowThread, p); WaitThreadInit(t); sw = ZeroMalloc(sizeof(STATUS_WINDOW)); sw->hWnd = p->hWnd; sw->Thread = t; return sw; } // Remove all void LbReset(HWND hWnd, UINT id) { // Validate arguments if (hWnd == NULL) { return; } SendMsg(hWnd, id, LB_RESETCONTENT, 0, 0); } // Password input dialog state change void PasswordDlgProcChange(HWND hWnd, UI_PASSWORD_DLG *p) { bool b; // Validate arguments if (hWnd == NULL || p == NULL) { return; } b = true; if (IsEmpty(hWnd, E_USERNAME)) { b = false; } SetEnable(hWnd, IDOK, b); p->StartTick = Tick64(); if (p->RetryIntervalSec) { KillTimer(hWnd, 1); Hide(hWnd, P_PROGRESS); Hide(hWnd, S_COUNTDOWN); } } // Get the string wchar_t *CbGetStr(HWND hWnd, UINT id) { // Validate arguments if (hWnd == NULL) { return NULL; } return GetText(hWnd, id); } // String search UINT CbFindStr(HWND hWnd, UINT id, wchar_t *str) { UINT ret; // Validate arguments if (hWnd == NULL || str == NULL) { return INFINITE; } ret = SendMsg(hWnd, id, CB_FINDSTRINGEXACT, -1, (LPARAM)str); return ret; } UINT CbFindStr9xA(HWND hWnd, UINT id, char *str) { UINT ret; // Validate arguments if (hWnd == NULL || str == NULL) { return INFINITE; } ret = SendMsg(hWnd, id, CB_FINDSTRINGEXACT, -1, (LPARAM)str); return ret; } // Get the number of items UINT CbNum(HWND hWnd, UINT id) { // Validate arguments if (hWnd == NULL) { return INFINITE; } return SendMsg(hWnd, id, CB_GETCOUNT, 0, 0); } // Add a string UINT CbAddStrA(HWND hWnd, UINT id, char *str, UINT data) { wchar_t *tmp; UINT ret; // Validate arguments if (hWnd == NULL || str == NULL) { return INFINITE; } tmp = CopyStrToUni(str); ret = CbAddStr(hWnd, id, tmp, data); Free(tmp); return ret; } UINT CbAddStr(HWND hWnd, UINT id, wchar_t *str, UINT data) { UINT ret; // Validate arguments if (hWnd == NULL || str == NULL) { return INFINITE; } ret = SendMsg(hWnd, id, CB_ADDSTRING, 0, (LPARAM)str); SendMsg(hWnd, id, CB_SETITEMDATA, ret, (LPARAM)data); if (CbNum(hWnd, id) == 1) { wchar_t tmp[MAX_SIZE]; GetTxt(hWnd, id, tmp, sizeof(tmp)); if (UniStrLen(tmp) == 0) { CbSelectIndex(hWnd, id, 0); } } return ret; } UINT CbAddStr9xA(HWND hWnd, UINT id, char *str, UINT data) { UINT ret; // Validate arguments if (hWnd == NULL || str == NULL) { return INFINITE; } ret = SendMsg(hWnd, id, CB_ADDSTRING, 0, (LPARAM)str); SendMsg(hWnd, id, CB_SETITEMDATA, ret, (LPARAM)data); if (CbNum(hWnd, id) == 1) { wchar_t tmp[MAX_SIZE]; GetTxt(hWnd, id, tmp, sizeof(tmp)); if (UniStrLen(tmp) == 0) { CbSelectIndex(hWnd, id, 0); } } return ret; } // Remove all void CbReset(HWND hWnd, UINT id) { wchar_t *s; // Validate arguments if (hWnd == NULL) { return; } s = GetText(hWnd, id); SendMsg(hWnd, id, CB_RESETCONTENT, 0, 0); if (s != NULL) { SetText(hWnd, id, s); Free(s); } } // Select by specifying the index void CbSelectIndex(HWND hWnd, UINT id, UINT index) { // Validate arguments if (hWnd == NULL) { return; } SendMsg(hWnd, id, CB_SETCURSEL, index, 0); } // Get the data UINT CbGetData(HWND hWnd, UINT id, UINT index) { // Validate arguments if (hWnd == NULL || index == INFINITE) { return INFINITE; } return SendMsg(hWnd, id, CB_GETITEMDATA, index, 0); } // Search for the data UINT CbFindData(HWND hWnd, UINT id, UINT data) { UINT i, num; // Validate arguments if (hWnd == NULL) { return INFINITE; } num = CbNum(hWnd, id); if (num == INFINITE) { return INFINITE; } for (i = 0;i < num;i++) { if (CbGetData(hWnd, id, i) == data) { return i; } } return INFINITE; } // Set the height of the item void CbSetHeight(HWND hWnd, UINT id, UINT value) { // Validate arguments if (hWnd == NULL) { return; } SendMsg(hWnd, id, CB_SETITEMHEIGHT, 0, (UINT)(GetTextScalingFactor() * (double)value)); } // Search by specifying the data void CbSelect(HWND hWnd, UINT id, int data) { UINT index; // Validate arguments if (hWnd == NULL) { return; } if (data == INFINITE) { // Get the first item CbSelectIndex(hWnd, id, 0); return; } index = CbFindData(hWnd, id, data); if (index == INFINITE) { // Can not be found return; } // Select CbSelectIndex(hWnd, id, index); } // Get the currently selected item UINT CbGetSelectIndex(HWND hWnd, UINT id) { // Validate arguments if (hWnd == NULL) { return INFINITE; } return SendMsg(hWnd, id, CB_GETCURSEL, 0, 0); } // Get the value that is currently selected UINT CbGetSelect(HWND hWnd, UINT id) { UINT index; // Validate arguments if (hWnd == NULL) { return INFINITE; } index = CbGetSelectIndex(hWnd, id); if (index == INFINITE) { return INFINITE; } return CbGetData(hWnd, id, index); } // OK button is pressed void PasswordDlgOnOk(HWND hWnd, UI_PASSWORD_DLG *p) { // Validate arguments if (hWnd == NULL || p == NULL) { return; } GetTxtA(hWnd, E_USERNAME, p->Username, sizeof(p->Username)); GetTxtA(hWnd, E_PASSWORD, p->Password, sizeof(p->Password)); p->Type = CbGetSelect(hWnd, C_TYPE); if (p->ShowNoSavePassword) { p->NoSavePassword = IsChecked(hWnd, R_NO_SAVE_PASSWORD); } EndDialog(hWnd, true); } // Password input dialog procedure UINT PasswordDlgProc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam, void *param) { UI_PASSWORD_DLG *p = (UI_PASSWORD_DLG *)param; // Validate arguments if (hWnd == NULL) { return 0; } switch (msg) { case WM_INITDIALOG: SetIcon(hWnd, 0, ICO_KEY); CbSetHeight(hWnd, C_TYPE, 18); if (p->ServerName != NULL) { FormatText(hWnd, 0, p->ServerName); } else { SetText(hWnd, 0, _UU("PW_LOGIN_DLG_TITLE")); } if (p->ProxyServer == false) { FormatText(hWnd, S_TITLE, p->ServerName == NULL ? "" : p->ServerName); } else { wchar_t tmp[MAX_SIZE]; UniFormat(tmp, sizeof(tmp), _UU("PW_MSG_PROXY"), p->ServerName == NULL ? "" : p->ServerName); SetText(hWnd, S_TITLE, tmp); } // Enumerate the connection methods SendMsg(hWnd, C_TYPE, CBEM_SETUNICODEFORMAT, true, 0); if (StrCmpi(p->Username, WINUI_PASSWORD_NULL_USERNAME) != 0) { SetTextA(hWnd, E_USERNAME, p->Username); SetTextA(hWnd, E_PASSWORD, p->Password); } else { p->RetryIntervalSec = 0; SetTextA(hWnd, E_USERNAME, ""); SetTextA(hWnd, E_PASSWORD, ""); } if (p->AdminMode == false) { if (p->ProxyServer == false) { CbAddStr(hWnd, C_TYPE, _UU("PW_TYPE_1"), CLIENT_AUTHTYPE_PASSWORD); CbAddStr(hWnd, C_TYPE, _UU("PW_TYPE_2"), CLIENT_AUTHTYPE_PLAIN_PASSWORD); } else { CbAddStr(hWnd, C_TYPE, _UU("PW_TYPE_PROXY"), 0); Disable(hWnd, C_TYPE); } CbSelect(hWnd, C_TYPE, p->Type); } else { CbAddStr(hWnd, C_TYPE, _UU("SM_PASSWORD_TYPE_STR"), 0); Disable(hWnd, C_TYPE); SetTextA(hWnd, E_USERNAME, "Administrator"); Disable(hWnd, E_USERNAME); } if (IsEmpty(hWnd, E_USERNAME)) { FocusEx(hWnd, E_USERNAME); } else { FocusEx(hWnd, E_PASSWORD); } LimitText(hWnd, E_USERNAME, MAX_USERNAME_LEN); LimitText(hWnd, E_PASSWORD, MAX_PASSWORD_LEN); PasswordDlgProcChange(hWnd, p); if (p->RetryIntervalSec != 0) { SetTimer(hWnd, 1, 50, NULL); FormatText(hWnd, S_COUNTDOWN, p->RetryIntervalSec); Show(hWnd, S_COUNTDOWN); Show(hWnd, P_PROGRESS); SetRange(hWnd, P_PROGRESS, 0, p->RetryIntervalSec * 1000); } else { Hide(hWnd, S_COUNTDOWN); Hide(hWnd, P_PROGRESS); } if (p->ShowNoSavePassword) { Show(hWnd, R_NO_SAVE_PASSWORD); Check(hWnd, R_NO_SAVE_PASSWORD, p->NoSavePassword); } else { Hide(hWnd, R_NO_SAVE_PASSWORD); } p->StartTick = Tick64(); if (p->CancelEvent != NULL) { SetTimer(hWnd, 2, 50, NULL); } break; case WM_CLOSE: EndDialog(hWnd, false); break; case WM_TIMER: switch (wParam) { case 1: if (p->RetryIntervalSec != 0) { wchar_t tmp[MAX_SIZE]; UINT64 end, now, start; start = p->StartTick; end = p->StartTick + (UINT64)(p->RetryIntervalSec * 1000); now = Tick64(); if (now <= end) { UniFormat(tmp, sizeof(tmp), _UU("PW_RETRYCOUNT"), (UINT)((end - now) / 1000)); SetText(hWnd, S_COUNTDOWN, tmp); SetPos(hWnd, P_PROGRESS, (UINT)(now - start)); } else { EndDialog(hWnd, true); } } break; case 2: if (p->CancelEvent != NULL) { // Wait for the end event HANDLE hEvent = (HANDLE)p->CancelEvent->pData; UINT ret = WaitForSingleObject(hEvent, 0); if (ret != WAIT_TIMEOUT) { // Forced termination event is set Close(hWnd); } } break; } break; case WM_COMMAND: switch (wParam) { case IDOK: PasswordDlgOnOk(hWnd, p); break; case IDCANCEL: Close(hWnd); break; } switch (HIWORD(wParam)) { case EN_CHANGE: switch (LOWORD(wParam)) { case E_USERNAME: case E_PASSWORD: PasswordDlgProcChange(hWnd, p); break; } break; case CBN_SELCHANGE: switch (LOWORD(wParam)) { case C_TYPE: PasswordDlgProcChange(hWnd, p); if (IsEmpty(hWnd, E_USERNAME)) { FocusEx(hWnd, E_USERNAME); } else { FocusEx(hWnd, E_PASSWORD); } break; } break; } break; } return 0; } // Set the position of the progress bar void SetPos(HWND hWnd, UINT id, UINT pos) { // Validate arguments if (hWnd == NULL) { return; } SendMsg(hWnd, id, PBM_SETPOS, pos, 0); } // Set the range of the progress bar void SetRange(HWND hWnd, UINT id, UINT start, UINT end) { // Validate arguments if (hWnd == NULL) { return; } SendMsg(hWnd, id, PBM_SETRANGE32, start, end); } // Password input dialog bool PasswordDlg(HWND hWnd, UI_PASSWORD_DLG *p) { // Validate arguments if (p == NULL) { return false; } p->StartTick = Tick64(); return Dialog(hWnd, D_PASSWORD, PasswordDlgProc, p); } // Passphrase input dialog bool PassphraseDlg(HWND hWnd, char *pass, UINT pass_size, BUF *buf, bool p12) { PASSPHRASE_DLG p; // Validate arguments if (pass == NULL || buf == NULL) { return false; } Zero(&p, sizeof(PASSPHRASE_DLG)); p.buf = buf; p.p12 = p12; // Examine whether it is encrypted first if (p12 == false) { // Secret key if (IsEncryptedK(buf, true) == false) { // Unencrypted StrCpy(pass, pass_size, ""); return true; } } else { // PKCS#12 P12 *p12 = BufToP12(buf); if (p12 == NULL) { // It is in unknown format, but not encrypted StrCpy(pass, pass_size, ""); return true; } if (IsEncryptedP12(p12) == false) { // Unencrypted StrCpy(pass, pass_size, ""); FreeP12(p12); return true; } FreeP12(p12); } // Show the dialog if (Dialog(hWnd, D_PASSPHRASE, PassphraseDlgProc, &p) == false) { // Cancel return false; } StrCpy(pass, pass_size, p.pass); return true; } // WM_COMMAND handler void PassphraseDlgProcCommand(HWND hWnd, PASSPHRASE_DLG *p) { char *pass; bool ok; // Validate arguments if (hWnd == NULL || p == NULL) { return; } pass = GetTextA(hWnd, E_PASSPHRASE); if (pass == NULL) { return; } ok = false; if (p->p12 == false) { K *k; k = BufToK(p->buf, true, true, pass); if (k != NULL) { ok = true; FreeK(k); } } else { X *x; K *k; P12 *p12; p12 = BufToP12(p->buf); if (p12 != NULL) { if (ParseP12(p12, &x, &k, pass)) { FreeX(x); FreeK(k); ok = true; } FreeP12(p12); } } Free(pass); SetEnable(hWnd, IDOK, ok); } // Passphrase input dialog procedure UINT PassphraseDlgProc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam, void *param) { PASSPHRASE_DLG *p = (PASSPHRASE_DLG *)param; // Validate arguments if (hWnd == NULL) { return 0; } switch (msg) { case WM_INITDIALOG: PassphraseDlgProcCommand(hWnd, p); break; case WM_COMMAND: switch (wParam) { case IDOK: GetTxtA(hWnd, E_PASSPHRASE, p->pass, sizeof(p->pass)); EndDialog(hWnd, true); break; case IDCANCEL: Close(hWnd); break; } switch (LOWORD(wParam)) { case E_PASSPHRASE: PassphraseDlgProcCommand(hWnd, p); break; } break; case WM_CLOSE: EndDialog(hWnd, false); break; } return 0; } // [Save File] dialog wchar_t *SaveDlg(HWND hWnd, wchar_t *filter, wchar_t *title, wchar_t *default_name, wchar_t *default_ext) { wchar_t *filter_str; wchar_t tmp[MAX_SIZE]; OPENFILENAMEW o; // Validate arguments if (filter == NULL) { filter = _UU("DLG_ALL_FILES"); } filter_str = MakeFilter(filter); Zero(&o, sizeof(o)); Zero(tmp, sizeof(tmp)); if (default_name != NULL) { UniStrCpy(tmp, sizeof(tmp), default_name); } o.lStructSize = sizeof(o); o.hwndOwner = hWnd; o.hInstance = GetModuleHandle(NULL); o.lpstrFile = tmp; o.lpstrTitle = title; o.lpstrFilter = filter_str; o.nMaxFile = sizeof(tmp); o.Flags = OFN_OVERWRITEPROMPT; o.lpstrDefExt = default_ext; if (GetSaveFileNameW(&o) == false) { Free(filter_str); return NULL; } Free(filter_str); return UniCopyStr(tmp); } char *SaveDlgA(HWND hWnd, char *filter, char *title, char *default_name, char *default_ext) { char *filter_str; char tmp[MAX_SIZE]; OPENFILENAME o; // Validate arguments if (filter == NULL) { filter = _SS("DLG_ALL_FILES"); } filter_str = MakeFilterA(filter); Zero(&o, sizeof(o)); Zero(tmp, sizeof(tmp)); if (default_name != NULL) { StrCpy(tmp, sizeof(tmp), default_name); } o.lStructSize = sizeof(o); o.hwndOwner = hWnd; o.hInstance = GetModuleHandle(NULL); o.lpstrFile = tmp; o.lpstrTitle = title; o.lpstrFilter = filter_str; o.nMaxFile = sizeof(tmp); o.Flags = OFN_OVERWRITEPROMPT; o.lpstrDefExt = default_ext; if (GetSaveFileName(&o) == false) { Free(filter_str); return NULL; } Free(filter_str); return CopyStr(tmp); } // [Open File] dialog wchar_t *OpenDlg(HWND hWnd, wchar_t *filter, wchar_t *title) { wchar_t *filter_str; wchar_t tmp[MAX_SIZE]; OPENFILENAMEW o; // Validate arguments if (filter == NULL) { filter = _UU("DLG_ALL_FILES"); } filter_str = MakeFilter(filter); Zero(&o, sizeof(OPENFILENAMEW)); Zero(tmp, sizeof(tmp)); o.lStructSize = sizeof(o); o.hwndOwner = hWnd; o.hInstance = GetModuleHandle(NULL); o.lpstrFilter = filter_str; o.lpstrFile = tmp; o.nMaxFile = sizeof(tmp); o.lpstrTitle = title; o.Flags = OFN_FILEMUSTEXIST | OFN_HIDEREADONLY; if (GetOpenFileNameW(&o) == false) { Free(filter_str); return NULL; } Free(filter_str); return UniCopyStr(tmp); } char *OpenDlgA(HWND hWnd, char *filter, char *title) { char *filter_str; char tmp[MAX_SIZE]; OPENFILENAME o; // Validate arguments if (filter == NULL) { filter = _SS("DLG_ALL_FILES"); } filter_str = MakeFilterA(filter); Zero(&o, sizeof(OPENFILENAME)); Zero(tmp, sizeof(tmp)); o.lStructSize = sizeof(o); o.hwndOwner = hWnd; o.hInstance = GetModuleHandle(NULL); o.lpstrFilter = filter_str; o.lpstrFile = tmp; o.nMaxFile = sizeof(tmp); o.lpstrTitle = title; o.Flags = OFN_FILEMUSTEXIST | OFN_HIDEREADONLY; if (GetOpenFileName(&o) == false) { Free(filter_str); return NULL; } Free(filter_str); return CopyStr(tmp); } // Generate the filter string wchar_t *MakeFilter(wchar_t *str) { UINT i; wchar_t *ret; // Validate arguments if (str == NULL) { return NULL; } ret = ZeroMalloc(UniStrSize(str) + 32); for (i = 0;i < UniStrLen(str);i++) { if (str[i] == L'|') { ret[i] = L'\0'; } else { ret[i] = str[i]; } } return ret; } char *MakeFilterA(char *str) { UINT i; char *ret; // Validate arguments if (str == NULL) { return NULL; } ret = ZeroMalloc(StrSize(str) + 32); for (i = 0;i < StrLen(str);i++) { if (str[i] == '|') { ret[i] = '\0'; } else { ret[i] = str[i]; } } return ret; } // Execution of batch bool ExecuteSecureDeviceBatch(HWND hWnd, SECURE *sec, SECURE_DEVICE_THREAD *p, SECURE_DEVICE *dev, WINUI_SECURE_BATCH *batch) { LIST *o; void *buf; UINT size = 10 * 1024; // Maximum size of the data UINT type = INFINITE; // Validate arguments if (hWnd == NULL || p == NULL || dev == NULL || batch == NULL || sec == NULL) { return false; } switch (batch->Type) { case WINUI_SECURE_DELETE_CERT: type = SEC_X; goto DELETE_OBJECT; case WINUI_SECURE_DELETE_KEY: type = SEC_K; goto DELETE_OBJECT; case WINUI_SECURE_DELETE_DATA: type = SEC_DATA; goto DELETE_OBJECT; case WINUI_SECURE_DELETE_OBJECT: // Delete the object DELETE_OBJECT: SetText(hWnd, S_STATUS, _UU("SEC_DELETE")); if (DeleteSecObjectByName(sec, batch->Name, type) == false) { p->ErrorMessage = UniCopyStr(_UU("SEC_ERROR_DELETE")); return false; } break; case WINUI_SECURE_ENUM_OBJECTS: // Enumerate objects SetText(hWnd, S_STATUS, _UU("SEC_ENUM")); o = EnumSecObject(sec); if (o == NULL) { p->ErrorMessage = UniCopyStr(_UU("SEC_ERROR_ENUM")); return false; } batch->EnumList = o; break; case WINUI_SECURE_WRITE_DATA: // Write the data SetText(hWnd, S_STATUS, _UU("SEC_WRITE_DATA")); if (WriteSecData(sec, batch->Private, batch->Name, batch->InputData->Buf, batch->InputData->Size) == false) { p->ErrorMessage = UniCopyStr(dev->Type != SECURE_USB_TOKEN ? _UU("SEC_ERROR_WRITE_1") : _UU("SEC_ERROR_WRITE_2")); return false; } break; case WINUI_SECURE_READ_DATA: // Read the data SetText(hWnd, S_STATUS, _UU("SEC_READ_DATA")); buf = MallocEx(size, true); size = ReadSecData(sec, batch->Name, buf, size); if (size == 0) { Free(buf); p->ErrorMessage = UniCopyStr(dev->Type != SECURE_USB_TOKEN ? _UU("SEC_ERROR_NOT_FOUND_1") : _UU("SEC_ERROR_NOT_FOUND_2")); return false; } batch->OutputData = NewBuf(); WriteBuf(batch->OutputData, buf, size); SeekBuf(batch->OutputData, 0, 0); Free(buf); break; case WINUI_SECURE_WRITE_CERT: // Write the certificate SetText(hWnd, S_STATUS, _UU("SEC_WRITE_CERT")); if (WriteSecCert(sec, batch->Private, batch->Name, batch->InputX) == false) { p->ErrorMessage = UniCopyStr(dev->Type != SECURE_USB_TOKEN ? _UU("SEC_ERROR_WRITE_1") : _UU("SEC_ERROR_WRITE_2")); return false; } break; case WINUI_SECURE_READ_CERT: // Read the certificate SetText(hWnd, S_STATUS, _UU("SEC_READ_CERT")); batch->OutputX = ReadSecCert(sec, batch->Name); if (batch->OutputX == NULL) { p->ErrorMessage = UniCopyStr(dev->Type != SECURE_USB_TOKEN ? _UU("SEC_ERROR_NOT_FOUND_1") : _UU("SEC_ERROR_NOT_FOUND_2")); return false; } break; case WINUI_SECURE_WRITE_KEY: // Write the secret key SetText(hWnd, S_STATUS, _UU("SEC_WRITE_KEY")); if (WriteSecKey(sec, batch->Private, batch->Name, batch->InputK) == false) { p->ErrorMessage = UniCopyStr(dev->Type != SECURE_USB_TOKEN ? _UU("SEC_ERROR_WRITE_1") : _UU("SEC_ERROR_WRITE_2")); return false; } break; case WINUI_SECURE_SIGN_WITH_KEY: // Signature SetText(hWnd, S_STATUS, _UU("SEC_SIGN")); if (SignSec(sec, batch->Name, batch->OutputSign, batch->InputData->Buf, batch->InputData->Size) == false) { p->ErrorMessage = UniCopyStr(dev->Type != SECURE_USB_TOKEN ? _UU("SEC_ERROR_SIGN_1") : _UU("SEC_ERROR_SIGN_2")); return false; } break; } return true; } // Run the secure device operations as a batch job void SecureDeviceBatch(HWND hWnd, SECURE *sec, SECURE_DEVICE_THREAD *p, SECURE_DEVICE *dev) { UINT i; // Validate arguments if (hWnd == NULL || p == NULL || dev == NULL || sec == NULL) { return; } // Sequential processing for (i = 0;i < p->w->num_batch;i++) { WINUI_SECURE_BATCH *batch = &p->w->batch[i]; if (ExecuteSecureDeviceBatch(hWnd, sec, p, dev, batch) == false) { // If fail even one, abort immediately return; } } // All batch job succeeded p->Succeed = true; } // Thread to perform a secure device operation void SecureDeviceThread(THREAD *t, void *param) { SECURE *sec; SECURE_DEVICE_THREAD *p = (SECURE_DEVICE_THREAD *)param; SECURE_DEVICE *dev; HWND hWnd; // Validate arguments if (t == NULL || param == NULL) { return; } p->Succeed = false; p->ErrorMessage = NULL; hWnd = p->hWnd; // Open the device dev = GetSecureDevice(p->w->device_id); SetText(hWnd, S_STATUS, _UU("SEC_OPENING")); sec = OpenSec(p->w->device_id); if (sec == NULL) { // Device open failure if (p->w->device_id != 9) { p->ErrorMessage = CopyUniFormat(_UU("SEC_ERROR_OPEN_DEVICE"), dev->DeviceName); } else { p->ErrorMessage = CopyUniFormat(_UU("SEC_ERROR_OPEN_DEVICEEX"), dev->DeviceName); } } else { // Open the session SetText(hWnd, S_STATUS, _UU("SEC_OPEN_SESSION")); if (OpenSecSession(sec, 0) == false) { // Session initialization failure p->ErrorMessage = CopyUniFormat(_UU("SEC_ERROR_OPEN_SESSION"), dev->DeviceName); } else { // Login SetText(hWnd, S_STATUS, _UU("SEC_LOGIN")); if (LoginSec(sec, p->pin) == false) { // Login failure p->ErrorMessage =UniCopyStr(_UU("SEC_ERROR_LOGIN")); } else { // Batch processing main SetText(hWnd, S_STATUS, _UU("SEC_INIT_BATCH")); SecureDeviceBatch(hWnd, sec, p, dev); // Logout SetText(hWnd, S_STATUS, _UU("SEC_LOGOUT")); LogoutSec(sec); } // Close the session SetText(hWnd, S_STATUS, _UU("SEC_CLOSE_SESSION")); CloseSecSession(sec); } // Close the device SetText(hWnd, S_STATUS, _UU("SEC_CLOSING")); CloseSec(sec); } if (p->Succeed) { // If successful, show the message for 150ms (service) SetText(hWnd, S_STATUS, _UU("SEC_FINISHED")); SleepThread(150); } SendMessage(p->hWnd, WM_APP + 1, 0, 0); } // Start a secure device operation void StartSecureDevice(HWND hWnd, SECURE_DEVICE_WINDOW *w) { SECURE_DEVICE_THREAD *p; // Validate arguments if (hWnd == NULL || w == NULL) { return; } // Disable the control EnableSecureDeviceWindowControls(hWnd, false); // Start the thread p = ZeroMalloc(sizeof(SECURE_DEVICE_THREAD)); p->w = w; p->hWnd = hWnd; w->p = p; p->pin = GetTextA(hWnd, E_PIN); ReleaseThread(NewThread(SecureDeviceThread, p)); } // Enable or disable the control of the secure device operation window void EnableSecureDeviceWindowControls(HWND hWnd, bool enable) { // Validate arguments if (hWnd == NULL) { return; } if (enable) { Show(hWnd, S_PIN_CODE); Show(hWnd, E_PIN); Show(hWnd, S_WARNING); } else { Hide(hWnd, S_PIN_CODE); Hide(hWnd, E_PIN); Hide(hWnd, S_WARNING); } SetEnable(hWnd, IDOK, enable); SetEnable(hWnd, IDCANCEL, enable); SetEnable(hWnd, S_TITLE, enable); SetEnable(hWnd, S_DEVICE_INFO, enable); SetEnable(hWnd, S_INSERT_SECURE, enable); if (enable == false) { DisableClose(hWnd); SetText(hWnd, S_STATUS, L""); Show(hWnd, S_STATUS); PlayAvi(hWnd, A_PROGRESS, true); } else { EnableClose(hWnd); SetText(hWnd, S_STATUS, L""); Hide(hWnd, S_STATUS); StopAvi(hWnd, A_PROGRESS); } } // Secure device operation window procedure UINT SecureDeviceWindowProc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam, void *param) { SECURE_DEVICE_WINDOW *w = (SECURE_DEVICE_WINDOW *)param; SECURE_DEVICE *dev = GetSecureDevice(w->device_id); switch (msg) { case WM_INITDIALOG: if (dev == NULL) { MsgBoxEx(hWnd, MB_ICONEXCLAMATION, _UU("SEC_ERROR_INVALID_ID"), w->device_id); EndDialog(hWnd, 0); break; } if (IsJPKI(dev->Id)) { // Juki card Hide(hWnd, S_IMAGE); Show(hWnd, S_IMAGE2); Hide(hWnd, S_IMAGE_TSUKUBA); } else { // Regular card Hide(hWnd, S_IMAGE2); if (w->BitmapId != 0) { // For University of Tsukuba Hide(hWnd, S_IMAGE); Show(hWnd, S_IMAGE_TSUKUBA); } else { // For general use Show(hWnd, S_IMAGE); Hide(hWnd, S_IMAGE_TSUKUBA); } } FormatText(hWnd, 0, dev->Type != SECURE_USB_TOKEN ? _UU("SEC_SMART_CARD") : _UU("SEC_USB_TOKEN"), dev->DeviceName); FormatText(hWnd, S_TITLE, dev->DeviceName); FormatText(hWnd, S_INSERT_SECURE, dev->Type != SECURE_USB_TOKEN ? _UU("SEC_INIT_MSG_1") : _UU("SEC_INIT_MSG_2")); FormatText(hWnd, S_DEVICE_INFO, dev->DeviceName, dev->Manufacturer, dev->ModuleName); DlgFont(hWnd, S_SOFTWARE_TITLE, 11, 0); SetText(hWnd, S_SOFTWARE_TITLE, title_bar); DlgFont(hWnd, S_TITLE, 14, true); DlgFont(hWnd, S_DEVICE_INFO, 11, false); DlgFont(hWnd, S_STATUS, 13, true); EnableSecureDeviceWindowControls(hWnd, true); OpenAvi(hWnd, A_PROGRESS, AVI_PROGRESS); SetIcon(hWnd, 0, ICO_KEY); // Initial PIN if ((w->default_pin != NULL && StrLen(w->default_pin) != 0) || (cached_pin_code_expires >= Tick64())) { if (w->default_pin != NULL && StrLen(w->default_pin) != 0) { SetTextA(hWnd, E_PIN, w->default_pin); } else { SetTextA(hWnd, E_PIN, cached_pin_code); } SetTimer(hWnd, 1, 1, NULL); } break; case WM_TIMER: switch (wParam) { case 1: KillTimer(hWnd, 1); Command(hWnd, IDOK); break; } break; case WM_COMMAND: switch (wParam) { case IDOK: StartSecureDevice(hWnd, w); break; case IDCANCEL: Close(hWnd); break; } break; case WM_CLOSE: if (IsEnable(hWnd, IDCANCEL)) { CloseAvi(hWnd, A_PROGRESS); EndDialog(hWnd, false); } break; case WM_APP + 1: // There is a response from the thread if (w->p != NULL) { if (w->p->Succeed) { // Success if (w->default_pin != NULL) { StrCpy(w->default_pin, 128, w->p->pin); } StrCpy(cached_pin_code, sizeof(cached_pin_code), w->p->pin); cached_pin_code_expires = Tick64() + (UINT64)WINUI_SECUREDEVICE_PIN_CACHE_TIME; Free(w->p->pin); Free(w->p); EndDialog(hWnd, true); } else { // Failure cached_pin_code_expires = 0; EnableSecureDeviceWindowControls(hWnd, true); FocusEx(hWnd, E_PIN); MsgBox(hWnd, MB_ICONEXCLAMATION, w->p->ErrorMessage); Free(w->p->pin); Free(w->p->ErrorMessage); Free(w->p); } } break; } return 0; } // Send a WM_COMMAND void Command(HWND hWnd, UINT id) { SendMessage(hWnd, WM_COMMAND, id, 0); } // Show the secure device window bool SecureDeviceWindow(HWND hWnd, WINUI_SECURE_BATCH *batch, UINT num_batch, UINT device_id, UINT bitmap_id) { SECURE_DEVICE_WINDOW w; UINT i; // Validate arguments if (batch == NULL || num_batch == 0 || device_id == 0) { return false; } // Initialize the success flag for (i = 0;i < num_batch;i++) { batch[i].Succeed = false; } Zero(&w, sizeof(w)); w.batch = batch; w.device_id = device_id; w.num_batch = num_batch; w.BitmapId = bitmap_id; // Open a dialog return (bool)Dialog(hWnd, D_SECURE, SecureDeviceWindowProc, &w); } // Stop playing the AVI void StopAvi(HWND hWnd, UINT id) { // Validate arguments if (hWnd == NULL) { return; } Animate_Stop(DlgItem(hWnd, id)); Hide(hWnd, id); } // Play an AVI void PlayAvi(HWND hWnd, UINT id, bool repeat) { // Validate arguments if (hWnd == NULL) { return; } Show(hWnd, id); Animate_Play(DlgItem(hWnd, id), 0, -1, (repeat ? -1 : 0)); } // Close the AVI file void CloseAvi(HWND hWnd, UINT id) { // Validate arguments if (hWnd == NULL) { return; } StopAvi(hWnd, id); Animate_Close(DlgItem(hWnd, id)); } // Open an AVI file void OpenAvi(HWND hWnd, UINT id, UINT avi_id) { // Validate arguments if (hWnd == NULL || avi_id == 0) { return; } Hide(hWnd, id); Animate_OpenEx(DlgItem(hWnd, id), hDll, MAKEINTRESOURCE(avi_id)); } // Set the font to the control void DlgFont(HWND hWnd, UINT id, UINT size, UINT bold) { DIALOG_PARAM *param = (DIALOG_PARAM *)GetParam(hWnd); if (param == NULL || param->meiryo == false) { SetFont(hWnd, id, Font(size, bold)); } else { SetFont(hWnd, id, GetFont((_GETLANG() == 2 ? "Microsoft YaHei" : GetMeiryoFontName()), size, bold, false, false, false)); } } // Generate a standard font HFONT Font(UINT size, UINT bold) { return GetFont(NULL, size, bold, false, false, false); } // Dialog procedure for internal management UINT CALLBACK InternalDialogProc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam) { DIALOG_PARAM *param = (DIALOG_PARAM *)GetParam(hWnd); void *app_param = NULL; bool white_flag = false; UINT ret; // Validate arguments if (hWnd == NULL) { return 0; } if (msg == WM_INITDIALOG) { DoEvents(hWnd); } if (param == NULL) { if (msg == WM_INITDIALOG) { param = (void *)lParam; InitDialogInternational(hWnd, param); } } if (param != NULL) { app_param = param->param; white_flag = param->white; } ret = DlgProc(hWnd, msg, wParam, lParam, white_flag); if (ret != 0) { return ret; } ret = 0; if (param != NULL) { if (param->proc != NULL) { ret = param->proc(hWnd, msg, wParam, lParam, app_param); } else { if (msg == WM_CLOSE) { EndDialog(hWnd, 0); } else if (msg == WM_COMMAND && (wParam == IDOK || wParam == IDCANCEL)) { Close(hWnd); } } } if (msg == WM_INITDIALOG) { SetForegroundWindow(hWnd); SetActiveWindow(hWnd); } return ret; } // Show a dialog box UINT Dialog(HWND hWnd, UINT id, WINUI_DIALOG_PROC *proc, void *param) { bool white = true; return DialogEx(hWnd, id, proc, param, white); } UINT DialogEx(HWND hWnd, UINT id, WINUI_DIALOG_PROC *proc, void *param, bool white) { return DialogEx2(hWnd, id, proc, param, white, false); } UINT DialogEx2(HWND hWnd, UINT id, WINUI_DIALOG_PROC *proc, void *param, bool white, bool meiryo) { UINT ret; DIALOG_PARAM p; // Validate arguments if (id == 0) { return 0; } Zero(&p, sizeof(p)); p.param = param; p.white = white; p.proc = proc; p.BitmapList = NewBitmapList(); p.meiryo = meiryo; ret = DialogInternal(hWnd, id, InternalDialogProc, &p); FreeBitmapList(p.BitmapList); return ret; } // Initialize the icon cache void InitIconCache() { if (icon_cache_list != NULL) { return; } icon_cache_list = NewList(NULL); } // Release the icon cache void FreeIconCache() { UINT i; if (icon_cache_list == NULL) { return; } for (i = 0;i < LIST_NUM(icon_cache_list);i++) { ICON_CACHE *c = LIST_DATA(icon_cache_list, i); DestroyIcon(c->hIcon); Free(c); } ReleaseList(icon_cache_list); icon_cache_list = NULL; } // Get the Icon HICON LoadIconEx(UINT id, bool small_icon) { HICON h = NULL; UINT i; if (icon_cache_list == NULL) { return small_icon == false ? LoadLargeIconInner(id) : LoadSmallIconInner(id); } LockList(icon_cache_list); { for (i = 0;i < LIST_NUM(icon_cache_list);i++) { ICON_CACHE *c = LIST_DATA(icon_cache_list, i); if (c->id == id && c->small_icon == small_icon) { h = c->hIcon; break; } } if (h == NULL) { h = small_icon == false ? LoadLargeIconInner(id) : LoadSmallIconInner(id); if (h != NULL) { ICON_CACHE *c = ZeroMalloc(sizeof(ICON_CACHE)); c->hIcon = h; c->id = id; c->small_icon = small_icon; Add(icon_cache_list, c); } } } UnlockList(icon_cache_list); return h; } // Get a large Icon HICON LoadLargeIcon(UINT id) { return LoadIconEx(id, false); } // Get a small icon HICON LoadSmallIcon(UINT id) { return LoadIconEx(id, true); } // Get a large icon HICON LoadLargeIconInner(UINT id) { HICON ret; ret = LoadImage(hDll, MAKEINTRESOURCE(id), IMAGE_ICON, 32, 32, 0); if (ret == NULL) { ret = LoadImage(hDll, MAKEINTRESOURCE(id), IMAGE_ICON, 32, 32, LR_VGACOLOR); if (ret == NULL) { ret = LoadImage(hDll, MAKEINTRESOURCE(id), IMAGE_ICON, 0, 0, 0); if (ret == NULL) { ret = LoadImage(hDll, MAKEINTRESOURCE(id), IMAGE_ICON, 0, 0, LR_VGACOLOR); if (ret == NULL) { ret = LoadIcon(hDll, MAKEINTRESOURCE(id)); } } } } return ret; } // Get a small icon HICON LoadSmallIconInner(UINT id) { HICON ret; ret = LoadImage(hDll, MAKEINTRESOURCE(id), IMAGE_ICON, 16, 16, 0); if (ret == NULL) { ret = LoadImage(hDll, MAKEINTRESOURCE(id), IMAGE_ICON, 16, 16, LR_VGACOLOR); if (ret == NULL) { ret = LoadImage(hDll, MAKEINTRESOURCE(id), IMAGE_ICON, 0, 0, 0); if (ret == NULL) { ret = LoadImage(hDll, MAKEINTRESOURCE(id), IMAGE_ICON, 0, 0, LR_VGACOLOR); if (ret == NULL) { ret = LoadLargeIconInner(id); } } } } return ret; } // Set the icon to the button or window void SetIcon(HWND hWnd, UINT id, UINT icon_id) { HICON icon1, icon2; // Validate arguments if (hWnd == NULL) { return; } icon1 = LoadLargeIcon(icon_id); if (icon1 == NULL) { return; } if (id == 0) { SendMessage(hWnd, WM_SETICON, ICON_BIG, (LPARAM)icon1); icon2 = LoadSmallIcon(icon_id); if (icon2 == NULL) { icon2 = icon1; } SendMessage(hWnd, WM_SETICON, ICON_SMALL, (LPARAM)icon2); } else { bool is_btn = true; wchar_t *s = GetClass(hWnd, id); if (s != NULL) { if (UniStrCmpi(s, L"Static") == 0) { is_btn = false; } Free(s); } if (is_btn) { SendMsg(hWnd, id, BM_SETIMAGE, IMAGE_ICON, (LPARAM)icon1); } else { SendMsg(hWnd, id, STM_SETICON, (WPARAM)icon1, 0); } } } // Check whether the radio button is checked bool IsChecked(HWND hWnd, UINT id) { // Validate arguments if (hWnd == NULL) { return false; } return IsDlgButtonChecked(hWnd, id) == BST_CHECKED ? true : false; } // Check the radio button void Check(HWND hWnd, UINT id, bool b) { // Validate arguments if (hWnd == NULL) { return; } if ((!(!IsChecked(hWnd, id))) != (!(!b))) { CheckDlgButton(hWnd, id, b ? BST_CHECKED : BST_UNCHECKED); } } // Limit the number of characters that can be entered into the text-box void LimitText(HWND hWnd, UINT id, UINT count) { // Validate arguments if (hWnd == NULL) { return; } SendMsg(hWnd, id, EM_LIMITTEXT, count, 0); } // Font settings void SetFont(HWND hWnd, UINT id, HFONT hFont) { SetFontEx(hWnd, id, hFont, false); } void SetFontEx(HWND hWnd, UINT id, HFONT hFont, bool no_adjust_font_size) { // Validate arguments if (hWnd == NULL || hFont == NULL) { return; } SendMessage(DlgItem(hWnd, id), WM_SETFONT, (WPARAM)hFont, true); if (no_adjust_font_size == false) { AdjustFontSize(hWnd, id); } } // Calculate the font size bool CalcFontSize(HFONT hFont, UINT *x, UINT *y) { UINT xx = 0, yy = 0; TEXTMETRIC tm; SIZE sz; bool ret = false; HDC hDC; hDC = CreateCompatibleDC(NULL); SelectObject(hDC, hFont); Zero(&tm, sizeof(tm)); Zero(&sz, sizeof(sz)); if (GetTextMetrics(hDC, &tm)) { xx = tm.tmAveCharWidth; yy = tm.tmHeight; ret = true; if (GetTextExtentPoint32(hDC, "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz", 52, &sz)) { xx = (sz.cx / 26 + 1) / 2; } } if (x != NULL) { *x = xx; } if (y != NULL) { *y = yy; } DeleteDC(hDC); return ret; } // Get the font magnification double GetTextScalingFactor() { static int cached_dpi = 0; double ret = 1.0; if (cached_dpi == 0) { HDC hDC = CreateCompatibleDC(NULL); if (hDC != NULL) { cached_dpi = GetDeviceCaps(hDC, LOGPIXELSY); DeleteDC(hDC); } } if (cached_dpi != 0) { ret = (double)cached_dpi / 96.0; if (ret < 0) { ret = -ret; } } return ret; } // Get the parameters of the font that was created in the past bool GetFontParam(HFONT hFont, struct FONT *f) { bool ret = false; // Validate arguments if (hFont == NULL || f == NULL) { return false; } // Search for the existing font LockList(font_list); { UINT i; for (i = 0;i < LIST_NUM(font_list);i++) { FONT *n = LIST_DATA(font_list, i); if (n->hFont == hFont) { Copy(f, n, sizeof(FONT)); ret = true; break; } } } UnlockList(font_list); return ret; } // Get the font HFONT GetFont(char *name, UINT size, bool bold, bool italic, bool underline, bool strikeout) { HFONT hFont; HDC hDC; // Validate arguments if (name == NULL) { name = font_name; } if (size == 0) { size = font_size; if (size == 0) { size = 9; } } // Search for the existing font LockList(font_list); { FONT *f, t; DWORD font_quality = ANTIALIASED_QUALITY; OS_INFO *os = GetOsInfo(); UINT x = 0; UINT y = 0; int rotate = 0; UINT dpi; Zero(&t, sizeof(t)); t.Bold = bold; t.Italic = italic; t.Size = size; t.StrikeOut = strikeout; t.UnderLine = underline; t.Name = CopyStr(name); f = Search(font_list, &t); Free(t.Name); if (f != NULL) { // Font is found UnlockList(font_list); return f->hFont; } // Create a new font hDC = CreateCompatibleDC(NULL); font_quality = CLEARTYPE_NATURAL_QUALITY; rotate = 3600; dpi = GetDeviceCaps(hDC, LOGPIXELSY); // Create a font hFont = CreateFontA(-MulDiv(size, dpi, 72), 0, rotate, rotate, (bold == false ? 500 : FW_BOLD), italic, underline, strikeout, DEFAULT_CHARSET, OUT_DEFAULT_PRECIS, CLIP_DEFAULT_PRECIS, font_quality, DEFAULT_PITCH, name); if (hFont == NULL) { // Failure DeleteDC(hDC); UnlockList(font_list); return NULL; } CalcFontSize(hFont, &x, &y); // Add to the table f = ZeroMalloc(sizeof(FONT)); f->Bold = bold; f->hFont = hFont; f->Italic = italic; f->Name = CopyStr(name); f->Size = size; f->StrikeOut = strikeout; f->UnderLine = underline; f->x = x; f->y = y; Insert(font_list, f); DeleteDC(hDC); } UnlockList(font_list); return hFont; } // Comparison of the font int CompareFont(void *p1, void *p2) { FONT *f1, *f2; UINT r; if (p1 == NULL || p2 == NULL) { return 0; } f1 = *(FONT **)p1; f2 = *(FONT **)p2; if (f1 == NULL || f2 == NULL) { return 0; } r = StrCmpi(f1->Name, f2->Name); if (r != 0) { return r; } else { if (f1->Bold > f2->Bold) { return 1; } else if (f1->Bold < f2->Bold) { return -1; } else if (f1->Italic > f2->Italic) { return 1; } else if (f1->Italic < f2->Italic) { return -1; } else if (f1->Size > f2->Size) { return 1; } else if (f1->Size < f2->Size) { return -1; } else if (f1->StrikeOut > f2->StrikeOut) { return 1; } else if (f1->StrikeOut < f2->StrikeOut) { return -1; } else if (f1->UnderLine > f2->UnderLine) { return 1; } else if (f1->UnderLine < f2->UnderLine) { return -1; } else { return 0; } } } // Initialize the font void InitFont() { if (font_list != NULL) { return; } font_list = NewList(CompareFont); } // Release the font void FreeFont() { UINT i; if (font_list == NULL) { return; } for (i = 0;i < LIST_NUM(font_list);i++) { FONT *f = LIST_DATA(font_list, i); Free(f->Name); DeleteObject((HGDIOBJ)f->hFont); Free(f); } ReleaseList(font_list); font_list = NULL; } // Show a button to close the window void EnableClose(HWND hWnd) { HMENU h; // Validate arguments if (hWnd == NULL) { return; } h = GetSystemMenu(hWnd, false); EnableMenuItem(h, SC_CLOSE, MF_ENABLED); DrawMenuBar(hWnd); } // Hide the button to close the window void DisableClose(HWND hWnd) { HMENU h; // Validate arguments if (hWnd == NULL) { return; } h = GetSystemMenu(hWnd, false); EnableMenuItem(h, SC_CLOSE, MF_GRAYED); DrawMenuBar(hWnd); } // Move to the center of the parent window void CenterParent(HWND hWnd) { RECT rp; RECT r; HWND hWndParent = GetParent(hWnd); int win_x, win_y; int x, y; if (hWndParent == NULL || IsHide(hWndParent, 0) || IsIconic(hWndParent)) { Center(hWnd); return; } if (GetWindowRect(hWndParent, &rp) == false) { Center(hWnd); return; } GetWindowRect(hWnd, &r); win_x = r.right - r.left; win_y = r.bottom - r.top; x = (rp.right - rp.left - win_x) / 2 + rp.left; y = (rp.bottom - rp.top - win_y) / 2 + rp.top; x = MAX(x, 0); y = MAX(y, 0); SetWindowPos(hWnd, NULL, x, y, 0, 0, SWP_NOSIZE | SWP_NOACTIVATE); } // Move the window to the center void Center(HWND hWnd) { RECT screen; RECT win; UINT x, y; UINT win_x, win_y; // Validate arguments if (hWnd == NULL) { return; } if (SystemParametersInfo(SPI_GETWORKAREA, 0, &screen, 0) == false) { return; } GetWindowRect(hWnd, &win); win_x = win.right - win.left; win_y = win.bottom - win.top; if (win_x < (UINT)(screen.right - screen.left)) { x = (screen.right - screen.left - win_x) / 2; } else { x = 0; } if (win_y < (UINT)(screen.bottom - screen.top)) { y = (screen.bottom - screen.top - win_y) / 2; } else { y = 0; } SetWindowPos(hWnd, NULL, x, y, 0, 0, SWP_NOSIZE | SWP_NOACTIVATE); } // Format the string in the window void FormatText(HWND hWnd, UINT id, ...) { va_list args; wchar_t *buf; UINT size; wchar_t *str; // Validate arguments if (hWnd == NULL) { return; } str = GetText(hWnd, id); if (str == NULL) { return; } size = MAX(UniStrSize(str) * 10, MAX_SIZE * 10); buf = MallocEx(size, true); va_start(args, id); UniFormatArgs(buf, size, str, args); SetText(hWnd, id, buf); Free(buf); Free(str); va_end(args); } // Show the variable-length message box UINT MsgBoxEx(HWND hWnd, UINT flag, wchar_t *msg, ...) { va_list args; wchar_t *buf; UINT size; UINT ret; // Validate arguments if (msg == NULL) { msg = L"MessageBox"; } size = MAX(UniStrSize(msg) * 10, MAX_SIZE * 10); buf = MallocEx(size, true); va_start(args, msg); UniFormatArgs(buf, size, msg, args); ret = MsgBox(hWnd, flag, buf); Free(buf); va_end(args); return ret; } // Show the message box UINT MsgBox(HWND hWnd, UINT flag, wchar_t *msg) { UINT ret; wchar_t *title; // Validate arguments if (msg == NULL) { msg = L"MessageBox"; } if (title_bar != NULL) { title = CopyUniStr(title_bar); } else { title = CopyStrToUni(CEDAR_PRODUCT_STR); } if (hWnd) { // Raise the message box to top-level if the parent window is the top-level window if (GetExStyle(hWnd, 0) & WS_EX_TOPMOST) { flag |= MB_SYSTEMMODAL; } } ret = MessageBoxW(hWnd, msg, title, flag); Free(title); return ret; } // Create a dialog (internal) UINT DialogInternal(HWND hWnd, UINT id, DIALOG_PROC *proc, void *param) { // Validate arguments if (proc == NULL) { return 0; } return (UINT)DialogBoxParamW(hDll, MAKEINTRESOURCEW(id), hWnd, (DLGPROC)proc, (LPARAM)param); } // Dialog box procedure managed by WinUi UINT DlgProc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam, bool white_color) { void *param; HWND hWndParent; // Validate arguments if (hWnd == NULL) { return 0; } switch (msg) { case WM_INITDIALOG: if (true) { RECT rect1; SetRect(&rect1, 0, 0, 100, 100); MapDialogRect(hWnd, &rect1); Debug("%u %u %u %u\n", rect1.left, rect1.right, rect1.top, rect1.bottom); } param = (void *)lParam; SetParam(hWnd, param); // Examine whether the parent window exists hWndParent = GetParent(hWnd); if (hWndParent == NULL || IsShow(hWndParent, 0) == false) { // Place in the center if parent does not exist Center(hWnd); } if (UseAlpha) { bool (WINAPI *_SetLayeredWindowAttributes)(HWND, COLORREF, BYTE, DWORD); HINSTANCE hInst; hInst = LoadLibrary("user32.dll"); _SetLayeredWindowAttributes = (bool (__stdcall *)(HWND,COLORREF,BYTE,DWORD)) GetProcAddress(hInst, "SetLayeredWindowAttributes"); if (_SetLayeredWindowAttributes != NULL) { // Only available on Windows 2000 or later SetExStyle(hWnd, 0, WS_EX_LAYERED); _SetLayeredWindowAttributes(hWnd, 0, AlphaValue * 255 / 100, LWA_ALPHA); } } break; case WM_CTLCOLORBTN: case WM_CTLCOLORDLG: case WM_CTLCOLOREDIT: case WM_CTLCOLORLISTBOX: case WM_CTLCOLORMSGBOX: case WM_CTLCOLORSCROLLBAR: case WM_CTLCOLORSTATIC: if (white_color) { return (UINT)GetStockObject(WHITE_BRUSH); } break; } return 0; } // Set the parameters of the dialog box void SetParam(HWND hWnd, void *param) { // Validate arguments if (hWnd == NULL) { return; } SetWindowLongPtr(hWnd, DWLP_USER, (LONG_PTR)param); } // Get the parameters of the dialog box void *GetParam(HWND hWnd) { void *ret; // Validate arguments if (hWnd == NULL) { return NULL; } ret = (void *)GetWindowLongPtr(hWnd, DWLP_USER); return ret; } // Show the windows as foreground void Top(HWND hWnd) { // Validate arguments if (hWnd == NULL) { return; } SetWindowPos(hWnd, HWND_TOPMOST, 0, 0, 0, 0, SWP_NOMOVE | SWP_NOSIZE); } // Hide the window void Hide(HWND hWnd, UINT id) { // Validate arguments if (hWnd == NULL) { return; } if (IsShow(hWnd, id)) { ShowWindow(DlgItem(hWnd, id), SW_HIDE); } } // Show the window void Show(HWND hWnd, UINT id) { // Validate arguments if (hWnd == NULL) { return; } if (IsHide(hWnd, id)) { ShowWindow(DlgItem(hWnd, id), SW_SHOW); } } // Change the display settings void SetShow(HWND hWnd, UINT id, bool b) { // Validate arguments if (hWnd == NULL) { return; } if (b) { Show(hWnd, id); } else { Hide(hWnd, id); } } // Get whether the window is shown bool IsShow(HWND hWnd, UINT id) { return IsHide(hWnd, id) ? false : true; } // Get whether the window is hidden bool IsHide(HWND hWnd, UINT id) { // Validate arguments if (hWnd == NULL) { return true; } if (GetStyle(hWnd, id) & WS_VISIBLE) { return false; } else { return true; } } // Remove the window style void RemoveExStyle(HWND hWnd, UINT id, UINT style) { UINT old; // Validate arguments if (hWnd == NULL) { return; } old = GetExStyle(hWnd, id); if ((old & style) == 0) { return; } SetWindowLong(DlgItem(hWnd, id), GWL_EXSTYLE, old & ~style); Refresh(DlgItem(hWnd, id)); } // Set the window style void SetExStyle(HWND hWnd, UINT id, UINT style) { UINT old; // Validate arguments if (hWnd == NULL) { return; } old = GetExStyle(hWnd, id); if (old & style) { return; } SetWindowLong(DlgItem(hWnd, id), GWL_EXSTYLE, old | style); Refresh(DlgItem(hWnd, id)); } // Get the window style UINT GetExStyle(HWND hWnd, UINT id) { // Validate arguments if (hWnd == NULL) { return 0; } return GetWindowLong(DlgItem(hWnd, id), GWL_EXSTYLE); } // Remove the window style void RemoveStyle(HWND hWnd, UINT id, UINT style) { UINT old; // Validate arguments if (hWnd == NULL) { return; } old = GetStyle(hWnd, id); if ((old & style) == 0) { return; } SetWindowLong(DlgItem(hWnd, id), GWL_STYLE, old & ~style); Refresh(DlgItem(hWnd, id)); } // Set the window style void SetStyle(HWND hWnd, UINT id, UINT style) { UINT old; // Validate arguments if (hWnd == NULL) { return; } old = GetStyle(hWnd, id); if (old & style) { return; } SetWindowLong(DlgItem(hWnd, id), GWL_STYLE, old | style); Refresh(DlgItem(hWnd, id)); } // Get the window style UINT GetStyle(HWND hWnd, UINT id) { // Validate arguments if (hWnd == NULL) { return 0; } return GetWindowLong(DlgItem(hWnd, id), GWL_STYLE); } // Get the number of characters in the text UINT GetTextLen(HWND hWnd, UINT id, bool unicode) { wchar_t *s; UINT ret; // Validate arguments if (hWnd == NULL) { return 0; } s = GetText(hWnd, id); if (s == NULL) { return 0; } if (unicode) { ret = UniStrLen(s); } else { char *tmp = CopyUniToStr(s); ret = StrLen(tmp); Free(tmp); } Free(s); return ret; } // Check whether the text is blank bool IsEmpty(HWND hWnd, UINT id) { bool ret; wchar_t *s; // Validate arguments if (hWnd == NULL) { return true; } s = GetText(hWnd, id); UniTrim(s); if (UniStrLen(s) == 0) { ret = true; } else { ret = false; } Free(s); return ret; } // Get the window class wchar_t *GetClass(HWND hWnd, UINT id) { wchar_t tmp[MAX_SIZE]; // Validate arguments if (hWnd == NULL) { return CopyUniStr(L""); } GetClassNameW(DlgItem(hWnd, id), tmp, sizeof(tmp)); return UniCopyStr(tmp); } char *GetClassA(HWND hWnd, UINT id) { char tmp[MAX_SIZE]; // Validate arguments if (hWnd == NULL) { return CopyStr(""); } GetClassName(DlgItem(hWnd, id), tmp, sizeof(tmp)); return CopyStr(tmp); } // Transmit a message to the control UINT SendMsg(HWND hWnd, UINT id, UINT msg, WPARAM wParam, LPARAM lParam) { // Validate arguments if (hWnd == NULL) { return 0; } return (UINT)SendMessageW(DlgItem(hWnd, id), msg, wParam, lParam); } // Move the cursor to the right edge of the text in the EDIT void SetCursorOnRight(HWND hWnd, UINT id) { wchar_t *class_name; // Validate arguments if (hWnd == NULL) { return; } class_name = GetClass(hWnd, id); if (class_name != NULL) { if (UniStrCmpi(class_name, L"edit") == 0) { wchar_t *str = GetText(hWnd, id); if (str != NULL) { UINT len = UniStrLen(str); SendMsg(hWnd, id, EM_SETSEL, len, len); Free(str); } } Free(class_name); } } // Select entire the text in the EDIT void SelectEdit(HWND hWnd, UINT id) { wchar_t *class_name; // Validate arguments if (hWnd == NULL) { return; } class_name = GetClass(hWnd, id); if (class_name != NULL) { if (UniStrCmpi(class_name, L"edit") == 0) { SendMsg(hWnd, id, EM_SETSEL, 0, -1); } Free(class_name); } } // Deselect the text of EDIT void UnselectEdit(HWND hWnd, UINT id) { wchar_t *class_name; // Validate arguments if (hWnd == NULL) { return; } class_name = GetClass(hWnd, id); if (class_name != NULL) { if (UniStrCmpi(class_name, L"edit") == 0) { SendMsg(hWnd, id, EM_SETSEL, -1, 0); } Free(class_name); } } // Select all by setting the focus to the EDIT void FocusEx(HWND hWnd, UINT id) { // Validate arguments if (hWnd == NULL) { return; } if (IsEnable(hWnd, id) == false || IsShow(hWnd, id) == false) { return; } SelectEdit(hWnd, id); Focus(hWnd, id); } // Get whether the specified window has focus bool IsFocus(HWND hWnd, UINT id) { // Validate arguments if (hWnd == NULL) { return false; } if (GetFocus() == DlgItem(hWnd, id)) { return true; } return false; } // Set the focus void Focus(HWND hWnd, UINT id) { // Validate arguments if (hWnd == NULL) { return; } if (IsEnable(hWnd, id) == false || IsShow(hWnd, id) == false) { return; } SetFocus(DlgItem(hWnd, id)); } // Set the value of the int type void SetInt(HWND hWnd, UINT id, UINT value) { wchar_t tmp[MAX_SIZE]; // Validate arguments if (hWnd == NULL) { return; } UniToStru(tmp, value); SetText(hWnd, id, tmp); } void SetIntEx(HWND hWnd, UINT id, UINT value) { // Validate arguments if (hWnd == NULL) { return; } if (value == 0) { // Leave blank in the case of 0 SetText(hWnd, id, L""); } else { SetInt(hWnd, id, value); } } // Get the value of the int type UINT GetInt(HWND hWnd, UINT id) { wchar_t *s; UINT ret; // Validate arguments if (hWnd == NULL) { return 0; } s = GetText(hWnd, id); if (s == NULL) { return 0; } ret = UniToInt(s); Free(s); return ret; } // Update the window appearance void Refresh(HWND hWnd) { HWND parent; // Validate arguments if (hWnd == NULL) { return; } DoEvents(hWnd); UpdateWindow(hWnd); DoEvents(hWnd); parent = GetParent(hWnd); if (parent != NULL) { Refresh(parent); } } // Handle the event void DoEvents(HWND hWnd) { MSG msg; if (PeekMessage(&msg, hWnd, 0, 0, PM_REMOVE)) { TranslateMessage(&msg); DispatchMessage(&msg); } UpdateWindow(hWnd); if (hWnd) { DoEvents(NULL); } } // Close the window void Close(HWND hWnd) { // Validate arguments if (hWnd == NULL) { return; } SendMessage(hWnd, WM_CLOSE, 0, 0); } // Disable the window void Disable(HWND hWnd, UINT id) { SetEnable(hWnd, id, false); } // Enable the window void Enable(HWND hWnd, UINT id) { SetEnable(hWnd, id, true); } // Set the enabled state of a window void SetEnable(HWND hWnd, UINT id, bool b) { // Validate arguments if (hWnd == NULL) { return; } if (b == false) { if (IsEnable(hWnd, id)) { if (id != 0 && IsFocus(hWnd, id)) { Focus(hWnd, IDCANCEL); Focus(hWnd, IDOK); } EnableWindow(DlgItem(hWnd, id), false); Refresh(DlgItem(hWnd, id)); } } else { if (IsDisable(hWnd, id)) { EnableWindow(DlgItem(hWnd, id), true); Refresh(DlgItem(hWnd, id)); } } } // Examine whether the window is disabled bool IsDisable(HWND hWnd, UINT id) { return IsEnable(hWnd, id) ? false : true; } // Examine whether the window is enabled bool IsEnable(HWND hWnd, UINT id) { // Validate arguments if (hWnd == NULL) { return false; } return IsWindowEnabled(DlgItem(hWnd, id)); } // If the control protrude by large font size, adjust into appropriate size void AdjustFontSize(HWND hWnd, UINT id) { char class_name[MAX_PATH]; UINT style; UINT format = 0; HFONT current_font; FONT font; wchar_t *text; RECT rect; UINT width, height; HFONT new_font = NULL; UINT old_font_size; UINT style1; // Validate arguments if (hWnd == NULL) { return; } hWnd = DlgItem(hWnd, id); if (GetClassNameA(hWnd, class_name, sizeof(class_name)) == 0) { return; } if (StrCmpi(class_name, "static") != 0) { return; } style = GetStyle(hWnd, 0); if ((style & SS_ENDELLIPSIS) || (style & SS_PATHELLIPSIS)) { return; } style1 = style & 0x0F; // Create a format for DrawText if (style1 == SS_RIGHT) { // Right justification format |= DT_RIGHT; } else if (style1 == SS_CENTER) { // Center justification format |= DT_CENTER; } else if (style1 == SS_LEFT) { // Left justification format |= DT_LEFT; } else { // Others return; } if (style & DT_NOPREFIX) { // Without prefix format |= DT_NOPREFIX; } // Get the font parameters currently set current_font = (HFONT)SendMessageA(hWnd, WM_GETFONT, 0, 0); if (current_font == NULL) { return; } Zero(&font, sizeof(font)); if (GetFontParam(current_font, &font) == false) { return; } // Get the size of the static area Zero(&rect, sizeof(rect)); if (GetWindowRect(hWnd, &rect) == false) { return; } // Get the text that is currently set text = GetText(hWnd, 0); if (text == NULL) { return; } if (IsEmptyUniStr(text)) { Free(text); return; } width = GET_ABS(rect.right - rect.left); height = GET_ABS(rect.bottom - rect.top); new_font = NULL; old_font_size = font.Size; // Try to gradually reduce the font size until drawing succeeds while (font.Size != 0) { // Drawing test bool aborted = false; if (IsFontFitInRect(&font, width, height, text, format, &aborted)) { // Drawing success if (old_font_size != font.Size) { // Font size is changed new_font = GetFont(font.Name, font.Size, font.Bold, font.Italic, font.UnderLine, font.StrikeOut); } break; } else { if (aborted) { // Fatal error break; } } font.Size--; if (font.Size == 1) { // Not supposed to become a font size like this. Fatal error break; } } Free(text); if (new_font != NULL) { // Change the font size SetFontEx(hWnd, 0, new_font, true); } } // Check whether the specified string can be drawn in the specified area with the specified font bool IsFontFitInRect(struct FONT *f, UINT width, UINT height, wchar_t *text, UINT format, bool *aborted) { RECT r; int i; bool dummy_bool; UINT new_height; HFONT hCreatedFont, hOldFont; // Validate arguments if (f == NULL || text == NULL) { return false; } if (aborted == NULL) { aborted = &dummy_bool; } format |= DT_CALCRECT | DT_WORDBREAK; *aborted = false; // Create a font hCreatedFont = GetFont(f->Name, f->Size, f->Bold, f->Italic, f->UnderLine, f->StrikeOut); if (hCreatedFont == NULL) { *aborted = true; return false; } Lock(lock_common_dc); { hOldFont = SelectObject(hCommonDC, hCreatedFont); Zero(&r, sizeof(r)); r.left = r.top = 0; r.right = width; r.bottom = height; i = DrawTextW(hCommonDC, text, -1, &r, format); SelectObject(hCommonDC, hOldFont); } Unlock(lock_common_dc); if (i == 0) { *aborted = true; return false; } new_height = GET_ABS(r.bottom - r.top); if (new_height > height) { return false; } return true; } // Set a text string void SetText(HWND hWnd, UINT id, wchar_t *str) { // Validate arguments if (hWnd == NULL || str == NULL) { return; } SetTextInner(hWnd, id, str); } void SetTextInner(HWND hWnd, UINT id, wchar_t *str) { wchar_t *old; // Validate arguments if (hWnd == NULL || str == NULL) { return; } // Get the old string old = GetText(hWnd, id); if (UniStrCmp(str, old) == 0) { // Identity Free(old); return; } Free(old); SetWindowTextW(DlgItem(hWnd, id), str); AdjustFontSize(hWnd, id); if (id != 0) { Refresh(DlgItem(hWnd, id)); } } void SetTextA(HWND hWnd, UINT id, char *str) { wchar_t *s; // Validate arguments if (hWnd == NULL || str == NULL) { return; } s = CopyStrToUni(str); if (s == NULL) { return; } SetText(hWnd, id, s); Free(s); } // Get the text string to the buffer bool GetTxt(HWND hWnd, UINT id, wchar_t *str, UINT size) { wchar_t *s; // Validate arguments if (hWnd == NULL || str == NULL) { return false; } s = GetText(hWnd, id); if (s == NULL) { UniStrCpy(str, size, L""); return false; } UniStrCpy(str, size, s); Free(s); return true; } bool GetTxtA(HWND hWnd, UINT id, char *str, UINT size) { char *s; // Validate arguments if (hWnd == NULL || str == NULL) { return false; } s = GetTextA(hWnd, id); if (s == NULL) { StrCpy(str, size, ""); return false; } StrCpy(str, size, s); Free(s); return true; } // Get the text string wchar_t *GetText(HWND hWnd, UINT id) { wchar_t *ret; UINT size, len; // Validate arguments if (hWnd == NULL) { return NULL; } len = GetWindowTextLengthW(DlgItem(hWnd, id)); if (len == 0) { return CopyUniStr(L""); } size = (len + 1) * 2; ret = ZeroMallocEx(size, true); GetWindowTextW(DlgItem(hWnd, id), ret, size); return ret; } char *GetTextA(HWND hWnd, UINT id) { char *ret; UINT size, len; // Validate arguments if (hWnd == NULL) { return NULL; } len = GetWindowTextLengthA(DlgItem(hWnd, id)); if (len == 0) { return CopyStr(""); } size = len + 1; ret = ZeroMallocEx(size, true); GetWindowTextA(DlgItem(hWnd, id), ret, size); return ret; } // Get the item in the dialog HWND DlgItem(HWND hWnd, UINT id) { // Validate arguments if (hWnd == NULL) { return NULL; } if (id == 0) { return hWnd; } else { return GetDlgItem(hWnd, id); } } // Initialize the WinUi void InitWinUi(wchar_t *software_name, char *font, UINT fontsize) { if (tls_current_wizard == 0xffffffff) { tls_current_wizard = TlsAlloc(); } if ((init_winui_counter++) != 0) { return; } if (hDll != NULL) { return; } if (MayaquaIsMinimalMode() == false) { if (Is64()) { hDll = MsLoadLibraryAsDataFile(PENCORE_DLL_NAME); } else { hDll = MsLoadLibrary(PENCORE_DLL_NAME); } if (hDll == NULL) { Alert(PENCORE_DLL_NAME " not found. "CEDAR_PRODUCT_STR " VPN couldn't start.\r\n\r\n" "Please reinstall all files with "CEDAR_PRODUCT_STR " VPN Installer.", NULL); exit(0); } } else { hDll = LoadLibrary(MsGetExeFileName()); if (hDll == NULL) { Alert("MsLoadLibrary() Error.", NULL); exit(0); } } if (software_name != NULL) { title_bar = CopyUniStr(software_name); } else { title_bar = CopyUniStr(CEDAR_PRODUCT_STR_W L" VPN"); } if (font != NULL) { font_name = CopyStr(font); } else { font_name = CopyStr(_SS("DEFAULT_FONT")); } if (MsIsWindows7()) { char *win7_font = _SS("DEFAULT_FONT_WIN7"); if (IsEmptyStr(win7_font) == false) { Free(font_name); font_name = CopyStr(win7_font); } if (GetTextScalingFactor() >= 1.44) { // Use a substitute font in the case of high-DPI in Windows 7 and later char *alternative_font = _SS("DEFAULT_FONT_HIGHDPI"); if (IsEmptyStr(alternative_font) == false) { Free(font_name); font_name = CopyStr(alternative_font); } } } if (fontsize != 0) { font_size = fontsize; } else { font_size = _II("DEFAULT_FONT_SIZE"); if (font_size == 0) { font_size = 9; } } lock_common_dc = NewLock(); hCommonDC = CreateCompatibleDC(NULL); InitIconCache(); InitFont(); InitImageList(); } // Release the WinUi void FreeWinUi() { if ((--init_winui_counter) != 0) { return; } if (hDll == NULL) { return; } FreeImageList(); FreeFont(); FreeIconCache(); FreeLibrary(hDll); hDll = NULL; Free(title_bar); title_bar = NULL; Free(font_name); font_name = NULL; if (hCommonDC != NULL) { DeleteDC(hCommonDC); hCommonDC = NULL; } DeleteLock(lock_common_dc); lock_common_dc = NULL; } #endif // WIN32
the_stack_data/94890.c
/* Side effects in while condition */ #include <stdio.h> int while05() { int i, n; i = 0; n = 10; while(--n) { printf("loop: i=%d, n=%d, i+n=%d\n", i, n, i+n); i++; } printf("exit: i=%d, n=%d, i+n=%d\n", i, n, i+n); return i; } main() { int i; i = while05(); // If the returned value is ignored, PIPS fails: // while05(); }
the_stack_data/133563.c
#include <pthread.h> #include <stdio.h> int i = 0; // Note the return type: void* void* incrementingThreadFunction(){ for (int t=0; t < 10000000; t++) { i++; } // TODO: increment i 1_000_000 times return NULL; } void* decrementingThreadFunction(){ for (int t=10000000; t > 0; t--) { i--; } // TODO: decrement i 1_000_000 times return NULL; } int main(){ // TODO: declare incrementingThread and decrementingThread (hint: google pthread_create) pthread_t incrementingThread; pthread_t decrementingThread; pthread_create(&incrementingThread, NULL, incrementingThreadFunction, NULL); pthread_create(&decrementingThread, NULL, decrementingThreadFunction, NULL); pthread_join(incrementingThread, NULL); pthread_join(decrementingThread, NULL); printf("The magic number is: %d\n", i); return 0; }
the_stack_data/52918.c
#include<stdio.h> int main(void) { int ch; printf("type a ascll number\n"); scanf("%d", &ch); printf("number %d char is %c", ch, ch); return 0; }
the_stack_data/354077.c
#include <stdio.h> #include <math.h> #include <stdlib.h> int main() { int * array = NULL; /* Pensar Numa Solucao Array Dinamica - Sugestao: Usar um Ciclo -> 1. iteracao usar malloc, 2ou+ usar realloc para aumentar o tamanho (50 em 50 bytes * typeof) */ int nBits; int comprimento = 0; int i, j, n; int my_shift; fscanf(stdin, "%d", &comprimento); if (comprimento <= 0) { printf("Erro no Comprimento <= 0 \n"); exit(0); } array = (int *) malloc(sizeof(int)*comprimento); if (array == NULL) { printf("Erro no Malloc \n"); perror(""); exit(0); } i=0; while (i < comprimento) { /* stdin */ fscanf(stdin, "%d", &array[i]); i++; } for (j=0, my_shift = 1, n=0; j<8; j++) { for (i=0, nBits=0; i < comprimento && ( nBits < (int) ( ((floor((double) comprimento/2.0))) + 1)) ; i++) { if (array[i] & my_shift) { nBits++; } } if ( nBits >= (int) ( ((floor((double) comprimento/2.0))) + 1)) { n = n | my_shift; } my_shift = my_shift<<1; } for (j=0, i=0; i<comprimento ;i++) { if (n == array[i]) j++; } if ( j >= (int) ( ((floor((double) comprimento/2.0))) + 1)) { printf("%d\n", n); } else { printf("Sem elemento.\n"); } return 0; } /* PROBLEMA 1 - Parte B (Modo NAO Exaustivo) O(k*N + N) = O(N) -> Linearmente * Dado um Lista de Numeros Dizer Se um Numero e Maioritario ou Nao e Qual E * * Ex.: INPUT: 1 2 2 4 5 2 2 -> OUTPUT: 2 * Ex.: INPUT: 1 2 2 4 5 2 -> OUTPUT: Sem elemento. * Ex.: INPUT: 1 2 2 4 5 3 6 -> OUTPUT: Sem elemento. * * Conta-se os Bits da mesma Coluna: * 0 0 0 0 0 0 1 0 = 2 * 0 0 0 0 0 0 1 0 = 2 * 0 0 0 0 0 0 0 1 = 1 * 0 0 0 0 1 0 0 0 = 8 * 0 0 0 0 0 0 1 0 = 2 * Maioria 1's ->>> * 0 0 0 0 0 0 1 0 = 2 * NOTA: Quando contados a maioria de 1's em cada coluna (do byte), o numero gerado pode nao ser maioritario, sendo necessario verificar no array */
the_stack_data/64200339.c
#include <stdio.h> void scilab_rt_xnumb_i2d2i2i0_(int in00, int in01, int matrixin0[in00][in01], int in10, int in11, double matrixin1[in10][in11], int in20, int in21, int matrixin2[in20][in21], int scalarin0) { int i; int j; int val0 = 0; double val1 = 0; int val2 = 0; for (i = 0; i < in00; ++i) { for (j = 0; j < in01; ++j) { val0 += matrixin0[i][j]; } } printf("%d", val0); for (i = 0; i < in10; ++i) { for (j = 0; j < in11; ++j) { val1 += matrixin1[i][j]; } } printf("%f", val1); for (i = 0; i < in20; ++i) { for (j = 0; j < in21; ++j) { val2 += matrixin2[i][j]; } } printf("%d", val2); printf("%d", scalarin0); }
the_stack_data/150141670.c
#include <stdio.h> int main(){ float valor1; char valor2; double valor3; int valor4; double valor5; printf("Qual o valor de V1?\n"); scanf("%d",&valor1); printf("Qual o valor de V2?\n"); scanf("%c",valor2); printf("Qual o valor de V3?\n"); scanf("%d",valor3); printf("Qual o valor de V4?\n"); scanf("%i",valor4); return 0; }
the_stack_data/909104.c
#include <stdio.h> #include <stdlib.h> typedef struct le { int value; struct le * next; } listenelement; typedef listenelement * list; void insert(int v, list *li){ listenelement * new; new = malloc(sizeof(listenelement)); new->value = v; new->next = *li; *li = new; }; int delete_head(list * li){ if (*li == NULL) return -1; list old = *li; *li = old->next; free(old); return 0; }; void delete_all(list *li) { list next; while (*li != NULL) { next = (*li)->next; free(*li); *li = next; } }; int length(list li) { int count = 0; while (li != NULL) { count++; li = li->next; } return count; }; void print_list(list li) { if(li == NULL) printf("leer"); else while(li != NULL) { printf("%d", li->value); li = li->next; } printf("\n"); }; /* Löschen eines Elements aus der Liste anhand der Position */ int delete_pos(list *li, int pos) { if (pos == 0) { delete_head(li); return 0; } int count = 1; listenelement * tmp = *li; while (tmp != NULL) { // Falls die Zählvariable count der Position pos entspricht, gib den Speicher frei // und ordne die Liste, durch Umsetzen der Pointer um if (count == pos) { listenelement * removed = tmp->next; tmp->next = (tmp->next)->next; free(removed); return 0; } count++; tmp = tmp->next; } // Falls die Position pos keinem Index count der Liste entspricht, gib -1 aus return -1; } /* Löschen eines Elements aus der Liste */ int delete_elem(list * li, int e) { if (*li == NULL) return -1; listenelement * tmp = *li; int pos; for(pos = 0; tmp != NULL; tmp = tmp->next, pos++) { // Falls der Wert in der Liste dem Wert e entspricht, rufe delete_pos mit der Zählvariable pos auf if (tmp->value == e) { delete_pos(li, pos); return 0; } } // Falls der Wert nicht in der Liste enthalten ist, gib -1 aus return -1; } /* insertionSort */ // Deklarationen der Hilfsfunktionen int get_val(list * li, int pos); void change_val(list * li, int pos, int val); // Definition des Sortieralgorithmus void sort(list * li, int m) { if (m < 0) { // Falls m<0: Ersetze jeden Wert mit dem dazugehörigen Absolutwert und rufe sort mit m=0 auf listenelement * tmp = *li; for(; tmp != NULL; tmp = tmp->next) if (tmp->value < 0) tmp->value = abs(tmp->value); sort(li, 0); } else { // Falls m>=0: Wende InsertionSort als in-place Algorithmus an (S.18, 05-Suchen-und-Sortieren.pdf, AuD19) int i; for(i = 0; i < length(*li); i++) { int val = get_val(li, i); int pos = i; while ( (pos > 0) && (get_val(li, pos-1) > val) ) { change_val(li, pos, get_val(li, pos-1)); pos--; } if (pos != i) change_val(li, pos, val); } } } // Definitionen der Hilfsfunktionen int get_val(list * li, int pos){ /* Gibt den Wert an der Position pos der Liste li aus */ if (*li == NULL) return -1; listenelement * tmp = *li; int i; for(i = 0; tmp != NULL; tmp = tmp->next, i++) { if (i == pos) { return tmp->value; } } return -1; } void change_val(list * li, int pos, int val){ /* Ersetzt den Wert an der Stelle pos in der Liste li mit dem Wert val */ listenelement * tmp = *li; int i; for(i = 0; tmp != NULL; tmp = tmp->next, i++) { if (i == pos) { tmp->value = val; } } } /* Tests innerhalb der main-Funktion */ int main(int argc, char *argv[]) { printf("\n#### TEST A ####\n"); list li; printf("Deklarierte Liste: "); print_list(li); // Da die Liste uninitialisiert ist, wird hier beim Compilieren eine Warnung ausgeben printf("Länge: %d\n", length(li)); printf("\nFüge Elemente zur Liste hinzu..."); insert(-1, &li); insert(2, &li); insert(3, &li); insert(-4, &li); insert(5, &li); printf("\nInitialisierte Liste: "); print_list(li); printf("Länge: %d\n", length(li)); printf("\nEntferne das erste Elemente..."); delete_head(&li); printf("\nListe: "); print_list(li); printf("\nEntferne das Elemente an Position 2..."); delete_pos(&li, 2); printf("\nListe: "); print_list(li); printf("\nEntferne das Elemente an Position 10..."); printf("\nRückgabewert: %i", delete_pos(&li, 10)); printf("\nListe: "); print_list(li); printf("\nGib das Elemente an Position 0 zurück..."); printf("\nErstes Element: %i", get_val(&li, 0)); printf("\n\nEntferne das Element %i...", get_val(&li, 1)); delete_elem(&li, get_val(&li, 1)); printf("\nListe: "); print_list(li); printf("\nEntferne das Elemente -97..."); printf("\nRückgabewert: %i", delete_elem(&li, -97)); printf("\nListe: "); print_list(li); printf("\nEntferne alle Elemente..."); delete_all(&li); printf("\nListe: "); print_list(li); printf("\n"); printf("\n#### TEST B ####\n"); printf("Füge neue Elemente zur Liste hinzu..."); insert(1, &li); insert(-2, &li); insert(-3, &li); insert(4, &li); insert(-5, &li); printf("\nListe: "); print_list(li); printf("\nSortiere Elemente mit m=0...\n"); sort(&li, 0); print_list(li); printf("\nSortiere Elemente mit m=-1...\n"); sort(&li, -1); print_list(li); printf("\n"); return 0; };
the_stack_data/156392912.c
/* Getopt for GNU. NOTE: getopt is now part of the C library, so if you don't know what "Keep this file name-space clean" means, talk to [email protected] before changing it! Copyright (C) 1987,88,89,90,91,92,93,94,95,96,98,99,2000,2001 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. The GNU C Library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with the GNU C Library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. */ /* This tells Alpha OSF/1 not to define a getopt prototype in <stdio.h>. Ditto for AIX 3.2 and <stdlib.h>. */ #ifndef _NO_PROTO # define _NO_PROTO #endif #ifdef HAVE_CONFIG_H # include <config.h> #endif #if !defined __STDC__ || !__STDC__ /* This is a separate conditional since some stdc systems reject `defined (const)'. */ # ifndef const # define const # endif #endif #include <stdio.h> /* Comment out all this code if we are using the GNU C Library, and are not actually compiling the library itself. This code is part of the GNU C Library, but also included in many other GNU distributions. Compiling and linking in this code is a waste when using the GNU C library (especially if it is a shared library). Rather than having every GNU program understand `configure --with-gnu-libc' and omit the object files, it is simpler to just do this in the source for each such file. */ #define GETOPT_INTERFACE_VERSION 2 #if !defined _LIBC && defined __GLIBC__ && __GLIBC__ >= 2 # include <gnu-versions.h> # if _GNU_GETOPT_INTERFACE_VERSION == GETOPT_INTERFACE_VERSION # define ELIDE_CODE # endif #endif #ifndef ELIDE_CODE /* This needs to come after some library #include to get __GNU_LIBRARY__ defined. */ #ifdef __GNU_LIBRARY__ /* Don't include stdlib.h for non-GNU C libraries because some of them contain conflicting prototypes for getopt. */ # include <stdlib.h> # include <unistd.h> #endif /* GNU C library. */ #ifdef VMS # include <unixlib.h> # if HAVE_STRING_H - 0 # include <string.h> # endif #endif #ifndef _ /* This is for other GNU distributions with internationalized messages. */ # if (HAVE_LIBINTL_H && ENABLE_NLS) || defined _LIBC # include <libintl.h> # ifndef _ # define _(msgid) gettext (msgid) # endif # else # define _(msgid) (msgid) # endif # if defined _LIBC && defined USE_IN_LIBIO # include <wchar.h> # endif #endif /* This version of `getopt' appears to the caller like standard Unix `getopt' but it behaves differently for the user, since it allows the user to intersperse the options with the other arguments. As `getopt' works, it permutes the elements of ARGV so that, when it is done, all the options precede everything else. Thus all application programs are extended to handle flexible argument order. Setting the environment variable POSIXLY_CORRECT disables permutation. Then the behavior is completely standard. GNU application programs can use a third alternative mode in which they can distinguish the relative order of options and other arguments. */ #include "getopt.h" /* For communication from `getopt' to the caller. When `getopt' finds an option that takes an argument, the argument value is returned here. Also, when `ordering' is RETURN_IN_ORDER, each non-option ARGV-element is returned here. */ char *optarg; /* Index in ARGV of the next element to be scanned. This is used for communication to and from the caller and for communication between successive calls to `getopt'. On entry to `getopt', zero means this is the first call; initialize. When `getopt' returns -1, this is the index of the first of the non-option elements that the caller should itself scan. Otherwise, `optind' communicates from one call to the next how much of ARGV has been scanned so far. */ /* 1003.2 says this must be 1 before any call. */ int optind = 1; /* Formerly, initialization of getopt depended on optind==0, which causes problems with re-calling getopt as programs generally don't know that. */ int __getopt_initialized; /* The next char to be scanned in the option-element in which the last option character we returned was found. This allows us to pick up the scan where we left off. If this is zero, or a null string, it means resume the scan by advancing to the next ARGV-element. */ static char *nextchar; /* Callers store zero here to inhibit the error message for unrecognized options. */ int opterr = 1; /* Set to an option character which was unrecognized. This must be initialized on some systems to avoid linking in the system's own getopt implementation. */ int optopt = '?'; /* Describe how to deal with options that follow non-option ARGV-elements. If the caller did not specify anything, the default is REQUIRE_ORDER if the environment variable POSIXLY_CORRECT is defined, PERMUTE otherwise. REQUIRE_ORDER means don't recognize them as options; stop option processing when the first non-option is seen. This is what Unix does. This mode of operation is selected by either setting the environment variable POSIXLY_CORRECT, or using `+' as the first character of the list of option characters. PERMUTE is the default. We permute the contents of ARGV as we scan, so that eventually all the non-options are at the end. This allows options to be given in any order, even with programs that were not written to expect this. RETURN_IN_ORDER is an option available to programs that were written to expect options and other ARGV-elements in any order and that care about the ordering of the two. We describe each non-option ARGV-element as if it were the argument of an option with character code 1. Using `-' as the first character of the list of option characters selects this mode of operation. The special argument `--' forces an end of option-scanning regardless of the value of `ordering'. In the case of RETURN_IN_ORDER, only `--' can cause `getopt' to return -1 with `optind' != ARGC. */ static enum { REQUIRE_ORDER, PERMUTE, RETURN_IN_ORDER } ordering; /* Value of POSIXLY_CORRECT environment variable. */ static char *posixly_correct; #ifdef __GNU_LIBRARY__ /* We want to avoid inclusion of string.h with non-GNU libraries because there are many ways it can cause trouble. On some systems, it contains special magic macros that don't work in GCC. */ # include <string.h> # define my_index strchr #else # if HAVE_STRING_H # include <string.h> # else # include <strings.h> # endif /* Avoid depending on library functions or files whose names are inconsistent. */ #ifndef getenv extern char *getenv (); #endif static char * my_index (str, chr) const char *str; int chr; { while (*str) { if (*str == chr) return (char *) str; str++; } return 0; } /* If using GCC, we can safely declare strlen this way. If not using GCC, it is ok not to declare it. */ #ifdef __GNUC__ /* Note that Motorola Delta 68k R3V7 comes with GCC but not stddef.h. That was relevant to code that was here before. */ # if (!defined __STDC__ || !__STDC__) && !defined strlen /* gcc with -traditional declares the built-in strlen to return int, and has done so at least since version 2.4.5. -- rms. */ extern int strlen (const char *); # endif /* not __STDC__ */ #endif /* __GNUC__ */ #endif /* not __GNU_LIBRARY__ */ /* Handle permutation of arguments. */ /* Describe the part of ARGV that contains non-options that have been skipped. `first_nonopt' is the index in ARGV of the first of them; `last_nonopt' is the index after the last of them. */ static int first_nonopt; static int last_nonopt; #ifdef _LIBC /* Stored original parameters. XXX This is no good solution. We should rather copy the args so that we can compare them later. But we must not use malloc(3). */ extern int __libc_argc; extern char **__libc_argv; /* Bash 2.0 gives us an environment variable containing flags indicating ARGV elements that should not be considered arguments. */ # ifdef USE_NONOPTION_FLAGS /* Defined in getopt_init.c */ extern char *__getopt_nonoption_flags; static int nonoption_flags_max_len; static int nonoption_flags_len; # endif # ifdef USE_NONOPTION_FLAGS # define SWAP_FLAGS(ch1, ch2) \ if (nonoption_flags_len > 0) \ { \ char __tmp = __getopt_nonoption_flags[ch1]; \ __getopt_nonoption_flags[ch1] = __getopt_nonoption_flags[ch2]; \ __getopt_nonoption_flags[ch2] = __tmp; \ } # else # define SWAP_FLAGS(ch1, ch2) # endif #else /* !_LIBC */ # define SWAP_FLAGS(ch1, ch2) #endif /* _LIBC */ /* Exchange two adjacent subsequences of ARGV. One subsequence is elements [first_nonopt,last_nonopt) which contains all the non-options that have been skipped so far. The other is elements [last_nonopt,optind), which contains all the options processed since those non-options were skipped. `first_nonopt' and `last_nonopt' are relocated so that they describe the new indices of the non-options in ARGV after they are moved. */ #if defined __STDC__ && __STDC__ static void exchange (char **); #endif static void exchange (argv) char **argv; { int bottom = first_nonopt; int middle = last_nonopt; int top = optind; char *tem; /* Exchange the shorter segment with the far end of the longer segment. That puts the shorter segment into the right place. It leaves the longer segment in the right place overall, but it consists of two parts that need to be swapped next. */ #if defined _LIBC && defined USE_NONOPTION_FLAGS /* First make sure the handling of the `__getopt_nonoption_flags' string can work normally. Our top argument must be in the range of the string. */ if (nonoption_flags_len > 0 && top >= nonoption_flags_max_len) { /* We must extend the array. The user plays games with us and presents new arguments. */ char *new_str = malloc (top + 1); if (new_str == NULL) nonoption_flags_len = nonoption_flags_max_len = 0; else { memset (__mempcpy (new_str, __getopt_nonoption_flags, nonoption_flags_max_len), '\0', top + 1 - nonoption_flags_max_len); nonoption_flags_max_len = top + 1; __getopt_nonoption_flags = new_str; } } #endif while (top > middle && middle > bottom) { if (top - middle > middle - bottom) { /* Bottom segment is the short one. */ int len = middle - bottom; register int i; /* Swap it with the top part of the top segment. */ for (i = 0; i < len; i++) { tem = argv[bottom + i]; argv[bottom + i] = argv[top - (middle - bottom) + i]; argv[top - (middle - bottom) + i] = tem; SWAP_FLAGS (bottom + i, top - (middle - bottom) + i); } /* Exclude the moved bottom segment from further swapping. */ top -= len; } else { /* Top segment is the short one. */ int len = top - middle; register int i; /* Swap it with the bottom part of the bottom segment. */ for (i = 0; i < len; i++) { tem = argv[bottom + i]; argv[bottom + i] = argv[middle + i]; argv[middle + i] = tem; SWAP_FLAGS (bottom + i, middle + i); } /* Exclude the moved top segment from further swapping. */ bottom += len; } } /* Update records for the slots the non-options now occupy. */ first_nonopt += (optind - last_nonopt); last_nonopt = optind; } /* Initialize the internal data when the first call is made. */ #if defined __STDC__ && __STDC__ static const char *_getopt_initialize (int, char *const *, const char *); #endif static const char * _getopt_initialize (argc, argv, optstring) int argc; char *const *argv; const char *optstring; { /* Start processing options with ARGV-element 1 (since ARGV-element 0 is the program name); the sequence of previously skipped non-option ARGV-elements is empty. */ first_nonopt = last_nonopt = optind; nextchar = NULL; posixly_correct = getenv ("POSIXLY_CORRECT"); /* Determine how to handle the ordering of options and nonoptions. */ if (optstring[0] == '-') { ordering = RETURN_IN_ORDER; ++optstring; } else if (optstring[0] == '+') { ordering = REQUIRE_ORDER; ++optstring; } else if (posixly_correct != NULL) ordering = REQUIRE_ORDER; else ordering = PERMUTE; #if defined _LIBC && defined USE_NONOPTION_FLAGS if (posixly_correct == NULL && argc == __libc_argc && argv == __libc_argv) { if (nonoption_flags_max_len == 0) { if (__getopt_nonoption_flags == NULL || __getopt_nonoption_flags[0] == '\0') nonoption_flags_max_len = -1; else { const char *orig_str = __getopt_nonoption_flags; int len = nonoption_flags_max_len = strlen (orig_str); if (nonoption_flags_max_len < argc) nonoption_flags_max_len = argc; __getopt_nonoption_flags = (char *) malloc (nonoption_flags_max_len); if (__getopt_nonoption_flags == NULL) nonoption_flags_max_len = -1; else memset (__mempcpy (__getopt_nonoption_flags, orig_str, len), '\0', nonoption_flags_max_len - len); } } nonoption_flags_len = nonoption_flags_max_len; } else nonoption_flags_len = 0; #endif return optstring; } /* Scan elements of ARGV (whose length is ARGC) for option characters given in OPTSTRING. If an element of ARGV starts with '-', and is not exactly "-" or "--", then it is an option element. The characters of this element (aside from the initial '-') are option characters. If `getopt' is called repeatedly, it returns successively each of the option characters from each of the option elements. If `getopt' finds another option character, it returns that character, updating `optind' and `nextchar' so that the next call to `getopt' can resume the scan with the following option character or ARGV-element. If there are no more option characters, `getopt' returns -1. Then `optind' is the index in ARGV of the first ARGV-element that is not an option. (The ARGV-elements have been permuted so that those that are not options now come last.) OPTSTRING is a string containing the legitimate option characters. If an option character is seen that is not listed in OPTSTRING, return '?' after printing an error message. If you set `opterr' to zero, the error message is suppressed but we still return '?'. If a char in OPTSTRING is followed by a colon, that means it wants an arg, so the following text in the same ARGV-element, or the text of the following ARGV-element, is returned in `optarg'. Two colons mean an option that wants an optional arg; if there is text in the current ARGV-element, it is returned in `optarg', otherwise `optarg' is set to zero. If OPTSTRING starts with `-' or `+', it requests different methods of handling the non-option ARGV-elements. See the comments about RETURN_IN_ORDER and REQUIRE_ORDER, above. Long-named options begin with `--' instead of `-'. Their names may be abbreviated as long as the abbreviation is unique or is an exact match for some defined option. If they have an argument, it follows the option name in the same ARGV-element, separated from the option name by a `=', or else the in next ARGV-element. When `getopt' finds a long-named option, it returns 0 if that option's `flag' field is nonzero, the value of the option's `val' field if the `flag' field is zero. The elements of ARGV aren't really const, because we permute them. But we pretend they're const in the prototype to be compatible with other systems. LONGOPTS is a vector of `struct option' terminated by an element containing a name which is zero. LONGIND returns the index in LONGOPT of the long-named option found. It is only valid when a long-named option has been found by the most recent call. If LONG_ONLY is nonzero, '-' as well as '--' can introduce long-named options. */ int _getopt_internal (argc, argv, optstring, longopts, longind, long_only) int argc; char *const *argv; const char *optstring; const struct option *longopts; int *longind; int long_only; { int print_errors = opterr; if (optstring[0] == ':') print_errors = 0; if (argc < 1) return -1; optarg = NULL; if (optind == 0 || !__getopt_initialized) { if (optind == 0) optind = 1; /* Don't scan ARGV[0], the program name. */ optstring = _getopt_initialize (argc, argv, optstring); __getopt_initialized = 1; } /* Test whether ARGV[optind] points to a non-option argument. Either it does not have option syntax, or there is an environment flag from the shell indicating it is not an option. The later information is only used when the used in the GNU libc. */ #if defined _LIBC && defined USE_NONOPTION_FLAGS # define NONOPTION_P (argv[optind][0] != '-' || argv[optind][1] == '\0' \ || (optind < nonoption_flags_len \ && __getopt_nonoption_flags[optind] == '1')) #else # define NONOPTION_P (argv[optind][0] != '-' || argv[optind][1] == '\0') #endif if (nextchar == NULL || *nextchar == '\0') { /* Advance to the next ARGV-element. */ /* Give FIRST_NONOPT & LAST_NONOPT rational values if OPTIND has been moved back by the user (who may also have changed the arguments). */ if (last_nonopt > optind) last_nonopt = optind; if (first_nonopt > optind) first_nonopt = optind; if (ordering == PERMUTE) { /* If we have just processed some options following some non-options, exchange them so that the options come first. */ if (first_nonopt != last_nonopt && last_nonopt != optind) exchange ((char **) argv); else if (last_nonopt != optind) first_nonopt = optind; /* Skip any additional non-options and extend the range of non-options previously skipped. */ while (optind < argc && NONOPTION_P) optind++; last_nonopt = optind; } /* The special ARGV-element `--' means premature end of options. Skip it like a null option, then exchange with previous non-options as if it were an option, then skip everything else like a non-option. */ if (optind != argc && !strcmp (argv[optind], "--")) { optind++; if (first_nonopt != last_nonopt && last_nonopt != optind) exchange ((char **) argv); else if (first_nonopt == last_nonopt) first_nonopt = optind; last_nonopt = argc; optind = argc; } /* If we have done all the ARGV-elements, stop the scan and back over any non-options that we skipped and permuted. */ if (optind == argc) { /* Set the next-arg-index to point at the non-options that we previously skipped, so the caller will digest them. */ if (first_nonopt != last_nonopt) optind = first_nonopt; return -1; } /* If we have come to a non-option and did not permute it, either stop the scan or describe it to the caller and pass it by. */ if (NONOPTION_P) { if (ordering == REQUIRE_ORDER) return -1; optarg = argv[optind++]; return 1; } /* We have found another option-ARGV-element. Skip the initial punctuation. */ nextchar = (argv[optind] + 1 + (longopts != NULL && argv[optind][1] == '-')); } /* Decode the current option-ARGV-element. */ /* Check whether the ARGV-element is a long option. If long_only and the ARGV-element has the form "-f", where f is a valid short option, don't consider it an abbreviated form of a long option that starts with f. Otherwise there would be no way to give the -f short option. On the other hand, if there's a long option "fubar" and the ARGV-element is "-fu", do consider that an abbreviation of the long option, just like "--fu", and not "-f" with arg "u". This distinction seems to be the most useful approach. */ if (longopts != NULL && (argv[optind][1] == '-' || (long_only && (argv[optind][2] || !my_index (optstring, argv[optind][1]))))) { char *nameend; const struct option *p; const struct option *pfound = NULL; int exact = 0; int ambig = 0; int indfound = -1; int option_index; for (nameend = nextchar; *nameend && *nameend != '='; nameend++) /* Do nothing. */ ; /* Test all long options for either exact match or abbreviated matches. */ for (p = longopts, option_index = 0; p->name; p++, option_index++) if (!strncmp (p->name, nextchar, nameend - nextchar)) { if ((unsigned int) (nameend - nextchar) == (unsigned int) strlen (p->name)) { /* Exact match found. */ pfound = p; indfound = option_index; exact = 1; break; } else if (pfound == NULL) { /* First nonexact match found. */ pfound = p; indfound = option_index; } else if (long_only || pfound->has_arg != p->has_arg || pfound->flag != p->flag || pfound->val != p->val) /* Second or later nonexact match found. */ ambig = 1; } if (ambig && !exact) { if (print_errors) { #if defined _LIBC && defined USE_IN_LIBIO char *buf; __asprintf (&buf, _("%s: option `%s' is ambiguous\n"), argv[0], argv[optind]); if (_IO_fwide (stderr, 0) > 0) __fwprintf (stderr, L"%s", buf); else fputs (buf, stderr); free (buf); #else fprintf (stderr, _("%s: option `%s' is ambiguous\n"), argv[0], argv[optind]); #endif } nextchar += strlen (nextchar); optind++; optopt = 0; return '?'; } if (pfound != NULL) { option_index = indfound; optind++; if (*nameend) { /* Don't test has_arg with >, because some C compilers don't allow it to be used on enums. */ if (pfound->has_arg) optarg = nameend + 1; else { if (print_errors) { #if defined _LIBC && defined USE_IN_LIBIO char *buf; #endif if (argv[optind - 1][1] == '-') { /* --option */ #if defined _LIBC && defined USE_IN_LIBIO __asprintf (&buf, _("\ %s: option `--%s' doesn't allow an argument\n"), argv[0], pfound->name); #else fprintf (stderr, _("\ %s: option `--%s' doesn't allow an argument\n"), argv[0], pfound->name); #endif } else { /* +option or -option */ #if defined _LIBC && defined USE_IN_LIBIO __asprintf (&buf, _("\ %s: option `%c%s' doesn't allow an argument\n"), argv[0], argv[optind - 1][0], pfound->name); #else fprintf (stderr, _("\ %s: option `%c%s' doesn't allow an argument\n"), argv[0], argv[optind - 1][0], pfound->name); #endif } #if defined _LIBC && defined USE_IN_LIBIO if (_IO_fwide (stderr, 0) > 0) __fwprintf (stderr, L"%s", buf); else fputs (buf, stderr); free (buf); #endif } nextchar += strlen (nextchar); optopt = pfound->val; return '?'; } } else if (pfound->has_arg == 1) { if (optind < argc) optarg = argv[optind++]; else { if (print_errors) { #if defined _LIBC && defined USE_IN_LIBIO char *buf; __asprintf (&buf, _("%s: option `%s' requires an argument\n"), argv[0], argv[optind - 1]); if (_IO_fwide (stderr, 0) > 0) __fwprintf (stderr, L"%s", buf); else fputs (buf, stderr); free (buf); #else fprintf (stderr, _("%s: option `%s' requires an argument\n"), argv[0], argv[optind - 1]); #endif } nextchar += strlen (nextchar); optopt = pfound->val; return optstring[0] == ':' ? ':' : '?'; } } nextchar += strlen (nextchar); if (longind != NULL) *longind = option_index; if (pfound->flag) { *(pfound->flag) = pfound->val; return 0; } return pfound->val; } /* Can't find it as a long option. If this is not getopt_long_only, or the option starts with '--' or is not a valid short option, then it's an error. Otherwise interpret it as a short option. */ if (!long_only || argv[optind][1] == '-' || my_index (optstring, *nextchar) == NULL) { if (print_errors) { #if defined _LIBC && defined USE_IN_LIBIO char *buf; #endif if (argv[optind][1] == '-') { /* --option */ #if defined _LIBC && defined USE_IN_LIBIO __asprintf (&buf, _("%s: unrecognized option `--%s'\n"), argv[0], nextchar); #else fprintf (stderr, _("%s: unrecognized option `--%s'\n"), argv[0], nextchar); #endif } else { /* +option or -option */ #if defined _LIBC && defined USE_IN_LIBIO __asprintf (&buf, _("%s: unrecognized option `%c%s'\n"), argv[0], argv[optind][0], nextchar); #else fprintf (stderr, _("%s: unrecognized option `%c%s'\n"), argv[0], argv[optind][0], nextchar); #endif } #if defined _LIBC && defined USE_IN_LIBIO if (_IO_fwide (stderr, 0) > 0) __fwprintf (stderr, L"%s", buf); else fputs (buf, stderr); free (buf); #endif } nextchar = (char *) ""; optind++; optopt = 0; return '?'; } } /* Look at and handle the next short option-character. */ { char c = *nextchar++; char *temp = my_index (optstring, c); /* Increment `optind' when we start to process its last character. */ if (*nextchar == '\0') ++optind; if (temp == NULL || c == ':') { if (print_errors) { #if defined _LIBC && defined USE_IN_LIBIO char *buf; #endif if (posixly_correct) { /* 1003.2 specifies the format of this message. */ #if defined _LIBC && defined USE_IN_LIBIO __asprintf (&buf, _("%s: illegal option -- %c\n"), argv[0], c); #else fprintf (stderr, _("%s: illegal option -- %c\n"), argv[0], c); #endif } else { #if defined _LIBC && defined USE_IN_LIBIO __asprintf (&buf, _("%s: invalid option -- %c\n"), argv[0], c); #else fprintf (stderr, _("%s: invalid option -- %c\n"), argv[0], c); #endif } #if defined _LIBC && defined USE_IN_LIBIO if (_IO_fwide (stderr, 0) > 0) __fwprintf (stderr, L"%s", buf); else fputs (buf, stderr); free (buf); #endif } optopt = c; return '?'; } /* Convenience. Treat POSIX -W foo same as long option --foo */ if (temp[0] == 'W' && temp[1] == ';') { char *nameend; const struct option *p; const struct option *pfound = NULL; int exact = 0; int ambig = 0; int indfound = 0; int option_index; /* This is an option that requires an argument. */ if (*nextchar != '\0') { optarg = nextchar; /* If we end this ARGV-element by taking the rest as an arg, we must advance to the next element now. */ optind++; } else if (optind == argc) { if (print_errors) { /* 1003.2 specifies the format of this message. */ #if defined _LIBC && defined USE_IN_LIBIO char *buf; __asprintf (&buf, _("%s: option requires an argument -- %c\n"), argv[0], c); if (_IO_fwide (stderr, 0) > 0) __fwprintf (stderr, L"%s", buf); else fputs (buf, stderr); free (buf); #else fprintf (stderr, _("%s: option requires an argument -- %c\n"), argv[0], c); #endif } optopt = c; if (optstring[0] == ':') c = ':'; else c = '?'; return c; } else /* We already incremented `optind' once; increment it again when taking next ARGV-elt as argument. */ optarg = argv[optind++]; /* optarg is now the argument, see if it's in the table of longopts. */ for (nextchar = nameend = optarg; *nameend && *nameend != '='; nameend++) /* Do nothing. */ ; /* Test all long options for either exact match or abbreviated matches. */ for (p = longopts, option_index = 0; p->name; p++, option_index++) if (!strncmp (p->name, nextchar, nameend - nextchar)) { if ((unsigned int) (nameend - nextchar) == strlen (p->name)) { /* Exact match found. */ pfound = p; indfound = option_index; exact = 1; break; } else if (pfound == NULL) { /* First nonexact match found. */ pfound = p; indfound = option_index; } else /* Second or later nonexact match found. */ ambig = 1; } if (ambig && !exact) { if (print_errors) { #if defined _LIBC && defined USE_IN_LIBIO char *buf; __asprintf (&buf, _("%s: option `-W %s' is ambiguous\n"), argv[0], argv[optind]); if (_IO_fwide (stderr, 0) > 0) __fwprintf (stderr, L"%s", buf); else fputs (buf, stderr); free (buf); #else fprintf (stderr, _("%s: option `-W %s' is ambiguous\n"), argv[0], argv[optind]); #endif } nextchar += strlen (nextchar); optind++; return '?'; } if (pfound != NULL) { option_index = indfound; if (*nameend) { /* Don't test has_arg with >, because some C compilers don't allow it to be used on enums. */ if (pfound->has_arg) optarg = nameend + 1; else { if (print_errors) { #if defined _LIBC && defined USE_IN_LIBIO char *buf; __asprintf (&buf, _("\ %s: option `-W %s' doesn't allow an argument\n"), argv[0], pfound->name); if (_IO_fwide (stderr, 0) > 0) __fwprintf (stderr, L"%s", buf); else fputs (buf, stderr); free (buf); #else fprintf (stderr, _("\ %s: option `-W %s' doesn't allow an argument\n"), argv[0], pfound->name); #endif } nextchar += strlen (nextchar); return '?'; } } else if (pfound->has_arg == 1) { if (optind < argc) optarg = argv[optind++]; else { if (print_errors) { #if defined _LIBC && defined USE_IN_LIBIO char *buf; __asprintf (&buf, _("\ %s: option `%s' requires an argument\n"), argv[0], argv[optind - 1]); if (_IO_fwide (stderr, 0) > 0) __fwprintf (stderr, L"%s", buf); else fputs (buf, stderr); free (buf); #else fprintf (stderr, _("%s: option `%s' requires an argument\n"), argv[0], argv[optind - 1]); #endif } nextchar += strlen (nextchar); return optstring[0] == ':' ? ':' : '?'; } } nextchar += strlen (nextchar); if (longind != NULL) *longind = option_index; if (pfound->flag) { *(pfound->flag) = pfound->val; return 0; } return pfound->val; } nextchar = NULL; return 'W'; /* Let the application handle it. */ } if (temp[1] == ':') { if (temp[2] == ':') { /* This is an option that accepts an argument optionally. */ if (*nextchar != '\0') { optarg = nextchar; optind++; } else optarg = NULL; nextchar = NULL; } else { /* This is an option that requires an argument. */ if (*nextchar != '\0') { optarg = nextchar; /* If we end this ARGV-element by taking the rest as an arg, we must advance to the next element now. */ optind++; } else if (optind == argc) { if (print_errors) { /* 1003.2 specifies the format of this message. */ #if defined _LIBC && defined USE_IN_LIBIO char *buf; __asprintf (&buf, _("%s: option requires an argument -- %c\n"), argv[0], c); if (_IO_fwide (stderr, 0) > 0) __fwprintf (stderr, L"%s", buf); else fputs (buf, stderr); free (buf); #else fprintf (stderr, _("%s: option requires an argument -- %c\n"), argv[0], c); #endif } optopt = c; if (optstring[0] == ':') c = ':'; else c = '?'; } else /* We already incremented `optind' once; increment it again when taking next ARGV-elt as argument. */ optarg = argv[optind++]; nextchar = NULL; } } return c; } } int getopt (argc, argv, optstring) int argc; char *const *argv; const char *optstring; { return _getopt_internal (argc, argv, optstring, (const struct option *) 0, (int *) 0, 0); } #endif /* Not ELIDE_CODE. */ #ifdef TEST /* Compile with -DTEST to make an executable for use in testing the above definition of `getopt'. */ int main (argc, argv) int argc; char **argv; { int c; int digit_optind = 0; while (1) { int this_option_optind = optind ? optind : 1; c = getopt (argc, argv, "abc:d:0123456789"); if (c == -1) break; switch (c) { case '0': case '1': case '2': case '3': case '4': case '5': case '6': case '7': case '8': case '9': if (digit_optind != 0 && digit_optind != this_option_optind) printf ("digits occur in two different argv-elements.\n"); digit_optind = this_option_optind; printf ("option %c\n", c); break; case 'a': printf ("option a\n"); break; case 'b': printf ("option b\n"); break; case 'c': printf ("option c with value `%s'\n", optarg); break; case '?': break; default: printf ("?? getopt returned character code 0%o ??\n", c); } } if (optind < argc) { printf ("non-option ARGV-elements: "); while (optind < argc) printf ("%s ", argv[optind++]); printf ("\n"); } exit (0); } #endif /* TEST */
the_stack_data/539390.c
#include<stdio.h> int main() { int a[10],max,i,count=0; for(i=0;i<10;i++) scanf("%d",&a[i]); scanf("%d",&max); for(i=0;i<10;i++) { if(a[i]<=max+30) count++; } printf("%d\n",count); return 0; }
the_stack_data/154827051.c
/* * Copyright (C) 2009, 2010 Nick Johnson <nickbjohnson4224 at gmail.com> * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and this permission notice appear in all copies. * * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ #include <stdio.h> #include <string.h> #include <math.h> int __ftoa(char *buffer, double n, int precision) { // double ipart; sprintf(buffer, "%d", (int) n); // n = modf(n, &ipart); // // sprintf(buffer, "%d.%d", (int) ipart, (int) (n * pow(10.0, (double) precision))); return 0; }
the_stack_data/62637330.c
//////////////////////////////////////////////////////////////////////// // No loop // Criteria slicing: (22 variables) // B0 // B11,B17,B2, stable // B13,B14,B19,B22,X66,X68,X69,X71,X72,X73,X74,X75,X82,X84,X85,X87,X99 //////////////////////////////////////////////////////////////////////// /* Loaded program tests/SLICING/statemate-3.clpr in 1.41 seconds. */ /* Pre-computing INFL for each branch statement ..... finished in 2.06 seconds. */ /* Initial memory usage: */ /* Total 74.92Mb Code 12.97Mb Stack 0.00Mb Heap 10.48Mb Trail 1.02Mb Solver 12.21Mb PTerms 36.92Mb */ /* ********************************************** */ /* Statistics */ /* ********************************************** */ /* States visited : 60 */ /* Analysis time : 86.77 seconds */ /* # subsumed nodes : 7 */ /* # calls to solver during interpolation : 2620 */ /* Generation of interpolants information: */ /* Interpolation time : 0.09 seconds */ /* Average Marked/Length of constraints list: 84.28% */ /* Average Dependent/Length of constraints list: 95.22% */ /* Pre-operator time : 41.85 seconds */ /* Pre-operator time (obtain children's sols) : 0.57 seconds */ /* Pre-operator time (copy_term) : 0.06 seconds */ /* Pre-operator time (mark wrt reps) : 0.02 seconds */ /* Pre-operator time (mark constraints): 0.04 seconds */ /* ground all : 0 seconds */ /* create new reps : 0 seconds */ /* ground general case: 0 seconds */ /* checking a trans is in a slice: 0 seconds */ /* Pre-operator time (update reps) : 18.67 seconds */ /* Pre-operator time (storing slice) : 0.03 seconds */ /* Pre-operator time (storing dependencies): 22.46 seconds */ /* Conversion time from partition to naive : 0.15 seconds */ /* Assert slicing answers : 46.1 seconds */ /* Retract slicing answers : 1.46 seconds */ /* Combine time : 21.12 seconds */ /* Subsumption information: */ /* Subsumption time : 0 seconds */ /* # subsumption test succeed : 7 */ /* # subsumption test failed : 53 */ /* Time for generation of loop invariants: 0 seconds */ /* Time for interpolant at the loop entry: 0 seconds */ /* Representatives information: */ /* Time for reps checking : 0 seconds */ /* # subsumption failed due to reps : 0 */ /* # representatives are checked : 7 */ /* Average # representatives checked: 20.4286 */ /* Feasibility information: */ /* # total transitions : 726 */ /* # of alive transitions : 52 */ /* # of dead transitions : 674 */ /* # infeasible paths : 60 */ /* # feasible paths : 1 */ /* Memory usage stats: */ /* Total memory 27.4993Mb */ /* Program memory 13.9693Mb */ /* Stack 0Mb */ /* Heap 0Mb */ /* Trail 0Mb */ /* Solver 0Mb */ /* PTerms 13.5299Mb */ static char B0; static char B1; static char B2; static char B3; static char B4; static char B5; static char B6; static char B7; static char B8; static char B9; static char B10; static char B11; static char B12; static char B13; static char B14; static char B15; static char B16; static char B17; static char B18; static char B19; static char B20; static char B21; static char B22; static char B23; static char B24; static char B25; static char B26; static char B27; static char B28; static char B29; static char B30; static char B31; static char B32; static char B33; static char B34; static char B35; static char B36; static char B37; static char B38; static char B39; static char B40; static char B41; static char B42; static char B43; static char B44; static char B45; static char B46; static char B47; static char B48; static char B49; static char B50; static char B51; static char B52; static char B53; static char B54; static char B55; static char B56; static char B57; static char B58; static char B59; static char B60; static char B61; static char B62; static char B63; unsigned long X1; unsigned long X2; unsigned long X3; unsigned long X4; unsigned long X5; unsigned long X6; int X7; int X8; int X9; unsigned long X10; unsigned long X11; int X12; int X13; int X14; int X15; int X16; int X17; int X18; int X19; int X20; int X21; int X22; int X23; int X24; char X25; char X27; char X26; char X28; char X29; char X30; char X31; char X32; char X33; char X34; char X35; char X36; char X37; char X38; char X39; char X40; char X41; char X42; char X43; char X44; char X45; char X46; char X47; char X48; char X49; char X50; char X51; char X52; char X53; char X54; char X55; char X56; char X57; char X58; char X59; char X60; char X61; char X62; char X63; char X64; char X65; char X66; char X67; char X68; char X69; char X70; char X71; char X72; char X73; char X74; char X75; char X76; char X77; char X78; char X79; char X80; char X81; char X82; char X83; char X84; char X85; char X86; unsigned long time; char stable; char step; char X87; char X88; char X89; char X90; char X91; char X92; char X93; char X94; char X95; char X96; char X97; char X98; char X99; char X100; char X101; char X102; void interface() { if (B4) X3 = time; if (B4 || B6) X2 = time; if ((X4 != 0) && (time - X4 >= 0.5)) { X53 = 0; X4 = 0; } if ((X5 != 0) && (time - X5 >= 0.5)) { X50 = 0; X5 = 0; } if ((X6 != 0) && (time - X6 >= 0.5)) { X50 = 0; X6 = 0; } if ((X10 != 0) && (time - X10 >= 0.5)) { X10 = 0; } if ((X11 != 0) && (time - X11 >= 0.5)) { X11 = 0; } if ((B0 || X22 != X24)) X1 = time; } void init() { X1 = 0; X2 = 0; X3 = 0; X87 = 0; X88 = 0; X89 = 0; X90 = 0; X91 = 0; X92 = 0; X93 = 0; X94 = 0; X95 = 0; X96 = 0; X97 = 0; X98 = 0; X99 = 0; X100 = 0; X101 = 0; X102 = 0; } void generic_KINDERSICHERUNG_CTRL(void) { if (B10) { switch (X90) { case 1 : { if (!(X34 || X30)) { stable = 0; X44 = 0; X47 = 0; X90 = 3; X88 = 0; break; } switch (X88) { case 1 : { if ((X34 && !(X35))) { stable = 0; X47 = 1; X88 = 1; break; } if ((X30 && !(X31))) { stable = 0; X44 = 1; X88 = 1; break; } if ((!(X34) && X35)) { stable = 0; X47 = 0; X88 = 1; break; } if ((!(X30) && X31)) { stable = 0; X44 = 0; X88 = 1; break; } break; } default: { stable = 0; break; } } break; } case 2 : { if (!(X36 || X32)) { stable = 0; X44 = 0; X47 = 0; X90 = 3; X89 = 0; break; } switch (X89) { case 1 : { if ((X36 && !(X37))) { stable = 0; X47 = 1; X89 = 1; break; } if ((X32 && !(X33))) { stable = 0; X44 = 1; X89 = 1; break; } if ((!(X36) && X37)) { stable = 0; X47 = 0; X89 = 1; break; } if ((!(X32) && X33)) { stable = 0; X44 = 0; X89 = 1; break; } break; } default: { stable = 0; break; } } break; } case 3 : { if ((!X38) && (X32 && X36)) { stable = 0; X44 = 1; X47 = 1; X90 = 2; break; } if ((!X38) && (X32 && !X36)) { stable = 0; X44 = 1; X90 = 2; break; } if ((!X38) && (!X32 && X36)) { stable = 0; X47 = 1; X90 = 2; break; } if ((!X30 && X34 && !X38)) { stable = 0; X47 = 1; X90 = 1; break; } if ((X30 && X34)) { stable = 0; X47 = 1; X44 = 1; X90 = 1; break; } if ((X30 && !X34 && !X38)) { stable = 0; X44 = 1; X90 = 1; break; } break; } default: { stable = 0; X90 = 3; break; } } } } void generic_FH_TUERMODUL_CTRL(void) { if (!B13 && B15 && !B14) { B4 = 0; B6 = 0; } if (B13) { if (!B10) { X90 = 3; } B11 = 0; if (!B19) { B0 = 0; X102 = 1; } B20 = 0; B11 = 1; B20 = 1; switch (X91) { case 1 : { if ((X7 == 59 && !(X9 == 59))) { stable = 0; X91 = 3; X94 = 3; break; } break; } case 2 : { if (((X39 && !(X41))) && ((X49))) { stable = 0; X50 = 0; X6 = time; X91 = 3; X94 = 3; break; } switch (X87) { case 1 : { if (!(X43)) { stable = 0; X50 = 0; X87 = 3; break; } break; } case 2 : { if (!(X46)) { stable = 0; X53 = 0; X87 = 3; break; } break; } case 3 : { if ((X46)) { stable = 0; X53 = 1; X87 = 2; break; } if ((X43)) { stable = 0; X50 = 1; X87 = 1; break; } break; } default: { stable = 0; X87 = 3; break; } } break; } case 3 : { if (((X7 > 60 && !(X9 > 60))) && ((!(X26 || X25)))) { stable = 0; X50 = 0; X53 = 0; X91 = 1; break; } if (((X39 && !(X41))) && ((X52))) { stable = 0; X53 = 0; X4 = time; X91 = 2; X87 = 3; break; } if (((X39 && !(X41))) && ((X49))) { stable = 0; X50 = 0; X5 = time; X91 = 2; X87 = 3; break; } switch (X94) { case 1 : { if ((X12 >= 405)) { stable = 0; X53 = 0; X94 = 3; break; } switch (X97) { case 1 : { if ((X43 && !(X45)) || (X46 && !(X48))) { stable = 0; X53 = 0; X94 = 3; X97 = 0; break; } break; } case 2 : { if ((X43 && !(X45))) { stable = 0; X97 = 1; break; } if ((!(X46) && X48)) { stable = 0; X53 = 0; X94 = 3; X97 = 0; break; } break; } default: { stable = 0; X97 = 2; break; } } break; } case 2 : { if ((X12 <= 0)) { stable = 0; X50 = 0; X94 = 3; break; } switch (X98) { case 1 : { if ((X46 && !(X48)) || (X43 && !(X45))) { stable = 0; X50 = 0; X94 = 3; break; } switch (X95) { case 1 : { B23 = 0; if (B22) { stable = 0; X50 = 1; X27 = 0; X95 = 2; X53 = 0; B17 = 1; break; } break; } case 2 : { if (B24) { stable = 0; X27 = 1; B23 = 1; X95 = 1; B17 = 0; X50 = 0; X10 = time; X53 = 1; break; } break; } default: { stable = 0; X95 = 2; B17 = 1; break; } } break; } case 2 : { if ((!(X43) && X45)) { stable = 0; X50 = 0; X94 = 3; break; } switch (X96) { case 1 : { B23 = 0; if (B22) { stable = 0; X28 = 0; X96 = 2; X53 = 0; B17 = 1; X50 = 1; break; } break; } case 2 : { if (B24) { stable = 0; X50 = 0; X28 = 1; B23 = 1; X96 = 1; B17 = 0; X11 = time; X53 = 1; break; } if ((X46 && !(X48))) { stable = 0; X98 = 1; X96 = 0; break; } break; } default: { stable = 0; X96 = 2; B17 = 1; X50 = 1; break; } } break; } default: { stable = 0; X98 = 2; X96 = 2; B17 = 1; X50 = 1; break; } } break; } case 3 : { if (((X43 && !(X45))) && ((X12 > 0))) { stable = 0; X94 = 2; X98 = 2; X96 = 2; B17 = 1; X50 = 1; break; } if (((X46 && !(X48))) && ((X12 < 405))) { stable = 0; X53 = 1; X94 = 1; X97 = 2; break; } break; } default: { stable = 0; X94 = 3; break; } } break; } default: { stable = 0; X91 = 2; break; } } switch (X92) { case 1 : { B5 = 0; if ((step == 1 && X2 != 0 && (time - X2 == 1)) && ((X49 || X52))) { stable = 0; X7 = X7 + 1; X92 = 1; B5 = 1; X93 = 1; break; } switch (X93) { case 1 : { if ((step == 1 && X3 != 0 && (time - X3 == 3)) && (((!(X49 || X52)) && X7 > 0))) { stable = 0; X7 = X7 - 1; X93 = 1; break; } break; } default: { stable = 0; B5 = 1; X93 = 1; break; } } break; } default: { stable = 0; X7 = 0; X92 = 1; B5 = 1; X93 = 1; break; } } B5 = B4; B7 = B6; } } void generic_EINKLEMMSCHUTZ_CTRL(void) { if (B16) { switch (X100) { case 1 : { if (((X55 && !(X56))) && ((!(X43 && X46)))) { stable = 0; B24 = 1; X100 = 2; break; } break; } case 2 : { B24 = 0; if ((!(X55) && X56)) { stable = 0; X100 = 1; break; } break; } default: { stable = 0; X100 = 1; break; } } } } void generic_BLOCK_ERKENNUNG_CTRL(void) { if (!B19 && B21 && !B20) { B0 = 0; } if (B19) { switch (X102) { case 1 : { if ((X13 != X14) && ((X13 > 0))) { stable = 0; X40 = 0; X102 = 2; X22 = 0; X20 = 2; X101 = 3; B0 = 1; break; } break; } case 2 : { if ((!(X52) && X54) || (!(X49) && X51)) { stable = 0; X102 = 1; X101 = 0; break; } switch (X101) { case 1 : { break; } case 2 : { if ((X13 > (X20 - 2))) { stable = 0; X40 = 1; X101 = 1; break; } break; } case 3 : { B0 = 0; if ((X22 == 11 && !(X24 == 11))) { stable = 0; X101 = 2; break; } if (X101 == 3) { if (step == 1 && X1 != 0 && (time - X1 == 0.002)) { X22 = X22 + 1; if ((X13 > X20)) { X20 = X13; } } } break; } default: { stable = 0; X22 = 0; X20 = 2; X101 = 3; B0 = 1; break; } } break; } default: { stable = 0; X102 = 1; break; } } } } void FH_DU() { time = 1; stable = 0; step = 0; // while (!stable) // { stable = 1; step++; { switch (X99) { case 1 : { if ((!(X81) && X83)) { stable = 0; X15 = 0; X99 = 2; break; } break; } case 2 : { if ((X81 && !(X83))) { stable = 0; X15 = -100; X99 = 1; break; } if ((X84 && !(X86))) { stable = 0; X15 = 100; X99 = 3; break; } break; } case 3 : { if ((!(X84) && X86)) { stable = 0; X15 = 0; X99 = 2; break; } break; } default: { stable = 0; X15 = 0; X99 = 2; break; } } } { { if (!B10) { X90 = 3; } B11 = 0; if (!B16) { X100 = 1; } B17 = 0; if (!B19) { B0 = 0; X102 = 1; } B20 = 0; if (!B13) { B4 = 0; B6 = 0; X91 = 2; X7 = 0; X92 = 1; B5 = 1; X93 = 1; } B14 = 0; B11 = 1; B17 = 1; B20 = 1; B14 = 1; if (X68 != X70) { if ((!X77)) { X60 = X68; } } if (X71 != X72) { if (X77) { X68 = X71; } } if (X65 != X67) { if ((!X77)) { X61 = X65; } } if (X73 != X74) { if (X77) { X65 = X73; } } } } B10 = B12; B13 = B15; B16 = B18; B19 = B21; X36 = X76; X34 = X61; X32 = X75; X30 = X60; generic_KINDERSICHERUNG_CTRL(); X84 = X52; X81 = X49; X18 = X13; X63 = X55; X17 = X12; X62 = X42; X76 = X36; X61 = X34; X75 = X32; X60 = X30; X59 = X38; X78 = X39; X36 = X76; X34 = X61; X32 = X75; X30 = X60; generic_FH_TUERMODUL_CTRL(); X84 = X52; X81 = X49; X18 = X13; X63 = X55; X17 = X12; X62 = X42; X76 = X36; X61 = X34; X75 = X32; X60 = X30; X59 = X38; X78 = X39; X36 = X76; X34 = X61; X32 = X75; X30 = X60; generic_EINKLEMMSCHUTZ_CTRL(); X84 = X52; X81 = X49; X18 = X13; X63 = X55; X17 = X12; X62 = X42; X76 = X36; X61 = X34; X75 = X32; X60 = X30; X59 = X38; X78 = X39; X36 = X76; X34 = X61; X32 = X75; X30 = X60; generic_BLOCK_ERKENNUNG_CTRL(); X84 = X52; X81 = X49; X18 = X13; X63 = X55; X17 = X12; X62 = X42; X76 = X36; X61 = X34; X75 = X32; X60 = X30; X59 = X38; X78 = X39; B11 = B10; B14 = B13; B17 = B16; B20 = B19; X9 = X7; X14 = X13; X15 = X16; X19 = X18; X24 = X22; X31 = X30; X33 = X32; X35 = X34; X37 = X36; X39 = X40; X41 = X39; X43 = X44; X45 = X43; X46 = X47; X48 = X46; X49 = X50; X51 = X49; X52 = X53; X54 = X52; X56 = X55; X64 = X63; X67 = X65; X70 = X68; X72 = X71; X74 = X73; X78 = X79; X80 = X78; X81 = X82; X83 = X81; X84 = X85; X86 = X84; // } //while } int main() { /* Initialization of global variables */ B0 = 0; B1 = 0; B2 = 0; B3 = 0; B4 = 0; B5 = 0; B6 = 0; B7 = 0; B8 = 0; B9 = 0; B10 = 0; B11 = 0; B12 = 0; B13 = 0; B14 = 0; B15 = 0; B16 = 0; B17 = 0; B18 = 0; B19 = 0; B20 = 0; B21 = 0; B22 = 0; B23 = 0; B24 = 0; B25 = 0; B26 = 0; B27 = 0; B28 = 0; B29 = 0; B30 = 0; B31 = 0; B32 = 0; B33 = 0; B34 = 0; B35 = 0; B36 = 0; B37 = 0; B38 = 0; B39 = 0; B40 = 0; B41 = 0; B42 = 0; B43 = 0; B44 = 0; B45 = 0; B46 = 0; B47 = 0; B48 = 0; B49 = 0; B50 = 0; B51 = 0; B52 = 0; B53 = 0; B54 = 0; B55 = 0; B56 = 0; B57 = 0; B58 = 0; B59 = 0; B60 = 0; B61 = 0; B62 = 0; B63 = 0; X1 = 0; X2 = 0; X3 = 0; X4 = 0; X5 = 0; X6 = 0; X7 = 0; X8 = 0; X9 = 0; X10 = 0; X11 = 0; X12 = 0; X13 = 0; X14 = 0; X15 = 0; X16 = 0; X17 = 0; X18 = 0; X19 = 0; X20 = 0; X21 = 0; X22 = 0; X23 = 0; X24 = 0; X25 = 0; X27 = 0; X26 = 0; X28 = 0; X29 = 0; X30 = 0; X31 = 0; X32 = 0; X33 = 0; X34 = 0; X35 = 0; X36 = 0; X37 = 0; X38 = 0; X39 = 0; X40 = 0; X41 = 0; X42 = 0; X43 = 0; X44 = 0; X45 = 0; X46 = 0; X47 = 0; X48 = 0; X49 = 0; X50 = 0; X51 = 0; X52 = 0; X53 = 0; X54 = 0; X55 = 0; X56 = 0; X57 = 0; X58 = 0; X59 = 0; X60 = 0; X61 = 0; X62 = 0; X63 = 0; X64 = 0; X65 = 0; X66 = 0; X67 = 0; X68 = 0; X69 = 0; X70 = 0; X71 = 0; X72 = 0; X73 = 0; X74 = 0; X75 = 0; X76 = 0; X77 = 0; X78 = 0; X79 = 0; X80 = 0; X81 = 0; X82 = 0; X83 = 0; X84 = 0; X85 = 0; X86 = 0; time = 0; stable = 0; step = 0; X87 = 0; X88 = 0; X89 = 0; X90 = 0; X91 = 0; X92 = 0; X93 = 0; X94 = 0; X95 = 0; X96 = 0; X97 = 0; X98 = 0; X99 = 0; X100 = 0; X101 = 0; X102 = 0; /* Code from Maalardalen */ init(); interface(); FH_DU(); return 0; _SLICE(B0, B11,B17,B2,stable, B13,B14,B19,B22,X66,X68,X69,X71,X72,X73,X74,X75,X82,X84,X85,X87,X99); /* Uppsala-Paderborn instead uses the following */ /* while (1) */ /* { */ /* FH_DU(); */ /* } */ /* return 0; */ }
the_stack_data/131830.c
#define _XOPEN_SOURCE 500 #include <stdio.h> #include <stdlib.h> #include <string.h> #include <dirent.h> #include <time.h> #include <ftw.h> #include <errno.h> void help(); time_t parse_time(char* ctime); void tree(char* path, char* symbol, time_t tim); int is_time_valid(char* symbol, time_t tim, time_t ftim); void file_print(const char* path, const struct stat* stat); static int nftw_tree(const char* path, const struct stat* sb, int typeflag, struct FTW* ftwbuf); void tree(char* path, char* symbol, time_t tim); char* nftwsymbol; time_t nftwtim; int main(int argc, char* argv[]){ if(argc < 5){ help(); exit(0); } char* path = realpath(argv[1], NULL); if(path){ perror(path); } char* symbol = argv[2]; time_t tim = parse_time(argv[3]); char* mode = argv[4]; if(strcmp(mode, "1") == 0){ tree(path, symbol, tim); } else if(strcmp(mode, "2") == 0){ nftwsymbol = symbol; nftwtim = tim; if(nftw(path, nftw_tree, 30, FTW_PHYS) != 0){ perror("nftw"); } } else{ fprintf(stderr, "Mode must me 1 or 2\n"); exit(1); } return 0; } void help(){ printf("You can use this commands:\n"); printf("<dir> <'<', '>', '='> <data> <1=normal, 2=nftw>\n\n"); } static int nftw_tree(const char* path, const struct stat* stat, int typeflag, struct FTW* ftwbuf){ if(ftwbuf->level == 0){ return 0; } if(is_time_valid(nftwsymbol, nftwtim, stat->st_mtime)){ file_print(path, stat); } return 0; } void tree(char* path, char* symbol, time_t tim){ DIR* dir = opendir(path); if(!dir){ fprintf(stderr, "%s\n", strerror(errno)); return; } struct stat stat; struct dirent* dirent; while((dirent = readdir(dir)) != NULL){ if(strcmp(dirent->d_name, ".") == 0 || strcmp(dirent->d_name, "..") == 0){ continue; } char* file_path = malloc(strlen(path) + 2 + strlen(dirent->d_name)); if(!file_path){ fprintf(stderr, "Could not allocate any more memory"); } sprintf(file_path, "%s/%s", path, dirent->d_name); lstat(file_path, &stat); if(is_time_valid(symbol, tim, stat.st_mtime)){ file_print(file_path, &stat); } if(S_ISDIR(stat.st_mode)){ long int loc = telldir(dir); closedir(dir); tree(file_path, symbol, tim); opendir(path); seekdir(dir, loc); } } if(closedir(dir) == -1){ fprintf(stderr, "%s\n", strerror(errno)); } } void file_print(const char* path, const struct stat* stat){ printf("%s\n", path); switch(stat->st_mode & S_IFMT){ case S_IFREG: printf("regular file\n"); break; case S_IFDIR: printf("directory\n"); break; case S_IFCHR: printf("character device\n"); break; case S_IFBLK: printf("block device\n"); break; case S_IFIFO: printf("FIFO/pipe\n"); break; case S_IFLNK: printf("symlink\n"); break; case S_IFSOCK: printf("socket\n"); break; default: printf("unknown\n"); break; } printf("File size: %lld bytes\n", (long long) stat->st_size); printf("Last file access: %s", ctime(&stat->st_atime)); printf("Last file modification: %s\n", ctime(&stat->st_mtime)); } time_t parse_time(char* ctim){ struct tm tm; char* date = strptime(ctim, "%Y-%m-%d %H:%M:%S" , &tm); if(date == NULL){ fprintf(stderr, "bad time format. example 2018-12-12 11:15:56\n"); exit(1); } time_t time = mktime(&tm); if(time == -1){ fprintf(stderr, "WTF\n"); exit(1); } return time; } int is_time_valid(char* symbol, time_t tim, time_t ftim){ if(strcmp(symbol, ">") == 0){ return ftim > tim; } else if(strcmp(symbol, "<") == 0){ return ftim < tim; } else if(strcmp(symbol, "=") == 0){ return ftim == tim; } else{ fprintf(stderr, "bad date symbol\n"); exit(1); } return 0; }
the_stack_data/76085.c
// See adcToTemperature.c for the purpose of this code. // This version is optimized for AVR microprocessors using // hand-coded assembly for the multiply-accumulate step #define K0 -3945 #define K1 32816 #define K2 4635 #define K3 1309 #define K4 462 #define K5 183 #define K6 77 #define K7 34 #define MAXCOEF 5 #include "stdint.h" #include "stdio.h" uint16_t coefs[] = { K0, K1, K2, K3, K4, K5, K6 }; int main() { uint16_t adc; for (adc=0; adc<=32768; adc += 2048) { int i; uint16_t acc = 0; for(i=MAXCOEF; i>=1; i--) { uint16_t coef; coef = coefs[i]; uint16_t factor; uint8_t zero = 0; asm volatile( "add %A0, %A1 /* ADC += COEF */\n\t" "adc %B0, %B1\n\t" "mul %A0, %A2 /*low * low*/\n\t" "mov __tmp_reg__, r1\n\t" "mul %B0, %B2 /*high * high*/\n\t" "movw %3,r0\n\t" "mul %A0, %B2 /*low * high*/\n\t" "add __tmp_reg__, r0\n\t" "adc %A3, r1\n\t" "adc %B3, %4\n\t" "mul %B0, %A2 /*high * low*/\n\t" "add __tmp_reg__, r0\n\t" "adc %A3, r1\n\t" "adc %B3, %4\n\t" "movw %0, %3\n\t" : "=r" (acc) : "r" (coef), "r" (adc), "r"(factor), "r"(zero) ); } volatile int16_t ttimes16 = acc + K0; // int16_t t_16 = step(K0, step(K1, step(K2, step(K3, step(K4, step(K5, step(K6, K7))))))); //volatile int16_t t_16 = step(K0, step(K1, step(K2, step(K3, K4)))); } }
the_stack_data/170452026.c
/* * 简要题意: * n 个珠子连成一条项链,有 m 种不同颜色,有 k 对颜色不能放在相邻位置。 * 求本质不同的项链数目(不能翻转),模 9973 输出。 * n in [1, 10^9], gcd(n, 9973) = 1, m in [1, 10], k in [1, m(m-1)/2] * * 粗略一看,好像是 Polya 的题。但是题目有限制说『一些特定的颜色不能放在一起』, * 这就有一些麻烦。 * * 可以先试试用 Burnside 做。 * * 想了半天没有想到什么头绪,于是看看题解。发现这一个题是 Burnside + 矩阵乘法 + * 欧拉函数 …… 怪不得没想到什么东西。 * * 首先是在这个题目中新学到的东西:邻接矩阵的 n 次方的意义。 * * 一个邻接矩阵 A ,其中 a_(ij) 表示 i 走到 j 的方案数。 a_(ij) 为 0 则表示 i 和 * j 没有边直接相连;a_(ij) 为 1 则表示 i 和 j 有边直接相连。 * * 那么 B = A^k ,b_(ij) 的意义为 i 走 k 步到 j 的方案数(不会证明,是手模的,但 * 是猜矩阵乘法和 Floyd 那么像应该有什么关系)。 * * 摘抄一下一个博客中的重要段落: * * from: http://www.cppblog.com/ArefaElvis/archive/2010/10/10/129269.html * > 假设一个长度为 L 的序列的合法表示为 a_1, a_2, ……, a_L * > 那么 (a_1, a_2)(a_2, a_3) , …… ,(a_(L-1), a_L), (a_L, a_1) 必定都为 1 * > 所以令 g_(ai aj) = 1 表示 (a_i, a_j) 为合法对, * > g_(ai aj) = 0 表示 (a_i, a_j) 为非法对。 * > 那么以 a_1 开头的合法序列为 k 个那么必定存在且仅存在 k 个不同的序列 * > { b_1, b_2, b_3, b_4, ……, b_(L-1) } * > 满足 g_(a_1 b_1) * g_(b_1 b_2) * …… g_(b_(L-2) b(L-1)) * g_(b(L-1) a1) = 1 * > 这样很显然就是矩阵 G^L 中 g_(a1 a1) 的值。 * * 简而言之: * 把『可以放置相邻的珠子』看做一条无向边,那么合法的长为 L 的序列个数为 * 『从 a_1 走 L 步到 a_1 的方案数』,即『邻接矩阵的 L 次方的 a_(11) 的值』。 * * 众所周知,在项链类题目中转动 i 个珠子时循环节序列个数为 gcd(n, i),长度为 * n / gcd(n, i) 。借助这个博客的思路,可以使用矩阵进行优化。 * * 公式 (Burnside) : * 1/n * sum_(i=1)^n (旋转 i 时合法的不动点个数) * = 1/n * sum_(i=1)^n sum_(j=1)^m (以 j 为第一个珠子,长为 gcd(n, i) 的合法序 * 列个数) * = 1/n * sum_(i=1)^n sum_(j=1)^m (G^gcd(n,i))_(jj) * = 1/n * sum_(d|n) (sum_(i=1)^n [gcd(i,n) = d]) * (sum_(j=1)^m (G^d)_(jj)) * = 1/n * sum_(d|n) (sum_(i=1)^n [gcd(i/d,n/d) = 1]) * (sum_(j=1)^m (G^d)_(jj)) * = 1/n * sum_(d|n) (sum_(i=1)^n/d [gcd(i,n/d) = 1]) * (sum_(j=1)^m (G^d)_(jj)) * = 1/n * sum_(d|n) phi(n/d) * (sum_(j=1)^m (G^d)_(jj)) */ #include <stdio.h> #include <string.h> #define MOD (9973) #define PRIME_TABLE_MAX (1000000) int prime[PRIME_TABLE_MAX]; int is_not_prime[PRIME_TABLE_MAX]; void sieve(void) { int i, j, k = 0; for (i = 2; i < PRIME_TABLE_MAX; ++i) if (!is_not_prime[i]) { prime[k++] = i; for (j = i + i; j < PRIME_TABLE_MAX; j += i) is_not_prime[i] = 1; } } int phi(int x) { int ans = x; int i; for (i = 0; prime[i] * prime[i] <= x; ++i) { if (x % prime[i] == 0) { ans -= ans / prime[i]; while (x % prime[i] == 0) x /= prime[i]; if (x == 1) break; } } if (x > 1) ans -= ans / x; return ans % MOD; } typedef int mtx[20][20]; int m; mtx* mtx_mul(mtx *d, mtx *s1, mtx *s2) { mtx t_base, *t = &t_base; int i, j, k; memset(t, 0, sizeof(mtx)); for (i = 1; i <= m; ++i) for (j = 1; j <= m; ++j) { for (k = 1; k <= m; ++k) (*t)[i][j] += (*s1)[i][k] * (*s2)[k][j]; (*t)[i][j] %= MOD; } return memcpy(d, t, sizeof(mtx)); } int magic(mtx *G, int d) { mtx t, ans; int ians = 0; int i; memcpy(&t, G, sizeof(mtx)); memcpy(&ans, G, sizeof(mtx)); --d; if (d < 0) d = 0; while (d) { if (d & 1) mtx_mul(&ans, &ans, &t); mtx_mul(&t, &t, &t); d /= 2; } for (i = 1; i <= m; ++i) ians = (ians + ans[i][i]) % MOD; return ians; } void exgcd(int a, int b, int *x, int *y) { if (b) { exgcd(b, a % b, y, x); *y -= (a / b) * *x; } else { *x = 1; *y = 0; } } int inv(int a) { int x, y; exgcd(a, MOD, &x, &y); return (x % MOD + MOD) % MOD; } int main(void) { int T; sieve(); #ifdef DEBUG freopen("in", "r", stdin); #endif scanf("%d", &T); while (T--) { int n, k; int i, j; int ans = 0; mtx G; scanf("%d%d%d", &n, &m, &k); for (i = 1; i <= m; ++i) for (j = 1; j <= m; ++j) G[i][j] = 1; while (k--) { int u, v; scanf("%d%d", &u, &v); G[u][v] = G[v][u] = 0; } /* 1/n * sum_(d|n) phi(n/d) * (sum_(j=1)^m (G^d)_(jj)) */ for (i = 1; i * i <= n; ++i) if (n % i == 0) { ans = (ans + phi(n / i) * magic(&G, i) % MOD) % MOD; if (i * i != n) ans = (ans + phi(i) * magic(&G, n / i) % MOD) % MOD; } printf("%d\n", ans * inv(n) % MOD); } return 0; }
the_stack_data/68241.c
/* { dg-options { -nostartfiles below100.o -Tbelow100.ld -O2 } } */ /* { dg-final { scan-assembler "b\[np\] " } } */ typedef struct { unsigned char b0:1; unsigned char b1:1; unsigned char b2:1; unsigned char b3:1; unsigned char b4:1; unsigned char b5:1; unsigned char b6:1; unsigned char b7:1; } BitField; #define SFRA (*((volatile BitField*)0x7f14)) unsigned char *pA = (unsigned char *) 0x7f14; #define SFRB (*((volatile BitField*)0x7f10)) unsigned char *pB = (unsigned char *) 0x7f10; char * Do (void) { if (!SFRA.b7) { if (!SFRB.b7) return "Fail"; else return "Success"; } else return "Fail"; } int main (void) { *pA = 0x34; *pB = 0xcb; return Do ()[0] == 'F'; }
the_stack_data/175142444.c
#ifdef COMPILE_FOR_TEST #include <assert.h> #define assume(cond) assert(cond) #endif void main(int argc, char* argv[]) { int x_0_0;//sh_buf.outcnt int x_0_1;//sh_buf.outcnt int x_0_2;//sh_buf.outcnt int x_0_3;//sh_buf.outcnt int x_0_4;//sh_buf.outcnt int x_1_0;//sh_buf.outbuf[0] int x_1_1;//sh_buf.outbuf[0] int x_2_0;//sh_buf.outbuf[1] int x_2_1;//sh_buf.outbuf[1] int x_3_0;//sh_buf.outbuf[2] int x_3_1;//sh_buf.outbuf[2] int x_4_0;//sh_buf.outbuf[3] int x_4_1;//sh_buf.outbuf[3] int x_5_0;//sh_buf.outbuf[4] int x_5_1;//sh_buf.outbuf[4] int x_6_0;//sh_buf.outbuf[5] int x_7_0;//sh_buf.outbuf[6] int x_8_0;//sh_buf.outbuf[7] int x_9_0;//sh_buf.outbuf[8] int x_10_0;//sh_buf.outbuf[9] int x_11_0;//LOG_BUFSIZE int x_11_1;//LOG_BUFSIZE int x_12_0;//CREST_scheduler::lock_0 int x_12_1;//CREST_scheduler::lock_0 int x_12_2;//CREST_scheduler::lock_0 int x_13_0;//t3 T0 int x_14_0;//t2 T0 int x_15_0;//arg T0 int x_16_0;//functioncall::param T0 int x_16_1;//functioncall::param T0 int x_17_0;//buffered T0 int x_18_0;//functioncall::param T0 int x_18_1;//functioncall::param T0 int x_19_0;//functioncall::param T0 int x_19_1;//functioncall::param T0 int x_20_0;//functioncall::param T0 int x_20_1;//functioncall::param T0 int x_20_2;//functioncall::param T0 int x_20_3;//functioncall::param T0 int x_21_0;//functioncall::param T0 int x_21_1;//functioncall::param T0 int x_21_2;//functioncall::param T0 int x_22_0;//direction T0 int x_23_0;//functioncall::param T0 int x_23_1;//functioncall::param T0 int x_23_2;//functioncall::param T0 int x_24_0;//functioncall::param T0 int x_24_1;//functioncall::param T0 int x_25_0;//functioncall::param T0 int x_25_1;//functioncall::param T0 int x_26_0;//functioncall::param T0 int x_26_1;//functioncall::param T0 int x_27_0;//functioncall::param T0 int x_27_1;//functioncall::param T0 int x_28_0;//functioncall::param T0 int x_28_1;//functioncall::param T0 int x_29_0;//functioncall::param T0 int x_29_1;//functioncall::param T0 int x_30_0;//functioncall::param T0 int x_30_1;//functioncall::param T0 int x_31_0;//functioncall::param T0 int x_31_1;//functioncall::param T0 int x_32_0;//functioncall::param T0 int x_32_1;//functioncall::param T0 int x_33_0;//functioncall::param T0 int x_33_1;//functioncall::param T0 int x_34_0;//functioncall::param T0 int x_34_1;//functioncall::param T0 int x_35_0;//functioncall::param T1 int x_35_1;//functioncall::param T1 int x_36_0;//functioncall::param T1 int x_36_1;//functioncall::param T1 int x_37_0;//i T1 int x_37_1;//i T1 int x_37_2;//i T1 int x_38_0;//rv T1 int x_39_0;//rv T1 int x_39_1;//rv T1 int x_40_0;//blocksize T1 int x_40_1;//blocksize T1 int x_41_0;//functioncall::param T1 int x_41_1;//functioncall::param T1 int x_41_2;//functioncall::param T1 int x_42_0;//apr_thread_mutex_lock::rv T1 int x_42_1;//apr_thread_mutex_lock::rv T1 int x_43_0;//functioncall::param T1 int x_43_1;//functioncall::param T1 int x_44_0;//status T1 int x_44_1;//status T1 int x_45_0;//functioncall::param T1 int x_45_1;//functioncall::param T1 int x_46_0;//functioncall::param T1 int x_46_1;//functioncall::param T1 int x_47_0;//functioncall::param T1 int x_47_1;//functioncall::param T1 int x_48_0;//functioncall::param T1 int x_48_1;//functioncall::param T1 int x_49_0;//functioncall::param T1 int x_49_1;//functioncall::param T1 int x_50_0;//functioncall::param T1 int x_50_1;//functioncall::param T1 int x_51_0;//functioncall::param T1 int x_51_1;//functioncall::param T1 int x_52_0;//functioncall::param T1 int x_52_1;//functioncall::param T1 int x_53_0;//functioncall::param T2 int x_53_1;//functioncall::param T2 int x_54_0;//functioncall::param T2 int x_54_1;//functioncall::param T2 int x_55_0;//i T2 int x_55_1;//i T2 int x_55_2;//i T2 int x_55_3;//i T2 int x_56_0;//rv T2 int x_57_0;//functioncall::param T2 int x_57_1;//functioncall::param T2 int x_58_0;//functioncall::param T2 int x_58_1;//functioncall::param T2 int x_59_0;//functioncall::param T2 int x_59_1;//functioncall::param T2 int x_59_2;//functioncall::param T2 int x_60_0;//functioncall::param T2 int x_60_1;//functioncall::param T2 T_0_0_0: x_0_0 = 0; T_0_1_0: x_1_0 = 0; T_0_2_0: x_2_0 = 0; T_0_3_0: x_3_0 = 0; T_0_4_0: x_4_0 = 0; T_0_5_0: x_5_0 = 0; T_0_6_0: x_6_0 = 0; T_0_7_0: x_7_0 = 0; T_0_8_0: x_8_0 = 0; T_0_9_0: x_9_0 = 0; T_0_10_0: x_10_0 = 0; T_0_11_0: x_11_0 = 0; T_0_12_0: x_13_0 = 3699279984; T_0_13_0: x_14_0 = 386425440; T_0_14_0: x_15_0 = 0; T_0_15_0: x_16_0 = 1170234861; T_0_16_0: x_16_1 = -1; T_0_17_0: x_17_0 = 0; T_0_18_0: x_18_0 = 1713570728; T_0_19_0: x_18_1 = x_17_0; T_0_20_0: x_19_0 = 623452286; T_0_21_0: x_19_1 = 97; T_0_22_0: x_20_0 = 1597868146; T_0_23_0: x_20_1 = 0; T_0_24_0: x_21_0 = 122377563; T_0_25_0: x_21_1 = 0; T_0_26_0: x_22_0 = 386420800; T_0_27_0: x_23_0 = 1103945371; T_0_28_0: x_23_1 = x_22_0; T_0_29_0: x_24_0 = 356459518; T_0_30_0: x_24_1 = 0; T_0_31_0: x_12_0 = -1; T_0_32_0: x_0_1 = 5; T_0_33_0: x_1_1 = 72; T_0_34_0: x_2_1 = 69; T_0_35_0: x_3_1 = 76; T_0_36_0: x_4_1 = 76; T_0_37_0: x_5_1 = 79; T_0_38_0: x_25_0 = 1214499652; T_0_39_0: x_25_1 = 83; T_0_40_0: x_26_0 = 1272906483; T_0_41_0: x_26_1 = 1; T_0_42_0: x_27_0 = 1154597721; T_0_43_0: x_27_1 = 1; T_0_44_0: x_28_0 = 1556482137; T_0_45_0: x_28_1 = 1; T_0_46_0: x_29_0 = 1838574187; T_0_47_0: x_29_1 = 82; T_0_48_0: x_30_0 = 169119731; T_0_49_0: x_30_1 = 90; T_0_50_0: x_31_0 = 1805119731; T_0_51_0: x_31_1 = 1; T_0_52_0: x_32_0 = 350699194; T_0_53_0: x_32_1 = 1; T_0_54_0: x_33_0 = 161485328; T_0_55_0: x_33_1 = 2; T_0_56_0: x_34_0 = 1663344930; T_0_57_0: x_34_1 = 2; T_0_58_0: x_11_1 = 3; T_1_59_1: x_35_0 = 42136256; T_1_60_1: x_35_1 = x_27_1; T_1_61_1: x_36_0 = 1624841510; T_1_62_1: x_36_1 = x_28_1; T_1_63_1: x_37_0 = 0; T_1_64_1: x_38_0 = -434982399; T_1_65_1: if (x_0_1 + x_36_1 > x_11_1 && x_0_1 != 0) x_39_0 = 393488304; T_1_66_1: if (x_0_1 + x_36_1 > x_11_1 && x_0_1 != 0 && x_18_1 != 0) x_40_0 = 11150; T_1_67_1: if (x_0_1 + x_36_1 > x_11_1 && x_0_1 != 0 && x_18_1 != 0) x_41_0 = 541782941; T_1_68_1: if (x_0_1 + x_36_1 > x_11_1 && x_0_1 != 0 && x_18_1 != 0) x_41_1 = x_0_1; T_1_69_1: if (x_0_1 + x_36_1 > x_11_1 && x_0_1 != 0 && x_18_1 != 0 && x_0_1 == x_41_1) x_42_0 = 0; T_1_70_1: if (x_0_1 + x_36_1 > x_11_1 && x_0_1 != 0 && x_18_1 != 0 && x_0_1 == x_41_1 && 0 == x_12_0 + 1) x_12_1 = 1; T_1_71_1: if (x_0_1 + x_36_1 > x_11_1 && x_0_1 != 0 && x_18_1 != 0 && x_0_1 == x_41_1 && 1 == x_12_1) x_42_1 = 0; T_1_72_1: if (x_0_1 + x_36_1 > x_11_1 && x_0_1 != 0 && x_18_1 != 0 && x_23_1 == 0 && 1 == x_12_1) x_43_0 = 699804073; T_1_73_1: if (x_0_1 + x_36_1 > x_11_1 && x_0_1 != 0 && x_18_1 != 0 && x_23_1 == 0 && 1 == x_12_1) x_43_1 = x_20_1 + -1*x_21_1 + x_24_1; T_1_74_1: if (x_0_1 + x_36_1 > x_11_1 && x_0_1 != 0 && x_18_1 != 0 && x_23_1 == 0 && 1 == x_12_1) x_20_2 = 0; T_1_75_1: if (x_0_1 + x_36_1 > x_11_1 && x_0_1 != 0 && x_18_1 != 0 && x_23_1 == 0 && 1 == x_12_1) x_21_2 = 0; T_1_76_1: if (x_0_1 + x_36_1 > x_11_1 && x_0_1 != 0 && x_18_1 != 0 && x_23_1 == 0 && 1 == x_12_1) x_23_2 = 1; T_1_77_1: if (x_0_1 + x_36_1 > x_11_1 && x_0_1 != 0 && x_18_1 != 0 && 1 == x_12_1) x_39_1 = 0; T_1_78_1: if (x_0_1 + x_36_1 > x_11_1 && x_0_1 != 0 && x_18_1 != 0 && 0 == x_39_1 && 1 == x_12_1) x_40_1 = x_41_1; T_1_79_1: if (x_0_1 + x_36_1 > x_11_1 && x_0_1 != 0 && x_18_1 != 0 && 0 == x_39_1 && 1 == x_12_1) x_20_3 = x_20_2 + x_40_1; T_1_80_1: if (x_0_1 + x_36_1 > x_11_1 && x_0_1 != 0 && x_18_1 != 0 && 0 == x_39_1 && 1 == x_12_1) x_41_2 = -1*x_40_1 + x_41_1; T_1_81_1: if (x_0_1 + x_36_1 > x_11_1 && x_0_1 != 0 && x_18_1 != 0 && x_41_2 <= 0 && 1 == x_12_1) x_44_0 = 0; T_1_82_1: if (x_0_1 + x_36_1 > x_11_1 && x_0_1 != 0 && x_18_1 != 0 && x_41_2 <= 0 && 1 == x_12_1) x_12_2 = -1; T_1_83_1: if (x_0_1 + x_36_1 > x_11_1 && x_0_1 != 0 && x_18_1 != 0 && x_41_2 <= 0) x_44_1 = 0; T_1_84_1: if (x_0_1 + x_36_1 > x_11_1 && x_0_1 != 0) x_45_0 = 469813371; T_1_85_1: if (x_0_1 + x_36_1 > x_11_1 && x_0_1 != 0) x_45_1 = x_39_1; T_1_86_1: if (x_0_1 + x_36_1 > x_11_1 && x_0_1 != 0) x_46_0 = 483156151; T_1_87_1: if (x_0_1 + x_36_1 > x_11_1 && x_0_1 != 0) x_46_1 = x_45_1; T_1_88_1: if (x_0_1 + x_36_1 > x_11_1 && x_0_1 != 0) x_0_2 = 0; T_1_89_1: if (x_36_1 < x_11_1) x_47_0 = 1385284355; T_1_90_1: if (x_36_1 < x_11_1) x_47_1 = 47889320335104; T_1_91_1: x_53_0 = 1620097824; T_1_92_1: x_53_1 = x_33_1; T_1_93_1: x_54_0 = 20908024; T_2_94_2: x_54_1 = x_34_1; T_2_95_2: x_55_0 = 0; T_2_96_2: x_56_0 = -437083647; T_2_97_2: if (x_36_1 < x_11_1) x_48_0 = 360641390; T_2_98_2: if (x_36_1 < x_11_1) x_48_1 = x_0_2 + x_36_1; T_2_99_2: if (x_36_1 < x_11_1) x_37_1 = 0; T_1_100_1: if (x_36_1 < x_11_1 && x_37_1 < x_35_1) x_49_0 = 2020495273; T_1_101_1: if (x_36_1 < x_11_1 && x_37_1 < x_35_1) x_49_1 = 47889320335104; T_1_102_1: if (x_36_1 < x_11_1) x_37_2 = 1 + x_37_1; T_1_103_1: if (x_36_1 < x_11_1) x_50_0 = 636461430; T_1_104_1: if (x_36_1 < x_11_1) x_50_1 = 47889320335104; T_1_105_1: if (x_54_1 < x_11_1) x_57_0 = 1083414878; T_2_106_2: if (x_54_1 < x_11_1) x_57_1 = 47889322436352; T_2_107_2: if (x_36_1 < x_11_1) x_0_3 = x_0_2 + x_36_1; T_2_108_2: if (x_36_1 < x_11_1) x_51_0 = 312096166; T_2_109_2: if (x_36_1 < x_11_1) x_51_1 = 47889320335104; T_1_110_1: if (x_54_1 < x_11_1) x_58_0 = 1806696291; T_1_111_1: if (x_54_1 < x_11_1) x_58_1 = x_0_2 + x_54_1; T_1_112_1: if (x_54_1 < x_11_1) x_55_1 = 0; T_2_113_2: if (x_54_1 < x_11_1 && x_55_1 < x_53_1) x_59_0 = 649501958; T_2_114_2: if (x_54_1 < x_11_1 && x_55_1 < x_53_1) x_59_1 = 47889322436352; T_2_115_2: if (x_54_1 < x_11_1) x_55_2 = 1 + x_55_1; T_2_116_2: if (x_54_1 < x_11_1 && x_55_2 < x_53_1) x_59_2 = 47889322436352; T_2_117_2: if (x_54_1 < x_11_1) x_55_3 = 1 + x_55_2; T_2_118_2: if (x_54_1 < x_11_1) x_60_0 = 935548452; T_2_119_2: if (x_54_1 < x_11_1) x_60_1 = 47889322436352; T_2_120_2: if (x_54_1 < x_11_1) x_0_4 = x_0_3 + x_54_1; T_2_121_2: if (x_36_1 < x_11_1) x_52_0 = 1257080790; T_2_122_2: if (x_36_1 < x_11_1) x_52_1 = 47889320335104; T_2_123_2: if (x_36_1 < x_11_1) assert(x_0_4 == x_48_1); }
the_stack_data/588916.c
// RUN: %llvmgcc %s -emit-llvm -g -O0 -c -o %t.bc // RUN: rm -rf %t.klee-out // RUN: %klee --output-dir=%t.klee-out -use-cex-cache=1 %t.bc // RUN: grep "KLEE: done: explored paths = 5" %t.klee-out/info // RUN: grep "KLEE: done: generated tests = 4" %t.klee-out/info #include <stdio.h> #include <assert.h> int main(int argc, char** argv) { int y; klee_make_symbolic(&y, sizeof(y), "y"); // Test cases divisor is positive or negative if (y >= 0) { if (y < 2) { // Two test cases generated taking this path, one for y == 0 and y ==1 assert(1 % y == 0); } else { assert(1 % y == 1); } } else { if (y > -2) { assert(1 % y == 0); } else { assert(1 % y == 1); } } assert(0 % y == 0); assert(-1 % y == -1); }
the_stack_data/500612.c
/* !!DESCRIPTION!! !!ORIGIN!! testsuite !!LICENCE!! Public Domain !!AUTHOR!! */ /* The following code produces an 'Error: Incompatible pointer types' at the last line when compiling with snapshot-2.11.9.20080316 without optimizations. If I remove the struct inside f() it compiles fine ?!? Best, Oliver */ #include <stdio.h> void f(void){struct{int i;}d;} struct{void(*p)(void);}s={f}; int main(void) { printf("it works :)\n"); return 0; }
the_stack_data/237642443.c
// films1.c -- using a struct array #include <stdio.h> #include <string.h> #define TSIZE 45 // size of the array stroing film names #define FMAX 5 // the maximum number of films struct film { char title[TSIZE]; int rating; }; char *s_gets(char str[], int lim); int main(void) { struct film movies[FMAX]; int i = 0; int j; puts("Enter first movie title:"); while (i < FMAX && s_gets(movies[i].title, TSIZE) != NULL && movies[i].title[0] != '\0') { puts("Enter your rating <0-10>:"); scanf("%d", &movies[i++].rating); while (getchar() != '\n') continue; puts("Enter next movie title (empty line to stop):"); } if (i == 0) printf("No data entered.\n"); else printf("Here is the movie list:\n"); for (j = 0; j < i; j++) printf("Movie: %s Rating: %d\n", movies[j].title, movies[j].rating); printf("Bye!\n"); return 0; } char *s_gets(char *st, int n) { char *ret_val; char *find; ret_val = fgets(st, n, stdin); if (ret_val) { find = strchr(st, '\n'); // search for new-line character if (find) // if the address is not null *find = '\0'; // place an empty character here else while (getchar() != '\n') continue; // deal with the left characters in this input line } return ret_val; }